1 // =========================================================
2 // Server side networked commands code, reworked by Samual
3 // Last updated: December 28th, 2011
4 // =========================================================
6 float SV_ParseClientCommand_floodcheck()
8 if (!timeout_status) // not while paused
10 if(time <= (self.cmd_floodtime + autocvar_sv_clientcommand_antispam_time))
12 self.cmd_floodcount += 1;
13 if(self.cmd_floodcount > autocvar_sv_clientcommand_antispam_count) { return FALSE; } // too much spam, halt
17 self.cmd_floodtime = time;
18 self.cmd_floodcount = 1;
21 return TRUE; // continue, as we're not flooding yet
25 // =======================
26 // Command Sub-Functions
27 // =======================
29 void ClientCommand_autoswitch(float request, float argc)
33 case CMD_REQUEST_COMMAND:
37 self.autoswitch = InterpretBoolean(argv(1));
38 sprint(self, strcat("^1autoswitch is currently turned ", (self.autoswitch ? "on" : "off"), ".\n"));
44 sprint(self, "Incorrect parameters for ^2autoswitch^7\n");
45 case CMD_REQUEST_USAGE:
47 sprint(self, "\nUsage:^3 cmd autoswitch selection\n");
48 sprint(self, " Where 'selection' controls if autoswitch is on or off.\n");
54 void ClientCommand_checkfail(float request, string command) // internal command, used only by code
58 case CMD_REQUEST_COMMAND:
60 printf("CHECKFAIL: %s (%s) epically failed check %s\n", self.netname, self.netaddress, substring(command, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
62 return; // never fall through to usage
66 sprint(self, "Incorrect parameters for ^2checkfail^7\n");
67 case CMD_REQUEST_USAGE:
69 sprint(self, "\nUsage:^3 cmd checkfail <message>\n");
70 sprint(self, " Where 'message' is the message reported by client about the fail.\n");
76 void ClientCommand_clientversion(float request, float argc) // internal command, used only by code
80 case CMD_REQUEST_COMMAND:
86 self.version = ((argv(1) == "$gameversion") ? 1 : stof(argv(1)));
88 if(self.version < autocvar_gameversion_min || self.version > autocvar_gameversion_max)
90 self.version_mismatch = 1;
91 ClientKill_TeamChange(-2); // observe
93 else if(autocvar_g_campaign || autocvar_g_balance_teams)
95 //JoinBestTeam(self, FALSE, TRUE);
97 else if(teamplay && !autocvar_sv_spectate && !(self.team_forced > 0))
99 self.classname = "observer"; // really?
100 stuffcmd(self, "menu_showteamselect\n");
109 sprint(self, "Incorrect parameters for ^2clientversion^7\n");
110 case CMD_REQUEST_USAGE:
112 sprint(self, "\nUsage:^3 cmd clientversion version\n");
113 sprint(self, " Where 'version' is the game version reported by self.\n");
119 void ClientCommand_mv_getpicture(float request, float argc) // internal command, used only by code
123 case CMD_REQUEST_COMMAND:
127 if(intermission_running)
128 MapVote_SendPicture(stof(argv(1)));
135 sprint(self, "Incorrect parameters for ^2mv_getpicture^7\n");
136 case CMD_REQUEST_USAGE:
138 sprint(self, "\nUsage:^3 cmd mv_getpicture mapid\n");
139 sprint(self, " Where 'mapid' is the id number of the map to request an image of on the map vote selection menu.\n");
145 void ClientCommand_join(float request)
149 case CMD_REQUEST_COMMAND:
153 if(!IS_PLAYER(self) && !lockteams && !gameover)
157 if(nJoinAllowed(self))
159 if(autocvar_g_campaign) { campaign_bots_may_start = 1; }
161 self.classname = "player";
162 PlayerScore_Clear(self);
163 Kill_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER_CPID, CPID_PREVENT_JOIN);
164 Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_JOIN_PLAY, self.netname);
169 //player may not join because of g_maxplayers is set
170 Send_Notification(NOTIF_ONE_ONLY, self, MSG_CENTER, CENTER_JOIN_PREVENT);
174 return; // never fall through to usage
178 case CMD_REQUEST_USAGE:
180 sprint(self, "\nUsage:^3 cmd join\n");
181 sprint(self, " No arguments required.\n");
187 void ClientCommand_mobedit(float request, float argc)
191 case CMD_REQUEST_COMMAND:
193 if(argv(1) && argv(2))
195 makevectors(self.v_angle);
196 WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * 100, MOVE_NORMAL, self);
198 if(!autocvar_g_monsters_edit) { sprint(self, "Monster property editing is not enabled.\n"); return; }
199 if(trace_ent.flags & FL_MONSTER)
201 if(trace_ent.realowner != self) { sprint(self, "That monster does not belong to you.\n"); return; }
206 if(trace_ent.monsterid != MON_MAGE)
207 trace_ent.skin = stof(argv(2));
212 trace_ent.monster_moveflags = stof(argv(2));
220 sprint(self, "Incorrect parameters for ^2mobedit^7\n");
221 case CMD_REQUEST_USAGE:
223 sprint(self, "\nUsage:^3 cmd mobedit [argument]\n");
224 sprint(self, " Where 'argument' can be skin or movetarget.\n");
225 sprint(self, " Aim at your monster to edit its properties.\n");
231 void ClientCommand_mobkill(float request)
235 case CMD_REQUEST_COMMAND:
237 makevectors(self.v_angle);
238 WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * 100, MOVE_NORMAL, self);
240 if(trace_ent.flags & FL_MONSTER)
242 if(trace_ent.realowner != self)
244 sprint(self, "That monster does not belong to you.\n");
247 sprint(self, strcat("Your pet '", trace_ent.monster_name, "' has been brutally mutilated.\n"));
248 Damage (trace_ent, world, world, trace_ent.health + trace_ent.max_health + 200, DEATH_KILL, trace_ent.origin, '0 0 0');
254 sprint(self, "Incorrect parameters for ^2mobkill^7\n");
255 case CMD_REQUEST_USAGE:
257 sprint(self, "\nUsage:^3 cmd mobkill\n");
258 sprint(self, " Aim at your monster to kill it.\n");
264 void ClientCommand_mobspawn(float request, float argc)
268 case CMD_REQUEST_COMMAND:
272 float moveflag, monstercount = 0;
274 moveflag = (argv(2) ? stof(argv(2)) : 1); // follow owner if not defined
275 tospawn = strtolower(argv(1));
277 if(tospawn == "list")
279 sprint(self, monsterlist_reply);
285 if(e.realowner == self)
289 if(autocvar_g_monsters_max <= 0 || autocvar_g_monsters_max_perplayer <= 0) { sprint(self, "Monster spawning is disabled.\n"); return; }
290 else if(!IS_PLAYER(self)) { sprint(self, "You can't spawn monsters while spectating.\n"); return; }
291 else if(MUTATOR_CALLHOOK(AllowMobSpawning)) { sprint(self, "Monster spawning is currently disabled by a mutator.\n"); return; }
292 else if(!autocvar_g_monsters) { Send_Notification(NOTIF_ONE, self, MSG_INFO, INFO_MONSTERS_DISABLED); return; }
293 else if(self.vehicle) { sprint(self, "You can't spawn monsters while driving a vehicle.\n"); return; }
294 else if(self.frozen) { sprint(self, "You can't spawn monsters while frozen.\n"); return; }
295 else if(autocvar_g_campaign) { sprint(self, "You can't spawn monsters in campaign mode.\n"); return; }
296 else if(self.deadflag != DEAD_NO) { sprint(self, "You can't spawn monsters while dead.\n"); return; }
297 else if(monstercount >= autocvar_g_monsters_max_perplayer) { sprint(self, "You have spawned too many monsters, kill some before trying to spawn any more.\n"); return; }
298 else if(totalspawned >= autocvar_g_monsters_max) { sprint(self, "The global maximum monster count has been reached, kill some before trying to spawn any more.\n"); return; }
299 else if(tospawn != "")
304 for(i = MON_FIRST; i <= MON_LAST; ++i)
306 mon = get_monsterinfo(i);
307 if(mon.netname == tospawn)
314 if(found || tospawn == "random")
318 makevectors(self.v_angle);
319 WarpZone_TraceBox (CENTER_OR_VIEWOFS(self), PL_MIN, PL_MAX, CENTER_OR_VIEWOFS(self) + v_forward * 150, TRUE, self);
320 //WarpZone_TraceLine(self.origin + self.view_ofs, self.origin + self.view_ofs + v_forward * 150, MOVE_NORMAL, self);
322 e = spawnmonster(tospawn, 0, self, self, trace_endpos, FALSE, FALSE, moveflag);
324 sprint(self, strcat("Spawned ", e.monster_name, "\n"));
332 sprint(self, "Incorrect parameters for ^2mobspawn^7\n");
333 case CMD_REQUEST_USAGE:
335 sprint(self, "\nUsage:^3 cmd mobspawn <random> <monster> [movetype]\n");
336 sprint(self, " See 'cmd mobspawn list' for available monsters.\n");
337 sprint(self, " Argument 'random' spawns a random monster.\n");
338 sprint(self, " Monster will follow the owner if second argument is not defined.\n");
344 void ClientCommand_ready(float request) // todo: anti-spam for toggling readyness
348 case CMD_REQUEST_COMMAND:
352 if(warmup_stage || autocvar_sv_ready_restart || g_race_qualifying == 2)
354 if(!readyrestart_happened || autocvar_sv_ready_restart_repeatable)
356 if(time < game_starttime) // game is already restarting
358 if (self.ready) // toggle
361 bprint(self.netname, "^2 is ^1NOT^2 ready\n");
366 bprint(self.netname, "^2 is ready\n");
369 // cannot reset the game while a timeout is active!
373 sprint(self, "^1Game has already been restarted\n");
377 return; // never fall through to usage
381 case CMD_REQUEST_USAGE:
383 sprint(self, "\nUsage:^3 cmd ready\n");
384 sprint(self, " No arguments required.\n");
390 void ClientCommand_say(float request, float argc, string command)
394 case CMD_REQUEST_COMMAND:
396 if(argc >= 2) { Say(self, FALSE, world, substring(command, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)), 1); }
397 return; // never fall through to usage
401 case CMD_REQUEST_USAGE:
403 sprint(self, "\nUsage:^3 cmd say <message>\n");
404 sprint(self, " Where 'message' is the string of text to say.\n");
410 void ClientCommand_say_team(float request, float argc, string command)
414 case CMD_REQUEST_COMMAND:
416 if(argc >= 2) { Say(self, TRUE, world, substring(command, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)), 1); }
417 return; // never fall through to usage
421 case CMD_REQUEST_USAGE:
423 sprint(self, "\nUsage:^3 cmd say_team <message>\n");
424 sprint(self, " Where 'message' is the string of text to say.\n");
430 void ClientCommand_selectteam(float request, float argc)
434 case CMD_REQUEST_COMMAND:
441 if(self.team_forced <= 0)
448 case "red": selection = NUM_TEAM_1; break;
449 case "blue": selection = NUM_TEAM_2; break;
450 case "yellow": selection = NUM_TEAM_3; break;
451 case "pink": selection = NUM_TEAM_4; break;
452 case "auto": selection = (-1); break;
454 default: selection = 0; break;
459 if(self.team == selection && self.deadflag == DEAD_NO)
460 sprint(self, "^7You already are on that team.\n");
461 else if(self.wasplayer && autocvar_g_changeteam_banned)
462 sprint(self, "^1You cannot change team, forbidden by the server.\n");
465 if(autocvar_g_balance_teams && autocvar_g_balance_teams_prevent_imbalance)
467 CheckAllowedTeams(self);
469 if(!TeamSmallerEqThanTeam(Team_TeamToNumber(selection), Team_TeamToNumber(self.team), self))
471 Send_Notification(NOTIF_ONE, self, MSG_INFO, INFO_TEAMCHANGE_LARGERTEAM);
475 ClientKill_TeamChange(selection);
480 sprint(self, "^7The game has already begun, you must wait until the next map to be able to join a team.\n");
482 sprint(self, "^7selectteam can not be used as your team is forced\n");
484 sprint(self, "^7selectteam can only be used in teamgames\n");
491 sprint(self, "Incorrect parameters for ^2selectteam^7\n");
492 case CMD_REQUEST_USAGE:
494 sprint(self, "\nUsage:^3 cmd selectteam team\n");
495 sprint(self, " Where 'team' is the prefered team to try and join.\n");
496 sprint(self, " Full list of options here: \"red, blue, yellow, pink, auto\"\n");
502 void ClientCommand_selfstuff(float request, string command)
506 case CMD_REQUEST_COMMAND:
510 stuffcmd(self, substring(command, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
516 sprint(self, "Incorrect parameters for ^2selectteam^7\n");
517 case CMD_REQUEST_USAGE:
519 sprint(self, "\nUsage:^3 cmd selfstuff <command>\n");
520 sprint(self, " Where 'command' is the string to be stuffed to your client.\n");
526 void ClientCommand_sentcvar(float request, float argc, string command)
530 case CMD_REQUEST_COMMAND:
537 if(argc == 2) // undefined cvar: use the default value on the server then
539 s = strcat(substring(command, argv_start_index(0), argv_end_index(1) - argv_start_index(0)), " \"", cvar_defstring(argv(1)), "\"");
550 sprint(self, "Incorrect parameters for ^2sentcvar^7\n");
551 case CMD_REQUEST_USAGE:
553 sprint(self, "\nUsage:^3 cmd sentcvar <cvar>\n");
554 sprint(self, " Where 'cvar' is the cvar plus arguments to send to the server.\n");
560 void ClientCommand_spectate(float request)
564 case CMD_REQUEST_COMMAND:
570 if(self.lms_spectate_warning)
572 // for the forfeit message...
573 self.lms_spectate_warning = 2;
574 // mark player as spectator
575 PlayerScore_Add(self, SP_LMS_RANK, 666 - PlayerScore_Add(self, SP_LMS_RANK, 0));
579 self.lms_spectate_warning = 1;
580 sprint(self, "WARNING: you won't be able to enter the game again after spectating in LMS. Use the same command again to spectate anyway.\n");
585 if((IS_PLAYER(self) || self.caplayer) && autocvar_sv_spectate == 1)
587 if(self.caplayer && (IS_SPEC(self) || IS_OBSERVER(self)))
588 Send_Notification(NOTIF_ONE_ONLY, self, MSG_INFO, INFO_CA_LEAVE);
589 ClientKill_TeamChange(-2); // observe
592 return; // never fall through to usage
596 case CMD_REQUEST_USAGE:
598 sprint(self, "\nUsage:^3 cmd spectate\n");
599 sprint(self, " No arguments required.\n");
605 void ClientCommand_suggestmap(float request, float argc)
609 case CMD_REQUEST_COMMAND:
613 sprint(self, strcat(MapVote_Suggest(argv(1)), "\n"));
619 sprint(self, "Incorrect parameters for ^2suggestmap^7\n");
620 case CMD_REQUEST_USAGE:
622 sprint(self, "\nUsage:^3 cmd suggestmap map\n");
623 sprint(self, " Where 'map' is the name of the map to suggest.\n");
629 void ClientCommand_tell(float request, float argc, string command)
633 case CMD_REQUEST_COMMAND:
637 entity tell_to = GetIndexedEntity(argc, 1);
638 float tell_accepted = VerifyClientEntity(tell_to, TRUE, FALSE);
640 if(tell_accepted > 0) // the target is a real client
642 if(tell_to != self) // and we're allowed to send to them :D
644 Say(self, FALSE, tell_to, substring(command, argv_start_index(next_token), argv_end_index(-1) - argv_start_index(next_token)), TRUE);
647 else { print_to(self, "You can't ^2tell^7 a message to yourself."); return; }
649 else if(argv(1) == "#0")
651 trigger_magicear_processmessage_forallears(self, -1, world, substring(command, argv_start_index(next_token), argv_end_index(-1) - argv_start_index(next_token)));
654 else { print_to(self, strcat("tell: ", GetClientErrorString(tell_accepted, argv(1)), ".")); return; }
659 sprint(self, "Incorrect parameters for ^2tell^7\n");
660 case CMD_REQUEST_USAGE:
662 sprint(self, "\nUsage:^3 cmd tell client <message>\n");
663 sprint(self, " Where 'client' is the entity number or name of the player to send 'message' to.\n");
669 void ClientCommand_voice(float request, float argc, string command)
673 case CMD_REQUEST_COMMAND:
678 VoiceMessage(argv(1), substring(command, argv_start_index(2), argv_end_index(-1) - argv_start_index(2)));
680 VoiceMessage(argv(1), "");
687 sprint(self, "Incorrect parameters for ^2voice^7\n");
688 case CMD_REQUEST_USAGE:
690 sprint(self, "\nUsage:^3 cmd voice messagetype <soundname>\n");
691 sprint(self, " 'messagetype' is the type of broadcast to do, like team only or such,\n");
692 sprint(self, " and 'soundname' is the string/filename of the sound/voice message to play.\n");
698 /* use this when creating a new command, making sure to place it in alphabetical order... also,
699 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
700 void ClientCommand_(float request)
704 case CMD_REQUEST_COMMAND:
707 return; // never fall through to usage
711 case CMD_REQUEST_USAGE:
713 sprint(self, "\nUsage:^3 cmd \n");
714 sprint(self, " No arguments required.\n");
722 // =====================================
723 // Macro system for networked commands
724 // =====================================
726 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
727 #define CLIENT_COMMANDS(request,arguments,command) \
728 CLIENT_COMMAND("autoswitch", ClientCommand_autoswitch(request, arguments), "Whether or not to switch automatically when getting a better weapon") \
729 CLIENT_COMMAND("checkfail", ClientCommand_checkfail(request, command), "Report if a client-side check failed") \
730 CLIENT_COMMAND("clientversion", ClientCommand_clientversion(request, arguments), "Release version of the game") \
731 CLIENT_COMMAND("mv_getpicture", ClientCommand_mv_getpicture(request, arguments), "Retrieve mapshot picture from the server") \
732 CLIENT_COMMAND("join", ClientCommand_join(request), "Become a player in the game") \
733 CLIENT_COMMAND("mobedit", ClientCommand_mobedit(request, arguments), "Edit your monster's properties") \
734 CLIENT_COMMAND("mobkill", ClientCommand_mobkill(request), "Kills your monster") \
735 CLIENT_COMMAND("mobspawn", ClientCommand_mobspawn(request, arguments), "Spawn monsters infront of yourself") \
736 CLIENT_COMMAND("ready", ClientCommand_ready(request), "Qualify as ready to end warmup stage (or restart server if allowed)") \
737 CLIENT_COMMAND("say", ClientCommand_say(request, arguments, command), "Print a message to chat to all players") \
738 CLIENT_COMMAND("say_team", ClientCommand_say_team(request, arguments, command), "Print a message to chat to all team mates") \
739 CLIENT_COMMAND("selectteam", ClientCommand_selectteam(request, arguments), "Attempt to choose a team to join into") \
740 CLIENT_COMMAND("selfstuff", ClientCommand_selfstuff(request, command), "Stuffcmd a command to your own client") \
741 CLIENT_COMMAND("sentcvar", ClientCommand_sentcvar(request, arguments, command), "New system for sending a client cvar to the server") \
742 CLIENT_COMMAND("spectate", ClientCommand_spectate(request), "Become an observer") \
743 CLIENT_COMMAND("suggestmap", ClientCommand_suggestmap(request, arguments), "Suggest a map to the mapvote at match end") \
744 CLIENT_COMMAND("tell", ClientCommand_tell(request, arguments, command), "Send a message directly to a player") \
745 CLIENT_COMMAND("voice", ClientCommand_voice(request, arguments, command), "Send voice message via sound") \
748 void ClientCommand_macro_help()
750 #define CLIENT_COMMAND(name,function,description) \
751 { sprint(self, " ^2", name, "^7: ", description, "\n"); }
753 CLIENT_COMMANDS(0, 0, "")
754 #undef CLIENT_COMMAND
759 float ClientCommand_macro_command(float argc, string command)
761 #define CLIENT_COMMAND(name,function,description) \
762 { if(name == strtolower(argv(0))) { function; return TRUE; } }
764 CLIENT_COMMANDS(CMD_REQUEST_COMMAND, argc, command)
765 #undef CLIENT_COMMAND
770 float ClientCommand_macro_usage(float argc)
772 #define CLIENT_COMMAND(name,function,description) \
773 { if(name == strtolower(argv(1))) { function; return TRUE; } }
775 CLIENT_COMMANDS(CMD_REQUEST_USAGE, argc, "")
776 #undef CLIENT_COMMAND
781 void ClientCommand_macro_write_aliases(float fh)
783 #define CLIENT_COMMAND(name,function,description) \
784 { CMD_Write_Alias("qc_cmd_cmd", name, description); }
786 CLIENT_COMMANDS(0, 0, "")
787 #undef CLIENT_COMMAND
792 // ======================================
793 // Main Function Called By Engine (cmd)
794 // ======================================
795 // If this function exists, server game code parses clientcommand before the engine code gets it.
797 void SV_ParseClientCommand(string command)
799 // if we're banned, don't even parse the command
800 if(Ban_MaybeEnforceBanOnce(self))
803 float argc = tokenize_console(command);
805 // for the mutator hook system
806 cmd_name = strtolower(argv(0));
808 cmd_string = command;
810 // Guide for working with argc arguments by example:
811 // argc: 1 - 2 - 3 - 4
812 // argv: 0 - 1 - 2 - 3
813 // cmd vote - master - login - password
816 switch(strtolower(argv(0)))
818 // exempt commands which are not subject to floodcheck
819 case "begin": break; // handled by engine in host_cmd.c
820 case "download": break; // handled by engine in cl_parse.c
821 case "mv_getpicture": break; // handled by server in this file
822 case "pause": break; // handled by engine in host_cmd.c
823 case "prespawn": break; // handled by engine in host_cmd.c
824 case "sentcvar": break; // handled by server in this file
825 case "spawn": break; // handled by engine in host_cmd.c
828 if(SV_ParseClientCommand_floodcheck())
829 break; // "TRUE": continue, as we're not flooding yet
831 return; // "FALSE": not allowed to continue, halt // print("^1ERROR: ^7ANTISPAM CAUGHT: ", command, ".\n");
834 /* NOTE: should this be disabled? It can be spammy perhaps, but hopefully it's okay for now */
835 if(argv(0) == "help")
839 sprint(self, "\nClient networked commands:\n");
840 ClientCommand_macro_help();
842 sprint(self, "\nCommon networked commands:\n");
843 CommonCommand_macro_help(self);
845 sprint(self, "\nUsage:^3 cmd COMMAND...^7, where possible commands are listed above.\n");
846 sprint(self, "For help about a specific command, type cmd help COMMAND\n");
849 else if(CommonCommand_macro_usage(argc, self)) // Instead of trying to call a command, we're going to see detailed information about it
853 else if(ClientCommand_macro_usage(argc)) // same, but for normal commands now
858 else if(MUTATOR_CALLHOOK(SV_ParseClientCommand))
860 return; // handled by a mutator
862 else if(CheatCommand(argc))
864 return; // handled by server/cheats.qc
866 else if(CommonCommand_macro_command(argc, self, command))
868 return; // handled by server/command/common.qc
870 else if(ClientCommand_macro_command(argc, command)) // continue as usual and scan for normal commands
872 return; // handled by one of the above ClientCommand_* functions
875 clientcommand(self, command);