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_config.hpp AIConfig stores the configuration settings of every AI. */
15 #include "../script/script_config.hpp"
16 #include "../company_type.h"
18 class AIConfig
: public ScriptConfig
{
21 * Get the config of a company.
23 static AIConfig
*GetConfig(CompanyID company
, ScriptSettingSource source
= SSS_DEFAULT
);
29 AIConfig(const AIConfig
*config
) :
33 class AIInfo
*GetInfo() const;
35 /* virtual */ int GetSetting(const char *name
) const;
36 /* virtual */ void SetSetting(const char *name
, int value
);
39 * When ever the AI Scanner is reloaded, all infos become invalid. This
40 * function tells AIConfig about this.
41 * @param force_exact_match If true try to find the exact same version
42 * as specified. If false any version is ok.
43 * @return \c true if the reset was successful, \c false if the AI was no longer
46 bool ResetInfo(bool force_exact_match
);
49 /* virtual */ void PushExtraConfigList();
50 /* virtual */ void ClearConfigList();
51 /* virtual */ ScriptInfo
*FindInfo(const char *name
, int version
, bool force_exact_match
);
54 #endif /* AI_CONFIG_HPP */