1 #include "sv_turrets.qh"
3 #include <server/autocvars.qh>
6 vector turret_aim_generic(entity this)
10 float distance, impact_time = 0, i, mintime;
12 turret_tag_fire_update(this);
14 if(this.aim_flags & TFL_AIM_SIMPLE)
15 return real_origin(this.enemy);
17 mintime = max(this.attack_finished_single[0] - time,0) + sys_frametime;
20 pre_pos = real_origin(this.enemy);
23 if (this.aim_flags & TFL_AIM_LEAD)
25 if (this.aim_flags & TFL_AIM_SHOTTIMECOMPENSATE) // Need to conpensate for shot traveltime
29 distance = vlen(prep - this.tur_shotorg);
30 impact_time = distance / this.shot_speed;
32 prep = pre_pos + (this.enemy.velocity * (impact_time + mintime));
34 if(this.aim_flags & TFL_AIM_ZPREDICT)
35 if(!IS_ONGROUND(this.enemy))
36 if(this.enemy.move_movetype == MOVETYPE_WALK || this.enemy.move_movetype == MOVETYPE_TOSS || this.enemy.move_movetype == MOVETYPE_BOUNCE)
40 vz = this.enemy.velocity_z;
41 for(i = 0; i < impact_time; i += sys_frametime)
43 vz = vz - (autocvar_sv_gravity * sys_frametime);
44 prep_z = prep_z + vz * sys_frametime;
50 pre_pos = pre_pos + this.enemy.velocity * mintime;
53 if(this.aim_flags & TFL_AIM_SPLASH)
55 //tracebox(pre_pos + '0 0 32',this.enemy.mins,this.enemy.maxs,pre_pos -'0 0 64',MOVE_WORLDONLY,this.enemy);
56 traceline(pre_pos + '0 0 32',pre_pos -'0 0 64',MOVE_WORLDONLY,this.enemy);
57 if(trace_fraction != 1.0)
58 pre_pos = trace_endpos;
64 float turret_targetscore_support(entity _turret,entity _target)
66 float score; // Total score
67 float s_score = 0, d_score;
69 if (_turret.enemy == _target) s_score = 1;
71 d_score = min(_turret.target_range_optimal,tvt_dist) / max(_turret.target_range_optimal,tvt_dist);
73 score = (d_score * _turret.target_select_rangebias) +
74 (s_score * _turret.target_select_samebias);
80 * Generic bias aware score system.
82 float turret_targetscore_generic(entity _turret, entity _target)
84 float d_dist; // Defendmode Distance
85 float score; // Total score
86 float d_score; // Distance score
87 float a_score; // Angular score
88 float m_score = 0; // missile score
89 float p_score = 0; // player score
90 float ikr; // ideal kill range
92 if (_turret.tur_defend)
94 d_dist = vlen(real_origin(_target) - _turret.tur_defend.origin);
95 ikr = vlen(_turret.origin - _turret.tur_defend.origin);
96 d_score = 1 - d_dist / _turret.target_range;
100 // Make a normlized value base on the targets distance from our optimal killzone
101 ikr = _turret.target_range_optimal;
102 d_score = min(ikr, tvt_dist) / max(ikr, tvt_dist);
105 a_score = 1 - tvt_thadf / _turret.aim_maxrotate;
107 if ((_turret.target_select_missilebias > 0) && (_target.flags & FL_PROJECTILE))
110 if ((_turret.target_select_playerbias > 0) && IS_CLIENT(_target))
113 d_score = max(d_score, 0);
114 a_score = max(a_score, 0);
115 m_score = max(m_score, 0);
116 p_score = max(p_score, 0);
118 score = (d_score * _turret.target_select_rangebias) +
119 (a_score * _turret.target_select_anglebias) +
120 (m_score * _turret.target_select_missilebias) +
121 (p_score * _turret.target_select_playerbias);
123 if(vdist((_turret.tur_shotorg - real_origin(_target)), >, _turret.target_range))
130 string sd,sa,sm,sp,ss;
131 string sdt,sat,smt,spt;
134 d_score *= _turret.target_select_rangebias;
137 //sv = ftos(v_score);
138 //v_score *= _turret.target_select_samebias;
139 //svt = ftos(v_score);
142 a_score *= _turret.target_select_anglebias;
146 m_score *= _turret.target_select_missilebias;
150 p_score *= _turret.target_select_playerbias;
155 bprint("^3Target scores^7 \[ ",_turret.netname, " \] ^3for^7 \[ ", _target.netname," \]\n");
156 bprint("^5Range:\[ ",sd, " \]^2+bias:\[ ",sdt," \]\n");
157 bprint("^5Angle:\[ ",sa, " \]^2+bias:\[ ",sat," \]\n");
158 bprint("^5Missile:\[ ",sm," \]^2+bias:\[ ",smt," \]\n");
159 bprint("^5Player:\[ ",sp, " \]^2+bias:\[ ",spt," \]\n");
160 bprint("^3Total (w/bias):\[^1",ss,"\]\n");
167 // Generic damage handling
168 void turret_hide(entity this)
170 this.effects |= EF_NODRAW;
171 this.nextthink = time + this.respawntime - 0.2;
172 setthink(this, turret_respawn);
175 void turret_die(entity this)
177 this.deadflag = DEAD_DEAD;
178 this.tur_head.deadflag = this.deadflag;
180 // Unsolidify and hide real parts
181 this.solid = SOLID_NOT;
182 this.tur_head.solid = this.solid;
184 this.event_damage = func_null;
185 this.takedamage = DAMAGE_NO;
190 //RadiusDamage (this,this, min(this.ammo,50),min(this.ammo,50) * 0.25,250,NULL,min(this.ammo,50)*5,DEATH_TURRET,NULL);
192 Turret tur = get_turretinfo(this.m_id);
193 if(this.damage_flags & TFL_DMG_DEATH_NORESPAWN)
195 tur.tr_death(tur, this);
197 delete(this.tur_head);
203 this.SendFlags |= TNSF_STATUS;
204 this.nextthink = time + 0.2;
205 setthink(this, turret_hide);
207 tur.tr_death(tur, this);
211 void turret_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector vforce)
214 if(this.deadflag == DEAD_DEAD)
217 // Inactive turrets take no damage. (hm..)
221 if(SAME_TEAM(this, attacker))
223 if(autocvar_g_friendlyfire)
224 damage = damage * autocvar_g_friendlyfire;
229 this.health -= damage;
231 // thorw head slightly off aim when hit?
232 if (this.damage_flags & TFL_DMG_HEADSHAKE)
234 this.tur_head.angles_x = this.tur_head.angles_x + (-0.5 + random()) * damage;
235 this.tur_head.angles_y = this.tur_head.angles_y + (-0.5 + random()) * damage;
237 this.SendFlags |= TNSF_ANG;
240 if (this.turret_flags & TUR_FLAG_MOVE)
241 this.velocity = this.velocity + vforce;
243 if (this.health <= 0)
245 this.event_damage = func_null;
246 this.tur_head.event_damage = func_null;
247 this.takedamage = DAMAGE_NO;
248 this.nextthink = time;
249 setthink(this, turret_die);
252 this.SendFlags |= TNSF_STATUS;
255 void turret_think(entity this);
256 void turret_respawn(entity this)
258 // Make sure all parts belong to the same team since
259 // this function doubles as "teamchange" function.
260 this.tur_head.team = this.team;
261 this.effects &= ~EF_NODRAW;
262 this.deadflag = DEAD_NO;
263 this.effects = EF_LOWPRECISION;
264 this.solid = SOLID_BBOX;
265 this.takedamage = DAMAGE_AIM;
266 this.event_damage = turret_damage;
267 this.avelocity = '0 0 0';
268 this.tur_head.avelocity = this.avelocity;
269 this.tur_head.angles = this.idle_aim;
270 this.health = this.max_health;
272 this.volly_counter = this.shot_volly;
273 this.ammo = this.ammo_max;
275 this.nextthink = time + this.ticrate;
276 setthink(this, turret_think);
278 this.SendFlags = TNSF_FULL_UPDATE;
280 Turret tur = get_turretinfo(this.m_id);
281 tur.tr_setup(tur, this);
286 #define cvar_base "g_turrets_unit_"
288 void turrets_setframe(entity this, float _frame, float client_only)
290 if((client_only ? this.clientframe : this.frame ) != _frame)
292 this.SendFlags |= TNSF_ANIM;
293 this.anim_start_time = time;
297 this.clientframe = _frame;
303 bool turret_send(entity this, entity to, float sf)
306 WriteHeader(MSG_ENTITY, ENT_CLIENT_TURRET);
307 WriteByte(MSG_ENTITY, sf);
310 WriteByte(MSG_ENTITY, this.m_id);
312 WriteCoord(MSG_ENTITY, this.origin_x);
313 WriteCoord(MSG_ENTITY, this.origin_y);
314 WriteCoord(MSG_ENTITY, this.origin_z);
316 WriteAngle(MSG_ENTITY, this.angles_x);
317 WriteAngle(MSG_ENTITY, this.angles_y);
322 WriteShort(MSG_ENTITY, rint(this.tur_head.angles_x));
323 WriteShort(MSG_ENTITY, rint(this.tur_head.angles_y));
328 WriteShort(MSG_ENTITY, rint(this.tur_head.avelocity_x));
329 WriteShort(MSG_ENTITY, rint(this.tur_head.avelocity_y));
334 WriteShort(MSG_ENTITY, rint(this.origin_x));
335 WriteShort(MSG_ENTITY, rint(this.origin_y));
336 WriteShort(MSG_ENTITY, rint(this.origin_z));
338 WriteShort(MSG_ENTITY, rint(this.velocity_x));
339 WriteShort(MSG_ENTITY, rint(this.velocity_y));
340 WriteShort(MSG_ENTITY, rint(this.velocity_z));
342 WriteShort(MSG_ENTITY, rint(this.angles_y));
347 WriteCoord(MSG_ENTITY, this.anim_start_time);
348 WriteByte(MSG_ENTITY, this.frame);
353 WriteByte(MSG_ENTITY, this.team);
356 WriteByte(MSG_ENTITY, 0);
358 WriteByte(MSG_ENTITY, ceil((this.health / this.max_health) * 255));
364 void load_unit_settings(entity ent, bool is_reload)
366 string unitname = ent.netname;
372 if(!ent.turret_scale_damage) ent.turret_scale_damage = 1;
373 if(!ent.turret_scale_range) ent.turret_scale_range = 1;
374 if(!ent.turret_scale_refire) ent.turret_scale_refire = 1;
375 if(!ent.turret_scale_ammo) ent.turret_scale_ammo = 1;
376 if(!ent.turret_scale_aim) ent.turret_scale_aim = 1;
377 if(!ent.turret_scale_health) ent.turret_scale_health = 1;
378 if(!ent.turret_scale_respawn) ent.turret_scale_respawn = 1;
380 sbase = strcat(cvar_base,unitname);
384 ent.tur_head.avelocity = '0 0 0';
386 ent.tur_head.angles = '0 0 0';
389 ent.health = cvar(strcat(sbase,"_health")) * ent.turret_scale_health;
390 ent.respawntime = cvar(strcat(sbase,"_respawntime")) * ent.turret_scale_respawn;
392 ent.shot_dmg = cvar(strcat(sbase,"_shot_dmg")) * ent.turret_scale_damage;
393 ent.shot_refire = cvar(strcat(sbase,"_shot_refire")) * ent.turret_scale_refire;
394 ent.shot_radius = cvar(strcat(sbase,"_shot_radius")) * ent.turret_scale_damage;
395 ent.shot_speed = cvar(strcat(sbase,"_shot_speed"));
396 ent.shot_spread = cvar(strcat(sbase,"_shot_spread"));
397 ent.shot_force = cvar(strcat(sbase,"_shot_force")) * ent.turret_scale_damage;
398 ent.shot_volly = cvar(strcat(sbase,"_shot_volly"));
399 ent.shot_volly_refire = cvar(strcat(sbase,"_shot_volly_refire")) * ent.turret_scale_refire;
401 ent.target_range = cvar(strcat(sbase,"_target_range")) * ent.turret_scale_range;
402 ent.target_range_min = cvar(strcat(sbase,"_target_range_min")) * ent.turret_scale_range;
403 ent.target_range_optimal = cvar(strcat(sbase,"_target_range_optimal")) * ent.turret_scale_range;
404 //ent.target_range_fire = cvar(strcat(sbase,"_target_range_fire")) * ent.turret_scale_range;
406 ent.target_select_rangebias = cvar(strcat(sbase,"_target_select_rangebias"));
407 ent.target_select_samebias = cvar(strcat(sbase,"_target_select_samebias"));
408 ent.target_select_anglebias = cvar(strcat(sbase,"_target_select_anglebias"));
409 ent.target_select_playerbias = cvar(strcat(sbase,"_target_select_playerbias"));
410 //ent.target_select_fov = cvar(cvar_gets(sbase,"_target_select_fov"));
412 ent.ammo_max = cvar(strcat(sbase,"_ammo_max")) * ent.turret_scale_ammo;
413 ent.ammo_recharge = cvar(strcat(sbase,"_ammo_recharge")) * ent.turret_scale_ammo;
415 ent.aim_firetolerance_dist = cvar(strcat(sbase,"_aim_firetolerance_dist"));
416 ent.aim_speed = cvar(strcat(sbase,"_aim_speed")) * ent.turret_scale_aim;
417 ent.aim_maxrotate = cvar(strcat(sbase,"_aim_maxrot"));
418 ent.aim_maxpitch = cvar(strcat(sbase,"_aim_maxpitch"));
420 ent.track_type = cvar(strcat(sbase,"_track_type"));
421 ent.track_accel_pitch = cvar(strcat(sbase,"_track_accel_pitch"));
422 ent.track_accel_rotate = cvar(strcat(sbase,"_track_accel_rot"));
423 ent.track_blendrate = cvar(strcat(sbase,"_track_blendrate"));
426 Turret tur = get_turretinfo(ent.m_id);
427 tur.tr_setup(tur, ent);
431 void turret_projectile_explode(entity this)
434 this.takedamage = DAMAGE_NO;
435 this.event_damage = func_null;
438 d = RadiusDamage (this, this.owner, this.owner.shot_dmg, 0, this.owner.shot_radius, this, NULL, this.owner.shot_force, this.totalfrags, NULL);
439 this.owner.tur_debug_dmg_t_h = this.owner.tur_debug_dmg_t_h + d;
440 this.owner.tur_debug_dmg_t_f = this.owner.tur_debug_dmg_t_f + this.owner.shot_dmg;
442 RadiusDamage (this, this.realowner, this.owner.shot_dmg, 0, this.owner.shot_radius, this, NULL, this.owner.shot_force, this.totalfrags, NULL);
447 void turret_projectile_touch(entity this, entity toucher)
449 PROJECTILE_TOUCH(this, toucher);
450 turret_projectile_explode(this);
453 void turret_projectile_damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector vforce)
455 this.velocity += vforce;
456 this.health -= damage;
457 //this.realowner = attacker; // Dont change realowner, it does not make much sense for turrets
459 W_PrepareExplosionByDamage(this, this.owner, turret_projectile_explode);
462 entity turret_projectile(entity actor, Sound _snd, float _size, float _health, float _death, float _proj_type, float _cull, float _cli_anim)
467 sound (actor, CH_WEAPON_A, _snd, VOL_BASE, ATTEN_NORM);
469 setorigin(proj, actor.tur_shotorg);
470 setsize(proj, '-0.5 -0.5 -0.5' * _size, '0.5 0.5 0.5' * _size);
472 proj.realowner = actor;
473 proj.bot_dodge = true;
474 proj.bot_dodgerating = actor.shot_dmg;
475 setthink(proj, turret_projectile_explode);
476 settouch(proj, turret_projectile_touch);
477 proj.nextthink = time + 9;
478 set_movetype(proj, MOVETYPE_FLYMISSILE);
479 proj.velocity = normalize(actor.tur_shotdir_updated + randomvec() * actor.shot_spread) * actor.shot_speed;
480 proj.flags = FL_PROJECTILE;
481 IL_PUSH(g_projectiles, proj);
482 IL_PUSH(g_bot_dodge, proj);
483 proj.enemy = actor.enemy;
484 proj.totalfrags = _death;
485 PROJECTILE_MAKETRIGGER(proj);
488 proj.health = _health;
489 proj.takedamage = DAMAGE_YES;
490 proj.event_damage = turret_projectile_damage;
493 proj.flags |= FL_NOTARGET;
495 CSQCProjectile(proj, _cli_anim, _proj_type, _cull);
501 ** updates enemy distances, predicted impact point/time
502 ** and updated aim<->predict impact distance.
504 void turret_do_updates(entity t_turret)
506 vector enemy_pos = real_origin(t_turret.enemy);
508 turret_tag_fire_update(t_turret);
510 t_turret.tur_shotdir_updated = v_forward;
511 t_turret.tur_dist_enemy = vlen(t_turret.tur_shotorg - enemy_pos);
512 t_turret.tur_dist_aimpos = vlen(t_turret.tur_shotorg - t_turret.tur_aimpos);
514 /*if((t_turret.firecheck_flags & TFL_FIRECHECK_VERIFIED) && (t_turret.enemy))
516 oldpos = t_turret.enemy.origin;
517 setorigin(t_turret.enemy, t_turret.tur_aimpos);
518 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);
519 setorigin(t_turret.enemy, oldpos);
521 if(trace_ent == t_turret.enemy)
522 t_turret.tur_dist_impact_to_aimpos = 0;
524 t_turret.tur_dist_impact_to_aimpos = vlen(trace_endpos - t_turret.tur_aimpos);
527 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);
529 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);
530 t_turret.tur_impactent = trace_ent;
531 t_turret.tur_impacttime = vlen(t_turret.tur_shotorg - trace_endpos) / t_turret.shot_speed;
535 ** Handles head rotation according to
536 ** the units .track_type and .track_flags
538 .float turret_framecounter;
539 void turret_track(entity this)
541 vector target_angle; // This is where we want to aim
542 vector move_angle; // This is where we can aim
545 v1 = this.tur_head.angles;
546 v2 = this.tur_head.avelocity;
548 if (this.track_flags == TFL_TRACK_NO)
552 target_angle = this.idle_aim - ('1 0 0' * this.aim_maxpitch);
553 else if (this.enemy == NULL)
556 target_angle = this.idle_aim + this.angles;
558 target_angle = vectoangles(normalize(this.tur_aimpos - this.tur_shotorg));
562 target_angle = vectoangles(normalize(this.tur_aimpos - this.tur_shotorg));
565 this.tur_head.angles_x = anglemods(this.tur_head.angles_x);
566 this.tur_head.angles_y = anglemods(this.tur_head.angles_y);
568 // Find the diffrence between where we currently aim and where we want to aim
569 //move_angle = target_angle - (this.angles + this.tur_head.angles);
570 //move_angle = shortangle_vxy(move_angle,(this.angles + this.tur_head.angles));
572 move_angle = AnglesTransform_ToAngles(AnglesTransform_LeftDivide(AnglesTransform_FromAngles(this.angles), AnglesTransform_FromAngles(target_angle))) - this.tur_head.angles;
573 move_angle = shortangle_vxy(move_angle, this.tur_head.angles);
575 switch(this.track_type)
577 case TFL_TRACKTYPE_STEPMOTOR:
578 f_tmp = this.aim_speed * this.ticrate; // dgr/sec -> dgr/tic
579 if (this.track_flags & TFL_TRACK_PITCH)
581 this.tur_head.angles_x += bound(-f_tmp,move_angle_x, f_tmp);
582 if(this.tur_head.angles_x > this.aim_maxpitch)
583 this.tur_head.angles_x = this.aim_maxpitch;
585 if(this.tur_head.angles_x < -this.aim_maxpitch)
586 this.tur_head.angles_x = this.aim_maxpitch;
589 if (this.track_flags & TFL_TRACK_ROTATE)
591 this.tur_head.angles_y += bound(-f_tmp, move_angle_y, f_tmp);
592 if(this.tur_head.angles_y > this.aim_maxrotate)
593 this.tur_head.angles_y = this.aim_maxrotate;
595 if(this.tur_head.angles_y < -this.aim_maxrotate)
596 this.tur_head.angles_y = this.aim_maxrotate;
600 this.SendFlags |= TNSF_ANG;
604 case TFL_TRACKTYPE_FLUIDINERTIA:
605 f_tmp = this.aim_speed * this.ticrate; // dgr/sec -> dgr/tic
606 move_angle_x = bound(-this.aim_speed, move_angle_x * this.track_accel_pitch * f_tmp, this.aim_speed);
607 move_angle_y = bound(-this.aim_speed, move_angle_y * this.track_accel_rotate * f_tmp, this.aim_speed);
608 move_angle = (this.tur_head.avelocity * this.track_blendrate) + (move_angle * (1 - this.track_blendrate));
611 case TFL_TRACKTYPE_FLUIDPRECISE:
613 move_angle_y = bound(-this.aim_speed, move_angle_y, this.aim_speed);
614 move_angle_x = bound(-this.aim_speed, move_angle_x, this.aim_speed);
620 if (this.track_flags & TFL_TRACK_PITCH)
622 this.tur_head.avelocity_x = move_angle_x;
623 if((this.tur_head.angles_x + this.tur_head.avelocity_x * this.ticrate) > this.aim_maxpitch)
625 this.tur_head.avelocity_x = 0;
626 this.tur_head.angles_x = this.aim_maxpitch;
628 this.SendFlags |= TNSF_ANG;
631 if((this.tur_head.angles_x + this.tur_head.avelocity_x * this.ticrate) < -this.aim_maxpitch)
633 this.tur_head.avelocity_x = 0;
634 this.tur_head.angles_x = -this.aim_maxpitch;
636 this.SendFlags |= TNSF_ANG;
641 if (this.track_flags & TFL_TRACK_ROTATE)
643 this.tur_head.avelocity_y = move_angle_y;
645 if((this.tur_head.angles_y + this.tur_head.avelocity_y * this.ticrate) > this.aim_maxrotate)
647 this.tur_head.avelocity_y = 0;
648 this.tur_head.angles_y = this.aim_maxrotate;
650 this.SendFlags |= TNSF_ANG;
653 if((this.tur_head.angles_y + this.tur_head.avelocity_y * this.ticrate) < -this.aim_maxrotate)
655 this.tur_head.avelocity_y = 0;
656 this.tur_head.angles_y = -this.aim_maxrotate;
658 this.SendFlags |= TNSF_ANG;
662 this.SendFlags |= TNSF_AVEL;
664 // Force a angle update every 10'th frame
665 this.turret_framecounter += 1;
666 if(this.turret_framecounter >= 10)
668 this.SendFlags |= TNSF_ANG;
669 this.turret_framecounter = 0;
674 + TFL_TARGETSELECT_NO
675 + TFL_TARGETSELECT_LOS
676 + TFL_TARGETSELECT_PLAYERS
677 + TFL_TARGETSELECT_MISSILES
678 - TFL_TARGETSELECT_TRIGGERTARGET
679 + TFL_TARGETSELECT_ANGLELIMITS
680 + TFL_TARGETSELECT_RANGELIMITS
681 + TFL_TARGETSELECT_TEAMCHECK
682 - TFL_TARGETSELECT_NOBUILTIN
683 + TFL_TARGETSELECT_OWNTEAM
687 ** Evaluate a entity for target valitity based on validate_flags
688 ** NOTE: the caller must check takedamage before calling this, to inline this check.
690 float turret_validate_target(entity e_turret, entity e_target, float validate_flags)
694 //if(!validate_flags & TFL_TARGETSELECT_NOBUILTIN)
700 if(e_target.owner == e_turret)
703 if(!checkpvs(e_target.origin, e_turret))
706 if(e_target.alpha <= 0.3)
709 if(MUTATOR_CALLHOOK(TurretValidateTarget, e_turret, e_target, validate_flags))
710 return M_ARGV(3, float);
712 if (validate_flags & TFL_TARGETSELECT_NO)
715 // If only this was used more..
716 if (e_target.flags & FL_NOTARGET)
720 if(IS_VEHICLE(e_target))
722 if (e_target.vehicle_health <= 0)
725 else if (e_target.health <= 0)
727 else if(STAT(FROZEN, e_target) > 0)
731 if (IS_CLIENT(e_target))
733 if(!(validate_flags & TFL_TARGETSELECT_PLAYERS))
736 if (IS_DEAD(e_target))
741 if(validate_flags & TFL_TARGETSELECT_NOTURRETS)
742 if(e_target.owner.tur_head == e_target)
743 if(e_target.team != e_turret.team) // Dont break support units.
747 if (e_target.flags & FL_PROJECTILE)
748 if(!(validate_flags & TFL_TARGETSELECT_MISSILES))
751 if (validate_flags & TFL_TARGETSELECT_MISSILESONLY)
752 if(!(e_target.flags & FL_PROJECTILE))
756 if (validate_flags & TFL_TARGETSELECT_TEAMCHECK)
758 if (validate_flags & TFL_TARGETSELECT_OWNTEAM)
760 if (e_target.team != e_turret.team)
763 if (e_turret.team != e_target.owner.team)
768 if (e_target.team == e_turret.team)
771 if (e_turret.team == e_target.owner.team)
777 tvt_dist = vlen(e_turret.origin - real_origin(e_target));
778 if (validate_flags & TFL_TARGETSELECT_RANGELIMITS)
780 if (tvt_dist < e_turret.target_range_min)
783 if (tvt_dist > e_turret.target_range)
787 // Can we even aim this thing?
788 tvt_thadv = angleofs3(e_turret.tur_head.origin, e_turret.angles + e_turret.tur_head.angles, e_target);
789 tvt_tadv = shortangle_vxy(angleofs(e_turret, e_target), e_turret.angles);
790 tvt_thadf = vlen(tvt_thadv);
791 tvt_tadf = vlen(tvt_tadv);
794 if(validate_flags & TFL_TARGETSELECT_FOV)
796 if(e_turret.target_select_fov < tvt_thadf)
801 if (validate_flags & TFL_TARGETSELECT_ANGLELIMITS)
803 if (fabs(tvt_tadv_x) > e_turret.aim_maxpitch)
806 if (fabs(tvt_tadv_y) > e_turret.aim_maxrotate)
811 if (validate_flags & TFL_TARGETSELECT_LOS)
813 v_tmp = real_origin(e_target) + ((e_target.mins + e_target.maxs) * 0.5);
815 traceline(e_turret.origin + '0 0 16', v_tmp, 0, e_turret);
817 if(vdist(v_tmp - trace_endpos, >, e_turret.aim_firetolerance_dist))
821 if (e_target.classname == "grapplinghook")
825 if (e_target.classname == "func_button")
829 #ifdef TURRET_DEBUG_TARGETSELECT
830 LOG_TRACE("Target:",e_target.netname," is a valid target for ",e_turret.netname);
836 entity turret_select_target(entity this)
838 entity e; // target looper entity
839 float score; // target looper entity score
840 entity e_enemy; // currently best scoreing target
841 float m_score; // currently best scoreing target's score
844 if(this.enemy && this.enemy.takedamage && turret_validate_target(this,this.enemy,this.target_validate_flags) > 0)
846 e_enemy = this.enemy;
847 m_score = this.turret_score_target(this,e_enemy) * this.target_select_samebias;
850 e_enemy = this.enemy = NULL;
852 e = findradius(this.origin, this.target_range);
854 // Nothing to aim at?
862 float f = turret_validate_target(this, e, this.target_select_flags);
863 //dprint("F is: ", ftos(f), "\n");
866 score = this.turret_score_target(this,e);
867 if ((score > m_score) && (score > 0))
886 + TFL_FIRECHECK_WORLD
888 + TFL_FIRECHECK_DISTANCES
890 + TFL_FIRECHECK_AIMDIST
891 + TFL_FIRECHECK_REALDIST
892 - TFL_FIRECHECK_ANGLEDIST
893 - TFL_FIRECHECK_TEAMCECK
895 + TFL_FIRECHECK_AMMO_OWN
896 + TFL_FIRECHECK_AMMO_OTHER
897 + TFL_FIRECHECK_REFIRE
901 ** Preforms pre-fire checks based on the uints firecheck_flags
903 bool turret_firecheck(entity this)
905 // This one just dont care =)
906 if (this.firecheck_flags & TFL_FIRECHECK_NO)
909 if (this.enemy == NULL)
913 if (this.firecheck_flags & TFL_FIRECHECK_REFIRE)
914 if (this.attack_finished_single[0] > time) return false;
916 // Special case: volly fire turret that has to fire a full volly if a shot was fired.
917 if (this.shoot_flags & TFL_SHOOT_VOLLYALWAYS)
918 if (this.volly_counter != this.shot_volly)
919 if(this.ammo >= this.shot_dmg)
922 // Lack of zombies makes shooting dead things unnecessary :P
923 if (this.firecheck_flags & TFL_FIRECHECK_DEAD)
924 if (IS_DEAD(this.enemy))
928 if (this.firecheck_flags & TFL_FIRECHECK_AMMO_OWN)
929 if (this.ammo < this.shot_dmg)
932 // Other's ammo? (support-supply units)
933 if (this.firecheck_flags & TFL_FIRECHECK_AMMO_OTHER)
934 if (this.enemy.ammo >= this.enemy.ammo_max)
937 // Target of opertunity?
938 if(turret_validate_target(this, this.tur_impactent, this.target_validate_flags) > 0)
940 this.enemy = this.tur_impactent;
944 if (this.firecheck_flags & TFL_FIRECHECK_DISTANCES)
947 if (this.tur_dist_aimpos < this.target_range_min)
948 if(turret_validate_target(this, this.tur_impactent, this.target_validate_flags) > 0)
949 return true; // Target of opertunity?
955 if (this.firecheck_flags & TFL_FIRECHECK_AFF)
956 if (this.tur_impactent.team == this.team)
959 // aim<->predicted impact
960 if (this.firecheck_flags & TFL_FIRECHECK_AIMDIST)
961 if (this.tur_dist_impact_to_aimpos > this.aim_firetolerance_dist)
965 if (this.shot_volly > 1)
966 if (this.volly_counter == this.shot_volly)
967 if (this.ammo < (this.shot_dmg * this.shot_volly))
970 /*if(this.firecheck_flags & TFL_FIRECHECK_VERIFIED)
971 if(this.tur_impactent != this.enemy)
977 bool turret_checkfire(entity this)
979 if(MUTATOR_CALLHOOK(Turret_CheckFire, this))
980 return M_ARGV(1, bool);
982 return this.turret_firecheckfunc(this);
985 void turret_fire(entity this)
987 if (autocvar_g_turrets_nofire != 0)
990 if(MUTATOR_CALLHOOK(TurretFire, this))
993 Turret info = get_turretinfo(this.m_id);
994 info.tr_attack(info, this);
996 this.attack_finished_single[0] = time + this.shot_refire;
997 this.ammo -= this.shot_dmg;
998 this.volly_counter = this.volly_counter - 1;
1000 if (this.volly_counter <= 0)
1002 this.volly_counter = this.shot_volly;
1004 if (this.shoot_flags & TFL_SHOOT_CLEARTARGET)
1007 if (this.shot_volly > 1)
1008 this.attack_finished_single[0] = time + this.shot_volly_refire;
1012 if (this.enemy) paint_target3(this.tur_aimpos, 64, this.tur_debug_rvec, this.tur_impacttime + 0.25);
1016 void turret_think(entity this)
1018 this.nextthink = time + this.ticrate;
1020 MUTATOR_CALLHOOK(TurretThink, this);
1023 if (this.tur_debug_tmr1 < time)
1025 if (this.enemy) paint_target (this.enemy,128,this.tur_debug_rvec,0.9);
1026 paint_target(this,256,this.tur_debug_rvec,0.9);
1027 this.tur_debug_tmr1 = time + 1;
1032 if (!(this.spawnflags & TSF_NO_AMMO_REGEN))
1033 if (this.ammo < this.ammo_max)
1034 this.ammo = min(this.ammo + this.ammo_recharge, this.ammo_max);
1036 // Inactive turrets needs to run the think loop,
1037 // So they can handle animation and wake up if need be.
1044 // This is typicaly used for zaping every target in range
1045 // turret_fusionreactor uses this to recharge friendlys.
1046 if (this.shoot_flags & TFL_SHOOT_HITALLVALID)
1048 // Do a this.turret_fire for every valid target.
1049 entity e = findradius(this.origin,this.target_range);
1054 if (turret_validate_target(this,e,this.target_validate_flags))
1058 turret_do_updates(this);
1060 if (turret_checkfire(this))
1069 else if(this.shoot_flags & TFL_SHOOT_CUSTOM)
1071 // This one is doing something.. oddball. assume its handles what needs to be handled.
1074 if(!(this.aim_flags & TFL_AIM_NO))
1075 this.tur_aimpos = turret_aim_generic(this);
1078 if(!(this.track_flags & TFL_TRACK_NO))
1081 turret_do_updates(this);
1084 if (turret_checkfire(this))
1089 // Special case for volly always. if it fired once it must compleate the volly.
1090 if(this.shoot_flags & TFL_SHOOT_VOLLYALWAYS)
1091 if(this.volly_counter != this.shot_volly)
1093 // Predict or whatnot
1094 if(!(this.aim_flags & TFL_AIM_NO))
1095 this.tur_aimpos = turret_aim_generic(this);
1098 if(!(this.track_flags & TFL_TRACK_NO))
1101 turret_do_updates(this);
1104 if (turret_checkfire(this))
1107 Turret tur = get_turretinfo(this.m_id);
1108 tur.tr_think(tur, this);
1113 // Check if we have a vailid enemy, and try to find one if we dont.
1115 // g_turrets_targetscan_maxdelay forces a target re-scan at least this often
1116 float do_target_scan = 0;
1117 if((this.target_select_time + autocvar_g_turrets_targetscan_maxdelay) < time)
1120 // Old target (if any) invalid?
1121 if(this.target_validate_time < time)
1122 if (turret_validate_target(this, this.enemy, this.target_validate_flags) <= 0)
1125 this.target_validate_time = time + 0.5;
1129 // But never more often then g_turrets_targetscan_mindelay!
1130 if (this.target_select_time + autocvar_g_turrets_targetscan_mindelay > time)
1135 this.enemy = turret_select_target(this);
1136 this.target_select_time = time;
1139 // No target, just go to idle, do any custom stuff and bail.
1140 if (this.enemy == NULL)
1143 if(!(this.track_flags & TFL_TRACK_NO))
1146 Turret tur = get_turretinfo(this.m_id);
1147 tur.tr_think(tur, this);
1153 this.lip = time + autocvar_g_turrets_aimidle_delay; // Keep track of the last time we had a target.
1156 if(!(this.aim_flags & TFL_AIM_NO))
1157 this.tur_aimpos = turret_aim_generic(this);
1160 if(!(this.track_flags & TFL_TRACK_NO))
1163 turret_do_updates(this);
1166 if (turret_checkfire(this))
1170 Turret tur = get_turretinfo(this.m_id);
1171 tur.tr_think(tur, this);
1175 When .used a turret switch team to activator.team.
1176 If activator is NULL, the turret go inactive.
1178 void turret_use(entity this, entity actor, entity trigger)
1180 LOG_TRACE("Turret ",this.netname, " used by ", actor.classname);
1182 this.team = actor.team;
1185 this.active = ACTIVE_NOT;
1187 this.active = ACTIVE_ACTIVE;
1191 void turret_link(entity this)
1193 Net_LinkEntity(this, true, 0, turret_send);
1194 setthink(this, turret_think);
1195 this.nextthink = time;
1196 this.tur_head.effects = EF_NODRAW;
1199 void turrets_manager_think(entity this)
1201 this.nextthink = time + 1;
1203 if (autocvar_g_turrets_reloadcvars == 1)
1205 IL_EACH(g_turrets, true,
1207 load_unit_settings(it, true);
1208 Turret tur = get_turretinfo(it.m_id);
1209 tur.tr_think(tur, it);
1211 cvar_set("g_turrets_reloadcvars", "0");
1215 void turret_initparams(entity tur)
1217 #define TRY(x) (x) ? (x)
1218 tur.respawntime = max (-1, (TRY(tur.respawntime) : 60 ));
1219 tur.shot_refire = bound(0.01, (TRY(tur.shot_refire) : 1 ), 9999);
1220 tur.shot_dmg = max (1, (TRY(tur.shot_dmg) : tur.shot_refire * 50 ));
1221 tur.shot_radius = max (1, (TRY(tur.shot_radius) : tur.shot_dmg * 0.5 ));
1222 tur.shot_speed = max (1, (TRY(tur.shot_speed) : 2500 ));
1223 tur.shot_spread = bound(0.0001, (TRY(tur.shot_spread) : 0.0125 ), 500);
1224 tur.shot_force = bound(0.001, (TRY(tur.shot_force) : tur.shot_dmg * 0.5 + tur.shot_radius * 0.5 ), 5000);
1225 tur.shot_volly = bound(1, (TRY(tur.shot_volly) : 1 ), floor(tur.ammo_max / tur.shot_dmg));
1226 tur.shot_volly_refire = bound(tur.shot_refire, (TRY(tur.shot_volly_refire) : tur.shot_refire * tur.shot_volly ), 60);
1227 tur.target_range = bound(0, (TRY(tur.target_range) : tur.shot_speed * 0.5 ), MAX_SHOT_DISTANCE);
1228 tur.target_range_min = bound(0, (TRY(tur.target_range_min) : tur.shot_radius * 2 ), MAX_SHOT_DISTANCE);
1229 tur.target_range_optimal = bound(0, (TRY(tur.target_range_optimal) : tur.target_range * 0.5 ), MAX_SHOT_DISTANCE);
1230 tur.aim_maxrotate = bound(0, (TRY(tur.aim_maxrotate) : 90 ), 360);
1231 tur.aim_maxpitch = bound(0, (TRY(tur.aim_maxpitch) : 20 ), 90);
1232 tur.aim_speed = bound(0.1, (TRY(tur.aim_speed) : 36 ), 1000);
1233 tur.aim_firetolerance_dist = bound(0.1, (TRY(tur.aim_firetolerance_dist) : 5 + (tur.shot_radius * 2) ), MAX_SHOT_DISTANCE);
1234 tur.target_select_rangebias = bound(-10, (TRY(tur.target_select_rangebias) : 1 ), 10);
1235 tur.target_select_samebias = bound(-10, (TRY(tur.target_select_samebias) : 1 ), 10);
1236 tur.target_select_anglebias = bound(-10, (TRY(tur.target_select_anglebias) : 1 ), 10);
1237 tur.target_select_missilebias = bound(-10, (TRY(tur.target_select_missilebias) : 1 ), 10);
1238 tur.target_select_playerbias = bound(-10, (TRY(tur.target_select_playerbias) : 1 ), 10);
1239 tur.ammo_max = max (tur.shot_dmg, (TRY(tur.ammo_max) : tur.shot_dmg * 10 ));
1240 tur.ammo_recharge = max (0, (TRY(tur.ammo_recharge) : tur.shot_dmg * 0.5 ));
1244 bool turret_initialize(entity this, Turret tur)
1246 if(!autocvar_g_turrets)
1250 return false; // invalid turret
1252 // if tur_head exists, we can assume this turret re-spawned
1253 if(!this.tur_head) {
1254 tur.tr_precache(tur);
1255 IL_PUSH(g_turrets, this);
1256 IL_PUSH(g_bot_targets, this);
1259 entity e = find(NULL, classname, "turret_manager");
1262 e = new(turret_manager);
1263 setthink(e, turrets_manager_think);
1264 e.nextthink = time + 2;
1267 if(!(this.spawnflags & TSF_SUSPENDED))
1270 this.netname = tur.netname;
1271 load_unit_settings(this, 0);
1273 if(!this.team || !teamplay) { this.team = MAX_SHOT_DISTANCE; }
1274 if(!this.ticrate) { this.ticrate = ((this.turret_flags & TUR_FLAG_SUPPORT) ? 0.2 : 0.1); }
1275 if(!this.health) { this.health = 1000; }
1276 if(!this.shot_refire) { this.shot_refire = 1; }
1277 if(!this.tur_shotorg) { this.tur_shotorg = '50 0 50'; }
1278 if(!this.turret_flags) { this.turret_flags = TUR_FLAG_SPLASH | TUR_FLAG_MEDPROJ | TUR_FLAG_PLAYER; }
1279 if(!this.damage_flags) { this.damage_flags = TFL_DMG_YES | TFL_DMG_RETALIATE | TFL_DMG_AIMSHAKE; }
1280 if(!this.aim_flags) { this.aim_flags = TFL_AIM_LEAD | TFL_AIM_SHOTTIMECOMPENSATE; }
1281 if(!this.track_type) { this.track_type = TFL_TRACKTYPE_STEPMOTOR; }
1282 if(!this.track_flags) { this.track_flags = TFL_TRACK_PITCH | TFL_TRACK_ROTATE; }
1283 if(!this.ammo_flags) { this.ammo_flags = TFL_AMMO_ENERGY | TFL_AMMO_RECHARGE; }
1284 if(!this.target_select_flags) { this.target_select_flags = TFL_TARGETSELECT_LOS | TFL_TARGETSELECT_TEAMCHECK | TFL_TARGETSELECT_RANGELIMITS | TFL_TARGETSELECT_ANGLELIMITS; }
1285 if(!this.firecheck_flags) { this.firecheck_flags = TFL_FIRECHECK_DEAD | TFL_FIRECHECK_DISTANCES | TFL_FIRECHECK_LOS
1286 | TFL_FIRECHECK_AIMDIST | TFL_FIRECHECK_TEAMCHECK | TFL_FIRECHECK_AMMO_OWN | TFL_FIRECHECK_REFIRE; }
1288 if(this.track_type != TFL_TRACKTYPE_STEPMOTOR)
1290 // Fluid / Ineria mode. Looks mutch nicer.
1291 // Can reduce aim preformance alot, needs a bit diffrent aimspeed
1293 this.aim_speed = bound(0.1, ((!this.aim_speed) ? 180 : this.aim_speed), 1000);
1295 if(!this.track_accel_pitch) { this.track_accel_pitch = 0.5; }
1296 if(!this.track_accel_rotate) { this.track_accel_rotate = 0.5; }
1297 if(!this.track_blendrate) { this.track_blendrate = 0.35; }
1300 turret_initparams(this);
1302 this.turret_flags = TUR_FLAG_ISTURRET | (tur.spawnflags);
1304 if(this.turret_flags & TUR_FLAG_SPLASH)
1305 this.aim_flags |= TFL_AIM_SPLASH;
1307 if(this.turret_flags & TUR_FLAG_MISSILE)
1308 this.target_select_flags |= TFL_TARGETSELECT_MISSILES;
1310 if(this.turret_flags & TUR_FLAG_PLAYER)
1311 this.target_select_flags |= TFL_TARGETSELECT_PLAYERS;
1313 if(this.spawnflags & TSL_NO_RESPAWN)
1314 this.damage_flags |= TFL_DMG_DEATH_NORESPAWN;
1316 if (this.turret_flags & TUR_FLAG_SUPPORT)
1317 this.turret_score_target = turret_targetscore_support;
1319 this.turret_score_target = turret_targetscore_generic;
1323 _setmodel(this, tur.model);
1324 setsize(this, tur.mins, tur.maxs);
1326 this.m_id = tur.m_id;
1327 this.classname = "turret_main";
1328 this.active = ACTIVE_ACTIVE;
1329 this.effects = EF_NODRAW;
1330 this.netname = tur.turret_name;
1331 this.ticrate = bound(sys_frametime, this.ticrate, 60);
1332 this.max_health = this.health;
1333 this.target_validate_flags = this.target_select_flags;
1334 this.ammo = this.ammo_max;
1335 this.ammo_recharge *= this.ticrate;
1336 this.solid = SOLID_BBOX;
1337 this.takedamage = DAMAGE_AIM;
1338 set_movetype(this, MOVETYPE_NOCLIP);
1339 this.view_ofs = '0 0 0';
1340 this.turret_firecheckfunc = turret_firecheck;
1341 this.event_damage = turret_damage;
1342 this.use = turret_use;
1343 this.bot_attack = true;
1344 this.nextthink = time + 1;
1345 this.nextthink += turret_count * sys_frametime;
1347 this.tur_head = new(turret_head);
1348 _setmodel(this.tur_head, tur.head_model);
1349 setsize(this.tur_head, '0 0 0', '0 0 0');
1350 setorigin(this.tur_head, '0 0 0');
1351 setattachment(this.tur_head, this, "tag_head");
1353 this.tur_head.netname = this.tur_head.classname;
1354 this.tur_head.team = this.team;
1355 this.tur_head.owner = this;
1356 this.tur_head.takedamage = DAMAGE_NO;
1357 this.tur_head.solid = SOLID_NOT;
1358 set_movetype(this.tur_head, this.move_movetype);
1360 if(!this.tur_defend)
1361 if(this.target != "")
1363 this.tur_defend = find(NULL, targetname, this.target);
1364 if (this.tur_defend == NULL)
1367 LOG_TRACE("Turret has invalid defendpoint!");
1371 if (this.tur_defend)
1372 this.idle_aim = this.tur_head.angles + angleofs(this.tur_head, this.tur_defend);
1374 this.idle_aim = '0 0 0';
1377 this.tur_debug_start = this.nextthink;
1378 while(vdist(this.tur_debug_rvec, <, 2))
1379 this.tur_debug_rvec = randomvec() * 4;
1381 this.tur_debug_rvec_x = fabs(this.tur_debug_rvec_x);
1382 this.tur_debug_rvec_y = fabs(this.tur_debug_rvec_y);
1383 this.tur_debug_rvec_z = fabs(this.tur_debug_rvec_z);
1387 turret_respawn(this);
1388 turret_tag_fire_update(this);
1390 tur.tr_setup(tur, this);
1392 if(MUTATOR_CALLHOOK(TurretSpawn, this))