]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/miscfunctions.qc
Merge branch 'mirceakitsune/event_chasecam' of ssh://git.xonotic.org/xonotic-data...
[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                 checkclient();
2006         }
2007     if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
2008         return 1;
2009     if (other == world && self.size != '0 0 0')
2010     {
2011         vector tic;
2012         tic = self.velocity * sys_frametime;
2013         tic = tic + normalize(tic) * vlen(self.maxs - self.mins);
2014         traceline(self.origin - tic, self.origin + tic, MOVE_NORMAL, self);
2015         if (trace_fraction >= 1)
2016         {
2017             dprint("Odd... did not hit...?\n");
2018         }
2019         else if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
2020         {
2021             dprint("Detected and prevented the sky-grapple bug.\n");
2022             return 1;
2023         }
2024     }
2025
2026     return 0;
2027 }
2028
2029 #define SUB_OwnerCheck() (other && (other == self.owner))
2030
2031 float WarpZone_Projectile_Touch_ImpactFilter_Callback()
2032 {
2033         if(SUB_OwnerCheck())
2034                 return TRUE;
2035         if(SUB_NoImpactCheck())
2036         {
2037                 remove(self);
2038                 return TRUE;
2039         }
2040         if(trace_ent && trace_ent.solid > SOLID_TRIGGER)
2041                 UpdateCSQCProjectileNextFrame(self);
2042         return FALSE;
2043 }
2044 #define PROJECTILE_TOUCH if(WarpZone_Projectile_Touch()) return
2045
2046 float MAX_IPBAN_URIS           = 16;
2047                               
2048 float URI_GET_DISCARD          = 0;
2049 float URI_GET_IPBAN            = 1;
2050 float URI_GET_IPBAN_END        = 16;
2051 float URI_GET_PLAYERSTATS_SENT = 17;
2052
2053 void URI_Get_Callback(float id, float status, string data)
2054 {
2055     dprint("Received HTTP request data for id ", ftos(id), "; status is ", ftos(status), "\nData is:\n");
2056     dprint(data);
2057     dprint("\nEnd of data.\n");
2058
2059     if (id == URI_GET_DISCARD)
2060     {
2061         // discard
2062     }
2063     else if (id >= URI_GET_IPBAN && id <= URI_GET_IPBAN_END)
2064     {
2065         // online ban list
2066         OnlineBanList_URI_Get_Callback(id, status, data);
2067     }
2068     else if (id == URI_GET_PLAYERSTATS_SENT)
2069     {
2070         PlayerStats_Sent_URI_Get_Callback(id, status, data);
2071     }
2072     else
2073     {
2074         print("Received HTTP request data for an invalid id ", ftos(id), ".\n");
2075     }
2076 }
2077
2078 void print_to(entity e, string s)
2079 {
2080     if (e)
2081         sprint(e, strcat(s, "\n"));
2082     else
2083         print(s, "\n");
2084 }
2085
2086 string uid2name(string myuid) {
2087         string s;
2088         s = db_get(ServerProgsDB, strcat("uid2name", myuid));
2089         
2090         if(s == "")
2091                 s = "^1Unregistered Player";
2092         return s;
2093 }
2094
2095 float race_readTime(string map, float pos)
2096 {
2097         string rr;
2098         if(g_cts)
2099                 rr = CTS_RECORD;
2100         else
2101                 rr = RACE_RECORD;
2102
2103         return stof(db_get(ServerProgsDB, strcat(map, rr, "time", ftos(pos))));
2104 }
2105
2106 string race_readUID(string map, float pos)
2107 {
2108         string rr;
2109         if(g_cts)
2110                 rr = CTS_RECORD;
2111         else
2112                 rr = RACE_RECORD;
2113
2114         return db_get(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(pos)));
2115 }
2116
2117 float race_readPos(string map, float t) {
2118         float i;
2119         for (i = 1; i <= RANKINGS_CNT; ++i)
2120                 if (race_readTime(map, i) == 0 || race_readTime(map, i) > t)
2121                         return i;
2122
2123         return 0; // pos is zero if unranked
2124 }
2125
2126 void race_writeTime(string map, float t, string myuid)
2127 {
2128         string rr;
2129         if(g_cts)
2130                 rr = CTS_RECORD;
2131         else
2132                 rr = RACE_RECORD;
2133
2134         float newpos;
2135         newpos = race_readPos(map, t);
2136
2137         float i, prevpos;
2138         for(i = 1; i <= RANKINGS_CNT; ++i)
2139         {
2140                 if(race_readUID(map, i) == myuid)
2141                         prevpos = i;
2142         }
2143         if (prevpos) { // player improved his existing record, only have to iterate on ranks between new and old recs
2144                 for (i = prevpos; i > newpos; --i) {
2145                         db_put(ServerProgsDB, strcat(map, rr, "time", ftos(i)), ftos(race_readTime(map, i - 1)));
2146                         db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(i)), race_readUID(map, i - 1));
2147                 }
2148         } else { // player has no ranked record yet
2149                 for (i = RANKINGS_CNT; i > newpos; --i) {
2150                         db_put(ServerProgsDB, strcat(map, rr, "time", ftos(i)), ftos(race_readTime(map, i - 1)));
2151                         db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(i)), race_readUID(map, i - 1));
2152                 }
2153         }
2154
2155         // store new time itself
2156         db_put(ServerProgsDB, strcat(map, rr, "time", ftos(newpos)), ftos(t));
2157         db_put(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(newpos)), myuid);
2158 }
2159
2160 string race_readName(string map, float pos)
2161 {
2162         string rr;
2163         if(g_cts)
2164                 rr = CTS_RECORD;
2165         else
2166                 rr = RACE_RECORD;
2167
2168         return uid2name(db_get(ServerProgsDB, strcat(map, rr, "crypto_idfp", ftos(pos))));
2169 }
2170
2171 string race_placeName(float pos) {
2172         if(floor((mod(pos, 100))/10) * 10 != 10) // examples: 12th, 111th, 213th will not execute this block
2173         {
2174                 if(mod(pos, 10) == 1)
2175                         return strcat(ftos(pos), "st");
2176                 else if(mod(pos, 10) == 2)
2177                         return strcat(ftos(pos), "nd");
2178                 else if(mod(pos, 10) == 3)
2179                         return strcat(ftos(pos), "rd");
2180                 else
2181                         return strcat(ftos(pos), "th");
2182         }
2183         else
2184                 return strcat(ftos(pos), "th");
2185 }
2186 string getrecords(float page) // 50 records per page
2187 {
2188     float rec;
2189     string h;
2190     float r;
2191     float i;
2192     string s;
2193
2194     rec = 0;
2195
2196     s = "";
2197
2198     if (g_ctf)
2199     {
2200         for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
2201         {
2202             if (MapInfo_Get_ByID(i))
2203             {
2204                 r = stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/time")));
2205                 if (r == 0)
2206                     continue;
2207                 // TODO: uid2name
2208                 h = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/netname"));
2209                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-6, ftos_decimals(r, 2)), " ", h, "\n");
2210                 ++rec;
2211             }
2212         }
2213     }
2214
2215     if (g_race)
2216     {
2217         for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
2218         {
2219             if (MapInfo_Get_ByID(i))
2220             {
2221                 r = race_readTime(MapInfo_Map_bspname, 1);
2222                 if (r == 0)
2223                     continue;
2224                 h = race_readName(MapInfo_Map_bspname, 1);
2225                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
2226                 ++rec;
2227             }
2228         }
2229     }
2230
2231     if (g_cts)
2232     {
2233         for (i = page * 200; i < MapInfo_count && i < page * 200 + 200; ++i)
2234         {
2235             if (MapInfo_Get_ByID(i))
2236             {
2237                 r = race_readTime(MapInfo_Map_bspname, 1);
2238                 if (r == 0)
2239                     continue;
2240                 h = race_readName(MapInfo_Map_bspname, 1);
2241                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, TIME_ENCODED_TOSTRING(r)), " ", h, "\n");
2242                 ++rec;
2243             }
2244         }
2245     }
2246
2247     MapInfo_ClearTemps();
2248
2249     if (s == "" && page == 0)
2250         return "No records are available on this server.\n";
2251     else
2252         return s;
2253 }
2254
2255 string getrankings()
2256 {
2257     string n;
2258     float t;
2259     float i;
2260     string s;
2261     string p;
2262     string map;
2263
2264     s = "";
2265
2266     map = GetMapname();
2267
2268     for (i = 1; i <= RANKINGS_CNT; ++i)
2269     {
2270         t = race_readTime(map, i);
2271         if (t == 0)
2272             continue;
2273         n = race_readName(map, i);
2274         p = race_placeName(i);
2275         s = strcat(s, strpad(8, p), " ", strpad(-8, TIME_ENCODED_TOSTRING(t)), " ", n, "\n");
2276     }
2277
2278     MapInfo_ClearTemps();
2279
2280     if (s == "")
2281         return strcat("No records are available for the map: ", map, "\n");
2282     else
2283         return strcat("Records for ", map, ":\n", s);
2284 }
2285
2286 #define LADDER_FIRSTPOINT 100
2287 #define LADDER_CNT 10
2288         // position X still gives LADDER_FIRSTPOINT/X points
2289 #define LADDER_SIZE 30
2290         // ladder shows the top X players
2291 string top_uids[LADDER_SIZE];
2292 float top_scores[LADDER_SIZE];
2293 string getladder()
2294 {
2295     float i, j, k, uidcnt;
2296     string s, temp_s;
2297
2298     s = "";
2299     temp_s = "";
2300
2301     string rr;
2302     if(g_cts)
2303         rr = CTS_RECORD;
2304     else
2305         rr = RACE_RECORD;
2306
2307     string myuid;
2308
2309     for (k = 0; k < MapInfo_count; ++k)
2310     {
2311         if (MapInfo_Get_ByID(k))
2312         {
2313                 for (i = 0; i <= LADDER_CNT; ++i) { // i = 0 because it is the speed award
2314                         if(i == 0) // speed award
2315                         {
2316                                 if(stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/speed"))) == 0)
2317                                         continue;
2318
2319                                 myuid = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, rr, "speed/crypto_idfp"));
2320                         }
2321                         else // normal record, if it exists (else break)
2322                         {
2323                                 if(race_readTime(MapInfo_Map_bspname, i) == 0)
2324                                         continue;
2325
2326                                 myuid = race_readUID(MapInfo_Map_bspname, i);
2327                         }
2328
2329                         // string s contains:
2330                         // arg 0 = # of speed recs
2331                         // arg 1 = # of 1st place recs
2332                         // arg 2 = # of 2nd place recs
2333                         // ... etc
2334                         // LADDER_CNT+1 = total points
2335
2336                         temp_s = db_get(TemporaryDB, strcat("ladder", myuid));
2337                         if (temp_s == "")
2338                         {
2339                             db_put(TemporaryDB, strcat("uid", ftos(uidcnt)), myuid);
2340                             ++uidcnt;
2341                             for (j = 0; j <= LADDER_CNT + 1; ++j)
2342                             {
2343                                 if(j != LADDER_CNT + 1)
2344                                     temp_s = strcat(temp_s, "0 ");
2345                                 else
2346                                     temp_s = strcat(temp_s, "0");
2347                             }
2348                         }
2349
2350                         tokenize_console(temp_s);
2351                         s = "";
2352
2353                         if(i == 0) // speed award
2354                             for (j = 0; j <= LADDER_CNT; ++j) // loop over each arg in the string
2355                             {
2356                                 if(j == 0) // speed award
2357                                     s = strcat(s, ftos(stof(argv(j)) +1)); // add 1 to speed rec count and write
2358                                 else
2359                                     s = strcat(s, " ", argv(j)); // just copy over everything else
2360                             }
2361                         else // record
2362                             for (j = 0; j <= LADDER_CNT; ++j) // loop over each arg in the string
2363                             {
2364                                 if(j == 0)
2365                                     s = strcat(s, argv(j)); // speed award, dont prefix with " "
2366                                 else if(j == i) // wanted rec!
2367                                     s = strcat(s, " ", ftos(stof(argv(j)) +1)); // update argv(j)
2368                                 else
2369                                     s = strcat(s, " ", argv(j)); // just copy over everything else
2370                             }
2371
2372                         // total points are (by default) calculated like this:
2373                         // speedrec = floor(100 / 10) = 10 points
2374                         // 1st place = floor(100 / 1) = 100 points
2375                         // 2nd place = floor(100 / 2) = 50 points
2376                         // 3rd place = floor(100 / 3) = 33 points
2377                         // 4th place = floor(100 / 4) = 25 points
2378                         // 5th place = floor(100 / 5) = 20 points
2379                         // ... etc
2380
2381                         if(i == 0)
2382                             s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + LADDER_FIRSTPOINT / 10)); // speed award, add LADDER_FIRSTPOINT / 10 points
2383                         else
2384                             s = strcat(s, " ", ftos(stof(argv(LADDER_CNT+1)) + floor(LADDER_FIRSTPOINT / i))); // record, add LADDER_FIRSTPOINT / i points
2385
2386                         db_put(TemporaryDB, strcat("ladder", myuid), s);
2387                 }
2388         }
2389     }
2390
2391     float thiscnt;
2392     string thisuid;
2393     for (i = 0; i <= uidcnt; ++i) // for each known uid
2394     {
2395         thisuid = db_get(TemporaryDB, strcat("uid", ftos(i)));
2396         temp_s = db_get(TemporaryDB, strcat("ladder", thisuid));
2397         tokenize_console(temp_s);
2398         thiscnt = stof(argv(LADDER_CNT+1));
2399
2400         if(thiscnt > top_scores[LADDER_SIZE-1])
2401         for (j = 0; j < LADDER_SIZE; ++j) // for each place in ladder
2402         {
2403             if(thiscnt > top_scores[j])
2404             {
2405                 for (k = LADDER_SIZE-1; k >= j; --k)
2406                 {
2407                     top_uids[k] = top_uids[k-1];
2408                     top_scores[k] = top_scores[k-1];
2409                 }
2410                 top_uids[j] = thisuid;
2411                 top_scores[j] = thiscnt;
2412                 break;
2413             }
2414         }
2415     }
2416
2417     s = "^3-----------------------\n\n";
2418
2419     s = strcat(s, "Pos ^3|");
2420     s = strcat(s, " ^7Total  ^3|");
2421     for (i = 1; i <= LADDER_CNT; ++i)
2422     {
2423         s = strcat(s, " ^7", race_placeName(i), " ^3|");
2424     }
2425     s = strcat(s, " ^7Speed awards ^3| ^7Name");
2426
2427     s = strcat(s, "\n^3----+--------");
2428     for (i = 1; i <= min(9, LADDER_CNT); ++i)
2429     {
2430         s = strcat(s, "+-----");
2431     }
2432 #if LADDER_CNT > 9
2433     for (i = 1; i <= LADDER_CNT - 9; ++i)
2434     {
2435         s = strcat(s, "+------");
2436     }
2437 #endif
2438
2439     s = strcat(s, "+--------------+--------------------\n");
2440
2441     for (i = 0; i < LADDER_SIZE; ++i)
2442     {
2443         temp_s = db_get(TemporaryDB, strcat("ladder", top_uids[i]));
2444         tokenize_console(temp_s);
2445         if (argv(LADDER_CNT+1) == "") // total is 0, skip
2446             continue;
2447         s = strcat(s, strpad(4, race_placeName(i+1)), "^3| ^7"); // pos
2448         s = strcat(s, strpad(7, argv(LADDER_CNT+1)), "^3| ^7"); // total
2449         for (j = 1; j <= min(9, LADDER_CNT); ++j)
2450         {
2451             s = strcat(s, strpad(4, argv(j)), "^3| ^7"); // 1st, 2nd, 3rd etc cnt
2452         }
2453 #if LADDER_CNT > 9
2454         for (j = 10; j <= LADDER_CNT; ++j)
2455         {
2456             s = strcat(s, strpad(4, argv(j)), " ^3| ^7"); // 1st, 2nd, 3rd etc cnt
2457         }
2458 #endif
2459
2460         s = strcat(s, strpad(13, argv(0)), "^3| ^7"); // speed award cnt
2461         s = strcat(s, uid2name(top_uids[i]), "\n"); // name
2462     }
2463
2464     MapInfo_ClearTemps();
2465
2466     if (s == "")
2467         return "No ladder on this server!\n";
2468     else
2469         return strcat("Top ", ftos(LADDER_SIZE), " ladder rankings:\n", s);
2470 }
2471
2472
2473 float MoveToRandomMapLocation(entity e, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
2474 {
2475     float m, i;
2476     vector start, org, delta, end, enddown, mstart;
2477
2478     m = e.dphitcontentsmask;
2479     e.dphitcontentsmask = goodcontents | badcontents;
2480
2481     org = world.mins;
2482     delta = world.maxs - world.mins;
2483
2484     for (i = 0; i < attempts; ++i)
2485     {
2486         start_x = org_x + random() * delta_x;
2487         start_y = org_y + random() * delta_y;
2488         start_z = org_z + random() * delta_z;
2489
2490         // rule 1: start inside world bounds, and outside
2491         // solid, and don't start from somewhere where you can
2492         // fall down to evil
2493         tracebox(start, e.mins, e.maxs, start - '0 0 1' * delta_z, MOVE_NORMAL, e);
2494         if (trace_fraction >= 1)
2495             continue;
2496         if (trace_startsolid)
2497             continue;
2498         if (trace_dphitcontents & badcontents)
2499             continue;
2500         if (trace_dphitq3surfaceflags & badsurfaceflags)
2501             continue;
2502
2503         // rule 2: if we are too high, lower the point
2504         if (trace_fraction * delta_z > maxaboveground)
2505             start = trace_endpos + '0 0 1' * maxaboveground;
2506         enddown = trace_endpos;
2507
2508         // rule 3: make sure we aren't outside the map. This only works
2509         // for somewhat well formed maps. A good rule of thumb is that
2510         // the map should have a convex outside hull.
2511         // these can be traceLINES as we already verified the starting box
2512         mstart = start + 0.5 * (e.mins + e.maxs);
2513         traceline(mstart, mstart + '1 0 0' * delta_x, MOVE_NORMAL, e);
2514         if (trace_fraction >= 1)
2515             continue;
2516         traceline(mstart, mstart - '1 0 0' * delta_x, MOVE_NORMAL, e);
2517         if (trace_fraction >= 1)
2518             continue;
2519         traceline(mstart, mstart + '0 1 0' * delta_y, MOVE_NORMAL, e);
2520         if (trace_fraction >= 1)
2521             continue;
2522         traceline(mstart, mstart - '0 1 0' * delta_y, MOVE_NORMAL, e);
2523         if (trace_fraction >= 1)
2524             continue;
2525         traceline(mstart, mstart + '0 0 1' * delta_z, MOVE_NORMAL, e);
2526         if (trace_fraction >= 1)
2527             continue;
2528
2529         // find a random vector to "look at"
2530         end_x = org_x + random() * delta_x;
2531         end_y = org_y + random() * delta_y;
2532         end_z = org_z + random() * delta_z;
2533         end = start + normalize(end - start) * vlen(delta);
2534
2535         // rule 4: start TO end must not be too short
2536         tracebox(start, e.mins, e.maxs, end, MOVE_NORMAL, e);
2537         if (trace_startsolid)
2538             continue;
2539         if (trace_fraction < minviewdistance / vlen(delta))
2540             continue;
2541
2542         // rule 5: don't want to look at sky
2543         if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY)
2544             continue;
2545
2546         // rule 6: we must not end up in trigger_hurt
2547         if (tracebox_hits_trigger_hurt(start, e.mins, e.maxs, enddown))
2548             continue;
2549
2550         break;
2551     }
2552
2553     e.dphitcontentsmask = m;
2554
2555     if (i < attempts)
2556     {
2557         setorigin(e, start);
2558         e.angles = vectoangles(end - start);
2559         dprint("Needed ", ftos(i + 1), " attempts\n");
2560         return TRUE;
2561     }
2562     else
2563         return FALSE;
2564 }
2565
2566 float zcurveparticles_effectno;
2567 vector zcurveparticles_start;
2568 float zcurveparticles_spd;
2569
2570 void endzcurveparticles()
2571 {
2572         if(zcurveparticles_effectno)
2573         {
2574                 // terminator
2575                 WriteShort(MSG_BROADCAST, zcurveparticles_spd | 0x8000);
2576         }
2577         zcurveparticles_effectno = 0;
2578 }
2579
2580 void zcurveparticles(float effectno, vector start, vector end, float end_dz, float spd)
2581 {
2582         spd = bound(0, floor(spd / 16), 32767);
2583         if(effectno != zcurveparticles_effectno || start != zcurveparticles_start)
2584         {
2585                 endzcurveparticles();
2586                 WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
2587                 WriteByte(MSG_BROADCAST, TE_CSQC_ZCURVEPARTICLES);
2588                 WriteShort(MSG_BROADCAST, effectno);
2589                 WriteCoord(MSG_BROADCAST, start_x);
2590                 WriteCoord(MSG_BROADCAST, start_y);
2591                 WriteCoord(MSG_BROADCAST, start_z);
2592                 zcurveparticles_effectno = effectno;
2593                 zcurveparticles_start = start;
2594         }
2595         else
2596                 WriteShort(MSG_BROADCAST, zcurveparticles_spd);
2597         WriteCoord(MSG_BROADCAST, end_x);
2598         WriteCoord(MSG_BROADCAST, end_y);
2599         WriteCoord(MSG_BROADCAST, end_z);
2600         WriteCoord(MSG_BROADCAST, end_dz);
2601         zcurveparticles_spd = spd;
2602 }
2603
2604 void zcurveparticles_from_tracetoss(float effectno, vector start, vector end, vector vel)
2605 {
2606         float end_dz;
2607         vector vecxy, velxy;
2608
2609         vecxy = end - start;
2610         vecxy_z = 0;
2611         velxy = vel;
2612         velxy_z = 0;
2613
2614         if (vlen(velxy) < 0.000001 * fabs(vel_z))
2615         {
2616                 endzcurveparticles();
2617                 trailparticles(world, effectno, start, end);
2618                 return;
2619         }
2620
2621         end_dz = vlen(vecxy) / vlen(velxy) * vel_z - (end_z - start_z);
2622         zcurveparticles(effectno, start, end, end_dz, vlen(vel));
2623 }
2624
2625 void write_recordmarker(entity pl, float tstart, float dt)
2626 {
2627     GameLogEcho(strcat(":recordset:", ftos(pl.playerid), ":", ftos(dt)));
2628
2629     // also write a marker into demo files for demotc-race-record-extractor to find
2630     stuffcmd(pl,
2631              strcat(
2632                  strcat("//", strconv(2, 0, 0, GetGametype()), " RECORD SET ", TIME_ENCODED_TOSTRING(TIME_ENCODE(dt))),
2633                  " ", ftos(tstart), " ", ftos(dt), "\n"));
2634 }
2635
2636 vector shotorg_adjustfromclient(vector vecs, float y_is_right, float allowcenter, float algn)
2637 {
2638         switch(algn)
2639         {
2640                 case 1: // right
2641                         break;
2642
2643                 case 2: // left
2644                         vecs_y = -vecs_y;
2645                         break;
2646
2647                 default:
2648                 case 3:
2649                         if(allowcenter) // 2: allow center handedness
2650                         {
2651                                 // center
2652                                 vecs_y = 0;
2653                                 vecs_z -= 2;
2654                         }
2655                         else
2656                         {
2657                                 // right
2658                         }
2659                         break;
2660
2661                 case 4:
2662                         if(allowcenter) // 2: allow center handedness
2663                         {
2664                                 // center
2665                                 vecs_y = 0;
2666                                 vecs_z -= 2;
2667                         }
2668                         else
2669                         {
2670                                 // left
2671                                 vecs_y = -vecs_y;
2672                         }
2673                         break;
2674         }
2675         return vecs;
2676 }
2677
2678 vector shotorg_adjust_values(vector vecs, float y_is_right, float visual, float algn)
2679 {
2680         string s;
2681         vector v;
2682
2683         if (autocvar_g_shootfromeye)
2684         {
2685                 if (visual)
2686                 {
2687                         vecs = shotorg_adjustfromclient(vecs, y_is_right, TRUE, algn);
2688                 }
2689                 else
2690                 {
2691                         vecs_y = 0;
2692                         vecs_z = 0;
2693                 }
2694         }
2695         else if (autocvar_g_shootfromcenter)
2696         {
2697                 if (visual)
2698                 {
2699                         vecs = shotorg_adjustfromclient(vecs, y_is_right, TRUE, algn);
2700                 }
2701                 else
2702                 {
2703                         vecs_y = 0;
2704                         vecs_z -= 2;
2705                 }
2706         }
2707         else if ((s = autocvar_g_shootfromfixedorigin) != "")
2708         {
2709                 v = stov(s);
2710                 if (y_is_right)
2711                         v_y = -v_y;
2712                 if (v_x != 0)
2713                         vecs_x = v_x;
2714                 vecs_y = v_y;
2715                 vecs_z = v_z;
2716         }
2717         else if (autocvar_g_shootfromclient)
2718         {
2719                 vecs = shotorg_adjustfromclient(vecs, y_is_right, (autocvar_g_shootfromclient >= 2), algn);
2720         }
2721         return vecs;
2722 }
2723
2724 vector shotorg_adjust(vector vecs, float y_is_right, float visual)
2725 {
2726         return shotorg_adjust_values(vecs, y_is_right, visual, self.owner.cvar_cl_gunalign);
2727 }
2728
2729
2730 void attach_sameorigin(entity e, entity to, string tag)
2731 {
2732     vector org, t_forward, t_left, t_up, e_forward, e_up;
2733     vector org0, ang0;
2734     float tagscale;
2735
2736     ang0 = e.angles;
2737     org0 = e.origin;
2738
2739     org = e.origin - gettaginfo(to, gettagindex(to, tag));
2740     tagscale = pow(vlen(v_forward), -2); // undo a scale on the tag
2741     t_forward = v_forward * tagscale;
2742     t_left = v_right * -tagscale;
2743     t_up = v_up * tagscale;
2744
2745     e.origin_x = org * t_forward;
2746     e.origin_y = org * t_left;
2747     e.origin_z = org * t_up;
2748
2749     // current forward and up directions
2750     if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
2751                 e.angles = AnglesTransform_FromVAngles(e.angles);
2752         else
2753                 e.angles = AnglesTransform_FromAngles(e.angles);
2754     fixedmakevectors(e.angles);
2755
2756     // untransform forward, up!
2757     e_forward_x = v_forward * t_forward;
2758     e_forward_y = v_forward * t_left;
2759     e_forward_z = v_forward * t_up;
2760     e_up_x = v_up * t_forward;
2761     e_up_y = v_up * t_left;
2762     e_up_z = v_up * t_up;
2763
2764     e.angles = fixedvectoangles2(e_forward, e_up);
2765     if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
2766                 e.angles = AnglesTransform_ToVAngles(e.angles);
2767         else
2768                 e.angles = AnglesTransform_ToAngles(e.angles);
2769
2770     setattachment(e, to, tag);
2771     setorigin(e, e.origin);
2772 }
2773
2774 void detach_sameorigin(entity e)
2775 {
2776     vector org;
2777     org = gettaginfo(e, 0);
2778     e.angles = fixedvectoangles2(v_forward, v_up);
2779     if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
2780                 e.angles = AnglesTransform_ToVAngles(e.angles);
2781         else
2782                 e.angles = AnglesTransform_ToAngles(e.angles);
2783     setorigin(e, org);
2784     setattachment(e, world, "");
2785     setorigin(e, e.origin);
2786 }
2787
2788 void follow_sameorigin(entity e, entity to)
2789 {
2790     e.movetype = MOVETYPE_FOLLOW; // make the hole follow
2791     e.aiment = to; // make the hole follow bmodel
2792     e.punchangle = to.angles; // the original angles of bmodel
2793     e.view_ofs = e.origin - to.origin; // relative origin
2794     e.v_angle = e.angles - to.angles; // relative angles
2795 }
2796
2797 void unfollow_sameorigin(entity e)
2798 {
2799     e.movetype = MOVETYPE_NONE;
2800 }
2801
2802 entity gettaginfo_relative_ent;
2803 vector gettaginfo_relative(entity e, float tag)
2804 {
2805     if (!gettaginfo_relative_ent)
2806     {
2807         gettaginfo_relative_ent = spawn();
2808         gettaginfo_relative_ent.effects = EF_NODRAW;
2809     }
2810     gettaginfo_relative_ent.model = e.model;
2811     gettaginfo_relative_ent.modelindex = e.modelindex;
2812     gettaginfo_relative_ent.frame = e.frame;
2813     return gettaginfo(gettaginfo_relative_ent, tag);
2814 }
2815
2816 void SoundEntity_StartSound(entity pl, float chan, string samp, float vol, float attn)
2817 {
2818     float p;
2819     p = pow(2, chan);
2820     if (pl.soundentity.cnt & p)
2821         return;
2822     soundtoat(MSG_ALL, pl.soundentity, gettaginfo(pl.soundentity, 0), chan, samp, vol, attn);
2823     pl.soundentity.cnt |= p;
2824 }
2825
2826 void SoundEntity_StopSound(entity pl, float chan)
2827 {
2828     float p;
2829     p = pow(2, chan);
2830     if (pl.soundentity.cnt & p)
2831     {
2832         stopsoundto(MSG_ALL, pl.soundentity, chan);
2833         pl.soundentity.cnt &~= p;
2834     }
2835 }
2836
2837 void SoundEntity_Attach(entity pl)
2838 {
2839     pl.soundentity = spawn();
2840     pl.soundentity.classname = "soundentity";
2841     pl.soundentity.owner = pl;
2842     setattachment(pl.soundentity, pl, "");
2843     setmodel(pl.soundentity, "null");
2844 }
2845
2846 void SoundEntity_Detach(entity pl)
2847 {
2848     float i;
2849     for (i = 0; i <= 7; ++i)
2850         SoundEntity_StopSound(pl, i);
2851 }
2852
2853
2854 float ParseCommandPlayerSlotTarget_firsttoken;
2855 entity GetCommandPlayerSlotTargetFromTokenizedCommand(float tokens, float idx) // idx = start index
2856 {
2857         string s;
2858         entity e, head;
2859         float n;
2860
2861         s = string_null;
2862
2863         ParseCommandPlayerSlotTarget_firsttoken = -1;
2864
2865         if (tokens > idx)
2866         {
2867                 if (substring(argv(idx), 0, 1) == "#")
2868                 {
2869                         s = substring(argv(idx), 1, -1);
2870                         ++idx;
2871                         if (s == "") if (tokens > idx)
2872                         {
2873                                 s = argv(idx);
2874                                 ++idx;
2875                         }
2876                         ParseCommandPlayerSlotTarget_firsttoken = idx;
2877                         n = stof(s);
2878                         if (s == ftos(n) && n > 0 && n <= maxclients)
2879                         {
2880                                 e = edict_num(n);
2881                                 if (e.flags & FL_CLIENT)
2882                                         return e;
2883                         }
2884                 }
2885                 else
2886                 {
2887                         // it must be a nick name
2888                         s = argv(idx);
2889                         ++idx;
2890                         ParseCommandPlayerSlotTarget_firsttoken = idx;
2891
2892                         n = 0;
2893                         FOR_EACH_CLIENT(head)
2894                                 if (head.netname == s)
2895                                 {
2896                                         e = head;
2897                                         ++n;
2898                                 }
2899                         if (n == 1)
2900                                 return e;
2901
2902                         s = strdecolorize(s);
2903                         n = 0;
2904                         FOR_EACH_CLIENT(head)
2905                                 if (strdecolorize(head.netname) == s)
2906                                 {
2907                                         e = head;
2908                                         ++n;
2909                                 }
2910                         if (n == 1)
2911                                 return e;
2912                 }
2913         }
2914
2915         return world;
2916 }
2917
2918 .float scale2;
2919
2920 float modeleffect_SendEntity(entity to, float sf)
2921 {
2922         float f;
2923         WriteByte(MSG_ENTITY, ENT_CLIENT_MODELEFFECT);
2924
2925         f = 0;
2926         if(self.velocity != '0 0 0')
2927                 f |= 1;
2928         if(self.angles != '0 0 0')
2929                 f |= 2;
2930         if(self.avelocity != '0 0 0')
2931                 f |= 4;
2932
2933         WriteByte(MSG_ENTITY, f);
2934         WriteShort(MSG_ENTITY, self.modelindex);
2935         WriteByte(MSG_ENTITY, self.skin);
2936         WriteByte(MSG_ENTITY, self.frame);
2937         WriteCoord(MSG_ENTITY, self.origin_x);
2938         WriteCoord(MSG_ENTITY, self.origin_y);
2939         WriteCoord(MSG_ENTITY, self.origin_z);
2940         if(f & 1)
2941         {
2942                 WriteCoord(MSG_ENTITY, self.velocity_x);
2943                 WriteCoord(MSG_ENTITY, self.velocity_y);
2944                 WriteCoord(MSG_ENTITY, self.velocity_z);
2945         }
2946         if(f & 2)
2947         {
2948                 WriteCoord(MSG_ENTITY, self.angles_x);
2949                 WriteCoord(MSG_ENTITY, self.angles_y);
2950                 WriteCoord(MSG_ENTITY, self.angles_z);
2951         }
2952         if(f & 4)
2953         {
2954                 WriteCoord(MSG_ENTITY, self.avelocity_x);
2955                 WriteCoord(MSG_ENTITY, self.avelocity_y);
2956                 WriteCoord(MSG_ENTITY, self.avelocity_z);
2957         }
2958         WriteShort(MSG_ENTITY, self.scale * 256.0);
2959         WriteShort(MSG_ENTITY, self.scale2 * 256.0);
2960         WriteByte(MSG_ENTITY, self.teleport_time * 100.0);
2961         WriteByte(MSG_ENTITY, self.fade_time * 100.0);
2962         WriteByte(MSG_ENTITY, self.alpha * 255.0);
2963
2964         return TRUE;
2965 }
2966
2967 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)
2968 {
2969         entity e;
2970         float sz;
2971         e = spawn();
2972         e.classname = "modeleffect";
2973         setmodel(e, m);
2974         e.frame = f;
2975         setorigin(e, o);
2976         e.velocity = v;
2977         e.angles = ang;
2978         e.avelocity = angv;
2979         e.alpha = a;
2980         e.teleport_time = t1;
2981         e.fade_time = t2;
2982         e.skin = s;
2983         if(s0 >= 0)
2984                 e.scale = s0 / max6(-e.mins_x, -e.mins_y, -e.mins_z, e.maxs_x, e.maxs_y, e.maxs_z);
2985         else
2986                 e.scale = -s0;
2987         if(s2 >= 0)
2988                 e.scale2 = s2 / max6(-e.mins_x, -e.mins_y, -e.mins_z, e.maxs_x, e.maxs_y, e.maxs_z);
2989         else
2990                 e.scale2 = -s2;
2991         sz = max(e.scale, e.scale2);
2992         setsize(e, e.mins * sz, e.maxs * sz);
2993         Net_LinkEntity(e, FALSE, 0.1, modeleffect_SendEntity);
2994 }
2995
2996 void shockwave_spawn(string m, vector org, float sz, float t1, float t2)
2997 {
2998         return modeleffect_spawn(m, 0, 0, org, '0 0 0', '0 0 0', '0 0 0', 0, sz, 1, t1, t2);
2999 }
3000
3001 float randombit(float bits)
3002 {
3003         if not(bits & (bits-1)) // this ONLY holds for powers of two!
3004                 return bits;
3005
3006         float n, f, b, r;
3007
3008         r = random();
3009         b = 0;
3010         n = 0;
3011
3012         for(f = 1; f <= bits; f *= 2)
3013         {
3014                 if(bits & f)
3015                 {
3016                         ++n;
3017                         r *= n;
3018                         if(r <= 1)
3019                                 b = f;
3020                         else
3021                                 r = (r - 1) / (n - 1);
3022                 }
3023         }
3024
3025         return b;
3026 }
3027
3028 float randombits(float bits, float k, float error_return)
3029 {
3030         float r;
3031         r = 0;
3032         while(k > 0 && bits != r)
3033         {
3034                 r += randombit(bits - r);
3035                 --k;
3036         }
3037         if(error_return)
3038                 if(k > 0)
3039                         return -1; // all
3040         return r;
3041 }
3042
3043 void randombit_test(float bits, float iter)
3044 {
3045         while(iter > 0)
3046         {
3047                 print(ftos(randombit(bits)), "\n");
3048                 --iter;
3049         }
3050 }
3051
3052 float ExponentialFalloff(float mindist, float maxdist, float halflifedist, float d)
3053 {
3054         if(halflifedist > 0)
3055                 return pow(0.5, (bound(mindist, d, maxdist) - mindist) / halflifedist);
3056         else if(halflifedist < 0)
3057                 return pow(0.5, (bound(mindist, d, maxdist) - maxdist) / halflifedist);
3058         else
3059                 return 1;
3060 }
3061
3062
3063
3064
3065 #ifdef RELEASE
3066 #define cvar_string_normal cvar_string_builtin
3067 #define cvar_normal cvar_builtin
3068 #else
3069 string cvar_string_normal(string n)
3070 {
3071         if not(cvar_type(n) & 1)
3072                 backtrace(strcat("Attempt to access undefined cvar: ", n));
3073         return cvar_string_builtin(n);
3074 }
3075
3076 float cvar_normal(string n)
3077 {
3078         return stof(cvar_string_normal(n));
3079 }
3080 #endif
3081 #define cvar_set_normal cvar_set_builtin
3082
3083 void defer_think()
3084 {
3085     entity oself;
3086
3087     oself           = self;
3088     self            = self.owner;
3089     oself.think     = SUB_Remove;
3090     oself.nextthink = time;
3091
3092     oself.use();
3093 }
3094
3095 /*
3096     Execute func() after time + fdelay.
3097     self when func is executed = self when defer is called
3098 */
3099 void defer(float fdelay, void() func)
3100 {
3101     entity e;
3102
3103     e           = spawn();
3104     e.owner     = self;
3105     e.use       = func;
3106     e.think     = defer_think;
3107     e.nextthink = time + fdelay;
3108 }