2007-07-28 12:44:10 +03:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "CGameInterface.h"
|
2008-08-02 18:08:03 +03:00
|
|
|
#include "CAdvmapInterface.h"
|
2007-08-04 00:47:34 +03:00
|
|
|
#include "CMessage.h"
|
2007-09-18 16:30:26 +03:00
|
|
|
#include "mapHandler.h"
|
2007-08-04 00:47:34 +03:00
|
|
|
#include "SDL_Extensions.h"
|
2007-08-04 22:01:22 +03:00
|
|
|
#include "SDL_framerate.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "CCursorHandler.h"
|
2007-09-13 16:34:59 +03:00
|
|
|
#include "CCallback.h"
|
2007-09-18 16:30:26 +03:00
|
|
|
#include "SDL_Extensions.h"
|
2007-09-30 19:16:00 +03:00
|
|
|
#include "hch/CLodHandler.h"
|
2007-10-05 23:38:14 +03:00
|
|
|
#include "CPathfinder.h"
|
2007-09-30 19:16:00 +03:00
|
|
|
#include <sstream>
|
2007-11-19 00:58:28 +02:00
|
|
|
#include "hch/CHeroHandler.h"
|
|
|
|
#include "SDL_framerate.h"
|
2008-08-02 18:08:03 +03:00
|
|
|
#include "AI/EmptyAI/CEmptyAI.h"
|
2007-10-21 19:45:13 +03:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h> //for .dll libs
|
|
|
|
#else
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
2007-07-28 12:44:10 +03:00
|
|
|
using namespace CSDL_Ext;
|
2007-10-21 19:45:13 +03:00
|
|
|
|
|
|
|
CGlobalAI * CAIHandler::getNewAI(CCallback * cb, std::string dllname)
|
|
|
|
{
|
2008-11-15 02:55:19 +02:00
|
|
|
char temp[50];
|
2007-10-21 19:45:13 +03:00
|
|
|
dllname = "AI/"+dllname;
|
|
|
|
CGlobalAI * ret=NULL;
|
2008-12-21 21:17:35 +02:00
|
|
|
CGlobalAI*(*getAI)(); //TODO use me
|
|
|
|
void(*getName)(char*); //TODO use me
|
2008-08-02 18:08:03 +03:00
|
|
|
|
2007-10-21 19:45:13 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
HINSTANCE dll = LoadLibraryA(dllname.c_str());
|
|
|
|
if (!dll)
|
|
|
|
{
|
2008-09-19 15:09:15 +03:00
|
|
|
tlog1 << "Cannot open AI library ("<<dllname<<"). Throwing..."<<std::endl;
|
2008-11-15 02:55:19 +02:00
|
|
|
throw new std::string("Cannot open AI library");
|
2007-10-21 19:45:13 +03:00
|
|
|
}
|
|
|
|
//int len = dllname.size()+1;
|
|
|
|
getName = (void(*)(char*))GetProcAddress(dll,"GetAiName");
|
|
|
|
getAI = (CGlobalAI*(*)())GetProcAddress(dll,"GetNewAI");
|
|
|
|
#else
|
2009-01-31 04:36:44 +02:00
|
|
|
void *dll = dlopen(dllname.c_str(), RTLD_LOCAL | RTLD_LAZY);
|
|
|
|
getName = (void(*)(char*))dlsym(dll,"GetAiName");
|
|
|
|
getAI = (CGlobalAI*(*)())dlsym(dll,"GetNewAI");
|
2007-10-21 19:45:13 +03:00
|
|
|
; //TODO: handle AI library on Linux
|
2008-08-02 18:08:03 +03:00
|
|
|
#endif
|
2009-01-31 04:36:44 +02:00
|
|
|
getName(temp);
|
2008-09-19 15:09:15 +03:00
|
|
|
tlog0 << "Loaded .dll with AI named " << temp << std::endl;
|
2007-10-21 19:45:13 +03:00
|
|
|
ret = getAI();
|
2009-01-31 04:36:44 +02:00
|
|
|
|
2007-10-21 19:45:13 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
//CGlobalAI::CGlobalAI()
|
|
|
|
//{
|
|
|
|
//}
|