]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/miscfunctions.qc
Merge remote-tracking branch 'origin/samual/verbose_warnings'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / miscfunctions.qc
1 var void remove(entity e);
2 void objerror(string s);
3 void droptofloor();
4 .vector dropped_origin;
5
6 void traceline_antilag (entity source, vector v1, vector v2, float nomonst, entity forent, float lag);
7 void crosshair_trace(entity pl)
8 {
9         traceline_antilag(pl, pl.cursor_trace_start, pl.cursor_trace_start + normalize(pl.cursor_trace_endpos - pl.cursor_trace_start) * MAX_SHOT_DISTANCE, MOVE_NORMAL, pl, ANTILAG_LATENCY(pl));
10 }
11 void WarpZone_traceline_antilag (entity source, vector v1, vector v2, float nomonst, entity forent, float lag);
12 void WarpZone_crosshair_trace(entity pl)
13 {
14         WarpZone_traceline_antilag(pl, pl.cursor_trace_start, pl.cursor_trace_start + normalize(pl.cursor_trace_endpos - pl.cursor_trace_start) * MAX_SHOT_DISTANCE, MOVE_NORMAL, pl, ANTILAG_LATENCY(pl));
15 }
16
17 void() spawnfunc_info_player_deathmatch; // needed for the other spawnpoints
18 void() spawnpoint_use;
19 string GetMapname();
20 string ColoredTeamName(float t);
21
22 string admin_name(void)
23 {
24         if(autocvar_sv_adminnick != "")
25                 return autocvar_sv_adminnick;
26         else
27                 return "SERVER ADMIN";
28 }
29
30 float DistributeEvenly_amount;
31 float DistributeEvenly_totalweight;
32 void DistributeEvenly_Init(float amount, float totalweight)
33 {
34     if (DistributeEvenly_amount)
35     {
36         dprint("DistributeEvenly_Init: UNFINISHED DISTRIBUTION (", ftos(DistributeEvenly_amount), " for ");
37         dprint(ftos(DistributeEvenly_totalweight), " left!)\n");
38     }
39     if (totalweight == 0)
40         DistributeEvenly_amount = 0;
41     else
42         DistributeEvenly_amount = amount;
43     DistributeEvenly_totalweight = totalweight;
44 }
45 float DistributeEvenly_Get(float weight)
46 {
47     float f;
48     if (weight <= 0)
49         return 0;
50     f = floor(0.5 + DistributeEvenly_amount * weight / DistributeEvenly_totalweight);
51     DistributeEvenly_totalweight -= weight;
52     DistributeEvenly_amount -= f;
53     return f;
54 }
55
56 #define move_out_of_solid(e) WarpZoneLib_MoveOutOfSolid(e)
57
58
59 string STR_PLAYER = "player";
60 string STR_SPECTATOR = "spectator";
61 string STR_OBSERVER = "observer";
62
63 #if 0
64 #define FOR_EACH_CLIENT(v) for(v = world; (v = findflags(v, flags, FL_CLIENT)) != world; )
65 #define FOR_EACH_REALCLIENT(v) FOR_EACH_CLIENT(v) if(clienttype(v) == CLIENTTYPE_REAL)
66 #define FOR_EACH_PLAYER(v) for(v = world; (v = find(v, classname, STR_PLAYER)) != world; )
67 #define FOR_EACH_REALPLAYER(v) FOR_EACH_PLAYER(v) if(clienttype(v) == CLIENTTYPE_REAL)
68 #else
69 #define FOR_EACH_CLIENTSLOT(v) for(v = world; (v = nextent(v)) && (num_for_edict(v) <= maxclients); )
70 #define FOR_EACH_CLIENT(v) FOR_EACH_CLIENTSLOT(v) if(v.flags & FL_CLIENT)
71 #define FOR_EACH_REALCLIENT(v) FOR_EACH_CLIENT(v) if(clienttype(v) == CLIENTTYPE_REAL)
72 #define FOR_EACH_PLAYER(v) FOR_EACH_CLIENT(v) if(v.classname == STR_PLAYER)
73 #define FOR_EACH_REALPLAYER(v) FOR_EACH_REALCLIENT(v) if(v.classname == STR_PLAYER)
74 #endif
75
76 // copies a string to a tempstring (so one can strunzone it)
77 string strcat1(string s) = #115; // FRIK_FILE
78
79 float logfile_open;
80 float logfile;
81
82 string GetAdvancedDeathReports(entity enPlayer) // Extra fragmessage information
83 {
84         local float nPlayerHealth = rint(enPlayer.health);
85         local float nPlayerArmor = rint(enPlayer.armorvalue);
86         local float nPlayerHandicap = enPlayer.cvar_cl_handicap;
87         local float nPlayerPing = rint(enPlayer.ping);
88         local string strPlayerPingColor;
89         local string strMessage;
90         if(nPlayerPing >= 150)
91                 strPlayerPingColor = "^1";
92         else
93                 strPlayerPingColor = "^2";
94
95         if((autocvar_sv_fragmessage_information_stats) && (enPlayer.health >= 1))
96                 strMessage = strcat(strMessage, "\n^7(Health ^1", ftos(nPlayerHealth), "^7 / Armor ^2", ftos(nPlayerArmor), "^7)");
97
98         if(autocvar_sv_fragmessage_information_ping) {
99                 if(clienttype(enPlayer) == CLIENTTYPE_BOT) // Bots have no ping
100                         strMessage = strcat(strMessage, " ^7(^2Bot");
101                 else
102                         strMessage = strcat(strMessage, " ^7(Ping ", strPlayerPingColor, ftos(nPlayerPing), "ms");
103                 if(autocvar_sv_fragmessage_information_handicap)
104                         if(autocvar_sv_fragmessage_information_handicap == 2)
105                                 if(nPlayerHandicap <= 1)
106                                         strMessage = strcat(strMessage, "^7 / Handicap ^2Off^7)");
107                                 else
108                                         strMessage = strcat(strMessage, "^7 / Handicap ^2", ftos(nPlayerHandicap), "^7)");
109                         else if not(nPlayerHandicap <= 1)
110                                 strMessage = strcat(strMessage, "^7 / Handicap ^2", ftos(nPlayerHandicap), "^7)");
111                 else
112                         strMessage = strcat(strMessage, "^7)");
113         } else if(autocvar_sv_fragmessage_information_handicap) {
114                 if(autocvar_sv_fragmessage_information_handicap == 2)
115                         if(nPlayerHandicap <= 1)
116                                 strMessage = strcat(strMessage, "\n^7(Handicap ^2Off^7)");
117                         else
118                                 strMessage = strcat(strMessage, "\n^7(Handicap ^2", ftos(nPlayerHandicap), "^7)");
119                 else if(nPlayerHandicap > 1)
120                         strMessage = strcat(strMessage, "\n^7(Handicap ^2", ftos(nPlayerHandicap), "^7)");
121         }
122         return strMessage;
123 }
124 void bcenterprint(string s)
125 {
126     // TODO replace by MSG_ALL (would show it to spectators too, though)?
127     entity head;
128     FOR_EACH_PLAYER(head)
129     if (clienttype(head) == CLIENTTYPE_REAL)
130         centerprint(head, s);
131 }
132
133 void GameLogEcho(string s)
134 {
135     string fn;
136     float matches;
137
138     if (autocvar_sv_eventlog_files)
139     {
140         if (!logfile_open)
141         {
142             logfile_open = TRUE;
143             matches = autocvar_sv_eventlog_files_counter + 1;
144             cvar_set("sv_eventlog_files_counter", ftos(matches));
145             fn = ftos(matches);
146             if (strlen(fn) < 8)
147                 fn = strcat(substring("00000000", 0, 8 - strlen(fn)), fn);
148             fn = strcat(autocvar_sv_eventlog_files_nameprefix, fn, autocvar_sv_eventlog_files_namesuffix);
149             logfile = fopen(fn, FILE_APPEND);
150             fputs(logfile, ":logversion:3\n");
151         }
152         if (logfile >= 0)
153         {
154             if (autocvar_sv_eventlog_files_timestamps)
155                 fputs(logfile, strcat(":time:", strftime(TRUE, "%Y-%m-%d %H:%M:%S", "\n", s, "\n")));
156             else
157                 fputs(logfile, strcat(s, "\n"));
158         }
159     }
160     if (autocvar_sv_eventlog_console)
161     {
162         print(s, "\n");
163     }
164 }
165
166 void GameLogInit()
167 {
168     logfile_open = 0;
169     // will be opened later
170 }
171
172 void GameLogClose()
173 {
174     if (logfile_open && logfile >= 0)
175     {
176         fclose(logfile);
177         logfile = -1;
178     }
179 }
180
181 vector PL_VIEW_OFS;
182 vector PL_MIN;
183 vector PL_MAX;
184 vector PL_HEAD;
185 vector PL_CROUCH_VIEW_OFS;
186 vector PL_CROUCH_MIN;
187 vector PL_CROUCH_MAX;
188
189 float spawnpoint_nag;
190 void relocate_spawnpoint()
191 {
192     PL_VIEW_OFS                             = stov(autocvar_sv_player_viewoffset);
193     PL_MIN                                  = stov(autocvar_sv_player_mins);
194     PL_MAX                                  = stov(autocvar_sv_player_maxs);
195     PL_HEAD                                 = stov(autocvar_sv_player_headsize);
196     PL_CROUCH_VIEW_OFS                      = stov(autocvar_sv_player_crouch_viewoffset);
197     PL_CROUCH_MIN                           = stov(autocvar_sv_player_crouch_mins);
198     PL_CROUCH_MAX                           = stov(autocvar_sv_player_crouch_maxs);
199
200     // nudge off the floor
201     setorigin(self, self.origin + '0 0 1');
202
203     tracebox(self.origin, PL_MIN, PL_MAX, self.origin, TRUE, self);
204     if (trace_startsolid)
205     {
206         vector o;
207         o = self.origin;
208         self.mins = PL_MIN;
209         self.maxs = PL_MAX;
210         if (!move_out_of_solid(self))
211             objerror("could not get out of solid at all!");
212         print("^1NOTE: this map needs FIXING. Spawnpoint at ", vtos(o - '0 0 1'));
213         print(" needs to be moved out of solid, e.g. by '", ftos(self.origin_x - o_x));
214         print(" ", ftos(self.origin_y - o_y));
215         print(" ", ftos(self.origin_z - o_z), "'\n");
216         if (autocvar_g_spawnpoints_auto_move_out_of_solid)
217         {
218             if (!spawnpoint_nag)
219                 print("\{1}^1NOTE: this map needs FIXING (it contains spawnpoints in solid, see server log)\n");
220             spawnpoint_nag = 1;
221         }
222         else
223         {
224             setorigin(self, o);
225             self.mins = self.maxs = '0 0 0';
226             objerror("player spawn point in solid, mapper sucks!\n");
227             return;
228         }
229     }
230
231     self.use = spawnpoint_use;
232     self.team_saved = self.team;
233     if (!self.cnt)
234         self.cnt = 1;
235
236     if (have_team_spawns != 0)
237         if (self.team)
238             have_team_spawns = 1;
239     have_team_spawns_forteam[self.team] = 1;
240
241     if (autocvar_r_showbboxes)
242     {
243         // show where spawnpoints point at too
244         makevectors(self.angles);
245         entity e;
246         e = spawn();
247         e.classname = "info_player_foo";
248         setorigin(e, self.origin + v_forward * 24);
249         setsize(e, '-8 -8 -8', '8 8 8');
250         e.solid = SOLID_TRIGGER;
251     }
252 }
253
254 #define strstr strstrofs
255 /*
256 // NOTE: DO NOT USE THIS FUNCTION TOO OFTEN.
257 // IT WILL MOST PROBABLY DESTROY _ALL_ OTHER TEMP
258 // STRINGS AND TAKE QUITE LONG. haystack and needle MUST
259 // BE CONSTANT OR strzoneD!
260 float strstr(string haystack, string needle, float offset)
261 {
262         float len, endpos;
263         string found;
264         len = strlen(needle);
265         endpos = strlen(haystack) - len;
266         while(offset <= endpos)
267         {
268                 found = substring(haystack, offset, len);
269                 if(found == needle)
270                         return offset;
271                 offset = offset + 1;
272         }
273         return -1;
274 }
275 */
276
277 float NUM_NEAREST_ENTITIES = 4;
278 entity nearest_entity[NUM_NEAREST_ENTITIES];
279 float nearest_length[NUM_NEAREST_ENTITIES];
280 entity findnearest(vector point, .string field, string value, vector axismod)
281 {
282     entity localhead;
283     float i;
284     float j;
285     float len;
286     vector dist;
287
288     float num_nearest;
289     num_nearest = 0;
290
291     localhead = find(world, field, value);
292     while (localhead)
293     {
294         if ((localhead.items == IT_KEY1 || localhead.items == IT_KEY2) && localhead.target == "###item###")
295             dist = localhead.oldorigin;
296         else
297             dist = localhead.origin;
298         dist = dist - point;
299         dist = dist_x * axismod_x * '1 0 0' + dist_y * axismod_y * '0 1 0' + dist_z * axismod_z * '0 0 1';
300         len = vlen(dist);
301
302         for (i = 0; i < num_nearest; ++i)
303         {
304             if (len < nearest_length[i])
305                 break;
306         }
307
308         // now i tells us where to insert at
309         //   INSERTION SORT! YOU'VE SEEN IT! RUN!
310         if (i < NUM_NEAREST_ENTITIES)
311         {
312             for (j = NUM_NEAREST_ENTITIES - 1; j >= i; --j)
313             {
314                 nearest_length[j + 1] = nearest_length[j];
315                 nearest_entity[j + 1] = nearest_entity[j];
316             }
317             nearest_length[i] = len;
318             nearest_entity[i] = localhead;
319             if (num_nearest < NUM_NEAREST_ENTITIES)
320                 num_nearest = num_nearest + 1;
321         }
322
323         localhead = find(localhead, field, value);
324     }
325
326     // now use the first one from our list that we can see
327     for (i = 0; i < num_nearest; ++i)
328     {
329         traceline(point, nearest_entity[i].origin, TRUE, world);
330         if (trace_fraction == 1)
331         {
332             if (i != 0)
333             {
334                 dprint("Nearest point (");
335                 dprint(nearest_entity[0].netname);
336                 dprint(") is not visible, using a visible one.\n");
337             }
338             return nearest_entity[i];
339         }
340     }
341
342     if (num_nearest == 0)
343         return world;
344
345     dprint("Not seeing any location point, using nearest as fallback.\n");
346     /* DEBUGGING CODE:
347     dprint("Candidates were: ");
348     for(j = 0; j < num_nearest; ++j)
349     {
350         if(j != 0)
351                 dprint(", ");
352         dprint(nearest_entity[j].netname);
353     }
354     dprint("\n");
355     */
356
357     return nearest_entity[0];
358 }
359
360 void spawnfunc_target_location()
361 {
362     self.classname = "target_location";
363     // location name in netname
364     // eventually support: count, teamgame selectors, line of sight?
365 };
366
367 void spawnfunc_info_location()
368 {
369     self.classname = "target_location";
370     self.message = self.netname;
371 };
372
373 string NearestLocation(vector p)
374 {
375     entity loc;
376     string ret;
377     ret = "somewhere";
378     loc = findnearest(p, classname, "target_location", '1 1 1');
379     if (loc)
380     {
381         ret = loc.message;
382     }
383     else
384     {
385         loc = findnearest(p, target, "###item###", '1 1 4');
386         if (loc)
387             ret = loc.netname;
388     }
389     return ret;
390 }
391
392 string formatmessage(string msg)
393 {
394         float p, p1, p2;
395         float n;
396         vector cursor;
397         entity cursor_ent;
398         string escape;
399         string replacement;
400         p = 0;
401         n = 7;
402
403         WarpZone_crosshair_trace(self);
404         cursor = trace_endpos;
405         cursor_ent = trace_ent;
406
407         while (1) {
408                 if (n < 1)
409                         break; // too many replacements
410
411                 n = n - 1;
412                 p1 = strstr(msg, "%", p); // NOTE: this destroys msg as it's a tempstring!
413                 p2 = strstr(msg, "\\", p); // NOTE: this destroys msg as it's a tempstring!
414
415                 if (p1 < 0)
416                         p1 = p2;
417
418                 if (p2 < 0)
419                         p2 = p1;
420
421                 p = min(p1, p2);
422
423                 if (p < 0)
424                         break;
425
426                 replacement = substring(msg, p, 2);
427                 escape = substring(msg, p + 1, 1);
428
429                 if (escape == "%")
430                         replacement = "%";
431                 else if (escape == "\\")
432                         replacement = "\\";
433                 else if (escape == "n")
434                         replacement = "\n";
435                 else if (escape == "a")
436                         replacement = ftos(floor(self.armorvalue));
437                 else if (escape == "h")
438                         replacement = ftos(floor(self.health));
439                 else if (escape == "l")
440                         replacement = NearestLocation(self.origin);
441                 else if (escape == "y")
442                         replacement = NearestLocation(cursor);
443                 else if (escape == "d")
444                         replacement = NearestLocation(self.death_origin);
445                 else if (escape == "w") {
446                         float wep;
447                         wep = self.weapon;
448                         if (!wep)
449                                 wep = self.switchweapon;
450                         if (!wep)
451                                 wep = self.cnt;
452                         replacement = W_Name(wep);
453                 } else if (escape == "W") {
454                         if (self.items & IT_SHELLS) replacement = "shells";
455                         else if (self.items & IT_NAILS) replacement = "bullets";
456                         else if (self.items & IT_ROCKETS) replacement = "rockets";
457                         else if (self.items & IT_CELLS) replacement = "cells";
458                         else replacement = "batteries"; // ;)
459                 } else if (escape == "x") {
460                         replacement = cursor_ent.netname;
461                         if (!replacement || !cursor_ent)
462                                 replacement = "nothing";
463                 } else if (escape == "p") {
464                         if (self.last_selected_player)
465                                 replacement = self.last_selected_player.netname;
466                         else
467                                 replacement = "(nobody)";
468                 } else if (escape == "s")
469                         replacement = ftos(vlen(self.velocity - self.velocity_z * '0 0 1'));
470                 else if (escape == "S")
471                         replacement = ftos(vlen(self.velocity));
472
473                 msg = strcat(substring(msg, 0, p), replacement, substring(msg, p+2, strlen(msg) - (p+2)));
474                 p = p + strlen(replacement);
475         }
476         return msg;
477 }
478
479 float boolean(float value) { // if value is 0 return FALSE (0), otherwise return TRUE (1)
480         return (value == 0) ? FALSE : TRUE;
481 }
482
483 /*
484 =============
485 GetCvars
486 =============
487 Called with:
488   0:  sends the request
489   >0: receives a cvar from name=argv(f) value=argv(f+1)
490 */
491 void GetCvars_handleString(string thisname, float f, .string field, string name)
492 {
493         if (f < 0)
494         {
495                 if (self.field)
496                         strunzone(self.field);
497                 self.field = string_null;
498         }
499         else if (f > 0)
500         {
501                 if (thisname == name)
502                 {
503                         if (self.field)
504                                 strunzone(self.field);
505                         self.field = strzone(argv(f + 1));
506                 }
507         }
508         else
509                 stuffcmd(self, strcat("cl_cmd sendcvar ", name, "\n"));
510 }
511 void GetCvars_handleString_Fixup(string thisname, float f, .string field, string name, string(string) func)
512 {
513         GetCvars_handleString(thisname, f, field, name);
514         if (f >= 0) // also initialize to the fitting value for "" when sending cvars out
515                 if (thisname == name)
516                 {
517                         string s;
518                         s = func(strcat1(self.field));
519                         if (s != self.field)
520                         {
521                                 strunzone(self.field);
522                                 self.field = strzone(s);
523                         }
524                 }
525 }
526 void GetCvars_handleFloat(string thisname, float f, .float field, string name)
527 {
528         if (f < 0)
529         {
530         }
531         else if (f > 0)
532         {
533                 if (thisname == name)
534                         self.field = stof(argv(f + 1));
535         }
536         else
537                 stuffcmd(self, strcat("cl_cmd sendcvar ", name, "\n"));
538 }
539 void GetCvars_handleFloatOnce(string thisname, float f, .float field, string name)
540 {
541         if (f < 0)
542         {
543         }
544         else if (f > 0)
545         {
546                 if (thisname == name)
547                 {
548                         if(!self.field)
549                         {
550                                 self.field = stof(argv(f + 1));
551                                 if(!self.field)
552                                         self.field = -1;
553                         }
554                 }
555         }
556         else
557         {
558                 if(!self.field)
559                         stuffcmd(self, strcat("cl_cmd sendcvar ", name, "\n"));
560         }
561 }
562 float w_getbestweapon(entity e);
563 string W_FixWeaponOrder_ForceComplete_AndBuildImpulseList(string wo)
564 {
565         string o;
566         o = W_FixWeaponOrder_ForceComplete(wo);
567         if(self.weaponorder_byimpulse)
568         {
569                 strunzone(self.weaponorder_byimpulse);
570                 self.weaponorder_byimpulse = string_null;
571         }
572         self.weaponorder_byimpulse = strzone(W_FixWeaponOrder_BuildImpulseList(o));
573         return o;
574 }
575 void GetCvars(float f)
576 {
577         string s;
578
579         if (f > 0)
580                 s = strcat1(argv(f));
581
582         get_cvars_f = f;
583         get_cvars_s = s;
584         MUTATOR_CALLHOOK(GetCvars);
585         GetCvars_handleFloat(s, f, autoswitch, "cl_autoswitch");
586         GetCvars_handleFloat(s, f, cvar_cl_playerdetailreduction, "cl_playerdetailreduction");
587         GetCvars_handleFloat(s, f, cvar_scr_centertime, "scr_centertime");
588         GetCvars_handleFloat(s, f, cvar_cl_shownames, "cl_shownames");
589         GetCvars_handleString(s, f, cvar_g_xonoticversion, "g_xonoticversion");
590         GetCvars_handleFloat(s, f, cvar_cl_handicap, "cl_handicap");
591         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete_AndBuildImpulseList);
592         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[0], "cl_weaponpriority0", W_FixWeaponOrder_AllowIncomplete);
593         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[1], "cl_weaponpriority1", W_FixWeaponOrder_AllowIncomplete);
594         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[2], "cl_weaponpriority2", W_FixWeaponOrder_AllowIncomplete);
595         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[3], "cl_weaponpriority3", W_FixWeaponOrder_AllowIncomplete);
596         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[4], "cl_weaponpriority4", W_FixWeaponOrder_AllowIncomplete);
597         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[5], "cl_weaponpriority5", W_FixWeaponOrder_AllowIncomplete);
598         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[6], "cl_weaponpriority6", W_FixWeaponOrder_AllowIncomplete);
599         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[7], "cl_weaponpriority7", W_FixWeaponOrder_AllowIncomplete);
600         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[8], "cl_weaponpriority8", W_FixWeaponOrder_AllowIncomplete);
601         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[9], "cl_weaponpriority9", W_FixWeaponOrder_AllowIncomplete);
602         GetCvars_handleFloat(s, f, cvar_cl_weaponimpulsemode, "cl_weaponimpulsemode");
603         GetCvars_handleFloat(s, f, cvar_cl_autotaunt, "cl_autotaunt");
604         GetCvars_handleFloat(s, f, cvar_cl_noantilag, "cl_noantilag");
605         GetCvars_handleFloat(s, f, cvar_cl_voice_directional, "cl_voice_directional");
606         GetCvars_handleFloat(s, f, cvar_cl_voice_directional_taunt_attenuation, "cl_voice_directional_taunt_attenuation");
607         GetCvars_handleFloat(s, f, cvar_cl_accuracy_data_share, "cl_accuracy_data_share");
608         GetCvars_handleFloat(s, f, cvar_cl_accuracy_data_receive, "cl_accuracy_data_receive");
609
610         self.cvar_cl_accuracy_data_share = boolean(self.cvar_cl_accuracy_data_share);
611         self.cvar_cl_accuracy_data_receive = boolean(self.cvar_cl_accuracy_data_receive);
612
613 #ifdef ALLOW_FORCEMODELS
614         GetCvars_handleFloat(s, f, cvar_cl_forceplayermodels, "cl_forceplayermodels");
615         GetCvars_handleFloat(s, f, cvar_cl_forceplayermodelsfromxonotic, "cl_forceplayermodelsfromxonotic");
616 #endif
617         GetCvars_handleFloatOnce(s, f, cvar_cl_gunalign, "cl_gunalign");
618         GetCvars_handleFloat(s, f, cvar_cl_allow_uid2name, "cl_allow_uid2name");
619         GetCvars_handleFloat(s, f, cvar_cl_allow_uidtracking, "cl_allow_uidtracking");
620
621         // fixup of switchweapon (needed for LMS or when spectating is disabled, as PutClientInServer comes too early)
622         if (f > 0)
623         {
624                 if (s == "cl_weaponpriority")
625                         self.switchweapon = w_getbestweapon(self);
626         }
627 }
628
629 float fexists(string f)
630 {
631     float fh;
632     fh = fopen(f, FILE_READ);
633     if (fh < 0)
634         return FALSE;
635     fclose(fh);
636     return TRUE;
637 }
638
639 void backtrace(string msg)
640 {
641     float dev, war;
642     dev = autocvar_developer;
643     war = autocvar_prvm_backtraceforwarnings;
644     cvar_set("developer", "1");
645     cvar_set("prvm_backtraceforwarnings", "1");
646     print("\n");
647     print("--- CUT HERE ---\nWARNING: ");
648     print(msg);
649     print("\n");
650     remove(world); // isn't there any better way to cause a backtrace?
651     print("\n--- CUT UNTIL HERE ---\n");
652     cvar_set("developer", ftos(dev));
653     cvar_set("prvm_backtraceforwarnings", ftos(war));
654 }
655
656 string Team_ColorCode(float teamid)
657 {
658     if (teamid == COLOR_TEAM1)
659         return "^1";
660     else if (teamid == COLOR_TEAM2)
661         return "^4";
662     else if (teamid == COLOR_TEAM3)
663         return "^3";
664     else if (teamid == COLOR_TEAM4)
665         return "^6";
666     else
667         return "^7";
668 }
669
670 string Team_ColorName(float t)
671 {
672     // fixme: Search for team entities and get their .netname's!
673     if (t == COLOR_TEAM1)
674         return "Red";
675     if (t == COLOR_TEAM2)
676         return "Blue";
677     if (t == COLOR_TEAM3)
678         return "Yellow";
679     if (t == COLOR_TEAM4)
680         return "Pink";
681     return "Neutral";
682 }
683
684 string Team_ColorNameLowerCase(float t)
685 {
686     // fixme: Search for team entities and get their .netname's!
687     if (t == COLOR_TEAM1)
688         return "red";
689     if (t == COLOR_TEAM2)
690         return "blue";
691     if (t == COLOR_TEAM3)
692         return "yellow";
693     if (t == COLOR_TEAM4)
694         return "pink";
695     return "neutral";
696 }
697
698 float ColourToNumber(string team_colour)
699 {
700         if (team_colour == "red")
701                 return COLOR_TEAM1;
702
703         if (team_colour == "blue")
704                 return COLOR_TEAM2;
705
706         if (team_colour == "yellow")
707                 return COLOR_TEAM3;
708
709         if (team_colour == "pink")
710                 return COLOR_TEAM4;
711
712         if (team_colour == "auto")
713                 return 0;
714
715         return -1;
716 }
717
718 float NumberToTeamNumber(float number)
719 {
720         if (number == 1)
721                 return COLOR_TEAM1;
722
723         if (number == 2)
724                 return COLOR_TEAM2;
725
726         if (number == 3)
727                 return COLOR_TEAM3;
728
729         if (number == 4)
730                 return COLOR_TEAM4;
731
732         return -1;
733 }
734
735 #define CENTERPRIO_POINT 1
736 #define CENTERPRIO_SPAM 2
737 #define CENTERPRIO_VOTE 4
738 #define CENTERPRIO_NORMAL 5
739 #define CENTERPRIO_SHIELDING 7
740 #define CENTERPRIO_MAPVOTE 9
741 #define CENTERPRIO_IDLEKICK 50
742 #define CENTERPRIO_ADMIN 99
743 .float centerprint_priority;
744 .float centerprint_expires;
745 void centerprint_atprio(entity e, float prio, string s)
746 {
747     if (intermission_running)
748         if (prio < CENTERPRIO_MAPVOTE)
749             return;
750     if (time > e.centerprint_expires)
751         e.centerprint_priority = 0;
752     if (prio >= e.centerprint_priority)
753     {
754         e.centerprint_priority = prio;
755         if (timeoutStatus == 2)
756             e.centerprint_expires = time + (e.cvar_scr_centertime * TIMEOUT_SLOWMO_VALUE);
757         else
758             e.centerprint_expires = time + e.cvar_scr_centertime;
759         centerprint_builtin(e, s);
760     }
761 }
762 void centerprint_expire(entity e, float prio)
763 {
764     if (prio == e.centerprint_priority)
765     {
766         e.centerprint_priority = 0;
767         centerprint_builtin(e, "");
768     }
769 }
770 void centerprint(entity e, string s)
771 {
772     centerprint_atprio(e, CENTERPRIO_NORMAL, s);
773 }
774
775 // decolorizes and team colors the player name when needed
776 string playername(entity p)
777 {
778     string t;
779     if (teams_matter && !intermission_running && p.classname == "player")
780     {
781         t = Team_ColorCode(p.team);
782         return strcat(t, strdecolorize(p.netname));
783     }
784     else
785         return p.netname;
786 }
787
788 vector randompos(vector m1, vector m2)
789 {
790     local vector v;
791     m2 = m2 - m1;
792     v_x = m2_x * random() + m1_x;
793     v_y = m2_y * random() + m1_y;
794     v_z = m2_z * random() + m1_z;
795     return  v;
796 };
797
798 //#NO AUTOCVARS START
799
800 float g_pickup_shells;
801 float g_pickup_shells_max;
802 float g_pickup_nails;
803 float g_pickup_nails_max;
804 float g_pickup_rockets;
805 float g_pickup_rockets_max;
806 float g_pickup_cells;
807 float g_pickup_cells_max;
808 float g_pickup_fuel;
809 float g_pickup_fuel_jetpack;
810 float g_pickup_fuel_max;
811 float g_pickup_armorsmall;
812 float g_pickup_armorsmall_max;
813 float g_pickup_armorsmall_anyway;
814 float g_pickup_armormedium;
815 float g_pickup_armormedium_max;
816 float g_pickup_armormedium_anyway;
817 float g_pickup_armorbig;
818 float g_pickup_armorbig_max;
819 float g_pickup_armorbig_anyway;
820 float g_pickup_armorlarge;
821 float g_pickup_armorlarge_max;
822 float g_pickup_armorlarge_anyway;
823 float g_pickup_healthsmall;
824 float g_pickup_healthsmall_max;
825 float g_pickup_healthsmall_anyway;
826 float g_pickup_healthmedium;
827 float g_pickup_healthmedium_max;
828 float g_pickup_healthmedium_anyway;
829 float g_pickup_healthlarge;
830 float g_pickup_healthlarge_max;
831 float g_pickup_healthlarge_anyway;
832 float g_pickup_healthmega;
833 float g_pickup_healthmega_max;
834 float g_pickup_healthmega_anyway;
835 float g_pickup_ammo_anyway;
836 float g_pickup_weapons_anyway;
837 float g_weaponarena;
838 float g_weaponarena_random;
839 float g_weaponarena_random_with_laser;
840 string g_weaponarena_list;
841 float g_weaponspeedfactor;
842 float g_weaponratefactor;
843 float g_weapondamagefactor;
844 float g_weaponforcefactor;
845 float g_weaponspreadfactor;
846
847 float start_weapons;
848 float start_items;
849 float start_ammo_shells;
850 float start_ammo_nails;
851 float start_ammo_rockets;
852 float start_ammo_cells;
853 float start_ammo_fuel;
854 float start_health;
855 float start_armorvalue;
856 float warmup_start_weapons;
857 float warmup_start_ammo_shells;
858 float warmup_start_ammo_nails;
859 float warmup_start_ammo_rockets;
860 float warmup_start_ammo_cells;
861 float warmup_start_ammo_fuel;
862 float warmup_start_health;
863 float warmup_start_armorvalue;
864 float g_weapon_stay;
865 float g_ghost_items;
866
867 entity get_weaponinfo(float w);
868
869 float want_weapon(string cvarprefix, entity weaponinfo, float allguns)
870 {
871         var float i = weaponinfo.weapon;
872
873         if (!i)
874                 return 0;
875
876         var float t = cvar(strcat(cvarprefix, weaponinfo.netname));
877
878         if (t < 0) // "default" weapon selection
879         {
880                 if (g_lms || g_ca || allguns)
881                         t = (weaponinfo.spawnflags & WEP_FLAG_NORMAL);
882                 else if(t < -1)
883                         t = 0;
884                 else if (g_cts)
885                         t = (i == WEP_SHOTGUN);
886                 else if (g_nexball)
887                         t = 0; // weapon is set a few lines later
888                 else
889                         t = (i == WEP_LASER || i == WEP_SHOTGUN);
890                 if(g_grappling_hook) // if possible, redirect off-hand hook to on-hand hook
891                         t |= (i == WEP_HOOK);
892         }
893
894         // we cannot disable porto in Nexball, we must force it
895         if(g_nexball && i == WEP_PORTO)
896                 t = 1;
897
898         return t;
899 }
900
901 void readplayerstartcvars()
902 {
903         entity e;
904         float i, j, t;
905         string s;
906
907         // initialize starting values for players
908         start_weapons = 0;
909         start_items = 0;
910         start_ammo_shells = 0;
911         start_ammo_nails = 0;
912         start_ammo_rockets = 0;
913         start_ammo_cells = 0;
914         start_health = cvar("g_balance_health_start");
915         start_armorvalue = cvar("g_balance_armor_start");
916
917         g_weaponarena = 0;
918         s = cvar_string("g_weaponarena");
919         if (s == "0" || s == "")
920         {
921                 if(g_lms || g_ca)
922                         s = "most";
923         }
924
925         if (s == "0" || s == "")
926         {
927                 // no arena
928         }
929         else if (s == "off")
930         {
931                 // forcibly turn off weaponarena
932         }
933         else if (s == "all")
934         {
935                 g_weaponarena_list = "All Weapons";
936                 for (j = WEP_FIRST; j <= WEP_LAST; ++j)
937                 {
938                         e = get_weaponinfo(j);
939                         g_weaponarena |= e.weapons;
940                         weapon_action(e.weapon, WR_PRECACHE);
941                 }
942         }
943         else if (s == "most")
944         {
945                 g_weaponarena_list = "Most Weapons";
946                 for (j = WEP_FIRST; j <= WEP_LAST; ++j)
947                 {
948                         e = get_weaponinfo(j);
949                         if (e.spawnflags & WEP_FLAG_NORMAL)
950                         {
951                                 g_weaponarena |= e.weapons;
952                                 weapon_action(e.weapon, WR_PRECACHE);
953                         }
954                 }
955         }
956         else if (s == "none")
957         {
958                 g_weaponarena_list = "No Weapons";
959                 g_weaponarena = WEPBIT_ALL + 1; // this supports no single weapon bit!
960         }
961         else
962         {
963                 t = tokenize_console(s);
964                 g_weaponarena_list = "";
965                 for (i = 0; i < t; ++i)
966                 {
967                         s = argv(i);
968                         for (j = WEP_FIRST; j <= WEP_LAST; ++j)
969                         {
970                                 e = get_weaponinfo(j);
971                                 if (e.netname == s)
972                                 {
973                                         g_weaponarena |= e.weapons;
974                                         weapon_action(e.weapon, WR_PRECACHE);
975                                         g_weaponarena_list = strcat(g_weaponarena_list, e.message, " & ");
976                                         break;
977                                 }
978                         }
979                         if (j > WEP_LAST)
980                         {
981                                 print("The weapon mutator list contains an unknown weapon ", s, ". Skipped.\n");
982                         }
983                 }
984                 g_weaponarena_list = strzone(substring(g_weaponarena_list, 0, strlen(g_weaponarena_list) - 3));
985         }
986
987         if(g_weaponarena)
988                 g_weaponarena_random = cvar("g_weaponarena_random");
989         else
990                 g_weaponarena_random = 0;
991         g_weaponarena_random_with_laser = cvar("g_weaponarena_random_with_laser");
992
993         if (g_weaponarena)
994         {
995                 start_weapons = g_weaponarena;
996                 if(!(g_lms || g_ca))
997                         start_items |= IT_UNLIMITED_AMMO;
998         }
999         else if (g_minstagib)
1000         {
1001                 start_health = 100;
1002                 start_armorvalue = 0;
1003                 start_weapons = WEPBIT_MINSTANEX;
1004                 weapon_action(WEP_MINSTANEX, WR_PRECACHE);
1005                 g_minstagib_invis_alpha = cvar("g_minstagib_invis_alpha");
1006
1007                 if (g_minstagib_invis_alpha <= 0)
1008                         g_minstagib_invis_alpha = -1;
1009         }
1010         else
1011         {
1012                 for (i = WEP_FIRST; i <= WEP_LAST; ++i)
1013                 {
1014                         e = get_weaponinfo(i);
1015                         if(want_weapon("g_start_weapon_", e, FALSE))
1016                                 start_weapons |= e.weapons;
1017                 }
1018         }
1019
1020         if(!cvar("g_use_ammunition"))
1021                 start_items |= IT_UNLIMITED_AMMO;
1022
1023         if(g_minstagib)
1024         {
1025                 start_ammo_cells = cvar("g_minstagib_ammo_start");
1026                 start_ammo_fuel = cvar("g_start_ammo_fuel");
1027         }
1028         else if(start_items & IT_UNLIMITED_WEAPON_AMMO)
1029         {
1030                 start_ammo_rockets = 999;
1031                 start_ammo_shells = 999;
1032                 start_ammo_cells = 999;
1033                 start_ammo_nails = 999;
1034                 start_ammo_fuel = 999;
1035         }
1036         else
1037         {
1038                 if(g_lms || g_ca)
1039                 {
1040                         start_ammo_shells = cvar("g_lms_start_ammo_shells");
1041                         start_ammo_nails = cvar("g_lms_start_ammo_nails");
1042                         start_ammo_rockets = cvar("g_lms_start_ammo_rockets");
1043                         start_ammo_cells = cvar("g_lms_start_ammo_cells");
1044                         start_ammo_fuel = cvar("g_lms_start_ammo_fuel");
1045                 }
1046                 else
1047                 {
1048                         start_ammo_shells = cvar("g_start_ammo_shells");
1049                         start_ammo_nails = cvar("g_start_ammo_nails");
1050                         start_ammo_rockets = cvar("g_start_ammo_rockets");
1051                         start_ammo_cells = cvar("g_start_ammo_cells");
1052                         start_ammo_fuel = cvar("g_start_ammo_fuel");
1053                 }
1054         }
1055
1056         if (g_lms || g_ca)
1057         {
1058                 start_health = cvar("g_lms_start_health");
1059                 start_armorvalue = cvar("g_lms_start_armor");
1060         }
1061
1062         if (inWarmupStage)
1063         {
1064                 warmup_start_ammo_shells = start_ammo_shells;
1065                 warmup_start_ammo_nails = start_ammo_nails;
1066                 warmup_start_ammo_rockets = start_ammo_rockets;
1067                 warmup_start_ammo_cells = start_ammo_cells;
1068                 warmup_start_ammo_fuel = start_ammo_fuel;
1069                 warmup_start_health = start_health;
1070                 warmup_start_armorvalue = start_armorvalue;
1071                 warmup_start_weapons = start_weapons;
1072
1073                 if (!g_weaponarena && !g_minstagib && !g_ca)
1074                 {
1075                         warmup_start_ammo_shells = cvar("g_warmup_start_ammo_shells");
1076                         warmup_start_ammo_cells = cvar("g_warmup_start_ammo_cells");
1077                         warmup_start_ammo_nails = cvar("g_warmup_start_ammo_nails");
1078                         warmup_start_ammo_rockets = cvar("g_warmup_start_ammo_rockets");
1079                         warmup_start_ammo_fuel = cvar("g_warmup_start_ammo_fuel");
1080                         warmup_start_health = cvar("g_warmup_start_health");
1081                         warmup_start_armorvalue = cvar("g_warmup_start_armor");
1082                         warmup_start_weapons = 0;
1083                         for (i = WEP_FIRST; i <= WEP_LAST; ++i)
1084                         {
1085                                 e = get_weaponinfo(i);
1086                                 if(want_weapon("g_start_weapon_", e, cvar("g_warmup_allguns")))
1087                                         warmup_start_weapons |= e.weapons;
1088                         }
1089                 }
1090         }
1091
1092         if (g_jetpack || (g_grappling_hook && (start_weapons & WEPBIT_HOOK)))
1093         {
1094                 g_grappling_hook = 0; // these two can't coexist, as they use the same button
1095                 start_items |= IT_FUEL_REGEN;
1096                 start_ammo_fuel = max(start_ammo_fuel, cvar("g_balance_fuel_rotstable"));
1097                 warmup_start_ammo_fuel = max(warmup_start_ammo_fuel, cvar("g_balance_fuel_rotstable"));
1098         }
1099
1100         if (g_jetpack)
1101                 start_items |= IT_JETPACK;
1102
1103         if (g_weapon_stay == 2)
1104         {
1105                 if (!start_ammo_shells) start_ammo_shells = g_pickup_shells;
1106                 if (!start_ammo_nails) start_ammo_nails = g_pickup_nails;
1107                 if (!start_ammo_cells) start_ammo_cells = g_pickup_cells;
1108                 if (!start_ammo_rockets) start_ammo_rockets = g_pickup_rockets;
1109                 if (!start_ammo_fuel) start_ammo_fuel = g_pickup_fuel;
1110                 if (!warmup_start_ammo_shells) warmup_start_ammo_shells = g_pickup_shells;
1111                 if (!warmup_start_ammo_nails) warmup_start_ammo_nails = g_pickup_nails;
1112                 if (!warmup_start_ammo_cells) warmup_start_ammo_cells = g_pickup_cells;
1113                 if (!warmup_start_ammo_rockets) warmup_start_ammo_rockets = g_pickup_rockets;
1114                 if (!warmup_start_ammo_fuel) warmup_start_ammo_fuel = g_pickup_fuel;
1115         }
1116
1117         MUTATOR_CALLHOOK(SetStartItems);
1118
1119         for (i = WEP_FIRST; i <= WEP_LAST; ++i)
1120         {
1121                 e = get_weaponinfo(i);
1122                 if(e.weapons & (start_weapons | warmup_start_weapons))
1123                         weapon_action(e.weapon, WR_PRECACHE);
1124         }
1125
1126         start_ammo_shells = max(0, start_ammo_shells);
1127         start_ammo_nails = max(0, start_ammo_nails);
1128         start_ammo_cells = max(0, start_ammo_cells);
1129         start_ammo_rockets = max(0, start_ammo_rockets);
1130         start_ammo_fuel = max(0, start_ammo_fuel);
1131
1132         warmup_start_ammo_shells = max(0, warmup_start_ammo_shells);
1133         warmup_start_ammo_nails = max(0, warmup_start_ammo_nails);
1134         warmup_start_ammo_cells = max(0, warmup_start_ammo_cells);
1135         warmup_start_ammo_rockets = max(0, warmup_start_ammo_rockets);
1136         warmup_start_ammo_fuel = max(0, warmup_start_ammo_fuel);
1137 }
1138
1139 float g_bugrigs;
1140 float g_bugrigs_planar_movement;
1141 float g_bugrigs_planar_movement_car_jumping;
1142 float g_bugrigs_reverse_spinning;
1143 float g_bugrigs_reverse_speeding;
1144 float g_bugrigs_reverse_stopping;
1145 float g_bugrigs_air_steering;
1146 float g_bugrigs_angle_smoothing;
1147 float g_bugrigs_friction_floor;
1148 float g_bugrigs_friction_brake;
1149 float g_bugrigs_friction_air;
1150 float g_bugrigs_accel;
1151 float g_bugrigs_speed_ref;
1152 float g_bugrigs_speed_pow;
1153 float g_bugrigs_steer;
1154
1155 float g_touchexplode;
1156 float g_touchexplode_radius;
1157 float g_touchexplode_damage;
1158 float g_touchexplode_edgedamage;
1159 float g_touchexplode_force;
1160
1161 float sv_autotaunt;
1162 float sv_taunt;
1163
1164 float sv_pitch_min;
1165 float sv_pitch_max;
1166 float sv_pitch_fixyaw;
1167
1168 string GetGametype(); // g_world.qc
1169 void readlevelcvars(void)
1170 {
1171         // first load all the mutators
1172         if(cvar("g_nix"))
1173                 MUTATOR_ADD(mutator_nix);
1174         if(cvar("g_dodging"))
1175                 MUTATOR_ADD(mutator_dodging);
1176         if(cvar("g_rocket_flying"))
1177                 MUTATOR_ADD(mutator_rocketflying);
1178         if(cvar("g_vampire"))
1179                 MUTATOR_ADD(mutator_vampire);
1180
1181         if(cvar("sv_allow_fullbright"))
1182                 serverflags |= SERVERFLAG_ALLOW_FULLBRIGHT;
1183
1184     g_bugrigs = cvar("g_bugrigs");
1185     g_bugrigs_planar_movement = cvar("g_bugrigs_planar_movement");
1186     g_bugrigs_planar_movement_car_jumping = cvar("g_bugrigs_planar_movement_car_jumping");
1187     g_bugrigs_reverse_spinning = cvar("g_bugrigs_reverse_spinning");
1188     g_bugrigs_reverse_speeding = cvar("g_bugrigs_reverse_speeding");
1189     g_bugrigs_reverse_stopping = cvar("g_bugrigs_reverse_stopping");
1190     g_bugrigs_air_steering = cvar("g_bugrigs_air_steering");
1191     g_bugrigs_angle_smoothing = cvar("g_bugrigs_angle_smoothing");
1192     g_bugrigs_friction_floor = cvar("g_bugrigs_friction_floor");
1193     g_bugrigs_friction_brake = cvar("g_bugrigs_friction_brake");
1194     g_bugrigs_friction_air = cvar("g_bugrigs_friction_air");
1195     g_bugrigs_accel = cvar("g_bugrigs_accel");
1196     g_bugrigs_speed_ref = cvar("g_bugrigs_speed_ref");
1197     g_bugrigs_speed_pow = cvar("g_bugrigs_speed_pow");
1198     g_bugrigs_steer = cvar("g_bugrigs_steer");
1199
1200     g_touchexplode = cvar("g_touchexplode");
1201     g_touchexplode_radius = cvar("g_touchexplode_radius");
1202     g_touchexplode_damage = cvar("g_touchexplode_damage");
1203     g_touchexplode_edgedamage = cvar("g_touchexplode_edgedamage");
1204     g_touchexplode_force = cvar("g_touchexplode_force");
1205
1206 #ifdef ALLOW_FORCEMODELS
1207         sv_clforceplayermodels = cvar("sv_clforceplayermodels");
1208 #endif
1209         sv_loddistance1 = cvar("sv_loddistance1");
1210         sv_loddistance2 = cvar("sv_loddistance2");
1211
1212         if(sv_loddistance2 <= sv_loddistance1)
1213                 sv_loddistance2 = 1073741824; // enough to turn off LOD 2 reliably
1214
1215         sv_clones = cvar("sv_clones");
1216         sv_gentle = cvar("sv_gentle");
1217         sv_foginterval = cvar("sv_foginterval");
1218         g_cloaked = cvar("g_cloaked");
1219     if(g_cts)
1220         g_cloaked = 1; // always enable cloak in CTS
1221         g_jump_grunt = cvar("g_jump_grunt");
1222         g_footsteps = cvar("g_footsteps");
1223         g_grappling_hook = cvar("g_grappling_hook");
1224         g_jetpack = cvar("g_jetpack");
1225         g_midair = cvar("g_midair");
1226         g_minstagib = cvar("g_minstagib");
1227         g_norecoil = cvar("g_norecoil");
1228         g_bloodloss = cvar("g_bloodloss");
1229         sv_maxidle = cvar("sv_maxidle");
1230         sv_maxidle_spectatorsareidle = cvar("sv_maxidle_spectatorsareidle");
1231         sv_pogostick = cvar("sv_pogostick");
1232         g_ctf_reverse = cvar("g_ctf_reverse");
1233         sv_autotaunt = cvar("sv_autotaunt");
1234         sv_taunt = cvar("sv_taunt");
1235
1236         inWarmupStage = cvar("g_warmup");
1237         g_warmup_limit = cvar("g_warmup_limit");
1238         g_warmup_allguns = cvar("g_warmup_allguns");
1239         g_warmup_allow_timeout = cvar("g_warmup_allow_timeout");
1240
1241         if ((g_race && g_race_qualifying == 2) || g_runematch || g_arena || g_assault || cvar("g_campaign"))
1242                 inWarmupStage = 0; // these modes cannot work together, sorry
1243
1244         g_pickup_respawntime_weapon = cvar("g_pickup_respawntime_weapon");
1245         g_pickup_respawntime_ammo = cvar("g_pickup_respawntime_ammo");
1246         g_pickup_respawntime_short = cvar("g_pickup_respawntime_short");
1247         g_pickup_respawntime_medium = cvar("g_pickup_respawntime_medium");
1248         g_pickup_respawntime_long = cvar("g_pickup_respawntime_long");
1249         g_pickup_respawntime_powerup = cvar("g_pickup_respawntime_powerup");
1250         g_pickup_respawntimejitter_weapon = cvar("g_pickup_respawntimejitter_weapon");
1251         g_pickup_respawntimejitter_ammo = cvar("g_pickup_respawntimejitter_ammo");
1252         g_pickup_respawntimejitter_short = cvar("g_pickup_respawntimejitter_short");
1253         g_pickup_respawntimejitter_medium = cvar("g_pickup_respawntimejitter_medium");
1254         g_pickup_respawntimejitter_long = cvar("g_pickup_respawntimejitter_long");
1255         g_pickup_respawntimejitter_powerup = cvar("g_pickup_respawntimejitter_powerup");
1256
1257         g_weaponspeedfactor = cvar("g_weaponspeedfactor");
1258         g_weaponratefactor = cvar("g_weaponratefactor");
1259         g_weapondamagefactor = cvar("g_weapondamagefactor");
1260         g_weaponforcefactor = cvar("g_weaponforcefactor");
1261         g_weaponspreadfactor = cvar("g_weaponspreadfactor");
1262
1263         g_pickup_shells = cvar("g_pickup_shells");
1264         g_pickup_shells_max = cvar("g_pickup_shells_max");
1265         g_pickup_nails = cvar("g_pickup_nails");
1266         g_pickup_nails_max = cvar("g_pickup_nails_max");
1267         g_pickup_rockets = cvar("g_pickup_rockets");
1268         g_pickup_rockets_max = cvar("g_pickup_rockets_max");
1269         g_pickup_cells = cvar("g_pickup_cells");
1270         g_pickup_cells_max = cvar("g_pickup_cells_max");
1271         g_pickup_fuel = cvar("g_pickup_fuel");
1272         g_pickup_fuel_jetpack = cvar("g_pickup_fuel_jetpack");
1273         g_pickup_fuel_max = cvar("g_pickup_fuel_max");
1274         g_pickup_armorsmall = cvar("g_pickup_armorsmall");
1275         g_pickup_armorsmall_max = cvar("g_pickup_armorsmall_max");
1276         g_pickup_armorsmall_anyway = cvar("g_pickup_armorsmall_anyway");
1277         g_pickup_armormedium = cvar("g_pickup_armormedium");
1278         g_pickup_armormedium_max = cvar("g_pickup_armormedium_max");
1279         g_pickup_armormedium_anyway = cvar("g_pickup_armormedium_anyway");
1280         g_pickup_armorbig = cvar("g_pickup_armorbig");
1281         g_pickup_armorbig_max = cvar("g_pickup_armorbig_max");
1282         g_pickup_armorbig_anyway = cvar("g_pickup_armorbig_anyway");
1283         g_pickup_armorlarge = cvar("g_pickup_armorlarge");
1284         g_pickup_armorlarge_max = cvar("g_pickup_armorlarge_max");
1285         g_pickup_armorlarge_anyway = cvar("g_pickup_armorlarge_anyway");
1286         g_pickup_healthsmall = cvar("g_pickup_healthsmall");
1287         g_pickup_healthsmall_max = cvar("g_pickup_healthsmall_max");
1288         g_pickup_healthsmall_anyway = cvar("g_pickup_healthsmall_anyway");
1289         g_pickup_healthmedium = cvar("g_pickup_healthmedium");
1290         g_pickup_healthmedium_max = cvar("g_pickup_healthmedium_max");
1291         g_pickup_healthmedium_anyway = cvar("g_pickup_healthmedium_anyway");
1292         g_pickup_healthlarge = cvar("g_pickup_healthlarge");
1293         g_pickup_healthlarge_max = cvar("g_pickup_healthlarge_max");
1294         g_pickup_healthlarge_anyway = cvar("g_pickup_healthlarge_anyway");
1295         g_pickup_healthmega = cvar("g_pickup_healthmega");
1296         g_pickup_healthmega_max = cvar("g_pickup_healthmega_max");
1297         g_pickup_healthmega_anyway = cvar("g_pickup_healthmega_anyway");
1298
1299         g_pickup_ammo_anyway = cvar("g_pickup_ammo_anyway");
1300         g_pickup_weapons_anyway = cvar("g_pickup_weapons_anyway");
1301
1302         g_pinata = cvar("g_pinata");
1303
1304     g_weapon_stay = cvar(strcat("g_", GetGametype(), "_weapon_stay"));
1305     if(!g_weapon_stay)
1306         g_weapon_stay = cvar("g_weapon_stay");
1307
1308         if (!g_weapon_stay && (cvar("deathmatch") == 2))
1309                 g_weapon_stay = 1;
1310
1311         g_ghost_items = cvar("g_ghost_items");
1312
1313         if(g_ghost_items >= 1)
1314                 g_ghost_items = 0.25; // default alpha value
1315
1316         if not(inWarmupStage && !g_ca)
1317                 game_starttime = cvar("g_start_delay");
1318
1319         sv_pitch_min = cvar("sv_pitch_min");
1320         sv_pitch_max = cvar("sv_pitch_max");
1321         sv_pitch_fixyaw = cvar("sv_pitch_fixyaw");
1322
1323         readplayerstartcvars();
1324 }
1325
1326 //#NO AUTOCVARS END
1327
1328 // Sound functions
1329 string precache_sound (string s) = #19;
1330 void(entity e, float chan, string samp, float vol, float atten) sound_builtin = #8;
1331 float precache_sound_index (string s) = #19;
1332
1333 #define SND_VOLUME      1
1334 #define SND_ATTENUATION 2
1335 #define SND_LARGEENTITY 8
1336 #define SND_LARGESOUND  16
1337
1338 float sound_allowed(float dest, entity e)
1339 {
1340     // sounds from world may always pass
1341     for (;;)
1342     {
1343         if (e.classname == "body")
1344             e = e.enemy;
1345         if (e.owner && e.owner != e)
1346             e = e.owner;
1347         else
1348             break;
1349     }
1350     // sounds to self may always pass
1351     if (dest == MSG_ONE)
1352         if (e == msg_entity)
1353             return TRUE;
1354     // sounds by players can be removed
1355     if (autocvar_bot_sound_monopoly)
1356         if (clienttype(e) == CLIENTTYPE_REAL)
1357             return FALSE;
1358     // anything else may pass
1359     return TRUE;
1360 }
1361
1362 void sound(entity e, float chan, string samp, float vol, float atten)
1363 {
1364     if (!sound_allowed(MSG_BROADCAST, e))
1365         return;
1366     sound_builtin(e, chan, samp, vol, atten);
1367 }
1368 void soundtoat(float dest, entity e, vector o, float chan, string samp, float vol, float atten)
1369 {
1370     float entno, idx;
1371
1372     if (!sound_allowed(dest, e))
1373         return;
1374
1375     entno = num_for_edict(e);
1376     idx = precache_sound_index(samp);
1377
1378     float sflags;
1379     sflags = 0;
1380
1381     atten = floor(atten * 64);
1382     vol = floor(vol * 255);
1383
1384     if (vol != 255)
1385         sflags |= SND_VOLUME;
1386     if (atten != 64)
1387         sflags |= SND_ATTENUATION;
1388     if (entno >= 8192)
1389         sflags |= SND_LARGEENTITY;
1390     if (idx >= 256)
1391         sflags |= SND_LARGESOUND;
1392
1393     WriteByte(dest, SVC_SOUND);
1394     WriteByte(dest, sflags);
1395     if (sflags & SND_VOLUME)
1396         WriteByte(dest, vol);
1397     if (sflags & SND_ATTENUATION)
1398         WriteByte(dest, atten);
1399     if (sflags & SND_LARGEENTITY)
1400     {
1401         WriteShort(dest, entno);
1402         WriteByte(dest, chan);
1403     }
1404     else
1405     {
1406         WriteShort(dest, entno * 8 + chan);
1407     }
1408     if (sflags & SND_LARGESOUND)
1409         WriteShort(dest, idx);
1410     else
1411         WriteByte(dest, idx);
1412
1413     WriteCoord(dest, o_x);
1414     WriteCoord(dest, o_y);
1415     WriteCoord(dest, o_z);
1416 }
1417 void soundto(float dest, entity e, float chan, string samp, float vol, float atten)
1418 {
1419     vector o;
1420
1421     if (!sound_allowed(dest, e))
1422         return;
1423
1424     o = e.origin + 0.5 * (e.mins + e.maxs);
1425     soundtoat(dest, e, o, chan, samp, vol, atten);
1426 }
1427 void soundat(entity e, vector o, float chan, string samp, float vol, float atten)
1428 {
1429     soundtoat(MSG_BROADCAST, e, o, chan, samp, vol, atten);
1430 }
1431 void stopsoundto(float dest, entity e, float chan)
1432 {
1433     float entno;
1434
1435     if (!sound_allowed(dest, e))
1436         return;
1437
1438     entno = num_for_edict(e);
1439
1440     if (entno >= 8192)
1441     {
1442         float idx, sflags;
1443         idx = precache_sound_index("misc/null.wav");
1444         sflags = SND_LARGEENTITY;
1445         if (idx >= 256)
1446             sflags |= SND_LARGESOUND;
1447         WriteByte(dest, SVC_SOUND);
1448         WriteByte(dest, sflags);
1449         WriteShort(dest, entno);
1450         WriteByte(dest, chan);
1451         if (sflags & SND_LARGESOUND)
1452             WriteShort(dest, idx);
1453         else
1454             WriteByte(dest, idx);
1455         WriteCoord(dest, e.origin_x);
1456         WriteCoord(dest, e.origin_y);
1457         WriteCoord(dest, e.origin_z);
1458     }
1459     else
1460     {
1461         WriteByte(dest, SVC_STOPSOUND);
1462         WriteShort(dest, entno * 8 + chan);
1463     }
1464 }
1465 void stopsound(entity e, float chan)
1466 {
1467     if (!sound_allowed(MSG_BROADCAST, e))
1468         return;
1469
1470     stopsoundto(MSG_BROADCAST, e, chan); // unreliable, gets there fast
1471     stopsoundto(MSG_ALL, e, chan); // in case of packet loss
1472 }
1473
1474 void play2(entity e, string filename)
1475 {
1476     //stuffcmd(e, strcat("play2 ", filename, "\n"));
1477     msg_entity = e;
1478     soundtoat(MSG_ONE, world, '0 0 0', CHAN_AUTO, filename, VOL_BASE, ATTN_NONE);
1479 }
1480
1481 // use this one if you might be causing spam (e.g. from touch functions that might get called more than once per frame)
1482 .float spamtime;
1483 float spamsound(entity e, float chan, string samp, float vol, float atten)
1484 {
1485     if (!sound_allowed(MSG_BROADCAST, e))
1486         return FALSE;
1487
1488     if (time > e.spamtime)
1489     {
1490         e.spamtime = time;
1491         sound(e, chan, samp, vol, atten);
1492         return TRUE;
1493     }
1494     return FALSE;
1495 }
1496
1497 void play2team(float t, string filename)
1498 {
1499     local entity head;
1500
1501     if (autocvar_bot_sound_monopoly)
1502         return;
1503
1504     FOR_EACH_REALPLAYER(head)
1505     {
1506         if (head.team == t)
1507             play2(head, filename);
1508     }
1509 }
1510
1511 void play2all(string samp)
1512 {
1513     if (autocvar_bot_sound_monopoly)
1514         return;
1515
1516     sound(world, CHAN_AUTO, samp, VOL_BASE, ATTN_NONE);
1517 }
1518
1519 void PrecachePlayerSounds(string f);
1520 void precache_playermodel(string m)
1521 {
1522         float globhandle, i, n;
1523         string f;
1524
1525         if(substring(m, -9,5) == "_lod1")
1526                 return;
1527         if(substring(m, -9,5) == "_lod2")
1528                 return;
1529         precache_model(m);
1530         if(sv_loddistance1)
1531         {
1532                 f = strcat(substring(m, 0, -5), "_lod1", substring(m, -4, -1));
1533                 if(fexists(f))
1534                         precache_model(f);
1535                 f = strcat(substring(m, 0, -5), "_lod2", substring(m, -4, -1));
1536                 if(fexists(f))
1537                         precache_model(f);
1538         }
1539
1540         globhandle = search_begin(strcat(m, "_*.sounds"), TRUE, FALSE);
1541         if (globhandle < 0)
1542                 return;
1543         n = search_getsize(globhandle);
1544         for (i = 0; i < n; ++i)
1545         {
1546                 //print(search_getfilename(globhandle, i), "\n");
1547                 f = search_getfilename(globhandle, i);
1548                 PrecachePlayerSounds(f);
1549         }
1550         search_end(globhandle);
1551 }
1552 void precache_all_playermodels(string pattern)
1553 {
1554         float globhandle, i, n;
1555         string f;
1556
1557         globhandle = search_begin(pattern, TRUE, FALSE);
1558         if (globhandle < 0)
1559                 return;
1560         n = search_getsize(globhandle);
1561         for (i = 0; i < n; ++i)
1562         {
1563                 //print(search_getfilename(globhandle, i), "\n");
1564                 f = search_getfilename(globhandle, i);
1565                 precache_playermodel(f);
1566         }
1567         search_end(globhandle);
1568 }
1569
1570 void precache()
1571 {
1572     // gamemode related things
1573     precache_model ("models/misc/chatbubble.spr");
1574     precache_model ("models/misc/teambubble.spr");
1575     if (g_runematch)
1576     {
1577         precache_model ("models/runematch/curse.mdl");
1578         precache_model ("models/runematch/rune.mdl");
1579     }
1580
1581 #ifdef TTURRETS_ENABLED
1582     if (autocvar_g_turrets)
1583         turrets_precash();
1584 #endif
1585
1586     // Precache all player models if desired
1587     if (autocvar_sv_precacheplayermodels)
1588     {
1589         PrecachePlayerSounds("sound/player/default.sounds");
1590         precache_all_playermodels("models/player/*.zym");
1591         precache_all_playermodels("models/player/*.dpm");
1592         precache_all_playermodels("models/player/*.md3");
1593         precache_all_playermodels("models/player/*.psk");
1594         precache_all_playermodels("models/player/*.iqm");
1595     }
1596
1597     if (autocvar_sv_defaultcharacter)
1598     {
1599         string s;
1600         s = autocvar_sv_defaultplayermodel_red;
1601         if (s != "")
1602             precache_playermodel(s);
1603         s = autocvar_sv_defaultplayermodel_blue;
1604         if (s != "")
1605             precache_playermodel(s);
1606         s = autocvar_sv_defaultplayermodel_yellow;
1607         if (s != "")
1608             precache_playermodel(s);
1609         s = autocvar_sv_defaultplayermodel_pink;
1610         if (s != "")
1611             precache_playermodel(s);
1612         s = autocvar_sv_defaultplayermodel;
1613         if (s != "")
1614             precache_playermodel(s);
1615     }
1616
1617     if (g_footsteps)
1618     {
1619         PrecacheGlobalSound((globalsound_step = "misc/footstep0 6"));
1620         PrecacheGlobalSound((globalsound_metalstep = "misc/metalfootstep0 6"));
1621     }
1622
1623     // gore and miscellaneous sounds
1624     //precache_sound ("misc/h2ohit.wav");
1625     precache_model ("models/hook.md3");
1626     precache_sound ("misc/armorimpact.wav");
1627     precache_sound ("misc/bodyimpact1.wav");
1628     precache_sound ("misc/bodyimpact2.wav");
1629     precache_sound ("misc/gib.wav");
1630     precache_sound ("misc/gib_splat01.wav");
1631     precache_sound ("misc/gib_splat02.wav");
1632     precache_sound ("misc/gib_splat03.wav");
1633     precache_sound ("misc/gib_splat04.wav");
1634     PrecacheGlobalSound((globalsound_fall = "misc/hitground 4"));
1635     PrecacheGlobalSound((globalsound_metalfall = "misc/metalhitground 4"));
1636     precache_sound ("misc/null.wav");
1637     precache_sound ("misc/spawn.wav");
1638     precache_sound ("misc/talk.wav");
1639     precache_sound ("misc/teleport.wav");
1640     precache_sound ("misc/poweroff.wav");
1641     precache_sound ("player/lava.wav");
1642     precache_sound ("player/slime.wav");
1643
1644     if (g_jetpack)
1645         precache_sound ("misc/jetpack_fly.wav");
1646
1647     precache_model ("models/sprites/0.spr32");
1648     precache_model ("models/sprites/1.spr32");
1649     precache_model ("models/sprites/2.spr32");
1650     precache_model ("models/sprites/3.spr32");
1651     precache_model ("models/sprites/4.spr32");
1652     precache_model ("models/sprites/5.spr32");
1653     precache_model ("models/sprites/6.spr32");
1654     precache_model ("models/sprites/7.spr32");
1655     precache_model ("models/sprites/8.spr32");
1656     precache_model ("models/sprites/9.spr32");
1657     precache_model ("models/sprites/10.spr32");
1658
1659     // common weapon precaches
1660         precache_sound ("weapons/reload.wav"); // until weapons have individual reload sounds, precache the reload sound here
1661     precache_sound ("weapons/weapon_switch.wav");
1662     precache_sound ("weapons/weaponpickup.wav");
1663     precache_sound ("weapons/unavailable.wav");
1664     precache_sound ("weapons/dryfire.wav");
1665     if (g_grappling_hook)
1666     {
1667         precache_sound ("weapons/hook_fire.wav"); // hook
1668         precache_sound ("weapons/hook_impact.wav"); // hook
1669     }
1670
1671     if(autocvar_sv_precacheweapons)
1672     {
1673         //precache weapon models/sounds
1674         local float wep;
1675         wep = WEP_FIRST;
1676         while (wep <= WEP_LAST)
1677         {
1678             weapon_action(wep, WR_PRECACHE);
1679             wep = wep + 1;
1680         }
1681     }
1682
1683     precache_model("models/elaser.mdl");
1684     precache_model("models/laser.mdl");
1685     precache_model("models/ebomb.mdl");
1686
1687 #if 0
1688     // Disabled this code because it simply does not work (e.g. ignores bgmvolume, overlaps with "cd loop" controlled tracks).
1689
1690     if (!self.noise && self.music) // quake 3 uses the music field
1691         self.noise = self.music;
1692
1693     // plays music for the level if there is any
1694     if (self.noise)
1695     {
1696         precache_sound (self.noise);
1697         ambientsound ('0 0 0', self.noise, VOL_BASE, ATTN_NONE);
1698     }
1699 #endif
1700 }
1701
1702 // sorry, but using \ in macros breaks line numbers
1703 #define WRITESPECTATABLE_MSG_ONE_VARNAME(varname,statement) entity varname; varname = msg_entity; FOR_EACH_REALCLIENT(msg_entity) if(msg_entity == varname || (msg_entity.classname == STR_SPECTATOR && msg_entity.enemy == varname)) statement msg_entity = varname
1704 #define WRITESPECTATABLE_MSG_ONE(statement) WRITESPECTATABLE_MSG_ONE_VARNAME(oldmsg_entity, statement)
1705 #define WRITESPECTATABLE(msg,statement) if(msg == MSG_ONE) { WRITESPECTATABLE_MSG_ONE(statement); } else statement float WRITESPECTATABLE_workaround = 0
1706
1707 // WARNING: this kills the trace globals
1708 #define EXACTTRIGGER_TOUCH if(WarpZoneLib_ExactTrigger_Touch()) return
1709 #define EXACTTRIGGER_INIT  WarpZoneLib_ExactTrigger_Init()
1710
1711 #define INITPRIO_FIRST              0
1712 #define INITPRIO_GAMETYPE           0
1713 #define INITPRIO_GAMETYPE_FALLBACK  1
1714 #define INITPRIO_FINDTARGET        10
1715 #define INITPRIO_DROPTOFLOOR       20
1716 #define INITPRIO_SETLOCATION       90
1717 #define INITPRIO_LINKDOORS         91
1718 #define INITPRIO_LAST              99
1719
1720 .void(void) initialize_entity;
1721 .float initialize_entity_order;
1722 .entity initialize_entity_next;
1723 entity initialize_entity_first;
1724
1725 void make_safe_for_remove(entity e)
1726 {
1727     if (e.initialize_entity)
1728     {
1729         entity ent, prev;
1730         for (ent = initialize_entity_first; ent; )
1731         {
1732             if ((ent == e) || ((ent.classname == "initialize_entity") && (ent.enemy == e)))
1733             {
1734                 //print("make_safe_for_remove: getting rid of initializer ", etos(ent), "\n");
1735                 // skip it in linked list
1736                 if (prev)
1737                 {
1738                     prev.initialize_entity_next = ent.initialize_entity_next;
1739                     ent = prev.initialize_entity_next;
1740                 }
1741                 else
1742                 {
1743                     initialize_entity_first = ent.initialize_entity_next;
1744                     ent = initialize_entity_first;
1745                 }
1746             }
1747             else
1748             {
1749                 prev = ent;
1750                 ent = ent.initialize_entity_next;
1751             }
1752         }
1753     }
1754 }
1755
1756 void objerror(string s)
1757 {
1758     make_safe_for_remove(self);
1759     objerror_builtin(s);
1760 }
1761
1762 .float remove_except_protected_forbidden;
1763 void remove_except_protected(entity e)
1764 {
1765         if(e.remove_except_protected_forbidden)
1766                 error("not allowed to remove this at this point");
1767         remove_builtin(e);
1768 }
1769
1770 void remove_unsafely(entity e)
1771 {
1772     remove_builtin(e);
1773 }
1774
1775 void remove_safely(entity e)
1776 {
1777     make_safe_for_remove(e);
1778     remove_builtin(e);
1779 }
1780
1781 void InitializeEntity(entity e, void(void) func, float order)
1782 {
1783     entity prev, cur;
1784
1785     if (!e || e.initialize_entity)
1786     {
1787         // make a proxy initializer entity
1788         entity e_old;
1789         e_old = e;
1790         e = spawn();
1791         e.classname = "initialize_entity";
1792         e.enemy = e_old;
1793     }
1794
1795     e.initialize_entity = func;
1796     e.initialize_entity_order = order;
1797
1798     cur = initialize_entity_first;
1799     for (;;)
1800     {
1801         if (!cur || cur.initialize_entity_order > order)
1802         {
1803             // insert between prev and cur
1804             if (prev)
1805                 prev.initialize_entity_next = e;
1806             else
1807                 initialize_entity_first = e;
1808             e.initialize_entity_next = cur;
1809             return;
1810         }
1811         prev = cur;
1812         cur = cur.initialize_entity_next;
1813     }
1814 }
1815 void InitializeEntitiesRun()
1816 {
1817     entity startoflist;
1818     startoflist = initialize_entity_first;
1819     initialize_entity_first = world;
1820     remove = remove_except_protected;
1821     for (self = startoflist; self; self = self.initialize_entity_next)
1822     {
1823         self.remove_except_protected_forbidden = 1;
1824     }
1825     for (self = startoflist; self; )
1826     {
1827         entity e;
1828         var void(void) func;
1829         e = self.initialize_entity_next;
1830         func = self.initialize_entity;
1831         self.initialize_entity_order = 0;
1832         self.initialize_entity = func_null;
1833         self.initialize_entity_next = world;
1834         self.remove_except_protected_forbidden = 0;
1835         if (self.classname == "initialize_entity")
1836         {
1837             entity e_old;
1838             e_old = self.enemy;
1839             remove_builtin(self);
1840             self = e_old;
1841         }
1842         //dprint("Delayed initialization: ", self.classname, "\n");
1843         if(func != func_null)
1844             func();
1845         else
1846         {
1847             eprint(self);
1848             backtrace(strcat("Null function in: ", self.classname, "\n"));
1849         }
1850         self = e;
1851     }
1852     remove = remove_unsafely;
1853 }
1854
1855 .float uncustomizeentityforclient_set;
1856 .void(void) uncustomizeentityforclient;
1857 void(void) SUB_Nullpointer = #0;
1858 void UncustomizeEntitiesRun()
1859 {
1860     entity oldself;
1861     oldself = self;
1862     for (self = world; (self = findfloat(self, uncustomizeentityforclient_set, 1)); )
1863         self.uncustomizeentityforclient();
1864     self = oldself;
1865 }
1866 void SetCustomizer(entity e, float(void) customizer, void(void) uncustomizer)
1867 {
1868     e.customizeentityforclient = customizer;
1869     e.uncustomizeentityforclient = uncustomizer;
1870     e.uncustomizeentityforclient_set = (uncustomizer != SUB_Nullpointer);
1871 }
1872
1873 .float nottargeted;
1874 #define IFTARGETED if(!self.nottargeted && self.targetname != "")
1875
1876 void() SUB_Remove;
1877 void Net_LinkEntity(entity e, float docull, float dt, float(entity, float) sendfunc)
1878 {
1879     vector mi, ma;
1880
1881     if (e.classname == "")
1882         e.classname = "net_linked";
1883
1884     if (e.model == "" || self.modelindex == 0)
1885     {
1886         mi = e.mins;
1887         ma = e.maxs;
1888         setmodel(e, "null");
1889         setsize(e, mi, ma);
1890     }
1891
1892     e.SendEntity = sendfunc;
1893     e.SendFlags = 0xFFFFFF;
1894
1895     if (!docull)
1896         e.effects |= EF_NODEPTHTEST;
1897
1898     if (dt)
1899     {
1900         e.nextthink = time + dt;
1901         e.think = SUB_Remove;
1902     }
1903 }
1904
1905 void adaptor_think2touch()
1906 {
1907     entity o;
1908     o = other;
1909     other = world;
1910     self.touch();
1911     other = o;
1912 }
1913
1914 void adaptor_think2use()
1915 {
1916     entity o, a;
1917     o = other;
1918     a = activator;
1919     activator = world;
1920     other = world;
1921     self.use();
1922     other = o;
1923     activator = a;
1924 }
1925
1926 void adaptor_think2use_hittype_splash() // for timed projectile detonation
1927 {
1928         if not(self.flags & FL_ONGROUND) // if onground, we ARE touching something, but HITTYPE_SPLASH is to be networked if the damage causing projectile is not touching ANYTHING
1929                 self.projectiledeathtype |= HITTYPE_SPLASH;
1930         adaptor_think2use();
1931 }
1932
1933 // deferred dropping
1934 void DropToFloor_Handler()
1935 {
1936     droptofloor_builtin();
1937     self.dropped_origin = self.origin;
1938 }
1939
1940 void droptofloor()
1941 {
1942     InitializeEntity(self, DropToFloor_Handler, INITPRIO_DROPTOFLOOR);
1943 }
1944
1945
1946
1947 float trace_hits_box_a0, trace_hits_box_a1;
1948
1949 float trace_hits_box_1d(float end, float thmi, float thma)
1950 {
1951     if (end == 0)
1952     {
1953         // just check if x is in range
1954         if (0 < thmi)
1955             return FALSE;
1956         if (0 > thma)
1957             return FALSE;
1958     }
1959     else
1960     {
1961         // do the trace with respect to x
1962         // 0 -> end has to stay in thmi -> thma
1963         trace_hits_box_a0 = max(trace_hits_box_a0, min(thmi / end, thma / end));
1964         trace_hits_box_a1 = min(trace_hits_box_a1, max(thmi / end, thma / end));
1965         if (trace_hits_box_a0 > trace_hits_box_a1)
1966             return FALSE;
1967     }
1968     return TRUE;
1969 }
1970
1971 float trace_hits_box(vector start, vector end, vector thmi, vector thma)
1972 {
1973     end -= start;
1974     thmi -= start;
1975     thma -= start;
1976     // now it is a trace from 0 to end
1977
1978     trace_hits_box_a0 = 0;
1979     trace_hits_box_a1 = 1;
1980
1981     if (!trace_hits_box_1d(end_x, thmi_x, thma_x))
1982         return FALSE;
1983     if (!trace_hits_box_1d(end_y, thmi_y, thma_y))
1984         return FALSE;
1985     if (!trace_hits_box_1d(end_z, thmi_z, thma_z))
1986         return FALSE;
1987
1988     return TRUE;
1989 }
1990
1991 float tracebox_hits_box(vector start, vector mi, vector ma, vector end, vector thmi, vector thma)
1992 {
1993     return trace_hits_box(start, end, thmi - ma, thma - mi);
1994 }
1995
1996 float SUB_NoImpactCheck()
1997 {
1998         // zero hitcontents = this is not the real impact, but either the
1999         // mirror-impact of something hitting the projectile instead of the
2000         // projectile hitting the something, or a touchareagrid one. Neither of
2001         // these stop the projectile from moving, so...
2002         if(trace_dphitcontents == 0)
2003         {
2004                 //dprint("A hit happened with zero hit contents... DEBUG THIS, this should never happen for projectiles! Projectile will self-destruct.\n");
2005                 dprint(sprintf(_("A hit from a projectile happened with no hit contents! DEBUG THIS, this should never happen for projectiles! Profectile will self-destruct. (edict: %d, classname: %s, origin: %s)\n"), num_for_edict(self), self.classname, vtos(self.origin)));
2006                 checkclient();
2007         }
2008     if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
2009         return 1;
2010     if (other == world && self.size != '0 0 0')
2011     {
2012         vector tic;
2013         tic = self.velocity * sys_frametime;
2014         tic = tic + normalize(tic) * vlen(self.maxs - self.mins);
2015         traceline(self.origin - tic, self.origin + tic, MOVE_NORMAL, self);
2016         if (trace_fraction >= 1)
2017         {
2018             dprint("Odd... did not hit...?\n");
2019         }
2020         else if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
2021         {
2022             dprint("Detected and prevented the sky-grapple bug.\n");
2023             return 1;
2024         }
2025     }
2026
2027     return 0;
2028 }
2029
2030 #define SUB_OwnerCheck() (other && (other == self.owner))
2031
2032 float WarpZone_Projectile_Touch_ImpactFilter_Callback()
2033 {
2034         if(SUB_OwnerCheck())
2035                 return TRUE;
2036         if(SUB_NoImpactCheck())
2037         {
2038                 remove(self);
2039                 return TRUE;
2040         }
2041         if(trace_ent && trace_ent.solid > SOLID_TRIGGER)
2042                 UpdateCSQCProjectileNextFrame(self);
2043         return FALSE;
2044 }
2045 #define PROJECTILE_TOUCH if(WarpZone_Projectile_Touch()) return
2046
2047 float MAX_IPBAN_URIS           = 16;
2048                               
2049 float URI_GET_DISCARD          = 0;
2050 float URI_GET_IPBAN            = 1;
2051 float URI_GET_IPBAN_END        = 16;
2052 float URI_GET_PLAYERSTATS_SENT = 17;
2053
2054 void URI_Get_Callback(float id, float status, string data)
2055 {
2056     dprint("Received HTTP request data for id ", ftos(id), "; status is ", ftos(status), "\nData is:\n");
2057     dprint(data);
2058     dprint("\nEnd of data.\n");
2059
2060     if (id == URI_GET_DISCARD)
2061     {
2062         // discard
2063     }
2064     else if (id >= URI_GET_IPBAN && id <= URI_GET_IPBAN_END)
2065     {
2066         // online ban list
2067         OnlineBanList_URI_Get_Callback(id, status, data);
2068     }
2069     else if (id == URI_GET_PLAYERSTATS_SENT)
2070     {
2071         PlayerStats_Sent_URI_Get_Callback(id, status, data);
2072     }
2073     else
2074     {
2075         print("Received HTTP request data for an invalid id ", ftos(id), ".\n");
2076     }
2077 }
2078
2079 void print_to(entity e, string s)
2080 {
2081     if (e)
2082         sprint(e, strcat(s, "\n"));
2083     else
2084         print(s, "\n");
2085 }
2086
2087 string uid2name(string myuid) {
2088         string s;
2089         s = db_get(ServerProgsDB, strcat("uid2name", myuid));
2090         
2091         if(s == "")
2092                 s = "^1Unregistered Player";
2093         return s;
2094 }
2095
2096 float race_readTime(string map, float pos)
2097 {
2098         string rr;
2099         if(g_cts)
2100                 rr = CTS_RECORD;
2101         else
2102                 rr = RACE_RECORD;
2103
2104         return stof(db_get(ServerProgsDB, strcat(map, rr, "time", ftos(pos))));
2105 }
2106
2107 string race_readUID(string map, float pos)
2108 {
2109         string rr;
2110         if(g_cts)
2111                 rr = CTS_RECORD;
2112         else
2113                 rr = RACE_RECORD;
2114
2115         return db_get(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(pos)));
2116 }
2117
2118 float race_readPos(string map, float t) {
2119         float i;
2120         for (i = 1; i <= RANKINGS_CNT; ++i)
2121                 if (race_readTime(map, i) == 0 || race_readTime(map, i) > t)
2122                         return i;
2123
2124         return 0; // pos is zero if unranked
2125 }
2126
2127 void race_writeTime(string map, float t, string myuid)
2128 {
2129         string rr;
2130         if(g_cts)
2131                 rr = CTS_RECORD;
2132         else
2133                 rr = RACE_RECORD;
2134
2135         float newpos;
2136         newpos = race_readPos(map, t);
2137
2138         float i, prevpos;
2139         for(i = 1; i <= RANKINGS_CNT; ++i)
2140         {
2141                 if(race_readUID(map, i) == myuid)
2142                         prevpos = i;
2143         }
2144         if (prevpos) { // player improved his existing record, only have to iterate on ranks between new and old recs
2145                 for (i = prevpos; i > newpos; --i) {
2146                         db_put(ServerProgsDB, strcat(map, rr, "time", ftos(i)), ftos(race_readTime(map, i - 1)));
2147                         db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(i)), race_readUID(map, i - 1));
2148                 }
2149         } else { // player has no ranked record yet
2150                 for (i = RANKINGS_CNT; i > newpos; --i) {
2151                         db_put(ServerProgsDB, strcat(map, rr, "time", ftos(i)), ftos(race_readTime(map, i - 1)));
2152                         db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(i)), race_readUID(map, i - 1));
2153                 }
2154         }
2155
2156         // store new time itself
2157         db_put(ServerProgsDB, strcat(map, rr, "time", ftos(newpos)), ftos(t));
2158         db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(newpos)), myuid);
2159 }
2160
2161 string race_readName(string map, float pos)
2162 {
2163         string rr;
2164         if(g_cts)
2165                 rr = CTS_RECORD;
2166         else
2167                 rr = RACE_RECORD;
2168
2169         return uid2name(db_get(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(pos))));
2170 }
2171
2172 string race_placeName(float pos) {
2173         if(floor((mod(pos, 100))/10) * 10 != 10) // examples: 12th, 111th, 213th will not execute this block
2174         {
2175                 if(mod(pos, 10) == 1)
2176                         return strcat(ftos(pos), "st");
2177                 else if(mod(pos, 10) == 2)
2178                         return strcat(ftos(pos), "nd");
2179                 else if(mod(pos, 10) == 3)
2180                         return strcat(ftos(pos), "rd");
2181                 else
2182                         return strcat(ftos(pos), "th");
2183         }
2184         else
2185                 return strcat(ftos(pos), "th");
2186 }
2187 string getrecords(float page) // 50 records per page
2188 {
2189     float rec;
2190     string h;
2191     float r;
2192     float i;
2193     string s;
2194
2195     rec = 0;
2196
2197     s = "";
2198
2199     if (g_ctf)
2200     {
2201         for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
2202         {
2203             if (MapInfo_Get_ByID(i))
2204             {
2205                 r = stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/time")));
2206                 if (r == 0)
2207                     continue;
2208                 // TODO: uid2name
2209                 h = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/netname"));
2210                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-6, ftos_decimals(r, 2)), " ", h, "\n");
2211                 ++rec;
2212             }
2213         }
2214     }
2215
2216     if (g_race)
2217     {
2218         for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
2219         {
2220             if (MapInfo_Get_ByID(i))
2221             {
2222                 r = race_readTime(MapInfo_Map_bspname, 1);
2223                 if (r == 0)
2224                     continue;
2225                 h = race_readName(MapInfo_Map_bspname, 1);
2226                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
2227                 ++rec;
2228             }
2229         }
2230     }
2231
2232     if (g_cts)
2233     {
2234         for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
2235         {
2236             if (MapInfo_Get_ByID(i))
2237             {
2238                 r = race_readTime(MapInfo_Map_bspname, 1);
2239                 if (r == 0)
2240                     continue;
2241                 h = race_readName(MapInfo_Map_bspname, 1);
2242                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
2243                 ++rec;
2244             }
2245         }
2246     }
2247
2248     MapInfo_ClearTemps();
2249
2250     if (s == "" && page == 0)
2251         return "No records are available on this server.\n";
2252     else
2253         return s;
2254 }
2255
2256 string getrankings()
2257 {
2258     string n;
2259     float t;
2260     float i;
2261     string s;
2262     string p;
2263     string map;
2264
2265     s = "";
2266
2267     map = GetMapname();
2268
2269     for (i = 1; i <= RANKINGS_CNT; ++i)
2270     {
2271         t = race_readTime(map, i);
2272         if (t == 0)
2273             continue;
2274         n = race_readName(map, i);
2275         p = race_placeName(i);
2276         s = strcat(s, strpad(8, p), " ", strpad(-8, TIME_ENCODED_TOSTRING(t)), " ", n, "\n");
2277     }
2278
2279     MapInfo_ClearTemps();
2280
2281     if (s == "")
2282         return strcat("No records are available for the map: ", map, "\n");
2283     else
2284         return strcat("Records for ", map, ":\n", s);
2285 }
2286
2287 #define LADDER_FIRSTPOINT 100
2288 #define LADDER_CNT 10
2289         // position X still gives LADDER_FIRSTPOINT/X points
2290 #define LADDER_SIZE 30
2291         // ladder shows the top X players
2292 string top_uids[LADDER_SIZE];
2293 float top_scores[LADDER_SIZE];
2294 string getladder()
2295 {
2296     float i, j, k, uidcnt;
2297     string s, temp_s;
2298
2299     s = "";
2300     temp_s = "";
2301
2302     string rr;
2303     if(g_cts)
2304         rr = CTS_RECORD;
2305     else
2306         rr = RACE_RECORD;
2307
2308     string myuid;
2309
2310     for (k = 0; k < MapInfo_count; ++k)
2311     {
2312         if (MapInfo_Get_ByID(k))
2313         {
2314                 for (i = 0; i <= LADDER_CNT; ++i) { // i = 0 because it is the speed award
2315                         if(i == 0) // speed award
2316                         {
2317                                 if(stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/speed"))) == 0)
2318                                         continue;
2319
2320                                 myuid = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/crypto_idfp"));
2321                         }
2322                         else // normal record, if it exists (else break)
2323                         {
2324                                 if(race_readTime(MapInfo_Map_bspname, i) == 0)
2325                                         continue;
2326
2327                                 myuid = race_readUID(MapInfo_Map_bspname, i);
2328                         }
2329
2330                         // string s contains:
2331                         // arg 0 = # of speed recs
2332                         // arg 1 = # of 1st place recs
2333                         // arg 2 = # of 2nd place recs
2334                         // ... etc
2335                         // LADDER_CNT+1 = total points
2336
2337                         temp_s = db_get(TemporaryDB, strcat("ladder", myuid));
2338                         if (temp_s == "")
2339                         {
2340                             db_put(TemporaryDB, strcat("uid", ftos(uidcnt)), myuid);
2341                             ++uidcnt;
2342                             for (j = 0; j <= LADDER_CNT + 1; ++j)
2343                             {
2344                                 if(j != LADDER_CNT + 1)
2345                                     temp_s = strcat(temp_s, "0 ");
2346                                 else
2347                                     temp_s = strcat(temp_s, "0");
2348                             }
2349                         }
2350
2351                         tokenize_console(temp_s);
2352                         s = "";
2353
2354                         if(i == 0) // speed award
2355                             for (j = 0; j <= LADDER_CNT; ++j) // loop over each arg in the string
2356                             {
2357                                 if(j == 0) // speed award
2358                                     s = strcat(s, ftos(stof(argv(j)) +1)); // add 1 to speed rec count and write
2359                                 else
2360                                     s = strcat(s, " ", argv(j)); // just copy over everything else
2361                             }
2362                         else // record
2363                             for (j = 0; j <= LADDER_CNT; ++j) // loop over each arg in the string
2364                             {
2365                                 if(j == 0)
2366                                     s = strcat(s, argv(j)); // speed award, dont prefix with " "
2367                                 else if(j == i) // wanted rec!
2368                                     s = strcat(s, " ", ftos(stof(argv(j)) +1)); // update argv(j)
2369                                 else
2370                                     s = strcat(s, " ", argv(j)); // just copy over everything else
2371                             }
2372
2373                         // total points are (by default) calculated like this:
2374                         // speedrec = floor(100 / 10) = 10 points
2375                         // 1st place = floor(100 / 1) = 100 points
2376                         // 2nd place = floor(100 / 2) = 50 points
2377                         // 3rd place = floor(100 / 3) = 33 points
2378                         // 4th place = floor(100 / 4) = 25 points
2379                         // 5th place = floor(100 / 5) = 20 points
2380                         // ... etc
2381
2382                         if(i == 0)
2383                             s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + LADDER_FIRSTPOINT / 10)); // speed award, add LADDER_FIRSTPOINT / 10 points
2384                         else
2385                             s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + floor(LADDER_FIRSTPOINT / i))); // record, add LADDER_FIRSTPOINT / i points
2386
2387                         db_put(TemporaryDB, strcat("ladder", myuid), s);
2388                 }
2389         }
2390     }
2391
2392     float thiscnt;
2393     string thisuid;
2394     for (i = 0; i <= uidcnt; ++i) // for each known uid
2395     {
2396         thisuid = db_get(TemporaryDB, strcat("uid", ftos(i)));
2397         temp_s = db_get(TemporaryDB, strcat("ladder", thisuid));
2398         tokenize_console(temp_s);
2399         thiscnt = stof(argv(LADDER_CNT+1));
2400
2401         if(thiscnt > top_scores[LADDER_SIZE-1])
2402         for (j = 0; j < LADDER_SIZE; ++j) // for each place in ladder
2403         {
2404             if(thiscnt > top_scores[j])
2405             {
2406                 for (k = LADDER_SIZE-1; k >= j; --k)
2407                 {
2408                     top_uids[k] = top_uids[k-1];
2409                     top_scores[k] = top_scores[k-1];
2410                 }
2411                 top_uids[j] = thisuid;
2412                 top_scores[j] = thiscnt;
2413                 break;
2414             }
2415         }
2416     }
2417
2418     s = "^3-----------------------\n\n";
2419
2420     s = strcat(s, "Pos ^3|");
2421     s = strcat(s, " ^7Total  ^3|");
2422     for (i = 1; i <= LADDER_CNT; ++i)
2423     {
2424         s = strcat(s, " ^7", race_placeName(i), " ^3|");
2425     }
2426     s = strcat(s, " ^7Speed awards ^3| ^7Name");
2427
2428     s = strcat(s, "\n^3----+--------");
2429     for (i = 1; i <= min(9, LADDER_CNT); ++i)
2430     {
2431         s = strcat(s, "+-----");
2432     }
2433 #if LADDER_CNT > 9
2434     for (i = 1; i <= LADDER_CNT - 9; ++i)
2435     {
2436         s = strcat(s, "+------");
2437     }
2438 #endif
2439
2440     s = strcat(s, "+--------------+--------------------\n");
2441
2442     for (i = 0; i < LADDER_SIZE; ++i)
2443     {
2444         temp_s = db_get(TemporaryDB, strcat("ladder", top_uids[i]));
2445         tokenize_console(temp_s);
2446         if (argv(LADDER_CNT+1) == "") // total is 0, skip
2447             continue;
2448         s = strcat(s, strpad(4, race_placeName(i+1)), "^3| ^7"); // pos
2449         s = strcat(s, strpad(7, argv(LADDER_CNT+1)), "^3| ^7"); // total
2450         for (j = 1; j <= min(9, LADDER_CNT); ++j)
2451         {
2452             s = strcat(s, strpad(4, argv(j)), "^3| ^7"); // 1st, 2nd, 3rd etc cnt
2453         }
2454 #if LADDER_CNT > 9
2455         for (j = 10; j <= LADDER_CNT; ++j)
2456         {
2457             s = strcat(s, strpad(4, argv(j)), " ^3| ^7"); // 1st, 2nd, 3rd etc cnt
2458         }
2459 #endif
2460
2461         s = strcat(s, strpad(13, argv(0)), "^3| ^7"); // speed award cnt
2462         s = strcat(s, uid2name(top_uids[i]), "\n"); // name
2463     }
2464
2465     MapInfo_ClearTemps();
2466
2467     if (s == "")
2468         return "No ladder on this server!\n";
2469     else
2470         return strcat("Top ", ftos(LADDER_SIZE), " ladder rankings:\n", s);
2471 }
2472
2473
2474 float MoveToRandomMapLocation(entity e, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
2475 {
2476     float m, i;
2477     vector start, org, delta, end, enddown, mstart;
2478
2479     m = e.dphitcontentsmask;
2480     e.dphitcontentsmask = goodcontents | badcontents;
2481
2482     org = world.mins;
2483     delta = world.maxs - world.mins;
2484
2485     for (i = 0; i < attempts; ++i)
2486     {
2487         start_x = org_x + random() * delta_x;
2488         start_y = org_y + random() * delta_y;
2489         start_z = org_z + random() * delta_z;
2490
2491         // rule 1: start inside world bounds, and outside
2492         // solid, and don't start from somewhere where you can
2493         // fall down to evil
2494         tracebox(start, e.mins, e.maxs, start - '0 0 1' * delta_z, MOVE_NORMAL, e);
2495         if (trace_fraction >= 1)
2496             continue;
2497         if (trace_startsolid)
2498             continue;
2499         if (trace_dphitcontents & badcontents)
2500             continue;
2501         if (trace_dphitq3surfaceflags & badsurfaceflags)
2502             continue;
2503
2504         // rule 2: if we are too high, lower the point
2505         if (trace_fraction * delta_z > maxaboveground)
2506             start = trace_endpos + '0 0 1' * maxaboveground;
2507         enddown = trace_endpos;
2508
2509         // rule 3: make sure we aren't outside the map. This only works
2510         // for somewhat well formed maps. A good rule of thumb is that
2511         // the map should have a convex outside hull.
2512         // these can be traceLINES as we already verified the starting box
2513         mstart = start + 0.5 * (e.mins + e.maxs);
2514         traceline(mstart, mstart + '1 0 0' * delta_x, MOVE_NORMAL, e);
2515         if (trace_fraction >= 1)
2516             continue;
2517         traceline(mstart, mstart - '1 0 0' * delta_x, MOVE_NORMAL, e);
2518         if (trace_fraction >= 1)
2519             continue;
2520         traceline(mstart, mstart + '0 1 0' * delta_y, MOVE_NORMAL, e);
2521         if (trace_fraction >= 1)
2522             continue;
2523         traceline(mstart, mstart - '0 1 0' * delta_y, MOVE_NORMAL, e);
2524         if (trace_fraction >= 1)
2525             continue;
2526         traceline(mstart, mstart + '0 0 1' * delta_z, MOVE_NORMAL, e);
2527         if (trace_fraction >= 1)
2528             continue;
2529
2530         // find a random vector to "look at"
2531         end_x = org_x + random() * delta_x;
2532         end_y = org_y + random() * delta_y;
2533         end_z = org_z + random() * delta_z;
2534         end = start + normalize(end - start) * vlen(delta);
2535
2536         // rule 4: start TO end must not be too short
2537         tracebox(start, e.mins, e.maxs, end, MOVE_NORMAL, e);
2538         if (trace_startsolid)
2539             continue;
2540         if (trace_fraction < minviewdistance / vlen(delta))
2541             continue;
2542
2543         // rule 5: don't want to look at sky
2544         if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY)
2545             continue;
2546
2547         // rule 6: we must not end up in trigger_hurt
2548         if (tracebox_hits_trigger_hurt(start, e.mins, e.maxs, enddown))
2549             continue;
2550
2551         break;
2552     }
2553
2554     e.dphitcontentsmask = m;
2555
2556     if (i < attempts)
2557     {
2558         setorigin(e, start);
2559         e.angles = vectoangles(end - start);
2560         dprint("Needed ", ftos(i + 1), " attempts\n");
2561         return TRUE;
2562     }
2563     else
2564         return FALSE;
2565 }
2566
2567 float zcurveparticles_effectno;
2568 vector zcurveparticles_start;
2569 float zcurveparticles_spd;
2570
2571 void endzcurveparticles()
2572 {
2573         if(zcurveparticles_effectno)
2574         {
2575                 // terminator
2576                 WriteShort(MSG_BROADCAST, zcurveparticles_spd | 0x8000);
2577         }
2578         zcurveparticles_effectno = 0;
2579 }
2580
2581 void zcurveparticles(float effectno, vector start, vector end, float end_dz, float spd)
2582 {
2583         spd = bound(0, floor(spd / 16), 32767);
2584         if(effectno != zcurveparticles_effectno || start != zcurveparticles_start)
2585         {
2586                 endzcurveparticles();
2587                 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
2588                 WriteByte(MSG_BROADCAST, TE_CSQC_ZCURVEPARTICLES);
2589                 WriteShort(MSG_BROADCAST, effectno);
2590                 WriteCoord(MSG_BROADCAST, start_x);
2591                 WriteCoord(MSG_BROADCAST, start_y);
2592                 WriteCoord(MSG_BROADCAST, start_z);
2593                 zcurveparticles_effectno = effectno;
2594                 zcurveparticles_start = start;
2595         }
2596         else
2597                 WriteShort(MSG_BROADCAST, zcurveparticles_spd);
2598         WriteCoord(MSG_BROADCAST, end_x);
2599         WriteCoord(MSG_BROADCAST, end_y);
2600         WriteCoord(MSG_BROADCAST, end_z);
2601         WriteCoord(MSG_BROADCAST, end_dz);
2602         zcurveparticles_spd = spd;
2603 }
2604
2605 void zcurveparticles_from_tracetoss(float effectno, vector start, vector end, vector vel)
2606 {
2607         float end_dz;
2608         vector vecxy, velxy;
2609
2610         vecxy = end - start;
2611         vecxy_z = 0;
2612         velxy = vel;
2613         velxy_z = 0;
2614
2615         if (vlen(velxy) < 0.000001 * fabs(vel_z))
2616         {
2617                 endzcurveparticles();
2618                 trailparticles(world, effectno, start, end);
2619                 return;
2620         }
2621
2622         end_dz = vlen(vecxy) / vlen(velxy) * vel_z - (end_z - start_z);
2623         zcurveparticles(effectno, start, end, end_dz, vlen(vel));
2624 }
2625
2626 void write_recordmarker(entity pl, float tstart, float dt)
2627 {
2628     GameLogEcho(strcat(":recordset:", ftos(pl.playerid), ":", ftos(dt)));
2629
2630     // also write a marker into demo files for demotc-race-record-extractor to find
2631     stuffcmd(pl,
2632              strcat(
2633                  strcat("//", strconv(2, 0, 0, GetGametype()), " RECORD SET ", TIME_ENCODED_TOSTRING(TIME_ENCODE(dt))),
2634                  " ", ftos(tstart), " ", ftos(dt), "\n"));
2635 }
2636
2637 vector shotorg_adjustfromclient(vector vecs, float y_is_right, float allowcenter, float algn)
2638 {
2639         switch(algn)
2640         {
2641                 case 1: // right
2642                         break;
2643
2644                 case 2: // left
2645                         vecs_y = -vecs_y;
2646                         break;
2647
2648                 default:
2649                 case 3:
2650                         if(allowcenter) // 2: allow center handedness
2651                         {
2652                                 // center
2653                                 vecs_y = 0;
2654                                 vecs_z -= 2;
2655                         }
2656                         else
2657                         {
2658                                 // right
2659                         }
2660                         break;
2661
2662                 case 4:
2663                         if(allowcenter) // 2: allow center handedness
2664                         {
2665                                 // center
2666                                 vecs_y = 0;
2667                                 vecs_z -= 2;
2668                         }
2669                         else
2670                         {
2671                                 // left
2672                                 vecs_y = -vecs_y;
2673                         }
2674                         break;
2675         }
2676         return vecs;
2677 }
2678
2679 vector shotorg_adjust_values(vector vecs, float y_is_right, float visual, float algn)
2680 {
2681         string s;
2682         vector v;
2683
2684         if (autocvar_g_shootfromeye)
2685         {
2686                 if (visual)
2687                 {
2688                         vecs = shotorg_adjustfromclient(vecs, y_is_right, TRUE, algn);
2689                 }
2690                 else
2691                 {
2692                         vecs_y = 0;
2693                         vecs_z = 0;
2694                 }
2695         }
2696         else if (autocvar_g_shootfromcenter)
2697         {
2698                 if (visual)
2699                 {
2700                         vecs = shotorg_adjustfromclient(vecs, y_is_right, TRUE, algn);
2701                 }
2702                 else
2703                 {
2704                         vecs_y = 0;
2705                         vecs_z -= 2;
2706                 }
2707         }
2708         else if ((s = autocvar_g_shootfromfixedorigin) != "")
2709         {
2710                 v = stov(s);
2711                 if (y_is_right)
2712                         v_y = -v_y;
2713                 if (v_x != 0)
2714                         vecs_x = v_x;
2715                 vecs_y = v_y;
2716                 vecs_z = v_z;
2717         }
2718         else if (autocvar_g_shootfromclient)
2719         {
2720                 vecs = shotorg_adjustfromclient(vecs, y_is_right, (autocvar_g_shootfromclient >= 2), algn);
2721         }
2722         return vecs;
2723 }
2724
2725 vector shotorg_adjust(vector vecs, float y_is_right, float visual)
2726 {
2727         return shotorg_adjust_values(vecs, y_is_right, visual, self.owner.cvar_cl_gunalign);
2728 }
2729
2730
2731 void attach_sameorigin(entity e, entity to, string tag)
2732 {
2733     vector org, t_forward, t_left, t_up, e_forward, e_up;
2734     vector org0, ang0;
2735     float tagscale;
2736
2737     ang0 = e.angles;
2738     org0 = e.origin;
2739
2740     org = e.origin - gettaginfo(to, gettagindex(to, tag));
2741     tagscale = pow(vlen(v_forward), -2); // undo a scale on the tag
2742     t_forward = v_forward * tagscale;
2743     t_left = v_right * -tagscale;
2744     t_up = v_up * tagscale;
2745
2746     e.origin_x = org * t_forward;
2747     e.origin_y = org * t_left;
2748     e.origin_z = org * t_up;
2749
2750     // current forward and up directions
2751     if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
2752                 e.angles = AnglesTransform_FromVAngles(e.angles);
2753         else
2754                 e.angles = AnglesTransform_FromAngles(e.angles);
2755     fixedmakevectors(e.angles);
2756
2757     // untransform forward, up!
2758     e_forward_x = v_forward * t_forward;
2759     e_forward_y = v_forward * t_left;
2760     e_forward_z = v_forward * t_up;
2761     e_up_x = v_up * t_forward;
2762     e_up_y = v_up * t_left;
2763     e_up_z = v_up * t_up;
2764
2765     e.angles = fixedvectoangles2(e_forward, e_up);
2766     if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
2767                 e.angles = AnglesTransform_ToVAngles(e.angles);
2768         else
2769                 e.angles = AnglesTransform_ToAngles(e.angles);
2770
2771     setattachment(e, to, tag);
2772     setorigin(e, e.origin);
2773 }
2774
2775 void detach_sameorigin(entity e)
2776 {
2777     vector org;
2778     org = gettaginfo(e, 0);
2779     e.angles = fixedvectoangles2(v_forward, v_up);
2780     if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
2781                 e.angles = AnglesTransform_ToVAngles(e.angles);
2782         else
2783                 e.angles = AnglesTransform_ToAngles(e.angles);
2784     setorigin(e, org);
2785     setattachment(e, world, "");
2786     setorigin(e, e.origin);
2787 }
2788
2789 void follow_sameorigin(entity e, entity to)
2790 {
2791     e.movetype = MOVETYPE_FOLLOW; // make the hole follow
2792     e.aiment = to; // make the hole follow bmodel
2793     e.punchangle = to.angles; // the original angles of bmodel
2794     e.view_ofs = e.origin - to.origin; // relative origin
2795     e.v_angle = e.angles - to.angles; // relative angles
2796 }
2797
2798 void unfollow_sameorigin(entity e)
2799 {
2800     e.movetype = MOVETYPE_NONE;
2801 }
2802
2803 entity gettaginfo_relative_ent;
2804 vector gettaginfo_relative(entity e, float tag)
2805 {
2806     if (!gettaginfo_relative_ent)
2807     {
2808         gettaginfo_relative_ent = spawn();
2809         gettaginfo_relative_ent.effects = EF_NODRAW;
2810     }
2811     gettaginfo_relative_ent.model = e.model;
2812     gettaginfo_relative_ent.modelindex = e.modelindex;
2813     gettaginfo_relative_ent.frame = e.frame;
2814     return gettaginfo(gettaginfo_relative_ent, tag);
2815 }
2816
2817 void SoundEntity_StartSound(entity pl, float chan, string samp, float vol, float attn)
2818 {
2819     float p;
2820     p = pow(2, chan);
2821     if (pl.soundentity.cnt & p)
2822         return;
2823     soundtoat(MSG_ALL, pl.soundentity, gettaginfo(pl.soundentity, 0), chan, samp, vol, attn);
2824     pl.soundentity.cnt |= p;
2825 }
2826
2827 void SoundEntity_StopSound(entity pl, float chan)
2828 {
2829     float p;
2830     p = pow(2, chan);
2831     if (pl.soundentity.cnt & p)
2832     {
2833         stopsoundto(MSG_ALL, pl.soundentity, chan);
2834         pl.soundentity.cnt &~= p;
2835     }
2836 }
2837
2838 void SoundEntity_Attach(entity pl)
2839 {
2840     pl.soundentity = spawn();
2841     pl.soundentity.classname = "soundentity";
2842     pl.soundentity.owner = pl;
2843     setattachment(pl.soundentity, pl, "");
2844     setmodel(pl.soundentity, "null");
2845 }
2846
2847 void SoundEntity_Detach(entity pl)
2848 {
2849     float i;
2850     for (i = 0; i <= 7; ++i)
2851         SoundEntity_StopSound(pl, i);
2852 }
2853
2854
2855 float ParseCommandPlayerSlotTarget_firsttoken;
2856 entity GetCommandPlayerSlotTargetFromTokenizedCommand(float tokens, float idx) // idx = start index
2857 {
2858         string s;
2859         entity e, head;
2860         float n;
2861
2862         s = string_null;
2863
2864         ParseCommandPlayerSlotTarget_firsttoken = -1;
2865
2866         if (tokens > idx)
2867         {
2868                 if (substring(argv(idx), 0, 1) == "#")
2869                 {
2870                         s = substring(argv(idx), 1, -1);
2871                         ++idx;
2872                         if (s == "") if (tokens > idx)
2873                         {
2874                                 s = argv(idx);
2875                                 ++idx;
2876                         }
2877                         ParseCommandPlayerSlotTarget_firsttoken = idx;
2878                         n = stof(s);
2879                         if (s == ftos(n) && n > 0 && n <= maxclients)
2880                         {
2881                                 e = edict_num(n);
2882                                 if (e.flags & FL_CLIENT)
2883                                         return e;
2884                         }
2885                 }
2886                 else
2887                 {
2888                         // it must be a nick name
2889                         s = argv(idx);
2890                         ++idx;
2891                         ParseCommandPlayerSlotTarget_firsttoken = idx;
2892
2893                         n = 0;
2894                         FOR_EACH_CLIENT(head)
2895                                 if (head.netname == s)
2896                                 {
2897                                         e = head;
2898                                         ++n;
2899                                 }
2900                         if (n == 1)
2901                                 return e;
2902
2903                         s = strdecolorize(s);
2904                         n = 0;
2905                         FOR_EACH_CLIENT(head)
2906                                 if (strdecolorize(head.netname) == s)
2907                                 {
2908                                         e = head;
2909                                         ++n;
2910                                 }
2911                         if (n == 1)
2912                                 return e;
2913                 }
2914         }
2915
2916         return world;
2917 }
2918
2919 .float scale2;
2920
2921 float modeleffect_SendEntity(entity to, float sf)
2922 {
2923         float f;
2924         WriteByte(MSG_ENTITY, ENT_CLIENT_MODELEFFECT);
2925
2926         f = 0;
2927         if(self.velocity != '0 0 0')
2928                 f |= 1;
2929         if(self.angles != '0 0 0')
2930                 f |= 2;
2931         if(self.avelocity != '0 0 0')
2932                 f |= 4;
2933
2934         WriteByte(MSG_ENTITY, f);
2935         WriteShort(MSG_ENTITY, self.modelindex);
2936         WriteByte(MSG_ENTITY, self.skin);
2937         WriteByte(MSG_ENTITY, self.frame);
2938         WriteCoord(MSG_ENTITY, self.origin_x);
2939         WriteCoord(MSG_ENTITY, self.origin_y);
2940         WriteCoord(MSG_ENTITY, self.origin_z);
2941         if(f & 1)
2942         {
2943                 WriteCoord(MSG_ENTITY, self.velocity_x);
2944                 WriteCoord(MSG_ENTITY, self.velocity_y);
2945                 WriteCoord(MSG_ENTITY, self.velocity_z);
2946         }
2947         if(f & 2)
2948         {
2949                 WriteCoord(MSG_ENTITY, self.angles_x);
2950                 WriteCoord(MSG_ENTITY, self.angles_y);
2951                 WriteCoord(MSG_ENTITY, self.angles_z);
2952         }
2953         if(f & 4)
2954         {
2955                 WriteCoord(MSG_ENTITY, self.avelocity_x);
2956                 WriteCoord(MSG_ENTITY, self.avelocity_y);
2957                 WriteCoord(MSG_ENTITY, self.avelocity_z);
2958         }
2959         WriteShort(MSG_ENTITY, self.scale * 256.0);
2960         WriteShort(MSG_ENTITY, self.scale2 * 256.0);
2961         WriteByte(MSG_ENTITY, self.teleport_time * 100.0);
2962         WriteByte(MSG_ENTITY, self.fade_time * 100.0);
2963         WriteByte(MSG_ENTITY, self.alpha * 255.0);
2964
2965         return TRUE;
2966 }
2967
2968 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)
2969 {
2970         entity e;
2971         float sz;
2972         e = spawn();
2973         e.classname = "modeleffect";
2974         setmodel(e, m);
2975         e.frame = f;
2976         setorigin(e, o);
2977         e.velocity = v;
2978         e.angles = ang;
2979         e.avelocity = angv;
2980         e.alpha = a;
2981         e.teleport_time = t1;
2982         e.fade_time = t2;
2983         e.skin = s;
2984         if(s0 >= 0)
2985                 e.scale = s0 / max6(-e.mins_x, -e.mins_y, -e.mins_z, e.maxs_x, e.maxs_y, e.maxs_z);
2986         else
2987                 e.scale = -s0;
2988         if(s2 >= 0)
2989                 e.scale2 = s2 / max6(-e.mins_x, -e.mins_y, -e.mins_z, e.maxs_x, e.maxs_y, e.maxs_z);
2990         else
2991                 e.scale2 = -s2;
2992         sz = max(e.scale, e.scale2);
2993         setsize(e, e.mins * sz, e.maxs * sz);
2994         Net_LinkEntity(e, FALSE, 0.1, modeleffect_SendEntity);
2995 }
2996
2997 void shockwave_spawn(string m, vector org, float sz, float t1, float t2)
2998 {
2999         return modeleffect_spawn(m, 0, 0, org, '0 0 0', '0 0 0', '0 0 0', 0, sz, 1, t1, t2);
3000 }
3001
3002 float randombit(float bits)
3003 {
3004         if not(bits & (bits-1)) // this ONLY holds for powers of two!
3005                 return bits;
3006
3007         float n, f, b, r;
3008
3009         r = random();
3010         b = 0;
3011         n = 0;
3012
3013         for(f = 1; f <= bits; f *= 2)
3014         {
3015                 if(bits & f)
3016                 {
3017                         ++n;
3018                         r *= n;
3019                         if(r <= 1)
3020                                 b = f;
3021                         else
3022                                 r = (r - 1) / (n - 1);
3023                 }
3024         }
3025
3026         return b;
3027 }
3028
3029 float randombits(float bits, float k, float error_return)
3030 {
3031         float r;
3032         r = 0;
3033         while(k > 0 && bits != r)
3034         {
3035                 r += randombit(bits - r);
3036                 --k;
3037         }
3038         if(error_return)
3039                 if(k > 0)
3040                         return -1; // all
3041         return r;
3042 }
3043
3044 void randombit_test(float bits, float iter)
3045 {
3046         while(iter > 0)
3047         {
3048                 print(ftos(randombit(bits)), "\n");
3049                 --iter;
3050         }
3051 }
3052
3053 float ExponentialFalloff(float mindist, float maxdist, float halflifedist, float d)
3054 {
3055         if(halflifedist > 0)
3056                 return pow(0.5, (bound(mindist, d, maxdist) - mindist) / halflifedist);
3057         else if(halflifedist < 0)
3058                 return pow(0.5, (bound(mindist, d, maxdist) - maxdist) / halflifedist);
3059         else
3060                 return 1;
3061 }
3062
3063
3064
3065
3066 #ifdef RELEASE
3067 #define cvar_string_normal cvar_string_builtin
3068 #define cvar_normal cvar_builtin
3069 #else
3070 string cvar_string_normal(string n)
3071 {
3072         if not(cvar_type(n) & 1)
3073                 backtrace(strcat("Attempt to access undefined cvar: ", n));
3074         return cvar_string_builtin(n);
3075 }
3076
3077 float cvar_normal(string n)
3078 {
3079         return stof(cvar_string_normal(n));
3080 }
3081 #endif
3082 #define cvar_set_normal cvar_set_builtin
3083
3084 void defer_think()
3085 {
3086     entity oself;
3087
3088     oself           = self;
3089     self            = self.owner;
3090     oself.think     = SUB_Remove;
3091     oself.nextthink = time;
3092
3093     oself.use();
3094 }
3095
3096 /*
3097     Execute func() after time + fdelay.
3098     self when func is executed = self when defer is called
3099 */
3100 void defer(float fdelay, void() func)
3101 {
3102     entity e;
3103
3104     e           = spawn();
3105     e.owner     = self;
3106     e.use       = func;
3107     e.think     = defer_think;
3108     e.nextthink = time + fdelay;
3109 }