summaryrefslogtreecommitdiff
path: root/src/console_cmds.cpp
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2020-12-25 15:22:40 +0100
committerPatric Stout <github@truebrain.nl>2020-12-25 17:03:44 +0100
commit4319d31036a243cce860511a1b543461c9677f41 (patch)
treef0418e108141886954017e8aad7e731657a7cc08 /src/console_cmds.cpp
parent29e3331055a784ead663b62a67ef13b0112af1df (diff)
downloadopenttd-4319d31036a243cce860511a1b543461c9677f41.tar.xz
Fix #6468: don't store version of AIs-started-via-console in name
You can do: "startai myai.3", which starts version 3 of "myai". This is very useful for testing save/load code between different versions of your AI. However, when using this syntax, the AI got saved as "myai.3" as name of the AI, instead of "myai". This caused several problems, like indicating to the user the AI could not be found, but still load the AI. But in all cases, the AI never got the chance to load the saved data, making the whole reason this exists pointless. By splitting the name and version already in the console command, the code becomes simpler and AIs started this way now follow the normal flow after initialization.
Diffstat (limited to 'src/console_cmds.cpp')
-rw-r--r--src/console_cmds.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp
index 2f678b2fc..e87232b36 100644
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -1172,7 +1172,24 @@ DEF_CONSOLE_CMD(ConStartAI)
AIConfig *config = AIConfig::GetConfig((CompanyID)n);
if (argc >= 2) {
- config->Change(argv[1], -1, true);
+ config->Change(argv[1], -1, false);
+
+ /* If the name is not found, and there is a dot in the name,
+ * try again with the assumption everything right of the dot is
+ * the version the user wants to load. */
+ if (!config->HasScript()) {
+ char *name = stredup(argv[1]);
+ char *e = strrchr(name, '.');
+ if (e != nullptr) {
+ *e = '\0';
+ e++;
+
+ int version = atoi(e);
+ config->Change(name, version, true);
+ }
+ free(name);
+ }
+
if (!config->HasScript()) {
IConsoleWarning("Failed to load the specified AI");
return true;