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