4 * This file is part of OpenTTD.
5 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
10 /** @file ai_info.cpp Implementation of AIInfo and AILibrary */
12 #include "../stdafx.h"
14 #include "../script/squirrel_class.hpp"
15 #include "ai_info.hpp"
16 #include "ai_scanner.hpp"
18 #include "../string_func.h"
21 #include "../safeguards.h"
24 * Check if the API version provided by the AI is supported.
25 * @param api_version The API version as provided by the AI.
27 static bool CheckAPIVersion(const char *api_version
)
29 return strcmp(api_version
, "0.7") == 0 || strcmp(api_version
, "1.0") == 0 || strcmp(api_version
, "1.1") == 0 ||
30 strcmp(api_version
, "1.2") == 0 || strcmp(api_version
, "1.3") == 0 || strcmp(api_version
, "1.4") == 0 ||
31 strcmp(api_version
, "1.5") == 0 || strcmp(api_version
, "1.6") == 0 || strcmp(api_version
, "1.7") == 0;
37 template <> const char *GetClassName
<AIInfo
, ST_AI
>() { return "AIInfo"; }
39 /* static */ void AIInfo::RegisterAPI(Squirrel
*engine
)
41 /* Create the AIInfo class, and add the RegisterAI function */
42 DefSQClass
<AIInfo
, ST_AI
> SQAIInfo("AIInfo");
43 SQAIInfo
.PreRegister(engine
);
44 SQAIInfo
.AddConstructor
<void (AIInfo::*)(), 1>(engine
, "x");
45 SQAIInfo
.DefSQAdvancedMethod(engine
, &AIInfo::AddSetting
, "AddSetting");
46 SQAIInfo
.DefSQAdvancedMethod(engine
, &AIInfo::AddLabels
, "AddLabels");
47 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_NONE
, "CONFIG_NONE");
48 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_RANDOM
, "CONFIG_RANDOM");
49 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_BOOLEAN
, "CONFIG_BOOLEAN");
50 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_INGAME
, "CONFIG_INGAME");
51 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_DEVELOPER
, "CONFIG_DEVELOPER");
53 /* Pre 1.2 had an AI prefix */
54 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_NONE
, "AICONFIG_NONE");
55 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_RANDOM
, "AICONFIG_RANDOM");
56 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_BOOLEAN
, "AICONFIG_BOOLEAN");
57 SQAIInfo
.DefSQConst(engine
, SCRIPTCONFIG_INGAME
, "AICONFIG_INGAME");
59 SQAIInfo
.PostRegister(engine
);
60 engine
->AddMethod("RegisterAI", &AIInfo::Constructor
, 2, "tx");
61 engine
->AddMethod("RegisterDummyAI", &AIInfo::DummyConstructor
, 2, "tx");
64 /* static */ SQInteger
AIInfo::Constructor(HSQUIRRELVM vm
)
67 SQUserPointer instance
= NULL
;
68 if (SQ_FAILED(sq_getinstanceup(vm
, 2, &instance
, 0)) || instance
== NULL
) return sq_throwerror(vm
, "Pass an instance of a child class of AIInfo to RegisterAI");
69 AIInfo
*info
= (AIInfo
*)instance
;
71 SQInteger res
= ScriptInfo::Constructor(vm
, info
);
72 if (res
!= 0) return res
;
74 ScriptConfigItem config
= _start_date_config
;
75 config
.name
= stredup(config
.name
);
76 config
.description
= stredup(config
.description
);
77 info
->config_list
.push_front(config
);
79 if (info
->engine
->MethodExists(*info
->SQ_instance
, "MinVersionToLoad")) {
80 if (!info
->engine
->CallIntegerMethod(*info
->SQ_instance
, "MinVersionToLoad", &info
->min_loadable_version
, MAX_GET_OPS
)) return SQ_ERROR
;
82 info
->min_loadable_version
= info
->GetVersion();
84 /* When there is an UseAsRandomAI function, call it. */
85 if (info
->engine
->MethodExists(*info
->SQ_instance
, "UseAsRandomAI")) {
86 if (!info
->engine
->CallBoolMethod(*info
->SQ_instance
, "UseAsRandomAI", &info
->use_as_random
, MAX_GET_OPS
)) return SQ_ERROR
;
88 info
->use_as_random
= true;
90 /* Try to get the API version the AI is written for. */
91 if (info
->engine
->MethodExists(*info
->SQ_instance
, "GetAPIVersion")) {
92 if (!info
->engine
->CallStringMethodStrdup(*info
->SQ_instance
, "GetAPIVersion", &info
->api_version
, MAX_GET_OPS
)) return SQ_ERROR
;
93 if (!CheckAPIVersion(info
->api_version
)) {
94 DEBUG(script
, 1, "Loading info.nut from (%s.%d): GetAPIVersion returned invalid version", info
->GetName(), info
->GetVersion());
98 info
->api_version
= stredup("0.7");
101 /* Remove the link to the real instance, else it might get deleted by RegisterAI() */
102 sq_setinstanceup(vm
, 2, NULL
);
103 /* Register the AI to the base system */
104 info
->GetScanner()->RegisterScript(info
);
108 /* static */ SQInteger
AIInfo::DummyConstructor(HSQUIRRELVM vm
)
111 SQUserPointer instance
;
112 sq_getinstanceup(vm
, 2, &instance
, 0);
113 AIInfo
*info
= (AIInfo
*)instance
;
114 info
->api_version
= NULL
;
116 SQInteger res
= ScriptInfo::Constructor(vm
, info
);
117 if (res
!= 0) return res
;
120 seprintf(buf
, lastof(buf
), "%d.%d", GB(_openttd_newgrf_version
, 28, 4), GB(_openttd_newgrf_version
, 24, 4));
121 info
->api_version
= stredup(buf
);
123 /* Remove the link to the real instance, else it might get deleted by RegisterAI() */
124 sq_setinstanceup(vm
, 2, NULL
);
125 /* Register the AI to the base system */
126 static_cast<AIScannerInfo
*>(info
->GetScanner())->SetDummyAI(info
);
131 min_loadable_version(0),
132 use_as_random(false),
139 free(this->api_version
);
142 bool AIInfo::CanLoadFromVersion(int version
) const
144 if (version
== -1) return true;
145 return version
>= this->min_loadable_version
&& version
<= this->GetVersion();
149 AILibrary::~AILibrary()
151 free(this->category
);
154 /* static */ void AILibrary::RegisterAPI(Squirrel
*engine
)
156 /* Create the AILibrary class, and add the RegisterLibrary function */
157 engine
->AddClassBegin("AILibrary");
158 engine
->AddClassEnd();
159 engine
->AddMethod("RegisterLibrary", &AILibrary::Constructor
, 2, "tx");
162 /* static */ SQInteger
AILibrary::Constructor(HSQUIRRELVM vm
)
164 /* Create a new library */
165 AILibrary
*library
= new AILibrary();
167 SQInteger res
= ScriptInfo::Constructor(vm
, library
);
173 /* Cache the category */
174 if (!library
->CheckMethod("GetCategory") || !library
->engine
->CallStringMethodStrdup(*library
->SQ_instance
, "GetCategory", &library
->category
, MAX_GET_OPS
)) {
179 /* Register the Library to the base system */
180 library
->GetScanner()->RegisterScript(library
);