2012-09-13 23:42:11 +00:00
|
|
|
#include "StdInc.h"
|
|
|
|
|
|
|
|
#include "../../lib/AI_Base.h"
|
|
|
|
#include "BattleAI.h"
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define strcpy_s(a, b, c) strncpy(a, c, b)
|
|
|
|
#endif
|
|
|
|
|
2014-08-26 12:19:04 +02:00
|
|
|
#ifdef VCMI_ANDROID
|
2014-02-20 22:53:18 +04:00
|
|
|
#define GetGlobalAiVersion BattleAI_GetGlobalAiVersion
|
|
|
|
#define GetAiName BattleAI_GetAiName
|
|
|
|
#define GetNewBattleAI BattleAI_GetNewBattleAI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char *g_cszAiName = "Battle AI";
|
2012-09-13 23:42:11 +00:00
|
|
|
|
|
|
|
extern "C" DLL_EXPORT int GetGlobalAiVersion()
|
|
|
|
{
|
|
|
|
return AI_INTERFACE_VER;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" DLL_EXPORT void GetAiName(char* name)
|
|
|
|
{
|
|
|
|
strcpy_s(name, strlen(g_cszAiName) + 1, g_cszAiName);
|
|
|
|
}
|
|
|
|
|
2015-12-29 05:43:33 +03:00
|
|
|
extern "C" DLL_EXPORT void GetNewBattleAI(std::shared_ptr<CBattleGameInterface> &out)
|
2012-09-13 23:42:11 +00:00
|
|
|
{
|
2015-12-29 05:43:33 +03:00
|
|
|
out = std::make_shared<CBattleAI>();
|
2014-02-20 22:53:18 +04:00
|
|
|
}
|