]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/defs.qh
Give jetpack a button
[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 #define BUTTON_JETPACK    button10
17
18 // Globals
19
20 float g_cloaked, g_footsteps, g_grappling_hook, g_instagib;
21 float g_warmup_limit;
22 float g_warmup_allguns;
23 float g_warmup_allow_timeout;
24 float warmup_stage;
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_foginterval;
43
44 entity  activator;
45
46 float player_count;
47 float currentbots;
48 float bots_would_leave;
49
50 void UpdateFrags(entity player, float f);
51 .float totalfrags;
52
53 float team1_score, team2_score, team3_score, team4_score;
54
55 float maxclients;
56
57 // flag set on worldspawn so that the code knows if it is dedicated or not
58 float server_is_dedicated;
59
60 // Fields
61
62 .void(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force) event_damage;
63
64 //.string       wad;
65 //.string       map;
66
67 //.float        worldtype;
68 .float  delay;
69 .float  wait;
70 .float  lip;
71 //.float        light_lev;
72 .float  speed;
73 //.float        style;
74 //.float        skill;
75 .float  sounds;
76 .string  platmovetype;
77 .float platmovetype_start, platmovetype_end;
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  crouch; // Crouching or not?
87
88 .float  strength_finished;
89 .float  invincible_finished;
90 .float  superweapons_finished;
91
92 .vector         finaldest, finalangle;          //plat.qc stuff
93 .void()         think1;
94 .float state;
95 .float          t_length, t_width;
96
97 .vector destvec;                // for rain
98 .vector destvec2;               // for train
99 .float cnt;             // for rain
100 .float count;
101 //.float cnt2;
102
103 .float play_time;
104 .float respawn_flags;
105 .float respawn_time;
106 .float respawn_time_max;
107 .float death_time;
108 .float fade_time;
109 .float fade_rate;
110
111 // player animation state
112 .float animstate_startframe;
113 .float animstate_numframes;
114 .float animstate_framerate;
115 .float animstate_starttime;
116 .float animstate_endtime;
117 .float animstate_override;
118 .float animstate_looping;
119
120 // weapon animation vectors:
121 .vector anim_fire1;
122 .vector anim_fire2;
123 .vector anim_idle;
124 .vector anim_reload;
125
126 void() player_setupanimsformodel;
127 void setanim(entity e, vector anim, float looping, float override, float restart);
128
129 .string mdl;
130
131 .string playermodel;
132 .string playerskin;
133
134 .float species;
135
136 .float  respawntime;
137 .float  respawntimejitter;
138 //.float        chasecam;
139
140 .float  damageforcescale;
141 #define MIN_DAMAGEEXTRARADIUS 2
142 #define MAX_DAMAGEEXTRARADIUS 16
143 .float damageextraradius;
144
145 //.float          gravity;
146
147 .float          dmg;
148
149 // for railgun damage (hitting multiple enemies)
150 .float railgunhit;
151 .float railgunhitsolidbackup;
152 .vector railgunhitloc;
153
154 .float          air_finished;
155 .float          dmgtime;
156
157 .float          killcount;
158 .float damage_dealt, typehitsound;
159
160 .float watersound_finished;
161 .float iscreature;
162 .float damagedbycontents;
163 .float damagedbytriggers;
164 .float pushable;
165 .float teleportable;
166 .vector oldvelocity;
167
168 .float pauseregen_finished;
169 .float pauserothealth_finished;
170 .float pauserotarmor_finished;
171 .float pauserotfuel_finished;
172 .string item_pickupsound;
173
174 // definitions for weaponsystem
175 // more WEAPONTODO: move these to their proper files
176 .entity weaponentity;
177 .entity exteriorweaponentity;
178 .vector weaponentity_glowmod;
179
180 //.float weapon; // current weapon
181 .float switchweapon; // weapon requested to switch to
182 .float switchingweapon; // weapon currently being switched to (is copied from switchweapon once switch is possible)
183 .string weaponname; // name of .weapon
184
185 // WEAPONTODO
186 .float autoswitch;
187 //float WEP_ACTION(float wpn, float wrequest);
188 float client_hasweapon(entity cl, float wpn, float andammo, float complain);
189 void w_clear();
190 void w_ready();
191 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
192 .float weapon_nextthink;
193 .void() weapon_think;
194
195
196 // weapon states (self.weaponentity.state)
197 const float WS_CLEAR                    = 0; // no weapon selected
198 const float WS_RAISE                    = 1; // raise frame
199 const float WS_DROP                     = 2; // deselecting frame
200 const float WS_INUSE                    = 3; // fire state
201 const float WS_READY                    = 4; // idle frame
202
203 // there is 2 weapon tics that can run in one server frame
204 #define W_TICSPERFRAME 2
205
206 void weapon_defaultspawnfunc(float wpn);
207
208 .vector dest1, dest2;
209
210 float gameover;
211 float intermission_running;
212 float intermission_exittime;
213 float alreadychangedlevel;
214
215 // Keys player is holding
216 .float itemkeys;
217 // message delay for func_door locked by keys and key locks
218 // this field is used on player entities
219 .float key_door_messagetime;
220
221
222 .float version;
223
224 //swamp
225 .float in_swamp;              // bool
226 .entity swampslug;            // Uses this to release from swamp ("untouch" fix)
227
228 // footstep interval
229 .float nextstep;
230
231 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
232 .float spectatortime; //point in time since the client is spectating or observing
233 void checkSpectatorBlock();
234
235 float game_completion_ratio; // 0 at start, 1 near end
236 .float winning;
237 .float jointime; // time of joining
238 .float alivetime; // time of being alive
239 .float motd_actived_time; // used for both motd and campaign_message
240
241 float nJoinAllowed(entity ignore);
242
243 .float spawnshieldtime;
244 .float item_spawnshieldtime;
245
246 .entity flagcarried;
247
248 .float playerid;
249 float playerid_last;
250 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
251
252 .vector spawnorigin;
253
254 .vector death_origin;
255 .vector killer_origin;
256
257 float default_player_alpha;
258 float default_weapon_alpha;
259
260 .float() customizeentityforclient;
261 .float cvar_cl_handicap;
262 .float cvar_cl_clippedspectating;
263 .float cvar_cl_autoscreenshot;
264 .float cvar_cl_movement_track_canjump;
265 .float cvar_cl_newusekeysupported;
266
267 .string cvar_g_xonoticversion;
268 .string cvar_cl_weaponpriority;
269 .string cvar_cl_weaponpriorities[10];
270 .float cvar_cl_gunalign;
271 .float cvar_cl_noantilag;
272
273 .string weaponorder_byimpulse;
274
275 .float cvar_cl_allow_uid2name;
276 .float cvar_cl_allow_uidtracking;
277 .string stored_netname;
278
279 .float version_nagtime;
280
281 #define NUM_JUMPPADSUSED 3
282 .float jumppadcount;
283 .entity jumppadsused[NUM_JUMPPADSUSED];
284
285 string gamemode_name;
286
287 float startitem_failed;
288
289 string W_Apply_Weaponreplace(string in);
290
291 void FixIntermissionClient(entity e);
292 void FixClientCvars(entity e);
293
294 // WEAPONTODO: remove this
295 WepSet weaponsInMap;
296
297 .float respawn_countdown; // next number to count
298
299 float bot_waypoints_for_items;
300
301 .float attack_finished_for[WEP_MAXCOUNT];
302 .float attack_finished_single;
303 #ifdef INDEPENDENT_ATTACK_FINISHED
304 #define ATTACK_FINISHED_FOR(ent,w) ((ent).(attack_finished_for[(w) - WEP_FIRST]))
305 #else
306 #define ATTACK_FINISHED_FOR(ent,w) ((ent).attack_finished_single)
307 #endif
308 #define ATTACK_FINISHED(ent) ATTACK_FINISHED_FOR(ent,(ent).weapon)
309
310 // assault game mode: Which team is attacking in this round?
311 float assault_attacker_team;
312
313 // speedrun: when 1, player auto teleports back when capture timeout happens
314 .float speedrunning;
315
316 // database
317 float ServerProgsDB;
318 float TemporaryDB;
319
320 .float team_saved;
321
322 float some_spawn_has_been_used;
323 float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found
324 float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team"
325
326 // set when showing a kill countdown
327 .entity killindicator;
328 .float killindicator_teamchange;
329
330 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force);
331
332 float lockteams;
333
334 .float parm_idlesince;
335 float sv_maxidle;
336 float sv_maxidle_spectatorsareidle;
337
338 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
339
340 float next_pingtime;
341
342 .float Version;
343 .float SendFlags;
344 .float(entity to, float sendflags) SendEntity;
345
346 // player sounds, voice messages
347 // TODO implemented fall and falling
348 #define ALLPLAYERSOUNDS \
349                 _VOICEMSG(death) \
350                 _VOICEMSG(drown) \
351                 _VOICEMSG(fall) \
352                 _VOICEMSG(falling) \
353                 _VOICEMSG(gasp) \
354                 _VOICEMSG(jump) \
355                 _VOICEMSG(pain100) \
356                 _VOICEMSG(pain25) \
357                 _VOICEMSG(pain50) \
358                 _VOICEMSG(pain75)
359
360 #define ALLVOICEMSGS \
361                 _VOICEMSG(attack) \
362                 _VOICEMSG(attackinfive) \
363                 _VOICEMSG(coverme) \
364                 _VOICEMSG(defend) \
365                 _VOICEMSG(freelance) \
366                 _VOICEMSG(incoming) \
367                 _VOICEMSG(meet) \
368                 _VOICEMSG(needhelp) \
369                 _VOICEMSG(seenflag) \
370                 _VOICEMSG(taunt) \
371                 _VOICEMSG(teamshoot)
372
373 #define _VOICEMSG(m) .string playersound_##m;
374 ALLPLAYERSOUNDS
375 ALLVOICEMSGS
376 #undef _VOICEMSG
377
378 // reserved sound names for the future (some models lack sounds for them):
379 //              _VOICEMSG(flagcarriertakingdamage) \
380 //              _VOICEMSG(getflag) \
381 // reserved sound names for the future (ALL models lack sounds for them):
382 //              _VOICEMSG(affirmative) \
383 //              _VOICEMSG(attacking) \
384 //              _VOICEMSG(defending) \
385 //              _VOICEMSG(roaming) \
386 //              _VOICEMSG(onmyway) \
387 //              _VOICEMSG(droppedflag) \
388 //              _VOICEMSG(negative) \
389 //              _VOICEMSG(seenenemy) \
390
391 string globalsound_fall;
392 string globalsound_metalfall;
393 string globalsound_step;
394 string globalsound_metalstep;
395
396 #define VOICETYPE_PLAYERSOUND 10
397 #define VOICETYPE_TEAMRADIO 11
398 #define VOICETYPE_LASTATTACKER 12
399 #define VOICETYPE_LASTATTACKER_ONLY 13
400 #define VOICETYPE_AUTOTAUNT 14
401 #define VOICETYPE_TAUNT 15
402
403 void PrecachePlayerSounds(string f);
404 void PrecacheGlobalSound(string samplestring);
405 void UpdatePlayerSounds();
406 void ClearPlayerSounds();
407 void PlayerSound(.string samplefield, float channel, float voicetype);
408 void GlobalSound(string samplestring, float channel, float voicetype);
409 void FakeGlobalSound(string samplestring, float channel, float voicetype);
410 void VoiceMessage(string type, string message);
411 float GetPlayerSoundSampleField_notFound;
412 .string GetVoiceMessageSampleField(string type);
413
414 // autotaunt system
415 .float cvar_cl_autotaunt;
416 .float cvar_cl_voice_directional;
417 .float cvar_cl_voice_directional_taunt_attenuation;
418
419 .float version_mismatch;
420
421 float independent_players;
422 #define INDEPENDENT_PLAYERS (autocvar__independent_players ? (autocvar__independent_players > 0) : independent_players)
423 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
424 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER) + ((e).frags = FRAGS_PLAYER_NONSOLID))
425 // we're using + here instead of , because fteqcc sucks
426
427 string clientstuff;
428 .float phase;
429 .float pressedkeys;
430
431 .float porto_forbidden;
432
433 .string fog;
434
435 string cvar_changes;
436 string cvar_purechanges;
437 float cvar_purechanges_count;
438
439 float game_starttime; //point in time when the countdown to game start is over
440 float round_starttime; //point in time when the countdown to round start is over
441 .float stat_game_starttime;
442 .float stat_round_starttime;
443
444 .float stat_sv_airaccel_qw;
445 .float stat_sv_airstrafeaccel_qw;
446 .float stat_sv_airspeedlimit_nonqw;
447 .float stat_sv_maxspeed;
448
449 void W_Porto_Remove (entity p);
450
451 .float projectiledeathtype;
452
453 .string message2;
454
455 .float stat_allow_oldvortexbeam;
456
457 // reset to 0 on weapon switch
458 // may be useful to all weapons
459 .float bulletcounter;
460
461 void target_voicescript_next(entity pl);
462 void target_voicescript_clear(entity pl);
463
464 .string target2;
465 .string target3;
466 .string target4;
467 .string curvetarget;
468 .float target_random;
469 .float trigger_reverse;
470
471 // Nexball
472 .entity ballcarried; // Also used for keepaway
473 .float metertime;
474 float g_nexball_meter_period;
475
476 void SUB_DontUseTargets();
477 void SUB_UseTargets();
478
479 .void() reset; // if set, an entity is reset using this
480 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
481
482 void ClientData_Touch(entity e);
483
484 //vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
485
486 .float wasplayer;
487
488 float servertime, serverprevtime, serverframetime;
489
490 .float ammo_fuel;
491
492 .vector prevorigin;
493
494 //flood fields
495 .float nickspamtime; // time of last nick change
496 .float nickspamcount;
497 .float floodcontrol_chat;
498 .float floodcontrol_chatteam;
499 .float floodcontrol_chattell;
500 .float floodcontrol_voice;
501 .float floodcontrol_voiceteam;
502
503 .float stat_shotorg; // networked stat for trueaim HUD
504
505 string matchid;
506
507 .float last_pickup;
508
509 .float hit_time;
510 .float typehit_time;
511
512 .float damage_dealt_total; 
513
514 .float stat_leadlimit;
515
516 float radar_showennemies;
517
518 #ifdef PROFILING
519 float client_cefc_accumulator;
520 float client_cefc_accumulatortime;
521 #endif
522
523 .float weapon_load[WEP_MAXCOUNT];
524 .float ammo_none; // used by the reloading system, must always be 0
525 .float clip_load;
526 .float old_clip_load;
527 .float clip_size;
528
529 .entity lastrocket;
530 .float minelayer_mines;
531 .float vortex_charge;
532 .float vortex_charge_rottime;
533 .float vortex_chargepool_ammo;
534 .float hagar_load;
535
536 .float grab; // 0 = can't grab, 1 = owner can grab, 2 = owner and team mates can grab, 3 = anyone can grab
537
538 #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_CORPSE; (e).dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE
539 // when doing this, hagar can go through clones
540 // #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_BBOX
541
542 .float spectatee_status;
543 .float zoomstate;
544 .float restriction;
545
546 .entity clientdata;
547 .entity personal;
548
549 string deathmessage;
550
551 .float just_joined;
552
553 .float cvar_cl_weaponimpulsemode;
554 .float selectweapon; // last selected weapon of the player
555
556 .float ballistics_density; // wall piercing factor, larger = bullet can pass through more
557
558 #define ACTIVE_NOT              0
559 #define ACTIVE_ACTIVE   1
560 #define ACTIVE_IDLE     2
561 #define ACTIVE_BUSY     2
562 #define ACTIVE_TOGGLE   3
563 .float active;
564 .void (float act_state) setactive;
565 .entity realowner;
566
567 float serverflags;
568
569 .float team_forced; // can be a team number to force a team, or 0 for default action, or -1 for forced spectator
570
571 .float player_blocked;
572
573 .float frozen; // for freeze attacks
574 .float revive_progress;
575 .float revival_time; // time at which player was last revived
576 .float revive_speed; // NOTE: multiplier (anything above 1 is instaheal)
577 .entity iceblock;
578 .entity frozen_by; // for ice fields
579
580 .entity muzzle_flash;
581 .float misc_bulletcounter;      // replaces uzi & hlac bullet counter.
582
583 .float stat_respawn_time; // shows respawn time, and is negative when awaiting respawn
584
585 void PlayerUseKey();
586
587 typedef vector(entity player, entity spot, vector current) spawn_evalfunc_t;
588 .spawn_evalfunc_t spawn_evalfunc;
589
590 .entity conveyor;
591
592 string modname;
593
594 .float missile_flags;
595 #define MIF_SPLASH 2
596 #define MIF_ARC 4
597 #define MIF_PROXY 8
598 #define MIF_GUIDED_MANUAL 16
599 #define MIF_GUIDED_HEAT 32
600 #define MIF_GUIDED_LASER 64
601 #define MIF_GUIDED_AI 128
602 #define MIF_GUIDED_TAG 128
603 #define MIF_GUIDED_ALL (MIF_GUIDED_MANUAL | MIF_GUIDED_HEAT | MIF_GUIDED_LASER | MIF_GUIDED_AI | MIF_GUIDED_TAG)
604 #define MIF_GUIDED_TRACKING (MIF_GUIDED_HEAT | MIF_GUIDED_LASER | MIF_GUIDED_AI | MIF_GUIDED_TAG)
605 #define MIF_GUIDED_CONFUSABLE (MIF_GUIDED_HEAT | MIF_GUIDED_AI)
606
607 #define MISSILE_IS_CONFUSABLE(m) ((m.missile_flags & MIF_GUIDED_CONFUSABLE) ? TRUE : FALSE)
608 #define MISSILE_IS_GUIDED(m) ((m.missile_flags & MIF_GUIDED_ALL) ? TRUE : FALSE)
609 #define MISSILE_IS_TRACKING(m) ((m.missile_flags & MIF_GUIDED_TRACKING) ? TRUE : FALSE)
610
611
612 ////
613
614 .entity player_stats;
615 //.float playerid;
616 .string playernick;
617 .float elos;
618 .float ranks;