1 #include "sv_turrets.qh"
4 #include <common/mapobjects/defs.qh>
5 #include <server/bot/api.qh>
6 #include <server/damage.qh>
7 #include <server/weapons/common.qh>
8 #include <server/weapons/weaponsystem.qh>
9 #include <server/world.qh>
12 vector turret_aim_generic(entity this)
16 float distance, impact_time = 0, i, mintime;
18 turret_tag_fire_update(this);
20 if(this.aim_flags & TFL_AIM_SIMPLE)
21 return real_origin(this.enemy);
23 mintime = max(this.attack_finished_single[0] - time,0) + sys_frametime;
26 pre_pos = real_origin(this.enemy);
29 if (this.aim_flags & TFL_AIM_LEAD)
31 if (this.aim_flags & TFL_AIM_SHOTTIMECOMPENSATE) // Need to conpensate for shot traveltime
35 distance = vlen(prep - this.tur_shotorg);
36 impact_time = distance / this.shot_speed;
38 prep = pre_pos + (this.enemy.velocity * (impact_time + mintime));
40 if(this.aim_flags & TFL_AIM_ZPREDICT)
41 if(!IS_ONGROUND(this.enemy))
42 if(this.enemy.move_movetype == MOVETYPE_WALK || this.enemy.move_movetype == MOVETYPE_TOSS || this.enemy.move_movetype == MOVETYPE_BOUNCE)
46 vz = this.enemy.velocity_z;
47 for(i = 0; i < impact_time; i += sys_frametime)
49 vz = vz - (autocvar_sv_gravity * sys_frametime);
50 prep_z = prep_z + vz * sys_frametime;
56 pre_pos = pre_pos + this.enemy.velocity * mintime;
59 if(this.aim_flags & TFL_AIM_SPLASH)
61 //tracebox(pre_pos + '0 0 32',this.enemy.mins,this.enemy.maxs,pre_pos -'0 0 64',MOVE_WORLDONLY,this.enemy);
62 traceline(pre_pos + '0 0 32',pre_pos -'0 0 64',MOVE_WORLDONLY,this.enemy);
63 if(trace_fraction != 1.0)
64 pre_pos = trace_endpos;
70 float turret_targetscore_support(entity _turret,entity _target)
72 float score; // Total score
73 float s_score = 0, d_score;
75 if (_turret.enemy == _target) s_score = 1;
77 d_score = min(_turret.target_range_optimal,tvt_dist) / max(_turret.target_range_optimal,tvt_dist);
79 score = (d_score * _turret.target_select_rangebias) +
80 (s_score * _turret.target_select_samebias);
86 * Generic bias aware score system.
88 float turret_targetscore_generic(entity _turret, entity _target)
90 float d_dist; // Defendmode Distance
91 float score; // Total score
92 float d_score; // Distance score
93 float a_score; // Angular score
94 float m_score = 0; // missile score
95 float p_score = 0; // player score
96 float ikr; // ideal kill range
98 if (_turret.tur_defend)
100 d_dist = vlen(real_origin(_target) - _turret.tur_defend.origin);
101 ikr = vlen(_turret.origin - _turret.tur_defend.origin);
102 d_score = 1 - d_dist / _turret.target_range;
106 // Make a normlized value base on the targets distance from our optimal killzone
107 ikr = _turret.target_range_optimal;
108 d_score = min(ikr, tvt_dist) / max(ikr, tvt_dist);
111 a_score = 1 - tvt_thadf / _turret.aim_maxrot;
113 if ((_turret.target_select_missilebias > 0) && (_target.flags & FL_PROJECTILE))
116 if ((_turret.target_select_playerbias > 0) && IS_CLIENT(_target))
119 d_score = max(d_score, 0);
120 a_score = max(a_score, 0);
121 m_score = max(m_score, 0);
122 p_score = max(p_score, 0);
124 score = (d_score * _turret.target_select_rangebias) +
125 (a_score * _turret.target_select_anglebias) +
126 (m_score * _turret.target_select_missilebias) +
127 (p_score * _turret.target_select_playerbias);
129 if(vdist((_turret.tur_shotorg - real_origin(_target)), >, _turret.target_range))
136 string sd,sa,sm,sp,ss;
137 string sdt,sat,smt,spt;
140 d_score *= _turret.target_select_rangebias;
143 //sv = ftos(v_score);
144 //v_score *= _turret.target_select_samebias;
145 //svt = ftos(v_score);
148 a_score *= _turret.target_select_anglebias;
152 m_score *= _turret.target_select_missilebias;
156 p_score *= _turret.target_select_playerbias;
161 bprint("^3Target scores^7 \[ ",_turret.netname, " \] ^3for^7 \[ ", _target.netname," \]\n");
162 bprint("^5Range:\[ ",sd, " \]^2+bias:\[ ",sdt," \]\n");
163 bprint("^5Angle:\[ ",sa, " \]^2+bias:\[ ",sat," \]\n");
164 bprint("^5Missile:\[ ",sm," \]^2+bias:\[ ",smt," \]\n");
165 bprint("^5Player:\[ ",sp, " \]^2+bias:\[ ",spt," \]\n");
166 bprint("^3Total (w/bias):\[^1",ss,"\]\n");
173 // Generic damage handling
174 void turret_hide(entity this)
176 this.effects |= EF_NODRAW;
177 this.nextthink = time + this.respawntime - 0.2;
178 setthink(this, turret_respawn);
181 void turret_die(entity this)
183 this.deadflag = DEAD_DEAD;
184 this.tur_head.deadflag = this.deadflag;
186 // Unsolidify and hide real parts
187 this.solid = SOLID_NOT;
188 this.tur_head.solid = this.solid;
190 this.event_damage = func_null;
191 this.event_heal = func_null;
192 this.takedamage = DAMAGE_NO;
194 SetResourceExplicit(this, RES_HEALTH, 0);
197 //RadiusDamage (this,this, min(this.ammo,50),min(this.ammo,50) * 0.25,250,NULL,min(this.ammo,50)*5,DEATH_TURRET,NULL);
199 Turret tur = get_turretinfo(this.m_id);
200 if(this.damage_flags & TFL_DMG_DEATH_NORESPAWN)
202 // do a simple explosion effect here, since CSQC can't do it on a to-be-removed entity
203 sound(this, CH_SHOTS, SND_ROCKET_IMPACT, VOL_BASE, ATTEN_NORM);
204 Send_Effect(EFFECT_ROCKET_EXPLODE, this.origin, '0 0 0', 1);
206 tur.tr_death(tur, this);
208 delete(this.tur_head);
214 this.SendFlags |= TNSF_STATUS;
215 this.nextthink = time + 0.2;
216 setthink(this, turret_hide);
218 tur.tr_death(tur, this);
222 void turret_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector vforce)
225 if(this.deadflag == DEAD_DEAD)
228 // Inactive turrets take no damage. (hm..)
232 if(SAME_TEAM(this, attacker))
234 if(autocvar_g_friendlyfire)
235 damage = damage * autocvar_g_friendlyfire;
240 TakeResource(this, RES_HEALTH, damage);
242 // thorw head slightly off aim when hit?
243 if (this.damage_flags & TFL_DMG_HEADSHAKE)
245 this.tur_head.angles_x = this.tur_head.angles_x + (-0.5 + random()) * damage;
246 this.tur_head.angles_y = this.tur_head.angles_y + (-0.5 + random()) * damage;
248 this.SendFlags |= TNSF_ANG;
251 if (this.turret_flags & TUR_FLAG_MOVE)
252 this.velocity = this.velocity + vforce;
254 if (GetResource(this, RES_HEALTH) <= 0)
256 this.event_damage = func_null;
257 this.tur_head.event_damage = func_null;
258 this.event_heal = func_null;
259 this.tur_head.event_heal = func_null;
260 this.takedamage = DAMAGE_NO;
261 this.nextthink = time;
262 setthink(this, turret_die);
265 this.SendFlags |= TNSF_STATUS;
268 bool turret_heal(entity targ, entity inflictor, float amount, float limit)
270 float true_limit = ((limit != RES_LIMIT_NONE) ? limit : targ.max_health);
271 if(GetResource(targ, RES_HEALTH) <= 0 || GetResource(targ, RES_HEALTH) >= true_limit)
274 GiveResourceWithLimit(targ, RES_HEALTH, amount, true_limit);
275 targ.SendFlags |= TNSF_STATUS;
279 void turret_think(entity this);
280 void turret_respawn(entity this)
282 // Make sure all parts belong to the same team since
283 // this function doubles as "teamchange" function.
284 this.tur_head.team = this.team;
285 this.effects &= ~EF_NODRAW;
286 this.deadflag = DEAD_NO;
287 this.effects = EF_LOWPRECISION;
288 this.solid = SOLID_BBOX;
289 this.takedamage = DAMAGE_AIM;
290 this.event_damage = turret_damage;
291 this.event_heal = turret_heal;
292 this.avelocity = '0 0 0';
293 this.tur_head.avelocity = this.avelocity;
294 this.tur_head.angles = this.idle_aim;
295 SetResourceExplicit(this, RES_HEALTH, this.max_health);
297 this.volly_counter = this.shot_volly;
298 this.ammo = this.ammo_max;
300 this.nextthink = time + this.ticrate;
301 setthink(this, turret_think);
303 this.SendFlags = TNSF_FULL_UPDATE;
305 Turret tur = get_turretinfo(this.m_id);
306 tur.tr_setup(tur, this);
312 void turrets_setframe(entity this, float _frame, float client_only)
314 if((client_only ? this.clientframe : this.frame ) != _frame)
316 this.SendFlags |= TNSF_ANIM;
317 this.anim_start_time = time;
321 this.clientframe = _frame;
327 bool turret_send(entity this, entity to, float sf)
329 WriteHeader(MSG_ENTITY, ENT_CLIENT_TURRET);
330 WriteByte(MSG_ENTITY, sf);
333 WriteByte(MSG_ENTITY, this.m_id);
335 WriteVector(MSG_ENTITY, this.origin);
337 WriteAngleVector2D(MSG_ENTITY, this.angles);
342 WriteShort(MSG_ENTITY, rint(this.tur_head.angles_x));
343 WriteShort(MSG_ENTITY, rint(this.tur_head.angles_y));
348 WriteShort(MSG_ENTITY, rint(this.tur_head.avelocity_x));
349 WriteShort(MSG_ENTITY, rint(this.tur_head.avelocity_y));
354 WriteVector(MSG_ENTITY, this.origin);
356 WriteVector(MSG_ENTITY, this.velocity);
358 WriteShort(MSG_ENTITY, rint(this.angles_y));
363 WriteCoord(MSG_ENTITY, this.anim_start_time);
364 WriteByte(MSG_ENTITY, this.frame);
369 WriteByte(MSG_ENTITY, this.team);
371 if(GetResource(this, RES_HEALTH) <= 0)
372 WriteByte(MSG_ENTITY, 0);
374 WriteByte(MSG_ENTITY, ceil((GetResource(this, RES_HEALTH) / this.max_health) * 255));
380 void load_unit_settings(entity ent, bool is_reload)
385 if(!ent.turret_scale_damage) ent.turret_scale_damage = 1;
386 if(!ent.turret_scale_range) ent.turret_scale_range = 1;
387 if(!ent.turret_scale_refire) ent.turret_scale_refire = 1;
388 if(!ent.turret_scale_ammo) ent.turret_scale_ammo = 1;
389 if(!ent.turret_scale_aim) ent.turret_scale_aim = 1;
390 if(!ent.turret_scale_health) ent.turret_scale_health = 1;
391 if(!ent.turret_scale_respawn) ent.turret_scale_respawn = 1;
396 ent.tur_head.avelocity = '0 0 0';
398 ent.tur_head.angles = '0 0 0';
401 string unitname = ent.netname;
402 #define X(class, prefix, fld, type) ent.fld = cvar(strcat("g_turrets_unit_", prefix, "_", #fld));
403 TR_PROPS_COMMON(X, , unitname)
406 ent.ammo_max *= ent.turret_scale_ammo;
407 ent.ammo_recharge *= ent.turret_scale_ammo;
408 ent.aim_speed *= ent.turret_scale_aim;
409 SetResourceExplicit(ent, RES_HEALTH, GetResource(ent, RES_HEALTH) * ent.turret_scale_health);
410 ent.respawntime *= ent.turret_scale_respawn;
411 ent.shot_dmg *= ent.turret_scale_damage;
412 ent.shot_refire *= ent.turret_scale_refire;
413 ent.shot_radius *= ent.turret_scale_damage;
414 ent.shot_force *= ent.turret_scale_damage;
415 ent.shot_volly_refire *= ent.turret_scale_refire;
416 ent.target_range *= ent.turret_scale_range;
417 ent.target_range_min *= ent.turret_scale_range;
418 ent.target_range_optimal *= ent.turret_scale_range;
421 Turret tur = get_turretinfo(ent.m_id);
422 tur.tr_setup(tur, ent);
426 void turret_projectile_explode(entity this)
429 this.takedamage = DAMAGE_NO;
430 this.event_damage = func_null;
433 d = RadiusDamage (this, this.owner, this.owner.shot_dmg, 0, this.owner.shot_radius, this, NULL, this.owner.shot_force, this.projectiledeathtype, DMG_NOWEP, NULL);
434 this.owner.tur_debug_dmg_t_h = this.owner.tur_debug_dmg_t_h + d;
435 this.owner.tur_debug_dmg_t_f = this.owner.tur_debug_dmg_t_f + this.owner.shot_dmg;
437 RadiusDamage (this, this.realowner, this.owner.shot_dmg, 0, this.owner.shot_radius, this, NULL, this.owner.shot_force, this.projectiledeathtype, DMG_NOWEP, NULL);
442 void turret_projectile_touch(entity this, entity toucher)
444 PROJECTILE_TOUCH(this, toucher);
445 turret_projectile_explode(this);
448 void turret_projectile_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector vforce)
450 this.velocity += vforce;
451 TakeResource(this, RES_HEALTH, damage);
452 //this.realowner = attacker; // Dont change realowner, it does not make much sense for turrets
453 if(GetResource(this, RES_HEALTH) <= 0)
454 W_PrepareExplosionByDamage(this, this.owner, turret_projectile_explode);
457 entity turret_projectile(entity actor, Sound _snd, float _size, float _health, float _death, float _proj_type, float _cull, float _cli_anim)
462 sound (actor, CH_WEAPON_A, _snd, VOL_BASE, ATTEN_NORM);
464 setorigin(proj, actor.tur_shotorg);
465 setsize(proj, '-0.5 -0.5 -0.5' * _size, '0.5 0.5 0.5' * _size);
467 proj.realowner = actor;
468 proj.bot_dodge = true;
469 proj.bot_dodgerating = actor.shot_dmg;
470 setthink(proj, turret_projectile_explode);
471 settouch(proj, turret_projectile_touch);
472 proj.nextthink = time + 9;
473 set_movetype(proj, MOVETYPE_FLYMISSILE);
474 proj.velocity = normalize(actor.tur_shotdir_updated + randomvec() * actor.shot_spread) * actor.shot_speed;
475 proj.flags = FL_PROJECTILE;
476 IL_PUSH(g_projectiles, proj);
477 IL_PUSH(g_bot_dodge, proj);
478 proj.enemy = actor.enemy;
479 proj.projectiledeathtype = _death;
480 PROJECTILE_MAKETRIGGER(proj);
483 SetResourceExplicit(proj, RES_HEALTH, _health);
484 proj.takedamage = DAMAGE_YES;
485 proj.event_damage = turret_projectile_damage;
488 proj.flags |= FL_NOTARGET;
490 CSQCProjectile(proj, _cli_anim, _proj_type, _cull);
496 ** updates enemy distances, predicted impact point/time
497 ** and updated aim<->predict impact distance.
499 void turret_do_updates(entity t_turret)
501 vector enemy_pos = real_origin(t_turret.enemy);
503 turret_tag_fire_update(t_turret);
505 t_turret.tur_shotdir_updated = v_forward;
506 t_turret.tur_dist_enemy = vlen(t_turret.tur_shotorg - enemy_pos);
507 t_turret.tur_dist_aimpos = vlen(t_turret.tur_shotorg - t_turret.tur_aimpos);
509 /*if((t_turret.firecheck_flags & TFL_FIRECHECK_VERIFIED) && (t_turret.enemy))
511 oldpos = t_turret.enemy.origin;
512 setorigin(t_turret.enemy, t_turret.tur_aimpos);
513 tracebox(t_turret.tur_shotorg, '-1 -1 -1', '1 1 1', t_turret.tur_shotorg + (t_turret.tur_shotdir_updated * t_turret.tur_dist_aimpos), MOVE_NORMAL,t_turret);
514 setorigin(t_turret.enemy, oldpos);
516 if(trace_ent == t_turret.enemy)
517 t_turret.tur_dist_impact_to_aimpos = 0;
519 t_turret.tur_dist_impact_to_aimpos = vlen(trace_endpos - t_turret.tur_aimpos);
522 tracebox(t_turret.tur_shotorg, '-1 -1 -1','1 1 1', t_turret.tur_shotorg + (t_turret.tur_shotdir_updated * t_turret.tur_dist_aimpos), MOVE_NORMAL,t_turret);
524 t_turret.tur_dist_impact_to_aimpos = vlen(trace_endpos - t_turret.tur_aimpos) - (vlen(t_turret.enemy.maxs - t_turret.enemy.mins) * 0.5);
525 t_turret.tur_impactent = trace_ent;
526 t_turret.tur_impacttime = vlen(t_turret.tur_shotorg - trace_endpos) / t_turret.shot_speed;
530 ** Handles head rotation according to
531 ** the units .track_type and .track_flags
533 .float turret_framecounter;
534 void turret_track(entity this)
536 vector target_angle; // This is where we want to aim
537 vector move_angle; // This is where we can aim
540 v1 = this.tur_head.angles;
541 v2 = this.tur_head.avelocity;
543 if (this.track_flags == TFL_TRACK_NO)
547 target_angle = this.idle_aim - ('1 0 0' * this.aim_maxpitch);
548 else if (this.enemy == NULL)
551 target_angle = this.idle_aim + this.angles;
553 target_angle = vectoangles(normalize(this.tur_aimpos - this.tur_shotorg));
557 target_angle = vectoangles(normalize(this.tur_aimpos - this.tur_shotorg));
560 this.tur_head.angles_x = anglemods(this.tur_head.angles_x);
561 this.tur_head.angles_y = anglemods(this.tur_head.angles_y);
563 // Find the diffrence between where we currently aim and where we want to aim
564 //move_angle = target_angle - (this.angles + this.tur_head.angles);
565 //move_angle = shortangle_vxy(move_angle,(this.angles + this.tur_head.angles));
567 move_angle = AnglesTransform_ToAngles(AnglesTransform_LeftDivide(AnglesTransform_FromAngles(this.angles), AnglesTransform_FromAngles(target_angle))) - this.tur_head.angles;
568 move_angle = shortangle_vxy(move_angle, this.tur_head.angles);
570 switch(this.track_type)
572 case TFL_TRACKTYPE_STEPMOTOR:
573 f_tmp = this.aim_speed * this.ticrate; // dgr/sec -> dgr/tic
574 if (this.track_flags & TFL_TRACK_PITCH)
576 this.tur_head.angles_x += bound(-f_tmp,move_angle_x, f_tmp);
577 if(this.tur_head.angles_x > this.aim_maxpitch)
578 this.tur_head.angles_x = this.aim_maxpitch;
580 if(this.tur_head.angles_x < -this.aim_maxpitch)
581 this.tur_head.angles_x = this.aim_maxpitch;
584 if (this.track_flags & TFL_TRACK_ROTATE)
586 this.tur_head.angles_y += bound(-f_tmp, move_angle_y, f_tmp);
587 if(this.tur_head.angles_y > this.aim_maxrot)
588 this.tur_head.angles_y = this.aim_maxrot;
590 if(this.tur_head.angles_y < -this.aim_maxrot)
591 this.tur_head.angles_y = this.aim_maxrot;
595 this.SendFlags |= TNSF_ANG;
599 case TFL_TRACKTYPE_FLUIDINERTIA:
600 f_tmp = this.aim_speed * this.ticrate; // dgr/sec -> dgr/tic
601 move_angle_x = bound(-this.aim_speed, move_angle_x * this.track_accel_pitch * f_tmp, this.aim_speed);
602 move_angle_y = bound(-this.aim_speed, move_angle_y * this.track_accel_rot * f_tmp, this.aim_speed);
603 move_angle = (this.tur_head.avelocity * this.track_blendrate) + (move_angle * (1 - this.track_blendrate));
606 case TFL_TRACKTYPE_FLUIDPRECISE:
608 move_angle_y = bound(-this.aim_speed, move_angle_y, this.aim_speed);
609 move_angle_x = bound(-this.aim_speed, move_angle_x, this.aim_speed);
615 if (this.track_flags & TFL_TRACK_PITCH)
617 this.tur_head.avelocity_x = move_angle_x;
618 if((this.tur_head.angles_x + this.tur_head.avelocity_x * this.ticrate) > this.aim_maxpitch)
620 this.tur_head.avelocity_x = 0;
621 this.tur_head.angles_x = this.aim_maxpitch;
623 this.SendFlags |= TNSF_ANG;
626 if((this.tur_head.angles_x + this.tur_head.avelocity_x * this.ticrate) < -this.aim_maxpitch)
628 this.tur_head.avelocity_x = 0;
629 this.tur_head.angles_x = -this.aim_maxpitch;
631 this.SendFlags |= TNSF_ANG;
636 if (this.track_flags & TFL_TRACK_ROTATE)
638 this.tur_head.avelocity_y = move_angle_y;
640 if((this.tur_head.angles_y + this.tur_head.avelocity_y * this.ticrate) > this.aim_maxrot)
642 this.tur_head.avelocity_y = 0;
643 this.tur_head.angles_y = this.aim_maxrot;
645 this.SendFlags |= TNSF_ANG;
648 if((this.tur_head.angles_y + this.tur_head.avelocity_y * this.ticrate) < -this.aim_maxrot)
650 this.tur_head.avelocity_y = 0;
651 this.tur_head.angles_y = -this.aim_maxrot;
653 this.SendFlags |= TNSF_ANG;
657 this.SendFlags |= TNSF_AVEL;
659 // Force a angle update every 10'th frame
660 this.turret_framecounter += 1;
661 if(this.turret_framecounter >= 10)
663 this.SendFlags |= TNSF_ANG;
664 this.turret_framecounter = 0;
669 + TFL_TARGETSELECT_NO
670 + TFL_TARGETSELECT_LOS
671 + TFL_TARGETSELECT_PLAYERS
672 + TFL_TARGETSELECT_MISSILES
673 + TFL_TARGETSELECT_VEHICLES
674 - TFL_TARGETSELECT_TRIGGERTARGET
675 + TFL_TARGETSELECT_ANGLELIMITS
676 + TFL_TARGETSELECT_RANGELIMITS
677 + TFL_TARGETSELECT_TEAMCHECK
678 - TFL_TARGETSELECT_NOBUILTIN
679 + TFL_TARGETSELECT_OWNTEAM
683 ** Evaluate a entity for target valitity based on validate_flags
684 ** NOTE: the caller must check takedamage before calling this, to inline this check.
686 float turret_validate_target(entity e_turret, entity e_target, float validate_flags)
690 //if(!validate_flags & TFL_TARGETSELECT_NOBUILTIN)
696 if(e_target.owner == e_turret)
699 if(!checkpvs(e_target.origin, e_turret))
702 if(e_target.alpha != 0 && e_target.alpha <= 0.3)
705 if(MUTATOR_CALLHOOK(TurretValidateTarget, e_turret, e_target, validate_flags))
706 return M_ARGV(3, float);
708 if (validate_flags & TFL_TARGETSELECT_NO)
711 // If only this was used more..
712 if (e_target.flags & FL_NOTARGET)
716 if (GetResource(e_target, RES_HEALTH) <= 0)
718 else if (STAT(FROZEN, e_target))
722 if(IS_VEHICLE(e_target))
724 if ((validate_flags & TFL_TARGETSELECT_VEHICLES) && !e_target.owner)
729 if (IS_CLIENT(e_target))
731 if(!(validate_flags & TFL_TARGETSELECT_PLAYERS))
734 if (IS_DEAD(e_target))
739 if(validate_flags & TFL_TARGETSELECT_NOTURRETS)
740 if(e_target.owner.tur_head == e_target)
741 if(e_target.team != e_turret.team) // Dont break support units.
745 if (e_target.flags & FL_PROJECTILE)
746 if(!(validate_flags & TFL_TARGETSELECT_MISSILES))
749 if (validate_flags & TFL_TARGETSELECT_MISSILESONLY)
750 if(!(e_target.flags & FL_PROJECTILE))
754 if (validate_flags & TFL_TARGETSELECT_TEAMCHECK)
756 if (validate_flags & TFL_TARGETSELECT_OWNTEAM)
758 if (e_target.team != e_turret.team)
761 if (e_turret.team != e_target.owner.team)
764 if (e_turret.team != e_target.aiment.team)
765 return -12; // portals
769 if (e_target.team == e_turret.team)
772 if (e_turret.team == e_target.owner.team)
775 if (e_turret.team == e_target.aiment.team)
776 return -14; // portals
781 tvt_dist = vlen(e_turret.origin - real_origin(e_target));
782 if (validate_flags & TFL_TARGETSELECT_RANGELIMITS)
784 if (tvt_dist < e_turret.target_range_min)
787 if (tvt_dist > e_turret.target_range)
791 // Can we even aim this thing?
792 tvt_thadv = angleofs3(e_turret.tur_head.origin, e_turret.angles + e_turret.tur_head.angles, e_target.origin);
793 tvt_tadv = shortangle_vxy(angleofs(e_turret, e_target), e_turret.angles);
794 tvt_thadf = vlen(tvt_thadv);
797 if(validate_flags & TFL_TARGETSELECT_FOV)
799 if(e_turret.target_select_fov < tvt_thadf)
804 if (validate_flags & TFL_TARGETSELECT_ANGLELIMITS)
806 if (fabs(tvt_tadv_x) > e_turret.aim_maxpitch)
809 if (fabs(tvt_tadv_y) > e_turret.aim_maxrot)
814 if (validate_flags & TFL_TARGETSELECT_LOS)
816 v_tmp = real_origin(e_target) + ((e_target.mins + e_target.maxs) * 0.5);
818 traceline(e_turret.origin + '0 0 16', v_tmp, 0, e_turret);
820 if(vdist(v_tmp - trace_endpos, >, e_turret.aim_firetolerance_dist))
824 if (e_target.classname == "grapplinghook")
828 if (e_target.classname == "func_button")
832 #ifdef TURRET_DEBUG_TARGETSELECT
833 LOG_TRACE("Target:",e_target.netname," is a valid target for ",e_turret.netname);
839 entity turret_select_target(entity this)
841 entity e; // target looper entity
842 float score; // target looper entity score
843 entity e_enemy; // currently best scoreing target
844 float m_score; // currently best scoreing target's score
847 if(this.enemy && this.enemy.takedamage && turret_validate_target(this,this.enemy,this.target_validate_flags) > 0)
849 e_enemy = this.enemy;
850 m_score = this.turret_score_target(this,e_enemy) * this.target_select_samebias;
853 e_enemy = this.enemy = NULL;
855 e = findradius(this.origin, this.target_range);
857 // Nothing to aim at?
865 float f = turret_validate_target(this, e, this.target_select_flags);
866 //dprint("F is: ", ftos(f), "\n");
869 score = this.turret_score_target(this,e);
870 if ((score > m_score) && (score > 0))
889 + TFL_FIRECHECK_WORLD
891 + TFL_FIRECHECK_DISTANCES
893 + TFL_FIRECHECK_AIMDIST
894 + TFL_FIRECHECK_REALDIST
895 - TFL_FIRECHECK_ANGLEDIST
896 - TFL_FIRECHECK_TEAMCECK
898 + TFL_FIRECHECK_AMMO_OWN
899 + TFL_FIRECHECK_AMMO_OTHER
900 + TFL_FIRECHECK_REFIRE
904 ** Preforms pre-fire checks based on the uints firecheck_flags
906 bool turret_firecheck(entity this)
908 // This one just dont care =)
909 if (this.firecheck_flags & TFL_FIRECHECK_NO)
912 if (this.enemy == NULL)
916 if (this.firecheck_flags & TFL_FIRECHECK_REFIRE)
917 if (this.attack_finished_single[0] > time) return false;
919 // Special case: volly fire turret that has to fire a full volly if a shot was fired.
920 if (this.shoot_flags & TFL_SHOOT_VOLLYALWAYS)
921 if (this.volly_counter != this.shot_volly)
922 if(this.ammo >= this.shot_dmg)
925 // Lack of zombies makes shooting dead things unnecessary :P
926 if (this.firecheck_flags & TFL_FIRECHECK_DEAD)
927 if (IS_DEAD(this.enemy))
931 if (this.firecheck_flags & TFL_FIRECHECK_AMMO_OWN)
932 if (this.ammo < this.shot_dmg)
935 // Other's ammo? (support-supply units)
936 if (this.firecheck_flags & TFL_FIRECHECK_AMMO_OTHER)
937 if (this.enemy.ammo >= this.enemy.ammo_max)
940 // Target of opertunity?
941 if(turret_validate_target(this, this.tur_impactent, this.target_validate_flags) > 0)
943 this.enemy = this.tur_impactent;
947 if (this.firecheck_flags & TFL_FIRECHECK_DISTANCES)
950 if (this.tur_dist_aimpos < this.target_range_min)
952 if(turret_validate_target(this, this.tur_impactent, this.target_validate_flags) > 0)
953 return true; // Target of opertunity?
959 if (this.firecheck_flags & TFL_FIRECHECK_AFF)
960 if (this.tur_impactent.team == this.team)
963 // aim<->predicted impact
964 if (this.firecheck_flags & TFL_FIRECHECK_AIMDIST)
965 if (this.tur_dist_impact_to_aimpos > this.aim_firetolerance_dist)
969 if (this.shot_volly > 1)
970 if (this.volly_counter == this.shot_volly)
971 if (this.ammo < (this.shot_dmg * this.shot_volly))
974 /*if(this.firecheck_flags & TFL_FIRECHECK_VERIFIED)
975 if(this.tur_impactent != this.enemy)
981 bool turret_checkfire(entity this)
983 if(MUTATOR_CALLHOOK(Turret_CheckFire, this))
984 return M_ARGV(1, bool);
986 return this.turret_firecheckfunc(this);
989 void turret_fire(entity this)
991 if (autocvar_g_turrets_nofire != 0)
994 if(MUTATOR_CALLHOOK(TurretFire, this))
997 Turret info = get_turretinfo(this.m_id);
998 info.tr_attack(info, this);
1000 this.attack_finished_single[0] = time + this.shot_refire;
1001 this.ammo -= this.shot_dmg;
1002 this.volly_counter = this.volly_counter - 1;
1004 if (this.volly_counter <= 0)
1006 this.volly_counter = this.shot_volly;
1008 if (this.shoot_flags & TFL_SHOOT_CLEARTARGET)
1011 if (this.shot_volly > 1)
1012 this.attack_finished_single[0] = time + this.shot_volly_refire;
1016 if (this.enemy) paint_target3(this.tur_aimpos, 64, this.tur_debug_rvec, this.tur_impacttime + 0.25);
1020 void turret_think(entity this)
1022 this.nextthink = time + this.ticrate;
1024 MUTATOR_CALLHOOK(TurretThink, this);
1027 if (this.tur_debug_tmr1 < time)
1029 if (this.enemy) paint_target (this.enemy,128,this.tur_debug_rvec,0.9);
1030 paint_target(this,256,this.tur_debug_rvec,0.9);
1031 this.tur_debug_tmr1 = time + 1;
1036 if (!(this.spawnflags & TSF_NO_AMMO_REGEN))
1037 if (this.ammo < this.ammo_max)
1038 this.ammo = min(this.ammo + this.ammo_recharge, this.ammo_max);
1040 // Inactive turrets needs to run the think loop,
1041 // So they can handle animation and wake up if need be.
1048 // This is typicaly used for zaping every target in range
1049 // turret_fusionreactor uses this to recharge friendlys.
1050 if (this.shoot_flags & TFL_SHOOT_HITALLVALID)
1052 // Do a this.turret_fire for every valid target.
1053 entity e = findradius(this.origin,this.target_range);
1058 if (turret_validate_target(this,e,this.target_validate_flags))
1062 turret_do_updates(this);
1064 if (turret_checkfire(this))
1073 else if(this.shoot_flags & TFL_SHOOT_CUSTOM)
1075 // This one is doing something.. oddball. assume its handles what needs to be handled.
1078 if(!(this.aim_flags & TFL_AIM_NO))
1079 this.tur_aimpos = turret_aim_generic(this);
1082 if(!(this.track_flags & TFL_TRACK_NO))
1085 turret_do_updates(this);
1088 if (turret_checkfire(this))
1093 // Special case for volly always. if it fired once it must compleate the volly.
1094 if(this.shoot_flags & TFL_SHOOT_VOLLYALWAYS)
1095 if(this.volly_counter != this.shot_volly)
1097 // Predict or whatnot
1098 if(!(this.aim_flags & TFL_AIM_NO))
1099 this.tur_aimpos = turret_aim_generic(this);
1102 if(!(this.track_flags & TFL_TRACK_NO))
1105 turret_do_updates(this);
1108 if (turret_checkfire(this))
1111 Turret tur = get_turretinfo(this.m_id);
1112 tur.tr_think(tur, this);
1117 // Check if we have a vailid enemy, and try to find one if we dont.
1119 // g_turrets_targetscan_maxdelay forces a target re-scan at least this often
1120 float do_target_scan = 0;
1121 if((this.target_select_time + autocvar_g_turrets_targetscan_maxdelay) < time)
1124 // Old target (if any) invalid?
1125 if(this.target_validate_time < time)
1126 if (turret_validate_target(this, this.enemy, this.target_validate_flags) <= 0)
1129 this.target_validate_time = time + 0.5;
1133 // But never more often then g_turrets_targetscan_mindelay!
1134 if (this.target_select_time + autocvar_g_turrets_targetscan_mindelay > time)
1139 this.enemy = turret_select_target(this);
1140 this.target_select_time = time;
1143 // No target, just go to idle, do any custom stuff and bail.
1144 if (this.enemy == NULL)
1147 if(!(this.track_flags & TFL_TRACK_NO))
1150 Turret tur = get_turretinfo(this.m_id);
1151 tur.tr_think(tur, this);
1157 this.lip = time + autocvar_g_turrets_aimidle_delay; // Keep track of the last time we had a target.
1160 if(!(this.aim_flags & TFL_AIM_NO))
1161 this.tur_aimpos = turret_aim_generic(this);
1164 if(!(this.track_flags & TFL_TRACK_NO))
1167 turret_do_updates(this);
1170 if (turret_checkfire(this))
1174 Turret tur = get_turretinfo(this.m_id);
1175 tur.tr_think(tur, this);
1179 When .used a turret switch team to activator.team.
1180 If activator is NULL, the turret go inactive.
1182 void turret_use(entity this, entity actor, entity trigger)
1184 LOG_TRACE("Turret ",this.netname, " used by ", actor.classname);
1186 this.team = actor.team;
1189 this.active = ACTIVE_NOT;
1191 this.active = ACTIVE_ACTIVE;
1195 void turret_link(entity this)
1197 Net_LinkEntity(this, true, 0, turret_send);
1198 setthink(this, turret_think);
1199 this.nextthink = time;
1200 this.tur_head.effects = EF_NODRAW;
1203 void turrets_manager_think(entity this)
1205 this.nextthink = time + 1;
1207 if (autocvar_g_turrets_reloadcvars == 1)
1209 IL_EACH(g_turrets, true,
1211 load_unit_settings(it, true);
1212 Turret tur = get_turretinfo(it.m_id);
1213 tur.tr_think(tur, it);
1215 cvar_set("g_turrets_reloadcvars", "0");
1219 void turret_initparams(entity tur)
1221 #define TRY(x) (x) ? (x)
1222 tur.respawntime = max (-1, (TRY(tur.respawntime) : 60 ));
1223 tur.shot_refire = bound(0.01, (TRY(tur.shot_refire) : 1 ), 9999);
1224 tur.shot_dmg = max (1, (TRY(tur.shot_dmg) : tur.shot_refire * 50 ));
1225 tur.shot_radius = max (1, (TRY(tur.shot_radius) : tur.shot_dmg * 0.5 ));
1226 tur.shot_speed = max (1, (TRY(tur.shot_speed) : 2500 ));
1227 tur.shot_spread = bound(0.0001, (TRY(tur.shot_spread) : 0.0125 ), 500);
1228 tur.shot_force = bound(0.001, (TRY(tur.shot_force) : tur.shot_dmg * 0.5 + tur.shot_radius * 0.5 ), 5000);
1229 tur.shot_volly = bound(1, (TRY(tur.shot_volly) : 1 ), floor(tur.ammo_max / tur.shot_dmg));
1230 tur.shot_volly_refire = bound(tur.shot_refire, (TRY(tur.shot_volly_refire) : tur.shot_refire * tur.shot_volly ), 60);
1231 tur.target_range = bound(0, (TRY(tur.target_range) : tur.shot_speed * 0.5 ), max_shot_distance);
1232 tur.target_range_min = bound(0, (TRY(tur.target_range_min) : tur.shot_radius * 2 ), max_shot_distance);
1233 tur.target_range_optimal = bound(0, (TRY(tur.target_range_optimal) : tur.target_range * 0.5 ), max_shot_distance);
1234 tur.aim_maxrot = bound(0, (TRY(tur.aim_maxrot) : 90 ), 360);
1235 tur.aim_maxpitch = bound(0, (TRY(tur.aim_maxpitch) : 20 ), 90);
1236 tur.aim_speed = bound(0.1, (TRY(tur.aim_speed) : 36 ), 1000);
1237 tur.aim_firetolerance_dist = bound(0.1, (TRY(tur.aim_firetolerance_dist) : 5 + (tur.shot_radius * 2) ), max_shot_distance);
1238 tur.target_select_rangebias = bound(-10, (TRY(tur.target_select_rangebias) : 1 ), 10);
1239 tur.target_select_samebias = bound(-10, (TRY(tur.target_select_samebias) : 1 ), 10);
1240 tur.target_select_anglebias = bound(-10, (TRY(tur.target_select_anglebias) : 1 ), 10);
1241 tur.target_select_missilebias = bound(-10, (TRY(tur.target_select_missilebias) : 1 ), 10);
1242 tur.target_select_playerbias = bound(-10, (TRY(tur.target_select_playerbias) : 1 ), 10);
1243 tur.ammo_max = max (tur.shot_dmg, (TRY(tur.ammo_max) : tur.shot_dmg * 10 ));
1244 tur.ammo_recharge = max (0, (TRY(tur.ammo_recharge) : tur.shot_dmg * 0.5 ));
1248 bool turret_closetotarget(entity this, vector targ)
1250 vector path_extra_size = '64 64 64';
1251 return boxesoverlap(targ - path_extra_size, targ + path_extra_size, this.absmin - path_extra_size, this.absmax + path_extra_size);
1254 void turret_findtarget(entity this)
1256 entity e = find(NULL, classname, "turret_manager");
1259 e = new_pure(turret_manager);
1260 setthink(e, turrets_manager_think);
1261 e.nextthink = time + 2;
1264 entity targ = find(NULL, targetname, this.target);
1265 if(targ.classname == "turret_checkpoint")
1266 return; // turrets don't defend checkpoints?
1271 LOG_TRACE("Turret has invalid defendpoint!");
1274 this.tur_defend = targ;
1275 this.idle_aim = this.tur_head.angles + angleofs(this.tur_head, targ);
1278 void turret_reset(entity this)
1280 turret_respawn(this);
1283 bool turret_initialize(entity this, Turret tur)
1285 if(!autocvar_g_turrets)
1289 return false; // invalid turret
1291 // if tur_head exists, we can assume this turret re-spawned
1292 if(!this.tur_head) {
1293 tur.tr_precache(tur);
1294 IL_PUSH(g_turrets, this);
1295 IL_PUSH(g_bot_targets, this);
1298 if(!(this.spawnflags & TSF_SUSPENDED))
1301 this.netname = tur.netname;
1302 load_unit_settings(this, 0);
1304 if(!this.team || !teamplay) { this.team = FLOAT_MAX; }
1305 if(!this.ticrate) { this.ticrate = ((this.turret_flags & TUR_FLAG_SUPPORT) ? 0.2 : 0.1); }
1306 if(!GetResource(this, RES_HEALTH)) { SetResourceExplicit(this, RES_HEALTH, 1000); }
1307 if(!this.shot_refire) { this.shot_refire = 1; }
1308 if(!this.tur_shotorg) { this.tur_shotorg = '50 0 50'; }
1309 if(!this.turret_flags) { this.turret_flags = TUR_FLAG_SPLASH | TUR_FLAG_MEDPROJ | TUR_FLAG_PLAYER; }
1310 if(!this.damage_flags) { this.damage_flags = TFL_DMG_YES | TFL_DMG_RETALIATE | TFL_DMG_AIMSHAKE; }
1311 if(!this.aim_flags) { this.aim_flags = TFL_AIM_LEAD | TFL_AIM_SHOTTIMECOMPENSATE; }
1312 if(!this.track_type) { this.track_type = TFL_TRACKTYPE_STEPMOTOR; }
1313 if(!this.track_flags) { this.track_flags = TFL_TRACK_PITCH | TFL_TRACK_ROTATE; }
1314 if(!this.ammo_flags) { this.ammo_flags = TFL_AMMO_ENERGY | TFL_AMMO_RECHARGE; }
1315 if(!this.target_select_flags) { this.target_select_flags = TFL_TARGETSELECT_LOS | TFL_TARGETSELECT_TEAMCHECK | TFL_TARGETSELECT_RANGELIMITS | TFL_TARGETSELECT_ANGLELIMITS; }
1316 if(!this.firecheck_flags) { this.firecheck_flags = TFL_FIRECHECK_DEAD | TFL_FIRECHECK_DISTANCES | TFL_FIRECHECK_LOS
1317 | TFL_FIRECHECK_AIMDIST | TFL_FIRECHECK_TEAMCHECK | TFL_FIRECHECK_AMMO_OWN | TFL_FIRECHECK_REFIRE; }
1319 if(this.track_type != TFL_TRACKTYPE_STEPMOTOR)
1321 // Fluid / Ineria mode. Looks mutch nicer.
1322 // Can reduce aim preformance alot, needs a bit diffrent aimspeed
1324 this.aim_speed = bound(0.1, ((!this.aim_speed) ? 180 : this.aim_speed), 1000);
1326 if(!this.track_accel_pitch) { this.track_accel_pitch = 0.5; }
1327 if(!this.track_accel_rot) { this.track_accel_rot = 0.5; }
1328 if(!this.track_blendrate) { this.track_blendrate = 0.35; }
1331 turret_initparams(this);
1333 this.turret_flags = TUR_FLAG_ISTURRET | (tur.spawnflags);
1335 if(this.turret_flags & TUR_FLAG_SPLASH)
1336 this.aim_flags |= TFL_AIM_SPLASH;
1338 if(this.turret_flags & TUR_FLAG_MISSILE)
1339 this.target_select_flags |= TFL_TARGETSELECT_MISSILES;
1341 if(this.turret_flags & TUR_FLAG_PLAYER)
1342 this.target_select_flags |= TFL_TARGETSELECT_PLAYERS;
1344 if(this.spawnflags & TSL_NO_RESPAWN)
1345 this.damage_flags |= TFL_DMG_DEATH_NORESPAWN;
1347 if (this.turret_flags & TUR_FLAG_SUPPORT)
1348 this.turret_score_target = turret_targetscore_support;
1350 this.turret_score_target = turret_targetscore_generic;
1354 _setmodel(this, tur.model);
1355 setsize(this, tur.m_mins, tur.m_maxs);
1357 this.m_id = tur.m_id;
1358 this.active = ACTIVE_ACTIVE;
1359 this.effects = EF_NODRAW;
1360 this.netname = tur.turret_name;
1361 this.ticrate = bound(sys_frametime, this.ticrate, 60);
1362 this.max_health = GetResource(this, RES_HEALTH);
1363 this.target_validate_flags = this.target_select_flags;
1364 this.ammo = this.ammo_max;
1365 this.ammo_recharge *= this.ticrate;
1366 this.solid = SOLID_BBOX;
1367 this.takedamage = DAMAGE_AIM;
1368 set_movetype(this, MOVETYPE_NOCLIP);
1369 this.view_ofs = '0 0 0';
1370 this.idle_aim = '0 0 0';
1371 this.turret_firecheckfunc = turret_firecheck;
1372 this.event_damage = turret_damage;
1373 this.event_heal = turret_heal;
1374 this.use = turret_use;
1375 this.bot_attack = true;
1376 this.nextthink = time + 1 + turret_count * sys_frametime;
1377 this.reset = turret_reset;
1379 this.tur_head = new(turret_head);
1380 _setmodel(this.tur_head, tur.head_model);
1381 setsize(this.tur_head, '0 0 0', '0 0 0');
1382 setorigin(this.tur_head, '0 0 0');
1383 setattachment(this.tur_head, this, "tag_head");
1385 this.tur_head.netname = this.tur_head.classname;
1386 this.tur_head.team = this.team;
1387 this.tur_head.owner = this;
1388 this.tur_head.takedamage = DAMAGE_NO;
1389 this.tur_head.solid = SOLID_NOT;
1390 set_movetype(this.tur_head, this.move_movetype);
1392 this.weaponentities[0] = this; // lol
1394 if(!this.tur_defend && this.target != "")
1395 InitializeEntity(this, turret_findtarget, INITPRIO_FINDTARGET);
1398 this.tur_debug_start = this.nextthink;
1399 while(vdist(this.tur_debug_rvec, <, 2))
1400 this.tur_debug_rvec = randomvec() * 4;
1402 this.tur_debug_rvec_x = fabs(this.tur_debug_rvec_x);
1403 this.tur_debug_rvec_y = fabs(this.tur_debug_rvec_y);
1404 this.tur_debug_rvec_z = fabs(this.tur_debug_rvec_z);
1408 turret_respawn(this);
1409 turret_tag_fire_update(this);
1411 tur.tr_setup(tur, this);
1413 if(MUTATOR_CALLHOOK(TurretSpawn, this))