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