2010-12-22 20:14:40 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "StupidAI.h"
|
2011-07-05 11:31:26 +00:00
|
|
|
#include <cstring>
|
2010-12-22 20:14:40 +00:00
|
|
|
|
2011-02-28 15:14:26 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define strcpy_s(a, b, c) strncpy(a, c, b)
|
|
|
|
#endif
|
|
|
|
|
2010-12-22 20:14:40 +00:00
|
|
|
const char *g_cszAiName = "Stupid AI 0.1";
|
|
|
|
|
|
|
|
extern "C" DLL_F_EXPORT void GetAiName(char* name)
|
|
|
|
{
|
|
|
|
strcpy_s(name, strlen(g_cszAiName) + 1, g_cszAiName);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" DLL_F_EXPORT CBattleGameInterface* GetNewBattleAI()
|
|
|
|
{
|
|
|
|
return new CStupidAI();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" DLL_F_EXPORT void ReleaseBattleAI(CBattleGameInterface* i)
|
|
|
|
{
|
|
|
|
delete (CStupidAI*)i;
|
2010-12-26 14:34:11 +00:00
|
|
|
}
|