]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/defs.qh
More fixes/cleanups
[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 .float cnt;             // for rain
100 .float count;
101 //.float cnt2;
102
103 .float play_time;
104 .float respawn_time;
105 .float death_time;
106 .float fade_time;
107 .float fade_rate;
108
109 // player animation state
110 .float animstate_startframe;
111 .float animstate_numframes;
112 .float animstate_framerate;
113 .float animstate_starttime;
114 .float animstate_endtime;
115 .float animstate_override;
116 .float animstate_looping;
117
118 // player animation data for this model
119 // each vector is as follows:
120 // _x = startframe
121 // _y = numframes
122 // _z = framerate
123 .vector anim_die1; // player dies
124 .vector anim_die2; // player dies differently
125 .vector anim_draw; // player pulls out a weapon
126 // .vector anim_duck; // player crouches (from idle to duckidle)
127 .vector anim_duckwalk; // player walking while crouching
128 .vector anim_duckjump; // player jumping from a crouch
129 .vector anim_duckidle; // player idling while crouching
130 .vector anim_idle; // player standing
131 .vector anim_jump; // player jump
132 .vector anim_pain1; // player flinches from pain
133 .vector anim_pain2; // player flinches from pain, differently
134 .vector anim_shoot; // player shoots
135 .vector anim_taunt; // player taunts others (FIXME: no code references this)
136 .vector anim_run; // player running forward
137 .vector anim_runbackwards; // player running backward
138 .vector anim_strafeleft; // player shuffling left quickly
139 .vector anim_straferight; // player shuffling right quickly
140 //.vector anim_dead1; // player dead (must be identical to last frame of die1)
141 //.vector anim_dead2; // player dead (must be identical to last frame of die2)
142 .vector anim_forwardright; // player running forward and right
143 .vector anim_forwardleft; // player running forward and left
144 .vector anim_backright; // player running backward and right
145 .vector anim_backleft; // player running back and left
146 .vector anim_melee; // player doing the melee action
147 .vector anim_duck; // player doing the melee action
148 .vector anim_duckwalkbackwards;
149 .vector anim_duckwalkstrafeleft;
150 .vector anim_duckwalkstraferight;
151 .vector anim_duckwalkforwardright;
152 .vector anim_duckwalkforwardleft;
153 .vector anim_duckwalkbackright;
154 .vector anim_duckwalkbackleft;
155
156 // weapon animation vectors:
157 .vector anim_fire1;
158 .vector anim_fire2;
159 .vector anim_idle;
160 .vector anim_reload;
161
162 void() player_setupanimsformodel;
163 void setanim(entity e, vector anim, float looping, float override, float restart);
164
165 .string mdl;
166
167 .string playermodel;
168 .string playerskin;
169
170 .float species;
171
172 .float  respawntime;
173 .float  respawntimejitter;
174 //.float        chasecam;
175
176 .float  damageforcescale;
177 #define MIN_DAMAGEEXTRARADIUS 2
178 #define MAX_DAMAGEEXTRARADIUS 16
179 .float damageextraradius;
180
181 //.float          gravity;
182
183 .float          dmg;
184
185 // for railgun damage (hitting multiple enemies)
186 .float railgunhit;
187 .float railgunhitsolidbackup;
188 .vector railgunhitloc;
189
190 .float          air_finished;
191 .float          dmgtime;
192
193 .float          killcount;
194 .float hitsound, typehitsound;
195
196 .float watersound_finished;
197 .float iscreature;
198 .float damagedbycontents;
199 .float damagedbytriggers;
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 winning;
277 .float jointime; // time of joining
278 .float alivetime; // time of being alive
279
280 float nJoinAllowed(entity ignore);
281 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
282
283 .float spawnshieldtime;
284
285 .float lms_nextcheck;
286 .float lms_traveled_distance;
287
288 .entity flagcarried;
289
290 .entity lastrocket;
291
292 .float playerid;
293 float playerid_last;
294 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
295
296 .vector spawnorigin;
297
298 .vector death_origin;
299 .vector killer_origin;
300
301 float default_player_alpha;
302 float default_weapon_alpha;
303
304 .float() customizeentityforclient;
305 .float cvar_cl_handicap;
306 .float cvar_cl_clippedspectating;
307 .float cvar_cl_autoscreenshot;
308 .float cvar_cl_movement_track_canjump;
309 .float cvar_cl_newusekeysupported;
310
311 .string cvar_g_xonoticversion;
312 .string cvar_cl_weaponpriority;
313 .string cvar_cl_weaponpriorities[10];
314 #ifdef ALLOW_FORCEMODELS
315 .float cvar_cl_forceplayermodels;
316 .float cvar_cl_forceplayermodelsfromxonotic;
317 float sv_clforceplayermodels;
318 #endif
319 .float cvar_cl_gunalign;
320 .float cvar_cl_noantilag;
321
322 .string weaponorder_byimpulse;
323
324 .float cvar_cl_allow_uid2name;
325 .float cvar_cl_allow_uidtracking;
326 .string stored_netname;
327
328 void Announce(string snd);
329 void AnnounceTo(entity e, string snd);
330
331 .float version_nagtime;
332
333 #define NUM_JUMPPADSUSED 3
334 .float jumppadcount;
335 .entity jumppadsused[NUM_JUMPPADSUSED];
336
337 string gamemode_name;
338
339 float startitem_failed;
340
341 void DropAllRunes(entity pl);
342
343
344 typedef .float floatfield;
345 floatfield Item_CounterField(float it);
346
347 float W_AmmoItemCode(float wpn);
348 float W_WeaponBit(float wpn);
349 string W_Name(float weaponid);
350
351 void FixIntermissionClient(entity e);
352 void FixClientCvars(entity e);
353
354 float weaponsInMap;
355
356 .float respawn_countdown; // next number to count
357
358 float bot_waypoints_for_items;
359
360 .float attack_finished_for[WEP_MAXCOUNT];
361 .float attack_finished_single;
362 #ifdef INDEPENDENT_ATTACK_FINISHED
363 #define ATTACK_FINISHED_FOR(ent,w) ((ent).(attack_finished_for[(w) - WEP_FIRST]))
364 #else
365 #define ATTACK_FINISHED_FOR(ent,w) ((ent).attack_finished_single)
366 #endif
367 #define ATTACK_FINISHED(ent) ATTACK_FINISHED_FOR(ent,(ent).weapon)
368
369 // assault game mode: Which team is attacking in this round?
370 float assault_attacker_team;
371
372 // speedrun: when 1, player auto teleports back when capture timeout happens
373 .float speedrunning;
374
375 // database
376 float ServerProgsDB;
377 float TemporaryDB;
378
379 .float team_saved;
380
381 float some_spawn_has_been_used;
382 float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found
383 float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team"
384
385 // set when showing a kill countdown
386 .entity killindicator;
387 .float killindicator_teamchange;
388
389 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
390
391 float lockteams;
392
393 .float parm_idlesince;
394 float sv_maxidle;
395 float sv_maxidle_spectatorsareidle;
396
397 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
398
399 float next_pingtime;
400
401 .float Version;
402 .float SendFlags;
403 .float(entity to, float sendflags) SendEntity;
404
405 // player sounds, voice messages
406 // TODO implemented fall and falling
407 #define ALLPLAYERSOUNDS \
408                 _VOICEMSG(death) \
409                 _VOICEMSG(drown) \
410                 _VOICEMSG(fall) \
411                 _VOICEMSG(fall) \
412                 _VOICEMSG(falling) \
413                 _VOICEMSG(gasp) \
414                 _VOICEMSG(jump) \
415                 _VOICEMSG(pain100) \
416                 _VOICEMSG(pain25) \
417                 _VOICEMSG(pain50) \
418                 _VOICEMSG(pain75)
419
420 #define ALLVOICEMSGS \
421                 _VOICEMSG(attack) \
422                 _VOICEMSG(attackinfive) \
423                 _VOICEMSG(coverme) \
424                 _VOICEMSG(defend) \
425                 _VOICEMSG(freelance) \
426                 _VOICEMSG(incoming) \
427                 _VOICEMSG(meet) \
428                 _VOICEMSG(needhelp) \
429                 _VOICEMSG(seenflag) \
430                 _VOICEMSG(taunt) \
431                 _VOICEMSG(teamshoot)
432
433 #define _VOICEMSG(m) .string playersound_##m;
434 ALLPLAYERSOUNDS
435 ALLVOICEMSGS
436 #undef _VOICEMSG
437
438 // reserved sound names for the future (some models lack sounds for them):
439 //              _VOICEMSG(flagcarriertakingdamage) \
440 //              _VOICEMSG(getflag) \
441 // reserved sound names for the future (ALL models lack sounds for them):
442 //              _VOICEMSG(affirmative) \
443 //              _VOICEMSG(attacking) \
444 //              _VOICEMSG(defending) \
445 //              _VOICEMSG(roaming) \
446 //              _VOICEMSG(onmyway) \
447 //              _VOICEMSG(droppedflag) \
448 //              _VOICEMSG(negative) \
449 //              _VOICEMSG(seenenemy) \
450
451 string globalsound_fall;
452 string globalsound_metalfall;
453 string globalsound_step;
454 string globalsound_metalstep;
455
456 #define VOICETYPE_PLAYERSOUND 10
457 #define VOICETYPE_TEAMRADIO 11
458 #define VOICETYPE_LASTATTACKER 12
459 #define VOICETYPE_LASTATTACKER_ONLY 13
460 #define VOICETYPE_AUTOTAUNT 14
461 #define VOICETYPE_TAUNT 15
462
463 void PrecachePlayerSounds(string f);
464 void PrecacheGlobalSound(string samplestring);
465 void UpdatePlayerSounds();
466 void ClearPlayerSounds();
467 void PlayerSound(.string samplefield, float channel, float voicetype);
468 void GlobalSound(string samplestring, float channel, float voicetype);
469 void FakeGlobalSound(string samplestring, float channel, float voicetype);
470 void VoiceMessage(string type, string message);
471 float GetPlayerSoundSampleField_notFound;
472 .string GetVoiceMessageSampleField(string type)
473
474 // autotaunt system
475 .float cvar_cl_autotaunt;
476 .float cvar_cl_voice_directional;
477 .float cvar_cl_voice_directional_taunt_attenuation;
478
479 .float version_mismatch;
480
481 float independent_players;
482 #define INDEPENDENT_PLAYERS (autocvar__independent_players ? (autocvar__independent_players > 0) : independent_players)
483 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
484 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
485 // we're using + here instead of , because fteqcc sucks
486
487 string clientstuff;
488 .float phase;
489 .float weapons;
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 .float (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 void PlayerUseKey();
648
649 typedef vector(entity player, entity spot, vector current) spawn_evalfunc_t;
650 .spawn_evalfunc_t spawn_evalfunc;
651
652 .entity conveyor;
653
654 string modname;