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