]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/sv_cmd.qc
Uncrustify server/command/*
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / sv_cmd.qc
1 #include "../../common/command/command.qh"
2 #include "sv_cmd.qh"
3
4 #include "banning.qh"
5 #include "cmd.qh"
6 #include "common.qh"
7 #include "getreplies.qh"
8 #include "radarmap.qh"
9
10 #include "../anticheat.qh"
11 #include "../campaign.qh"
12 #include "../cl_client.qh"
13 #include "../cl_player.qh"
14 #include "../g_world.qh"
15 #include "../ipban.qh"
16 #include "../playerdemo.qh"
17 #include "../teamplay.qh"
18
19 #include "../bot/bot.qh"
20 #include "../bot/navigation.qh"
21 #include "../bot/scripting.qh"
22
23 #include "../mutators/all.qh"
24
25 #include "../../common/constants.qh"
26 #include "../../common/mapinfo.qh"
27 #include "../../common/notifications.qh"
28 #include "../../common/teams.qh"
29 #include "../../common/util.qh"
30
31 #include "../../common/monsters/sv_monsters.qh"
32
33
34 void PutObserverInServer(void);
35
36 // =====================================================
37 //  Server side game commands code, reworked by Samual
38 //  Last updated: December 29th, 2011
39 // =====================================================
40
41 //  used by GameCommand_make_mapinfo()
42 void make_mapinfo_Think()
43 {
44         SELFPARAM();
45         if (MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, 0, 0, 1))
46         {
47                 LOG_INFO("Done rebuiling mapinfos.\n");
48                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
49                 remove(self);
50         }
51         else
52         {
53                 self.think = make_mapinfo_Think;
54                 self.nextthink = time;
55         }
56 }
57
58 //  used by GameCommand_extendmatchtime() and GameCommand_reducematchtime()
59 void changematchtime(float delta, float mi, float ma)
60 {
61         float cur;
62         float update;
63         float lim;
64
65         if (delta == 0) return;
66         if (autocvar_timelimit < 0) return;
67
68         if (mi <= 10) mi = 10;  // at least ten sec in the future
69         cur = time - game_starttime;
70         if (cur > 0) mi += cur; // from current time!
71
72         lim = autocvar_timelimit * 60;
73
74         if (delta > 0)
75         {
76                 if (lim == 0) return; // cannot increase any further
77                 else if (lim < ma) update = min(ma, lim + delta);
78                 else                  // already above maximum: FAIL
79                         return;
80         }
81         else
82         {
83                 if (lim == 0)      // infinite: try reducing to max, if we are allowed to
84                         update = max(mi, ma);
85                 else if (lim > mi) // above minimum: decrease
86                         update = max(mi, lim + delta);
87                 else               // already below minimum: FAIL
88                         return;
89         }
90
91         cvar_set("timelimit", ftos(update / 60));
92 }
93
94
95 // =======================
96 //  Command Sub-Functions
97 // =======================
98
99 void GameCommand_adminmsg(float request, float argc)
100 {
101         switch (request)
102         {
103                 case CMD_REQUEST_COMMAND:
104                 {
105                         entity client;
106                         float accepted;
107
108                         string targets = strreplace(",", " ", argv(1));
109                         string original_targets = strreplace(" ", ", ", targets);
110                         string admin_message = argv(2);
111                         float infobartime = stof(argv(3));
112
113                         string successful, t;
114                         successful = string_null;
115
116                         if ((targets) && (admin_message))
117                         {
118                                 for ( ; targets; )
119                                 {
120                                         t = car(targets);
121                                         targets = cdr(targets);
122
123                                         // Check to see if the player is a valid target
124                                         client = GetFilteredEntity(t);
125                                         accepted = VerifyClientEntity(client, true, false);
126
127                                         if (accepted <= 0)
128                                         {
129                                                 LOG_INFO("adminmsg: ", GetClientErrorString(accepted, t), (targets ? ", skipping to next player.\n" : ".\n"));
130                                                 continue;
131                                         }
132
133                                         // send the centerprint/console print or infomessage
134                                         if (infobartime)
135                                         {
136                                                 stuffcmd(client, sprintf("\ninfobar %f \"%s\"\n", infobartime, MakeConsoleSafe(admin_message)));
137                                         }
138                                         else
139                                         {
140                                                 centerprint(client, strcat("^3", admin_name(), ":\n^7", admin_message));
141                                                 sprint(client, strcat("\{1}\{13}^3", admin_name(), "^7: ", admin_message, "\n"));
142                                         }
143
144                                         successful = strcat(successful, (successful ? ", " : ""), client.netname);
145                                         LOG_TRACE("Message sent to ", client.netname, "\n");
146                                         continue;
147                                 }
148
149                                 if (successful) bprint("Successfully sent message '", admin_message, "' to ", successful, ".\n");
150                                 else LOG_INFO("No players given (", original_targets, ") could receive the message.\n");
151
152                                 return;
153                         }
154                 }
155
156                 default:
157                         LOG_INFO("Incorrect parameters for ^2adminmsg^7\n");
158                 case CMD_REQUEST_USAGE:
159                 {
160                         LOG_INFO("\nUsage:^3 sv_cmd adminmsg clients \"message\" [infobartime]\n");
161                         LOG_INFO("  'clients' is a list (separated by commas) of player entity ID's or nicknames\n");
162                         LOG_INFO("  If infobartime is provided, the message will be sent to infobar.\n");
163                         LOG_INFO("  Otherwise, it will just be sent as a centerprint message.\n");
164                         LOG_INFO("Examples: adminmsg 2,4 \"this infomessage will last for ten seconds\" 10\n");
165                         LOG_INFO("          adminmsg 2,5 \"this message will be a centerprint\"\n");
166                         return;
167                 }
168         }
169 }
170
171 void GameCommand_allready(float request)
172 {
173         switch (request)
174         {
175                 case CMD_REQUEST_COMMAND:
176                 {
177                         ReadyRestart();
178                         return;
179                 }
180
181                 default:
182                 case CMD_REQUEST_USAGE:
183                 {
184                         LOG_INFO("\nUsage:^3 sv_cmd allready\n");
185                         LOG_INFO("  No arguments required.\n");
186                         return;
187                 }
188         }
189 }
190
191 void GameCommand_allspec(float request, float argc)
192 {
193         SELFPARAM();
194         switch (request)
195         {
196                 case CMD_REQUEST_COMMAND:
197                 {
198                         entity client;
199                         string reason = argv(1);
200                         float i = 0;
201
202                         FOR_EACH_REALPLAYER(client)
203                         {
204                                 if (client.caplayer) client.caplayer = 0;
205                                 WITH(entity, self, client, PutObserverInServer());
206                                 ++i;
207                         }
208                         if (i)   bprint(strcat("Successfully forced all (", ftos(i), ") players to spectate", (reason ? strcat(" for reason: '", reason, "'") : ""), ".\n"));
209                         else   LOG_INFO("No players found to spectate.\n");
210                         return;
211                 }
212
213                 default:
214                 case CMD_REQUEST_USAGE:
215                 {
216                         LOG_INFO("\nUsage:^3 sv_cmd allspec [reason]\n");
217                         LOG_INFO("  Where 'reason' is an optional argument for explanation of allspec command.\n");
218                         LOG_INFO("See also: ^2moveplayer, shuffleteams^7\n");
219                         return;
220                 }
221         }
222 }
223
224 void GameCommand_anticheat(float request, float argc)
225 {
226         SELFPARAM();
227         switch (request)
228         {
229                 case CMD_REQUEST_COMMAND:
230                 {
231                         entity client = GetIndexedEntity(argc, 1);
232                         float accepted = VerifyClientEntity(client, false, false);
233
234                         if (accepted > 0)
235                         {
236                                 WITH(entity, self, client, anticheat_report());
237                                 return;
238                         }
239                         else
240                         {
241                                 LOG_INFO("anticheat: ", GetClientErrorString(accepted, argv(1)), ".\n");
242                         }
243                 }
244
245                 default:
246                         LOG_INFO("Incorrect parameters for ^2anticheat^7\n");
247                 case CMD_REQUEST_USAGE:
248                 {
249                         LOG_INFO("\nUsage:^3 sv_cmd anticheat client\n");
250                         LOG_INFO("  'client' is the entity number or name of the player.\n");
251                         return;
252                 }
253         }
254 }
255
256 void GameCommand_bbox(float request)
257 {
258         switch (request)
259         {
260                 case CMD_REQUEST_COMMAND:
261                 {
262                         LOG_INFO("Original size: ", ftos(world.absmin.x), " ", ftos(world.absmin.y), " ", ftos(world.absmin.z));
263                         LOG_INFO(" ", ftos(world.absmax.x), " ", ftos(world.absmax.y), " ", ftos(world.absmax.z), "\n");
264                         LOG_INFO("Currently set size: ", ftos(world.mins.x), " ", ftos(world.mins.y), " ", ftos(world.mins.z));
265                         LOG_INFO(" ", ftos(world.maxs.x), " ", ftos(world.maxs.y), " ", ftos(world.maxs.z), "\n");
266                         LOG_INFO("Solid bounding box size:");
267
268                         tracebox('1 0 0' * world.absmin.x,
269                                 '0 1 0' * world.absmin.y + '0 0 1' * world.absmin.z,
270                                 '0 1 0' * world.absmax.y + '0 0 1' * world.absmax.z,
271                                 '1 0 0' * world.absmax.x,
272                                 MOVE_WORLDONLY,
273                                 world);
274                         if (trace_startsolid) LOG_INFO(" ", ftos(world.absmin.x));
275                         else LOG_INFO(" ", ftos(trace_endpos.x));
276
277                         tracebox('0 1 0' * world.absmin.y,
278                                 '1 0 0' * world.absmin.x + '0 0 1' * world.absmin.z,
279                                 '1 0 0' * world.absmax.x + '0 0 1' * world.absmax.z,
280                                 '0 1 0' * world.absmax.y,
281                                 MOVE_WORLDONLY,
282                                 world);
283                         if (trace_startsolid) LOG_INFO(" ", ftos(world.absmin.y));
284                         else LOG_INFO(" ", ftos(trace_endpos.y));
285
286                         tracebox('0 0 1' * world.absmin.z,
287                                 '1 0 0' * world.absmin.x + '0 1 0' * world.absmin.y,
288                                 '1 0 0' * world.absmax.x + '0 1 0' * world.absmax.y,
289                                 '0 0 1' * world.absmax.z,
290                                 MOVE_WORLDONLY,
291                                 world);
292                         if (trace_startsolid) LOG_INFO(" ", ftos(world.absmin.z));
293                         else LOG_INFO(" ", ftos(trace_endpos.z));
294
295                         tracebox('1 0 0' * world.absmax.x,
296                                 '0 1 0' * world.absmin.y + '0 0 1' * world.absmin.z,
297                                 '0 1 0' * world.absmax.y + '0 0 1' * world.absmax.z,
298                                 '1 0 0' * world.absmin.x,
299                                 MOVE_WORLDONLY,
300                                 world);
301                         if (trace_startsolid) LOG_INFO(" ", ftos(world.absmax.x));
302                         else LOG_INFO(" ", ftos(trace_endpos.x));
303
304                         tracebox('0 1 0' * world.absmax.y,
305                                 '1 0 0' * world.absmin.x + '0 0 1' * world.absmin.z,
306                                 '1 0 0' * world.absmax.x + '0 0 1' * world.absmax.z,
307                                 '0 1 0' * world.absmin.y,
308                                 MOVE_WORLDONLY,
309                                 world);
310                         if (trace_startsolid) LOG_INFO(" ", ftos(world.absmax.y));
311                         else LOG_INFO(" ", ftos(trace_endpos.y));
312
313                         tracebox('0 0 1' * world.absmax.z,
314                                 '1 0 0' * world.absmin.x + '0 1 0' * world.absmin.y,
315                                 '1 0 0' * world.absmax.x + '0 1 0' * world.absmax.y,
316                                 '0 0 1' * world.absmin.z,
317                                 MOVE_WORLDONLY,
318                                 world);
319                         if (trace_startsolid) LOG_INFO(" ", ftos(world.absmax.z));
320                         else LOG_INFO(" ", ftos(trace_endpos.z));
321
322                         LOG_INFO("\n");
323                         return;
324                 }
325
326                 default:
327                 case CMD_REQUEST_USAGE:
328                 {
329                         LOG_INFO("\nUsage:^3 sv_cmd bbox\n");
330                         LOG_INFO("  No arguments required.\n");
331                         LOG_INFO("See also: ^2gettaginfo, trace^7\n");
332                         return;
333                 }
334         }
335 }
336
337 void GameCommand_bot_cmd(float request, float argc, string command)
338 {
339         switch (request)
340         {
341                 case CMD_REQUEST_COMMAND:
342                 {
343                         entity bot;
344
345                         if (argv(1) == "reset")
346                         {
347                                 bot_resetqueues();
348                                 return;
349                         }
350                         else if (argv(1) == "setbots")
351                         {
352                                 cvar_settemp("bot_vs_human", "0");
353                                 cvar_settemp("minplayers", "0");
354                                 cvar_settemp("bot_number", "0");
355                                 bot_fixcount();
356                                 cvar_settemp("bot_number", argv(2));
357                                 if (!bot_fixcount()) LOG_INFO("Sorry, could not set requested bot count\n");
358                                 return;
359                         }
360                         else if (argv(1) == "load" && argc == 3)
361                         {
362                                 float fh, i;
363                                 string s;
364                                 fh = fopen(argv(2), FILE_READ);
365                                 if (fh < 0)
366                                 {
367                                         LOG_INFO("cannot open the file\n");
368                                         return;
369                                 }
370
371                                 i = 0;
372                                 while ((s = fgets(fh)))
373                                 {
374                                         argc = tokenize_console(s);
375
376                                         if (argc >= 3 && argv(0) == "sv_cmd" && argv(1) == "bot_cmd")
377                                         {
378                                                 if (argv(2) == "reset")
379                                                 {
380                                                         bot_resetqueues();
381                                                 }
382                                                 else if (argv(2) == "setbots")
383                                                 {
384                                                         cvar_settemp("bot_vs_human", "0");
385                                                         cvar_settemp("minplayers", "0");
386                                                         cvar_settemp("bot_number", "0");
387                                                         bot_fixcount();
388                                                         cvar_settemp("bot_number", argv(3));
389                                                         if (!bot_fixcount()) LOG_INFO("Sorry, could not set requested bot count\n");
390                                                 }
391                                                 else
392                                                 {
393                                                         // let's start at token 2 so we can skip sv_cmd bot_cmd
394                                                         bot = find_bot_by_number(stof(argv(2)));
395                                                         if (bot == world) bot = find_bot_by_name(argv(2));
396                                                         if (bot) bot_queuecommand(bot, substring(s, argv_start_index(3), -1));
397                                                 }
398                                         }
399                                         else
400                                         {
401                                                 localcmd(strcat(s, "\n"));
402                                         }
403
404                                         ++i;
405                                 }
406                                 LOG_INFO(ftos(i), " commands read\n");
407                                 fclose(fh);
408                                 return;
409                         }
410                         else if (argv(1) == "help")
411                         {
412                                 if (argv(2)) bot_cmdhelp(argv(2));
413                                 else bot_list_commands();
414                                 return;
415                         }
416                         else if (argc >= 3)  // this comes last
417                         {
418                                 bot = find_bot_by_number(stof(argv(1)));
419                                 if (bot == world) bot = find_bot_by_name(argv(1));
420                                 if (bot)
421                                 {
422                                         LOG_INFO(strcat("Command '", substring(command, argv_start_index(2), -1), "' sent to bot ", bot.netname, "\n"));
423                                         bot_queuecommand(bot, substring(command, argv_start_index(2), -1));
424                                         return;
425                                 }
426                                 else
427                                 {
428                                         LOG_INFO(strcat("Error: Can't find bot with the name or id '", argv(1), "' - Did you mistype the command?\n"));  // don't return so that usage is shown
429                                 }
430                         }
431                 }
432
433                 default:
434                         LOG_INFO("Incorrect parameters for ^2bot_cmd^7\n");
435                 case CMD_REQUEST_USAGE:
436                 {
437                         LOG_INFO("\nUsage:^3 sv_cmd bot_cmd client command [argument]\n");
438                         LOG_INFO("  'client' can be either the name or entity id of the bot\n");
439                         LOG_INFO("  For full list of commands, see bot_cmd help [command].\n");
440                         LOG_INFO("Examples: sv_cmd bot_cmd client cc \"say something\"\n");
441                         LOG_INFO("          sv_cmd bot_cmd client presskey jump\n");
442                         return;
443                 }
444         }
445 }
446
447 void GameCommand_cointoss(float request, float argc)
448 {
449         switch (request)
450         {
451                 case CMD_REQUEST_COMMAND:
452                 {
453                         string result1 = (argv(2) ? strcat("^7", argv(1)) : "^1HEADS");
454                         string result2 = (argv(2) ? strcat("^7", argv(2)) : "^4TAILS");
455                         string choice = ((random() > 0.5) ? result1 : result2);
456
457                         Send_Notification(NOTIF_ALL, world, MSG_MULTI, MULTI_COINTOSS, choice);
458                         return;
459                 }
460
461                 default:
462                 case CMD_REQUEST_USAGE:
463                 {
464                         LOG_INFO("\nUsage:^3 sv_cmd cointoss [result1 result2]\n");
465                         LOG_INFO("  Where 'result1' and 'result2' are user created options.\n");
466                         return;
467                 }
468         }
469 }
470
471 void GameCommand_database(float request, float argc)
472 {
473         switch (request)
474         {
475                 case CMD_REQUEST_COMMAND:
476                 {
477                         if (argc == 3)
478                         {
479                                 if (argv(1) == "save")
480                                 {
481                                         db_save(ServerProgsDB, argv(2));
482                                         LOG_INFO(strcat("Copied serverprogs database to '", argv(2), "' in the data directory.\n"));
483                                         return;
484                                 }
485                                 else if (argv(1) == "dump")
486                                 {
487                                         db_dump(ServerProgsDB, argv(2));
488                                         LOG_INFO("DB dumped.\n");  // wtf does this do?
489                                         return;
490                                 }
491                                 else if (argv(1) == "load")
492                                 {
493                                         db_close(ServerProgsDB);
494                                         ServerProgsDB = db_load(argv(2));
495                                         LOG_INFO(strcat("Loaded '", argv(2), "' as new serverprogs database.\n"));
496                                         return;
497                                 }
498                         }
499                 }
500
501                 default:
502                         LOG_INFO("Incorrect parameters for ^2database^7\n");
503                 case CMD_REQUEST_USAGE:
504                 {
505                         LOG_INFO("\nUsage:^3 sv_cmd database action filename\n");
506                         LOG_INFO("  Where 'action' is the command to complete,\n");
507                         LOG_INFO("  and 'filename' is what it acts upon.\n");
508                         LOG_INFO("  Full list of commands here: \"save, dump, load.\"\n");
509                         return;
510                 }
511         }
512 }
513
514 void GameCommand_defer_clear(float request, float argc)
515 {
516         switch (request)
517         {
518                 case CMD_REQUEST_COMMAND:
519                 {
520                         entity client;
521                         float accepted;
522
523                         if (argc >= 2)
524                         {
525                                 client = GetIndexedEntity(argc, 1);
526                                 accepted = VerifyClientEntity(client, true, false);
527
528                                 if (accepted > 0)
529                                 {
530                                         stuffcmd(client, "defer clear\n");
531                                         LOG_INFO("defer clear stuffed to ", client.netname, "\n");
532                                 }
533                                 else { LOG_INFO("defer_clear: ", GetClientErrorString(accepted, argv(1)), ".\n"); }
534
535                                 return;
536                         }
537                 }
538
539                 default:
540                         LOG_INFO("Incorrect parameters for ^2defer_clear^7\n");
541                 case CMD_REQUEST_USAGE:
542                 {
543                         LOG_INFO("\nUsage:^3 sv_cmd defer_clear client\n");
544                         LOG_INFO("  'client' is the entity number or name of the player.\n");
545                         LOG_INFO("See also: ^2defer_clear_all^7\n");
546                         return;
547                 }
548         }
549 }
550
551 void GameCommand_defer_clear_all(float request)
552 {
553         switch (request)
554         {
555                 case CMD_REQUEST_COMMAND:
556                 {
557                         entity client;
558                         float i = 0;
559                         float argc;
560
561                         FOR_EACH_CLIENT(client)
562                         {
563                                 argc = tokenize_console(strcat("defer_clear ", ftos(num_for_edict(client))));
564                                 GameCommand_defer_clear(CMD_REQUEST_COMMAND, argc);
565                                 ++i;
566                         }
567                         if (i)   LOG_INFO(strcat("Successfully stuffed defer clear to all clients (", ftos(i), ")\n"));  // should a message be added if no players were found?
568                         return;
569                 }
570
571                 default:
572                 case CMD_REQUEST_USAGE:
573                 {
574                         LOG_INFO("\nUsage:^3 sv_cmd defer_clear_all\n");
575                         LOG_INFO("  No arguments required.\n");
576                         LOG_INFO("See also: ^2defer_clear^7\n");
577                         return;
578                 }
579         }
580 }
581
582 void GameCommand_delrec(float request, float argc)  // perhaps merge later with records and printstats and such?
583 {
584         switch (request)
585         {
586                 case CMD_REQUEST_COMMAND:
587                 {
588                         if (argv(1))
589                         {
590                                 if (argv(2)) race_deleteTime(argv(2), stof(argv(1)));
591                                 else race_deleteTime(GetMapname(), stof(argv(1)));
592                                 return;
593                         }
594                 }
595
596                 default:
597                         LOG_INFO("Incorrect parameters for ^2delrec^7\n");
598                 case CMD_REQUEST_USAGE:
599                 {
600                         LOG_INFO("\nUsage:^3 sv_cmd delrec ranking [map]\n");
601                         LOG_INFO("  'ranking' is which ranking level to clear up to, \n");
602                         LOG_INFO("  it will clear all records up to nth place.\n");
603                         LOG_INFO("  if 'map' is not provided it will use current map.\n");
604                         return;
605                 }
606         }
607 }
608
609 void GameCommand_effectindexdump(float request)
610 {
611         switch (request)
612         {
613                 case CMD_REQUEST_COMMAND:
614                 {
615                         float fh, d;
616                         string s;
617
618                         d = db_create();
619                         LOG_INFO("begin of effects list\n");
620                         db_put(d, "TE_GUNSHOT", "1");
621                         LOG_INFO("effect TE_GUNSHOT is ", ftos(_particleeffectnum("TE_GUNSHOT")), "\n");
622                         db_put(d, "TE_GUNSHOTQUAD", "1");
623                         LOG_INFO("effect TE_GUNSHOTQUAD is ", ftos(_particleeffectnum("TE_GUNSHOTQUAD")), "\n");
624                         db_put(d, "TE_SPIKE", "1");
625                         LOG_INFO("effect TE_SPIKE is ", ftos(_particleeffectnum("TE_SPIKE")), "\n");
626                         db_put(d, "TE_SPIKEQUAD", "1");
627                         LOG_INFO("effect TE_SPIKEQUAD is ", ftos(_particleeffectnum("TE_SPIKEQUAD")), "\n");
628                         db_put(d, "TE_SUPERSPIKE", "1");
629                         LOG_INFO("effect TE_SUPERSPIKE is ", ftos(_particleeffectnum("TE_SUPERSPIKE")), "\n");
630                         db_put(d, "TE_SUPERSPIKEQUAD", "1");
631                         LOG_INFO("effect TE_SUPERSPIKEQUAD is ", ftos(_particleeffectnum("TE_SUPERSPIKEQUAD")), "\n");
632                         db_put(d, "TE_WIZSPIKE", "1");
633                         LOG_INFO("effect TE_WIZSPIKE is ", ftos(_particleeffectnum("TE_WIZSPIKE")), "\n");
634                         db_put(d, "TE_KNIGHTSPIKE", "1");
635                         LOG_INFO("effect TE_KNIGHTSPIKE is ", ftos(_particleeffectnum("TE_KNIGHTSPIKE")), "\n");
636                         db_put(d, "TE_EXPLOSION", "1");
637                         LOG_INFO("effect TE_EXPLOSION is ", ftos(_particleeffectnum("TE_EXPLOSION")), "\n");
638                         db_put(d, "TE_EXPLOSIONQUAD", "1");
639                         LOG_INFO("effect TE_EXPLOSIONQUAD is ", ftos(_particleeffectnum("TE_EXPLOSIONQUAD")), "\n");
640                         db_put(d, "TE_TAREXPLOSION", "1");
641                         LOG_INFO("effect TE_TAREXPLOSION is ", ftos(_particleeffectnum("TE_TAREXPLOSION")), "\n");
642                         db_put(d, "TE_TELEPORT", "1");
643                         LOG_INFO("effect TE_TELEPORT is ", ftos(_particleeffectnum("TE_TELEPORT")), "\n");
644                         db_put(d, "TE_LAVASPLASH", "1");
645                         LOG_INFO("effect TE_LAVASPLASH is ", ftos(_particleeffectnum("TE_LAVASPLASH")), "\n");
646                         db_put(d, "TE_SMALLFLASH", "1");
647                         LOG_INFO("effect TE_SMALLFLASH is ", ftos(_particleeffectnum("TE_SMALLFLASH")), "\n");
648                         db_put(d, "TE_FLAMEJET", "1");
649                         LOG_INFO("effect TE_FLAMEJET is ", ftos(_particleeffectnum("TE_FLAMEJET")), "\n");
650                         db_put(d, "EF_FLAME", "1");
651                         LOG_INFO("effect EF_FLAME is ", ftos(_particleeffectnum("EF_FLAME")), "\n");
652                         db_put(d, "TE_BLOOD", "1");
653                         LOG_INFO("effect TE_BLOOD is ", ftos(_particleeffectnum("TE_BLOOD")), "\n");
654                         db_put(d, "TE_SPARK", "1");
655                         LOG_INFO("effect TE_SPARK is ", ftos(_particleeffectnum("TE_SPARK")), "\n");
656                         db_put(d, "TE_PLASMABURN", "1");
657                         LOG_INFO("effect TE_PLASMABURN is ", ftos(_particleeffectnum("TE_PLASMABURN")), "\n");
658                         db_put(d, "TE_TEI_G3", "1");
659                         LOG_INFO("effect TE_TEI_G3 is ", ftos(_particleeffectnum("TE_TEI_G3")), "\n");
660                         db_put(d, "TE_TEI_SMOKE", "1");
661                         LOG_INFO("effect TE_TEI_SMOKE is ", ftos(_particleeffectnum("TE_TEI_SMOKE")), "\n");
662                         db_put(d, "TE_TEI_BIGEXPLOSION", "1");
663                         LOG_INFO("effect TE_TEI_BIGEXPLOSION is ", ftos(_particleeffectnum("TE_TEI_BIGEXPLOSION")), "\n");
664                         db_put(d, "TE_TEI_PLASMAHIT", "1");
665                         LOG_INFO("effect TE_TEI_PLASMAHIT is ", ftos(_particleeffectnum("TE_TEI_PLASMAHIT")), "\n");
666                         db_put(d, "EF_STARDUST", "1");
667                         LOG_INFO("effect EF_STARDUST is ", ftos(_particleeffectnum("EF_STARDUST")), "\n");
668                         db_put(d, "TR_ROCKET", "1");
669                         LOG_INFO("effect TR_ROCKET is ", ftos(_particleeffectnum("TR_ROCKET")), "\n");
670                         db_put(d, "TR_GRENADE", "1");
671                         LOG_INFO("effect TR_GRENADE is ", ftos(_particleeffectnum("TR_GRENADE")), "\n");
672                         db_put(d, "TR_BLOOD", "1");
673                         LOG_INFO("effect TR_BLOOD is ", ftos(_particleeffectnum("TR_BLOOD")), "\n");
674                         db_put(d, "TR_WIZSPIKE", "1");
675                         LOG_INFO("effect TR_WIZSPIKE is ", ftos(_particleeffectnum("TR_WIZSPIKE")), "\n");
676                         db_put(d, "TR_SLIGHTBLOOD", "1");
677                         LOG_INFO("effect TR_SLIGHTBLOOD is ", ftos(_particleeffectnum("TR_SLIGHTBLOOD")), "\n");
678                         db_put(d, "TR_KNIGHTSPIKE", "1");
679                         LOG_INFO("effect TR_KNIGHTSPIKE is ", ftos(_particleeffectnum("TR_KNIGHTSPIKE")), "\n");
680                         db_put(d, "TR_VORESPIKE", "1");
681                         LOG_INFO("effect TR_VORESPIKE is ", ftos(_particleeffectnum("TR_VORESPIKE")), "\n");
682                         db_put(d, "TR_NEHAHRASMOKE", "1");
683                         LOG_INFO("effect TR_NEHAHRASMOKE is ", ftos(_particleeffectnum("TR_NEHAHRASMOKE")), "\n");
684                         db_put(d, "TR_NEXUIZPLASMA", "1");
685                         LOG_INFO("effect TR_NEXUIZPLASMA is ", ftos(_particleeffectnum("TR_NEXUIZPLASMA")), "\n");
686                         db_put(d, "TR_GLOWTRAIL", "1");
687                         LOG_INFO("effect TR_GLOWTRAIL is ", ftos(_particleeffectnum("TR_GLOWTRAIL")), "\n");
688                         db_put(d, "TR_SEEKER", "1");
689                         LOG_INFO("effect TR_SEEKER is ", ftos(_particleeffectnum("TR_SEEKER")), "\n");
690                         db_put(d, "SVC_PARTICLE", "1");
691                         LOG_INFO("effect SVC_PARTICLE is ", ftos(_particleeffectnum("SVC_PARTICLE")), "\n");
692
693                         fh = fopen("effectinfo.txt", FILE_READ);
694                         while ((s = fgets(fh)))
695                         {
696                                 tokenize_console(s);
697                                 if (argv(0) == "effect")
698                                 {
699                                         if (db_get(d, argv(1)) != "1")
700                                         {
701                                                 int i = _particleeffectnum(argv(1));
702                                                 if (i >= 0) LOG_INFO("effect ", argv(1), " is ", ftos(i), "\n");
703                                                 db_put(d, argv(1), "1");
704                                         }
705                                 }
706                         }
707                         LOG_INFO("end of effects list\n");
708
709                         db_close(d);
710                         return;
711                 }
712
713                 default:
714                 case CMD_REQUEST_USAGE:
715                 {
716                         LOG_INFO("\nUsage:^3 sv_cmd effectindexdump\n");
717                         LOG_INFO("  No arguments required.\n");
718                         return;
719                 }
720         }
721 }
722
723 void GameCommand_extendmatchtime(float request)
724 {
725         switch (request)
726         {
727                 case CMD_REQUEST_COMMAND:
728                 {
729                         changematchtime(autocvar_timelimit_increment * 60, autocvar_timelimit_min * 60, autocvar_timelimit_max * 60);
730                         return;
731                 }
732
733                 default:
734                 case CMD_REQUEST_USAGE:
735                 {
736                         LOG_INFO("\nUsage:^3 sv_cmd extendmatchtime\n");
737                         LOG_INFO("  No arguments required.\n");
738                         LOG_INFO("See also: ^2reducematchtime^7\n");
739                         return;
740                 }
741         }
742 }
743
744 void GameCommand_find(float request, float argc)  // is this even needed? We have prvm_edicts command and such ANYWAY
745 {
746         switch (request)
747         {
748                 case CMD_REQUEST_COMMAND:
749                 {
750                         entity client;
751
752                         for (client = world; (client = find(client, classname, argv(1))); )
753                                 LOG_INFO(etos(client), "\n");
754
755                         return;
756                 }
757
758                 default:
759                         LOG_INFO("Incorrect parameters for ^2find^7\n");
760                 case CMD_REQUEST_USAGE:
761                 {
762                         LOG_INFO("\nUsage:^3 sv_cmd find classname\n");
763                         LOG_INFO("  Where 'classname' is the classname to search for.\n");
764                         return;
765                 }
766         }
767 }
768
769 void GameCommand_gametype(float request, float argc)
770 {
771         switch (request)
772         {
773                 case CMD_REQUEST_COMMAND:
774                 {
775                         if (argv(1) != "")
776                         {
777                                 string s = argv(1);
778                                 float t = MapInfo_Type_FromString(s), tsave = MapInfo_CurrentGametype();
779
780                                 if (t)
781                                 {
782                                         MapInfo_SwitchGameType(t);
783                                         MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
784                                         if (MapInfo_count > 0)
785                                         {
786                                                 // update lsmaps in case the gametype changed, this way people can easily list maps for it
787                                                 if (lsmaps_reply != "")   strunzone(lsmaps_reply);
788                                                 lsmaps_reply = strzone(getlsmaps());
789                                                 bprint("Game type successfully switched to ", s, "\n");
790                                         }
791                                         else
792                                         {
793                                                 bprint("Cannot use this game type: no map for it found\n");
794                                                 MapInfo_SwitchGameType(tsave);
795                                                 MapInfo_FilterGametype(MapInfo_CurrentGametype(), MapInfo_CurrentFeatures(), MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
796                                         }
797                                 }
798                                 else
799                                 {
800                                         bprint("Game type switch to ", s, " failed: this type does not exist!\n");
801                                 }
802
803                                 return;
804                         }
805                 }
806
807                 default:
808                         LOG_INFO("Incorrect parameters for ^2gametype^7\n");
809                 case CMD_REQUEST_USAGE:
810                 {
811                         LOG_INFO("\nUsage:^3 sv_cmd gametype mode\n");
812                         LOG_INFO("  Where 'mode' is the gametype mode to switch to.\n");
813                         LOG_INFO("See also: ^2gotomap^7\n");
814                         return;
815                 }
816         }
817 }
818
819 void GameCommand_gettaginfo(float request, float argc)
820 {
821         switch (request)
822         {
823                 case CMD_REQUEST_COMMAND:
824                 {
825                         entity tmp_entity;
826                         float i;
827                         vector v;
828
829                         if (argc >= 4)
830                         {
831                                 tmp_entity = spawn();
832                                 if (argv(1) == "w")
833                                 {
834                                         _setmodel(tmp_entity, (nextent(world)).weaponentity.model);
835                                 }
836                                 else
837                                 {
838                                         precache_model(argv(1));
839                                         _setmodel(tmp_entity, argv(1));
840                                 }
841                                 tmp_entity.frame = stof(argv(2));
842                                 if (substring(argv(3), 0, 1) == "#") i = stof(substring(argv(3), 1, -1));
843                                 else i = gettagindex(tmp_entity, argv(3));
844                                 if (i)
845                                 {
846                                         v = gettaginfo(tmp_entity, i);
847                                         LOG_INFO("model ", tmp_entity.model, " frame ", ftos(tmp_entity.frame), " tag ", gettaginfo_name);
848                                         LOG_INFO(" index ", ftos(i), " parent ", ftos(gettaginfo_parent), "\n");
849                                         LOG_INFO(" vector = ", ftos(v.x), " ", ftos(v.y), " ", ftos(v.z), "\n");
850                                         LOG_INFO(" offset = ", ftos(gettaginfo_offset.x), " ", ftos(gettaginfo_offset.y), " ", ftos(gettaginfo_offset.z), "\n");
851                                         LOG_INFO(" forward = ", ftos(gettaginfo_forward.x), " ", ftos(gettaginfo_forward.y), " ", ftos(gettaginfo_forward.z), "\n");
852                                         LOG_INFO(" right = ", ftos(gettaginfo_right.x), " ", ftos(gettaginfo_right.y), " ", ftos(gettaginfo_right.z), "\n");
853                                         LOG_INFO(" up = ", ftos(gettaginfo_up.x), " ", ftos(gettaginfo_up.y), " ", ftos(gettaginfo_up.z), "\n");
854                                         if (argc >= 6)
855                                         {
856                                                 v.y = -v.y;
857                                                 localcmd(strcat(argv(4), vtos(v), argv(5), "\n"));
858                                         }
859                                 }
860                                 else
861                                 {
862                                         LOG_INFO("bone not found\n");
863                                 }
864
865                                 remove(tmp_entity);
866                                 return;
867                         }
868                 }
869
870                 default:
871                         LOG_INFO("Incorrect parameters for ^2gettaginfo^7\n");
872                 case CMD_REQUEST_USAGE:
873                 {
874                         LOG_INFO("\nUsage:^3 sv_cmd gettaginfo model frame index [command one] [command two]\n");
875                         LOG_INFO("See also: ^2bbox, trace^7\n");
876                         return;
877                 }
878         }
879 }
880
881 void GameCommand_animbench(float request, float argc)
882 {
883         switch (request)
884         {
885                 case CMD_REQUEST_COMMAND:
886                 {
887                         entity tmp_entity;
888
889                         if (argc >= 4)
890                         {
891                                 tmp_entity = spawn();
892                                 if (argv(1) == "w")
893                                 {
894                                         _setmodel(tmp_entity, (nextent(world)).weaponentity.model);
895                                 }
896                                 else
897                                 {
898                                         precache_model(argv(1));
899                                         _setmodel(tmp_entity, argv(1));
900                                 }
901                                 float f1 = stof(argv(2));
902                                 float f2 = stof(argv(3));
903                                 float t0;
904                                 float t1 = 0;
905                                 float t2 = 0;
906                                 float n = 0;
907
908                                 while (t1 + t2 < 1)
909                                 {
910                                         tmp_entity.frame = f1;
911                                         t0 = gettime(GETTIME_HIRES);
912                                         getsurfacepoint(tmp_entity, 0, 0);
913                                         t1 += gettime(GETTIME_HIRES) - t0;
914                                         tmp_entity.frame = f2;
915                                         t0 = gettime(GETTIME_HIRES);
916                                         getsurfacepoint(tmp_entity, 0, 0);
917                                         t2 += gettime(GETTIME_HIRES) - t0;
918                                         n += 1;
919                                 }
920                                 LOG_INFO("model ", tmp_entity.model, " frame ", ftos(f1), " animtime ", ftos(n / t1), "/s\n");
921                                 LOG_INFO("model ", tmp_entity.model, " frame ", ftos(f2), " animtime ", ftos(n / t2), "/s\n");
922
923                                 remove(tmp_entity);
924                                 return;
925                         }
926                 }
927
928                 default:
929                         LOG_INFO("Incorrect parameters for ^2gettaginfo^7\n");
930                 case CMD_REQUEST_USAGE:
931                 {
932                         LOG_INFO("\nUsage:^3 sv_cmd gettaginfo model frame index [command one] [command two]\n");
933                         LOG_INFO("See also: ^2bbox, trace^7\n");
934                         return;
935                 }
936         }
937 }
938
939 void GameCommand_gotomap(float request, float argc)
940 {
941         switch (request)
942         {
943                 case CMD_REQUEST_COMMAND:
944                 {
945                         if (argv(1))
946                         {
947                                 LOG_INFO(GotoMap(argv(1)), "\n");
948                                 return;
949                         }
950                 }
951
952                 default:
953                         LOG_INFO("Incorrect parameters for ^2gotomap^7\n");
954                 case CMD_REQUEST_USAGE:
955                 {
956                         LOG_INFO("\nUsage:^3 sv_cmd gotomap map\n");
957                         LOG_INFO("  Where 'map' is the *.bsp file to change to.\n");
958                         LOG_INFO("See also: ^2gametype^7\n");
959                         return;
960                 }
961         }
962 }
963
964 void GameCommand_lockteams(float request)
965 {
966         switch (request)
967         {
968                 case CMD_REQUEST_COMMAND:
969                 {
970                         if (teamplay)
971                         {
972                                 lockteams = 1;
973                                 bprint("^1The teams are now locked.\n");
974                         }
975                         else
976                         {
977                                 bprint("lockteams command can only be used in a team-based gamemode.\n");
978                         }
979                         return;
980                 }
981
982                 default:
983                 case CMD_REQUEST_USAGE:
984                 {
985                         LOG_INFO("\nUsage:^3 sv_cmd lockteams\n");
986                         LOG_INFO("  No arguments required.\n");
987                         LOG_INFO("See also: ^2unlockteams^7\n");
988                         return;
989                 }
990         }
991 }
992
993 void GameCommand_make_mapinfo(float request)
994 {
995         switch (request)
996         {
997                 case CMD_REQUEST_COMMAND:
998                 {
999                         entity tmp_entity;
1000
1001                         tmp_entity = spawn();
1002                         tmp_entity.classname = "make_mapinfo";
1003                         tmp_entity.think = make_mapinfo_Think;
1004                         tmp_entity.nextthink = time;
1005                         MapInfo_Enumerate();
1006                         return;
1007                 }
1008
1009                 default:
1010                 case CMD_REQUEST_USAGE:
1011                 {
1012                         LOG_INFO("\nUsage:^3 sv_cmd make_mapinfo\n");
1013                         LOG_INFO("  No arguments required.\n");
1014                         LOG_INFO("See also: ^2radarmap^7\n");
1015                         return;
1016                 }
1017         }
1018 }
1019
1020 void GameCommand_moveplayer(float request, float argc)
1021 {
1022         SELFPARAM();
1023         switch (request)
1024         {
1025                 case CMD_REQUEST_COMMAND:
1026                 {
1027                         float accepted;
1028                         entity client;
1029
1030                         string targets = strreplace(",", " ", argv(1));
1031                         string original_targets = strreplace(" ", ", ", targets);
1032                         string destination = argv(2);
1033
1034                         string successful, t;
1035                         successful = string_null;
1036
1037                         // lets see if the target(s) even actually exist.
1038                         if ((targets) && (destination))
1039                         {
1040                                 for ( ; targets; )
1041                                 {
1042                                         t = car(targets);
1043                                         targets = cdr(targets);
1044
1045                                         // Check to see if the player is a valid target
1046                                         client = GetFilteredEntity(t);
1047                                         accepted = VerifyClientEntity(client, false, false);
1048
1049                                         if (accepted <= 0)
1050                                         {
1051                                                 LOG_INFO("moveplayer: ", GetClientErrorString(accepted, t), (targets ? ", skipping to next player.\n" : ".\n"));
1052                                                 continue;
1053                                         }
1054
1055                                         // Where are we putting this player?
1056                                         if (destination == "spec" || destination == "spectator")
1057                                         {
1058                                                 if (!IS_SPEC(client) && !IS_OBSERVER(client))
1059                                                 {
1060                                                         if (client.caplayer) client.caplayer = 0;
1061                                                         WITH(entity, self, client, PutObserverInServer());
1062
1063                                                         successful = strcat(successful, (successful ? ", " : ""), client.netname);
1064                                                 }
1065                                                 else
1066                                                 {
1067                                                         LOG_INFO("Player ", ftos(GetFilteredNumber(t)), " (", client.netname, ") is already spectating.\n");
1068                                                 }
1069                                                 continue;
1070                                         }
1071                                         else
1072                                         {
1073                                                 if (!IS_SPEC(client) && !IS_OBSERVER(client))
1074                                                 {
1075                                                         if (teamplay)
1076                                                         {
1077                                                                 // set up
1078                                                                 float team_id;
1079                                                                 float save = client.team_forced;
1080                                                                 client.team_forced = 0;
1081
1082                                                                 // find the team to move the player to
1083                                                                 team_id = Team_ColorToTeam(destination);
1084                                                                 if (team_id == client.team)  // already on the destination team
1085                                                                 {
1086                                                                         // keep the forcing undone
1087                                                                         LOG_INFO("Player ", ftos(GetFilteredNumber(t)), " (", client.netname, ") is already on the ", Team_ColoredFullName(client.team), (targets ? "^7, skipping to next player.\n" : "^7.\n"));
1088                                                                         continue;
1089                                                                 }
1090                                                                 else if (team_id == 0)  // auto team
1091                                                                 {
1092                                                                         CheckAllowedTeams(client);
1093                                                                         team_id = Team_NumberToTeam(FindSmallestTeam(client, false));
1094                                                                 }
1095                                                                 else
1096                                                                 {
1097                                                                         CheckAllowedTeams(client);
1098                                                                 }
1099                                                                 client.team_forced = save;
1100
1101                                                                 // Check to see if the destination team is even available
1102                                                                 switch (team_id)
1103                                                                 {
1104                                                                         case NUM_TEAM_1: if (c1 == -1) { LOG_INFO("Sorry, can't move player to red team if it doesn't exist.\n"); return; } break;
1105                                                                         case NUM_TEAM_2: if (c2 == -1) { LOG_INFO("Sorry, can't move player to blue team if it doesn't exist.\n"); return; } break;
1106                                                                         case NUM_TEAM_3: if (c3 == -1) { LOG_INFO("Sorry, can't move player to yellow team if it doesn't exist.\n"); return; } break;
1107                                                                         case NUM_TEAM_4: if (c4 == -1) { LOG_INFO("Sorry, can't move player to pink team if it doesn't exist.\n"); return; } break;
1108
1109                                                                         default: LOG_INFO("Sorry, can't move player here if team ", destination, " doesn't exist.\n");
1110                                                                                 return;
1111                                                                 }
1112
1113                                                                 // If so, lets continue and finally move the player
1114                                                                 client.team_forced = 0;
1115                                                                 MoveToTeam(client, team_id, 6);
1116                                                                 successful = strcat(successful, (successful ? ", " : ""), client.netname);
1117                                                                 LOG_INFO("Player ", ftos(GetFilteredNumber(t)), " (", client.netname, ") has been moved to the ", Team_ColoredFullName(team_id), "^7.\n");
1118                                                                 continue;
1119                                                         }
1120                                                         else
1121                                                         {
1122                                                                 LOG_INFO("Can't change teams when currently not playing a team game.\n");
1123                                                                 return;
1124                                                         }
1125                                                 }
1126                                                 else
1127                                                 {
1128                                                         LOG_INFO("Can't change teams if the player isn't in the game.\n");  // well technically we could, but should we allow that? :P
1129                                                         return;
1130                                                 }
1131                                         }
1132                                 }
1133
1134                                 if (successful) bprint("Successfully moved players ", successful, " to destination ", destination, ".\n");
1135                                 else LOG_INFO("No players given (", original_targets, ") are able to move.\n");
1136
1137                                 return;  // still correct parameters so return to avoid usage print
1138                         }
1139                 }
1140
1141                 default:
1142                         LOG_INFO("Incorrect parameters for ^2moveplayer^7\n");
1143                 case CMD_REQUEST_USAGE:
1144                 {
1145                         LOG_INFO("\nUsage:^3 sv_cmd moveplayer clients destination\n");
1146                         LOG_INFO("  'clients' is a list (separated by commas) of player entity ID's or nicknames\n");
1147                         LOG_INFO("  'destination' is what to send the player to, be it team or spectating\n");
1148                         LOG_INFO("  Full list of destinations here: \"spec, spectator, red, blue, yellow, pink, auto.\"\n");
1149                         LOG_INFO("Examples: sv_cmd moveplayer 1,3,5 red 3\n");
1150                         LOG_INFO("          sv_cmd moveplayer 2 spec \n");
1151                         LOG_INFO("See also: ^2allspec, shuffleteams^7\n");
1152                         return;
1153                 }
1154         }
1155 }
1156
1157 void GameCommand_nospectators(float request)
1158 {
1159         switch (request)
1160         {
1161                 case CMD_REQUEST_COMMAND:
1162                 {
1163                         blockSpectators = 1;
1164                         entity plr;
1165                         FOR_EACH_REALCLIENT(plr)  // give every spectator <g_maxplayers_spectator_blocktime> seconds time to become a player
1166                         {
1167                                 if (IS_SPEC(plr) || IS_OBSERVER(plr))
1168                                 {
1169                                         if (!plr.caplayer)
1170                                         {
1171                                                 plr.spectatortime = time;
1172                                                 Send_Notification(NOTIF_ONE_ONLY, plr, MSG_INFO, INFO_SPECTATE_WARNING, autocvar_g_maxplayers_spectator_blocktime);
1173                                         }
1174                                 }
1175                         }
1176                         bprint(strcat("^7All spectators will be automatically kicked when not joining the game after ", ftos(autocvar_g_maxplayers_spectator_blocktime), " seconds!\n"));
1177                         return;
1178                 }
1179
1180                 default:
1181                 case CMD_REQUEST_USAGE:
1182                 {
1183                         LOG_INFO("\nUsage:^3 sv_cmd nospectators\n");
1184                         LOG_INFO("  No arguments required.\n");
1185                         return;
1186                 }
1187         }
1188 }
1189
1190 void GameCommand_playerdemo(float request, float argc)
1191 {
1192         SELFPARAM();
1193         switch (request)
1194         {
1195                 case CMD_REQUEST_COMMAND:
1196                 {
1197                         if (argv(2) && argv(3))
1198                         {
1199                                 entity client;
1200                                 float i, n, accepted;
1201
1202                                 switch (argv(1))
1203                                 {
1204                                         case "read":
1205                                         {
1206                                                 client = GetIndexedEntity(argc, 2);
1207                                                 accepted = VerifyClientEntity(client, false, true);
1208
1209                                                 if (accepted <= 0)
1210                                                 {
1211                                                         LOG_INFO("playerdemo: read: ", GetClientErrorString(accepted, argv(2)), ".\n");
1212                                                         return;
1213                                                 }
1214
1215                                                 WITH(entity, self, client, playerdemo_open_read(argv(next_token)));
1216                                                 return;
1217                                         }
1218
1219                                         case "write":
1220                                         {
1221                                                 client = GetIndexedEntity(argc, 2);
1222                                                 accepted = VerifyClientEntity(client, false, false);
1223
1224                                                 if (accepted <= 0)
1225                                                 {
1226                                                         LOG_INFO("playerdemo: write: ", GetClientErrorString(accepted, argv(2)), ".\n");
1227                                                         return;
1228                                                 }
1229
1230                                                 WITH(entity, self, client, playerdemo_open_write(argv(next_token)));
1231                                                 return;
1232                                         }
1233
1234                                         case "auto_read_and_write":
1235                                         {
1236                                                 n = GetFilteredNumber(argv(3));
1237                                                 cvar_set("bot_number", ftos(n));
1238
1239                                                 localcmd("wait; wait; wait\n");
1240                                                 for (i = 0; i < n; ++i)
1241                                                         localcmd("sv_cmd playerdemo read ", ftos(i + 2), " ", argv(2), ftos(i + 1), "\n");
1242                                                 localcmd("sv_cmd playerdemo write 1 ", ftos(n + 1), "\n");
1243                                                 return;
1244                                         }
1245
1246                                         case "auto_read":
1247                                         {
1248                                                 n = GetFilteredNumber(argv(3));
1249                                                 cvar_set("bot_number", ftos(n));
1250
1251                                                 localcmd("wait; wait; wait\n");
1252                                                 for (i = 0; i < n; ++i)
1253                                                         localcmd("sv_cmd playerdemo read ", ftos(i + 2), " ", argv(2), ftos(i + 1), "\n");
1254                                                 return;
1255                                         }
1256                                 }
1257                         }
1258                 }
1259
1260                 default:
1261                         LOG_INFO("Incorrect parameters for ^2playerdemo^7\n");
1262                 case CMD_REQUEST_USAGE:
1263                 {
1264                         LOG_INFO("\nUsage:^3 sv_cmd playerdemo command (entitynumber filename | entitynumber botnumber)\n");
1265                         LOG_INFO("  Full list of commands here: \"read, write, auto_read_and_write, auto_read.\"\n");
1266                         return;
1267                 }
1268         }
1269 }
1270
1271 void GameCommand_printstats(float request)
1272 {
1273         switch (request)
1274         {
1275                 case CMD_REQUEST_COMMAND:
1276                 {
1277                         DumpStats(false);
1278                         LOG_INFO("stats dumped.\n");
1279                         return;
1280                 }
1281
1282                 default:
1283                 case CMD_REQUEST_USAGE:
1284                 {
1285                         LOG_INFO("\nUsage:^3 sv_cmd printstats\n");
1286                         LOG_INFO("  No arguments required.\n");
1287                         return;
1288                 }
1289         }
1290 }
1291
1292 void GameCommand_radarmap(float request, float argc)
1293 {
1294         switch (request)
1295         {
1296                 case CMD_REQUEST_COMMAND:
1297                 {
1298                         if (RadarMap_Make(argc)) return;
1299                 }
1300
1301                 default:
1302                         LOG_INFO("Incorrect parameters for ^2radarmap^7\n");
1303                 case CMD_REQUEST_USAGE:
1304                 {
1305                         LOG_INFO("\nUsage:^3 sv_cmd radarmap [--force] [--loop] [--quit] [--block | --trace | --sample | --lineblock] [--sharpen N] [--res W H] [--qual Q]\n");
1306                         LOG_INFO("  The quality factor Q is roughly proportional to the time taken.\n");
1307                         LOG_INFO("  trace supports no quality factor; its result should look like --block with infinite quality factor.\n");
1308                         LOG_INFO("See also: ^2make_mapinfo^7\n");
1309                         return;
1310                 }
1311         }
1312 }
1313
1314 void GameCommand_reducematchtime(float request)
1315 {
1316         switch (request)
1317         {
1318                 case CMD_REQUEST_COMMAND:
1319                 {
1320                         changematchtime(autocvar_timelimit_decrement * -60, autocvar_timelimit_min * 60, autocvar_timelimit_max * 60);
1321                         return;
1322                 }
1323
1324                 default:
1325                 case CMD_REQUEST_USAGE:
1326                 {
1327                         LOG_INFO("\nUsage:^3 sv_cmd reducematchtime\n");
1328                         LOG_INFO("  No arguments required.\n");
1329                         LOG_INFO("See also: ^2extendmatchtime^7\n");
1330                         return;
1331                 }
1332         }
1333 }
1334
1335 void GameCommand_setbots(float request, float argc)
1336 {
1337         switch (request)
1338         {
1339                 case CMD_REQUEST_COMMAND:
1340                 {
1341                         if (argc >= 2)
1342                         {
1343                                 cvar_settemp("minplayers", "0");
1344                                 cvar_settemp("bot_number", argv(1));
1345                                 bot_fixcount();
1346                                 return;
1347                         }
1348                 }
1349
1350                 default:
1351                         LOG_INFO("Incorrect parameters for ^2setbots^7\n");
1352                 case CMD_REQUEST_USAGE:
1353                 {
1354                         LOG_INFO("\nUsage:^3 sv_cmd setbots botnumber\n");
1355                         LOG_INFO("  Where 'botnumber' is the amount of bots to set bot_number cvar to.\n");
1356                         LOG_INFO("See also: ^2bot_cmd^7\n");
1357                         return;
1358                 }
1359         }
1360 }
1361
1362 void GameCommand_shuffleteams(float request)
1363 {
1364         SELFPARAM();
1365         switch (request)
1366         {
1367                 case CMD_REQUEST_COMMAND:
1368                 {
1369                         if (teamplay)
1370                         {
1371                                 entity tmp_player;
1372                                 int i;
1373                                 float x, t_teams, t_players, team_color;
1374
1375                                 // count the total amount of players and total amount of teams
1376                                 t_players = 0;
1377                                 t_teams = 0;
1378                                 FOR_EACH_CLIENT(tmp_player)
1379                                 if (IS_PLAYER(tmp_player) || tmp_player.caplayer)
1380                                 {
1381                                         CheckAllowedTeams(tmp_player);
1382
1383                                         if (c1 >= 0) t_teams = max(1, t_teams);
1384                                         if (c2 >= 0) t_teams = max(2, t_teams);
1385                                         if (c3 >= 0) t_teams = max(3, t_teams);
1386                                         if (c4 >= 0) t_teams = max(4, t_teams);
1387
1388                                         ++t_players;
1389                                 }
1390
1391                                 // build a list of the players in a random order
1392                                 FOR_EACH_CLIENT(tmp_player)
1393                                 if (IS_PLAYER(tmp_player) || tmp_player.caplayer)
1394                                 {
1395                                         for ( ; ; )
1396                                         {
1397                                                 i = bound(1, floor(random() * maxclients) + 1, maxclients);
1398
1399                                                 if (shuffleteams_players[i])
1400                                                 {
1401                                                         continue;  // a player is already assigned to this slot
1402                                                 }
1403                                                 else
1404                                                 {
1405                                                         shuffleteams_players[i] = num_for_edict(tmp_player);
1406                                                         break;
1407                                                 }
1408                                         }
1409                                 }
1410
1411                                 // finally, from the list made earlier, re-join the players in different order.
1412                                 for (int i = 1; i <= t_teams; ++i)
1413                                 {
1414                                         // find out how many players to assign to this team
1415                                         x = (t_players / t_teams);
1416                                         x = ((i == 1) ? ceil(x) : floor(x));
1417
1418                                         team_color = Team_NumberToTeam(i);
1419
1420                                         // sort through the random list of players made earlier
1421                                         for (int z = 1; z <= maxclients; ++z)
1422                                         {
1423                                                 if (!(shuffleteams_teams[i] >= x))
1424                                                 {
1425                                                         if (!(shuffleteams_players[z])) continue;  // not a player, move on to next random slot
1426
1427                                                         if (VerifyClientNumber(shuffleteams_players[z])) setself(edict_num(shuffleteams_players[z]));
1428
1429                                                         if (self.team != team_color) MoveToTeam(self, team_color, 6);
1430
1431                                                         shuffleteams_players[z] = 0;
1432                                                         shuffleteams_teams[i] = shuffleteams_teams[i] + 1;
1433                                                 }
1434                                                 else
1435                                                 {
1436                                                         break;  // move on to next team
1437                                                 }
1438                                         }
1439                                 }
1440
1441                                 bprint("Successfully shuffled the players around randomly.\n");
1442
1443                                 // clear the buffers now
1444                                 for (i = 0; i < SHUFFLETEAMS_MAX_PLAYERS; ++i)
1445                                         shuffleteams_players[i] = 0;
1446
1447                                 for (i = 0; i < SHUFFLETEAMS_MAX_TEAMS; ++i)
1448                                         shuffleteams_teams[i] = 0;
1449                         }
1450                         else
1451                         {
1452                                 LOG_INFO("Can't shuffle teams when currently not playing a team game.\n");
1453                         }
1454
1455                         return;
1456                 }
1457
1458                 default:
1459                 case CMD_REQUEST_USAGE:
1460                 {
1461                         LOG_INFO("\nUsage:^3 sv_cmd shuffleteams\n");
1462                         LOG_INFO("  No arguments required.\n");
1463                         LOG_INFO("See also: ^2moveplayer, allspec^7\n");
1464                         return;
1465                 }
1466         }
1467 }
1468
1469 void GameCommand_stuffto(float request, float argc)
1470 {
1471         // This... is a fairly dangerous and powerful command... - It allows any arguments to be sent to a client via rcon.
1472         // Because of this, it is disabled by default and must be enabled by the server owner when doing compilation. That way,
1473         // we can be certain they understand the risks of it... So to enable, compile server with -DSTUFFTO_ENABLED argument.
1474
1475 #ifdef STUFFTO_ENABLED
1476         #message "stuffto command enabled"
1477                 switch (request)
1478                 {
1479                         case CMD_REQUEST_COMMAND:
1480                         {
1481                                 if (argv(2))
1482                                 {
1483                                         entity client = GetIndexedEntity(argc, 1);
1484                                         float accepted = VerifyClientEntity(client, true, false);
1485
1486                                         if (accepted > 0)
1487                                         {
1488                                                 stuffcmd(client, strcat("\n", argv(next_token), "\n"));
1489                                                 LOG_INFO(strcat("Command: \"", argv(next_token), "\" sent to ", GetCallerName(client), " (", argv(1), ").\n"));
1490                                         }
1491                                         else
1492                                         {
1493                                                 LOG_INFO("stuffto: ", GetClientErrorString(accepted, argv(1)), ".\n");
1494                                         }
1495
1496                                         return;
1497                                 }
1498                         }
1499
1500                         default:
1501                                 LOG_INFO("Incorrect parameters for ^2stuffto^7\n");
1502                         case CMD_REQUEST_USAGE:
1503                         {
1504                                 LOG_INFO("\nUsage:^3 sv_cmd stuffto client \"command\"\n");
1505                                 LOG_INFO("  'client' is the entity number or name of the player,\n");
1506                                 LOG_INFO("  and 'command' is the command to be sent to that player.\n");
1507                                 return;
1508                         }
1509                 }
1510 #else
1511                 if (request)
1512                 {
1513                         LOG_INFO("stuffto command is not enabled on this server.\n");
1514                         return;
1515                 }
1516 #endif
1517 }
1518
1519 void GameCommand_trace(float request, float argc)
1520 {
1521         switch (request)
1522         {
1523                 case CMD_REQUEST_COMMAND:
1524                 {
1525                         entity e;
1526                         vector org, delta, start, end, p, q, q0, pos, vv, dv;
1527                         float i, f, safe, unsafe, dq, dqf;
1528
1529                         switch (argv(1))
1530                         {
1531                                 case "debug":
1532                                 {
1533                                         float hitcount = 0;
1534                                         LOG_INFO("TEST CASE. If this returns the runaway loop counter error, possibly everything is oaky.\n");
1535                                         float worst_endpos_bug = 0;
1536                                         for ( ; ; )
1537                                         {
1538                                                 org = world.mins;
1539                                                 delta = world.maxs - world.mins;
1540
1541                                                 start.x = org.x + random() * delta.x;
1542                                                 start.y = org.y + random() * delta.y;
1543                                                 start.z = org.z + random() * delta.z;
1544
1545                                                 end.x = org.x + random() * delta.x;
1546                                                 end.y = org.y + random() * delta.y;
1547                                                 end.z = org.z + random() * delta.z;
1548
1549                                                 start = stov(vtos(start));
1550                                                 end = stov(vtos(end));
1551
1552                                                 tracebox(start, PL_MIN, PL_MAX, end, MOVE_NOMONSTERS, world);
1553                                                 if (!trace_startsolid && trace_fraction < 1)
1554                                                 {
1555                                                         p = trace_endpos;
1556                                                         tracebox(p, PL_MIN, PL_MAX, p, MOVE_NOMONSTERS, world);
1557                                                         if (trace_startsolid)
1558                                                         {
1559                                                                 rint(42);  // do an engine breakpoint on VM_rint so you can get the trace that errnoeously returns startsolid
1560                                                                 tracebox(start, PL_MIN, PL_MAX, end, MOVE_NOMONSTERS, world);
1561
1562                                                                 // how much do we need to back off?
1563                                                                 safe = 1;
1564                                                                 unsafe = 0;
1565                                                                 for ( ; ; )
1566                                                                 {
1567                                                                         pos = p * (1 - (safe + unsafe) * 0.5) + start * ((safe + unsafe) * 0.5);
1568                                                                         tracebox(pos, PL_MIN, PL_MAX, pos, MOVE_NOMONSTERS, world);
1569                                                                         if (trace_startsolid)
1570                                                                         {
1571                                                                                 if ((safe + unsafe) * 0.5 == unsafe) break;
1572                                                                                 unsafe = (safe + unsafe) * 0.5;
1573                                                                         }
1574                                                                         else
1575                                                                         {
1576                                                                                 if ((safe + unsafe) * 0.5 == safe) break;
1577                                                                                 safe = (safe + unsafe) * 0.5;
1578                                                                         }
1579                                                                 }
1580
1581                                                                 LOG_INFO("safe distance to back off: ", ftos(safe * vlen(p - start)), "qu\n");
1582                                                                 LOG_INFO("unsafe distance to back off: ", ftos(unsafe * vlen(p - start)), "qu\n");
1583
1584                                                                 tracebox(p, PL_MIN + '0.1 0.1 0.1', PL_MAX - '0.1 0.1 0.1', p, MOVE_NOMONSTERS, world);
1585                                                                 if (trace_startsolid) LOG_INFO("trace_endpos much in solid when tracing from ", vtos(start), " to ", vtos(end), " endpos ", vtos(p), "\n");
1586                                                                 else LOG_INFO("trace_endpos just in solid when tracing from ", vtos(start), " to ", vtos(end), " endpos ", vtos(p), "\n");
1587                                                                 if (++hitcount >= 10) break;
1588                                                         }
1589                                                         else
1590                                                         {
1591                                                                 q0 = p;
1592                                                                 dq = 0;
1593                                                                 dqf = 1;
1594                                                                 for ( ; ; )
1595                                                                 {
1596                                                                         q = p + normalize(end - p) * (dq + dqf);
1597                                                                         if (q == q0) break;
1598                                                                         tracebox(p, PL_MIN, PL_MAX, q, MOVE_NOMONSTERS, world);
1599                                                                         if (trace_startsolid) error("THIS ONE cannot happen");
1600                                                                         if (trace_fraction > 0) dq += dqf * trace_fraction;
1601                                                                         dqf *= 0.5;
1602                                                                         q0 = q;
1603                                                                 }
1604                                                                 if (dq > worst_endpos_bug)
1605                                                                 {
1606                                                                         worst_endpos_bug = dq;
1607                                                                         LOG_INFO("trace_endpos still before solid when tracing from ", vtos(start), " to ", vtos(end), " endpos ", vtos(p), "\n");
1608                                                                         LOG_INFO("could go ", ftos(dq), " units further to ", vtos(q), "\n");
1609                                                                         if (++hitcount >= 10) break;
1610                                                                 }
1611                                                         }
1612                                                 }
1613                                         }
1614                                         return;
1615                                 }
1616
1617                                 case "debug2":
1618                                 {
1619                                         e = nextent(world);
1620                                         tracebox(e.origin + '0 0 32', e.mins, e.maxs, e.origin + '0 0 -1024', MOVE_NORMAL, e);
1621                                         vv = trace_endpos;
1622                                         if (trace_fraction == 1)
1623                                         {
1624                                                 LOG_INFO("not above ground, aborting\n");
1625                                                 return;
1626                                         }
1627                                         f = 0;
1628                                         for (i = 0; i < 100000; ++i)
1629                                         {
1630                                                 dv = randomvec();
1631                                                 if (dv.z > 0) dv = -1 * dv;
1632                                                 tracebox(vv, e.mins, e.maxs, vv + dv, MOVE_NORMAL, e);
1633                                                 if (trace_startsolid) LOG_INFO("bug 1\n");
1634                                                 if (trace_fraction == 1)
1635                                                 {
1636                                                         if (dv.z < f)
1637                                                         {
1638                                                                 LOG_INFO("bug 2: ", ftos(dv.x), " ", ftos(dv.y), " ", ftos(dv.z));
1639                                                                 LOG_INFO(" (", ftos(asin(dv.z / vlen(dv)) * 180 / M_PI), " degrees)\n");
1640                                                                 f = dv.z;
1641                                                         }
1642                                                 }
1643                                         }
1644                                         LOG_INFO("highest possible dist: ", ftos(f), "\n");
1645                                         return;
1646                                 }
1647
1648                                 case "walk":
1649                                 {
1650                                         if (argc == 4)
1651                                         {
1652                                                 e = nextent(world);
1653                                                 if (tracewalk(e, stov(argv(2)), e.mins, e.maxs, stov(argv(3)), MOVE_NORMAL)) LOG_INFO("can walk\n");
1654                                                 else LOG_INFO("cannot walk\n");
1655                                                 return;
1656                                         }
1657                                 }
1658
1659                                 case "showline":
1660                                 {
1661                                         if (argc == 4)
1662                                         {
1663                                                 vv = stov(argv(2));
1664                                                 dv = stov(argv(3));
1665                                                 traceline(vv, dv, MOVE_NORMAL, world);
1666                                                 trailparticles(world, particleeffectnum(EFFECT_TR_NEXUIZPLASMA), vv, trace_endpos);
1667                                                 trailparticles(world, particleeffectnum(EFFECT_TR_CRYLINKPLASMA), trace_endpos, dv);
1668                                                 return;
1669                                         }
1670                                 }
1671
1672                                         // no default case, just go straight to invalid
1673                         }
1674                 }
1675
1676                 default:
1677                         LOG_INFO("Incorrect parameters for ^2trace^7\n");
1678                 case CMD_REQUEST_USAGE:
1679                 {
1680                         LOG_INFO("\nUsage:^3 sv_cmd trace command (startpos endpos)\n");
1681                         LOG_INFO("  Full list of commands here: \"debug, debug2, walk, showline.\"\n");
1682                         LOG_INFO("See also: ^2bbox, gettaginfo^7\n");
1683                         return;
1684                 }
1685         }
1686 }
1687
1688 void GameCommand_unlockteams(float request)
1689 {
1690         switch (request)
1691         {
1692                 case CMD_REQUEST_COMMAND:
1693                 {
1694                         if (teamplay)
1695                         {
1696                                 lockteams = 0;
1697                                 bprint("^1The teams are now unlocked.\n");
1698                         }
1699                         else
1700                         {
1701                                 bprint("unlockteams command can only be used in a team-based gamemode.\n");
1702                         }
1703                         return;
1704                 }
1705
1706                 default:
1707                 case CMD_REQUEST_USAGE:
1708                 {
1709                         LOG_INFO("\nUsage:^3 sv_cmd unlockteams\n");
1710                         LOG_INFO("  No arguments required.\n");
1711                         LOG_INFO("See also: ^2lockteams^7\n");
1712                         return;
1713                 }
1714         }
1715 }
1716
1717 void GameCommand_warp(float request, float argc)
1718 {
1719         switch (request)
1720         {
1721                 case CMD_REQUEST_COMMAND:
1722                 {
1723                         if (autocvar_g_campaign)
1724                         {
1725                                 if (argc >= 2)
1726                                 {
1727                                         CampaignLevelWarp(stof(argv(1)));
1728                                         LOG_INFO("Successfully warped to campaign level ", stof(argv(1)), ".\n");
1729                                 }
1730                                 else
1731                                 {
1732                                         CampaignLevelWarp(-1);
1733                                         LOG_INFO("Successfully warped to next campaign level.\n");
1734                                 }
1735                         }
1736                         else
1737                         {
1738                                 LOG_INFO("Not in campaign, can't level warp\n");
1739                         }
1740                         return;
1741                 }
1742
1743                 default:
1744                 case CMD_REQUEST_USAGE:
1745                 {
1746                         LOG_INFO("\nUsage:^3 sv_cmd warp [level]\n");
1747                         LOG_INFO("  'level' is the level to change campaign mode to.\n");
1748                         LOG_INFO("  if 'level' is not provided it will change to the next level.\n");
1749                         return;
1750                 }
1751         }
1752 }
1753
1754 /* use this when creating a new command, making sure to place it in alphabetical order... also,
1755 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
1756 void GameCommand_(float request)
1757 {
1758     switch(request)
1759     {
1760         case CMD_REQUEST_COMMAND:
1761         {
1762
1763             return;
1764         }
1765
1766         default:
1767         case CMD_REQUEST_USAGE:
1768         {
1769             print("\nUsage:^3 sv_cmd \n");
1770             print("  No arguments required.\n");
1771             return;
1772         }
1773     }
1774 }
1775 */
1776
1777
1778 // ==================================
1779 //  Macro system for server commands
1780 // ==================================
1781
1782 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
1783 #define SERVER_COMMANDS(request, arguments, command) \
1784         SERVER_COMMAND("adminmsg", GameCommand_adminmsg(request, arguments), "Send an admin message to a client directly") \
1785         SERVER_COMMAND("allready", GameCommand_allready(request), "Restart the server and reset the players") \
1786         SERVER_COMMAND("allspec", GameCommand_allspec(request, arguments), "Force all players to spectate") \
1787         SERVER_COMMAND("anticheat", GameCommand_anticheat(request, arguments), "Create an anticheat report for a client") \
1788         SERVER_COMMAND("animbench", GameCommand_animbench(request, arguments), "Benchmark model animation (LAGS)") \
1789         SERVER_COMMAND("bbox", GameCommand_bbox(request), "Print detailed information about world size") \
1790         SERVER_COMMAND("bot_cmd", GameCommand_bot_cmd(request, arguments, command), "Control and send commands to bots") \
1791         SERVER_COMMAND("cointoss", GameCommand_cointoss(request, arguments), "Flip a virtual coin and give random result") \
1792         SERVER_COMMAND("database", GameCommand_database(request, arguments), "Extra controls of the serverprogs database") \
1793         SERVER_COMMAND("defer_clear", GameCommand_defer_clear(request, arguments), "Clear all queued defer commands for a specific client") \
1794         SERVER_COMMAND("defer_clear_all", GameCommand_defer_clear_all(request), "Clear all queued defer commands for all clients") \
1795         SERVER_COMMAND("delrec", GameCommand_delrec(request, arguments), "Delete race time record for a map") \
1796         SERVER_COMMAND("effectindexdump", GameCommand_effectindexdump(request), "Dump list of effects from code and effectinfo.txt") \
1797         SERVER_COMMAND("extendmatchtime", GameCommand_extendmatchtime(request), "Increase the timelimit value incrementally") \
1798         SERVER_COMMAND("find", GameCommand_find(request, arguments), "Search through entities for matching classname") \
1799         SERVER_COMMAND("gametype", GameCommand_gametype(request, arguments), "Simple command to change the active gametype") \
1800         SERVER_COMMAND("gettaginfo", GameCommand_gettaginfo(request, arguments), "Get specific information about a weapon model") \
1801         SERVER_COMMAND("gotomap", GameCommand_gotomap(request, arguments), "Simple command to switch to another map") \
1802         SERVER_COMMAND("lockteams", GameCommand_lockteams(request), "Disable the ability for players to switch or enter teams") \
1803         SERVER_COMMAND("make_mapinfo", GameCommand_make_mapinfo(request), "Automatically rebuild mapinfo files") \
1804         SERVER_COMMAND("moveplayer", GameCommand_moveplayer(request, arguments), "Change the team/status of a player") \
1805         SERVER_COMMAND("nospectators", GameCommand_nospectators(request), "Automatically remove spectators from a match") \
1806         SERVER_COMMAND("playerdemo", GameCommand_playerdemo(request, arguments), "Control the ability to save demos of players") \
1807         SERVER_COMMAND("printstats", GameCommand_printstats(request), "Dump eventlog player stats and other score information") \
1808         SERVER_COMMAND("radarmap", GameCommand_radarmap(request, arguments), "Generate a radar image of the map") \
1809         SERVER_COMMAND("reducematchtime", GameCommand_reducematchtime(request), "Decrease the timelimit value incrementally") \
1810         SERVER_COMMAND("setbots", GameCommand_setbots(request, arguments), "Adjust how many bots are in the match") \
1811         SERVER_COMMAND("shuffleteams", GameCommand_shuffleteams(request), "Randomly move players to different teams") \
1812         SERVER_COMMAND("stuffto", GameCommand_stuffto(request, arguments), "Send a command to be executed on a client") \
1813         SERVER_COMMAND("trace", GameCommand_trace(request, arguments), "Various debugging tools with tracing") \
1814         SERVER_COMMAND("unlockteams", GameCommand_unlockteams(request), "Enable the ability for players to switch or enter teams") \
1815         SERVER_COMMAND("warp", GameCommand_warp(request, arguments), "Choose different level in campaign") \
1816         /* nothing */
1817
1818 void GameCommand_macro_help()
1819 {
1820         #define SERVER_COMMAND(name, function, description) \
1821                 { LOG_INFO("  ^2", name, "^7: ", description, "\n"); }
1822
1823         SERVER_COMMANDS(0, 0, "");
1824 #undef SERVER_COMMAND
1825 }
1826
1827 float GameCommand_macro_command(float argc, string command)
1828 {
1829         #define SERVER_COMMAND(name, function, description) \
1830                 { if (name == strtolower(argv(0))) { function; return true; } }
1831
1832         SERVER_COMMANDS(CMD_REQUEST_COMMAND, argc, command);
1833 #undef SERVER_COMMAND
1834
1835         return false;
1836 }
1837
1838 float GameCommand_macro_usage(float argc)
1839 {
1840         #define SERVER_COMMAND(name, function, description) \
1841                 { if (name == strtolower(argv(1))) { function; return true; } }
1842
1843         SERVER_COMMANDS(CMD_REQUEST_USAGE, argc, "");
1844 #undef SERVER_COMMAND
1845
1846         return false;
1847 }
1848
1849 void GameCommand_macro_write_aliases(float fh)
1850 {
1851         #define SERVER_COMMAND(name, function, description) \
1852                 { CMD_Write_Alias("qc_cmd_sv", name, description); }
1853
1854         SERVER_COMMANDS(0, 0, "");
1855 #undef SERVER_COMMAND
1856 }
1857
1858
1859 // =========================================
1860 //  Main Function Called By Engine (sv_cmd)
1861 // =========================================
1862 // If this function exists, game code handles gamecommand instead of the engine code.
1863
1864 void GameCommand(string command)
1865 {
1866         float argc = tokenize_console(command);
1867
1868         // Guide for working with argc arguments by example:
1869         // argc:   1    - 2      - 3     - 4
1870         // argv:   0    - 1      - 2     - 3
1871         // cmd     vote - master - login - password
1872
1873         if (strtolower(argv(0)) == "help")
1874         {
1875                 if (argc == 1)
1876                 {
1877                         LOG_INFO("\nServer console commands:\n");
1878                         GameCommand_macro_help();
1879
1880                         LOG_INFO("\nBanning commands:\n");
1881                         BanCommand_macro_help();
1882
1883                         LOG_INFO("\nCommon networked commands:\n");
1884                         CommonCommand_macro_help(world);
1885
1886                         LOG_INFO("\nGeneric commands shared by all programs:\n");
1887                         GenericCommand_macro_help();
1888
1889                         LOG_INFO("\nUsage:^3 sv_cmd COMMAND...^7, where possible commands are listed above.\n");
1890                         LOG_INFO("For help about a specific command, type sv_cmd help COMMAND\n");
1891
1892                         return;
1893                 }
1894                 else if (BanCommand_macro_usage(argc))  // Instead of trying to call a command, we're going to see detailed information about it
1895                 {
1896                         return;
1897                 }
1898                 else if (CommonCommand_macro_usage(argc, world))  // same here, but for common commands instead
1899                 {
1900                         return;
1901                 }
1902                 else if (GenericCommand_macro_usage(argc))  // same here, but for generic commands instead
1903                 {
1904                         return;
1905                 }
1906                 else if (GameCommand_macro_usage(argc))  // finally try for normal commands too
1907                 {
1908                         return;
1909                 }
1910         }
1911         else if (MUTATOR_CALLHOOK(SV_ParseServerCommand, strtolower(argv(0)), argc, command))
1912         {
1913                 return;  // handled by a mutator
1914         }
1915         else if (BanCommand(command))
1916         {
1917                 return;  // handled by server/command/ipban.qc
1918         }
1919         else if (CommonCommand_macro_command(argc, world, command))
1920         {
1921                 return;  // handled by server/command/common.qc
1922         }
1923         else if (GenericCommand(command))
1924         {
1925                 return;                                        // handled by common/command/generic.qc
1926         }
1927         else if (GameCommand_macro_command(argc, command)) // continue as usual and scan for normal commands
1928         {
1929                 return;                                        // handled by one of the above GameCommand_* functions
1930         }
1931
1932         // nothing above caught the command, must be invalid
1933         LOG_INFO(((command != "") ? strcat("Unknown server command \"", command, "\"") : "No command provided"), ". For a list of supported commands, try sv_cmd help.\n");
1934 }