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