]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamecommand.qc
improved the shot origin adjuster:
[divverent/nexuiz.git] / data / qcsrc / server / gamecommand.qc
1 string GotoMap(string m);
2
3 float FullTraceFraction(vector a, vector mi, vector ma, vector b)
4 {
5         vector c;
6         float white, black;
7
8         white = 0.001;
9         black = 0.001;
10
11         c = a;
12
13         float n, m;
14         n = m = 0;
15
16         while(vlen(c - b) > 1)
17         {
18                 ++m;
19
20                 tracebox(c, mi, ma, b, MOVE_WORLDONLY, world);
21                 ++n;
22
23                 if(!trace_startsolid)
24                 {
25                         black += vlen(trace_endpos - c);
26                         c = trace_endpos;
27                 }
28
29                 n += tracebox_inverted(c, mi, ma, b, MOVE_WORLDONLY, world);
30
31                 white += vlen(trace_endpos - c);
32                 c = trace_endpos;
33         }
34
35         if(n > 200)
36                 dprint("HOLY SHIT! FullTraceFraction: ", ftos(n), " total traces, ", ftos(m), " iterations\n");
37
38         return white / (black + white);
39 }
40
41 float RadarMapAtPoint_Trace(float x, float y, float w, float h, float zmin, float zsize, float q)
42 {
43         vector a, b, mi, ma;
44
45         mi = '0 0 0';
46         ma = '1 0 0' * w + '0 1 0' * h;
47         a = '1 0 0' * x + '0 1 0' * y + '0 0 1' * zmin;
48         b = '1 0 0' * x + '0 1 0' * y + '0 0 1' * (zsize + zmin);
49
50         return FullTraceFraction(a, mi, ma, b);
51 }
52 float RadarMapAtPoint_Block(float x, float y, float w, float h, float zmin, float zsize, float q)
53 {
54         vector o, mi, ma;
55         float i, r;
56         vector dz;
57
58         q = 256 * q - 1;
59         // 256q-1 is the ideal sample count to map equal amount of sample values to one pixel value
60
61         mi = '0 0 0';
62         dz = (zsize / q) * '0 0 1';
63         ma = '1 0 0' * w + '0 1 0' * h + dz;
64         o = '1 0 0' * x + '0 1 0' * y + '0 0 1' * zmin;
65
66         if(x < world.absmin_x - w)
67                 return 0;
68         if(y < world.absmin_y - h)
69                 return 0;
70         if(x > world.absmax_x)
71                 return 0;
72         if(y > world.absmax_y)
73                 return 0;
74         
75         r = 0;
76         for(i = 0; i < q; ++i)
77         {
78                 tracebox(o + dz * i, mi, ma, o + dz * i, MOVE_WORLDONLY, world);
79                 if(trace_startsolid)
80                         ++r;
81         }
82         return r / q;
83 }
84 float RadarMapAtPoint_Sample(float x, float y, float w, float h, float zmin, float zsize, float q)
85 {
86         vector a, b, mi, ma;
87
88         q *= 4; // choose q so it matches the regular algorithm in speed
89
90         q = 256 * q - 1;
91         // 256q-1 is the ideal sample count to map equal amount of sample values to one pixel value
92
93         mi = '0 0 0';
94         ma = '1 0 0' * w + '0 1 0' * h;
95         a = '1 0 0' * x + '0 1 0' * y + '0 0 1' * zmin;
96         b = '1 0 0' * w + '0 1 0' * h + '0 0 1' * zsize;
97         
98         float c, i;
99         c = 0;
100
101         for(i = 0; i < q; ++i)
102         {
103                 vector v;
104                 v_x = a_x + random() * b_x;
105                 v_y = a_y + random() * b_y;
106                 v_z = a_z + random() * b_z;
107                 traceline(v, v, MOVE_WORLDONLY, world);
108                 if(trace_startsolid)
109                         ++c;
110         }
111
112         return c / q;
113 }
114
115 // FF is contained twice, to map 256 to FF too
116 // removes the need to bound()
117 string doublehex = "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F808182838485868788898A8B8C8D8E8F909192939495969798999A9B9C9D9E9FA0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBFC0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDFE0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFF";
118
119 float RADAR_WIDTH_MAX = 2048;
120 float RADAR_HEIGHT_MAX = 2048;
121 float sharpen_buffer[RADAR_WIDTH_MAX * 3];
122
123 void sharpen_set(float x, float v)
124 {
125         sharpen_buffer[x + 2 * RADAR_WIDTH_MAX] = v;
126 }
127
128 float sharpen_getpixel(float x, float y)
129 {
130         if(x < 0)
131                 return 0;
132         if(x >= RADAR_WIDTH_MAX)
133                 return 0;
134         if(y < 0)
135                 return 0;
136         if(y > 2)
137                 return 0;
138         return sharpen_buffer[x + y * RADAR_WIDTH_MAX];
139 }
140
141 float sharpen_get(float x, float a)
142 {
143         float sum;
144         sum = sharpen_getpixel(x, 1);
145         if(a == 0)
146                 return sum;
147         sum *= (8 + 1/a);
148         sum -= sharpen_getpixel(x - 1, 0);
149         sum -= sharpen_getpixel(x - 1, 1);
150         sum -= sharpen_getpixel(x - 1, 2);
151         sum -= sharpen_getpixel(x + 1, 0);
152         sum -= sharpen_getpixel(x + 1, 1);
153         sum -= sharpen_getpixel(x + 1, 2);
154         sum -= sharpen_getpixel(x, 0);
155         sum -= sharpen_getpixel(x, 2);
156         return bound(0, sum * a, 1);
157 }
158
159 void sharpen_shift(float w)
160 {
161         float i;
162         for(i = 0; i < w; ++i)
163         {
164                 sharpen_buffer[i] = sharpen_buffer[i + RADAR_WIDTH_MAX];
165                 sharpen_buffer[i + RADAR_WIDTH_MAX] = sharpen_buffer[i + 2 * RADAR_WIDTH_MAX];
166                 sharpen_buffer[i + 2 * RADAR_WIDTH_MAX] = 0;
167         }
168 }
169
170 void sharpen_init(float w)
171 {
172         float i;
173         for(i = 0; i < w; ++i)
174         {
175                 sharpen_buffer[i] = 0;
176                 sharpen_buffer[i + RADAR_WIDTH_MAX] = 0;
177                 sharpen_buffer[i + 2 * RADAR_WIDTH_MAX] = 0;
178         }
179 }
180
181 entity radarmapper;
182 void RadarMap_Next()
183 {
184         if(radarmapper.count & 4)
185         {
186                 localcmd("quit\n");
187         }
188         else if(radarmapper.count & 2)
189         {
190                 localcmd(strcat("defer 1 \"sv_cmd radarmap --flags ", ftos(radarmapper.count), strcat(" --res ", ftos(radarmapper.size_x), " ", ftos(radarmapper.size_y), " --sharpen ", ftos(radarmapper.ltime), " --qual ", ftos(radarmapper.size_z)), "\"\n"));
191                 GotoNextMap();
192         }
193         remove(radarmapper);
194         radarmapper = world;
195 }
196
197 // rough map entity
198 //   cnt: current line
199 //   size: pixel width/height
200 //   maxs: cell width/height
201 //   frame: counter
202 void RadarMap_Think()
203 {
204         float i, x, l;
205         string si;
206
207         if(self.frame == 0)
208         {
209                 // initialize
210                 get_mi_min_max_texcoords(1);
211                 self.mins = mi_picmin;
212                 self.maxs_x = (mi_picmax_x - mi_picmin_x) / self.size_x;
213                 self.maxs_y = (mi_picmax_y - mi_picmin_y) / self.size_y;
214                 self.maxs_z = mi_max_z - mi_min_z;
215                 print("Picture mins/maxs: ", ftos(self.maxs_x), " and ", ftos(self.maxs_y), " should match\n");
216                 self.netname = strzone(strcat("gfx/", mi_shortname, "_radar.xpm"));
217                 if(!(self.count & 1))
218                 {
219                         self.cnt = fopen(self.netname, FILE_READ);
220                         if(self.cnt < 0)
221                                 self.cnt = fopen(strcat("gfx/", mi_shortname, "_radar.tga"), FILE_READ);
222                         if(self.cnt < 0)
223                                 self.cnt = fopen(strcat("gfx/", mi_shortname, "_radar.png"), FILE_READ);
224                         if(self.cnt < 0)
225                                 self.cnt = fopen(strcat("gfx/", mi_shortname, "_radar.jpg"), FILE_READ);
226                         if(self.cnt < 0)
227                                 self.cnt = fopen(strcat("gfx/", mi_shortname, "_mini.tga"), FILE_READ);
228                         if(self.cnt < 0)
229                                 self.cnt = fopen(strcat("gfx/", mi_shortname, "_mini.png"), FILE_READ);
230                         if(self.cnt < 0)
231                                 self.cnt = fopen(strcat("gfx/", mi_shortname, "_mini.jpg"), FILE_READ);
232                         if(self.cnt >= 0)
233                         {
234                                 fclose(self.cnt);
235
236                                 print(self.netname, " already exists, aborting (you may want to specify --force)\n");
237                                 RadarMap_Next();
238                                 return;
239                         }
240                 }
241                 self.cnt = fopen(self.netname, FILE_WRITE);
242                 if(self.cnt < 0)
243                 {
244                         print("Error writing ", self.netname, "\n");
245                         remove(self);
246                         radarmapper = world;
247                         return;
248                 }
249                 print("Writing to ", self.netname, "...\n");
250                 fputs(self.cnt, "/* XPM */\n");
251                 fputs(self.cnt, "static char *RadarMap[] = {\n");
252                 fputs(self.cnt, "/* columns rows colors chars-per-pixel */\n");
253                 fputs(self.cnt, strcat("\"", ftos(self.size_x), " ", ftos(self.size_y), " 256 2\",\n"));
254                 for(i = 0; i < 256; ++i)
255                 {
256                         si = substring(doublehex, i*2, 2);
257                         fputs(self.cnt, strcat("\"", si, " c #", si, si, si, "\",\n"));
258                 }
259                 self.frame += 1;
260                 self.nextthink = time;
261                 sharpen_init(self.size_x);
262         }
263         else if(self.frame <= self.size_y)
264         {
265                 // fill the sharpen buffer with this line
266                 sharpen_shift(self.size_x);
267                 i = self.count & 24;
268
269                 switch(i)
270                 {
271                         case 0:
272                         default:
273                                 for(x = 0; x < self.size_x; ++x)
274                                 {
275                                         l = RadarMapAtPoint_Block(self.mins_x + x * self.maxs_x, self.mins_y + (self.size_y - self.frame) * self.maxs_y, self.maxs_x, self.maxs_y, self.mins_z, self.maxs_z, self.size_z);
276                                         sharpen_set(x, l);
277                                 }
278                                 break;
279                         case 8:
280                                 for(x = 0; x < self.size_x; ++x)
281                                 {
282                                         l = RadarMapAtPoint_Trace(self.mins_x + x * self.maxs_x, self.mins_y + (self.size_y - self.frame) * self.maxs_y, self.maxs_x, self.maxs_y, self.mins_z, self.maxs_z, self.size_z);
283                                         sharpen_set(x, l);
284                                 }
285                                 break;
286                         case 16:
287                                 for(x = 0; x < self.size_x; ++x)
288                                 {
289                                         l = RadarMapAtPoint_Sample(self.mins_x + x * self.maxs_x, self.mins_y + (self.size_y - self.frame) * self.maxs_y, self.maxs_x, self.maxs_y, self.mins_z, self.maxs_z, self.size_z);
290                                         sharpen_set(x, l);
291                                 }
292                                 break;
293                 }
294
295                 // do we have enough lines?
296                 if(self.frame >= 2)
297                 {
298                         // write a pixel line
299                         fputs(self.cnt, "\"");
300                         for(x = 0; x < self.size_x; ++x)
301                         {
302                                 l = sharpen_get(x, self.ltime);
303                                 fputs(self.cnt, substring(doublehex, 2 * floor(l * 256.0), 2));
304                         }
305                         if(self.frame == self.size_y)
306                                 fputs(self.cnt, "\"\n");
307                         else
308                         {
309                                 fputs(self.cnt, "\",\n");
310                                 print(ftos(self.size_y - self.frame), " lines left\n");
311                         }
312                 }
313
314                 // is this the last line? then write back the missing line
315                 if(self.frame == self.size_y)
316                 {
317                         sharpen_shift(self.size_x);
318                         // write a pixel line
319                         fputs(self.cnt, "\"");
320                         for(x = 0; x < self.size_x; ++x)
321                         {
322                                 l = sharpen_get(x, self.ltime);
323                                 fputs(self.cnt, substring(doublehex, 2 * floor(l * 256.0), 2));
324                         }
325                         if(self.frame == self.size_y)
326                                 fputs(self.cnt, "\"\n");
327                         else
328                         {
329                                 fputs(self.cnt, "\",\n");
330                                 print(ftos(self.size_y - self.frame), " lines left\n");
331                         }
332                 }
333
334                 self.frame += 1;
335                 self.nextthink = time;
336         }
337         else
338         {
339                 // close the file
340                 fputs(self.cnt, "};\n");
341                 fclose(self.cnt);
342                 print("Finished. Please edit data/", self.netname, " with an image editing application and place it in the TGA format in the gfx folder.\n");
343                 RadarMap_Next();
344         }
345 }
346
347 void RadarMap(float argc)
348 {
349         if(radarmapper)
350                 return;
351         float i;
352         radarmapper = spawn();
353         radarmapper.classname = "radarmapper";
354         radarmapper.think = RadarMap_Think;
355         radarmapper.nextthink = time;
356         radarmapper.count = 8; // default to the --trace method, as it is faster now
357         radarmapper.ltime = 1;
358         radarmapper.size_x = 512;
359         radarmapper.size_y = 512;
360         radarmapper.size_z = 1;
361
362         for(i = 1; i < argc; ++i)
363         {
364                 if(argv(i) == "--force")
365                         radarmapper.count |= 1;
366                 else if(argv(i) == "--loop")
367                         radarmapper.count |= 2;
368                 else if(argv(i) == "--quit")
369                         radarmapper.count |= 4;
370                 else if(argv(i) == "--block")
371                 {
372                         radarmapper.count &~= 24;
373                 }
374                 else if(argv(i) == "--trace")
375                 {
376                         radarmapper.count &~= 24;
377                         radarmapper.count |= 8;
378                 }
379                 else if(argv(i) == "--sample")
380                 {
381                         radarmapper.count &~= 24;
382                         radarmapper.count |= 16;
383                 }
384                 else if(argv(i) == "--flags") // for the recursive call
385                 {
386                         ++i;
387                         radarmapper.count = stof(argv(i));
388                 }
389                 else if(argv(i) == "--sharpen") // for the recursive call
390                 {
391                         ++i;
392                         radarmapper.ltime = stof(argv(i));
393                 }
394                 else if(argv(i) == "--res") // resolution
395                 {
396                         ++i;
397                         radarmapper.size_x = stof(argv(i));
398                         ++i;
399                         radarmapper.size_y = stof(argv(i));
400                 }
401                 else if(argv(i) == "--qual") // quality multiplier
402                 {
403                         ++i;
404                         radarmapper.size_z = stof(argv(i));
405                 }
406                 else
407                 {
408                         remove(radarmapper);
409                         radarmapper = world;
410                         print("Usage: sv_cmd radarmap [--force] [--loop] [--quit] [--block | --trace | --sample] [--sharpen N] [--res W H] [--qual Q]\n");
411                         print("The quality factor Q is roughly proportional to the time taken.\n");
412                         print("--trace supports no quality factor; its result should look like --block with infinite quality factor.\n");
413                         print("--block \n");
414                         return;
415                 }
416         }
417
418         print("Radarmap entity spawned.\n");
419 }
420
421 void BBox()
422 {
423         print("Original size: ", ftos(world.absmin_x), " ", ftos(world.absmin_y), " ", ftos(world.absmin_z));
424         print(" ", ftos(world.absmax_x), " ", ftos(world.absmax_y), " ", ftos(world.absmax_z), "\n");
425         print("Currently set size: ", ftos(world.mins_x), " ", ftos(world.mins_y), " ", ftos(world.mins_z));
426         print(" ", ftos(world.maxs_x), " ", ftos(world.maxs_y), " ", ftos(world.maxs_z), "\n");
427         print("Solid bounding box size:");
428
429         tracebox('1 0 0' * world.absmin_x,
430                  '0 1 0' * world.absmin_y + '0 0 1' * world.absmin_z,
431                  '0 1 0' * world.absmax_y + '0 0 1' * world.absmax_z,
432                  '1 0 0' * world.absmax_x,
433                          MOVE_WORLDONLY,
434                          world);
435         if(trace_startsolid)
436                 print(" ", ftos(world.absmin_x));
437         else
438                 print(" ", ftos(trace_endpos_x));
439
440         tracebox('0 1 0' * world.absmin_y,
441                  '1 0 0' * world.absmin_x + '0 0 1' * world.absmin_z,
442                  '1 0 0' * world.absmax_x + '0 0 1' * world.absmax_z,
443                  '0 1 0' * world.absmax_y,
444                          MOVE_WORLDONLY,
445                          world);
446         if(trace_startsolid)
447                 print(" ", ftos(world.absmin_y));
448         else
449                 print(" ", ftos(trace_endpos_y));
450
451         tracebox('0 0 1' * world.absmin_z,
452                  '1 0 0' * world.absmin_x + '0 1 0' * world.absmin_y,
453                  '1 0 0' * world.absmax_x + '0 1 0' * world.absmax_y,
454                  '0 0 1' * world.absmax_z,
455                          MOVE_WORLDONLY,
456                          world);
457         if(trace_startsolid)
458                 print(" ", ftos(world.absmin_z));
459         else
460                 print(" ", ftos(trace_endpos_z));
461
462         tracebox('1 0 0' * world.absmax_x,
463                  '0 1 0' * world.absmin_y + '0 0 1' * world.absmin_z,
464                  '0 1 0' * world.absmax_y + '0 0 1' * world.absmax_z,
465                  '1 0 0' * world.absmin_x,
466                          MOVE_WORLDONLY,
467                          world);
468         if(trace_startsolid)
469                 print(" ", ftos(world.absmax_x));
470         else
471                 print(" ", ftos(trace_endpos_x));
472
473         tracebox('0 1 0' * world.absmax_y,
474                  '1 0 0' * world.absmin_x + '0 0 1' * world.absmin_z,
475                  '1 0 0' * world.absmax_x + '0 0 1' * world.absmax_z,
476                  '0 1 0' * world.absmin_y,
477                          MOVE_WORLDONLY,
478                          world);
479         if(trace_startsolid)
480                 print(" ", ftos(world.absmax_y));
481         else
482                 print(" ", ftos(trace_endpos_y));
483
484         tracebox('0 0 1' * world.absmax_z,
485                  '1 0 0' * world.absmin_x + '0 1 0' * world.absmin_y,
486                  '1 0 0' * world.absmax_x + '0 1 0' * world.absmax_y,
487                  '0 0 1' * world.absmin_z,
488                          MOVE_WORLDONLY,
489                          world);
490         if(trace_startsolid)
491                 print(" ", ftos(world.absmax_z));
492         else
493                 print(" ", ftos(trace_endpos_z));
494
495         print("\n");
496 }
497
498 void EffectIndexDump()
499 {
500         float d;
501         float fh;
502         string s;
503
504         d = db_create();
505
506         print("begin of effects list\n");
507         db_put(d, "TE_GUNSHOT", "1"); print("effect TE_GUNSHOT is ", ftos(particleeffectnum("TE_GUNSHOT")), "\n");
508         db_put(d, "TE_GUNSHOTQUAD", "1"); print("effect TE_GUNSHOTQUAD is ", ftos(particleeffectnum("TE_GUNSHOTQUAD")), "\n");
509         db_put(d, "TE_SPIKE", "1"); print("effect TE_SPIKE is ", ftos(particleeffectnum("TE_SPIKE")), "\n");
510         db_put(d, "TE_SPIKEQUAD", "1"); print("effect TE_SPIKEQUAD is ", ftos(particleeffectnum("TE_SPIKEQUAD")), "\n");
511         db_put(d, "TE_SUPERSPIKE", "1"); print("effect TE_SUPERSPIKE is ", ftos(particleeffectnum("TE_SUPERSPIKE")), "\n");
512         db_put(d, "TE_SUPERSPIKEQUAD", "1"); print("effect TE_SUPERSPIKEQUAD is ", ftos(particleeffectnum("TE_SUPERSPIKEQUAD")), "\n");
513         db_put(d, "TE_WIZSPIKE", "1"); print("effect TE_WIZSPIKE is ", ftos(particleeffectnum("TE_WIZSPIKE")), "\n");
514         db_put(d, "TE_KNIGHTSPIKE", "1"); print("effect TE_KNIGHTSPIKE is ", ftos(particleeffectnum("TE_KNIGHTSPIKE")), "\n");
515         db_put(d, "TE_EXPLOSION", "1"); print("effect TE_EXPLOSION is ", ftos(particleeffectnum("TE_EXPLOSION")), "\n");
516         db_put(d, "TE_EXPLOSIONQUAD", "1"); print("effect TE_EXPLOSIONQUAD is ", ftos(particleeffectnum("TE_EXPLOSIONQUAD")), "\n");
517         db_put(d, "TE_TAREXPLOSION", "1"); print("effect TE_TAREXPLOSION is ", ftos(particleeffectnum("TE_TAREXPLOSION")), "\n");
518         db_put(d, "TE_TELEPORT", "1"); print("effect TE_TELEPORT is ", ftos(particleeffectnum("TE_TELEPORT")), "\n");
519         db_put(d, "TE_LAVASPLASH", "1"); print("effect TE_LAVASPLASH is ", ftos(particleeffectnum("TE_LAVASPLASH")), "\n");
520         db_put(d, "TE_SMALLFLASH", "1"); print("effect TE_SMALLFLASH is ", ftos(particleeffectnum("TE_SMALLFLASH")), "\n");
521         db_put(d, "TE_FLAMEJET", "1"); print("effect TE_FLAMEJET is ", ftos(particleeffectnum("TE_FLAMEJET")), "\n");
522         db_put(d, "EF_FLAME", "1"); print("effect EF_FLAME is ", ftos(particleeffectnum("EF_FLAME")), "\n");
523         db_put(d, "TE_BLOOD", "1"); print("effect TE_BLOOD is ", ftos(particleeffectnum("TE_BLOOD")), "\n");
524         db_put(d, "TE_SPARK", "1"); print("effect TE_SPARK is ", ftos(particleeffectnum("TE_SPARK")), "\n");
525         db_put(d, "TE_PLASMABURN", "1"); print("effect TE_PLASMABURN is ", ftos(particleeffectnum("TE_PLASMABURN")), "\n");
526         db_put(d, "TE_TEI_G3", "1"); print("effect TE_TEI_G3 is ", ftos(particleeffectnum("TE_TEI_G3")), "\n");
527         db_put(d, "TE_TEI_SMOKE", "1"); print("effect TE_TEI_SMOKE is ", ftos(particleeffectnum("TE_TEI_SMOKE")), "\n");
528         db_put(d, "TE_TEI_BIGEXPLOSION", "1"); print("effect TE_TEI_BIGEXPLOSION is ", ftos(particleeffectnum("TE_TEI_BIGEXPLOSION")), "\n");
529         db_put(d, "TE_TEI_PLASMAHIT", "1"); print("effect TE_TEI_PLASMAHIT is ", ftos(particleeffectnum("TE_TEI_PLASMAHIT")), "\n");
530         db_put(d, "EF_STARDUST", "1"); print("effect EF_STARDUST is ", ftos(particleeffectnum("EF_STARDUST")), "\n");
531         db_put(d, "TR_ROCKET", "1"); print("effect TR_ROCKET is ", ftos(particleeffectnum("TR_ROCKET")), "\n");
532         db_put(d, "TR_GRENADE", "1"); print("effect TR_GRENADE is ", ftos(particleeffectnum("TR_GRENADE")), "\n");
533         db_put(d, "TR_BLOOD", "1"); print("effect TR_BLOOD is ", ftos(particleeffectnum("TR_BLOOD")), "\n");
534         db_put(d, "TR_WIZSPIKE", "1"); print("effect TR_WIZSPIKE is ", ftos(particleeffectnum("TR_WIZSPIKE")), "\n");
535         db_put(d, "TR_SLIGHTBLOOD", "1"); print("effect TR_SLIGHTBLOOD is ", ftos(particleeffectnum("TR_SLIGHTBLOOD")), "\n");
536         db_put(d, "TR_KNIGHTSPIKE", "1"); print("effect TR_KNIGHTSPIKE is ", ftos(particleeffectnum("TR_KNIGHTSPIKE")), "\n");
537         db_put(d, "TR_VORESPIKE", "1"); print("effect TR_VORESPIKE is ", ftos(particleeffectnum("TR_VORESPIKE")), "\n");
538         db_put(d, "TR_NEHAHRASMOKE", "1"); print("effect TR_NEHAHRASMOKE is ", ftos(particleeffectnum("TR_NEHAHRASMOKE")), "\n");
539         db_put(d, "TR_NEXUIZPLASMA", "1"); print("effect TR_NEXUIZPLASMA is ", ftos(particleeffectnum("TR_NEXUIZPLASMA")), "\n");
540         db_put(d, "TR_GLOWTRAIL", "1"); print("effect TR_GLOWTRAIL is ", ftos(particleeffectnum("TR_GLOWTRAIL")), "\n");
541         db_put(d, "SVC_PARTICLE", "1"); print("effect SVC_PARTICLE is ", ftos(particleeffectnum("SVC_PARTICLE")), "\n");
542
543         fh = fopen("effectinfo.txt", FILE_READ);
544         while((s = fgets(fh)))
545         {
546                 tokenize_insane(s); // tokenize_sane would hit the loop counter :(
547                 if(argv(0) == "effect")
548                 {
549                         if(db_get(d, argv(1)) != "1")
550                         {
551                                 if(particleeffectnum(argv(1)) >= 0)
552                                         print("effect ", argv(1), " is ", ftos(particleeffectnum(argv(1))), "\n");
553                                 db_put(d, argv(1), "1");
554                         }
555                 }
556         }
557         print("end of effects list\n");
558
559         db_close(d);
560 }
561
562 void make_mapinfo_Think()
563 {
564         if(MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, 0, 0, 1))
565         {
566                 print("Done rebuiling mapinfos.\n");
567                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0, (g_maplist_allow_hidden ? MAPINFO_FLAG_HIDDEN : 0), 0);
568                 remove(self);
569         }
570         else
571         {
572                 self.think = make_mapinfo_Think;
573                 self.nextthink = time;
574         }
575 }
576
577 void GameCommand(string command)
578 {
579         float argc;
580         entity client, e;
581         float entno, i;
582         argc = tokenize_sane(command);
583
584         if(argv(0) == "help" || argc == 0)
585         {
586                 print("Usage: sv_cmd COMMAND..., where possible commands are:\n");
587                 print("  adminmsg clientnumber \"message\"\n");
588                 print("  teamstatus\n");
589                 print("  printstats\n");
590                 print("  make_mapinfo\n");
591                 print("  gametype dm|ctf|...\n");
592                 print("  savedb filename\n");
593                 print("  dumpdb filename\n");
594                 print("  loaddb filename\n");
595                 print("  allready\n");
596                 print("  effectindexdump\n");
597                 print("  radarmap [--force] [--quit | --loop] [sharpness]\n");
598                 print("  bbox\n");
599                 print("  cvar_changes\n");
600                 print("  find classname\n");
601                 GameCommand_Vote("help", world);
602                 GameCommand_Ban("help");
603                 GameCommand_Generic("help");
604                 return;
605         }
606
607         if(GameCommand_Vote(command, world))
608                 return;
609
610         if(GameCommand_Ban(command))
611                 return;
612
613         if(GameCommand_Generic(command))
614                 return;
615
616         if(argv(0) == "printstats")
617         {
618                 DumpStats(FALSE);
619                 return;
620         }
621
622         if(argv(0) == "make_mapinfo")
623         {
624                 e = spawn();
625                 e.classname = "make_mapinfo";
626                 e.think = make_mapinfo_Think;
627                 e.nextthink = time;
628                 MapInfo_Enumerate();
629                 return;
630         }
631
632         if(argv(0) == "warp") if(argc == 2) if(cvar("g_campaign"))
633         {
634                 CampaignLevelWarp(stof(argv(1)));
635                 return;
636         }
637
638         if(argv(0) == "gotomap") if(argc == 2)
639         {
640                 print(GotoMap(argv(1)), "\n");
641                 return;
642         }
643
644         if(argv(0) == "gametype") if(argc == 2)
645         {
646                 float t, tsave;
647                 string s;
648                 s = argv(1);
649                 t = MapInfo_Type_FromString(s);
650                 tsave = MapInfo_CurrentGametype();
651                 if(t)
652                 {
653                         MapInfo_SwitchGameType(t);
654                         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0, MAPINFO_FLAG_HIDDEN, 0);
655                         if(MapInfo_count > 0)
656                         {
657                                 bprint("Game type successfully switched to ", s, "\n");
658                                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0, (g_maplist_allow_hidden ? MAPINFO_FLAG_HIDDEN : 0), 0);
659                         }
660                         else
661                         {
662                                 bprint("Cannot use this game type: no map for it found\n");
663                                 MapInfo_SwitchGameType(tsave);
664                                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), 0, (g_maplist_allow_hidden ? MAPINFO_FLAG_HIDDEN : 0), 0);
665                         }
666                 }
667                 else
668                         bprint("Game type switch to ", s, " failed: this type does not exist!\n");
669                 return;
670         }
671
672         if(argv(0) == "adminmsg") if(argc == 3)
673         {
674                 entno = stof(argv(1));
675                 client = world;
676                 if(entno <= maxclients)
677                         client = edict_num(entno);
678                 if(client.flags & FL_CLIENT)
679                 {
680                         centerprint_atprio(client, CENTERPRIO_ADMIN, strcat("^3SERVER ADMIN:\n\n^7", argv(2)));
681                         sprint(client, strcat("\{1}\{13}^3SERVER ADMIN^7: ", argv(2), "\n"));
682                         print("Message sent to ", client.netname, "\n");
683                 }
684                 else
685                         print("Client not found\n");
686                 return;
687         }
688
689         if(argv(0) == "savedb") if(argc == 2)
690         {
691                 db_save(ServerProgsDB, argv(1));
692                 print("DB saved.\n");
693                 return;
694         }
695
696         if(argv(0) == "dumpdb") if(argc == 2)
697         {
698                 db_dump(ServerProgsDB, argv(1));
699                 print("DB dumped.\n");
700                 return;
701         }
702
703         if(argv(0) == "loaddb") if(argc == 2)
704         {
705                 db_close(ServerProgsDB);
706                 ServerProgsDB = db_load(argv(1));
707                 print("DB loaded.\n");
708                 return;
709         }
710         if (argv(0) == "nospectators")
711         {
712                 blockSpectators = 1;
713                 local entity plr;
714                 FOR_EACH_CLIENT(plr) //give every spectator <g_maxplayers_spectator_blocktime> seconds time to become a player
715                 {
716                         if(plr.classname == "spectator" || plr.classname == "observer")
717                         {
718                                 plr.spectatortime = time;
719                                 sprint(plr, strcat("^7You have to become a player within the next ", ftos(cvar("g_maxplayers_spectator_blocktime")), " seconds, otherwise you will be kicked, because spectators aren't allowed at this time!\n"));
720                         }
721                 }
722                 bprint(strcat("^7All spectators will be automatically kicked when not joining the game after ", ftos(cvar("g_maxplayers_spectator_blocktime")), " seconds!\n"));
723                 return;
724         }
725         if (argv(0) == "lockteams")
726         {
727                 if(teamplay)
728                 {
729                         lockteams = 1;
730                         bprint("^1The teams are now locked.\n");
731                 }
732                 else
733                         bprint("That command can only be used in a team-based gamemode.\n");
734                 return;
735         }
736         if (argv(0) == "unlockteams")
737         {
738                 if(teamplay)
739                 {
740                         lockteams = 0;
741                         bprint("^1The teams are now unlocked.\n");
742                 }
743                 else
744                         bprint("That command can only be used in a team-based gamemode.\n");
745                 return;
746         }
747         if (argv(0) == "movetoteam") if(argc == 3)
748         {
749                 entno = stof(argv(1));
750                 client = world;
751                 if(entno <= maxclients)
752                         client = edict_num(entno);
753                 if(client.flags & FL_CLIENT)
754                 {
755                         float lt;
756                         lt = lockteams;
757                         lockteams = 0;
758
759                         self = client;
760                         SV_ParseClientCommand(strcat("selectteam ", argv(2)));
761
762                         lockteams = lt;
763                 }
764                 else
765                         print("Client not found\n");
766                 return;
767         }
768         if (argv(0) == "teamstatus")
769         {
770                 Score_NicePrint(world);
771                 return;
772         }
773         if (argv(0) == "allready")
774         {
775                 ReadyRestart();
776                 return;
777         }
778         if (argv(0) == "effectindexdump")
779         {
780                 EffectIndexDump();
781                 return;
782         }
783         if (argv(0) == "radarmap")
784         {
785                 RadarMap(argc);
786                 return;
787         }
788         if (argv(0) == "bbox")
789         {
790                 BBox();
791                 return;
792         }
793         if (argv(0) == "cvar_changes")
794         {
795                 print(cvar_changes);
796                 return;
797         }
798         if (argv(0) == "find") if(argc == 2)
799         {
800                 for(client = world; (client = find(client, classname, argv(1))); )
801                         print(etos(client), "\n");
802                 return;
803         }
804         if (argv(0) == "records")
805         {
806                 strunzone(records_reply);
807                 records_reply = strzone(getrecords());
808                 print(records_reply);
809                 return;
810         }
811
812         if(argv(0) == "cointoss")
813         {
814                 bprint("^3Throwing coin... Result: ");
815                 if (random() > 0.5)
816                         bprint("^1heads ^3!\n");
817                 else
818                         bprint("^1tails ^3!\n");
819                 return;
820         }
821
822         if(argv(0) == "__FORCE_READY_RESTART")
823         {
824                 reset_map(FALSE);
825                 return;
826         }
827
828         if(argv(0) == "debug_shotorg")
829         {
830                 debug_shotorg = stov(argv(1));
831                 return;
832         }
833
834         if(argv(0) == "gettaginfo") if(argc >= 4)
835         {
836                 e = spawn();
837                 if(argv(1) == "w")
838                         setmodel(e, (nextent(world)).weaponentity.model);
839                 else
840                         setmodel(e, argv(1));
841                 e.frame = stof(argv(2));
842                 i = gettagindex(e, argv(3));
843                 if(i)
844                 {
845                         print("model ", e.model, " frame ", ftos(e.frame), " tag ", argv(3));
846                         print(" index = ", ftos(i));
847                         print(" vector = ", vtos(gettaginfo(e, i)), "\n");
848                         if(argc >= 6)
849                                 localcmd(strcat(argv(4), vtos(gettaginfo(e, i)), argv(5), "\n"));
850                 }
851                 else
852                         print("bone not found\n");
853                 remove(e);
854                 return;
855         }
856
857         print("Invalid command. For a list of supported commands, try sv_cmd help.\n");
858 }
859