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
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2015-12-29 04:43:33 +02:00
|
|
|
extern "C" DLL_EXPORT void GetNewAI(std::shared_ptr<CGlobalAI> &out)
|
2012-02-14 21:04:45 +03:00
|
|
|
{
|
2015-12-29 04:43:33 +02:00
|
|
|
out = std::make_shared<VCAI>();
|
2017-05-25 19:57:20 +02:00
|
|
|
}
|