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