]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/defs.qh
Begin moving LMS to a mutator
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / defs.qh
1 #define INDEPENDENT_ATTACK_FINISHED
2
3 noref float require_spawnfunc_prefix; // if this float exists, only functions with spawnfunc_ name prefix qualify as spawn functions
4
5 #define BUTTON_ATCK       button0
6 #define BUTTON_JUMP       button2
7 #define BUTTON_ATCK2      button3
8 #define BUTTON_ZOOM       button4
9 #define BUTTON_CROUCH     button5
10 #define BUTTON_HOOK       button6
11 #define BUTTON_INFO       button7
12 #define BUTTON_CHAT       buttonchat
13 #define BUTTON_USE        buttonuse
14 #define BUTTON_DRAG       button8
15 #define BUTTON_ZOOMSCRIPT button9
16
17 // Globals
18
19 float g_cloaked, g_footsteps, g_jump_grunt, g_grappling_hook, g_midair, g_minstagib, g_pinata, g_norecoil, g_minstagib_invis_alpha, g_bloodloss;
20 float g_warmup_limit;
21 float g_warmup_allguns;
22 float g_warmup_allow_timeout;
23 float g_race_qualifying;
24 float inWarmupStage;
25 float g_pickup_respawntime_weapon;
26 float g_pickup_respawntime_superweapon;
27 float g_pickup_respawntime_ammo;
28 float g_pickup_respawntime_short;
29 float g_pickup_respawntime_medium;
30 float g_pickup_respawntime_long;
31 float g_pickup_respawntime_powerup;
32 float g_pickup_respawntimejitter_weapon;
33 float g_pickup_respawntimejitter_superweapon;
34 float g_pickup_respawntimejitter_ammo;
35 float g_pickup_respawntimejitter_short;
36 float g_pickup_respawntimejitter_medium;
37 float g_pickup_respawntimejitter_long;
38 float g_pickup_respawntimejitter_powerup;
39 float g_jetpack;
40
41 float sv_clones;
42 float sv_gentle;
43 float sv_foginterval;
44
45 entity  activator;
46
47 float player_count;
48 float currentbots;
49 float bots_would_leave;
50
51 void UpdateFrags(entity player, float f);
52 .float totalfrags;
53
54 float team1_score, team2_score, team3_score, team4_score;
55
56 float maxclients;
57
58 // Fields
59
60 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
61
62 //.string       wad;
63 //.string       map;
64
65 //.float        worldtype;
66 .float  delay;
67 .float  wait;
68 .float  lip;
69 //.float        light_lev;
70 .float  speed;
71 //.float        style;
72 //.float        skill;
73 .float  sounds;
74 .float  platmovetype;
75
76 .string killtarget;
77
78 .vector pos1, pos2;
79 .vector mangle;
80
81 .float  pain_finished;                  //Added by Supajoe
82 .float  pain_frame;                     //"
83 .float  statdraintime;                  // record the one-second intervals between draining health and armour when they're over 100
84 .float  crouch; // Crouching or not?
85
86 .float  strength_finished;
87 .float  invincible_finished;
88 .float  superweapons_finished;
89
90 .vector         finaldest, finalangle;          //plat.qc stuff
91 .void()         think1;
92 .float state;
93 .float          t_length, t_width;
94
95 .vector destvec;                // for rain
96 .vector destvec2;               // for train
97 .float cnt;             // for rain
98 .float count;
99 //.float cnt2;
100
101 .float play_time;
102 .float respawn_time;
103 .float death_time;
104 .float fade_time;
105 .float fade_rate;
106
107 // player animation state
108 .float animstate_startframe;
109 .float animstate_numframes;
110 .float animstate_framerate;
111 .float animstate_starttime;
112 .float animstate_endtime;
113 .float animstate_override;
114 .float animstate_looping;
115
116 // player animation data for this model
117 // each vector is as follows:
118 // _x = startframe
119 // _y = numframes
120 // _z = framerate
121 .vector anim_die1; // player dies
122 .vector anim_die2; // player dies differently
123 .vector anim_draw; // player pulls out a weapon
124 // .vector anim_duck; // player crouches (from idle to duckidle)
125 .vector anim_duckwalk; // player walking while crouching
126 .vector anim_duckjump; // player jumping from a crouch
127 .vector anim_duckidle; // player idling while crouching
128 .vector anim_idle; // player standing
129 .vector anim_jump; // player jump
130 .vector anim_pain1; // player flinches from pain
131 .vector anim_pain2; // player flinches from pain, differently
132 .vector anim_shoot; // player shoots
133 .vector anim_taunt; // player taunts others (FIXME: no code references this)
134 .vector anim_run; // player running forward
135 .vector anim_runbackwards; // player running backward
136 .vector anim_strafeleft; // player shuffling left quickly
137 .vector anim_straferight; // player shuffling right quickly
138 //.vector anim_dead1; // player dead (must be identical to last frame of die1)
139 //.vector anim_dead2; // player dead (must be identical to last frame of die2)
140 .vector anim_forwardright; // player running forward and right
141 .vector anim_forwardleft; // player running forward and left
142 .vector anim_backright; // player running backward and right
143 .vector anim_backleft; // player running back and left
144 .vector anim_melee; // player doing the melee action
145 .vector anim_duck; // player doing the melee action
146 .vector anim_duckwalkbackwards;
147 .vector anim_duckwalkstrafeleft;
148 .vector anim_duckwalkstraferight;
149 .vector anim_duckwalkforwardright;
150 .vector anim_duckwalkforwardleft;
151 .vector anim_duckwalkbackright;
152 .vector anim_duckwalkbackleft;
153
154 // weapon animation vectors:
155 .vector anim_fire1;
156 .vector anim_fire2;
157 .vector anim_idle;
158 .vector anim_reload;
159
160 void() player_setupanimsformodel;
161 void setanim(entity e, vector anim, float looping, float override, float restart);
162
163 .string mdl;
164
165 .string playermodel;
166 .string playerskin;
167
168 .float species;
169
170 .float  respawntime;
171 .float  respawntimejitter;
172 //.float        chasecam;
173
174 .float  damageforcescale;
175 #define MIN_DAMAGEEXTRARADIUS 2
176 #define MAX_DAMAGEEXTRARADIUS 16
177 .float damageextraradius;
178
179 //.float          gravity;
180
181 .float          dmg;
182
183 // for railgun damage (hitting multiple enemies)
184 .float railgunhit;
185 .float railgunhitsolidbackup;
186 .vector railgunhitloc;
187
188 .float          air_finished;
189 .float          dmgtime;
190
191 .float          killcount;
192 .float hitsound, typehitsound;
193
194 .float watersound_finished;
195 .float iscreature;
196 .float damagedbycontents;
197 .float damagedbytriggers;
198 .float pushable;
199 .float teleportable;
200 .vector oldvelocity;
201
202 .float pauseregen_finished;
203 .float pauserothealth_finished;
204 .float pauserotarmor_finished;
205 .float pauserotfuel_finished;
206 .string item_pickupsound;
207
208 // definitions for weaponsystem
209
210 .entity weaponentity;
211 .entity exteriorweaponentity;
212 .vector weaponentity_glowmod;
213
214 //.float weapon; // current weapon
215 .float switchweapon; // weapon requested to switch to
216 .float switchingweapon; // weapon currently being switched to (is copied from switchweapon once switch is possible)
217 .string weaponname; // name of .weapon
218
219 .float autoswitch;
220 float weapon_action(float wpn, float wrequest);
221 float client_hasweapon(entity cl, float wpn, float andammo, float complain);
222 void w_clear();
223 void w_ready();
224 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
225 .float weapon_nextthink;
226 .void() weapon_think;
227
228 //float PLAYER_WEAPONSELECTION_DELAY = );
229 float   PLAYER_WEAPONSELECTION_SPEED = 18;
230 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
231
232 // weapon states (self.weaponentity.state)
233 float WS_CLEAR                  = 0; // no weapon selected
234 float WS_RAISE                  = 1; // raise frame
235 float WS_DROP                   = 2; // deselecting frame
236 float WS_INUSE                  = 3; // fire state
237 float WS_READY                  = 4; // idle frame
238
239 // there is 2 weapon tics that can run in one server frame
240 #define W_TICSPERFRAME 2
241
242 void weapon_defaultspawnfunc(float wpn);
243
244 string w_deathtypestring;
245
246 .vector dest1, dest2;
247
248 float gameover;
249 float intermission_running;
250 float intermission_exittime;
251 float alreadychangedlevel;
252
253
254 .float runes;
255
256 // Keys player is holding
257 .float itemkeys;
258 // message delay for func_door locked by keys and key locks
259 // this field is used on player entities
260 .float key_door_messagetime;
261
262
263 .float version;
264
265 //swamp
266 .float in_swamp;              // bool
267 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
268
269 // footstep interval
270 .float nextstep;
271
272 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
273 .float spectatortime; //point in time since the client is spectating or observing
274 void checkSpectatorBlock();
275
276 float game_completion_ratio; // 0 at start, 1 near end
277 .float winning;
278 .float jointime; // time of joining
279 .float alivetime; // time of being alive
280
281 float nJoinAllowed(entity ignore);
282 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
283
284 .float spawnshieldtime;
285
286 .float lms_nextcheck;
287 .float lms_traveled_distance;
288
289 .entity flagcarried;
290
291 .entity lastrocket;
292
293 .float playerid;
294 float playerid_last;
295 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
296
297 .vector spawnorigin;
298
299 .vector death_origin;
300 .vector killer_origin;
301
302 float default_player_alpha;
303 float default_weapon_alpha;
304
305 .float() customizeentityforclient;
306 .float cvar_cl_handicap;
307 .float cvar_cl_clippedspectating;
308 .float cvar_cl_autoscreenshot;
309 .float cvar_cl_movement_track_canjump;
310 .float cvar_cl_newusekeysupported;
311
312 .string cvar_g_xonoticversion;
313 .string cvar_cl_weaponpriority;
314 .string cvar_cl_weaponpriorities[10];
315 #ifdef ALLOW_FORCEMODELS
316 .float cvar_cl_forceplayermodels;
317 .float cvar_cl_forceplayermodelsfromxonotic;
318 float sv_clforceplayermodels;
319 #endif
320 .float cvar_cl_gunalign;
321 .float cvar_cl_noantilag;
322
323 .string weaponorder_byimpulse;
324
325 .float cvar_cl_allow_uid2name;
326 .float cvar_cl_allow_uidtracking;
327 .string stored_netname;
328
329 void Announce(string snd);
330 void AnnounceTo(entity e, string snd);
331
332 .float version_nagtime;
333
334 #define NUM_JUMPPADSUSED 3
335 .float jumppadcount;
336 .entity jumppadsused[NUM_JUMPPADSUSED];
337
338 string gamemode_name;
339
340 float startitem_failed;
341
342 void DropAllRunes(entity pl);
343
344
345 typedef .float floatfield;
346 floatfield Item_CounterField(float it);
347
348 float W_AmmoItemCode(float wpn);
349 string W_Name(float weaponid);
350 string W_Apply_Weaponreplace(string in);
351
352 void FixIntermissionClient(entity e);
353 void FixClientCvars(entity e);
354
355 WEPSET_DECLARE_A(weaponsInMap);
356
357 .float respawn_countdown; // next number to count
358
359 float bot_waypoints_for_items;
360
361 .float attack_finished_for[WEP_MAXCOUNT];
362 .float attack_finished_single;
363 #ifdef INDEPENDENT_ATTACK_FINISHED
364 #define ATTACK_FINISHED_FOR(ent,w) ((ent).(attack_finished_for[(w) - WEP_FIRST]))
365 #else
366 #define ATTACK_FINISHED_FOR(ent,w) ((ent).attack_finished_single)
367 #endif
368 #define ATTACK_FINISHED(ent) ATTACK_FINISHED_FOR(ent,(ent).weapon)
369
370 // assault game mode: Which team is attacking in this round?
371 float assault_attacker_team;
372
373 // speedrun: when 1, player auto teleports back when capture timeout happens
374 .float speedrunning;
375
376 // database
377 float ServerProgsDB;
378 float TemporaryDB;
379
380 .float team_saved;
381
382 float some_spawn_has_been_used;
383 float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found
384 float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team"
385
386 // set when showing a kill countdown
387 .entity killindicator;
388 .float killindicator_teamchange;
389
390 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
391
392 float lockteams;
393
394 .float parm_idlesince;
395 float sv_maxidle;
396 float sv_maxidle_spectatorsareidle;
397
398 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
399
400 float next_pingtime;
401
402 .float Version;
403 .float SendFlags;
404 .float(entity to, float sendflags) SendEntity;
405
406 // player sounds, voice messages
407 // TODO implemented fall and falling
408 #define ALLPLAYERSOUNDS \
409                 _VOICEMSG(death) \
410                 _VOICEMSG(drown) \
411                 _VOICEMSG(fall) \
412                 _VOICEMSG(fall) \
413                 _VOICEMSG(falling) \
414                 _VOICEMSG(gasp) \
415                 _VOICEMSG(jump) \
416                 _VOICEMSG(pain100) \
417                 _VOICEMSG(pain25) \
418                 _VOICEMSG(pain50) \
419                 _VOICEMSG(pain75)
420
421 #define ALLVOICEMSGS \
422                 _VOICEMSG(attack) \
423                 _VOICEMSG(attackinfive) \
424                 _VOICEMSG(coverme) \
425                 _VOICEMSG(defend) \
426                 _VOICEMSG(freelance) \
427                 _VOICEMSG(incoming) \
428                 _VOICEMSG(meet) \
429                 _VOICEMSG(needhelp) \
430                 _VOICEMSG(seenflag) \
431                 _VOICEMSG(taunt) \
432                 _VOICEMSG(teamshoot)
433
434 #define _VOICEMSG(m) .string playersound_##m;
435 ALLPLAYERSOUNDS
436 ALLVOICEMSGS
437 #undef _VOICEMSG
438
439 // reserved sound names for the future (some models lack sounds for them):
440 //              _VOICEMSG(flagcarriertakingdamage) \
441 //              _VOICEMSG(getflag) \
442 // reserved sound names for the future (ALL models lack sounds for them):
443 //              _VOICEMSG(affirmative) \
444 //              _VOICEMSG(attacking) \
445 //              _VOICEMSG(defending) \
446 //              _VOICEMSG(roaming) \
447 //              _VOICEMSG(onmyway) \
448 //              _VOICEMSG(droppedflag) \
449 //              _VOICEMSG(negative) \
450 //              _VOICEMSG(seenenemy) \
451
452 string globalsound_fall;
453 string globalsound_metalfall;
454 string globalsound_step;
455 string globalsound_metalstep;
456
457 #define VOICETYPE_PLAYERSOUND 10
458 #define VOICETYPE_TEAMRADIO 11
459 #define VOICETYPE_LASTATTACKER 12
460 #define VOICETYPE_LASTATTACKER_ONLY 13
461 #define VOICETYPE_AUTOTAUNT 14
462 #define VOICETYPE_TAUNT 15
463
464 void PrecachePlayerSounds(string f);
465 void PrecacheGlobalSound(string samplestring);
466 void UpdatePlayerSounds();
467 void ClearPlayerSounds();
468 void PlayerSound(.string samplefield, float channel, float voicetype);
469 void GlobalSound(string samplestring, float channel, float voicetype);
470 void FakeGlobalSound(string samplestring, float channel, float voicetype);
471 void VoiceMessage(string type, string message);
472 float GetPlayerSoundSampleField_notFound;
473 .string GetVoiceMessageSampleField(string type);
474
475 // autotaunt system
476 .float cvar_cl_autotaunt;
477 .float cvar_cl_voice_directional;
478 .float cvar_cl_voice_directional_taunt_attenuation;
479
480 .float version_mismatch;
481
482 float independent_players;
483 #define INDEPENDENT_PLAYERS (autocvar__independent_players ? (autocvar__independent_players > 0) : independent_players)
484 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
485 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
486 // we're using + here instead of , because fteqcc sucks
487
488 string clientstuff;
489 .float phase;
490 .float pressedkeys;
491
492 .float porto_forbidden;
493
494 .string fog;
495
496 string cvar_changes;
497 string cvar_purechanges;
498 float cvar_purechanges_count;
499
500 float game_starttime; //point in time when the countdown is over
501 .float stat_game_starttime;
502
503 .float stat_sv_airaccel_qw;
504 .float stat_sv_airstrafeaccel_qw;
505 .float stat_sv_airspeedlimit_nonqw;
506 .float stat_sv_maxspeed;
507
508 void W_Porto_Remove (entity p);
509
510 .float projectiledeathtype;
511
512 .string message2;
513
514 vector railgun_start, railgun_end; // filled by FireRailgunBullet, used by damage code for head shot
515 .float stat_allow_oldnexbeam;
516
517 // reset to 0 on weapon switch
518 // may be useful to all weapons
519 .float bulletcounter;
520
521 void target_voicescript_next(entity pl);
522 void target_voicescript_clear(entity pl);
523
524 .string target2;
525 .string target3;
526 .string target4;
527 .float target_random;
528 .float trigger_reverse;
529
530 // Nexball 
531 .entity ballcarried; // Also used for keepaway
532 .float metertime;
533 float g_nexball_meter_period;
534
535 void SUB_DontUseTargets();
536 void SUB_UseTargets();
537
538 .void() reset; // if set, an entity is reset using this
539 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
540
541 void ClientData_Touch(entity e);
542
543 //vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
544
545 .float wasplayer;
546
547 float servertime, serverprevtime, serverframetime;
548
549 .entity soundentity;
550
551 .float ammo_fuel;
552
553 .vector prevorigin;
554
555 //flood fields
556 .float nickspamtime; // time of last nick change
557 .float nickspamcount;
558 .float floodcontrol_chat;
559 .float floodcontrol_chatteam;
560 .float floodcontrol_chattell;
561 .float floodcontrol_voice;
562 .float floodcontrol_voiceteam;
563
564 .float stat_shotorg; // networked stat for trueaim HUD
565
566 string matchid;
567 .float hitplotfh;
568
569 .float last_pickup;
570
571 .float hit_time; 
572 .float typehit_time; 
573
574 .float stat_leadlimit;
575
576 float radar_showennemies;
577
578 #ifdef PROFILING
579 float client_cefc_accumulator;
580 float client_cefc_accumulatortime;
581 #endif
582
583 ..float current_ammo;
584
585 .float weapon_load[WEP_MAXCOUNT];
586 .float ammo_none; // used by the reloading system, must always be 0
587 .float clip_load;
588 .float old_clip_load;
589 .float clip_size;
590 .float minelayer_mines;
591
592 .float grab; // 0 = can't grab, 1 = owner can grab, 2 = owner and team mates can grab, 3 = anyone can grab
593
594 #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_CORPSE; (e).dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE
595 // when doing this, hagar can go through clones
596 // #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_BBOX
597
598 .float spectatee_status;
599 .float zoomstate;
600 .float bloodloss_timer;
601 .float restriction;
602
603 .entity clientdata;
604 .entity personal;
605
606 string deathmessage;
607
608 .float just_joined;
609
610 .float cvar_cl_accuracy_data_share;
611 .float cvar_cl_accuracy_data_receive;
612
613 .float cvar_cl_weaponimpulsemode;
614 .float selectweapon; // last selected weapon of the player
615
616 .float ballistics_density; // wall piercing factor, larger = bullet can pass through more
617
618 #define ACTIVE_NOT              0
619 #define ACTIVE_ACTIVE   1
620 #define ACTIVE_IDLE     2
621 #define ACTIVE_BUSY     2
622 #define ACTIVE_TOGGLE   3
623 .float active;
624 .void (float act_state) setactive;
625 .entity realowner;
626
627 .float nex_charge;
628 .float nex_charge_rottime;
629 .float nex_chargepool_ammo;
630
631 .float hagar_load;
632
633 float allowed_to_spawn; // boolean variable used by the clan arena code to determine if a player can spawn (after the round has ended)
634
635 float serverflags;
636
637 .float team_forced; // can be a team number to force a team, or 0 for default action, or -1 for forced spectator
638
639 .float player_blocked;
640
641 .float freezetag_frozen;
642 .float freezetag_revive_progress;
643
644 .entity muzzle_flash;
645 .float misc_bulletcounter;      // replaces uzi & hlac bullet counter.
646
647 .float stat_respawn_time; // shows respawn time, and is negative when awaiting respawn
648
649 void PlayerUseKey();
650
651 typedef vector(entity player, entity spot, vector current) spawn_evalfunc_t;
652 .spawn_evalfunc_t spawn_evalfunc;
653
654 .entity conveyor;
655
656 string modname;
657
658 .float missile_flags;
659 #define MIF_SPLASH 2
660 #define MIF_ARC 4
661 #define MIF_PROXY 8
662 #define MIF_GUIDED_MANUAL 16
663 #define MIF_GUIDED_HEAT 32
664 #define MIF_GUIDED_LASER 64
665 #define MIF_GUIDED_AI 128
666 #define MIF_GUIDED_TAG 128
667 #define MIF_GUIDED_ALL (MIF_GUIDED_MANUAL | MIF_GUIDED_HEAT | MIF_GUIDED_LASER | MIF_GUIDED_AI | MIF_GUIDED_TAG)
668 #define MIF_GUIDED_TRACKING (MIF_GUIDED_HEAT | MIF_GUIDED_LASER | MIF_GUIDED_AI | MIF_GUIDED_TAG)
669 #define MIF_GUIDED_CONFUSABLE (MIF_GUIDED_HEAT | MIF_GUIDED_AI)
670
671 #define MISSILE_IS_CONFUSABLE(m) ((m.missile_flags & MIF_GUIDED_CONFUSABLE) ? TRUE : FALSE)
672 #define MISSILE_IS_GUIDED(m) ((m.missile_flags & MIF_GUIDED_ALL) ? TRUE : FALSE)
673 #define MISSILE_IS_TRACKING(m) ((m.missile_flags & MIF_GUIDED_TRACKING) ? TRUE : FALSE)