]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/miscfunctions.qh
Merge branch 'TimePath/experiments/csqc_prediction' into Mario/qc_physics
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / miscfunctions.qh
1 #ifndef MISCFUNCTIONS_H
2 #define MISCFUNCTIONS_H
3
4 #include "t_items.qh"
5
6 #include "mutators/base.qh"
7 #include "mutators/gamemode_race.qh"
8
9 #include "../common/constants.qh"
10 #include "../common/mapinfo.qh"
11
12 #ifdef RELEASE
13 #define cvar_string_normal builtin_cvar_string
14 #define cvar_normal builtin_cvar
15 #else
16 string cvar_string_normal(string n)
17 {
18         if (!(cvar_type(n) & 1))
19                 backtrace(strcat("Attempt to access undefined cvar: ", n));
20         return builtin_cvar_string(n);
21 }
22
23 float cvar_normal(string n)
24 {
25         return stof(cvar_string_normal(n));
26 }
27 #endif
28 #define cvar_set_normal builtin_cvar_set
29
30 .vector dropped_origin;
31 .void(void) uncustomizeentityforclient;
32 .float uncustomizeentityforclient_set;
33 .float nottargeted;
34
35
36 float DistributeEvenly_amount;
37 float DistributeEvenly_totalweight;
38 var void remove(entity e);
39 void objerror(string s);
40 void droptofloor();
41 void() spawnfunc_info_player_deathmatch; // needed for the other spawnpoints
42 void() spawnpoint_use;
43 void() SUB_Remove;
44
45 void attach_sameorigin(entity e, entity to, string tag);
46
47 void crosshair_trace(entity pl);
48
49 void crosshair_trace_plusvisibletriggers(entity pl);
50
51 void detach_sameorigin(entity e);
52
53 void follow_sameorigin(entity e, entity to);
54
55 string formatmessage(string msg);
56
57 void GameLogEcho(string s);
58
59 void GameLogInit();
60
61 void GameLogClose();
62
63 void GetCvars(float f);
64
65 string GetMapname();
66
67 float isPushable(entity e);
68
69 float LostMovetypeFollow(entity ent);
70
71 float MoveToRandomMapLocation(entity e, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance);
72
73 string NearestLocation(vector p);
74
75 void play2(entity e, string filename);
76
77 string playername(entity p);
78
79 void precache();
80
81 void remove_safely(entity e);
82
83 void remove_unsafely(entity e);
84
85 void SetMovetypeFollow(entity ent, entity e);
86
87 vector shotorg_adjust_values(vector vecs, float y_is_right, float visual, float algn);
88
89 void soundto(float dest, entity e, float chan, string samp, float vol, float atten);
90
91 void stopsound(entity e, float chan);
92
93 float tracebox_hits_box(vector start, vector mi, vector ma, vector end, vector thmi, vector thma);
94
95 void traceline_antilag (entity source, vector v1, vector v2, float nomonst, entity forent, float lag);
96
97 void WarpZone_crosshair_trace(entity pl);
98
99 void WarpZone_traceline_antilag (entity source, vector v1, vector v2, float nomonst, entity forent, float lag);
100
101
102 #define ITEM_TOUCH_NEEDKILL() (((trace_dpstartcontents | trace_dphitcontents) & DPCONTENTS_NODROP) || (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY))
103 #define ITEM_DAMAGE_NEEDKILL(dt) (((dt) == DEATH_HURTTRIGGER) || ((dt) == DEATH_SLIME) || ((dt) == DEATH_LAVA) || ((dt) == DEATH_SWAMP))
104
105 #define PROJECTILE_TOUCH if(WarpZone_Projectile_Touch()) return
106
107 const string STR_PLAYER = "player";
108 const string STR_SPECTATOR = "spectator";
109 const string STR_OBSERVER = "observer";
110
111 #define IS_PLAYER(v)                    (v.classname == STR_PLAYER)
112 #define IS_SPEC(v)                              (v.classname == STR_SPECTATOR)
113 #define IS_OBSERVER(v)                  (v.classname == STR_OBSERVER)
114 #define IS_CLIENT(v)                    (v.flags & FL_CLIENT)
115 #define IS_BOT_CLIENT(v)                (clienttype(v) == CLIENTTYPE_BOT)
116 #define IS_REAL_CLIENT(v)               (clienttype(v) == CLIENTTYPE_REAL)
117 #define IS_NOT_A_CLIENT(v)              (clienttype(v) == CLIENTTYPE_NOTACLIENT)
118
119 #define FOR_EACH_CLIENTSLOT(v) for(v = world; (v = nextent(v)) && (num_for_edict(v) <= maxclients); )
120 #define FOR_EACH_CLIENT(v) FOR_EACH_CLIENTSLOT(v) if(IS_CLIENT(v))
121 #define FOR_EACH_REALCLIENT(v) FOR_EACH_CLIENT(v) if(IS_REAL_CLIENT(v))
122
123 #define FOR_EACH_PLAYER(v) FOR_EACH_CLIENT(v) if(IS_PLAYER(v))
124 #define FOR_EACH_SPEC(v) FOR_EACH_CLIENT(v) if (!IS_PLAYER(v)) // Samual: shouldn't this be IS_SPEC(v)? and rather create a separate macro to include observers too
125 #define FOR_EACH_REALPLAYER(v) FOR_EACH_REALCLIENT(v) if(IS_PLAYER(v))
126
127 #define FOR_EACH_MONSTER(v) for(v = world; (v = findflags(v, flags, FL_MONSTER)) != world; )
128
129 #define CENTER_OR_VIEWOFS(ent) (ent.origin + (IS_PLAYER(ent) ? ent.view_ofs : ((ent.mins + ent.maxs) * 0.5)))
130
131 // copies a string to a tempstring (so one can strunzone it)
132 string strcat1(string s) = #115; // FRIK_FILE
133
134 float logfile_open;
135 float logfile;
136
137 #define strstr strstrofs
138 /*
139 // NOTE: DO NOT USE THIS FUNCTION TOO OFTEN.
140 // IT WILL MOST PROBABLY DESTROY _ALL_ OTHER TEMP
141 // STRINGS AND TAKE QUITE LONG. haystack and needle MUST
142 // BE CONSTANT OR strzoneD!
143 float strstr(string haystack, string needle, float offset)
144 {
145         float len, endpos;
146         string found;
147         len = strlen(needle);
148         endpos = strlen(haystack) - len;
149         while(offset <= endpos)
150         {
151                 found = substring(haystack, offset, len);
152                 if(found == needle)
153                         return offset;
154                 offset = offset + 1;
155         }
156         return -1;
157 }
158 */
159
160 const float NUM_NEAREST_ENTITIES = 4;
161 entity nearest_entity[NUM_NEAREST_ENTITIES];
162 float nearest_length[NUM_NEAREST_ENTITIES];
163
164
165 //#NO AUTOCVARS START
166
167 float g_pickup_shells;
168 float g_pickup_shells_max;
169 float g_pickup_nails;
170 float g_pickup_nails_max;
171 float g_pickup_rockets;
172 float g_pickup_rockets_max;
173 float g_pickup_cells;
174 float g_pickup_cells_max;
175 float g_pickup_plasma;
176 float g_pickup_plasma_max;
177 float g_pickup_fuel;
178 float g_pickup_fuel_jetpack;
179 float g_pickup_fuel_max;
180 float g_pickup_armorsmall;
181 float g_pickup_armorsmall_max;
182 float g_pickup_armorsmall_anyway;
183 float g_pickup_armormedium;
184 float g_pickup_armormedium_max;
185 float g_pickup_armormedium_anyway;
186 float g_pickup_armorbig;
187 float g_pickup_armorbig_max;
188 float g_pickup_armorbig_anyway;
189 float g_pickup_armorlarge;
190 float g_pickup_armorlarge_max;
191 float g_pickup_armorlarge_anyway;
192 float g_pickup_healthsmall;
193 float g_pickup_healthsmall_max;
194 float g_pickup_healthsmall_anyway;
195 float g_pickup_healthmedium;
196 float g_pickup_healthmedium_max;
197 float g_pickup_healthmedium_anyway;
198 float g_pickup_healthlarge;
199 float g_pickup_healthlarge_max;
200 float g_pickup_healthlarge_anyway;
201 float g_pickup_healthmega;
202 float g_pickup_healthmega_max;
203 float g_pickup_healthmega_anyway;
204 float g_pickup_ammo_anyway;
205 float g_pickup_weapons_anyway;
206 float g_weaponarena;
207 WepSet g_weaponarena_weapons;
208 float g_weaponarena_random;
209 float g_weaponarena_random_with_blaster;
210 string g_weaponarena_list;
211 float g_weaponspeedfactor;
212 float g_weaponratefactor;
213 float g_weapondamagefactor;
214 float g_weaponforcefactor;
215 float g_weaponspreadfactor;
216
217 WepSet start_weapons;
218 WepSet start_weapons_default;
219 WepSet start_weapons_defaultmask;
220 int start_items;
221 float start_ammo_shells;
222 float start_ammo_nails;
223 float start_ammo_rockets;
224 float start_ammo_cells;
225 float start_ammo_plasma;
226 float start_ammo_fuel;
227 float start_health;
228 float start_armorvalue;
229 WepSet warmup_start_weapons;
230 WepSet warmup_start_weapons_default;
231 WepSet warmup_start_weapons_defaultmask;
232 #define WARMUP_START_WEAPONS ((g_warmup_allguns == 1) ? (warmup_start_weapons & (weaponsInMap | start_weapons)) : warmup_start_weapons)
233 float warmup_start_ammo_shells;
234 float warmup_start_ammo_nails;
235 float warmup_start_ammo_rockets;
236 float warmup_start_ammo_cells;
237 float warmup_start_ammo_plasma;
238 float warmup_start_ammo_fuel;
239 float warmup_start_health;
240 float warmup_start_armorvalue;
241 float g_weapon_stay;
242
243 float want_weapon(entity weaponinfo, float allguns); // WEAPONTODO: what still needs done?
244 void readplayerstartcvars();
245
246 float g_bugrigs;
247 float g_bugrigs_planar_movement;
248 float g_bugrigs_planar_movement_car_jumping;
249 float g_bugrigs_reverse_spinning;
250 float g_bugrigs_reverse_speeding;
251 float g_bugrigs_reverse_stopping;
252 float g_bugrigs_air_steering;
253 float g_bugrigs_angle_smoothing;
254 float g_bugrigs_friction_floor;
255 float g_bugrigs_friction_brake;
256 float g_bugrigs_friction_air;
257 float g_bugrigs_accel;
258 float g_bugrigs_speed_ref;
259 float g_bugrigs_speed_pow;
260 float g_bugrigs_steer;
261
262 float sv_autotaunt;
263 float sv_taunt;
264
265 string GetGametype(); // g_world.qc
266 void mutators_add(); // mutators.qc
267 void readlevelcvars(void)
268 {
269         // load mutators
270         mutators_add();
271
272         if(cvar("sv_allow_fullbright"))
273                 serverflags |= SERVERFLAG_ALLOW_FULLBRIGHT;
274
275     g_bugrigs = cvar("g_bugrigs");
276     g_bugrigs_planar_movement = cvar("g_bugrigs_planar_movement");
277     g_bugrigs_planar_movement_car_jumping = cvar("g_bugrigs_planar_movement_car_jumping");
278     g_bugrigs_reverse_spinning = cvar("g_bugrigs_reverse_spinning");
279     g_bugrigs_reverse_speeding = cvar("g_bugrigs_reverse_speeding");
280     g_bugrigs_reverse_stopping = cvar("g_bugrigs_reverse_stopping");
281     g_bugrigs_air_steering = cvar("g_bugrigs_air_steering");
282     g_bugrigs_angle_smoothing = cvar("g_bugrigs_angle_smoothing");
283     g_bugrigs_friction_floor = cvar("g_bugrigs_friction_floor");
284     g_bugrigs_friction_brake = cvar("g_bugrigs_friction_brake");
285     g_bugrigs_friction_air = cvar("g_bugrigs_friction_air");
286     g_bugrigs_accel = cvar("g_bugrigs_accel");
287     g_bugrigs_speed_ref = cvar("g_bugrigs_speed_ref");
288     g_bugrigs_speed_pow = cvar("g_bugrigs_speed_pow");
289     g_bugrigs_steer = cvar("g_bugrigs_steer");
290
291         g_instagib = cvar("g_instagib");
292
293         sv_clones = cvar("sv_clones");
294         sv_foginterval = cvar("sv_foginterval");
295         g_cloaked = cvar("g_cloaked");
296         g_footsteps = cvar("g_footsteps");
297         g_grappling_hook = cvar("g_grappling_hook");
298         g_jetpack = cvar("g_jetpack");
299         sv_maxidle = cvar("sv_maxidle");
300         sv_maxidle_spectatorsareidle = cvar("sv_maxidle_spectatorsareidle");
301         sv_autotaunt = cvar("sv_autotaunt");
302         sv_taunt = cvar("sv_taunt");
303
304         warmup_stage = cvar("g_warmup");
305         g_warmup_limit = cvar("g_warmup_limit");
306         g_warmup_allguns = cvar("g_warmup_allguns");
307         g_warmup_allow_timeout = cvar("g_warmup_allow_timeout");
308
309         if ((g_race && g_race_qualifying == 2) || g_assault || cvar("g_campaign"))
310                 warmup_stage = 0; // these modes cannot work together, sorry
311
312         g_pickup_respawntime_weapon = cvar("g_pickup_respawntime_weapon");
313         g_pickup_respawntime_superweapon = cvar("g_pickup_respawntime_superweapon");
314         g_pickup_respawntime_ammo = cvar("g_pickup_respawntime_ammo");
315         g_pickup_respawntime_short = cvar("g_pickup_respawntime_short");
316         g_pickup_respawntime_medium = cvar("g_pickup_respawntime_medium");
317         g_pickup_respawntime_long = cvar("g_pickup_respawntime_long");
318         g_pickup_respawntime_powerup = cvar("g_pickup_respawntime_powerup");
319         g_pickup_respawntimejitter_weapon = cvar("g_pickup_respawntimejitter_weapon");
320         g_pickup_respawntimejitter_superweapon = cvar("g_pickup_respawntimejitter_superweapon");
321         g_pickup_respawntimejitter_ammo = cvar("g_pickup_respawntimejitter_ammo");
322         g_pickup_respawntimejitter_short = cvar("g_pickup_respawntimejitter_short");
323         g_pickup_respawntimejitter_medium = cvar("g_pickup_respawntimejitter_medium");
324         g_pickup_respawntimejitter_long = cvar("g_pickup_respawntimejitter_long");
325         g_pickup_respawntimejitter_powerup = cvar("g_pickup_respawntimejitter_powerup");
326
327         g_weaponspeedfactor = cvar("g_weaponspeedfactor");
328         g_weaponratefactor = cvar("g_weaponratefactor");
329         g_weapondamagefactor = cvar("g_weapondamagefactor");
330         g_weaponforcefactor = cvar("g_weaponforcefactor");
331         g_weaponspreadfactor = cvar("g_weaponspreadfactor");
332
333         g_pickup_shells = cvar("g_pickup_shells");
334         g_pickup_shells_max = cvar("g_pickup_shells_max");
335         g_pickup_nails = cvar("g_pickup_nails");
336         g_pickup_nails_max = cvar("g_pickup_nails_max");
337         g_pickup_rockets = cvar("g_pickup_rockets");
338         g_pickup_rockets_max = cvar("g_pickup_rockets_max");
339         g_pickup_cells = cvar("g_pickup_cells");
340         g_pickup_cells_max = cvar("g_pickup_cells_max");
341         g_pickup_plasma = cvar("g_pickup_plasma");
342         g_pickup_plasma_max = cvar("g_pickup_plasma_max");
343         g_pickup_fuel = cvar("g_pickup_fuel");
344         g_pickup_fuel_jetpack = cvar("g_pickup_fuel_jetpack");
345         g_pickup_fuel_max = cvar("g_pickup_fuel_max");
346         g_pickup_armorsmall = cvar("g_pickup_armorsmall");
347         g_pickup_armorsmall_max = cvar("g_pickup_armorsmall_max");
348         g_pickup_armorsmall_anyway = cvar("g_pickup_armorsmall_anyway");
349         g_pickup_armormedium = cvar("g_pickup_armormedium");
350         g_pickup_armormedium_max = cvar("g_pickup_armormedium_max");
351         g_pickup_armormedium_anyway = cvar("g_pickup_armormedium_anyway");
352         g_pickup_armorbig = cvar("g_pickup_armorbig");
353         g_pickup_armorbig_max = cvar("g_pickup_armorbig_max");
354         g_pickup_armorbig_anyway = cvar("g_pickup_armorbig_anyway");
355         g_pickup_armorlarge = cvar("g_pickup_armorlarge");
356         g_pickup_armorlarge_max = cvar("g_pickup_armorlarge_max");
357         g_pickup_armorlarge_anyway = cvar("g_pickup_armorlarge_anyway");
358         g_pickup_healthsmall = cvar("g_pickup_healthsmall");
359         g_pickup_healthsmall_max = cvar("g_pickup_healthsmall_max");
360         g_pickup_healthsmall_anyway = cvar("g_pickup_healthsmall_anyway");
361         g_pickup_healthmedium = cvar("g_pickup_healthmedium");
362         g_pickup_healthmedium_max = cvar("g_pickup_healthmedium_max");
363         g_pickup_healthmedium_anyway = cvar("g_pickup_healthmedium_anyway");
364         g_pickup_healthlarge = cvar("g_pickup_healthlarge");
365         g_pickup_healthlarge_max = cvar("g_pickup_healthlarge_max");
366         g_pickup_healthlarge_anyway = cvar("g_pickup_healthlarge_anyway");
367         g_pickup_healthmega = cvar("g_pickup_healthmega");
368         g_pickup_healthmega_max = cvar("g_pickup_healthmega_max");
369         g_pickup_healthmega_anyway = cvar("g_pickup_healthmega_anyway");
370
371         g_pickup_ammo_anyway = cvar("g_pickup_ammo_anyway");
372         g_pickup_weapons_anyway = cvar("g_pickup_weapons_anyway");
373
374     g_weapon_stay = cvar(strcat("g_", GetGametype(), "_weapon_stay"));
375     if(!g_weapon_stay)
376         g_weapon_stay = cvar("g_weapon_stay");
377
378         if (!warmup_stage)
379                 game_starttime = time + cvar("g_start_delay");
380
381         for(int i = WEP_FIRST; i <= WEP_LAST; ++i)
382                 WEP_ACTION(i, WR_INIT);
383
384         readplayerstartcvars();
385 }
386
387 //#NO AUTOCVARS END
388
389
390 // Sound functions
391 //string precache_sound (string s) = #19;
392 // hack
393 float precache_sound_index (string s) = #19;
394
395 const float SND_VOLUME = 1;
396 const float SND_ATTENUATION = 2;
397 const float SND_LARGEENTITY = 8;
398 const float SND_LARGESOUND = 16;
399
400 // WARNING: this kills the trace globals
401 #define EXACTTRIGGER_TOUCH if(WarpZoneLib_ExactTrigger_Touch()) return
402 #define EXACTTRIGGER_INIT  WarpZoneLib_ExactTrigger_Init()
403
404 const float INITPRIO_FIRST                              = 0;
405 const float INITPRIO_GAMETYPE                   = 0;
406 const float INITPRIO_GAMETYPE_FALLBACK  = 1;
407 const float INITPRIO_FINDTARGET                 = 10;
408 const float INITPRIO_DROPTOFLOOR                = 20;
409 const float INITPRIO_SETLOCATION                = 90;
410 const float INITPRIO_LINKDOORS                  = 91;
411 const float INITPRIO_LAST                               = 99;
412
413 .void(void) initialize_entity;
414 .float initialize_entity_order;
415 .entity initialize_entity_next;
416 entity initialize_entity_first;
417
418
419
420
421
422 float sound_allowed(float dest, entity e);
423 void InitializeEntity(entity e, void(void) func, float order);
424 void SetCustomizer(entity e, float(void) customizer, void(void) uncustomizer);
425 void Net_LinkEntity(entity e, float docull, float dt, float(entity, float) sendfunc);
426
427 #endif