1 // ====================================================
2 // Shared code for server commands, written by Samual
3 // Last updated: December 27th, 2011
4 // ====================================================
6 // select the proper prefix for usage and other messages
7 string GetCommandPrefix(entity caller)
15 // if client return player nickname, or if server return admin nickname
16 string GetCallerName(entity caller)
19 return caller.netname;
21 return admin_name(); //((autocvar_sv_adminnick != "") ? autocvar_sv_adminnick : autocvar_hostname);
24 // verify that the client provided is acceptable for use
25 float VerifyClientEntity(entity client, float must_be_real, float must_be_bots)
27 if not(client.flags & FL_CLIENT)
28 return CLIENT_DOESNT_EXIST;
29 else if(must_be_real && (clienttype(client) != CLIENTTYPE_REAL))
30 return CLIENT_NOT_REAL;
31 else if(must_be_bots && (clienttype(client) != CLIENTTYPE_BOT))
32 return CLIENT_NOT_BOT;
34 return CLIENT_ACCEPTABLE;
37 // if the client is not acceptable, return a string to be used for error messages
38 string GetClientErrorString(float clienterror, string original_input)
42 case CLIENT_DOESNT_EXIST: { return strcat("Client '", original_input, "' doesn't exist"); }
43 case CLIENT_NOT_REAL: { return strcat("Client '", original_input, "' is not real"); }
44 case CLIENT_NOT_BOT: { return strcat("Client '", original_input, "' is not a bot"); }
45 default: { return "Incorrect usage of GetClientErrorString"; }
49 // is this entity number even in the possible range of entities?
50 float VerifyClientNumber(float tmp_number)
52 if((tmp_number < 1) || (tmp_number > maxclients))
58 entity GetIndexedEntity(float argc, float start_index)
60 entity tmp_player, selection;
61 float tmp_number, index;
68 if(argc > start_index)
70 if(substring(argv(index), 0, 1) == "#")
72 tmp_string = substring(argv(index), 1, -1);
75 if(tmp_string != "") // is it all one token? like #1
77 tmp_number = stof(tmp_string);
79 else if(argc > index) // no, it's two tokens? # 1
81 tmp_number = stof(argv(index));
87 else // maybe it's ONLY a number?
89 tmp_number = stof(argv(index));
93 if(VerifyClientNumber(tmp_number))
95 selection = edict_num(tmp_number); // yes, it was a number
97 else // no, maybe it's a name?
99 FOR_EACH_CLIENT(tmp_player)
100 if (strdecolorize(tmp_player.netname) == strdecolorize(argv(start_index)))
101 selection = tmp_player;
103 index = (start_index + 1);
108 //print(strcat("start_index: ", ftos(start_index), ", next_token: ", ftos(next_token), ", edict: ", ftos(num_for_edict(selection)), ".\n"));
112 // find a player which matches the input string, and return their entity
113 entity GetFilteredEntity(string input)
115 entity tmp_player, selection;
118 if(substring(input, 0, 1) == "#")
119 tmp_number = stof(substring(input, 1, -1));
121 tmp_number = stof(input);
123 if(VerifyClientNumber(tmp_number))
125 selection = edict_num(tmp_number);
130 FOR_EACH_CLIENT(tmp_player)
131 if (strdecolorize(tmp_player.netname) == strdecolorize(input))
132 selection = tmp_player;
138 // same thing, but instead return their edict number
139 float GetFilteredNumber(string input)
141 entity selection = GetFilteredEntity(input);
144 output = num_for_edict(selection);
149 // switch between sprint and print depending on whether the receiver is the server or a player
150 void print_to(entity to, string input)
153 sprint(to, strcat(input, "\n"));
158 // ==========================================
159 // Supporting functions for common commands
160 // ==========================================
162 // used by CommonCommand_timeout() and CommonCommand_timein() to handle game pausing and messaging and such.
163 void timeout_handler_reset()
165 timeout_caller = world;
167 timeout_leadtime = 0;
172 void timeout_handler_think()
176 switch(timeout_status)
180 if(timeout_time > 0) // countdown is still going
182 Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_TIMEOUT_ENDING, timeout_time);
184 if(timeout_time == autocvar_sv_timeout_resumetime) // play a warning sound when only <sv_timeout_resumetime> seconds are left
185 Send_Notification(NOTIF_ALL, world, MSG_ANNCE, ANNCE_PREPARE);
187 self.nextthink = time + TIMEOUT_SLOWMO_VALUE; // think again in one second
188 timeout_time -= 1; // decrease the time counter
190 else // time to end the timeout
192 timeout_status = TIMEOUT_INACTIVE;
194 // reset the slowmo value back to normal
195 cvar_set("slowmo", ftos(orig_slowmo));
197 // unlock the view for players so they can move around again
198 FOR_EACH_REALPLAYER(tmp_player)
199 tmp_player.fixangle = FALSE;
201 timeout_handler_reset();
207 case TIMEOUT_LEADTIME:
209 if(timeout_leadtime > 0) // countdown is still going
211 Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_TIMEOUT_BEGINNING, timeout_leadtime);
213 self.nextthink = time + 1; // think again in one second
214 timeout_leadtime -= 1; // decrease the time counter
216 else // time to begin the timeout
218 timeout_status = TIMEOUT_ACTIVE;
220 // set the slowmo value to the timeout default slowmo value
221 cvar_set("slowmo", ftos(TIMEOUT_SLOWMO_VALUE));
223 // reset all the flood variables
224 FOR_EACH_CLIENT(tmp_player)
225 tmp_player.nickspamcount = tmp_player.nickspamtime = tmp_player.floodcontrol_chat =
226 tmp_player.floodcontrol_chatteam = tmp_player.floodcontrol_chattell =
227 tmp_player.floodcontrol_voice = tmp_player.floodcontrol_voiceteam = 0;
229 // copy .v_angle to .lastV_angle for every player in order to fix their view during pause (see PlayerPreThink)
230 FOR_EACH_REALPLAYER(tmp_player)
231 tmp_player.lastV_angle = tmp_player.v_angle;
233 self.nextthink = time; // think again next frame to handle it under TIMEOUT_ACTIVE code
240 case TIMEOUT_INACTIVE:
243 timeout_handler_reset();
251 // ===================================================
252 // Common commands used in both sv_cmd.qc and cmd.qc
253 // ===================================================
255 void CommonCommand_cvar_changes(float request, entity caller)
259 case CMD_REQUEST_COMMAND:
261 print_to(caller, cvar_changes);
262 return; // never fall through to usage
266 case CMD_REQUEST_USAGE:
268 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " cvar_changes"));
269 print_to(caller, " No arguments required.");
270 print_to(caller, "See also: ^2cvar_purechanges^7");
276 void CommonCommand_cvar_purechanges(float request, entity caller)
280 case CMD_REQUEST_COMMAND:
282 print_to(caller, cvar_purechanges);
283 return; // never fall through to usage
287 case CMD_REQUEST_USAGE:
289 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " cvar_purechanges"));
290 print_to(caller, " No arguments required.");
291 print_to(caller, "See also: ^2cvar_changes^7");
297 void CommonCommand_info(float request, entity caller, float argc)
301 case CMD_REQUEST_COMMAND:
303 string command = builtin_cvar_string(strcat("sv_info_", argv(1)));
306 wordwrap_sprint(command, 1000);
308 print_to(caller, "ERROR: unsupported info command");
310 return; // never fall through to usage
314 case CMD_REQUEST_USAGE:
316 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " info request"));
317 print_to(caller, " Where 'request' is the suffixed string appended onto the request for cvar.");
323 void CommonCommand_ladder(float request, entity caller)
327 case CMD_REQUEST_COMMAND:
329 print_to(caller, ladder_reply);
330 return; // never fall through to usage
334 case CMD_REQUEST_USAGE:
336 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " ladder"));
337 print_to(caller, " No arguments required.");
343 void CommonCommand_lsmaps(float request, entity caller)
347 case CMD_REQUEST_COMMAND:
349 print_to(caller, lsmaps_reply);
350 return; // never fall through to usage
354 case CMD_REQUEST_USAGE:
356 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " lsmaps"));
357 print_to(caller, " No arguments required.");
363 void CommonCommand_lsnewmaps(float request, entity caller)
367 case CMD_REQUEST_COMMAND:
369 print_to(caller, lsnewmaps_reply);
370 return; // never fall through to usage
374 case CMD_REQUEST_USAGE:
376 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " lsnewmaps"));
377 print_to(caller, " No arguments required.");
383 void CommonCommand_printmaplist(float request, entity caller)
387 case CMD_REQUEST_COMMAND:
389 print_to(caller, maplist_reply);
390 return; // never fall through to usage
394 case CMD_REQUEST_USAGE:
396 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " printmaplist"));
397 print_to(caller, " No arguments required.");
403 void CommonCommand_rankings(float request, entity caller)
407 case CMD_REQUEST_COMMAND:
409 print_to(caller, rankings_reply);
410 return; // never fall through to usage
414 case CMD_REQUEST_USAGE:
416 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " rankings"));
417 print_to(caller, " No arguments required.");
423 void CommonCommand_records(float request, entity caller)
427 case CMD_REQUEST_COMMAND:
431 for(i = 0; i < 10; ++i)
432 if(records_reply[i] != "")
433 print_to(caller, records_reply[i]);
435 return; // never fall through to usage
439 case CMD_REQUEST_USAGE:
441 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " records"));
442 print_to(caller, " No arguments required.");
448 void CommonCommand_teamstatus(float request, entity caller)
452 case CMD_REQUEST_COMMAND:
454 Score_NicePrint(caller);
455 return; // never fall through to usage
459 case CMD_REQUEST_USAGE:
461 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " teamstatus"));
462 print_to(caller, " No arguments required.");
468 void CommonCommand_time(float request, entity caller)
472 case CMD_REQUEST_COMMAND:
474 print_to(caller, strcat("time = ", ftos(time)));
475 print_to(caller, strcat("frame start = ", ftos(gettime(GETTIME_FRAMESTART))));
476 print_to(caller, strcat("realtime = ", ftos(gettime(GETTIME_REALTIME))));
477 print_to(caller, strcat("hires = ", ftos(gettime(GETTIME_HIRES))));
478 print_to(caller, strcat("uptime = ", ftos(gettime(GETTIME_UPTIME))));
479 print_to(caller, strcat("localtime = ", strftime(TRUE, "%a %b %e %H:%M:%S %Z %Y")));
480 print_to(caller, strcat("gmtime = ", strftime(FALSE, "%a %b %e %H:%M:%S %Z %Y")));
485 case CMD_REQUEST_USAGE:
487 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " time"));
488 print_to(caller, " No arguments required.");
494 void CommonCommand_timein(float request, entity caller)
498 case CMD_REQUEST_COMMAND:
500 if(!caller || autocvar_sv_timeout)
502 if not(timeout_status) { print_to(caller, "^7Error: There is no active timeout called."); }
503 else if(caller && (caller != timeout_caller)) { print_to(caller, "^7Error: You are not allowed to stop the active timeout."); }
505 else // everything should be okay, continue aborting timeout
507 switch(timeout_status)
509 case TIMEOUT_LEADTIME:
511 timeout_status = TIMEOUT_INACTIVE;
513 timeout_handler.nextthink = time; // timeout_handler has to take care of it immediately
514 bprint(strcat("^7The timeout was aborted by ", GetCallerName(caller), " !\n"));
520 timeout_time = autocvar_sv_timeout_resumetime;
521 timeout_handler.nextthink = time; // timeout_handler has to take care of it immediately
522 bprint(strcat("^1Attention: ^7", GetCallerName(caller), " resumed the game! Prepare for battle!\n"));
526 default: dprint("timeout status was inactive, but this code was executed anyway?"); return;
530 else { print_to(caller, "^1Timeins are not allowed to be called, enable them with sv_timeout 1.\n"); }
532 return; // never fall through to usage
536 case CMD_REQUEST_USAGE:
538 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " timein"));
539 print_to(caller, " No arguments required.");
545 void CommonCommand_timeout(float request, entity caller) // DEAR GOD THIS COMMAND IS TERRIBLE.
549 case CMD_REQUEST_COMMAND:
551 if(!caller || autocvar_sv_timeout)
553 float last_possible_timeout = ((autocvar_timelimit * 60) - autocvar_sv_timeout_leadtime - 1);
555 if(timeout_status) { print_to(caller, "^7Error: A timeout is already active."); }
556 else if(vote_called) { print_to(caller, "^7Error: You can not call a timeout while a vote is active."); }
557 else if(inWarmupStage && !g_warmup_allow_timeout) { print_to(caller, "^7Error: You can not call a timeout in warmup-stage."); }
558 else if(time < game_starttime) { print_to(caller, "^7Error: You can not call a timeout while the map is being restarted."); }
559 else if(caller && (caller.allowed_timeouts < 1)) { print_to(caller, "^7Error: You already used all your timeout calls for this map."); }
560 else if(caller && (caller.classname != "player")) { print_to(caller, "^7Error: You must be a player to call a timeout."); }
561 else if((autocvar_timelimit) && (last_possible_timeout < time - game_starttime)) { print_to(caller, "^7Error: It is too late to call a timeout now!"); }
563 else // everything should be okay, proceed with starting the timeout
565 if(caller) { caller.allowed_timeouts -= 1; }
567 bprint(GetCallerName(caller), " ^7called a timeout", (caller ? strcat(" (", ftos(caller.allowed_timeouts), " timeout(s) left)") : ""), "!\n"); // write a bprint who started the timeout (and how many they have left)
569 timeout_status = TIMEOUT_LEADTIME;
570 timeout_caller = caller;
571 timeout_time = autocvar_sv_timeout_length;
572 timeout_leadtime = autocvar_sv_timeout_leadtime;
574 timeout_handler = spawn();
575 timeout_handler.think = timeout_handler_think;
576 timeout_handler.nextthink = time; // always let the entity think asap
578 Send_Notification(NOTIF_ALL, world, MSG_ANNCE, ANNCE_TIMEOUT);
581 else { print_to(caller, "^1Timeouts are not allowed to be called, enable them with sv_timeout 1.\n"); }
583 return; // never fall through to usage
587 case CMD_REQUEST_USAGE:
589 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " timeout"));
590 print_to(caller, " No arguments required.");
596 void CommonCommand_who(float request, entity caller, float argc)
600 case CMD_REQUEST_COMMAND:
602 float total_listed_players, is_bot;
605 float privacy = (caller && autocvar_sv_status_privacy);
606 string separator = strreplace("%", " ", strcat((argv(1) ? argv(1) : " "), "^7"));
607 string tmp_netaddress, tmp_crypto_idfp;
609 print_to(caller, strcat("List of client information", (privacy ? " (some data is hidden for privacy)" : ""), ":"));
610 print_to(caller, sprintf(strreplace(" ", separator, " %-4s %-20s %-5s %-3s %-9s %-16s %s "),
611 "ent", "nickname", "ping", "pl", "time", "ip", "crypto_id"));
613 total_listed_players = 0;
614 FOR_EACH_CLIENT(tmp_player)
616 is_bot = (clienttype(tmp_player) == CLIENTTYPE_BOT);
620 tmp_netaddress = "null/botclient";
621 tmp_crypto_idfp = "null/botclient";
625 tmp_netaddress = "hidden";
626 tmp_crypto_idfp = "hidden";
630 tmp_netaddress = tmp_player.netaddress;
631 tmp_crypto_idfp = tmp_player.crypto_idfp;
634 print_to(caller, sprintf(strreplace(" ", separator, " #%-3d %-20.20s %-5d %-3d %-9s %-16s %s "),
635 num_for_edict(tmp_player),
638 tmp_player.ping_packetloss,
639 process_time(1, time - tmp_player.jointime),
643 ++total_listed_players;
646 print_to(caller, strcat("Finished listing ", ftos(total_listed_players), " client(s) out of ", ftos(maxclients), " slots."));
648 return; // never fall through to usage
652 case CMD_REQUEST_USAGE:
654 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " who [separator]"));
655 print_to(caller, " Where 'separator' is the optional string to separate the values with, default is a space.");
661 /* use this when creating a new command, making sure to place it in alphabetical order... also,
662 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
663 void CommonCommand_(float request, entity caller)
667 case CMD_REQUEST_COMMAND:
670 return; // never fall through to usage
674 case CMD_REQUEST_USAGE:
676 print_to(caller, strcat("\nUsage:^3 ", GetCommandPrefix(caller), " "));
677 print_to(caller, " No arguments required.");
685 // ==================================
686 // Macro system for common commands
687 // ==================================
689 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
690 #define COMMON_COMMANDS(request,caller,arguments,command) \
691 COMMON_COMMAND("cvar_changes", CommonCommand_cvar_changes(request, caller), "Prints a list of all changed server cvars") \
692 COMMON_COMMAND("cvar_purechanges", CommonCommand_cvar_purechanges(request, caller), "Prints a list of all changed gameplay cvars") \
693 COMMON_COMMAND("info", CommonCommand_info(request, caller, arguments), "Request for unique server information set up by admin") \
694 COMMON_COMMAND("ladder", CommonCommand_ladder(request, caller), "Get information about top players if supported") \
695 COMMON_COMMAND("lsmaps", CommonCommand_lsmaps(request, caller), "List maps which can be used with the current game mode") \
696 COMMON_COMMAND("lsnewmaps", CommonCommand_lsnewmaps(request, caller), "List maps which have no records or are seemingly unplayed yet") \
697 COMMON_COMMAND("printmaplist", CommonCommand_printmaplist(request, caller), "Display full server maplist reply") \
698 COMMON_COMMAND("rankings", CommonCommand_rankings(request, caller), "Print information about rankings") \
699 COMMON_COMMAND("records", CommonCommand_records(request, caller), "List top 10 records for the current map") \
700 COMMON_COMMAND("teamstatus", CommonCommand_teamstatus(request, caller), "Show information about player and team scores") \
701 COMMON_COMMAND("time", CommonCommand_time(request, caller), "Print different formats/readouts of time") \
702 COMMON_COMMAND("timein", CommonCommand_timein(request, caller), "Resume the game from being paused with a timeout") \
703 COMMON_COMMAND("timeout", CommonCommand_timeout(request, caller), "Call a timeout which pauses the game for certain amount of time unless unpaused") \
704 COMMON_COMMAND("vote", VoteCommand(request, caller, arguments, command), "Request an action to be voted upon by players") \
705 COMMON_COMMAND("who", CommonCommand_who(request, caller, arguments), "Display detailed client information about all players") \
708 void CommonCommand_macro_help(entity caller)
710 #define COMMON_COMMAND(name,function,description) \
711 { print_to(caller, strcat(" ^2", name, "^7: ", description)); }
713 COMMON_COMMANDS(0, caller, 0, "")
714 #undef COMMON_COMMAND
719 float CommonCommand_macro_command(float argc, entity caller, string command)
721 #define COMMON_COMMAND(name,function,description) \
722 { if(name == strtolower(argv(0))) { function; return TRUE; } }
724 COMMON_COMMANDS(CMD_REQUEST_COMMAND, caller, argc, command)
725 #undef COMMON_COMMAND
730 float CommonCommand_macro_usage(float argc, entity caller)
732 #define COMMON_COMMAND(name,function,description) \
733 { if(name == strtolower(argv(1))) { function; return TRUE; } }
735 COMMON_COMMANDS(CMD_REQUEST_USAGE, caller, argc, "")
736 #undef COMMON_COMMAND
741 void CommonCommand_macro_write_aliases(float fh)
743 #define COMMON_COMMAND(name,function,description) \
744 { CMD_Write_Alias("qc_cmd_svcmd", name, description); }
746 COMMON_COMMANDS(0, world, 0, "")
747 #undef COMMON_COMMAND