]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/defs.qh
Merge remote branch 'origin/master' into terencehill/essential_weapons_panel
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / defs.qh
1 #define INDEPENDENT_ATTACK_FINISHED
2
3 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_duckjump; // player jumping from a crouch
134 .vector anim_duckidle; // player idling while crouching
135 .vector anim_idle; // player standing
136 .vector anim_jump; // player jump
137 .vector anim_pain1; // player flinches from pain
138 .vector anim_pain2; // player flinches from pain, differently
139 .vector anim_shoot; // player shoots
140 .vector anim_taunt; // player taunts others (FIXME: no code references this)
141 .vector anim_run; // player running forward
142 .vector anim_runbackwards; // player running backward
143 .vector anim_strafeleft; // player shuffling left quickly
144 .vector anim_straferight; // player shuffling right quickly
145 .vector anim_dead1; // player dead (must be identical to last frame of die1)
146 .vector anim_dead2; // player dead (must be identical to last frame of die2)
147 .vector anim_forwardright; // player running forward and right
148 .vector anim_forwardleft; // player running forward and left
149 .vector anim_backright; // player running backward and right
150 .vector anim_backleft; // player running back and left
151 .vector anim_melee; // player doing the melee action
152
153 // weapon animation vectors:
154 .vector anim_fire1;
155 .vector anim_fire2;
156 .vector anim_idle;
157 .vector anim_reload;
158
159 void() player_setupanimsformodel;
160 void setanim(entity e, vector anim, float looping, float override, float restart);
161
162 .string mdl;
163
164 .string playermodel;
165 .string playerskin;
166
167 .float species;
168
169 .float  respawntime;
170 .float  respawntimejitter;
171 //.float        chasecam;
172
173 .float  damageforcescale;
174
175 //.float          gravity;
176
177 .float          dmg;
178
179 // for railgun damage (hitting multiple enemies)
180 .float railgunhit;
181 .float railgunhitsolidbackup;
182 .vector railgunhitloc;
183
184 .float          air_finished;
185 .float          dmgtime;
186
187 .float          killcount;
188 .float hitsound, typehitsound;
189
190 .float watersound_finished;
191 .float iscreature;
192 .vector oldvelocity;
193
194 .float pauseregen_finished;
195 .float pauserothealth_finished;
196 .float pauserotarmor_finished;
197 .float pauserotfuel_finished;
198 .string item_pickupsound;
199
200 // definitions for weaponsystem
201
202 .entity weaponentity;
203 .entity exteriorweaponentity;
204 .vector weaponentity_glowmod;
205 .float switchweapon;
206 .float autoswitch;
207 float weapon_action(float wpn, float wrequest);
208 float client_hasweapon(entity cl, float wpn, float andammo, float complain);
209 void w_clear();
210 void w_ready();
211 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
212 .float weapon_nextthink;
213 .float weapon_forbidchange;
214 .void() weapon_think;
215
216 //float PLAYER_WEAPONSELECTION_DELAY = );
217 float   PLAYER_WEAPONSELECTION_SPEED = 18;
218 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
219
220 // weapon states (self.weaponentity.state)
221 float WS_CLEAR                  = 0; // no weapon selected
222 float WS_RAISE                  = 1; // raise frame
223 float WS_DROP                   = 2; // deselecting frame
224 float WS_INUSE                  = 3; // fire state
225 float WS_READY                  = 4; // idle frame
226
227 // there is 2 weapon tics that can run in one server frame
228 #define W_TICSPERFRAME 2
229
230 void weapon_defaultspawnfunc(float wpn);
231
232 string w_deathtypestring;
233
234 .vector dest1, dest2;
235
236 float gameover;
237 float intermission_running;
238 float intermission_exittime;
239 float alreadychangedlevel;
240
241
242 .float runes;
243
244
245 .float version;
246
247 // minstagib vars
248 .float jump_interval;    // laser refire
249
250 //swamp
251 .float in_swamp;              // bool
252 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
253
254 // footstep interval
255 .float nextstep;
256
257 .float ready;
258 #define RESTART_COUNTDOWN 10
259 float restart_mapalreadyrestarted; //bool, indicates whether reset_map() was already executed
260 entity restartTimer;
261 void restartTimer_Think();
262 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
263 .float spectatortime; //point in time since the client is spectating or observing
264 void checkSpectatorBlock();
265
266 .float winning;
267 .float jointime; // time of joining
268 .float alivetime; // time of being alive
269
270 float nJoinAllowed(float includeMe);
271 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
272
273 //sv_timeout: pauses the game by setting the gamespeed to a really low value (see TIMEOUT_SLOWMO_VALUE)
274 #define TIMEOUT_SLOWMO_VALUE 0.0001
275 float sys_frametime; // gets initialised in worlspawn, saves the value from autocvar_sys_ticrate
276 float remainingTimeoutTime; // contains the time in seconds that the active timeout has left
277 float remainingLeadTime; // contains the number of seconds left of the leadtime (before the timeout starts)
278 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)
279 .float allowedTimeouts; // contains the number of allowed timeouts for each player
280 entity timeoutInitiator; // contains the entity of the player who started the last timeout
281 float orig_slowmo; // contains the value of autocvar_slowmo so that, after timeout finished, it isn't set to slowmo 1 necessarily
282 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
283 entity timeoutHandler; //responsible for centerprinting the timeout countdowns and playing sounds
284 void timeoutHandler_Think();
285 void evaluateTimeout();
286 void evaluateTimein();
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_playerdetailreduction;
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 sv_loddistance1;
321 float sv_loddistance2;
322 .float cvar_cl_gunalign;
323 .float cvar_cl_noantilag;
324
325 .string weaponorder_byimpulse;
326
327 .float cvar_cl_allow_uid2name;
328 .float cvar_cl_allow_uidtracking;
329 .string stored_netname;
330
331 void Announce(string snd);
332 void AnnounceTo(entity e, string snd);
333
334 .float version_nagtime;
335
336 .float modelindex_lod0;
337 .float modelindex_lod0_from_xonotic;
338 .float skinindex;
339 .float modelindex_lod1;
340 .float modelindex_lod2;
341
342 #define NUM_JUMPPADSUSED 3
343 .float jumppadcount;
344 .entity jumppadsused[NUM_JUMPPADSUSED];
345
346 string gamemode_name;
347
348 float startitem_failed;
349
350 void DropFlag(entity flag, entity penalty_receiver, entity attacker);
351 void DropBall(entity ball, vector org, vector vel);
352 void DropAllRunes(entity pl);
353
354
355 typedef .float floatfield;
356 floatfield Item_CounterField(float it);
357
358 float W_AmmoItemCode(float wpn);
359 float W_WeaponBit(float wpn);
360 string W_Name(float weaponid);
361
362 void FixIntermissionClient(entity e);
363 void FixClientCvars(entity e);
364
365 float weaponsInMap;
366
367 .float respawn_countdown; // next number to count
368
369 float bot_waypoints_for_items;
370
371 .float attack_finished_for[WEP_MAXCOUNT];
372 .float attack_finished_single;
373 #ifdef INDEPENDENT_ATTACK_FINISHED
374 #define ATTACK_FINISHED_FOR(ent,w) ((ent).(attack_finished_for[(w) - WEP_FIRST]))
375 #else
376 #define ATTACK_FINISHED_FOR(ent,w) ((ent).attack_finished_single)
377 #endif
378 #define ATTACK_FINISHED(ent) ATTACK_FINISHED_FOR(ent,(ent).weapon)
379
380 // assault game mode: Which team is attacking in this round?
381 float assault_attacker_team;
382
383 // speedrun: when 1, player auto teleports back when capture timeout happens
384 .float speedrunning;
385
386 // Q3 support
387 float q3acompat_machineshotgunswap;
388
389 // database
390 float ServerProgsDB;
391 float TemporaryDB;
392
393 .float team_saved;
394
395 float some_spawn_has_been_used;
396 float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found
397 float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team"
398
399 // set when showing a kill countdown
400 .entity killindicator;
401 .float killindicator_teamchange;
402
403 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
404
405 float lockteams;
406
407 .float parm_idlesince;
408 float sv_maxidle;
409 float sv_maxidle_spectatorsareidle;
410
411 float sv_pogostick;
412 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
413
414 float next_pingtime;
415
416 .float Version;
417 .float SendFlags;
418 .float(entity to, float sendflags) SendEntity;
419
420 // player sounds, voice messages
421 // TODO implemented fall and falling
422 #define ALLPLAYERSOUNDS \
423                 _VOICEMSG(death) \
424                 _VOICEMSG(drown) \
425                 _VOICEMSG(fall) \
426                 _VOICEMSG(fall) \
427                 _VOICEMSG(falling) \
428                 _VOICEMSG(gasp) \
429                 _VOICEMSG(jump) \
430                 _VOICEMSG(pain100) \
431                 _VOICEMSG(pain25) \
432                 _VOICEMSG(pain50) \
433                 _VOICEMSG(pain75)
434
435 #define ALLVOICEMSGS \
436                 _VOICEMSG(attack) \
437                 _VOICEMSG(attackinfive) \
438                 _VOICEMSG(coverme) \
439                 _VOICEMSG(defend) \
440                 _VOICEMSG(freelance) \
441                 _VOICEMSG(incoming) \
442                 _VOICEMSG(meet) \
443                 _VOICEMSG(needhelp) \
444                 _VOICEMSG(seenflag) \
445                 _VOICEMSG(taunt) \
446                 _VOICEMSG(teamshoot)
447
448 #define _VOICEMSG(m) .string playersound_##m;
449 ALLPLAYERSOUNDS
450 ALLVOICEMSGS
451 #undef _VOICEMSG
452
453 // reserved sound names for the future (some models lack sounds for them):
454 //              _VOICEMSG(flagcarriertakingdamage) \
455 //              _VOICEMSG(getflag) \
456 // reserved sound names for the future (ALL models lack sounds for them):
457 //              _VOICEMSG(affirmative) \
458 //              _VOICEMSG(attacking) \
459 //              _VOICEMSG(defending) \
460 //              _VOICEMSG(roaming) \
461 //              _VOICEMSG(onmyway) \
462 //              _VOICEMSG(droppedflag) \
463 //              _VOICEMSG(negative) \
464 //              _VOICEMSG(seenenemy) \
465
466 string globalsound_fall;
467 string globalsound_metalfall;
468 string globalsound_step;
469 string globalsound_metalstep;
470
471 #define VOICETYPE_PLAYERSOUND 10
472 #define VOICETYPE_TEAMRADIO 11
473 #define VOICETYPE_LASTATTACKER 12
474 #define VOICETYPE_LASTATTACKER_ONLY 13
475 #define VOICETYPE_AUTOTAUNT 14
476 #define VOICETYPE_TAUNT 15
477
478 void PrecachePlayerSounds(string f);
479 void PrecacheGlobalSound(string samplestring);
480 void UpdatePlayerSounds();
481 void ClearPlayerSounds();
482 void PlayerSound(.string samplefield, float channel, float voicetype);
483 void GlobalSound(string samplestring, float channel, float voicetype);
484 void FakeGlobalSound(string samplestring, float channel, float voicetype);
485 void VoiceMessage(string type, string message);
486 float GetPlayerSoundSampleField_notFound;
487 .string GetVoiceMessageSampleField(string type)
488
489 // autotaunt system
490 .float cvar_cl_autotaunt;
491 .float cvar_cl_voice_directional;
492 .float cvar_cl_voice_directional_taunt_attenuation;
493
494 .float version_mismatch;
495
496 float independent_players;
497 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
498 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
499 // we're using + here instead of , because fteqcc sucks
500
501 string clientstuff;
502 .float phase;
503 .float weapons;
504 .float pressedkeys;
505
506 .float porto_forbidden;
507
508 .string fog;
509
510 string cvar_changes;
511 string cvar_purechanges;
512 float cvar_purechanges_count;
513
514 float game_starttime; //point in time when the countdown is over
515 .float stat_game_starttime;
516
517 .float stat_sv_airaccel_qw;
518 .float stat_sv_airstrafeaccel_qw;
519 .float stat_sv_airspeedlimit_nonqw;
520 .float stat_sv_maxspeed;
521
522 void W_Porto_Remove (entity p);
523
524 .float projectiledeathtype;
525
526 .string message2;
527
528 vector railgun_start, railgun_end; // filled by FireRailgunBullet, used by damage code for head shot
529 .float stat_allow_oldnexbeam;
530
531 // reset to 0 on weapon switch
532 // may be useful to all weapons
533 .float bulletcounter;
534
535 void target_voicescript_next(entity pl);
536 void target_voicescript_clear(entity pl);
537
538 .string target2;
539 .string target3;
540 .string target4;
541 .float target_random;
542 .float trigger_reverse;
543
544 // Nexball 
545 .entity ballcarried; // Also used for keepaway
546 .float metertime;
547 float g_nexball_meter_period;
548
549 void SUB_DontUseTargets();
550 void SUB_UseTargets();
551
552 .void() reset; // if set, an entity is reset using this
553 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
554
555 void ClientData_Touch(entity e);
556
557 vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
558
559 .float wasplayer;
560
561 float servertime, serverprevtime, serverframetime;
562
563 .entity soundentity;
564
565 .float ammo_fuel;
566
567 .vector prevorigin;
568
569 //flood fields
570 .float nickspamtime; // time of last nick change
571 .float nickspamcount;
572 .float floodcontrol_chat;
573 .float floodcontrol_chatteam;
574 .float floodcontrol_chattell;
575 .float floodcontrol_voice;
576 .float floodcontrol_voiceteam;
577
578 .float stat_shotorg; // networked stat for trueaim HUD
579
580 string matchid;
581 .float hitplotfh;
582 .string noise4;
583
584 .float last_pickup;
585
586 .float hit_time; 
587 .float typehit_time; 
588
589 .float stat_leadlimit;
590
591 float radar_showennemies;
592
593 #ifdef PROFILING
594 float client_cefc_accumulator;
595 float client_cefc_accumulatortime;
596 #endif
597
598 ..float current_ammo;
599
600 .float weapon_load[WEP_MAXCOUNT];
601 .float ammo_none; // used by the reloading system, must always be 0
602 .float clip_load;
603 .float old_clip_load;
604 .float clip_size;
605 .float minelayer_mines;
606
607 #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_CORPSE; (e).dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE
608 // when doing this, hagar can go through clones
609 // #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_BBOX
610
611 .float spectatee_status;
612 .float zoomstate;
613 .float bloodloss_timer;
614 .float restriction;
615
616 .entity clientdata;
617 .entity personal;
618
619 string deathmessage;
620
621 .float just_joined;
622
623 .float cvar_cl_accuracy_data_share;
624 .float cvar_cl_accuracy_data_receive;
625
626 .float cvar_cl_weaponimpulsemode;
627 .float selectweapon; // last selected weapon of the player
628
629 .float ballistics_density; // wall piercing factor, larger = bullet can pass through more
630
631 #define ACTIVE_NOT              0
632 #define ACTIVE_ACTIVE   1
633 #define ACTIVE_IDLE     2
634 #define ACTIVE_BUSY     2
635 #define ACTIVE_TOGGLE   3
636 .float active;
637 .float (float act_state) setactive;
638 .entity realowner;
639
640 .float nex_charge;
641 .float nex_charge_rottime;
642 .float nex_chargepool_ammo;
643
644 .float hagar_load;
645
646 float allowed_to_spawn; // boolean variable used by the clan arena code to determine if a player can spawn (after the round has ended)
647
648 float serverflags;
649
650 .float team_forced; // can be a team number to force a team, or 0 for default action, or -1 for forced spectator
651
652 .float freezetag_frozen;
653 .float freezetag_revive_progress;
654
655 .entity muzzle_flash;
656 .float misc_bulletcounter;      // replaces uzi & hlac bullet counter.
657
658 void PlayerUseKey();