2 #include <common/command/_mod.qh>
5 #include "../scores.qh"
7 #include <common/monsters/_mod.qh>
8 #include <common/notifications/all.qh>
9 #include <lib/warpzone/common.qh>
12 // ====================================================
13 // Shared code for server commands, written by Samual
14 // Last updated: December 27th, 2011
15 // ====================================================
17 // select the proper prefix for usage and other messages
18 string GetCommandPrefix(entity caller)
20 if (caller) return "cmd";
24 // if client return player nickname, or if server return admin nickname
25 string GetCallerName(entity caller)
27 if (caller) return caller.netname;
28 else return admin_name(); // ((autocvar_sv_adminnick != "") ? autocvar_sv_adminnick : autocvar_hostname);
31 // verify that the client provided is acceptable for kicking
32 float VerifyKickableEntity(entity client)
34 if (!IS_REAL_CLIENT(client)) return CLIENT_NOT_REAL;
35 return CLIENT_ACCEPTABLE;
38 // verify that the client provided is acceptable for use
39 float VerifyClientEntity(entity client, float must_be_real, float must_be_bots)
41 if (!IS_CLIENT(client)) return CLIENT_DOESNT_EXIST;
42 else if (must_be_real && !IS_REAL_CLIENT(client)) return CLIENT_NOT_REAL;
43 else if (must_be_bots && !IS_BOT_CLIENT(client)) return CLIENT_NOT_BOT;
45 return CLIENT_ACCEPTABLE;
48 // if the client is not acceptable, return a string to be used for error messages
49 string GetClientErrorString_color(float clienterror, string original_input, string col)
53 case CLIENT_DOESNT_EXIST:
54 { return strcat(col, "Client '", original_input, col, "' doesn't exist");
57 { return strcat(col, "Client '", original_input, col, "' is not real");
60 { return strcat(col, "Client '", original_input, col, "' is not a bot");
63 { return "Incorrect usage of GetClientErrorString";
68 // is this entity number even in the possible range of entities?
69 float VerifyClientNumber(float tmp_number)
71 if ((tmp_number < 1) || (tmp_number > maxclients)) return false;
75 entity GetIndexedEntity(float argc, float start_index)
78 float tmp_number, index;
85 if (argc > start_index)
87 if (substring(argv(index), 0, 1) == "#")
89 tmp_string = substring(argv(index), 1, -1);
92 if (tmp_string != "") // is it all one token? like #1
94 tmp_number = stof(tmp_string);
96 else if (argc > index) // no, it's two tokens? # 1
98 tmp_number = stof(argv(index));
106 else // maybe it's ONLY a number?
108 tmp_number = stof(argv(index));
112 if (VerifyClientNumber(tmp_number))
114 selection = edict_num(tmp_number); // yes, it was a number
116 else // no, maybe it's a name?
118 FOREACH_CLIENT(true, LAMBDA(
119 if(strdecolorize(it.netname) == strdecolorize(argv(start_index)))
122 break; // no reason to keep looking
126 index = (start_index + 1);
131 // print(strcat("start_index: ", ftos(start_index), ", next_token: ", ftos(next_token), ", edict: ", ftos(num_for_edict(selection)), ".\n"));
135 // find a player which matches the input string, and return their entity
136 entity GetFilteredEntity(string input)
141 if (substring(input, 0, 1) == "#") tmp_number = stof(substring(input, 1, -1));
142 else tmp_number = stof(input);
144 if (VerifyClientNumber(tmp_number))
146 selection = edict_num(tmp_number);
151 FOREACH_CLIENT(true, LAMBDA(
152 if(strdecolorize(it.netname) == strdecolorize(input))
155 break; // no reason to keep looking
163 // same thing, but instead return their edict number
164 float GetFilteredNumber(string input)
166 entity selection = GetFilteredEntity(input);
169 output = etof(selection);
174 // switch between sprint and print depending on whether the receiver is the server or a player
175 void print_to(entity to, string input)
177 if (to) sprint(to, strcat(input, "\n"));
178 else LOG_INFO(input, "\n");
181 // ==========================================
182 // Supporting functions for common commands
183 // ==========================================
185 // used by CommonCommand_timeout() and CommonCommand_timein() to handle game pausing and messaging and such.
186 void timeout_handler_reset(entity this)
188 timeout_caller = NULL;
190 timeout_leadtime = 0;
195 void timeout_handler_think(entity this)
197 switch (timeout_status)
201 if (timeout_time > 0) // countdown is still going
203 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_TIMEOUT_ENDING, timeout_time);
205 if (timeout_time == autocvar_sv_timeout_resumetime) // play a warning sound when only <sv_timeout_resumetime> seconds are left
206 Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_PREPARE);
208 this.nextthink = time + TIMEOUT_SLOWMO_VALUE; // think again in one second
209 timeout_time -= 1; // decrease the time counter
211 else // time to end the timeout
213 Kill_Notification(NOTIF_ALL, NULL, MSG_CENTER, CPID_TIMEIN);
214 timeout_status = TIMEOUT_INACTIVE;
216 // reset the slowmo value back to normal
217 cvar_set("slowmo", ftos(orig_slowmo));
219 // unlock the view for players so they can move around again
220 FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it), LAMBDA(
224 timeout_handler_reset(this);
230 case TIMEOUT_LEADTIME:
232 if (timeout_leadtime > 0) // countdown is still going
234 Send_Notification(NOTIF_ALL, NULL, MSG_CENTER, CENTER_TIMEOUT_BEGINNING, timeout_leadtime);
236 this.nextthink = time + 1; // think again in one second
237 timeout_leadtime -= 1; // decrease the time counter
239 else // time to begin the timeout
241 timeout_status = TIMEOUT_ACTIVE;
243 // set the slowmo value to the timeout default slowmo value
244 cvar_set("slowmo", ftos(TIMEOUT_SLOWMO_VALUE));
246 // reset all the flood variables
247 FOREACH_CLIENT(true, LAMBDA(
248 it.nickspamcount = it.nickspamtime = it.floodcontrol_chat =
249 it.floodcontrol_chatteam = it.floodcontrol_chattell =
250 it.floodcontrol_voice = it.floodcontrol_voiceteam = 0;
253 // copy .v_angle to .lastV_angle for every player in order to fix their view during pause (see PlayerPreThink)
254 FOREACH_CLIENT(IS_PLAYER(it) && IS_REAL_CLIENT(it), LAMBDA(
255 it.lastV_angle = it.v_angle;
258 this.nextthink = time; // think again next frame to handle it under TIMEOUT_ACTIVE code
265 case TIMEOUT_INACTIVE:
268 timeout_handler_reset(this);
275 // ===================================================
276 // Common commands used in both sv_cmd.qc and cmd.qc
277 // ===================================================
279 void CommonCommand_cvar_changes(float request, entity caller)
283 case CMD_REQUEST_COMMAND:
285 print_to(caller, cvar_changes);
286 return; // never fall through to usage
290 case CMD_REQUEST_USAGE:
292 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " cvar_changes"));
293 print_to(caller, " No arguments required.");
294 print_to(caller, "See also: ^2cvar_purechanges^7");
300 void CommonCommand_cvar_purechanges(float request, entity caller)
304 case CMD_REQUEST_COMMAND:
306 print_to(caller, cvar_purechanges);
307 return; // never fall through to usage
311 case CMD_REQUEST_USAGE:
313 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " cvar_purechanges"));
314 print_to(caller, " No arguments required.");
315 print_to(caller, "See also: ^2cvar_changes^7");
321 void CommonCommand_editmob(int request, entity caller, int argc)
325 case CMD_REQUEST_COMMAND:
327 if (autocvar_g_campaign) { print_to(caller, "Monster editing is disabled in singleplayer"); return; }
328 // no checks for g_monsters here, as it may be toggled mid match which existing monsters
332 makevectors(caller.v_angle);
333 WarpZone_TraceLine(caller.origin + caller.view_ofs, caller.origin + caller.view_ofs + v_forward * 100, MOVE_NORMAL, caller);
336 entity mon = trace_ent;
337 bool is_visible = IS_MONSTER(mon);
338 string argument = argv(2);
344 if (!caller) { print_to(caller, "Only players can edit monsters"); return; }
345 if (!argument) break; // escape to usage
346 if (!autocvar_g_monsters_edit) { print_to(caller, "Monster editing is disabled"); return; }
347 if (mon.realowner != caller && autocvar_g_monsters_edit < 2) { print_to(caller, "This monster does not belong to you"); return; }
348 if (!is_visible) { print_to(caller, "You must look at your monster to edit it"); return; }
350 string mon_oldname = mon.monster_name;
352 mon.monster_name = argument;
353 if (mon.sprite) WaypointSprite_UpdateSprites(mon.sprite, WP_Monster, WP_Null, WP_Null);
354 print_to(caller, sprintf("Your pet '%s' is now known as '%s'", mon_oldname, mon.monster_name));
359 if (!caller) { print_to(caller, "Only players can spawn monsters"); return; }
360 if (!argv(2)) break; // escape to usage
362 int moveflag, tmp_moncount = 0;
363 string arg_lower = strtolower(argument);
364 moveflag = (argv(3)) ? stof(argv(3)) : 1; // follow owner if not defined
366 if (arg_lower == "list") { print_to(caller, monsterlist_reply); return; }
368 IL_EACH(g_monsters, it.realowner == caller,
373 if (!autocvar_g_monsters) { print_to(caller, "Monsters are disabled"); return; }
374 if (autocvar_g_monsters_max <= 0 || autocvar_g_monsters_max_perplayer <= 0) { print_to(caller, "Monster spawning is disabled"); return; }
375 if (!IS_PLAYER(caller)) { print_to(caller, "You must be playing to spawn a monster"); return; }
376 if (MUTATOR_CALLHOOK(AllowMobSpawning, caller)) { print_to(caller, M_ARGV(1, string)); return; }
377 if (caller.vehicle) { print_to(caller, "You can't spawn monsters while driving a vehicle"); return; }
378 if (STAT(FROZEN, caller)) { print_to(caller, "You can't spawn monsters while frozen"); return; }
379 if (IS_DEAD(caller)) { print_to(caller, "You can't spawn monsters while dead"); return; }
380 if (tmp_moncount >= autocvar_g_monsters_max) { print_to(caller, "The maximum monster count has been reached"); return; }
381 if (tmp_moncount >= autocvar_g_monsters_max_perplayer) { print_to(caller, "You can't spawn any more monsters"); return; }
384 FOREACH(Monsters, it != MON_Null && it.netname == arg_lower,
390 if (!found && arg_lower != "random") { print_to(caller, "Invalid monster"); return; }
393 WarpZone_TraceBox(CENTER_OR_VIEWOFS(caller), caller.mins, caller.maxs, CENTER_OR_VIEWOFS(caller) + v_forward * 150, true, caller);
394 mon = spawnmonster(spawn(), arg_lower, 0, caller, caller, trace_endpos, false, false, moveflag);
395 print_to(caller, strcat("Spawned ", mon.monster_name));
400 if (!caller) { print_to(caller, "Only players can kill monsters"); return; }
401 if (mon.realowner != caller && autocvar_g_monsters_edit < 2) { print_to(caller, "This monster does not belong to you"); return; }
402 if (!is_visible) { print_to(caller, "You must look at your monster to edit it"); return; }
404 Damage(mon, NULL, NULL, mon.health + mon.max_health + 200, DEATH_KILL.m_id, mon.origin, '0 0 0');
405 print_to(caller, strcat("Your pet '", mon.monster_name, "' has been brutally mutilated"));
410 if (!caller) { print_to(caller, "Only players can edit monsters"); return; }
411 if (!argument) break; // escape to usage
412 if (!autocvar_g_monsters_edit) { print_to(caller, "Monster editing is disabled"); return; }
413 if (!is_visible) { print_to(caller, "You must look at your monster to edit it"); return; }
414 if (mon.realowner != caller && autocvar_g_monsters_edit < 2) { print_to(caller, "This monster does not belong to you"); return; }
415 if (mon.monsterid == MON_MAGE.monsterid) { print_to(caller, "Mage skins can't be changed"); return; } // TODO
417 mon.skin = stof(argument);
418 print_to(caller, strcat("Monster skin successfully changed to ", ftos(mon.skin)));
423 if (!caller) { print_to(caller, "Only players can edit monsters"); return; }
424 if (!argument) break; // escape to usage
425 if (!autocvar_g_monsters_edit) { print_to(caller, "Monster editing is disabled"); return; }
426 if (!is_visible) { print_to(caller, "You must look at your monster to edit it"); return; }
427 if (mon.realowner != caller && autocvar_g_monsters_edit < 2) { print_to(caller, "This monster does not belong to you"); return; }
429 mon.monster_moveflags = stof(argument);
430 print_to(caller, strcat("Monster move target successfully changed to ", ftos(mon.monster_moveflags)));
435 if (caller) { print_to(caller, "This command is not available to players"); return; }
436 if (MUTATOR_CALLHOOK(AllowMobButcher)) { LOG_INFO(M_ARGV(0, string), "\n"); return; }
438 int tmp_remcount = 0;
440 IL_EACH(g_monsters, true,
445 IL_CLEAR(g_monsters);
447 monsters_total = monsters_killed = totalspawned = 0;
449 print_to(caller, (tmp_remcount) ? sprintf("Killed %d monster%s", tmp_remcount, (tmp_remcount == 1) ? "" : "s") : "No monsters to kill");
456 case CMD_REQUEST_USAGE:
458 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " editmob command [arguments]"));
459 print_to(caller, " Where 'command' can be butcher spawn skin movetarget kill name");
460 print_to(caller, " spawn, skin, movetarget and name require 'arguments'");
461 print_to(caller, " spawn also takes arguments list and random");
462 print_to(caller, " Monster will follow owner if third argument of spawn command is not defined");
468 void CommonCommand_info(float request, entity caller, float argc)
472 case CMD_REQUEST_COMMAND:
474 string command = builtin_cvar_string(strcat("sv_info_", argv(1)));
476 if (command) wordwrap_sprint(caller, command, 1000);
477 else print_to(caller, "ERROR: unsupported info command");
479 return; // never fall through to usage
483 case CMD_REQUEST_USAGE:
485 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " info request"));
486 print_to(caller, " Where 'request' is the suffixed string appended onto the request for cvar.");
492 void CommonCommand_ladder(float request, entity caller)
496 case CMD_REQUEST_COMMAND:
498 print_to(caller, ladder_reply);
499 return; // never fall through to usage
503 case CMD_REQUEST_USAGE:
505 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " ladder"));
506 print_to(caller, " No arguments required.");
512 void CommonCommand_lsmaps(float request, entity caller)
516 case CMD_REQUEST_COMMAND:
518 print_to(caller, lsmaps_reply);
519 return; // never fall through to usage
523 case CMD_REQUEST_USAGE:
525 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " lsmaps"));
526 print_to(caller, " No arguments required.");
532 void CommonCommand_printmaplist(float request, entity caller)
536 case CMD_REQUEST_COMMAND:
538 print_to(caller, maplist_reply);
539 return; // never fall through to usage
543 case CMD_REQUEST_USAGE:
545 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " printmaplist"));
546 print_to(caller, " No arguments required.");
552 void CommonCommand_rankings(float request, entity caller)
556 case CMD_REQUEST_COMMAND:
558 print_to(caller, rankings_reply);
559 return; // never fall through to usage
563 case CMD_REQUEST_USAGE:
565 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " rankings"));
566 print_to(caller, " No arguments required.");
572 void CommonCommand_records(float request, entity caller)
576 case CMD_REQUEST_COMMAND:
578 for (int i = 0; i < 10; ++i)
579 if (records_reply[i] != "") print_to(caller, records_reply[i]);
581 return; // never fall through to usage
585 case CMD_REQUEST_USAGE:
587 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " records"));
588 print_to(caller, " No arguments required.");
594 void CommonCommand_teamstatus(float request, entity caller)
598 case CMD_REQUEST_COMMAND:
600 Score_NicePrint(caller);
601 return; // never fall through to usage
605 case CMD_REQUEST_USAGE:
607 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " teamstatus"));
608 print_to(caller, " No arguments required.");
614 void CommonCommand_time(float request, entity caller)
618 case CMD_REQUEST_COMMAND:
620 print_to(caller, strcat("time = ", ftos(time)));
621 print_to(caller, strcat("frame start = ", ftos(gettime(GETTIME_FRAMESTART))));
622 print_to(caller, strcat("realtime = ", ftos(gettime(GETTIME_REALTIME))));
623 print_to(caller, strcat("hires = ", ftos(gettime(GETTIME_HIRES))));
624 print_to(caller, strcat("uptime = ", ftos(gettime(GETTIME_UPTIME))));
625 print_to(caller, strcat("localtime = ", strftime(true, "%a %b %e %H:%M:%S %Z %Y")));
626 print_to(caller, strcat("gmtime = ", strftime(false, "%a %b %e %H:%M:%S %Z %Y")));
631 case CMD_REQUEST_USAGE:
633 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " time"));
634 print_to(caller, " No arguments required.");
640 void CommonCommand_timein(float request, entity caller)
644 case CMD_REQUEST_COMMAND:
646 if (!caller || autocvar_sv_timeout)
648 if (!timeout_status) { print_to(caller, "^7Error: There is no active timeout called."); }
649 else if (caller && (caller != timeout_caller))
651 print_to(caller, "^7Error: You are not allowed to stop the active timeout.");
654 else // everything should be okay, continue aborting timeout
656 switch (timeout_status)
658 case TIMEOUT_LEADTIME:
660 timeout_status = TIMEOUT_INACTIVE;
662 timeout_handler.nextthink = time; // timeout_handler has to take care of it immediately
663 bprint(strcat("^7The timeout was aborted by ", GetCallerName(caller), " !\n"));
669 timeout_time = autocvar_sv_timeout_resumetime;
670 timeout_handler.nextthink = time; // timeout_handler has to take care of it immediately
671 bprint(strcat("^1Attention: ^7", GetCallerName(caller), " resumed the game! Prepare for battle!\n"));
675 default: LOG_TRACE("timeout status was inactive, but this code was executed anyway?");
680 else { print_to(caller, "^1Timeins are not allowed to be called, enable them with sv_timeout 1.\n"); }
682 return; // never fall through to usage
686 case CMD_REQUEST_USAGE:
688 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " timein"));
689 print_to(caller, " No arguments required.");
695 void CommonCommand_timeout(float request, entity caller) // DEAR GOD THIS COMMAND IS TERRIBLE.
699 case CMD_REQUEST_COMMAND:
701 if (!caller || autocvar_sv_timeout)
703 float last_possible_timeout = ((autocvar_timelimit * 60) - autocvar_sv_timeout_leadtime - 1);
705 if (timeout_status) { print_to(caller, "^7Error: A timeout is already active."); }
706 else if (vote_called)
708 print_to(caller, "^7Error: You can not call a timeout while a vote is active.");
710 else if (warmup_stage && !g_warmup_allow_timeout)
712 print_to(caller, "^7Error: You can not call a timeout in warmup-stage.");
714 else if (time < game_starttime)
716 print_to(caller, "^7Error: You can not call a timeout while the map is being restarted.");
718 else if (caller && (caller.allowed_timeouts < 1))
720 print_to(caller, "^7Error: You already used all your timeout calls for this map.");
722 else if (caller && !IS_PLAYER(caller))
724 print_to(caller, "^7Error: You must be a player to call a timeout.");
726 else if ((autocvar_timelimit) && (last_possible_timeout < time - game_starttime))
728 print_to(caller, "^7Error: It is too late to call a timeout now!");
731 else // everything should be okay, proceed with starting the timeout
733 if (caller) caller.allowed_timeouts -= 1;
734 // write a bprint who started the timeout (and how many they have left)
735 bprint(GetCallerName(caller), " ^7called a timeout", (caller ? strcat(" (", ftos(caller.allowed_timeouts), " timeout(s) left)") : ""), "!\n");
737 timeout_status = TIMEOUT_LEADTIME;
738 timeout_caller = caller;
739 timeout_time = autocvar_sv_timeout_length;
740 timeout_leadtime = autocvar_sv_timeout_leadtime;
742 timeout_handler = spawn();
743 setthink(timeout_handler, timeout_handler_think);
744 timeout_handler.nextthink = time; // always let the entity think asap
746 Send_Notification(NOTIF_ALL, NULL, MSG_ANNCE, ANNCE_TIMEOUT);
749 else { print_to(caller, "^1Timeouts are not allowed to be called, enable them with sv_timeout 1.\n"); }
751 return; // never fall through to usage
755 case CMD_REQUEST_USAGE:
757 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " timeout"));
758 print_to(caller, " No arguments required.");
764 void CommonCommand_who(float request, entity caller, float argc)
768 case CMD_REQUEST_COMMAND:
770 float total_listed_players, is_bot;
772 float privacy = (caller && autocvar_sv_status_privacy);
773 string separator = strreplace("%", " ", strcat((argv(1) ? argv(1) : " "), "^7"));
774 string tmp_netaddress, tmp_crypto_idfp;
776 print_to(caller, strcat("List of client information", (privacy ? " (some data is hidden for privacy)" : ""), ":"));
777 print_to(caller, sprintf(strreplace(" ", separator, " %-4s %-20s %-5s %-3s %-9s %-16s %s "),
778 "ent", "nickname", "ping", "pl", "time", "ip", "crypto_id"));
780 total_listed_players = 0;
781 FOREACH_CLIENT(true, LAMBDA(
782 is_bot = (IS_BOT_CLIENT(it));
786 tmp_netaddress = "null/botclient";
787 tmp_crypto_idfp = "null/botclient";
791 tmp_netaddress = "hidden";
792 tmp_crypto_idfp = "hidden";
796 tmp_netaddress = it.netaddress;
797 tmp_crypto_idfp = it.crypto_idfp;
800 print_to(caller, sprintf(strreplace(" ", separator, " #%-3d %-20.20s %-5d %-3d %-9s %-16s %s "),
805 process_time(1, time - it.jointime),
809 ++total_listed_players;
812 print_to(caller, strcat("Finished listing ", ftos(total_listed_players), " client(s) out of ", ftos(maxclients), " slots."));
814 return; // never fall through to usage
818 case CMD_REQUEST_USAGE:
820 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " who [separator]"));
821 print_to(caller, " Where 'separator' is the optional string to separate the values with, default is a space.");
827 /* use this when creating a new command, making sure to place it in alphabetical order... also,
828 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
829 void CommonCommand_(float request, entity caller)
833 case CMD_REQUEST_COMMAND:
836 return; // never fall through to usage
840 case CMD_REQUEST_USAGE:
842 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " "));
843 print_to(caller, " No arguments required.");