2011-12-14 00:23:17 +03:00
|
|
|
#include "StdInc.h"
|
|
|
|
|
|
|
|
#include "../../lib/AI_Base.h"
|
2010-12-22 22:14:40 +02:00
|
|
|
#include "StupidAI.h"
|
|
|
|
|
2011-02-28 17:14:26 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define strcpy_s(a, b, c) strncpy(a, c, b)
|
|
|
|
#endif
|
|
|
|
|
2014-08-26 13:19:04 +03:00
|
|
|
#ifdef VCMI_ANDROID
|
2014-02-20 21:53:18 +03: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 22:14:40 +02:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
extern "C" DLL_EXPORT int GetGlobalAiVersion()
|
2010-12-22 22:14:40 +02:00
|
|
|
{
|
|
|
|
return AI_INTERFACE_VER;
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
extern "C" DLL_EXPORT void GetAiName(char* name)
|
2010-12-22 22:14:40 +02:00
|
|
|
{
|
|
|
|
strcpy_s(name, strlen(g_cszAiName) + 1, g_cszAiName);
|
|
|
|
}
|
|
|
|
|
2013-06-23 00:47:51 +03:00
|
|
|
extern "C" DLL_EXPORT void GetNewBattleAI(shared_ptr<CBattleGameInterface> &out)
|
2010-12-22 22:14:40 +02:00
|
|
|
{
|
2013-06-23 00:47:51 +03:00
|
|
|
out = make_shared<CStupidAI>();
|
2014-02-20 21:53:18 +03:00
|
|
|
}
|