]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/defs.qh
clean up voice message stuff a bit
[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
15 #define VOL_BASE 0.7
16
17 // Globals
18
19 float ctf_score_value(string parameter);
20
21 float g_dm, g_domination, g_ctf, g_tdm, g_keyhunt, g_onslaught, g_assault, g_arena, g_lms, g_runematch, g_race;
22 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_norecoil, g_vampire, g_minstagib_invis_alpha;
23 float g_warmup_limit;
24 float g_warmup_allguns;
25 float g_warmup_allow_timeout;
26 float g_ctf_win_mode;
27 float g_ctf_ignore_frags;
28 float g_ctf_reverse;
29 float g_race_qualifying;
30 float inWarmupStage;
31 float g_pickup_respawntime_short;
32 float g_pickup_respawntime_medium;
33 float g_pickup_respawntime_long;
34 float g_pickup_respawntime_powerup;
35 float g_maplist_allow_hidden;
36
37 float sv_clones;
38 float sv_cheats;
39 float sv_gentle;
40 float sv_foginterval;
41
42 entity  activator;
43 string  string_null;
44 const var void(void)    func_null;
45
46 float player_count;
47 float currentbots;
48 float bots_would_leave;
49 float lms_lowest_lives;
50 float lms_next_place;
51 float LMS_NewPlayerLives();
52
53 void UpdateFrags(entity player, float f);
54 .float totalfrags;
55
56 float team1_score, team2_score, team3_score, team4_score;
57
58 float maxclients;
59
60 #define NEWLINES "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
61
62 // Fields
63
64 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
65
66 //.string       wad;
67 //.string       map;
68
69 //.float        worldtype;
70 .float  delay;
71 .float  wait;
72 .float  lip;
73 //.float        light_lev;
74 .float  speed;
75 //.float        style;
76 //.float        skill;
77 .float  sounds;
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        speed_finished;
91 .float  invincible_finished;
92 //.float        slowmo_finished;
93
94 .vector         finaldest, finalangle;          //plat.qc stuff
95 .void()         think1;
96 .float state;
97 .float          t_length, t_width;
98
99 .vector destvec;                // for rain
100 .float cnt;             // for rain
101 .float count;
102 //.float cnt2;
103
104 .float play_time;
105 .float death_time;
106 .float dead_frame;
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
148 void() player_setupanimsformodel;
149 void player_setanim(vector anim, float looping, float override, float restart);
150
151 .string mdl;
152
153 .string playermodel;
154 .string playerskin;
155
156 .float  respawntime;
157 //.float        chasecam;
158
159 .float  damageforcescale;
160
161 //.float          gravity;
162
163 .float          dmg;
164
165 // for railgun damage (hitting multiple enemies)
166 .float railgunhit;
167 .float railgunhitsolidbackup;
168 .vector railgunhitloc;
169
170 .float          air_finished;
171 .float          dmgtime;
172
173 .float          killcount;
174 .float hitsound, typehitsound;
175
176 .float watersound_finished;
177 .float iscreature;
178 .vector oldvelocity;
179
180 .float pauseregen_finished;
181 .float pauserothealth_finished;
182 .float pauserotarmor_finished;
183 .string item_pickupsound;
184
185 // definitions for weaponsystem
186
187 .entity weaponentity;
188 .entity exteriorweaponentity;
189 .float switchweapon;
190 .float autoswitch;
191 float weapon_action(float wpn, float wrequest);
192 float client_hasweapon(entity cl, float wpn, float andammo, float complain);
193 void w_clear();
194 void w_ready();
195 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
196 .float weapon_nextthink;
197 .void() weapon_think;
198
199 //float PLAYER_WEAPONSELECTION_DELAY = );
200 float   PLAYER_WEAPONSELECTION_SPEED = 18;
201 vector  PLAYER_WEAPONSELECTION_RANGE = '0 20 -40';
202
203 // weapon states (self.weaponentity.state)
204 float WS_CLEAR                  = 0; // no weapon selected
205 float WS_RAISE                  = 1; // raise frame
206 float WS_DROP                   = 2; // deselecting frame
207 float WS_INUSE                  = 3; // fire state
208 float WS_READY                  = 4; // idle frame
209
210 // weapon requests
211 float WR_SETUP              = 1; // setup weapon data
212 float WR_THINK              = 2; // logic to run every frame
213 float WR_CHECKAMMO1         = 3; // checks ammo for weapon
214 float WR_CHECKAMMO2         = 4; // checks ammo for weapon
215 float WR_AIM                = 5; // runs bot aiming code for this weapon
216 float WR_PRECACHE           = 6; // precaches models/sounds used by this weapon
217 float WR_SUICIDEMESSAGE = 7; // sets w_deathtypestring or leaves it alone (and may inspect w_deathtype for details)
218 float WR_KILLMESSAGE    = 8; // sets w_deathtypestring or leaves it alone
219
220 void weapon_defaultspawnfunc(float wpn);
221
222 string w_deathtypestring;
223 float w_deathtype;
224
225 void(entity client, string s) centerprint_builtin = #73;
226 .vector dest1, dest2;
227
228 float gameover;
229 float intermission_running;
230 float intermission_exittime;
231 float alreadychangedlevel;
232
233
234 .float runes;
235
236
237 .float welcomemessage_time;
238 .float version;
239
240 // esteel's voting
241 float votecalled;
242 string votecalledvote;
243 string votecalledvote_display;
244 float votecalledmaster;
245 entity votecaller;
246 float votefinished;
247 .float vote_master;
248 .float vote_next;
249 .float vote_vote;
250 void VoteThink();
251 float VoteAllowed(string vote);
252 void VoteReset();
253 void VoteAccept();
254 void VoteReject();
255 void VoteTimeout();
256 void VoteStop(entity stopper);
257 void VoteCount();
258
259 // Laser target for laser-guided weapons
260 .entity lasertarget;
261 .float laser_on;
262
263 // minstagib vars
264 .float jump_interval;    // laser refire
265
266 //swamp
267 .float in_swamp;              // bool
268 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
269
270 // footstep interval
271 .float nextstep;
272
273 .float ready;
274 #define RESTART_COUNTDOWN 10
275 float restart_mapalreadyrestarted; //bool, indicates whether reset_map() was already executed
276 entity restartAnnouncer; //a temporary entity which will play the countdown sounds 3, 2, 1 for all clients, will also reset the map after the countdown
277 void restartAnnouncer_Think();
278 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
279 .float spectatortime; //point in time since the client is spectating or observing
280 void checkSpectatorBlock();
281
282 .float winning;
283 .float jointime;
284
285 float isJoinAllowed();
286 #define PREVENT_JOIN_TEXT "^1You may not join the game at this time.\n\nThe player limit reached maximum capacity."
287
288 //sv_timeout: pauses the game by setting the gamespeed to a really low value (see TIMEOUT_SLOWMO_VALUE)
289 #define TIMEOUT_SLOWMO_VALUE 0.0001
290 float sys_ticrate; // gets initialised in worlspawn, saves the value from cvar("sys_ticrate")
291 float remainingTimeoutTime; // contains the time in seconds that the active timeout has left
292 float remainingLeadTime; // contains the number of seconds left of the leadtime (before the timeout starts)
293 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)
294 .float allowedTimeouts; // contains the number of allowed timeouts for each player
295 entity timeoutInitiator; // contains the entity of the player who started the last timeout
296 float orig_slowmo; // contains the value of cvar("slowmo") so that, after timeout finished, it isn't set to slowmo 1 necessarily
297 .vector lastV_angle; //used when pausing the game in order to force the player to keep his old view angle fixed
298 entity timeoutHandler; //responsible for centerprinting the timeout countdowns and playing sounds
299 void timeoutHandler_Think();
300 void evaluateTimeoutCall();
301 void evaluateResumeGame();
302 string getTimeoutText(float addOneSecond);
303
304 .float spawnshieldtime;
305
306 .float lms_nextcheck;
307 .float lms_traveled_distance;
308
309 .entity flagcarried;
310
311 .entity lastrocket;
312
313 .float playerid;
314 float playerid_last;
315 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
316
317 .vector spawnorigin;
318
319 .vector death_origin;
320 .vector killer_origin;
321
322 .float isdecor;
323
324 float default_player_alpha;
325 float default_weapon_alpha;
326
327 .float() customizeentityforclient;
328 .float cvar_cl_handicap;
329 .float cvar_cl_playerdetailreduction;
330 .float cvar_cl_nogibs;
331 .float cvar_scr_centertime;
332 .float cvar_cl_shownames;
333 .string cvar_g_nexuizversion;
334 .string cvar_cl_weaponpriority;
335 .string cvar_cl_weaponpriorities[10];
336
337 .float version_nagtime;
338
339 .float modelindex_lod0;
340 #ifdef ALLOW_VARIABLE_LOD
341 .float modelindex_lod1;
342 .float modelindex_lod2;
343 #endif
344
345 #define NUM_JUMPPADSUSED 3
346 .float jumppadcount;
347 .entity jumppadsused[NUM_JUMPPADSUSED];
348
349 string gamemode_name;
350 float teams_matter;
351
352 float startitem_failed;
353
354 void DropFlag(entity flag, entity penalty_receiver, entity attacker);
355 void DropAllRunes(entity pl);
356
357
358 typedef .float floatfield;
359 floatfield Item_CounterField(float it);
360
361 float W_AmmoItemCode(float wpn);
362 float W_WeaponBit(float wpn);
363 string W_Name(float weaponid);
364
365 void UpdateSelectedPlayer();
366 void ClearSelectedPlayer();
367 .entity selected_player;
368 .entity last_selected_player;
369 .float selected_player_time; // when this player has been selected
370 .float selected_player_count; // how long this player has been directly pointed to
371 .float selected_player_display_needs_update; // are regular updates necessary? (health)
372 .float selected_player_display_timeout; // when the selection will time out
373
374 void FixIntermissionClient(entity e);
375 void FixClientCvars(entity e);
376
377 float weaponsInMap;
378
379 void centerprint_atprio(entity e, float prio, string s);
380 void centerprint_expire(entity e, float prio);
381 void centerprint(entity e, string s);
382
383 .float respawn_countdown; // next number to count
384
385 float bot_waypoints_for_items;
386
387 .float  attack_finished_for[WEP_COUNT];
388 .float attack_finished_single;
389 #ifdef INDEPENDENT_ATTACK_FINISHED
390 #define ATTACK_FINISHED(ent) ((ent).(attack_finished_for[(ent).weapon]))
391 #else
392 #define ATTACK_FINISHED(ent) ((ent).attack_finished_single)
393 #endif
394
395 // assault game mode: Which team is attacking in this round?
396 float assault_attacker_team;
397
398 // speedrun: when 1, player auto teleports back when capture timeout happens
399 .float speedrunning;
400
401 // Q3 support
402 .float notteam;
403 .float notsingle;
404 .float notfree;
405 .float notq3a;
406 float q3acompat_machineshotgunswap;
407
408 // database
409 float ServerProgsDB;
410 float TemporaryDB;
411
412 .float team_saved;
413
414 float some_spawn_has_been_used;
415 float have_team_spawns;
416
417 // set when showing a kill countdown
418 .entity killindicator;
419 .float killindicator_teamchange;
420
421 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
422
423 float lockteams;
424
425 .float parm_idlesince;
426 float sv_maxidle;
427 float sv_maxidle_spectatorsareidle;
428
429 float sv_pogostick;
430 float sv_doublejump;
431 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
432
433 float next_pingtime;
434
435 .float Version;
436 .float SendFlags;
437 .float(entity to, float sendflags) SendEntity;
438
439 // player sounds, voice messages
440 // TODO implemented fall and falling
441 #define ALLPLAYERSOUNDS \
442                 _VOICEMSG(death) \
443                 _VOICEMSG(drown) \
444                 _VOICEMSG(fall) \
445                 _VOICEMSG(falling) \
446                 _VOICEMSG(gasp) \
447                 _VOICEMSG(jump) \
448                 _VOICEMSG(pain25) \
449                 _VOICEMSG(pain50) \
450                 _VOICEMSG(pain75) \
451                 _VOICEMSG(pain100)
452 #define ALLVOICEMSGS \
453                 _VOICEMSG(attack) \
454                 _VOICEMSG(attackinfive) \
455                 _VOICEMSG(coverme) \
456                 _VOICEMSG(defend) \
457                 _VOICEMSG(freelance) \
458                 _VOICEMSG(incoming) \
459                 _VOICEMSG(meet) \
460                 _VOICEMSG(needhelp) \
461                 _VOICEMSG(seenflag) \
462                 _VOICEMSG(taunt) \
463                 _VOICEMSG(teamshoot) \
464                 _VOICEMSG(attacking) \
465                 _VOICEMSG(defending) \
466                 _VOICEMSG(roaming) \
467                 _VOICEMSG(positive) \
468                 _VOICEMSG(negative) \
469                 _VOICEMSG(onmyway) \
470                 _VOICEMSG(seenenemy) \
471                 _VOICEMSG(getflag) \
472                 _VOICEMSG(droppedflag) \
473                 _VOICEMSG(getourflagback) \
474                 _VOICEMSG(flagcarriertakingdamage)
475 #define _VOICEMSG(m) .string playersound_##m;
476 ALLPLAYERSOUNDS
477 ALLVOICEMSGS
478 #undef _VOICEMSG
479 string globalsound_fall;
480 string globalsound_metalfall;
481 string globalsound_step;
482 string globalsound_metalstep;
483 void PrecachePlayerSounds(string f);
484 void PrecacheGlobalSound(string samplestring);
485 void UpdatePlayerSounds();
486 void ClearPlayerSounds();
487 void PlayerSound(.string samplefield, float channel, float teamsay); // 0 is normal, 1 is team, 2 is last attacker
488 void GlobalSound(string samplestring, float channel, float teamsay); // 0 is normal, 1 is team, 2 is last attacker
489 void VoiceMessage(string type);
490
491 .float version_mismatch;
492
493 float independent_players;
494 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
495 #define MAKE_INDEPENDENT_PLAYER(e) ((e).solid = SOLID_TRIGGER)
496
497 string clientstuff;
498 .float stat_sys_ticrate;
499 .float phase;
500 .float weapons;
501
502 .float porto_forbidden;
503
504 .string fog;
505
506 string cvar_changes;
507
508 float game_starttime; //point in time when the countdown is over
509 .float stat_game_starttime;
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
519 // reset to 0 on weapon switch
520 // may be useful to all weapons
521 .float bulletcounter;