2011-12-13 21:23:17 +00:00
|
|
|
#include "StdInc.h"
|
|
|
|
|
|
|
|
#include "../../lib/AI_Base.h"
|
2010-12-22 20:14:40 +00:00
|
|
|
#include "StupidAI.h"
|
|
|
|
|
2011-02-28 15:14:26 +00:00
|
|
|
#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 StupidAI_GetGlobalAiVersion
|
|
|
|
#define GetAiName StupidAI_GetAiName
|
|
|
|
#define GetNewBattleAI StupidAI_GetNewBattleAI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char *g_cszAiName = "Stupid AI 0.1";
|
2010-12-22 20:14:40 +00:00
|
|
|
|
2011-12-13 21:23:17 +00:00
|
|
|
extern "C" DLL_EXPORT int GetGlobalAiVersion()
|
2010-12-22 20:14:40 +00:00
|
|
|
{
|
|
|
|
return AI_INTERFACE_VER;
|
|
|
|
}
|
|
|
|
|
2011-12-13 21:23:17 +00:00
|
|
|
extern "C" DLL_EXPORT void GetAiName(char* name)
|
2010-12-22 20:14:40 +00:00
|
|
|
{
|
|
|
|
strcpy_s(name, strlen(g_cszAiName) + 1, g_cszAiName);
|
|
|
|
}
|
|
|
|
|
2013-06-22 21:47:51 +00:00
|
|
|
extern "C" DLL_EXPORT void GetNewBattleAI(shared_ptr<CBattleGameInterface> &out)
|
2010-12-22 20:14:40 +00:00
|
|
|
{
|
2013-06-22 21:47:51 +00:00
|
|
|
out = make_shared<CStupidAI>();
|
2014-02-20 22:53:18 +04:00
|
|
|
}
|