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