]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/defs.qh
testing:
[divverent/nexuiz.git] / data / 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
16 // Globals
17
18 float ctf_score_value(string parameter);
19
20 float g_dm, g_domination, g_ctf, g_tdm, g_keyhunt, g_onslaught, g_assault, g_arena, g_lms, g_runematch, g_race, g_nexball;
21 float g_cloaked, g_footsteps, g_jump_grunt, g_grappling_hook, g_laserguided_missile, g_midair, g_minstagib, g_nixnex, g_nixnex_with_laser, g_pinata, g_norecoil, g_vampire, g_minstagib_invis_alpha, g_bloodloss;
22 float g_warmup_limit;
23 float g_warmup_allguns;
24 float g_warmup_allow_timeout;
25 float g_ctf_win_mode;
26 float g_ctf_ignore_frags;
27 float g_ctf_reverse;
28 float g_race_qualifying;
29 float inWarmupStage;
30 float g_pickup_respawntime_weapon;
31 float g_pickup_respawntime_ammo;
32 float g_pickup_respawntime_short;
33 float g_pickup_respawntime_medium;
34 float g_pickup_respawntime_long;
35 float g_pickup_respawntime_powerup;
36 float g_pickup_respawntimejitter_weapon;
37 float g_pickup_respawntimejitter_ammo;
38 float g_pickup_respawntimejitter_short;
39 float g_pickup_respawntimejitter_medium;
40 float g_pickup_respawntimejitter_long;
41 float g_pickup_respawntimejitter_powerup;
42 float g_maplist_allow_hidden;
43 float g_jetpack;
44
45 float sv_clones;
46 float sv_cheats;
47 float sv_gentle;
48 float sv_foginterval;
49
50 entity  activator;
51 string  string_null;
52 const var void(void)    func_null;
53
54 float player_count;
55 float currentbots;
56 float bots_would_leave;
57 float lms_lowest_lives;
58 float lms_next_place;
59 float LMS_NewPlayerLives();
60
61 void UpdateFrags(entity player, float f);
62 .float totalfrags;
63
64 float team1_score, team2_score, team3_score, team4_score;
65
66 float maxclients;
67
68 // Fields
69
70 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
71
72 //.string       wad;
73 //.string       map;
74
75 //.float        worldtype;
76 .float  delay;
77 .float  wait;
78 .float  lip;
79 //.float        light_lev;
80 .float  speed;
81 //.float        style;
82 //.float        skill;
83 .float  sounds;
84
85 .string killtarget;
86
87 .vector pos1, pos2;
88 .vector mangle;
89
90 .float cvar_cl_hitsound;
91
92 .float  pain_finished;                  //Added by Supajoe
93 .float  pain_frame;                     //"
94 .float  statdraintime;                  // record the one-second intervals between draining health and armour when they're over 100
95 .float  crouch; // Crouching or not?
96
97 .float  strength_finished;
98 //.float        speed_finished;
99 .float  invincible_finished;
100 //.float        slowmo_finished;
101
102 .vector         finaldest, finalangle;          //plat.qc stuff
103 .void()         think1;
104 .float state;
105 .float          t_length, t_width;
106
107 .vector destvec;                // for rain
108 .float cnt;             // for rain
109 .float count;
110 //.float cnt2;
111
112 .float play_time;
113 .float death_time;
114 .float dead_frame;
115 .float fade_time;
116 .float fade_rate;
117
118 // player animation state
119 .float animstate_startframe;
120 .float animstate_numframes;
121 .float animstate_framerate;
122 .float animstate_starttime;
123 .float animstate_endtime;
124 .float animstate_override;
125 .float animstate_looping;
126
127 // player animation data for this model
128 // each vector is as follows:
129 // _x = startframe
130 // _y = numframes
131 // _z = framerate
132 .vector anim_die1; // player dies
133 .vector anim_die2; // player dies differently
134 .vector anim_draw; // player pulls out a weapon
135 .vector anim_duck; // player crouches (from idle to duckidle)
136 .vector anim_duckwalk; // player walking while crouching
137 .vector anim_duckjump; // player jumping from a crouch
138 .vector anim_duckidle; // player idling while crouching
139 .vector anim_idle; // player standing
140 .vector anim_jump; // player jump
141 .vector anim_pain1; // player flinches from pain
142 .vector anim_pain2; // player flinches from pain, differently
143 .vector anim_shoot; // player shoots
144 .vector anim_taunt; // player taunts others (FIXME: no code references this)
145 .vector anim_run; // player running forward
146 .vector anim_runbackwards; // player running backward
147 .vector anim_strafeleft; // player shuffling left quickly
148 .vector anim_straferight; // player shuffling right quickly
149 .vector anim_dead1; // player dead (must be identical to last frame of die1)
150 .vector anim_dead2; // player dead (must be identical to last frame of die2)
151 .vector anim_forwardright; // player running forward and right
152 .vector anim_forwardleft; // player running forward and left
153 .vector anim_backright; // player running backward and right
154 .vector anim_backleft; // player running back and left
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  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 .vector oldvelocity;
194
195 .float pauseregen_finished;
196 .float pauserothealth_finished;
197 .float pauserotarmor_finished;
198 .float pauserotfuel_finished;
199 .string item_pickupsound;
200
201 // definitions for weaponsystem
202
203 .entity weaponentity;
204 .entity exteriorweaponentity;
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 .void() weapon_think;
214
215 //float PLAYER_WEAPONSELECTION_DELAY = );
216 float   PLAYER_WEAPONSELECTION_SPEED = 18;
217 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
218
219 // weapon states (self.weaponentity.state)
220 float WS_CLEAR                  = 0; // no weapon selected
221 float WS_RAISE                  = 1; // raise frame
222 float WS_DROP                   = 2; // deselecting frame
223 float WS_INUSE                  = 3; // fire state
224 float WS_READY                  = 4; // idle frame
225
226 // weapon requests
227 float WR_SETUP              = 1; // setup weapon data
228 float WR_THINK              = 2; // logic to run every frame
229 float WR_CHECKAMMO1         = 3; // checks ammo for weapon
230 float WR_CHECKAMMO2         = 4; // checks ammo for weapon
231 float WR_AIM                = 5; // runs bot aiming code for this weapon
232 float WR_PRECACHE           = 6; // precaches models/sounds used by this weapon
233 float WR_SUICIDEMESSAGE = 7; // sets w_deathtypestring or leaves it alone (and may inspect w_deathtype for details)
234 float WR_KILLMESSAGE    = 8; // sets w_deathtypestring or leaves it alone
235 float WR_RELOAD         = 9; // does not need to do anything
236
237 void weapon_defaultspawnfunc(float wpn);
238
239 string w_deathtypestring;
240 float w_deathtype;
241
242 void(entity client, string s) centerprint_builtin = #73;
243 .vector dest1, dest2;
244
245 float gameover;
246 float intermission_running;
247 float intermission_exittime;
248 float alreadychangedlevel;
249
250
251 .float runes;
252
253
254 .float welcomemessage_time;
255 .float version;
256
257 // Laser target for laser-guided weapons
258 .entity lasertarget;
259 .float laser_on;
260
261 // minstagib vars
262 .float jump_interval;    // laser refire
263
264 //swamp
265 .float in_swamp;              // bool
266 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
267
268 // footstep interval
269 .float nextstep;
270
271 .float ready;
272 #define RESTART_COUNTDOWN 10
273 float restart_mapalreadyrestarted; //bool, indicates whether reset_map() was already executed
274 entity restartTimer;
275 void restartTimer_Think();
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 winning;
281 .float jointime;
282
283 float isJoinAllowed();
284 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
285
286 //sv_timeout: pauses the game by setting the gamespeed to a really low value (see TIMEOUT_SLOWMO_VALUE)
287 #define TIMEOUT_SLOWMO_VALUE 0.0001
288 float sys_ticrate; // gets initialised in worlspawn, saves the value from cvar("sys_ticrate")
289 float remainingTimeoutTime; // contains the time in seconds that the active timeout has left
290 float remainingLeadTime; // contains the number of seconds left of the leadtime (before the timeout starts)
291 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)
292 .float allowedTimeouts; // contains the number of allowed timeouts for each player
293 entity timeoutInitiator; // contains the entity of the player who started the last timeout
294 float orig_slowmo; // contains the value of cvar("slowmo") so that, after timeout finished, it isn't set to slowmo 1 necessarily
295 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
296 entity timeoutHandler; //responsible for centerprinting the timeout countdowns and playing sounds
297 void timeoutHandler_Think();
298 void evaluateTimeout();
299 void evaluateTimein();
300 string getTimeoutText(float addOneSecond);
301
302 .float spawnshieldtime;
303
304 .float lms_nextcheck;
305 .float lms_traveled_distance;
306
307 .entity flagcarried;
308
309 .entity lastrocket;
310
311 .float playerid;
312 float playerid_last;
313 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
314
315 .vector spawnorigin;
316
317 .vector death_origin;
318 .vector killer_origin;
319
320 float default_player_alpha;
321 float default_weapon_alpha;
322
323 .float() customizeentityforclient;
324 .float cvar_cl_handicap;
325 .float cvar_cl_playerdetailreduction;
326 .float cvar_scr_centertime;
327 .float cvar_cl_shownames;
328 .string cvar_g_nexuizversion;
329 .string cvar_cl_weaponpriority;
330 .string cvar_cl_weaponpriorities[10];
331
332 .float version_nagtime;
333
334 .float modelindex_lod0;
335 #ifdef ALLOW_VARIABLE_LOD
336 .float modelindex_lod1;
337 .float modelindex_lod2;
338 #endif
339
340 #define NUM_JUMPPADSUSED 3
341 .float jumppadcount;
342 .entity jumppadsused[NUM_JUMPPADSUSED];
343
344 string gamemode_name;
345 float teams_matter;
346
347 float startitem_failed;
348
349 void DropFlag(entity flag, entity penalty_receiver, entity attacker);
350 void DropBall(entity ball, vector org, vector vel);
351 void DropAllRunes(entity pl);
352
353
354 typedef .float floatfield;
355 floatfield Item_CounterField(float it);
356
357 float W_AmmoItemCode(float wpn);
358 float W_WeaponBit(float wpn);
359 string W_Name(float weaponid);
360
361 void UpdateSelectedPlayer();
362 void ClearSelectedPlayer();
363 .entity selected_player;
364 .entity last_selected_player;
365 .float selected_player_time; // when this player has been selected
366 .float selected_player_count; // how long this player has been directly pointed to
367 .float selected_player_display_needs_update; // are regular updates necessary? (health)
368 .float selected_player_display_timeout; // when the selection will time out
369
370 void FixIntermissionClient(entity e);
371 void FixClientCvars(entity e);
372
373 float weaponsInMap;
374
375 void centerprint_atprio(entity e, float prio, string s);
376 void centerprint_expire(entity e, float prio);
377 void centerprint(entity e, string s);
378
379 .float respawn_countdown; // next number to count
380
381 float bot_waypoints_for_items;
382
383 .float  attack_finished_for[WEP_COUNT];
384 .float attack_finished_single;
385 #ifdef INDEPENDENT_ATTACK_FINISHED
386 #define ATTACK_FINISHED(ent) ((ent).(attack_finished_for[(ent).weapon]))
387 #else
388 #define ATTACK_FINISHED(ent) ((ent).attack_finished_single)
389 #endif
390
391 // assault game mode: Which team is attacking in this round?
392 float assault_attacker_team;
393
394 // speedrun: when 1, player auto teleports back when capture timeout happens
395 .float speedrunning;
396
397 // Q3 support
398 .float notteam;
399 .float notsingle;
400 .float notfree;
401 .float notq3a;
402 float q3acompat_machineshotgunswap;
403
404 // database
405 float ServerProgsDB;
406 float TemporaryDB;
407
408 .float team_saved;
409
410 float some_spawn_has_been_used;
411 float have_team_spawns;
412
413 // set when showing a kill countdown
414 .entity killindicator;
415 .float killindicator_teamchange;
416
417 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
418
419 float lockteams;
420
421 .float parm_idlesince;
422 float sv_maxidle;
423 float sv_maxidle_spectatorsareidle;
424
425 float sv_pogostick;
426 float sv_doublejump;
427 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
428
429 float next_pingtime;
430
431 .float Version;
432 .float SendFlags;
433 .float(entity to, float sendflags) SendEntity;
434
435 // player sounds, voice messages
436 // TODO implemented fall and falling
437 #define ALLPLAYERSOUNDS \
438                 _VOICEMSG(death) \
439                 _VOICEMSG(drown) \
440                 _VOICEMSG(gasp) \
441                 _VOICEMSG(jump) \
442                 _VOICEMSG(pain25) \
443                 _VOICEMSG(pain50) \
444                 _VOICEMSG(pain75) \
445                 _VOICEMSG(pain100)
446 #define ALLVOICEMSGS \
447                 _VOICEMSG(attack) \
448                 _VOICEMSG(attackinfive) \
449                 _VOICEMSG(meet) \
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 (models lack sounds for them):
460 //              _VOICEMSG(affirmative) \
461 //              _VOICEMSG(attacking) \
462 //              _VOICEMSG(defending) \
463 //              _VOICEMSG(roaming) \
464 //              _VOICEMSG(onmyway) \
465 //              _VOICEMSG(droppedflag) \
466 //              _VOICEMSG(flagcarriertakingdamage) \
467 //              _VOICEMSG(negative) \
468 //              _VOICEMSG(seenenemy) \
469 //              _VOICEMSG(fall) \
470 //              _VOICEMSG(getflag) \
471 //              _VOICEMSG(incoming) \
472 //              _VOICEMSG(coverme) \
473 //              _VOICEMSG(needhelp) \
474 //              _VOICEMSG(defend) \
475 //              _VOICEMSG(freelance) \
476 //              _VOICEMSG(falling) \
477
478 string globalsound_fall;
479 string globalsound_metalfall;
480 string globalsound_step;
481 string globalsound_metalstep;
482
483 #define VOICETYPE_PLAYERSOUND 10
484 #define VOICETYPE_TEAMRADIO 11
485 #define VOICETYPE_LASTATTACKER 12
486 #define VOICETYPE_LASTATTACKER_ONLY 13
487 #define VOICETYPE_AUTOTAUNT 14
488 #define VOICETYPE_TAUNT 15
489
490 void PrecachePlayerSounds(string f);
491 void PrecacheGlobalSound(string samplestring);
492 void UpdatePlayerSounds();
493 void ClearPlayerSounds();
494 void PlayerSound(.string samplefield, float channel, float voicetype);
495 void GlobalSound(string samplestring, float channel, float voicetype);
496 void VoiceMessage(string type, string message);
497
498 // autotaunt system
499 .float cvar_cl_autotaunt;
500 .float cvar_cl_voice_directional;
501 .float cvar_cl_voice_directional_taunt_attenuation;
502
503 .float version_mismatch;
504
505 float independent_players;
506 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
507 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
508 // we're using + here instead of , because fteqcc sucks
509
510 string clientstuff;
511 .float stat_sys_ticrate;
512 .float phase;
513 .float weapons;
514 .float pressedkeys;
515
516 .float porto_forbidden;
517
518 .string fog;
519
520 string cvar_changes;
521
522 float game_starttime; //point in time when the countdown is over
523 .float stat_game_starttime;
524
525 void W_Porto_Remove (entity p);
526
527 .float projectiledeathtype;
528
529 .string message2;
530
531 vector railgun_start, railgun_end; // filled by FireRailgunBullet, used by damage code for head shot
532 .float stat_allow_oldnexbeam;
533
534 // reset to 0 on weapon switch
535 // may be useful to all weapons
536 .float bulletcounter;
537
538 void target_voicescript_next(entity pl);
539 void target_voicescript_clear(entity pl);
540
541 .string target2;
542 .string target3;
543 .string target4;
544 .float trigger_reverse;
545
546 // Nexball
547 .entity ballcarried;
548 .float metertime;
549 float g_nexball_meter_period;
550
551 void SUB_DontUseTargets();
552 void SUB_UseTargets();
553
554 .void() reset; // if set, an entity is reset using this
555 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
556
557 void ClientData_Touch(entity e);
558
559 vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
560
561 // the QC VM sucks
562 #define BITXOR(v,b)        ((v) + (b) - 2 * ((v) & (b)))
563 #define BITXOR_ASSIGN(v,b) ((v) += ((b) - 2 * ((v) & (b))))
564
565 .float wasplayer;
566
567 float servertime, serverprevtime, serverframetime;
568
569 void Drag_MoveDrag(entity from, entity to);
570
571 .entity soundentity;
572
573 .float ammo_fuel;
574
575 .vector prevorigin;
576
577 //flood fields
578 .float nickspamtime; // time of last nick change
579 .float nickspamcount;
580 .float floodcontrol_chat;
581 .float floodcontrol_chatteam;
582 .float floodcontrol_chattell;
583 .float floodcontrol_voice;
584 .float floodcontrol_voiceteam;
585
586 .float stat_shotorg; // networked stat for trueaim HUD
587
588 string matchid;
589 .float hitplotfh;