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