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