Files
@ r28403:d4cdcb69255f
Branch filter:
Location: cpp/openttd-patchpack/source/src/ai/ai_instance.hpp - annotation
r28403:d4cdcb69255f
1.3 KiB
text/x-c++hdr
Fix: race-condition when quitting the game with libcurl (#11688)
There could be a callback in _new_http_callbacks that is not
processed yet. All callbacks in _http_callbacks were cancelled,
but not the ones in _new_http_callbacks
There could be a callback in _new_http_callbacks that is not
processed yet. All callbacks in _http_callbacks were cancelled,
but not the ones in _new_http_callbacks
r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 r18506:b0c2bbd32450 r10696:8dfe83e30d01 r15598:7c4c457ebe78 r18506:b0c2bbd32450 r10696:8dfe83e30d01 r18363:f8c9df886df8 r18363:f8c9df886df8 r18363:f8c9df886df8 r18363:f8c9df886df8 r17616:3ed8a6b01283 r17616:3ed8a6b01283 r18363:f8c9df886df8 r10696:8dfe83e30d01 r27367:d55d6f0719f9 r27354:7a607c98c943 r18513:8c2a4637defb r18506:b0c2bbd32450 r23497:a0ab44ebd2fa r23497:a0ab44ebd2fa r26122:02442b0744ee r23497:a0ab44ebd2fa r10696:8dfe83e30d01 r10696:8dfe83e30d01 r10696:8dfe83e30d01 | /*
* This file is part of OpenTTD.
* 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.
* 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.
* 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/>.
*/
/** @file ai_instance.hpp The AIInstance tracks an AI. */
#ifndef AI_INSTANCE_HPP
#define AI_INSTANCE_HPP
#include "../script/script_instance.hpp"
/** Runtime information about an AI like a pointer to the squirrel vm and the current state. */
class AIInstance : public ScriptInstance {
public:
AIInstance();
/**
* Initialize the AI and prepare it for its first run.
* @param info The AI to create the instance of.
*/
void Initialize(class AIInfo *info);
int GetSetting(const std::string &name) override;
ScriptInfo *FindLibrary(const std::string &library, int version) override;
private:
void RegisterAPI() override;
void Died() override;
CommandCallbackData *GetDoCommandCallback() override;
void LoadDummyScript() override;
};
#endif /* AI_INSTANCE_HPP */
|