]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/defs.qh
Nexball goes official :D
[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 string records_reply, lsmaps_reply, maplist_reply; // cached replies
19
20 float ctf_score_value(string parameter);
21
22 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;
23 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;
24 float g_warmup_limit;
25 float g_warmup_allguns;
26 float g_warmup_allow_timeout;
27 float g_ctf_win_mode;
28 float g_ctf_ignore_frags;
29 float g_ctf_reverse;
30 float g_race_qualifying;
31 float inWarmupStage;
32 float g_pickup_respawntime_weapon;
33 float g_pickup_respawntime_ammo;
34 float g_pickup_respawntime_short;
35 float g_pickup_respawntime_medium;
36 float g_pickup_respawntime_long;
37 float g_pickup_respawntime_powerup;
38 float g_maplist_allow_hidden;
39 float g_jetpack;
40
41 float sv_clones;
42 float sv_cheats;
43 float sv_gentle;
44 float sv_foginterval;
45
46 entity  activator;
47 string  string_null;
48 const var void(void)    func_null;
49
50 float player_count;
51 float currentbots;
52 float bots_would_leave;
53 float lms_lowest_lives;
54 float lms_next_place;
55 float LMS_NewPlayerLives();
56
57 void UpdateFrags(entity player, float f);
58 .float totalfrags;
59
60 float team1_score, team2_score, team3_score, team4_score;
61
62 float maxclients;
63
64 // Fields
65
66 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
67
68 //.string       wad;
69 //.string       map;
70
71 //.float        worldtype;
72 .float  delay;
73 .float  wait;
74 .float  lip;
75 //.float        light_lev;
76 .float  speed;
77 //.float        style;
78 //.float        skill;
79 .float  sounds;
80
81 .string killtarget;
82
83 .vector pos1, pos2;
84 .vector mangle;
85
86 .float cvar_cl_hitsound;
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
152 // weapon animation vectors:
153 .vector anim_fire1;
154 .vector anim_fire2;
155 .vector anim_idle;
156 .vector anim_reload;
157
158 void() player_setupanimsformodel;
159 void setanim(entity e, vector anim, float looping, float override, float restart);
160
161 .string mdl;
162
163 .string playermodel;
164 .string playerskin;
165
166 .float  respawntime;
167 //.float        chasecam;
168
169 .float  damageforcescale;
170
171 //.float          gravity;
172
173 .float          dmg;
174
175 // for railgun damage (hitting multiple enemies)
176 .float railgunhit;
177 .float railgunhitsolidbackup;
178 .vector railgunhitloc;
179
180 .float          air_finished;
181 .float          dmgtime;
182
183 .float          killcount;
184 .float hitsound, typehitsound;
185
186 .float watersound_finished;
187 .float iscreature;
188 .vector oldvelocity;
189
190 .float pauseregen_finished;
191 .float pauserothealth_finished;
192 .float pauserotarmor_finished;
193 .float pauserotfuel_finished;
194 .string item_pickupsound;
195
196 // definitions for weaponsystem
197
198 .entity weaponentity;
199 .entity exteriorweaponentity;
200 .float switchweapon;
201 .float autoswitch;
202 float weapon_action(float wpn, float wrequest);
203 float client_hasweapon(entity cl, float wpn, float andammo, float complain);
204 void w_clear();
205 void w_ready();
206 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
207 .float weapon_nextthink;
208 .void() weapon_think;
209
210 //float PLAYER_WEAPONSELECTION_DELAY = );
211 float   PLAYER_WEAPONSELECTION_SPEED = 18;
212 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
213
214 // weapon states (self.weaponentity.state)
215 float WS_CLEAR                  = 0; // no weapon selected
216 float WS_RAISE                  = 1; // raise frame
217 float WS_DROP                   = 2; // deselecting frame
218 float WS_INUSE                  = 3; // fire state
219 float WS_READY                  = 4; // idle frame
220
221 // weapon requests
222 float WR_SETUP              = 1; // setup weapon data
223 float WR_THINK              = 2; // logic to run every frame
224 float WR_CHECKAMMO1         = 3; // checks ammo for weapon
225 float WR_CHECKAMMO2         = 4; // checks ammo for weapon
226 float WR_AIM                = 5; // runs bot aiming code for this weapon
227 float WR_PRECACHE           = 6; // precaches models/sounds used by this weapon
228 float WR_SUICIDEMESSAGE = 7; // sets w_deathtypestring or leaves it alone (and may inspect w_deathtype for details)
229 float WR_KILLMESSAGE    = 8; // sets w_deathtypestring or leaves it alone
230 float WR_RELOAD         = 9; // does not need to do anything
231
232 void weapon_defaultspawnfunc(float wpn);
233
234 string w_deathtypestring;
235 float w_deathtype;
236
237 void(entity client, string s) centerprint_builtin = #73;
238 .vector dest1, dest2;
239
240 float gameover;
241 float intermission_running;
242 float intermission_exittime;
243 float alreadychangedlevel;
244
245
246 .float runes;
247
248
249 .float welcomemessage_time;
250 .float version;
251
252 // Laser target for laser-guided weapons
253 .entity lasertarget;
254 .float laser_on;
255
256 // minstagib vars
257 .float jump_interval;    // laser refire
258
259 //swamp
260 .float in_swamp;              // bool
261 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
262
263 // footstep interval
264 .float nextstep;
265
266 .float ready;
267 #define RESTART_COUNTDOWN 10
268 float restart_mapalreadyrestarted; //bool, indicates whether reset_map() was already executed
269 entity restartTimer;
270 void restartTimer_Think();
271 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
272 .float spectatortime; //point in time since the client is spectating or observing
273 void checkSpectatorBlock();
274
275 .float winning;
276 .float jointime;
277
278 float isJoinAllowed();
279 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
280
281 //sv_timeout: pauses the game by setting the gamespeed to a really low value (see TIMEOUT_SLOWMO_VALUE)
282 #define TIMEOUT_SLOWMO_VALUE 0.0001
283 float sys_ticrate; // gets initialised in worlspawn, saves the value from cvar("sys_ticrate")
284 float remainingTimeoutTime; // contains the time in seconds that the active timeout has left
285 float remainingLeadTime; // contains the number of seconds left of the leadtime (before the timeout starts)
286 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)
287 .float allowedTimeouts; // contains the number of allowed timeouts for each player
288 entity timeoutInitiator; // contains the entity of the player who started the last timeout
289 float orig_slowmo; // contains the value of cvar("slowmo") so that, after timeout finished, it isn't set to slowmo 1 necessarily
290 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
291 entity timeoutHandler; //responsible for centerprinting the timeout countdowns and playing sounds
292 void timeoutHandler_Think();
293 void evaluateTimeout();
294 void evaluateTimein();
295 string getTimeoutText(float addOneSecond);
296
297 .float spawnshieldtime;
298
299 .float lms_nextcheck;
300 .float lms_traveled_distance;
301
302 .entity flagcarried;
303
304 .entity lastrocket;
305
306 .float playerid;
307 float playerid_last;
308 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
309
310 .vector spawnorigin;
311
312 .vector death_origin;
313 .vector killer_origin;
314
315 float default_player_alpha;
316 float default_weapon_alpha;
317
318 .float() customizeentityforclient;
319 .float cvar_cl_handicap;
320 .float cvar_cl_playerdetailreduction;
321 .float cvar_scr_centertime;
322 .float cvar_cl_shownames;
323 .string cvar_g_nexuizversion;
324 .string cvar_cl_weaponpriority;
325 .string cvar_cl_weaponpriorities[10];
326
327 .float version_nagtime;
328
329 .float modelindex_lod0;
330 #ifdef ALLOW_VARIABLE_LOD
331 .float modelindex_lod1;
332 .float modelindex_lod2;
333 #endif
334
335 #define NUM_JUMPPADSUSED 3
336 .float jumppadcount;
337 .entity jumppadsused[NUM_JUMPPADSUSED];
338
339 string gamemode_name;
340 float teams_matter;
341
342 float startitem_failed;
343
344 void DropFlag(entity flag, entity penalty_receiver, entity attacker);
345 void DropBall(entity ball, vector org, vector vel);
346 void DropAllRunes(entity pl);
347
348
349 typedef .float floatfield;
350 floatfield Item_CounterField(float it);
351
352 float W_AmmoItemCode(float wpn);
353 float W_WeaponBit(float wpn);
354 string W_Name(float weaponid);
355
356 void UpdateSelectedPlayer();
357 void ClearSelectedPlayer();
358 .entity selected_player;
359 .entity last_selected_player;
360 .float selected_player_time; // when this player has been selected
361 .float selected_player_count; // how long this player has been directly pointed to
362 .float selected_player_display_needs_update; // are regular updates necessary? (health)
363 .float selected_player_display_timeout; // when the selection will time out
364
365 void FixIntermissionClient(entity e);
366 void FixClientCvars(entity e);
367
368 float weaponsInMap;
369
370 void centerprint_atprio(entity e, float prio, string s);
371 void centerprint_expire(entity e, float prio);
372 void centerprint(entity e, string s);
373
374 .float respawn_countdown; // next number to count
375
376 float bot_waypoints_for_items;
377
378 .float  attack_finished_for[WEP_COUNT];
379 .float attack_finished_single;
380 #ifdef INDEPENDENT_ATTACK_FINISHED
381 #define ATTACK_FINISHED(ent) ((ent).(attack_finished_for[(ent).weapon]))
382 #else
383 #define ATTACK_FINISHED(ent) ((ent).attack_finished_single)
384 #endif
385
386 // assault game mode: Which team is attacking in this round?
387 float assault_attacker_team;
388
389 // speedrun: when 1, player auto teleports back when capture timeout happens
390 .float speedrunning;
391
392 // Q3 support
393 .float notteam;
394 .float notsingle;
395 .float notfree;
396 .float notq3a;
397 float q3acompat_machineshotgunswap;
398
399 // database
400 float ServerProgsDB;
401 float TemporaryDB;
402
403 .float team_saved;
404
405 float some_spawn_has_been_used;
406 float have_team_spawns;
407
408 // set when showing a kill countdown
409 .entity killindicator;
410 .float killindicator_teamchange;
411
412 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
413
414 float lockteams;
415
416 .float parm_idlesince;
417 float sv_maxidle;
418 float sv_maxidle_spectatorsareidle;
419
420 float sv_pogostick;
421 float sv_doublejump;
422 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
423
424 float next_pingtime;
425
426 .float Version;
427 .float SendFlags;
428 .float(entity to, float sendflags) SendEntity;
429
430 // player sounds, voice messages
431 // TODO implemented fall and falling
432 #define ALLPLAYERSOUNDS \
433                 _VOICEMSG(death) \
434                 _VOICEMSG(drown) \
435                 _VOICEMSG(gasp) \
436                 _VOICEMSG(jump) \
437                 _VOICEMSG(pain25) \
438                 _VOICEMSG(pain50) \
439                 _VOICEMSG(pain75) \
440                 _VOICEMSG(pain100)
441 #define ALLVOICEMSGS \
442                 _VOICEMSG(attack) \
443                 _VOICEMSG(attackinfive) \
444                 _VOICEMSG(meet) \
445                 _VOICEMSG(seenflag) \
446                 _VOICEMSG(taunt) \
447                 _VOICEMSG(teamshoot)
448
449 #define _VOICEMSG(m) .string playersound_##m;
450 ALLPLAYERSOUNDS
451 ALLVOICEMSGS
452 #undef _VOICEMSG
453
454 // reserved sound names for the future (models lack sounds for them):
455 //              _VOICEMSG(affirmative) \
456 //              _VOICEMSG(attacking) \
457 //              _VOICEMSG(defending) \
458 //              _VOICEMSG(roaming) \
459 //              _VOICEMSG(onmyway) \
460 //              _VOICEMSG(droppedflag) \
461 //              _VOICEMSG(flagcarriertakingdamage) \
462 //              _VOICEMSG(negative) \
463 //              _VOICEMSG(seenenemy) \
464 //              _VOICEMSG(fall) \
465 //              _VOICEMSG(getflag) \
466 //              _VOICEMSG(incoming) \
467 //              _VOICEMSG(coverme) \
468 //              _VOICEMSG(needhelp) \
469 //              _VOICEMSG(defend) \
470 //              _VOICEMSG(freelance) \
471 //              _VOICEMSG(falling) \
472
473 string globalsound_fall;
474 string globalsound_metalfall;
475 string globalsound_step;
476 string globalsound_metalstep;
477
478 #define VOICETYPE_PLAYERSOUND 10
479 #define VOICETYPE_TEAMRADIO 11
480 #define VOICETYPE_LASTATTACKER 12
481 #define VOICETYPE_LASTATTACKER_ONLY 13
482 #define VOICETYPE_AUTOTAUNT 14
483 #define VOICETYPE_TAUNT 15
484
485 void PrecachePlayerSounds(string f);
486 void PrecacheGlobalSound(string samplestring);
487 void UpdatePlayerSounds();
488 void ClearPlayerSounds();
489 void PlayerSound(.string samplefield, float channel, float voicetype);
490 void GlobalSound(string samplestring, float channel, float voicetype);
491 void VoiceMessage(string type, string message);
492
493 // autotaunt system
494 .float cvar_cl_autotaunt;
495 .float cvar_cl_voice_directional;
496 .float cvar_cl_voice_directional_taunt_attenuation;
497
498 .float version_mismatch;
499
500 float independent_players;
501 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
502 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
503 // we're using + here instead of , because fteqcc sucks
504
505 string clientstuff;
506 .float stat_sys_ticrate;
507 .float phase;
508 .float weapons;
509 .float pressedkeys;
510
511 .float porto_forbidden;
512
513 .string fog;
514
515 string cvar_changes;
516
517 float game_starttime; //point in time when the countdown is over
518 .float stat_game_starttime;
519
520 void W_Porto_Remove (entity p);
521
522 .float projectiledeathtype;
523
524 .string message2;
525
526 vector railgun_start, railgun_end; // filled by FireRailgunBullet, used by damage code for head shot
527 .float stat_allow_oldnexbeam;
528
529 // reset to 0 on weapon switch
530 // may be useful to all weapons
531 .float bulletcounter;
532
533 void target_voicescript_next(entity pl);
534 void target_voicescript_clear(entity pl);
535
536 .string target2;
537 .string target3;
538 .string target4;
539 .float trigger_reverse;
540
541 // Nexball
542 .entity ballcarried;
543 .float metertime;
544 float g_nexball_meter_period;
545
546 void SUB_DontUseTargets();
547 void SUB_UseTargets();
548
549 .void() reset; // if set, an entity is reset using this
550 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
551
552 void ClientData_Touch(entity e);
553
554 vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
555
556 // the QC VM sucks
557 #define BITXOR(v,b)        ((v) + (b) - 2 * ((v) & (b)))
558 #define BITXOR_ASSIGN(v,b) ((v) += ((b) - 2 * ((v) & (b))))
559
560 .float wasplayer;
561
562 float servertime, serverprevtime, serverframetime;
563
564 void Drag_MoveDrag(entity from, entity to);
565
566 .entity soundentity;
567
568 .float ammo_fuel;
569
570 .vector prevorigin;