]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/miscfunctions.qc
jetpack: add a "fuel" ammo type, and use that - and let it have regeneration
[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() spawnfunc_info_player_deathmatch; // needed for the other spawnpoints
7 void() spawnpoint_use;
8 string ColoredTeamName(float t);
9
10 float RandomSelection_totalweight;
11 float RandomSelection_best_priority;
12 entity RandomSelection_chosen_ent;
13 float RandomSelection_chosen_float;
14 void RandomSelection_Init()
15 {
16         RandomSelection_totalweight = 0;
17         RandomSelection_chosen_ent = world;
18         RandomSelection_chosen_float = 0;
19         RandomSelection_best_priority = -1;
20 }
21 void RandomSelection_Add(entity e, float f, float weight, float priority)
22 {
23         if(priority > RandomSelection_best_priority)
24         {
25                 RandomSelection_best_priority = priority;
26                 RandomSelection_chosen_ent = e;
27                 RandomSelection_chosen_float = f;
28                 RandomSelection_totalweight = weight;
29         }
30         else if(priority == RandomSelection_best_priority)
31         {
32                 RandomSelection_totalweight += weight;
33                 if(random() * RandomSelection_totalweight <= weight)
34                 {
35                         RandomSelection_chosen_ent = e;
36                         RandomSelection_chosen_float = f;
37                 }
38         }
39 }
40
41 float DistributeEvenly_amount;
42 float DistributeEvenly_totalweight;
43 void DistributeEvenly_Init(float amount, float totalweight)
44 {
45         if(DistributeEvenly_amount)
46         {
47                 dprint("DistributeEvenly_Init: UNFINISHED DISTRIBUTION (", ftos(DistributeEvenly_amount), " for ");
48                 dprint(ftos(DistributeEvenly_totalweight), " left!)\n");
49         }
50         if(totalweight == 0)
51                 DistributeEvenly_amount = 0;
52         else
53                 DistributeEvenly_amount = amount;
54         DistributeEvenly_totalweight = totalweight;
55 }
56 float DistributeEvenly_Get(float weight)
57 {
58         float f;
59         if(weight <= 0)
60                 return 0;
61         f = floor(0.5 + DistributeEvenly_amount * weight / DistributeEvenly_totalweight);
62         DistributeEvenly_totalweight -= weight;
63         DistributeEvenly_amount -= f;
64         return f;
65 }
66
67 void move_out_of_solid_expand(entity e, vector by)
68 {
69         float eps = 0.0625;
70         tracebox(e.origin, e.mins - '1 1 1' * eps, e.maxs + '1 1 1' * eps, e.origin + by, MOVE_WORLDONLY, e);
71         if(trace_startsolid)
72                 return;
73         if(trace_fraction < 1)
74         {
75                 // hit something
76                 // adjust origin in the other direction...
77                 e.origin = e.origin - by * (1 - trace_fraction);
78         }
79 }
80
81 float move_out_of_solid(entity e)
82 {
83         vector o, m0, m1;
84
85         o = e.origin;
86         traceline(o, o, MOVE_WORLDONLY, e);
87         if(trace_startsolid)
88                 return 0;
89
90         tracebox(o, e.mins, e.maxs, o, MOVE_WORLDONLY, e);
91         if(!trace_startsolid)
92                 return 1;
93
94         m0 = e.mins;
95         m1 = e.maxs;
96         e.mins = '0 0 0';
97         e.maxs = '0 0 0';
98         move_out_of_solid_expand(e, '1 0 0' * m0_x); e.mins_x = m0_x;
99         move_out_of_solid_expand(e, '1 0 0' * m1_x); e.maxs_x = m1_x;
100         move_out_of_solid_expand(e, '0 1 0' * m0_y); e.mins_y = m0_y;
101         move_out_of_solid_expand(e, '0 1 0' * m1_y); e.maxs_y = m1_y;
102         move_out_of_solid_expand(e, '0 0 1' * m0_z); e.mins_z = m0_z;
103         move_out_of_solid_expand(e, '0 0 1' * m1_z); e.maxs_z = m1_z;
104         setorigin(e, e.origin);
105
106         tracebox(e.origin, e.mins, e.maxs, e.origin, MOVE_WORLDONLY, e);
107         if(trace_startsolid)
108         {
109                 setorigin(e, o);
110                 return 0;
111         }
112
113         return 1;
114 }
115
116 string STR_PLAYER = "player";
117 string STR_SPECTATOR = "spectator";
118 string STR_OBSERVER = "observer";
119
120 #if 0
121 #define FOR_EACH_CLIENT(v) for(v = world; (v = findflags(v, flags, FL_CLIENT)) != world; )
122 #define FOR_EACH_REALCLIENT(v) FOR_EACH_CLIENT(v) if(clienttype(v) == CLIENTTYPE_REAL)
123 #define FOR_EACH_PLAYER(v) for(v = world; (v = find(v, classname, STR_PLAYER)) != world; )
124 #define FOR_EACH_REALPLAYER(v) FOR_EACH_PLAYER(v) if(clienttype(v) == CLIENTTYPE_REAL)
125 #else
126 #define FOR_EACH_CLIENTSLOT(v) for(v = world; (v = nextent(v)) && (num_for_edict(v) <= maxclients); )
127 #define FOR_EACH_CLIENT(v) FOR_EACH_CLIENTSLOT(v) if(v.flags & FL_CLIENT)
128 #define FOR_EACH_REALCLIENT(v) FOR_EACH_CLIENT(v) if(clienttype(v) == CLIENTTYPE_REAL)
129 #define FOR_EACH_PLAYER(v) FOR_EACH_CLIENT(v) if(v.classname == STR_PLAYER)
130 #define FOR_EACH_REALPLAYER(v) FOR_EACH_REALCLIENT(v) if(v.classname == STR_PLAYER)
131 #endif
132
133 // copies a string to a tempstring (so one can strunzone it)
134 string strcat1(string s) = #115; // FRIK_FILE
135
136 float logfile_open;
137 float logfile;
138
139 void bcenterprint(string s)
140 {
141         // TODO replace by MSG_ALL (would show it to spectators too, though)?
142         entity head;
143         FOR_EACH_PLAYER(head)
144                 if(clienttype(head) == CLIENTTYPE_REAL)
145                         centerprint(head, s);
146 }
147
148 void GameLogEcho(string s)
149 {
150         string fn;
151         float matches;
152
153         if(cvar("sv_eventlog_files"))
154         {
155                 if(!logfile_open)
156                 {
157                         logfile_open = TRUE;
158                         matches = cvar("sv_eventlog_files_counter") + 1;
159                         cvar_set("sv_eventlog_files_counter", ftos(matches));
160                         fn = ftos(matches);
161                         if(strlen(fn) < 8)
162                                 fn = strcat(substring("00000000", 0, 8 - strlen(fn)), fn);
163                         fn = strcat(cvar_string("sv_eventlog_files_nameprefix"), fn, cvar_string("sv_eventlog_files_namesuffix"));
164                         logfile = fopen(fn, FILE_APPEND);
165                         fputs(logfile, ":logversion:3\n");
166                 }
167                 if(logfile >= 0)
168                 {
169                         if(cvar("sv_eventlog_files_timestamps"))
170                                 fputs(logfile, strcat(":time:", strftime(TRUE, "%Y-%m-%d %H:%M:%S", "\n", s, "\n")));
171                         else
172                                 fputs(logfile, strcat(s, "\n"));
173                 }
174         }
175         if(cvar("sv_eventlog_console"))
176         {
177                 print(s, "\n");
178         }
179 }
180
181 void GameLogInit()
182 {
183         logfile_open = 0;
184         // will be opened later
185 }
186
187 void GameLogClose()
188 {
189         if(logfile_open && logfile >= 0)
190         {
191                 fclose(logfile);
192                 logfile = -1;
193         }
194 }
195
196 float spawnpoint_nag;
197 void relocate_spawnpoint()
198 {
199         // nudge off the floor
200         setorigin(self, self.origin + '0 0 1');
201
202         tracebox(self.origin, PL_MIN, PL_MAX, self.origin, TRUE, self);
203         if (trace_startsolid)
204         {
205                 vector o;
206                 o = self.origin;
207                 self.mins = PL_MIN;
208                 self.maxs = PL_MAX;
209                 if(!move_out_of_solid(self))
210                         objerror("could not get out of solid at all!");
211                 print("^1NOTE: this map needs FIXING. Spawnpoint at ", vtos(o - '0 0 1'));
212                 print(" needs to be moved out of solid, e.g. by '", ftos(self.origin_x - o_x));
213                 print(" ", ftos(self.origin_y - o_y));
214                 print(" ", ftos(self.origin_z - o_z), "'\n");
215                 if(cvar("g_spawnpoints_auto_move_out_of_solid"))
216                 {
217                         if(!spawnpoint_nag)
218                                 print("\{1}^1NOTE: this map needs FIXING (it contains spawnpoints in solid, see server log)\n");
219                         spawnpoint_nag = 1;
220                 }
221                 else
222                 {
223                         self.origin = o;
224                         self.mins = self.maxs = '0 0 0';
225                         objerror("player spawn point in solid, mapper sucks!\n");
226                         return;
227                 }
228         }
229
230         if(cvar("g_spawnpoints_autodrop"))
231         {
232                 setsize(self, PL_MIN, PL_MAX);
233                 droptofloor();
234         }
235
236         self.use = spawnpoint_use;
237         self.team_saved = self.team;
238         if(!self.cnt)
239                 self.cnt = 1;
240
241         if(g_ctf || g_assault || g_onslaught || g_domination)
242         if(self.team)
243                 have_team_spawns = 1;
244
245         if(cvar("r_showbboxes"))
246         {
247                 // show where spawnpoints point at too
248                 makevectors(self.angles);
249                 entity e;
250                 e = spawn();
251                 e.classname = "info_player_foo";
252                 setorigin(e, self.origin + v_forward * 24);
253                 setsize(e, '-8 -8 -8', '8 8 8');
254                 e.solid = SOLID_TRIGGER;
255         }
256 }
257
258 #define strstr strstrofs
259 /*
260 // NOTE: DO NOT USE THIS FUNCTION TOO OFTEN.
261 // IT WILL MOST PROBABLY DESTROY _ALL_ OTHER TEMP
262 // STRINGS AND TAKE QUITE LONG. haystack and needle MUST
263 // BE CONSTANT OR strzoneD!
264 float strstr(string haystack, string needle, float offset)
265 {
266         float len, endpos;
267         string found;
268         len = strlen(needle);
269         endpos = strlen(haystack) - len;
270         while(offset <= endpos)
271         {
272                 found = substring(haystack, offset, len);
273                 if(found == needle)
274                         return offset;
275                 offset = offset + 1;
276         }
277         return -1;
278 }
279 */
280
281 float NUM_NEAREST_ENTITIES = 4;
282 entity nearest_entity[NUM_NEAREST_ENTITIES];
283 float nearest_length[NUM_NEAREST_ENTITIES];
284 entity findnearest(vector point, .string field, string value, vector axismod)
285 {
286         entity localhead;
287         float i;
288         float j;
289         float len;
290         vector dist;
291
292         float num_nearest;
293         num_nearest = 0;
294
295         localhead = find(world, field, value);
296         while(localhead)
297         {
298                 if((localhead.items == IT_KEY1 || localhead.items == IT_KEY2) && localhead.target == "###item###")
299                         dist = localhead.oldorigin;
300                 else
301                         dist = localhead.origin;
302                 dist = dist - point;
303                 dist = dist_x * axismod_x * '1 0 0' + dist_y * axismod_y * '0 1 0' + dist_z * axismod_z * '0 0 1';
304                 len = vlen(dist);
305
306                 for(i = 0; i < num_nearest; ++i)
307                 {
308                         if(len < nearest_length[i])
309                                 break;
310                 }
311
312                 // now i tells us where to insert at
313                 //   INSERTION SORT! YOU'VE SEEN IT! RUN!
314                 if(i < NUM_NEAREST_ENTITIES)
315                 {
316                         for(j = NUM_NEAREST_ENTITIES - 1; j >= i; --j)
317                         {
318                                 nearest_length[j + 1] = nearest_length[j];
319                                 nearest_entity[j + 1] = nearest_entity[j];
320                         }
321                         nearest_length[i] = len;
322                         nearest_entity[i] = localhead;
323                         if(num_nearest < NUM_NEAREST_ENTITIES)
324                                 num_nearest = num_nearest + 1;
325                 }
326
327                 localhead = find(localhead, field, value);
328         }
329
330         // now use the first one from our list that we can see
331         for(i = 0; i < num_nearest; ++i)
332         {
333                 traceline(point, nearest_entity[i].origin, TRUE, world);
334                 if(trace_fraction == 1)
335                 {
336                         if(i != 0)
337                         {
338                                 dprint("Nearest point (");
339                                 dprint(nearest_entity[0].netname);
340                                 dprint(") is not visible, using a visible one.\n");
341                         }
342                         return nearest_entity[i];
343                 }
344         }
345
346         if(num_nearest == 0)
347                 return world;
348
349         dprint("Not seeing any location point, using nearest as fallback.\n");
350         /* DEBUGGING CODE:
351         dprint("Candidates were: ");
352         for(j = 0; j < num_nearest; ++j)
353         {
354                 if(j != 0)
355                         dprint(", ");
356                 dprint(nearest_entity[j].netname);
357         }
358         dprint("\n");
359         */
360
361         return nearest_entity[0];
362 }
363
364 void spawnfunc_target_location()
365 {
366         self.classname = "target_location";
367         // location name in netname
368         // eventually support: count, teamgame selectors, line of sight?
369 };
370
371 void spawnfunc_info_location()
372 {
373         self.classname = "target_location";
374         self.message = self.netname;
375 };
376
377 string NearestLocation(vector p)
378 {
379         entity loc;
380         string ret;
381         ret = "somewhere";
382         loc = findnearest(p, classname, "target_location", '1 1 1');
383         if(loc)
384         {
385                 ret = loc.message;
386         }
387         else
388         {
389                 loc = findnearest(p, target, "###item###", '1 1 4');
390                 if(loc)
391                         ret = loc.netname;
392         }
393         return ret;
394 }
395
396 string formatmessage(string msg)
397 {
398         float p, p1, p2;
399         float n;
400         string escape;
401         string replacement;
402         p = 0;
403         n = 7;
404         while(1)
405         {
406                 if(n < 1)
407                         break; // too many replacements
408                 n = n - 1;
409                 p1 = strstr(msg, "%", p); // NOTE: this destroys msg as it's a tempstring!
410                 p2 = strstr(msg, "\\", p); // NOTE: this destroys msg as it's a tempstring!
411
412                 if(p1 < 0)
413                         p1 = p2;
414                 if(p2 < 0)
415                         p2 = p1;
416                 p = min(p1, p2);
417                 
418                 if(p < 0)
419                         break;
420                 replacement = substring(msg, p, 2);
421                 escape = substring(msg, p + 1, 1);
422                 if(escape == "%")
423                         replacement = "%";
424                 else if(escape == "\\")
425                         replacement = "\\";
426                 else if(escape == "n")
427                         replacement = "\n";
428                 else if(escape == "a")
429                         replacement = ftos(floor(self.armorvalue));
430                 else if(escape == "h")
431                         replacement = ftos(floor(self.health));
432                 else if(escape == "l")
433                         replacement = NearestLocation(self.origin);
434                 else if(escape == "y")
435                         replacement = NearestLocation(self.cursor_trace_endpos);
436                 else if(escape == "d")
437                         replacement = NearestLocation(self.death_origin);
438                 else if(escape == "w")
439                 {
440                         float wep;
441                         wep = self.weapon;
442                         if(!wep)
443                                 wep = self.switchweapon;
444                         if(!wep)
445                                 wep = self.cnt;
446                         replacement = W_Name(wep);
447                 }
448                 else if(escape == "W")
449                 {
450                         if(self.items & IT_SHELLS) replacement = "shells";
451                         else if(self.items & IT_NAILS) replacement = "bullets";
452                         else if(self.items & IT_ROCKETS) replacement = "rockets";
453                         else if(self.items & IT_CELLS) replacement = "cells";
454                         else replacement = "batteries"; // ;)
455                 }
456                 else if(escape == "x")
457                 {
458                         replacement = self.cursor_trace_ent.netname;
459                         if(!replacement || !self.cursor_trace_ent)
460                                 replacement = "nothing";
461                 }
462                 else if(escape == "p")
463                 {
464                         if(self.last_selected_player)
465                                 replacement = self.last_selected_player.netname;
466                         else
467                                 replacement = "(nobody)";
468                 }
469                 msg = strcat(substring(msg, 0, p), replacement, substring(msg, p+2, strlen(msg) - (p+2)));
470                 p = p + strlen(replacement);
471         }
472         return msg;
473 }
474
475 /*
476 =============
477 GetCvars
478 =============
479 Called with:
480   0:  sends the request
481   >0: receives a cvar from name=argv(f) value=argv(f+1)
482 */
483 void GetCvars_handleString(string thisname, float f, .string field, string name)
484 {
485         if(f < 0)
486         {
487                 if(self.field)
488                         strunzone(self.field);
489                 self.field = string_null;
490         }
491         else if(f > 0)
492         {
493                 if(thisname == name)
494                 {
495                         if(self.field)
496                                 strunzone(self.field);
497                         self.field = strzone(argv(f + 1));
498                 }
499         }
500         else
501                 stuffcmd(self, strcat("sendcvar ", name, "\n"));
502 }
503 void GetCvars_handleString_Fixup(string thisname, float f, .string field, string name, string(string) func)
504 {
505         GetCvars_handleString(thisname, f, field, name);
506         if(f >= 0) // also initialize to the fitting value for "" when sending cvars out
507         if(thisname == name)
508         {
509                 string s;
510                 s = func(strcat1(self.field));
511                 if(s != self.field)
512                 {
513                         strunzone(self.field);
514                         self.field = strzone(s);
515                 }
516         }
517 }
518 void GetCvars_handleFloat(string thisname, float f, .float field, string name)
519 {
520         if(f < 0)
521         {
522         }
523         else if(f > 0)
524         {
525                 if(thisname == name)
526                         self.field = stof(argv(f + 1));
527         }
528         else
529                 stuffcmd(self, strcat("sendcvar ", name, "\n"));
530 }
531 string W_FixWeaponOrder_ForceComplete(string s);
532 string W_FixWeaponOrder_AllowIncomplete(string s);
533 float w_getbestweapon(entity e);
534 void GetCvars(float f)
535 {
536         string s;
537         if(f > 0)
538                 s = strcat1(argv(f));
539         GetCvars_handleFloat(s, f, autoswitch, "cl_autoswitch");
540         GetCvars_handleFloat(s, f, cvar_cl_playerdetailreduction, "cl_playerdetailreduction");
541         GetCvars_handleFloat(s, f, cvar_scr_centertime, "scr_centertime");
542         GetCvars_handleFloat(s, f, cvar_cl_shownames, "cl_shownames");
543         GetCvars_handleString(s, f, cvar_g_nexuizversion, "g_nexuizversion");
544         GetCvars_handleFloat(s, f, cvar_cl_handicap, "cl_handicap");
545         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete);
546         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[0], "cl_weaponpriority0", W_FixWeaponOrder_AllowIncomplete);
547         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[1], "cl_weaponpriority1", W_FixWeaponOrder_AllowIncomplete);
548         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[2], "cl_weaponpriority2", W_FixWeaponOrder_AllowIncomplete);
549         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[3], "cl_weaponpriority3", W_FixWeaponOrder_AllowIncomplete);
550         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[4], "cl_weaponpriority4", W_FixWeaponOrder_AllowIncomplete);
551         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[5], "cl_weaponpriority5", W_FixWeaponOrder_AllowIncomplete);
552         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[6], "cl_weaponpriority6", W_FixWeaponOrder_AllowIncomplete);
553         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[7], "cl_weaponpriority7", W_FixWeaponOrder_AllowIncomplete);
554         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[8], "cl_weaponpriority8", W_FixWeaponOrder_AllowIncomplete);
555         GetCvars_handleString_Fixup(s, f, cvar_cl_weaponpriorities[9], "cl_weaponpriority9", W_FixWeaponOrder_AllowIncomplete);
556         GetCvars_handleFloat(s, f, cvar_cl_autotaunt, "cl_autotaunt");
557         GetCvars_handleFloat(s, f, cvar_cl_voice_directional, "cl_voice_directional");
558         GetCvars_handleFloat(s, f, cvar_cl_voice_directional_taunt_attenuation, "cl_voice_directional_taunt_attenuation");
559         GetCvars_handleFloat(s, f, cvar_cl_hitsound, "cl_hitsound");
560
561         // fixup of switchweapon (needed for LMS or when spectating is disabled, as PutClientInServer comes too early)
562         if(f > 0)
563         {
564                 if(s == "cl_weaponpriority")
565                         self.switchweapon = w_getbestweapon(self);
566         }
567 }
568
569 float fexists(string f)
570 {
571         float fh;
572         fh = fopen(f, FILE_READ);
573         if(fh < 0)
574                 return FALSE;
575         fclose(fh);
576         return TRUE;
577 }
578
579 void backtrace(string msg)
580 {
581         float dev;
582         dev = cvar("developer");
583         cvar_set("developer", "1");
584         dprint("\n");
585         dprint("--- CUT HERE ---\nWARNING: ");
586         dprint(msg);
587         dprint("\n");
588         remove(world); // isn't there any better way to cause a backtrace?
589         dprint("\n--- CUT UNTIL HERE ---\n");
590         cvar_set("developer", ftos(dev));
591 }
592
593 string Team_ColorCode(float teamid)
594 {
595         if(teamid == COLOR_TEAM1)
596                 return "^1";
597         else if(teamid == COLOR_TEAM2)
598                 return "^4";
599         else if(teamid == COLOR_TEAM3)
600                 return "^3";
601         else if(teamid == COLOR_TEAM4)
602                 return "^6";
603         else
604                 return "^7";
605 }
606 string Team_ColorName(float t)
607 {
608         // fixme: Search for team entities and get their .netname's!
609         if(t == COLOR_TEAM1)
610                 return "Red";
611         if(t == COLOR_TEAM2)
612                 return "Blue";
613         if(t == COLOR_TEAM3)
614                 return "Yellow";
615         if(t == COLOR_TEAM4)
616                 return "Pink";
617         return "Neutral";
618 }
619 string Team_ColorNameLowerCase(float t)
620 {
621         // fixme: Search for team entities and get their .netname's!
622         if(t == COLOR_TEAM1)
623                 return "red";
624         if(t == COLOR_TEAM2)
625                 return "blue";
626         if(t == COLOR_TEAM3)
627                 return "yellow";
628         if(t == COLOR_TEAM4)
629                 return "pink";
630         return "neutral";
631 }
632
633 #define CENTERPRIO_POINT 1
634 #define CENTERPRIO_SPAM 2
635 #define CENTERPRIO_VOTE 4
636 #define CENTERPRIO_NORMAL 5
637 #define CENTERPRIO_SHIELDING 7
638 #define CENTERPRIO_MAPVOTE 9
639 #define CENTERPRIO_IDLEKICK 50
640 #define CENTERPRIO_ADMIN 99
641 .float centerprint_priority;
642 .float centerprint_expires;
643 void centerprint_atprio(entity e, float prio, string s)
644 {
645         if(intermission_running)
646                 if(prio < CENTERPRIO_MAPVOTE)
647                         return;
648         if(time > e.centerprint_expires)
649                 e.centerprint_priority = 0;
650         if(prio >= e.centerprint_priority)
651         {
652                 e.centerprint_priority = prio;
653                 if(timeoutStatus == 2)
654                         e.centerprint_expires = time + (e.cvar_scr_centertime * TIMEOUT_SLOWMO_VALUE);
655                 else
656                         e.centerprint_expires = time + e.cvar_scr_centertime;
657                 centerprint_builtin(e, s);
658         }
659 }
660 void centerprint_expire(entity e, float prio)
661 {
662         if(prio == e.centerprint_priority)
663         {
664                 e.centerprint_priority = 0;
665                 centerprint_builtin(e, "");
666         }
667 }
668 void centerprint(entity e, string s)
669 {
670         centerprint_atprio(e, CENTERPRIO_NORMAL, s);
671 }
672
673 // decolorizes and team colors the player name when needed
674 string playername(entity p)
675 {
676         string t;
677         if(teams_matter && !intermission_running && p.classname == "player")
678         {
679                 t = Team_ColorCode(p.team);
680                 return strcat(t, strdecolorize(p.netname));
681         }
682         else
683                 return p.netname;
684 }
685
686 vector randompos(vector m1, vector m2)
687 {
688         local vector v;
689         m2 = m2 - m1;
690         v_x = m2_x * random() + m1_x;
691         v_y = m2_y * random() + m1_y;
692         v_z = m2_z * random() + m1_z;
693         return  v;
694 };
695
696 float g_pickup_shells;
697 float g_pickup_shells_max;
698 float g_pickup_nails;
699 float g_pickup_nails_max;
700 float g_pickup_rockets;
701 float g_pickup_rockets_max;
702 float g_pickup_cells;
703 float g_pickup_cells_max;
704 float g_pickup_armorsmall;
705 float g_pickup_armorsmall_max;
706 float g_pickup_armormedium;
707 float g_pickup_armormedium_max;
708 float g_pickup_armorbig;
709 float g_pickup_armorbig_max;
710 float g_pickup_armorlarge;
711 float g_pickup_armorlarge_max;
712 float g_pickup_healthsmall;
713 float g_pickup_healthsmall_max;
714 float g_pickup_healthmedium;
715 float g_pickup_healthmedium_max;
716 float g_pickup_healthlarge;
717 float g_pickup_healthlarge_max;
718 float g_pickup_healthmega;
719 float g_pickup_healthmega_max;
720 float g_weaponarena;
721 string g_weaponarena_list;
722
723 float start_weapons;
724 float start_items;
725 float start_ammo_shells;
726 float start_ammo_nails;
727 float start_ammo_rockets;
728 float start_ammo_cells;
729 float start_health;
730 float start_armorvalue;
731 float warmup_start_weapons;
732 float warmup_start_ammo_shells;
733 float warmup_start_ammo_nails;
734 float warmup_start_ammo_rockets;
735 float warmup_start_ammo_cells;
736 float warmup_start_health;
737 float warmup_start_armorvalue;
738 float g_weapon_stay;
739
740 entity get_weaponinfo(float w);
741
742 void readplayerstartcvars()
743 {
744         entity e;
745         float i, j, t;
746         string s;
747
748         // initialize starting values for players
749         start_weapons = 0;
750         start_items = 0;
751         start_ammo_shells = 0;
752         start_ammo_nails = 0;
753         start_ammo_rockets = 0;
754         start_ammo_cells = 0;
755         start_health = cvar("g_balance_health_start");
756         start_armorvalue = cvar("g_balance_armor_start");
757
758         g_weaponarena = 0;
759         s = cvar_string("g_weaponarena");
760         if(s == "0")
761         {
762         }
763         else if(s == "all")
764         {
765                 g_weaponarena_list = "All Weapons";
766                 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
767                 {
768                         e = get_weaponinfo(j);
769                         g_weaponarena |= e.weapons;
770                         weapon_action(e.weapon, WR_PRECACHE);
771                 }
772         }
773         else if(s == "most")
774         {
775                 g_weaponarena_list = "Most Weapons";
776                 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
777                 {
778                         e = get_weaponinfo(j);
779                         if(e.spawnflags & WEPSPAWNFLAG_NORMAL)
780                         {
781                                 g_weaponarena |= e.weapons;
782                                 weapon_action(e.weapon, WR_PRECACHE);
783                         }
784                 }
785         }
786         else
787         {
788                 t = tokenize_sane(s);
789                 g_weaponarena_list = "";
790                 for(i = 0; i < t; ++i)
791                 {
792                         s = argv(i);
793                         for(j = WEP_FIRST; j <= WEP_LAST; ++j)
794                         {
795                                 e = get_weaponinfo(j);
796                                 if(e.netname == s)
797                                 {
798                                         g_weaponarena |= e.weapons;
799                                         weapon_action(e.weapon, WR_PRECACHE);
800                                         g_weaponarena_list = strcat(g_weaponarena_list, e.message, " & ");
801                                         break;
802                                 }
803                         }
804                         if(j > WEP_LAST)
805                         {
806                                 print("The weapon mutator list contains an unknown weapon ", s, ". Skipped.\n");
807                         }
808                 }
809                 g_weaponarena_list = strzone(substring(g_weaponarena_list, 0, strlen(g_weaponarena_list) - 3));
810         }
811
812         if(g_weaponarena)
813         {
814                 start_weapons = g_weaponarena;
815                 start_ammo_rockets = 999;
816                 start_ammo_shells = 999;
817                 start_ammo_cells = 999;
818                 start_ammo_nails = 999;
819                 start_items |= IT_UNLIMITED_AMMO;
820         }
821         else if(g_nixnex)
822         {
823                 start_weapons = 0;
824                 // will be done later
825                 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
826                 {
827                         e = get_weaponinfo(i);
828                         if(!(e.weapon))
829                                 continue;
830                         weapon_action(e.weapon, WR_PRECACHE);
831                 }
832         }
833         else if(g_minstagib)
834         {
835                 start_health = 100;
836                 start_armorvalue = 0;
837                 start_weapons = WEPBIT_MINSTANEX;
838                 weapon_action(WEP_MINSTANEX, WR_PRECACHE);
839                 start_ammo_cells = cvar("g_minstagib_ammo_start");
840                 g_minstagib_invis_alpha = cvar("g_minstagib_invis_alpha");
841
842                 if(g_minstagib_invis_alpha <= 0)
843                         g_minstagib_invis_alpha = -1;
844         }
845         else
846         {
847                 if(g_lms)
848                 {
849                         start_ammo_shells = cvar("g_lms_start_ammo_shells");
850                         start_ammo_nails = cvar("g_lms_start_ammo_nails");
851                         start_ammo_rockets = cvar("g_lms_start_ammo_rockets");
852                         start_ammo_cells = cvar("g_lms_start_ammo_cells");
853                         start_health = cvar("g_lms_start_health");
854                         start_armorvalue = cvar("g_lms_start_armor");
855                 } else if (cvar("g_use_ammunition")) {
856                         start_ammo_shells = cvar("g_start_ammo_shells");
857                         start_ammo_nails = cvar("g_start_ammo_nails");
858                         start_ammo_rockets = cvar("g_start_ammo_rockets");
859                         start_ammo_cells = cvar("g_start_ammo_cells");
860                 } else {
861                         start_ammo_shells = cvar("g_pickup_shells_max");
862                         start_ammo_nails = cvar("g_pickup_nails_max");
863                         start_ammo_rockets = cvar("g_pickup_rockets_max");
864                         start_ammo_cells = cvar("g_pickup_cells_max");
865                         start_items |= IT_UNLIMITED_AMMO;
866                 }
867
868                 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
869                 {
870                         e = get_weaponinfo(i);
871                         if(!(e.weapon))
872                                 continue;
873
874                         t = cvar(strcat("g_start_weapon_", e.netname));
875
876                         if(t < 0) // "default" weapon selection
877                         {
878                                 if(g_lms)
879                                         t = (e.spawnflags & WEPSPAWNFLAG_NORMAL);
880                                 else if(g_race)
881                                         t = (i == WEP_LASER);
882                                 else
883                                         t = (i == WEP_LASER || i == WEP_SHOTGUN);
884                                 if(g_grappling_hook) // if possible, redirect off-hand hook to on-hand hook
885                                         t += (i == WEP_HOOK);
886                         }
887
888                         if(t)
889                         {
890                                 start_weapons |= e.weapons;
891                                 weapon_action(e.weapon, WR_PRECACHE);
892                         }
893                 }
894         }
895
896         if(inWarmupStage)
897         {
898                 warmup_start_ammo_shells = start_ammo_shells;
899                 warmup_start_ammo_nails = start_ammo_nails;
900                 warmup_start_ammo_rockets = start_ammo_rockets;
901                 warmup_start_ammo_cells = start_ammo_cells;
902                 warmup_start_health = start_health;
903                 warmup_start_armorvalue = start_armorvalue;
904                 warmup_start_weapons = start_weapons;
905
906                 if(!g_weaponarena && !g_nixnex && !g_minstagib)
907                 {
908                         if(cvar("g_use_ammunition"))
909                         {
910                                 warmup_start_ammo_shells = cvar("g_warmup_start_ammo_shells");
911                                 warmup_start_ammo_cells = cvar("g_warmup_start_ammo_cells");
912                                 warmup_start_ammo_nails = cvar("g_warmup_start_ammo_nails");
913                                 warmup_start_ammo_rockets = cvar("g_warmup_start_ammo_rockets");
914                         }
915                         warmup_start_health = cvar("g_warmup_start_health");
916                         warmup_start_armorvalue = cvar("g_warmup_start_armor");
917                         if(cvar("g_warmup_allguns"))
918                         {
919                                 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
920                                 {
921                                         e = get_weaponinfo(i);
922                                         if(!(e.weapon))
923                                                 continue;
924                                         if(e.spawnflags & WEPSPAWNFLAG_NORMAL)
925                                         {
926                                                 warmup_start_weapons |= e.weapons;
927                                                 weapon_action(e.weapon, WR_PRECACHE);
928                                         }
929                                 }
930                         }
931                 }
932         }
933
934         if(start_weapons & WEPBIT_HOOK)
935         {
936                 // can't have off-hand hook, if hook weapon is enabled
937
938                 // note: if g_grappling_hook is 1, also give some initial cells
939                 if(g_grappling_hook)
940                 {
941                         if(!start_ammo_cells)
942                                 start_ammo_cells = g_pickup_cells;
943                         if(!warmup_start_ammo_cells)
944                                 warmup_start_ammo_cells = g_pickup_cells;
945                 }
946
947                 g_grappling_hook = 0;
948         }
949
950         if(g_jetpack)
951         {
952                 g_grappling_hook = 0; // these two can't coexist, as they use the same button
953                 start_items |= IT_JETPACK;
954                 start_items |= IT_FUEL_REGEN;
955         }
956
957         if(g_weapon_stay == 2)
958         {
959                 if(!start_ammo_shells) start_ammo_shells = g_pickup_shells;
960                 if(!start_ammo_nails) start_ammo_nails = g_pickup_nails;
961                 if(!start_ammo_cells) start_ammo_cells = g_pickup_cells;
962                 if(!start_ammo_rockets) start_ammo_rockets = g_pickup_rockets;
963                 if(!warmup_start_ammo_shells) warmup_start_ammo_shells = g_pickup_shells;
964                 if(!warmup_start_ammo_nails) warmup_start_ammo_nails = g_pickup_nails;
965                 if(!warmup_start_ammo_cells) warmup_start_ammo_cells = g_pickup_cells;
966                 if(!warmup_start_ammo_rockets) warmup_start_ammo_rockets = g_pickup_rockets;
967         }
968
969         start_ammo_shells = max(0, start_ammo_shells);
970         start_ammo_nails = max(0, start_ammo_nails);
971         start_ammo_cells = max(0, start_ammo_cells);
972         start_ammo_rockets = max(0, start_ammo_rockets);
973
974         warmup_start_ammo_shells = max(0, warmup_start_ammo_shells);
975         warmup_start_ammo_nails = max(0, warmup_start_ammo_nails);
976         warmup_start_ammo_cells = max(0, warmup_start_ammo_cells);
977         warmup_start_ammo_rockets = max(0, warmup_start_ammo_rockets);
978 }
979
980 float g_bugrigs;
981 float g_bugrigs_planar_movement;
982 float g_bugrigs_planar_movement_car_jumping;
983 float g_bugrigs_reverse_spinning;
984 float g_bugrigs_reverse_speeding;
985 float g_bugrigs_reverse_stopping;
986 float g_bugrigs_air_steering;
987 float g_bugrigs_angle_smoothing;
988 float g_bugrigs_friction_floor;
989 float g_bugrigs_friction_brake;
990 float g_bugrigs_friction_air;
991 float g_bugrigs_accel;
992 float g_bugrigs_speed_ref;
993 float g_bugrigs_speed_pow;
994 float g_bugrigs_steer;
995
996 float g_touchexplode;
997 float g_touchexplode_radius;
998 float g_touchexplode_damage;
999 float g_touchexplode_edgedamage;
1000 float g_touchexplode_force;
1001
1002 void readlevelcvars(void)
1003 {
1004         g_bugrigs = cvar("g_bugrigs");
1005         g_bugrigs_planar_movement = cvar("g_bugrigs_planar_movement");
1006         g_bugrigs_planar_movement_car_jumping = cvar("g_bugrigs_planar_movement_car_jumping");
1007         g_bugrigs_reverse_spinning = cvar("g_bugrigs_reverse_spinning");
1008         g_bugrigs_reverse_speeding = cvar("g_bugrigs_reverse_speeding");
1009         g_bugrigs_reverse_stopping = cvar("g_bugrigs_reverse_stopping");
1010         g_bugrigs_air_steering = cvar("g_bugrigs_air_steering");
1011         g_bugrigs_angle_smoothing = cvar("g_bugrigs_angle_smoothing");
1012         g_bugrigs_friction_floor = cvar("g_bugrigs_friction_floor");
1013         g_bugrigs_friction_brake = cvar("g_bugrigs_friction_brake");
1014         g_bugrigs_friction_air = cvar("g_bugrigs_friction_air");
1015         g_bugrigs_accel = cvar("g_bugrigs_accel");
1016         g_bugrigs_speed_ref = cvar("g_bugrigs_speed_ref");
1017         g_bugrigs_speed_pow = cvar("g_bugrigs_speed_pow");
1018         g_bugrigs_steer = cvar("g_bugrigs_steer");
1019
1020         g_touchexplode = cvar("g_touchexplode");
1021         g_touchexplode_radius = cvar("g_touchexplode_radius");
1022         g_touchexplode_damage = cvar("g_touchexplode_damage");
1023         g_touchexplode_edgedamage = cvar("g_touchexplode_edgedamage");
1024         g_touchexplode_force = cvar("g_touchexplode_force");
1025
1026         sv_clones = cvar("sv_clones");
1027         sv_cheats = cvar("sv_cheats");
1028         sv_gentle = cvar("sv_gentle");
1029         sv_foginterval = cvar("sv_foginterval");
1030         g_cloaked = cvar("g_cloaked");
1031         g_jump_grunt = cvar("g_jump_grunt");
1032         g_footsteps = cvar("g_footsteps");
1033         g_grappling_hook = cvar("g_grappling_hook");
1034         g_jetpack = cvar("g_jetpack");
1035         g_laserguided_missile = cvar("g_laserguided_missile");
1036         g_midair = cvar("g_midair");
1037         g_minstagib = cvar("g_minstagib");
1038         g_nixnex = cvar("g_nixnex");
1039         g_nixnex_with_laser = cvar("g_nixnex_with_laser");
1040         g_norecoil = cvar("g_norecoil");
1041         g_vampire = cvar("g_vampire");
1042         g_bloodloss = cvar("g_bloodloss");
1043         sv_maxidle = cvar("sv_maxidle");
1044         sv_maxidle_spectatorsareidle = cvar("sv_maxidle_spectatorsareidle");
1045         sv_pogostick = cvar("sv_pogostick");
1046         sv_doublejump = cvar("sv_doublejump");
1047         g_maplist_allow_hidden = cvar("g_maplist_allow_hidden");
1048         g_ctf_reverse = cvar("g_ctf_reverse");
1049
1050         inWarmupStage = cvar("g_warmup");
1051         g_warmup_limit = cvar("g_warmup_limit");
1052         g_warmup_allguns = cvar("g_warmup_allguns");
1053         g_warmup_allow_timeout = cvar("g_warmup_allow_timeout");
1054
1055         if(g_race && g_race_qualifying == 2 || g_arena || g_assault || cvar("g_campaign"))
1056                 inWarmupStage = 0; // these modes cannot work together, sorry
1057
1058         g_pickup_respawntime_weapon = cvar("g_pickup_respawntime_weapon");
1059         g_pickup_respawntime_ammo = cvar("g_pickup_respawntime_ammo");
1060         g_pickup_respawntime_short = cvar("g_pickup_respawntime_short");
1061         g_pickup_respawntime_medium = cvar("g_pickup_respawntime_medium");
1062         g_pickup_respawntime_long = cvar("g_pickup_respawntime_long");
1063         g_pickup_respawntime_powerup = cvar("g_pickup_respawntime_powerup");
1064
1065         if(g_minstagib) g_nixnex = g_weaponarena = 0;
1066         if(g_nixnex) g_weaponarena = 0;
1067         g_weaponarena = 0;
1068
1069         g_pickup_shells                    = cvar("g_pickup_shells");
1070         g_pickup_shells_max                = cvar("g_pickup_shells_max");
1071         g_pickup_nails                     = cvar("g_pickup_nails");
1072         g_pickup_nails_max                 = cvar("g_pickup_nails_max");
1073         g_pickup_rockets                   = cvar("g_pickup_rockets");
1074         g_pickup_rockets_max               = cvar("g_pickup_rockets_max");
1075         g_pickup_cells                     = cvar("g_pickup_cells");
1076         g_pickup_cells_max                 = cvar("g_pickup_cells_max");
1077         g_pickup_armorsmall                = cvar("g_pickup_armorsmall");
1078         g_pickup_armorsmall_max            = cvar("g_pickup_armorsmall_max");
1079         g_pickup_armormedium               = cvar("g_pickup_armormedium");
1080         g_pickup_armormedium_max           = cvar("g_pickup_armormedium_max");
1081         g_pickup_armorbig                  = cvar("g_pickup_armorbig");
1082         g_pickup_armorbig_max              = cvar("g_pickup_armorbig_max");
1083         g_pickup_armorlarge                = cvar("g_pickup_armorlarge");
1084         g_pickup_armorlarge_max            = cvar("g_pickup_armorlarge_max");
1085         g_pickup_healthsmall               = cvar("g_pickup_healthsmall");
1086         g_pickup_healthsmall_max           = cvar("g_pickup_healthsmall_max");
1087         g_pickup_healthmedium              = cvar("g_pickup_healthmedium");
1088         g_pickup_healthmedium_max          = cvar("g_pickup_healthmedium_max");
1089         g_pickup_healthlarge               = cvar("g_pickup_healthlarge");
1090         g_pickup_healthlarge_max           = cvar("g_pickup_healthlarge_max");
1091         g_pickup_healthmega                = cvar("g_pickup_healthmega");
1092         g_pickup_healthmega_max            = cvar("g_pickup_healthmega_max");
1093
1094         g_pinata = cvar("g_pinata");
1095
1096         g_weapon_stay = cvar("g_weapon_stay");
1097         if(!g_weapon_stay && (cvar("deathmatch") == 2))
1098                 g_weapon_stay = 1;
1099
1100         if not(inWarmupStage)
1101                 game_starttime                 = cvar("g_start_delay");
1102
1103         readplayerstartcvars();
1104 }
1105
1106 /*
1107 // TODO sound pack system
1108 string soundpack;
1109
1110 string precache_sound_builtin (string s) = #19;
1111 void(entity e, float chan, string samp, float vol, float atten) sound_builtin = #8;
1112 string precache_sound(string s)
1113 {
1114         return precache_sound_builtin(strcat(soundpack, s));
1115 }
1116 void play2(entity e, string filename)
1117 {
1118         stuffcmd(e, strcat("play2 ", soundpack, filename, "\n"));
1119 }
1120 void sound(entity e, float chan, string samp, float vol, float atten)
1121 {
1122         sound_builtin(e, chan, strcat(soundpack, samp), vol, atten);
1123 }
1124 */
1125
1126 // Sound functions
1127 string precache_sound (string s) = #19;
1128 void(entity e, float chan, string samp, float vol, float atten) sound = #8;
1129 float precache_sound_index (string s) = #19;
1130
1131 #define SND_VOLUME      1
1132 #define SND_ATTENUATION 2
1133 #define SND_LARGEENTITY 8
1134 #define SND_LARGESOUND  16
1135
1136 void soundtoat(float dest, entity e, vector o, float chan, string samp, float vol, float atten)
1137 {
1138         float entno, idx;
1139         entno = num_for_edict(e);
1140         idx = precache_sound_index(samp);
1141
1142         float sflags;
1143         sflags = 0;
1144
1145         atten = floor(atten * 64);
1146         vol = floor(vol * 255);
1147
1148         if(vol != 255)
1149                 sflags |= SND_VOLUME;
1150         if(atten != 64)
1151                 sflags |= SND_ATTENUATION;
1152         if(entno >= 8192)
1153                 sflags |= SND_LARGEENTITY;
1154         if(idx >= 256)
1155                 sflags |= SND_LARGESOUND;
1156
1157         WriteByte(dest, SVC_SOUND);
1158         WriteByte(dest, sflags);
1159         if(sflags & SND_VOLUME)
1160                 WriteByte(dest, vol * 255);
1161         if(sflags & SND_ATTENUATION)
1162                 WriteByte(dest, atten);
1163         if(sflags & SND_LARGEENTITY)
1164         {
1165                 WriteShort(dest, entno);
1166                 WriteByte(dest, chan);
1167         }
1168         else
1169         {
1170                 WriteShort(dest, entno * 8 + chan);
1171         }
1172         if(sflags & SND_LARGESOUND)
1173                 WriteShort(dest, idx);
1174         else
1175                 WriteByte(dest, idx);
1176
1177         WriteCoord(dest, o_x);
1178         WriteCoord(dest, o_y);
1179         WriteCoord(dest, o_z);
1180 }
1181 void soundto(float dest, entity e, float chan, string samp, float vol, float atten)
1182 {
1183         vector o;
1184         o = e.origin + 0.5 * (e.mins + e.maxs);
1185         soundtoat(dest, e, o, chan, samp, vol, atten);
1186 }
1187 void soundat(entity e, vector o, float chan, string samp, float vol, float atten)
1188 {
1189         soundtoat(MSG_BROADCAST, e, o, chan, samp, vol, atten);
1190 }
1191 void stopsoundto(float dest, entity e, float chan)
1192 {
1193         float entno;
1194         entno = num_for_edict(e);
1195
1196         if(entno >= 8192)
1197         {
1198                 float idx, sflags;
1199                 idx = precache_sound_index("misc/null.wav");
1200                 sflags = SND_LARGEENTITY;
1201                 if(idx >= 256)
1202                         sflags |= SND_LARGESOUND;
1203                 WriteByte(dest, SVC_SOUND);
1204                 WriteByte(dest, sflags);
1205                 WriteShort(dest, entno);
1206                 WriteByte(dest, chan);
1207                 if(sflags & SND_LARGESOUND)
1208                         WriteShort(dest, idx);
1209                 else
1210                         WriteByte(dest, idx);
1211                 WriteCoord(dest, e.origin_x);
1212                 WriteCoord(dest, e.origin_y);
1213                 WriteCoord(dest, e.origin_z);
1214         }
1215         else
1216         {
1217                 WriteByte(dest, SVC_STOPSOUND);
1218                 WriteShort(dest, entno * 8 + chan);
1219         }
1220 }
1221 void stopsound(entity e, float chan)
1222 {
1223         stopsoundto(MSG_BROADCAST, e, chan); // unreliable, gets there fast
1224         stopsoundto(MSG_ALL, e, chan); // in case of packet loss
1225 }
1226
1227 void play2(entity e, string filename)
1228 {
1229         //stuffcmd(e, strcat("play2 ", filename, "\n"));
1230         msg_entity = e;
1231         soundtoat(MSG_ONE, world, '0 0 0', CHAN_AUTO, filename, VOL_BASE, ATTN_NONE);
1232 }
1233
1234 .float announcetime;
1235 float announce(entity player, string msg)
1236 {
1237         if(time > player.announcetime)
1238         if(clienttype(player) == CLIENTTYPE_REAL)
1239         {
1240                 player.announcetime = time + 0.8;
1241                 play2(player, msg);
1242                 return TRUE;
1243         }
1244         return FALSE;
1245 }
1246
1247 void play2team(float t, string filename)
1248 {
1249         local entity head;
1250         FOR_EACH_REALPLAYER(head)
1251         {
1252                 if (head.team == t)
1253                         play2(head, filename);
1254         }
1255 }
1256
1257 void play2all(string samp)
1258 {
1259         sound(world, CHAN_AUTO, samp, VOL_BASE, ATTN_NONE);
1260 }
1261
1262 void PrecachePlayerSounds(string f);
1263 void precache_all_models(string pattern)
1264 {
1265         float globhandle, i, n;
1266         string f;
1267
1268         globhandle = search_begin(pattern, TRUE, FALSE);
1269         if(globhandle < 0)
1270                 return;
1271         n = search_getsize(globhandle);
1272         for(i = 0; i < n; ++i)
1273         {
1274                 //print(search_getfilename(globhandle, i), "\n");
1275                 f = search_getfilename(globhandle, i);
1276                 precache_model(f);
1277                 PrecachePlayerSounds(strcat(f, ".sounds"));
1278         }
1279         search_end(globhandle);
1280 }
1281
1282 void precache()
1283 {
1284         // gamemode related things
1285         precache_model ("models/misc/chatbubble.spr");
1286         precache_model ("models/misc/teambubble.spr");
1287         if (g_runematch)
1288         {
1289                 precache_model ("models/runematch/curse.mdl");
1290                 precache_model ("models/runematch/rune.mdl");
1291         }
1292
1293 #ifdef TTURRETS_ENABLED
1294     if(cvar("g_turrets"))
1295         turrets_precash();
1296 #endif
1297
1298         // Precache all player models if desired
1299         if (cvar("sv_precacheplayermodels"))
1300         {
1301                 PrecachePlayerSounds("sound/player/default.sounds");
1302                 precache_all_models("models/player/*.zym");
1303                 precache_all_models("models/player/*.dpm");
1304                 precache_all_models("models/player/*.md3");
1305                 precache_all_models("models/player/*.psk");
1306                 //precache_model("models/player/carni.zym");
1307                 //precache_model("models/player/crash.zym");
1308                 //precache_model("models/player/grunt.zym");
1309                 //precache_model("models/player/headhunter.zym");
1310                 //precache_model("models/player/insurrectionist.zym");
1311                 //precache_model("models/player/jeandarc.zym");
1312                 //precache_model("models/player/lurk.zym");
1313                 //precache_model("models/player/lycanthrope.zym");
1314                 //precache_model("models/player/marine.zym");
1315                 //precache_model("models/player/nexus.zym");
1316                 //precache_model("models/player/pyria.zym");
1317                 //precache_model("models/player/shock.zym");
1318                 //precache_model("models/player/skadi.zym");
1319                 //precache_model("models/player/specop.zym");
1320                 //precache_model("models/player/visitant.zym");
1321         }
1322
1323         if(cvar("sv_defaultcharacter"))
1324         {
1325                 string s;
1326                 s = cvar_string("sv_defaultplayermodel_red");
1327                 if(s != "")
1328                 {
1329                         precache_model(s);
1330                         PrecachePlayerSounds(strcat(s, ".sounds"));
1331                 }
1332                 s = cvar_string("sv_defaultplayermodel_blue");
1333                 if(s != "")
1334                 {
1335                         precache_model(s);
1336                         PrecachePlayerSounds(strcat(s, ".sounds"));
1337                 }
1338                 s = cvar_string("sv_defaultplayermodel_yellow");
1339                 if(s != "")
1340                 {
1341                         precache_model(s);
1342                         PrecachePlayerSounds(strcat(s, ".sounds"));
1343                 }
1344                 s = cvar_string("sv_defaultplayermodel_pink");
1345                 if(s != "")
1346                 {
1347                         precache_model(s);
1348                         PrecachePlayerSounds(strcat(s, ".sounds"));
1349                 }
1350                 s = cvar_string("sv_defaultplayermodel");
1351                 if(s != "")
1352                 {
1353                         precache_model(s);
1354                         PrecachePlayerSounds(strcat(s, ".sounds"));
1355                 }
1356         }
1357
1358         if (g_footsteps)
1359         {
1360                 PrecacheGlobalSound((globalsound_step = "misc/footstep0 6"));
1361                 PrecacheGlobalSound((globalsound_metalstep = "misc/metalfootstep0 6"));
1362         }
1363
1364         // gore and miscellaneous sounds
1365         //precache_sound ("misc/h2ohit.wav");
1366         precache_model ("models/hook.md3");
1367         precache_sound ("misc/armorimpact.wav");
1368         precache_sound ("misc/bodyimpact1.wav");
1369         precache_sound ("misc/bodyimpact2.wav");
1370         precache_sound ("misc/gib.wav");
1371         precache_sound ("misc/gib_splat01.wav");
1372         precache_sound ("misc/gib_splat02.wav");
1373         precache_sound ("misc/gib_splat03.wav");
1374         precache_sound ("misc/gib_splat04.wav");
1375         precache_sound ("misc/hit.wav");
1376         PrecacheGlobalSound((globalsound_fall = "misc/hitground 4"));
1377         PrecacheGlobalSound((globalsound_metalfall = "misc/metalhitground 4"));
1378         precache_sound ("misc/null.wav");
1379         precache_sound ("misc/spawn.wav");
1380         precache_sound ("misc/talk.wav");
1381         precache_sound ("misc/teleport.wav");
1382         precache_sound ("player/lava.wav");
1383         precache_sound ("player/slime.wav");
1384         
1385         if(g_jetpack)
1386                 precache_sound ("misc/jetpack_fly.wav");
1387
1388         // announcer sounds - male
1389         precache_sound ("announcer/male/electrobitch.wav");
1390         precache_sound ("announcer/male/airshot.wav");
1391         precache_sound ("announcer/male/03kills.wav");
1392         precache_sound ("announcer/male/05kills.wav");
1393         precache_sound ("announcer/male/10kills.wav");
1394         precache_sound ("announcer/male/15kills.wav");
1395         precache_sound ("announcer/male/20kills.wav");
1396         precache_sound ("announcer/male/25kills.wav");
1397         precache_sound ("announcer/male/30kills.wav");
1398         precache_sound ("announcer/male/botlike.wav");
1399         precache_sound ("announcer/male/yoda.wav");
1400         precache_sound ("announcer/male/headshot.wav");
1401         precache_sound ("announcer/male/impressive.wav");
1402
1403         // announcer sounds - robotic
1404         precache_sound ("announcer/robotic/prepareforbattle.wav");
1405         precache_sound ("announcer/robotic/begin.wav");
1406         precache_sound ("announcer/robotic/timeoutcalled.wav");
1407         precache_sound ("announcer/robotic/1fragleft.wav");
1408         precache_sound ("announcer/robotic/1minuteremains.wav");
1409         precache_sound ("announcer/robotic/2fragsleft.wav");
1410         precache_sound ("announcer/robotic/3fragsleft.wav");
1411         if (g_minstagib)
1412         {
1413                 precache_sound ("announcer/robotic/lastsecond.wav");
1414                 precache_sound ("announcer/robotic/narrowly.wav");
1415         }
1416
1417         precache_model ("models/sprites/1.spr32");
1418         precache_model ("models/sprites/2.spr32");
1419         precache_model ("models/sprites/3.spr32");
1420         precache_model ("models/sprites/4.spr32");
1421         precache_model ("models/sprites/5.spr32");
1422         precache_model ("models/sprites/6.spr32");
1423         precache_model ("models/sprites/7.spr32");
1424         precache_model ("models/sprites/8.spr32");
1425         precache_model ("models/sprites/9.spr32");
1426         precache_model ("models/sprites/10.spr32");
1427         precache_sound ("announcer/robotic/1.wav");
1428         precache_sound ("announcer/robotic/2.wav");
1429         precache_sound ("announcer/robotic/3.wav");
1430         precache_sound ("announcer/robotic/4.wav");
1431         precache_sound ("announcer/robotic/5.wav");
1432         precache_sound ("announcer/robotic/6.wav");
1433         precache_sound ("announcer/robotic/7.wav");
1434         precache_sound ("announcer/robotic/8.wav");
1435         precache_sound ("announcer/robotic/9.wav");
1436         precache_sound ("announcer/robotic/10.wav");
1437
1438         // common weapon precaches
1439         precache_sound ("weapons/weapon_switch.wav");
1440         precache_sound ("weapons/weaponpickup.wav");
1441         if(g_grappling_hook)
1442         {
1443                 precache_sound ("weapons/hook_fire.wav"); // hook
1444                 precache_sound ("weapons/hook_impact.wav"); // hook
1445         }
1446
1447         if (cvar("sv_precacheweapons") || g_nixnex)
1448         {
1449                 //precache weapon models/sounds
1450                 local float wep;
1451                 wep = WEP_FIRST;
1452                 while (wep <= WEP_LAST)
1453                 {
1454                         weapon_action(wep, WR_PRECACHE);
1455                         wep = wep + 1;
1456                 }
1457         }
1458
1459         precache_model("models/elaser.mdl");
1460         precache_model("models/laser.mdl");
1461         precache_model("models/ebomb.mdl");
1462
1463 #if 0
1464         // Disabled this code because it simply does not work (e.g. ignores bgmvolume, overlaps with "cd loop" controlled tracks).
1465
1466         if (!self.noise && self.music) // quake 3 uses the music field
1467                 self.noise = self.music;
1468
1469         // plays music for the level if there is any
1470         if (self.noise)
1471         {
1472                 precache_sound (self.noise);
1473                 ambientsound ('0 0 0', self.noise, VOL_BASE, ATTN_NONE);
1474         }
1475 #endif
1476 }
1477
1478 // sorry, but using \ in macros breaks line numbers
1479 #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
1480 #define WRITESPECTATABLE_MSG_ONE(statement) WRITESPECTATABLE_MSG_ONE_VARNAME(oldmsg_entity, statement)
1481 #define WRITESPECTATABLE(msg,statement) if(msg == MSG_ONE) { WRITESPECTATABLE_MSG_ONE(statement); } else statement float WRITESPECTATABLE_workaround = 0
1482
1483 vector ExactTriggerHit_mins;
1484 vector ExactTriggerHit_maxs;
1485 float ExactTriggerHit_Recurse()
1486 {
1487         float s;
1488         entity se;
1489         float f;
1490
1491         tracebox('0 0 0', ExactTriggerHit_mins, ExactTriggerHit_maxs, '0 0 0', MOVE_NORMAL, other);
1492         if not(trace_ent)
1493                 return 0;
1494         if(trace_ent == self)
1495                 return 1;
1496
1497         se = trace_ent;
1498         s = se.solid;
1499         se.solid = SOLID_NOT;
1500         f = ExactTriggerHit_Recurse();
1501         se.solid = s;
1502
1503         return f;
1504 }
1505
1506 float ExactTriggerHit()
1507 {
1508         float f, s;
1509
1510         if not(self.modelindex)
1511                 return 1;
1512
1513         s = self.solid;
1514         self.solid = SOLID_BSP;
1515         ExactTriggerHit_mins = other.absmin;
1516         ExactTriggerHit_maxs = other.absmax;
1517         f = ExactTriggerHit_Recurse();
1518         self.solid = s;
1519
1520         return f;
1521 }
1522
1523 // WARNING: this kills the trace globals
1524 #define EXACTTRIGGER_TOUCH if not(ExactTriggerHit()) return
1525 #define EXACTTRIGGER_INIT  InitSolidBSPTrigger(); self.solid = SOLID_TRIGGER
1526
1527 #define INITPRIO_FIRST              0
1528 #define INITPRIO_GAMETYPE           0
1529 #define INITPRIO_GAMETYPE_FALLBACK  1
1530 #define INITPRIO_CVARS              5
1531 #define INITPRIO_FINDTARGET        10
1532 #define INITPRIO_DROPTOFLOOR       20
1533 #define INITPRIO_SETLOCATION       90
1534 #define INITPRIO_LINKDOORS         91
1535 #define INITPRIO_LAST              99
1536
1537 .void(void) initialize_entity;
1538 .float initialize_entity_order;
1539 .entity initialize_entity_next;
1540 entity initialize_entity_first;
1541
1542 void make_safe_for_remove(entity e)
1543 {
1544         if(e.initialize_entity)
1545         {
1546                 entity ent, prev;
1547                 for(ent = initialize_entity_first; ent; )
1548                 {
1549                         if((ent == e) || ((ent.classname == "initialize_entity") && (ent.enemy == e)))
1550                         {
1551                                 //print("make_safe_for_remove: getting rid of initializer ", etos(ent), "\n");
1552                                 // skip it in linked list
1553                                 if(prev)
1554                                 {
1555                                         prev.initialize_entity_next = ent.initialize_entity_next;
1556                                         ent = prev.initialize_entity_next;
1557                                 }
1558                                 else
1559                                 {
1560                                         initialize_entity_first = ent.initialize_entity_next;
1561                                         ent = initialize_entity_first;
1562                                 }
1563                         }
1564                         else
1565                         {
1566                                 prev = ent;
1567                                 ent = ent.initialize_entity_next;
1568                         }
1569                 }
1570         }
1571 }
1572
1573 void objerror(string s)
1574 {
1575         make_safe_for_remove(self);
1576         objerror_builtin(s);
1577 }
1578
1579 void remove_unsafely(entity e)
1580
1581         remove_builtin(e);
1582 }
1583
1584 void remove_safely(entity e)
1585 {
1586         make_safe_for_remove(e);
1587         remove_builtin(e);
1588 }
1589
1590 void InitializeEntity(entity e, void(void) func, float order)
1591 {
1592         entity prev, cur;
1593
1594         if(!e || e.initialize_entity)
1595         {
1596                 // make a proxy initializer entity
1597                 entity e_old;
1598                 e_old = e;
1599                 e = spawn();
1600                 e.classname = "initialize_entity";
1601                 e.enemy = e_old;
1602         }
1603
1604         e.initialize_entity = func;
1605         e.initialize_entity_order = order;
1606
1607         cur = initialize_entity_first;
1608         for(;;)
1609         {
1610                 if(!cur || cur.initialize_entity_order > order)
1611                 {
1612                         // insert between prev and cur
1613                         if(prev)
1614                                 prev.initialize_entity_next = e;
1615                         else
1616                                 initialize_entity_first = e;
1617                         e.initialize_entity_next = cur;
1618                         return;
1619                 }
1620                 prev = cur;
1621                 cur = cur.initialize_entity_next;
1622         }
1623 }
1624 void InitializeEntitiesRun()
1625 {
1626         entity startoflist;
1627         startoflist = initialize_entity_first;
1628         initialize_entity_first = world;
1629         for(self = startoflist; self; )
1630         {
1631                 entity e;
1632                 var void(void) func;
1633                 e = self.initialize_entity_next;
1634                 func = self.initialize_entity;
1635                 self.initialize_entity_order = 0;
1636                 self.initialize_entity = func_null;
1637                 self.initialize_entity_next = world;
1638                 if(self.classname == "initialize_entity")
1639                 {
1640                         entity e_old;
1641                         e_old = self.enemy;
1642                         remove_builtin(self);
1643                         self = e_old;
1644                 }
1645                 //dprint("Delayed initialization: ", self.classname, "\n");
1646                 func();
1647                 self = e;
1648         }
1649 }
1650
1651 .float uncustomizeentityforclient_set;
1652 .void(void) uncustomizeentityforclient;
1653 void(void) SUB_Nullpointer = #0;
1654 void UncustomizeEntitiesRun()
1655 {
1656         entity oldself;
1657         oldself = self;
1658         for(self = world; (self = findfloat(self, uncustomizeentityforclient_set, 1)); )
1659                 self.uncustomizeentityforclient();
1660         self = oldself;
1661 }
1662 void SetCustomizer(entity e, float(void) customizer, void(void) uncustomizer)
1663 {
1664         e.customizeentityforclient = customizer;
1665         e.uncustomizeentityforclient = uncustomizer;
1666         e.uncustomizeentityforclient_set = (uncustomizer != SUB_Nullpointer);
1667 }
1668
1669 .float nottargeted;
1670 #define IFTARGETED if(!self.nottargeted && self.targetname != "")
1671
1672 void() SUB_Remove;
1673 void Net_LinkEntity(entity e, float docull, float dt, float(entity, float) sendfunc)
1674 {
1675         vector mi, ma;
1676
1677         if(e.classname == "")
1678                 e.classname = "net_linked";
1679
1680         if(e.model == "" || self.modelindex == 0)
1681         {
1682                 mi = e.mins;
1683                 ma = e.maxs;
1684                 setmodel(e, "null");
1685                 setsize(e, mi, ma);
1686         }
1687
1688         e.SendEntity = sendfunc;
1689         e.SendFlags = 0xFFFFFF;
1690
1691         if(!docull)
1692                 e.effects |= EF_NODEPTHTEST;
1693
1694         if(dt)
1695         {
1696                 e.nextthink = time + dt;
1697                 e.think = SUB_Remove;
1698         }
1699 }
1700
1701 void adaptor_think2touch()
1702 {
1703         entity o;
1704         o = other;
1705         other = world;
1706         self.touch();
1707         other = o;
1708 }
1709
1710 void adaptor_think2use()
1711 {
1712         entity o, a;
1713         o = other;
1714         a = activator;
1715         activator = world;
1716         other = world;
1717         self.use();
1718         other = o;
1719         activator = a;
1720 }
1721
1722 // deferred dropping
1723 void DropToFloor_Handler()
1724 {
1725         droptofloor_builtin();
1726         self.dropped_origin = self.origin;
1727 }
1728
1729 void droptofloor()
1730 {
1731         InitializeEntity(self, DropToFloor_Handler, INITPRIO_DROPTOFLOOR);
1732 }
1733
1734
1735
1736 float trace_hits_box_a0, trace_hits_box_a1;
1737
1738 float trace_hits_box_1d(float end, float thmi, float thma)
1739 {
1740         if(end == 0)
1741         {
1742                 // just check if x is in range
1743                 if(0 < thmi)
1744                         return FALSE;
1745                 if(0 > thma)
1746                         return FALSE;
1747         }
1748         else
1749         {
1750                 // do the trace with respect to x
1751                 // 0 -> end has to stay in thmi -> thma
1752                 trace_hits_box_a0 = max(trace_hits_box_a0, min(thmi / end, thma / end));
1753                 trace_hits_box_a1 = min(trace_hits_box_a1, max(thmi / end, thma / end));
1754                 if(trace_hits_box_a0 > trace_hits_box_a1)
1755                         return FALSE;
1756         }
1757         return TRUE;
1758 }
1759
1760 float trace_hits_box(vector start, vector end, vector thmi, vector thma)
1761 {
1762         end -= start;
1763         thmi -= start;
1764         thma -= start;
1765         // now it is a trace from 0 to end
1766
1767         trace_hits_box_a0 = 0;
1768         trace_hits_box_a1 = 1;
1769
1770         if(!trace_hits_box_1d(end_x, thmi_x, thma_x))
1771                 return FALSE;
1772         if(!trace_hits_box_1d(end_y, thmi_y, thma_y))
1773                 return FALSE;
1774         if(!trace_hits_box_1d(end_z, thmi_z, thma_z))
1775                 return FALSE;
1776
1777         return TRUE;
1778 }
1779
1780 float tracebox_hits_box(vector start, vector mi, vector ma, vector end, vector thmi, vector thma)
1781 {
1782         return trace_hits_box(start, end, thmi - ma, thma - mi);
1783 }
1784
1785 float SUB_NoImpactCheck()
1786 {
1787         if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
1788                 return 1;
1789         if(other == world && self.size != '0 0 0')
1790         {
1791                 vector tic;
1792                 tic = self.velocity * sys_ticrate;
1793                 tic = tic + normalize(tic) * vlen(self.maxs - self.mins);
1794                 traceline(self.origin - tic, self.origin + tic, MOVE_NORMAL, self);
1795                 if(trace_fraction >= 1)
1796                 {
1797                         dprint("Odd... did not hit...?\n");
1798                 }
1799                 else if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
1800                 {
1801                         dprint("Detected and prevented the sky-grapple bug.\n");
1802                         return 1;
1803                 }
1804         }
1805
1806         return 0;
1807 }
1808
1809 #define SUB_OwnerCheck() (other && (other == self.owner))
1810
1811 #define PROJECTILE_TOUCH do { if(SUB_OwnerCheck()) return; if(SUB_NoImpactCheck()) { remove(self); return; } if(trace_ent && trace_ent.solid > SOLID_TRIGGER) UpdateCSQCProjectileNextFrame(self); } while(0)
1812
1813 float MAX_IPBAN_URIS = 16;
1814
1815 float URI_GET_DISCARD   = 0;
1816 float URI_GET_IPBAN     = 1;
1817 float URI_GET_IPBAN_END = 16;
1818
1819 void URI_Get_Callback(float id, float status, string data)
1820 {
1821         dprint("Received HTTP request data for id ", ftos(id), "; status is ", ftos(status), "\nData is\n:");
1822         dprint(data);
1823         dprint("\nEnd of data.\n");
1824
1825         if(id == URI_GET_DISCARD)
1826         {
1827                 // discard
1828         }
1829         else if(id >= URI_GET_IPBAN && id <= URI_GET_IPBAN_END)
1830         {
1831                 // online ban list
1832                 OnlineBanList_URI_Get_Callback(id, status, data);
1833         }
1834         else
1835         {
1836                 print("Received HTTP request data for an invalid id ", ftos(id), ".\n");
1837         }
1838 }
1839
1840 void print_to(entity e, string s)
1841 {
1842         if(e)
1843                 sprint(e, strcat(s, "\n"));
1844         else
1845                 print(s, "\n");
1846 }
1847
1848 string getrecords()
1849 {
1850         float rec;
1851         string h;
1852         float r;
1853         float i;
1854         string s;
1855
1856         rec = 0;
1857         
1858         s = "";
1859
1860         if(g_ctf)
1861         {
1862                 for(i = 0; i < MapInfo_count; ++i)
1863                 {
1864                         if(MapInfo_Get_ByID(i))
1865                         {
1866                                 r = stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/time")));
1867                                 if(r == 0)
1868                                         continue;
1869                                 h = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/captimerecord/netname"));
1870                                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-6, ftos_decimals(r, 2)), " ", h, "\n");
1871                                 ++rec;
1872                         }
1873                 }
1874         }
1875
1876         if(g_race)
1877         {
1878                 for(i = 0; i < MapInfo_count; ++i)
1879                 {
1880                         if(MapInfo_Get_ByID(i))
1881                         {
1882                                 r = stof(db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/racerecord/time")));
1883                                 if(r == 0)
1884                                         continue;
1885                                 h = db_get(ServerProgsDB, strcat(MapInfo_Map_bspname, "/racerecord/netname"));
1886                                 s = strcat(s, strpad(32, MapInfo_Map_bspname), " ", strpad(-8, mmsss(r)), " ", h, "\n");
1887                                 ++rec;
1888                         }
1889                 }
1890         }
1891         MapInfo_ClearTemps();
1892
1893         if(s == "")
1894                 return "No records are available on this server.\n";
1895         else
1896                 return strcat("Records on this server:\n", s);
1897 }
1898
1899 float MoveToRandomMapLocation(entity e, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
1900 {
1901         float m, i;
1902         vector start, org, delta, end, enddown, mstart;
1903
1904         m = e.dphitcontentsmask;
1905         e.dphitcontentsmask = goodcontents | badcontents;
1906
1907         org = world.mins;
1908         delta = world.maxs - world.mins;
1909
1910         for(i = 0; i < attempts; ++i)
1911         {
1912                 start_x = org_x + random() * delta_x;
1913                 start_y = org_y + random() * delta_y;
1914                 start_z = org_z + random() * delta_z;
1915
1916                 // rule 1: start inside world bounds, and outside
1917                 // solid, and don't start from somewhere where you can
1918                 // fall down to evil
1919                 tracebox(start, e.mins, e.maxs, start - '0 0 1' * delta_z, MOVE_NORMAL, e);
1920                 if(trace_fraction >= 1)
1921                         continue;
1922                 if(trace_startsolid)
1923                         continue;
1924                 if(trace_dphitcontents & badcontents)
1925                         continue;
1926                 if(trace_dphitq3surfaceflags & badsurfaceflags)
1927                         continue;
1928
1929                 // rule 2: if we are too high, lower the point
1930                 if(trace_fraction * delta_z > maxaboveground)
1931                         start = trace_endpos + '0 0 1' * maxaboveground;
1932                 enddown = trace_endpos;
1933
1934                 // rule 3: make sure we aren't outside the map. This only works
1935                 // for somewhat well formed maps. A good rule of thumb is that
1936                 // the map should have a convex outside hull.
1937                 // these can be traceLINES as we already verified the starting box
1938                 mstart = start + 0.5 * (e.mins + e.maxs);
1939                 traceline(mstart, mstart + '1 0 0' * delta_x, MOVE_NORMAL, e);
1940                 if(trace_fraction >= 1)
1941                         continue;
1942                 traceline(mstart, mstart - '1 0 0' * delta_x, MOVE_NORMAL, e);
1943                 if(trace_fraction >= 1)
1944                         continue;
1945                 traceline(mstart, mstart + '0 1 0' * delta_y, MOVE_NORMAL, e);
1946                 if(trace_fraction >= 1)
1947                         continue;
1948                 traceline(mstart, mstart - '0 1 0' * delta_y, MOVE_NORMAL, e);
1949                 if(trace_fraction >= 1)
1950                         continue;
1951                 traceline(mstart, mstart + '0 0 1' * delta_z, MOVE_NORMAL, e);
1952                 if(trace_fraction >= 1)
1953                         continue;
1954
1955                 // find a random vector to "look at"
1956                 end_x = org_x + random() * delta_x;
1957                 end_y = org_y + random() * delta_y;
1958                 end_z = org_z + random() * delta_z;
1959                 end = start + normalize(end - start) * vlen(delta);
1960
1961                 // rule 4: start TO end must not be too short
1962                 tracebox(start, e.mins, e.maxs, end, MOVE_NORMAL, e);
1963                 if(trace_startsolid)
1964                         continue;
1965                 if(trace_fraction < minviewdistance / vlen(delta))
1966                         continue;
1967
1968                 // rule 5: don't want to look at sky
1969                 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY)
1970                         continue;
1971
1972                 // rule 6: we must not end up in trigger_hurt
1973                 if(tracebox_hits_trigger_hurt(start, e.mins, e.maxs, enddown))
1974                 {
1975                         dprint("trigger_hurt! ouch! and nothing else could find it!\n");
1976                         continue;
1977                 }
1978
1979                 break;
1980         }
1981
1982         e.dphitcontentsmask = m;
1983
1984         if(i < attempts)
1985         {
1986                 setorigin(e, start);
1987                 e.angles = vectoangles(end - start);
1988                 dprint("Needed ", ftos(i + 1), " attempts\n");
1989                 return TRUE;
1990         }
1991         else
1992                 return FALSE;
1993 }
1994
1995 void zcurveparticles(float effectno, vector start, vector end, float end_dz, float spd)
1996 {
1997         WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
1998         WriteByte(MSG_BROADCAST, TE_CSQC_ZCURVEPARTICLES);
1999         WriteShort(MSG_BROADCAST, effectno);
2000         WriteCoord(MSG_BROADCAST, start_x);
2001         WriteCoord(MSG_BROADCAST, start_y);
2002         WriteCoord(MSG_BROADCAST, start_z);
2003         WriteCoord(MSG_BROADCAST, end_x);
2004         WriteCoord(MSG_BROADCAST, end_y);
2005         WriteCoord(MSG_BROADCAST, end_z);
2006         WriteCoord(MSG_BROADCAST, end_dz);
2007         WriteShort(MSG_BROADCAST, spd / 16);
2008 }
2009
2010 void zcurveparticles_from_tracetoss(float effectno, vector start, vector end, vector vel)
2011 {
2012         float end_dz;
2013         vector vecxy, velxy;
2014
2015         vecxy = end - start; vecxy_z = 0;
2016         velxy = vel;         velxy_z = 0;
2017
2018         if(vlen(velxy) < 0.000001 * fabs(vel_z))
2019         {
2020                 trailparticles(world, effectno, start, end);
2021                 return;
2022         }
2023
2024         end_dz = vlen(vecxy) / vlen(velxy) * vel_z - (end_z - start_z);
2025         zcurveparticles(effectno, start, end, end_dz, vlen(vel));
2026 }
2027
2028 string GetGametype(); // g_world.qc
2029 void write_recordmarker(entity pl, float tstart, float dt)
2030 {
2031         GameLogEcho(strcat(":recordset:", ftos(pl.playerid), ":", ftos(dt / 10)));
2032
2033         // also write a marker into demo files for demotc-race-record-extractor to find
2034         stuffcmd(pl,
2035                 strcat(
2036                         strcat("//", strconv(2, 0, 0, GetGametype()), " RECORD SET ", mmsss(dt * 10)),
2037                         " ", ftos(tstart), " ", ftos(dt), "\n"));
2038 }
2039
2040 vector shotorg_adjust(vector vecs, float y_is_right, float visual)
2041 {
2042         string s;
2043         vector v;
2044         if (cvar("g_shootfromeye"))
2045         {
2046                 if(visual)
2047                 {
2048                         vecs_y = 0;
2049                         vecs_z -= 4;
2050                 }
2051                 else
2052                 {
2053                         vecs_y = 0;
2054                         vecs_z = 0;
2055                 }
2056         }
2057         else if (cvar("g_shootfromcenter"))
2058         {
2059                 vecs_y = 0;
2060                 vecs_z -= 4;
2061         }
2062         else if((s = cvar_string("g_shootfromfixedorigin")) != "")
2063         {
2064                 v = stov(s);
2065                 if(y_is_right)
2066                         v_y = -v_y;
2067                 if(v_x != 0)
2068                         vecs_x = v_x;
2069                 vecs_y = v_y;
2070                 vecs_z = v_z;
2071         }
2072         return vecs;
2073 }
2074
2075
2076
2077 void attach_sameorigin(entity e, entity to, string tag)
2078 {
2079         vector org, t_forward, t_left, t_up, e_forward, e_up;
2080         vector org0, ang0;
2081         float tagscale;
2082
2083         ang0 = e.angles;
2084         org0 = e.origin;
2085
2086         org = e.origin - gettaginfo(to, gettagindex(to, tag));
2087         tagscale = pow(vlen(v_forward), -2); // undo a scale on the tag
2088         t_forward = v_forward * tagscale;
2089         t_left = v_right * -tagscale;
2090         t_up = v_up * tagscale;
2091
2092         e.origin_x = org * t_forward;
2093         e.origin_y = org * t_left;
2094         e.origin_z = org * t_up;
2095
2096         // current forward and up directions
2097         if(substring(e.model, 0, 1) == "*") // bmodels have their own rules
2098                 e.angles_x = -e.angles_x;
2099         fixedmakevectors(e.angles);
2100
2101         // untransform forward, up!
2102         e_forward_x = v_forward * t_forward;
2103         e_forward_y = v_forward * t_left;
2104         e_forward_z = v_forward * t_up;
2105         e_up_x = v_up * t_forward;
2106         e_up_y = v_up * t_left;
2107         e_up_z = v_up * t_up;
2108
2109         e.angles = fixedvectoangles2(e_forward, e_up);
2110         if(substring(e.model, 0, 1) == "*") // bmodels have their own rules
2111                 e.angles_x = -e.angles_x;
2112
2113         setattachment(e, to, tag);
2114         setorigin(e, e.origin);
2115 }
2116
2117 void detach_sameorigin(entity e)
2118 {
2119         vector org;
2120         org = gettaginfo(e, 0);
2121         e.angles = fixedvectoangles2(v_forward, v_up);
2122         if(substring(e.model, 0, 1) == "*") // bmodels have their own rules
2123                 e.angles_x = -e.angles_x;
2124         e.origin = org;
2125         setattachment(e, world, "");
2126         setorigin(e, e.origin);
2127 }
2128
2129 void follow_sameorigin(entity e, entity to)
2130 {
2131         e.movetype = MOVETYPE_FOLLOW; // make the hole follow
2132         e.aiment = to; // make the hole follow bmodel
2133         e.punchangle = to.angles; // the original angles of bmodel
2134         e.view_ofs = e.origin - to.origin; // relative origin
2135         e.v_angle = e.angles - to.angles; // relative angles
2136 }
2137
2138 void unfollow_sameorigin(entity e)
2139 {
2140         e.movetype = MOVETYPE_NONE;
2141 }
2142
2143 entity gettaginfo_relative_ent;
2144 vector gettaginfo_relative(entity e, float tag)
2145 {
2146         if(!gettaginfo_relative_ent)
2147         {
2148                 gettaginfo_relative_ent = spawn();
2149                 gettaginfo_relative_ent.effects = EF_NODRAW;
2150         }
2151         gettaginfo_relative_ent.model = e.model;
2152         gettaginfo_relative_ent.modelindex = e.modelindex;
2153         gettaginfo_relative_ent.frame = e.frame;
2154         return gettaginfo(gettaginfo_relative_ent, tag);
2155 }
2156
2157 void SoundEntity_StartSound(entity pl, float chan, string samp, float vol, float attn)
2158 {
2159         float p;
2160         p = pow(2, chan);
2161         if(pl.soundentity.cnt & p)
2162                 return;
2163         soundtoat(MSG_ALL, pl.soundentity, gettaginfo(pl.soundentity, 0), chan, samp, vol, attn);
2164         pl.soundentity.cnt |= p;
2165 }
2166
2167 void SoundEntity_StopSound(entity pl, float chan)
2168 {
2169         float p;
2170         p = pow(2, chan);
2171         if(pl.soundentity.cnt & p)
2172         {
2173                 stopsoundto(MSG_ALL, pl.soundentity, chan);
2174                 pl.soundentity.cnt &~= p;
2175         }
2176 }
2177
2178 void SoundEntity_Attach(entity pl)
2179 {
2180         pl.soundentity = spawn();
2181         pl.soundentity.classname = "soundentity";
2182         setattachment(pl.soundentity, pl, "");
2183         setmodel(pl.soundentity, "null");
2184 }
2185
2186 void SoundEntity_Detach(entity pl)
2187 {
2188         float i;
2189         for(i = 0; i <= 7; ++i)
2190                 SoundEntity_StopSound(pl, i);
2191 }