OpenTTD Source
20241108-master-g80f628063a
|
Implementation of AIInstance. More...
#include "../stdafx.h"
#include "../debug.h"
#include "../error.h"
#include "../script/squirrel_class.hpp"
#include "ai_config.hpp"
#include "ai.hpp"
#include "../script/script_storage.hpp"
#include "../script/script_cmd.h"
#include "../script/script_gui.h"
#include "ai_info.hpp"
#include "ai_instance.hpp"
#include "../script/api/template/template_text.hpp.sq"
#include "../script/api/ai/ai_includes.hpp"
#include "../company_base.h"
#include "../company_func.h"
#include "../safeguards.h"
Go to the source code of this file.
Functions | |
void | CcAI (Commands cmd, const CommandCost &result, const CommandDataBuffer &data, CommandDataBuffer result_data) |
DoCommand callback function for all commands executed by AIs. More... | |
Implementation of AIInstance.
Definition in file ai_instance.cpp.
void CcAI | ( | Commands | cmd, |
const CommandCost & | result, | ||
const CommandDataBuffer & | data, | ||
CommandDataBuffer | result_data | ||
) |
DoCommand callback function for all commands executed by AIs.
cmd | cmd as given to DoCommandPInternal. |
result | The result of the command. |
data | Command data as given to Command<>::Post. |
result_data | Additional returned data from the command. |
Definition at line 106 of file ai_instance.cpp.
Referenced by AIInstance::GetDoCommandCallback().