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
|
|
|
|
|
2010-12-22 22:14:40 +02:00
|
|
|
const char *g_cszAiName = "Stupid AI 0.1";
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
extern "C" DLL_EXPORT char* GetAiNameS()
|
2010-12-22 22:14:40 +02:00
|
|
|
{
|
|
|
|
// need to be defined
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
extern "C" DLL_EXPORT CBattleGameInterface* GetNewBattleAI()
|
2010-12-22 22:14:40 +02:00
|
|
|
{
|
|
|
|
return new CStupidAI();
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
extern "C" DLL_EXPORT void ReleaseBattleAI(CBattleGameInterface* i)
|
2010-12-22 22:14:40 +02:00
|
|
|
{
|
|
|
|
delete (CStupidAI*)i;
|
2010-12-26 16:34:11 +02:00
|
|
|
}
|