]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/defs.qh
1674f6d1daba7ee170d05fbcb0cbb03b5478b7df
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / defs.qh
1 #ifndef SERVER_DEFS_H
2 #define SERVER_DEFS_H
3
4 #include "../common/weapons/all.qh"
5 #include "../common/stats.qh"
6
7 #define INDEPENDENT_ATTACK_FINISHED 1
8
9 #define BUTTON_ATCK       button0
10 #define BUTTON_JUMP       button2
11 #define BUTTON_ATCK2      button3
12 #define BUTTON_ZOOM       button4
13 #define BUTTON_CROUCH     button5
14 #define BUTTON_HOOK       button6
15 #define BUTTON_INFO       button7
16 #define BUTTON_CHAT       buttonchat
17 #define BUTTON_USE        buttonuse
18 #define BUTTON_DRAG       button8
19 #define BUTTON_ZOOMSCRIPT button9
20 #define BUTTON_JETPACK    button10
21
22 // Globals
23
24 float g_footsteps, g_grappling_hook, g_instagib;
25 float g_warmup_limit;
26 float g_warmup_allguns;
27 float g_warmup_allow_timeout;
28 float warmup_stage;
29 PROPERTY(float, g_pickup_respawntime_weapon)
30 PROPERTY(float, g_pickup_respawntime_superweapon)
31 PROPERTY(float, g_pickup_respawntime_ammo)
32 PROPERTY(float, g_pickup_respawntime_short)
33 PROPERTY(float, g_pickup_respawntime_medium)
34 PROPERTY(float, g_pickup_respawntime_long)
35 PROPERTY(float, g_pickup_respawntime_powerup)
36 PROPERTY(float, g_pickup_respawntimejitter_weapon)
37 PROPERTY(float, g_pickup_respawntimejitter_superweapon)
38 PROPERTY(float, g_pickup_respawntimejitter_ammo)
39 PROPERTY(float, g_pickup_respawntimejitter_short)
40 PROPERTY(float, g_pickup_respawntimejitter_medium)
41 PROPERTY(float, g_pickup_respawntimejitter_long)
42 PROPERTY(float, g_pickup_respawntimejitter_powerup)
43 float g_jetpack;
44
45 float sv_clones;
46 float sv_foginterval;
47
48 float player_count;
49 float currentbots;
50 float bots_would_leave;
51
52 void UpdateFrags(entity player, float f);
53 .float totalfrags;
54
55 float team1_score, team2_score, team3_score, team4_score;
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, int deathtype, vector hitloc, vector force) event_damage;
63
64 //.string       wad;
65 //.string       map;
66
67 //.float        worldtype;
68 // Needed for dynamic clientwalls
69 .float inactive; // Clientwall disappears when inactive
70 .float alpha_max, alpha_min;
71 .float fade_start, fade_end, fade_vertical_offset;
72 .float default_solid; // Variable to store default self.solid for clientwalls
73
74 .float  pain_finished;                  //Added by Supajoe
75 .float  pain_frame;                     //"
76 .float  crouch; // Crouching or not?
77
78 .float  strength_finished = _STAT(STRENGTH_FINISHED);
79 .float  invincible_finished = _STAT(INVINCIBLE_FINISHED);
80 .float  superweapons_finished = _STAT(SUPERWEAPONS_FINISHED);
81
82 .float cnt; // used in too many places
83 .float count;
84 //.float cnt2;
85
86 .float play_time;
87 .int respawn_flags;
88 .float respawn_time;
89 .float respawn_time_max;
90 .float death_time;
91 .float fade_time;
92 .float fade_rate;
93
94 void() player_setupanimsformodel;
95
96 .string mdl;
97
98 .string playermodel;
99 .string playerskin;
100
101 .float species;
102
103 .float  scheduledrespawntime;
104 .float  respawntime;
105 .float  respawntimejitter;
106 //.float        chasecam;
107
108 .float  damageforcescale;
109 const float MIN_DAMAGEEXTRARADIUS = 2;
110 const float MAX_DAMAGEEXTRARADIUS = 16;
111 .float damageextraradius;
112
113 //.float          gravity;
114
115 .float          dmg;
116
117 // for railgun damage (hitting multiple enemies)
118 .float railgunhit;
119 .float railgunhitsolidbackup;
120 .vector railgunhitloc;
121
122 .float          air_finished;
123 .float          dmgtime;
124
125 .float          killcount;
126 .float damage_dealt, typehitsound;
127
128 .float watersound_finished;
129 .float iscreature;
130 .float damagedbycontents;
131 .float damagedbytriggers;
132 .float pushable;
133 .float teleportable;
134 .vector oldvelocity;
135
136 .float pauseregen_finished;
137 .float pauserothealth_finished;
138 .float pauserotarmor_finished;
139 .float pauserotfuel_finished;
140 // string overrides entity
141 .string item_pickupsound;
142 .entity item_pickupsound_ent;
143 .entity item_model_ent;
144
145 // WEAPONTODO
146 .float autoswitch;
147 bool client_hasweapon(entity cl, Weapon wpn, float andammo, bool complain);
148 void w_clear(Weapon thiswep, entity actor, .entity weaponentity, int fire);
149 void w_ready(Weapon thiswep, entity actor, .entity weaponentity, int fire);
150 // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies)
151 .float weapon_nextthink;
152 .void(Weapon thiswep, entity actor, .entity weaponentity, int fire) weapon_think;
153
154
155 // there is 2 weapon tics that can run in one server frame
156 const int W_TICSPERFRAME = 2;
157
158 void weapon_defaultspawnfunc(entity this, Weapon e);
159
160 float gameover;
161 float intermission_running;
162 float intermission_exittime;
163 float alreadychangedlevel;
164
165 .float version;
166
167 // footstep interval
168 .float nextstep;
169
170 float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds
171 .float spectatortime; //point in time since the client is spectating or observing
172 void checkSpectatorBlock();
173
174 float game_completion_ratio; // 0 at start, 1 near end
175 .float winning;
176 .float jointime; // time of joining
177 .float alivetime; // time of being alive
178 .float motd_actived_time; // used for both motd and campaign_message
179
180 float nJoinAllowed(entity ignore);
181
182 .float spawnshieldtime;
183 .float item_spawnshieldtime;
184
185 .entity flagcarried;
186
187 .int playerid;
188 float playerid_last;
189 .float noalign;         // if set to 1, the item or spawnpoint won't be dropped to the floor
190
191 .vector death_origin;
192 .vector killer_origin;
193
194 float default_player_alpha;
195 float default_weapon_alpha;
196
197 .float() customizeentityforclient;
198 .float cvar_cl_handicap;
199 .float cvar_cl_clippedspectating;
200 .float cvar_cl_autoscreenshot;
201 .float cvar_cl_jetpack_jump;
202 .float cvar_cl_movement_track_canjump = _STAT(MOVEVARS_CL_TRACK_CANJUMP);
203 .float cvar_cl_newusekeysupported;
204
205 .string cvar_g_xonoticversion;
206 .string cvar_cl_weaponpriority;
207 .string cvar_cl_weaponpriorities[10];
208 .float cvar_cl_noantilag;
209
210 .string weaponorder_byimpulse;
211
212 .float cvar_cl_allow_uid2name;
213 .float cvar_cl_allow_uidtracking;
214 .string stored_netname;
215
216 .float version_nagtime;
217
218 string gamemode_name;
219
220 float startitem_failed;
221
222 string W_Apply_Weaponreplace(string in);
223
224 void FixIntermissionClient(entity e);
225 void FixClientCvars(entity e);
226
227 // WEAPONTODO: remove this
228 WepSet weaponsInMap;
229
230 #define weapons _STAT(WEAPONS)
231 #define weaponsinmap _STAT(WEAPONSINMAP)
232
233 .float respawn_countdown; // next number to count
234
235 float bot_waypoints_for_items;
236
237 .float attack_finished_for[Weapons_MAX * MAX_WEAPONSLOTS];
238 .float attack_finished_single[MAX_WEAPONSLOTS];
239 #if INDEPENDENT_ATTACK_FINISHED
240 #define ATTACK_FINISHED_FOR(ent, w, slot) ((ent).(attack_finished_for[((w) - WEP_FIRST) * MAX_WEAPONSLOTS + (slot)]))
241 #else
242 #define ATTACK_FINISHED_FOR(ent, w, slot) ((ent).attack_finished_single[slot])
243 #endif
244 #define ATTACK_FINISHED(ent, slot) ATTACK_FINISHED_FOR(ent, PS(ent).m_weapon.m_id, slot)
245
246 // assault game mode: Which team is attacking in this round?
247 float assault_attacker_team;
248
249 // speedrun: when 1, player auto teleports back when capture timeout happens
250 .float speedrunning;
251
252 // database
253 float ServerProgsDB;
254 float TemporaryDB;
255
256 .float team_saved;
257
258 float some_spawn_has_been_used;
259 float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found
260 float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team"
261
262 // set when showing a kill countdown
263 .entity killindicator;
264 .float killindicator_teamchange;
265
266 void Damage (entity targ, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force);
267
268 float lockteams;
269
270 .float parm_idlesince;
271 float sv_maxidle;
272 float sv_maxidle_spectatorsareidle;
273
274 float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end);
275
276 float next_pingtime;
277
278 // autotaunt system
279 .float cvar_cl_autotaunt;
280 .float cvar_cl_voice_directional;
281 .float cvar_cl_voice_directional_taunt_attenuation;
282
283 .float version_mismatch;
284
285 int autocvar__independent_players;
286 bool independent_players;
287 #define INDEPENDENT_PLAYERS (autocvar__independent_players ? (autocvar__independent_players > 0) : independent_players)
288 #define IS_INDEPENDENT_PLAYER(e) ((e).solid == SOLID_TRIGGER)
289 #define MAKE_INDEPENDENT_PLAYER(e) (((e).solid = SOLID_TRIGGER), ((e).frags = FRAGS_PLAYER_NONSOLID))
290
291 string clientstuff;
292 .float phase;
293 .int pressedkeys = _STAT(PRESSED_KEYS);
294
295 .string fog;
296
297 string cvar_changes;
298 string cvar_purechanges;
299 float cvar_purechanges_count;
300
301 float game_starttime; //point in time when the countdown to game start is over
302 float round_starttime; //point in time when the countdown to round start is over
303 .float stat_game_starttime = _STAT(GAMESTARTTIME);
304 .float stat_round_starttime = _STAT(ROUNDSTARTTIME);
305
306 void W_Porto_Remove (entity p);
307
308 .int projectiledeathtype;
309
310 .string message2;
311
312 .bool stat_allow_oldvortexbeam = _STAT(ALLOW_OLDVORTEXBEAM);
313
314 // reset to 0 on weapon switch
315 // may be useful to all weapons
316 .float bulletcounter;
317
318 // Nexball
319 .entity ballcarried; // Also used for keepaway
320 float g_nexball_meter_period;
321
322 void SUB_DontUseTargets();
323 void SUB_UseTargets();
324
325 .void(entity this) reset; // if set, an entity is reset using this
326 .void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities)
327
328 void ClientData_Touch(entity e);
329
330 //vector debug_shotorg; // if non-zero, overrides the shot origin of all weapons
331
332 .float wasplayer;
333
334 float servertime, serverprevtime, serverframetime;
335
336 .float ammo_fuel;
337
338 .vector prevorigin;
339
340 //flood fields
341 .float nickspamtime; // time of last nick change
342 .float nickspamcount;
343 .float floodcontrol_chat;
344 .float floodcontrol_chatteam;
345 .float floodcontrol_chattell;
346 .float floodcontrol_voice;
347 .float floodcontrol_voiceteam;
348
349 .float stat_shotorg = _STAT(SHOTORG); // networked stat for trueaim HUD
350
351 string matchid;
352
353 .float last_pickup = _STAT(LAST_PICKUP);
354
355 .float hit_time = _STAT(HIT_TIME);
356 .float typehit_time = _STAT(TYPEHIT_TIME);
357
358 .float damage_dealt_total = _STAT(DAMAGE_DEALT_TOTAL);
359
360 .float stat_leadlimit = _STAT(LEADLIMIT);
361
362 bool radar_showennemies;
363
364 #ifdef PROFILING
365 float client_cefc_accumulator;
366 float client_cefc_accumulatortime;
367 #endif
368
369 .float weapon_load[Weapons_MAX];
370 .int ammo_none; // used by the reloading system, must always be 0
371 .float clip_load = _STAT(WEAPON_CLIPLOAD);
372 .float old_clip_load;
373 .float clip_size = _STAT(WEAPON_CLIPSIZE);
374
375 .float minelayer_mines = _STAT(LAYED_MINES);
376 .float vortex_charge = _STAT(VORTEX_CHARGE);
377 .float vortex_charge_rottime;
378 .float vortex_chargepool_ammo = _STAT(VORTEX_CHARGEPOOL);
379 .float hagar_load = _STAT(HAGAR_LOAD);
380
381 .int grab; // 0 = can't grab, 1 = owner can grab, 2 = owner and team mates can grab, 3 = anyone can grab
382
383 #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_CORPSE; (e).dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_CORPSE
384 // when doing this, hagar can go through clones
385 // #define PROJECTILE_MAKETRIGGER(e) (e).solid = SOLID_BBOX
386
387 .float spectatee_status;
388 .float zoomstate;
389 .float restriction;
390
391 .entity clientdata;
392 .entity personal;
393
394 string deathmessage;
395
396 .float just_joined;
397
398 .float cvar_cl_weaponimpulsemode;
399 .float selectweapon; // last selected weapon of the player
400
401 .float ballistics_density; // wall piercing factor, larger = bullet can pass through more
402
403 const float ACTIVE_NOT          = 0;
404 const float ACTIVE_ACTIVE       = 1;
405 const float ACTIVE_IDLE         = 2;
406 const float ACTIVE_BUSY         = 2;
407 const float ACTIVE_TOGGLE       = 3;
408 .float active;
409 .void (float act_state) setactive;
410 .entity realowner;
411
412 //float serverflags;
413
414 .float team_forced; // can be a team number to force a team, or 0 for default action, or -1 for forced spectator
415
416 .float player_blocked;
417 .float weapon_blocked; // weapon use disabled
418
419 .float frozen = _STAT(FROZEN); // for freeze attacks
420 .float revive_progress = _STAT(REVIVE_PROGRESS);
421 .float revival_time; // time at which player was last revived
422 .float revive_speed; // NOTE: multiplier (anything above 1 is instaheal)
423 .entity iceblock;
424 .entity frozen_by; // for ice fields
425
426 .entity muzzle_flash;
427 .float misc_bulletcounter;      // replaces uzi & hlac bullet counter.
428
429 .float stat_respawn_time = _STAT(RESPAWN_TIME); // shows respawn time, and is negative when awaiting respawn
430
431 void PlayerUseKey();
432
433 typedef vector(entity player, entity spot, vector current) spawn_evalfunc_t;
434 .spawn_evalfunc_t spawn_evalfunc;
435
436 string modname;
437
438 .float missile_flags;
439 const int MIF_SPLASH = BIT(1);
440 const int MIF_ARC = BIT(2);
441 const int MIF_PROXY = BIT(3);
442 const int MIF_GUIDED_MANUAL = BIT(4);
443 const int MIF_GUIDED_HEAT = BIT(5);
444 const int MIF_GUIDED_LASER = BIT(6);
445 const int MIF_GUIDED_AI = BIT(7);
446 const int MIF_GUIDED_TAG = BIT(7);
447 const int MIF_GUIDED_ALL = MIF_GUIDED_MANUAL | MIF_GUIDED_HEAT | MIF_GUIDED_LASER | MIF_GUIDED_AI | MIF_GUIDED_TAG;
448 const int MIF_GUIDED_TRACKING = MIF_GUIDED_HEAT | MIF_GUIDED_LASER | MIF_GUIDED_AI | MIF_GUIDED_TAG;
449 const int MIF_GUIDED_CONFUSABLE = MIF_GUIDED_HEAT | MIF_GUIDED_AI;
450
451 #define MISSILE_IS_CONFUSABLE(m) ((m.missile_flags & MIF_GUIDED_CONFUSABLE) ? true : false)
452 #define MISSILE_IS_GUIDED(m) ((m.missile_flags & MIF_GUIDED_ALL) ? true : false)
453 #define MISSILE_IS_TRACKING(m) ((m.missile_flags & MIF_GUIDED_TRACKING) ? true : false)
454
455
456 ////
457
458 .entity player_stats;
459 //.float playerid;
460 .string playernick;
461 .float elos;
462 .float ranks;
463
464 .string cvar_cl_physics;
465
466 .float init_for_player_needed;
467 .void(entity) init_for_player;
468
469 #endif