]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/tturrets/include/turrets_early.qh
Fix bad LOS origin (made ehweel and walker turrets idle in place insted of attacking)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / tturrets / include / turrets_early.qh
1 // Comment out below to skip turrets
2 #define TTURRETS_ENABLED
3
4 #ifdef TTURRETS_ENABLED
5
6 #message "with tZork turrets"
7
8 float turret_count;
9
10 vector real_origin(entity ent);
11
12 /// Map time control over pain inflicted
13 .float turret_scale_damage;
14 /// Map time control targetting range
15 .float turret_scale_range;
16 /// Map time control refire
17 .float turret_scale_refire;
18 /// Map time control ammo held and recharged
19 .float turret_scale_ammo;
20 /// Map time control aim speed
21 .float turret_scale_aim;
22 /// Map time control health
23 .float turret_scale_health;
24 /// Map time control respawn time
25 .float turret_scale_respawn;
26
27 /// Used for cvar reloading
28 .string cvar_basename;
29
30 //.float spawnflags
31 #define TSF_SUSPENDED     1
32 /// Spawn a pillar model under the turret to make it look ok on uneven ground surfaces
33 #define TSF_TERRAINBASE   2
34 /// Disable builtin ammo regeneration
35 #define TSF_NO_AMMO_REGEN 4
36 /// Dont break path to chase enemys. will still fire at them if possible.
37 #define TSF_NO_PATHBREAK  8
38 /// Dont respawn
39 #define TSL_NO_RESPAWN    16
40
41 /// target selection flags
42 .float target_select_flags;
43 /// target validatoin flags
44 .float target_validate_flags;
45 /// Dont select a target on its own.
46 #define TFL_TARGETSELECT_NO            2
47 /// Need line of sight
48 #define TFL_TARGETSELECT_LOS           4
49 /// Players are valid targets
50 #define TFL_TARGETSELECT_PLAYERS       8
51 /// Missiles are valid targets
52 #define TFL_TARGETSELECT_MISSILES      16
53 /// Responds to turret_trigger_target events
54 #define TFL_TARGETSELECT_TRIGGERTARGET 32
55 /// Angular limitations of turret head limits target selection
56 #define TFL_TARGETSELECT_ANGLELIMITS   64
57 /// Range limits apply in targetselection
58 #define TFL_TARGETSELECT_RANGELIMTS    128
59 /// DOnt select targets with a .team matching its own
60 #define TFL_TARGETSELECT_TEAMCHECK     256
61 /// Cant select targets on its own. needs to be triggerd or slaved.
62 #define TFL_TARGETSELECT_NOBUILTIN     512
63 /// TFL_TARGETSELECT_TEAMCHECK is inverted (selects only mebers of own .team)
64 #define TFL_TARGETSELECT_OWNTEAM       1024
65 /// Turrets aren't valid targets
66 #define TFL_TARGETSELECT_NOTURRETS     2048
67 /// Use feild of view
68 #define TFL_TARGETSELECT_FOV           4096
69
70 #define TFL_TARGETSELECT_MISSILESONLY  8192
71
72 /// aim flags
73 .float aim_flags;
74 /// Dont aim.
75 #define TFL_AIM_NO                  1
76 /// Go for ground, not direct hit
77 #define TFL_AIM_GROUND              2
78 /// Go for ground, not direct hit, but only if target is on ground.
79 #define TFL_AIM_GROUND2             4
80 /// Use balistic aim. FIXME: not implemented
81 #define TFL_AIM_BALISTIC            8
82 /// Try to predict target movement (does not account for gravity)
83 #define TFL_AIM_LEAD                16
84 /// Compensate for shot traveltime when lead
85 #define TFL_AIM_SHOTTIMECOMPENSATE  32
86 /// Aim slightly in front of target
87 #define TFL_AIM_INFRONT             64
88 /// Aim slightly behind target
89 #define TFL_AIM_BEHIND              128
90 /// blend real and predicted z positions. (fake bounce prediction)
91 #define TFL_AIM_ZEASE               256
92 /// Try to do real prediction of targets z pos at impact.
93 #define TFL_AIM_ZPREDICT            512
94 /// Simply aim at target's current location
95 #define TFL_AIM_SIMPLE              1024
96
97 /// track (turn and pitch head) flags
98 .float track_flags;
99 /// Dont move head
100 #define TFL_TRACK_NO    2
101 /// Pitch the head
102 #define TFL_TRACK_PITCH 4
103 /// Rotate the head
104 #define TFL_TRACK_ROT   8
105
106 /// How tracking is preformed
107 .float track_type;
108 /// Hard angle increments. Ugly for fast turning, best accuracy.
109 #define TFL_TRACKTYPE_STEPMOTOR    1
110 /// Smoth absolute movement. Looks ok, fair accuracy.
111 #define TFL_TRACKTYPE_FLUIDPRECISE 2
112 /// Simulated inertia. "Wobbly mode" Looks kool, can mean really bad accuracy depending on how the feilds below are set
113 #define TFL_TRACKTYPE_FLUIDINERTIA 3
114 /// TFL_TRACKTYPE_FLUIDINERTIA: pitch multiplier
115 .float track_accel_pitch;
116 /// TFL_TRACKTYPE_FLUIDINERTIA: rotation multiplier
117 .float  track_accel_rot;
118 /// TFL_TRACKTYPE_FLUIDINERTIA: Blendrate with old rotation (inertia simulation) 1  = only old, 0 = only new
119 .float  track_blendrate;
120
121 /// How prefire check is preformed
122 .float firecheck_flags;
123 /// Dont kill the world
124 #define TFL_FIRECHECK_WORLD       2
125 /// Dont kill the dead
126 #define TFL_FIRECHECK_DEAD        4
127 /// Range limits apply
128 #define TFL_FIRECHECK_DISTANCES   8
129 /// Line Of Sight needs to be clear
130 #define TFL_FIRECHECK_LOS         16
131 /// Consider distance inpactpoint<->aimspot
132 #define TFL_FIRECHECK_AIMDIST     32
133 /// Consider enemy origin<->impactpoint
134 #define TFL_FIRECHECK_REALDIST    64
135 /// Consider angular diff head<->aimspot
136 #define TFL_FIRECHECK_ANGLEDIST  128
137 /// (re)consider target.team<->self.team
138 #define TFL_FIRECHECK_TEAMCECK   256
139 /// Try to avoid friendly fire
140 #define TFL_FIRECHECK_AFF        512
141 /// Own .ammo needs to be >= then own .shot_dmg
142 #define TFL_FIRECHECK_OWM_AMMO   1024
143 /// Others ammo need to be < others .ammo_max
144 #define TFL_FIRECHECK_OTHER_AMMO 2048
145 /// Check own .attack_finished_single vs time
146 #define TFL_FIRECHECK_REFIRE     4096
147 /// Move the acctual target to aimspot before tracing impact (and back after)
148 #define TFL_FIRECHECK_VERIFIED   8192
149 /// Dont do any chekcs
150 #define TFL_FIRECHECK_NO         16384
151
152 /// How shooting is done
153 .float shoot_flags;
154 /// Dont shoot
155 #define  TFL_SHOOT_NO          64
156 /// Fire in vollys (partial implementation through .shot_volly)
157 #define  TFL_SHOOT_VOLLY       2
158 /// Always do a full volly, even if target is lost or dead. (not implemented)
159 #define  TFL_SHOOT_VOLLYALWAYS 4
160 /// Loop though all valid tarters, and hit them.
161 #define  TFL_SHOOT_HITALLVALID 8
162 /// Fiering makes unit loose target (after volly is done, if in volly mode)
163 #define  TFL_SHOOT_CLEARTARGET 16
164 ///Custom shooting;
165 #define  TFL_SHOOT_CUSTOM 32
166
167 /// Information aboute the units capabilities
168 .float turrcaps_flags;
169 /// No kown capabilities
170 #define  TFL_TURRCAPS_NONE        0
171 /// Capable of sniping
172 #define  TFL_TURRCAPS_SNIPER      2
173 /// Capable of splasdamage
174 #define  TFL_TURRCAPS_RADIUSDMG   4
175 /// Has one or more cannons with zero shot traveltime
176 #define  TFL_TURRCAPS_HITSCAN     8
177 /// More then one (type of) gun
178 #define  TFL_TURRCAPS_MULTIGUN    16
179 /// Carries at least one guided weapon
180 #define  TFL_TURRCAPS_GUIDED      32
181 /// At least one gun fiers slow projectiles
182 #define  TFL_TURRCAPS_SLOWPROJ    64
183 /// At least one gun fiers medium speed projectiles
184 #define  TFL_TURRCAPS_MEDPROJ     128
185 /// At least one gun fiers fast projectiles
186 #define  TFL_TURRCAPS_FASTPROJ    256
187 /// At least one gun capable of damaging players
188 #define  TFL_TURRCAPS_PLAYERKILL  512
189 /// At least one gun that can shoot town missiles
190 #define  TFL_TURRCAPS_MISSILEKILL 1024
191 /// Has support capabilities. powerplants and sutch.
192 #define  TFL_TURRCAPS_SUPPORT     2048
193 /// Proveides at least one type of ammmo
194 #define  TFL_TURRCAPS_AMMOSOURCE  4096
195 /// Can recive targets from external sources
196 #define TFL_TURRCAPS_RECIVETARGETS 8192
197 /// Capable of self-transport
198 #define TFL_TURRCAPS_MOVE 16384
199 /// Will roam arround even if not chasing anyting
200 #define TFL_TURRCAPS_ROAM 32768
201 #define TFL_TURRCAPS_ISTURRET 65536
202
203 /// Ammo types needed and/or provided
204 .float ammo_flags;
205 /// Has and needs no ammo
206 #define  TFL_AMMO_NONE     64
207 /// Uses power
208 #define  TFL_AMMO_ENERGY   2
209 /// Uses bullets
210 #define  TFL_AMMO_BULLETS  4
211 /// Uses explosives
212 #define  TFL_AMMO_ROCKETS  8
213 /// Regenerates ammo on its own
214 #define  TFL_AMMO_RECHARGE 16
215 /// Can recive ammo from others
216 #define  TFL_AMMO_RECIVE   32
217
218 /// How incomming damage is handeld
219 .float damage_flags;
220 /// Cant be hurt
221 #define  TFL_DMG_NO              256
222 /// Can be damaged
223 #define  TFL_DMG_YES             2
224 /// Can be damaged  by teammates
225 #define  TFL_DMG_TAKEFROMTEAM    4
226 /// Traget attackers
227 #define  TFL_DMG_RETALIATE       8
228 /// Target attackers, even is on own team
229 #define  TFL_DMG_RETALIATEONTEAM 16
230 /// Loses target when damaged
231 #define  TFL_DMG_TARGETLOSS      32
232 /// Reciving damage trows off aim (pointless atm, aim gets recalculated to fast). not implemented.
233 #define  TFL_DMG_AIMSHAKE        64
234 /// Reciving damage slaps the head arround
235 #define  TFL_DMG_HEADSHAKE       128
236 /// Die and stay dead.
237 #define  TFL_DMG_DEATH_NORESPAWN 256
238 /// Supress std turret gibs on death
239 #define  TFL_DMG_DEATH_NOGIBS    512
240
241 // Spawnflags
242 /// Spawn in teambased modes
243 #define TFL_SPAWN_TEAM      2
244 /// Spawn in FFA modes
245 #define TFL_SPAWN_FFA       4
246
247
248 /*
249 * Fields used by turrets
250 */
251 /// Turrets internal ai speed
252 .float      ticrate;
253
254 /// Where to point the when no target
255 .vector     idle_aim;
256
257 /// Top part of turret
258 .entity     tur_head;
259
260 /// Start/respawn health
261 .float      tur_health;
262
263 /// Defend this entity (or ratehr this entitys position)
264 .entity     tur_defend;
265
266 /// on/off toggle.
267 .float      tur_active;
268
269 // Aim from this point,
270 //.vector     tur_aimorg;
271
272 /// and shoot from here. (can be non constant, think MLRS)
273 .vector     tur_shotorg;
274
275 /// Aim at this spot
276 .vector     tur_aimpos;
277
278 /// Predicted time the round will impact
279 .float      tur_impacttime;
280
281 // Predicted place the round will impact
282 //.vector     tur_impactpoint; // unused
283
284 /// What entity the aimtrace hit, if any.
285 .entity     tur_impactent;
286
287 /// Distance to enemy
288 .float      tur_dist_enemy;
289
290 /// Distance to aimspot
291 .float      tur_dist_aimpos;
292
293 /// Distance impact<->aim
294 .float      tur_dist_impact_to_aimpos;
295
296 /// Decresment counter form .shot_volly to 0.
297 .float      volly_counter;
298
299 /*
300 * Projectile/missile. its up to the individual turret implementation to
301 ** deal the damage, blow upp the missile or whatever.
302 */
303 /// Track then refireing is possible
304 //.float attack_finished; = attack_finished_single
305 /// Shoot this often
306 .float shot_refire;
307 /// Shots travel this fast, when appliable
308 .float shot_speed;
309 /// Inaccuracy
310 .float shot_spread;
311 /// Estimated (core) damage of projectiles. also reduce on ammo with this amount when fiering
312 .float shot_dmg;
313 /// If radius dmg, this is how big that radius is.
314 .float shot_radius;
315 /// Max force exserted by round impact
316 .float shot_force;
317 /// < 1 = shoot # times at target (if possible)
318 .float shot_volly;
319 /// Refire after a compleated volly.
320 .float shot_volly_refire;
321
322 /// Consider targets within this range
323 .float target_range;
324 /// Dont consider targets closer then
325 .float target_range_min;
326 // Engage fire routine on targets within
327 //.float target_range_fire; // no practical use aymore, work with target_range insted.
328 /// Targets closer to this are prefered
329 .float target_range_optimal;
330
331 /*
332 * The standard targetselection tries to select a target based on
333 * range, angle offset, target type, "is old target"
334 * Thise biases will allow score scaling to (dis)favor diffrent targets
335 */
336 /// (dis)Favor best range this mutch
337 .float target_select_rangebias;
338 /// (dis)Favor targeting my old enemy this mutch
339 .float target_select_samebias;
340 /// (dis)Favor targeting the enemy closest to my guns current angle this mutch
341 .float target_select_anglebias;
342 /// (dis)Favor Missiles? (-1 to diable targeting compleatly)
343 .float target_select_missilebias;
344 /// (dis)Favot living players (-1 to diable targeting compleatly)
345 .float target_select_playerbias;
346 /// Field of view
347 //.float target_select_fov;
348 /// Last thimestamp this surret aquierd a valid target
349 .float target_select_time;
350
351 /*
352 * Aim refers to real aiming, not gun pos (thats done by track)
353 */
354 /// Maximum offset between impact and aim spot to fire
355 .float aim_firetolerance_dist;
356 // Maximum angular offset between head and aimspot to fire
357 //.float aim_firetolerance_angle;
358 /// How fast can i rotate/pitch (per second in stepmotor mode, base force in smooth modes)
359 .float aim_speed;
360 /// cant aim higher/lower then this
361 .float aim_maxpitch;
362 /// I cant rotate more then this
363 .float aim_maxrot;
364
365 // Ammo/power. keeping dmg and ammo on a one to one ratio is preferable (for rating)
366 /// Staring & current ammo
367 .float ammo;
368 /// Regenerate this mutch ammo (per second)
369 .float ammo_recharge;
370 /// Max amount of ammo i can hold
371 .float ammo_max;
372
373
374 // Uncomment below to enable various debug output.
375 //#define TURRET_DEBUG
376 //#define TURRET_DEBUG_TARGETVALIDATE
377 //#define TURRET_DEBUG_TARGETSELECT
378
379 #ifdef TURRET_DEBUG
380 .float tur_dbg_dmg_t_h; // Total dmg that hit something (can be more then tur_dbg_dmg_t_f since it should count radius dmg.
381 .float tur_dbg_dmg_t_f; // Total damage spent
382 .float tur_dbg_start;   // When did i go online?
383 .float tur_dbg_tmr1;    // timer for random use
384 .float tur_dbg_tmr2;    // timer for random use
385 .float tur_dbg_tmr3;    // timer for random use
386 .vector tur_dbg_rvec;   // Random vector, mainly for coloruing stuff'
387 #endif
388
389 // System main's
390 /// Main AI loop
391 void turret_think();
392 /// Prefire checks and sutch
393 void turret_fire();
394
395 // Callbacks
396 /// implements the actual fiering
397 .void()  turret_firefunc;
398 /// prefire checks go here. return 1 to go bang, 0 not to.
399 .float() turret_firecheckfunc;
400 // Execure BEFORE main ai loop. return 0 to cancel any following proccessing.
401 //.float() turret_prethink;
402 /// Execure AFTER main AI loop
403 .void()  turret_postthink;
404
405 /// Add a target
406 .float(entity e_target,entity e_sender) turret_addtarget;
407
408 //.float call_diehook;
409 //.float call_respwnhook;
410 .void() turret_diehook;
411 .void() turret_respawnhook;
412
413 /*
414 #define TEH_THINK 2
415 #define TEH_DAMAGE 4
416 #define TEH_DIE 8
417 #define TEH_RESPAWN 16
418 #define TEH_TRACK 32
419 #define TEH_AIM 64
420 #define TEH_SELECT 128
421 .float(float event_id) turret_eventhook;
422 */
423
424 /*
425 * Some turrets need other aimsystems then other.
426 * This should return the place to aim at, not acctualy turn or
427 * pitch anyting.
428 *
429 * use turret_stdproc_aim* or Make your own.
430 * Make sure you update tur_enemy_dist and tur_enemy_adist
431 * with the apropriate info, if you do.
432
433 removed.
434 */
435 // function used to aim, usualy turret_stdproc_aim_generic
436 //.vector() turret_aim;
437
438 /*
439 * This is where the acctual turret turning should take place
440 * Use turret_stdproc_track or make your own.
441 wkacked to save mem.
442 */
443 // Function used to turn and pitch the .tur_head usualy turret_stdproc_track
444 //.void() turret_track;
445
446 /*
447 * Target selection, preferably but not nessesarely
448 * return a normalized result.
449 */
450 /// Function to use for target evaluation. usualy turret_stdproc_targetscore_generic
451 .float(entity e_turret, entity e_target) turret_score_target;
452
453 /*
454 * Damage, death and respawn.
455 */
456 //void turret_gibs_precash();
457 // generalized so save mem (on fields)
458 // Function to handle incomming damage. usualy turret_stdproc_damage
459 //.void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector vforce) turret_damagefunc;
460 // Function to handle the event of death. usualy turret_stdproc_die
461 //.void() turret_diefunc;
462 // Function that handles rebirth. usualy turret_stdproc_respawn
463 //.void() turret_spawnfunc;
464
465 /*
466 * Stuff to plug into requierd but unused callbacks.
467 */
468 /// Always return 1
469 //float turret_stdproc_true();
470 /// Always return 0
471 //float turret_stdproc_false();
472 /// Always return nothing at all
473 //void turret_stdproc_nothing();
474
475 /*
476 * Target selection
477 */
478 // noting uses the following atm.
479 // "closeer is beter" selection
480 //float   turret_stdproc_targetscore_close(entity e_turret, entity e_target);
481 // "further is beter" selection
482 //float   turret_stdproc_targetscore_far(entity e_turret, entity e_target);
483 // only target_range_optimal
484 //float   turret_stdproc_targetscore_optimal(entity e_turret, entity e_target);
485 // defendpos
486 //float   turret_stdproc_targetscore_defend(entity e_turret, entity e_target);
487 /// Generic fairly smart bias-aware target selection.
488 float   turret_stdproc_targetscore_generic(entity e_turret, entity e_target);
489 /// Experimental supportunits targetselector
490 float   turret_stdproc_targetscore_support(entity e_turret,entity e_target);
491
492 /*
493 * Aim functions
494 */
495 /// Generic aimer guided by self.aim_flags
496 vector turret_stdproc_aim_generic()
497 // Straight line, current location
498 //vector  turret_stdproc_aim_simple()
499
500 /*
501 * Turret turning & pitch
502 */
503 /// Tries to line up the turret head with the aimpos
504 void turret_stdproc_track();
505
506 /// Generic damage handeling. blows up the turret when health <= 0
507 void turret_stdproc_damage (entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector vforce);
508 /// Spawns a explotion, does some damage & trows bits arround.
509 void turret_stdproc_die();
510 /// reassembles the turret.
511 void turret_stdproc_respawn();
512
513 /// Evaluate target validity
514 float turret_validate_target(entity e_turret,entity e_target,float validate_flags);
515 /// Turret Head Angle Diff Vector. updated by a sucsessfull call to turret_validate_target
516 vector tvt_thadv;
517 /// Turret Angle Diff Vector. updated by a sucsessfull call to turret_validate_target
518 vector tvt_tadv;
519 /// Turret Head Angle Diff Float. updated by a sucsessfull call to turret_validate_target
520 float  tvt_thadf;
521 /// Turret Angle Diff Float. updated by a sucsessfull call to turret_validate_target
522 float  tvt_tadf;
523 /// Distance. updated by a sucsessfull call to turret_validate_target
524 float  tvt_dist;
525
526 /// updates aim org, shot org, shot dir and enemy org for selected turret
527 void turret_do_updates(entity e_turret);
528 //.vector tur_aimorg_updated; // creates to much aim issues. using tur_shotorg_updated insted.
529 //.vector tur_shotorg_updated; // DP8815 fixes gettaginfo, no longer needed.
530 .vector tur_shotdir_updated;
531
532 void turrets_precash();
533
534
535
536 #endif // TTURRETS_ENABLED
537
538