summaryrefslogtreecommitdiff
path: root/src/console_cmds.cpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2009-01-14 15:39:05 +0000
committertruebrain <truebrain@openttd.org>2009-01-14 15:39:05 +0000
commita45b3c4304e840e9fbae300c69984046f59215dc (patch)
tree24e3586cd3828de94cff66ca108c2fa005318af9 /src/console_cmds.cpp
parenteb19b0abf94c76cc3e52d74efca399944a84c1b5 (diff)
downloadopenttd-a45b3c4304e840e9fbae300c69984046f59215dc.tar.xz
(svn r15083) -Add [NoAI]: added a console command to reload an AI (requested by Zuu)
Diffstat (limited to 'src/console_cmds.cpp')
-rw-r--r--src/console_cmds.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp
index e15babeca..ad3375873 100644
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -911,6 +911,43 @@ DEF_CONSOLE_CMD(ConStartAI)
return true;
}
+DEF_CONSOLE_CMD(ConReloadAI)
+{
+ if (argc != 2) {
+ IConsoleHelp("Reload an AI. Usage: 'reload_ai <company-id>'");
+ IConsoleHelp("Reload the AI with the given company id. For company-id's, see the list of companies from the dropdown menu. Company 1 is 1, etc.");
+ return true;
+ }
+
+ if (_game_mode != GM_NORMAL) {
+ IConsoleWarning("AIs can only be managed in a game.");
+ return true;
+ }
+
+ if (_networking && !_network_server) {
+ IConsoleWarning("Only the server can reload an AI.");
+ return true;
+ }
+
+ CompanyID company_id = (CompanyID)(atoi(argv[1]) - 1);
+ if (!IsValidCompanyID(company_id)) {
+ IConsolePrintF(CC_DEFAULT, "Unknown company. Company range is between 1 and %d.", MAX_COMPANIES);
+ return true;
+ }
+
+ if (IsHumanCompany(company_id)) {
+ IConsoleWarning("Company is not controlled by an AI.");
+ return true;
+ }
+
+ /* First kill the company of the AI, then start a new one. This should start the current AI again */
+ DoCommandP(0, 2, company_id, CMD_COMPANY_CTRL);
+ DoCommandP(0, 1, 0, CMD_COMPANY_CTRL);
+ IConsolePrint(CC_DEFAULT, "AI reloaded.");
+
+ return true;
+}
+
DEF_CONSOLE_CMD(ConStopAI)
{
if (argc != 2) {
@@ -1479,6 +1516,7 @@ void IConsoleStdLibRegister()
IConsoleCmdRegister("getseed", ConGetSeed);
IConsoleCmdRegister("getdate", ConGetDate);
IConsoleCmdRegister("quit", ConExit);
+ IConsoleCmdRegister("reload_ai", ConReloadAI);
IConsoleCmdRegister("rescan_ai", ConRescanAI);
IConsoleCmdRegister("resetengines", ConResetEngines);
IConsoleCmdRegister("return", ConReturn);