OpenTTD Source 20260206-master-g4d4e37dbf1
ai_instance.hpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#ifndef AI_INSTANCE_HPP
11#define AI_INSTANCE_HPP
12
14
16class AIInstance : public ScriptInstance {
17public:
18 AIInstance();
19
24 void Initialize(class AIInfo *info);
25
26 int GetSetting(const std::string &name) override;
27 ScriptInfo *FindLibrary(const std::string &library, int version) override;
28
29private:
30 void RegisterAPI() override;
31 void Died() override;
33 void LoadDummyScript() override;
34};
35
36#endif /* AI_INSTANCE_HPP */
All static information from an AI like name, version, etc.
Definition ai_info.hpp:16
void RegisterAPI() override
Register all API functions to the VM.
int GetSetting(const std::string &name) override
Get the value of a setting of the current instance.
CommandCallbackData * GetDoCommandCallback() override
Get the callback handling DoCommands in case of networking.
void Initialize(class AIInfo *info)
Initialize the AI and prepare it for its first run.
void Died() override
Tell the script it died.
void LoadDummyScript() override
Load the dummy script.
ScriptInfo * FindLibrary(const std::string &library, int version) override
Find a library.
All static information from an Script like name, version, etc.
ScriptInstance(std::string_view api_name)
Create a new script.
void CommandCallbackData(Commands cmd, const CommandCost &result, const CommandDataBuffer &data, CommandDataBuffer result_data)
Define a callback function for the client, after the command is finished.
The ScriptInstance tracks a script.