2012-02-14 21:04:45 +03:00
|
|
|
#include "StdInc.h"
|
|
|
|
#include "VCAI.h"
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define strcpy_s(a, b, c) strncpy(a, c, b)
|
|
|
|
#endif
|
|
|
|
|
2014-02-20 21:53:18 +03:00
|
|
|
#ifdef __ANDROID__
|
|
|
|
#define GetGlobalAiVersion VCAI_GetGlobalAiVersion
|
|
|
|
#define GetAiName VCAI_GetAiName
|
|
|
|
#define GetNewAI VCAI_GetNewAI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const char *g_cszAiName = "VCAI";
|
2012-02-14 21:04:45 +03: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);
|
|
|
|
}
|
|
|
|
|
2013-06-23 00:47:51 +03:00
|
|
|
extern "C" DLL_EXPORT void GetNewAI(shared_ptr<CGlobalAI> &out)
|
2012-02-14 21:04:45 +03:00
|
|
|
{
|
2013-06-23 00:47:51 +03:00
|
|
|
out = make_shared<VCAI>();
|
2014-02-20 21:53:18 +03:00
|
|
|
}
|