2007-07-28 09:44:10 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "CGameInterface.h"
|
2007-10-21 16:45:13 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2009-08-17 13:08:05 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN //excludes rarely used stuff from windows headers - delete this line if something is missing
|
2007-10-21 16:45:13 +00:00
|
|
|
#include <windows.h> //for .dll libs
|
|
|
|
#else
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
2009-04-15 14:03:31 +00:00
|
|
|
/*
|
|
|
|
* CGameInterface.cpp, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-10-21 16:45:13 +00:00
|
|
|
CGlobalAI * CAIHandler::getNewAI(CCallback * cb, std::string dllname)
|
|
|
|
{
|
2008-11-15 00:55:19 +00:00
|
|
|
char temp[50];
|
2007-10-21 16:45:13 +00:00
|
|
|
CGlobalAI * ret=NULL;
|
2009-03-06 22:11:17 +00:00
|
|
|
CGlobalAI*(*getAI)();
|
|
|
|
void(*getName)(char*);
|
2008-08-02 15:08:03 +00:00
|
|
|
|
2009-07-18 03:13:13 +00:00
|
|
|
std::string dllPath;
|
|
|
|
|
2007-10-21 16:45:13 +00:00
|
|
|
#ifdef _WIN32
|
2009-07-18 03:13:13 +00:00
|
|
|
dllPath = "AI/"+dllname+".dll";
|
|
|
|
HINSTANCE dll = LoadLibraryA(dllPath.c_str());
|
2007-10-21 16:45:13 +00:00
|
|
|
if (!dll)
|
|
|
|
{
|
2009-07-18 03:13:13 +00:00
|
|
|
tlog1 << "Cannot open AI library ("<<dllPath<<"). Throwing..."<<std::endl;
|
2008-11-15 00:55:19 +00:00
|
|
|
throw new std::string("Cannot open AI library");
|
2007-10-21 16:45:13 +00:00
|
|
|
}
|
|
|
|
//int len = dllname.size()+1;
|
|
|
|
getName = (void(*)(char*))GetProcAddress(dll,"GetAiName");
|
|
|
|
getAI = (CGlobalAI*(*)())GetProcAddress(dll,"GetNewAI");
|
|
|
|
#else
|
2009-10-04 02:02:45 +00:00
|
|
|
dllPath = LIB_DIR "/" + dllname + ".so";
|
2009-07-18 03:13:13 +00:00
|
|
|
void *dll = dlopen(dllPath.c_str(), RTLD_LOCAL | RTLD_LAZY);
|
2009-04-13 18:52:20 +00:00
|
|
|
if (!dll)
|
|
|
|
{
|
2009-07-18 03:13:13 +00:00
|
|
|
tlog1 << "Cannot open AI library ("<<dllPath<<"). Throwing..."<<std::endl;
|
2009-04-13 18:52:20 +00:00
|
|
|
throw new std::string("Cannot open AI library");
|
|
|
|
}
|
2009-01-31 02:36:44 +00:00
|
|
|
getName = (void(*)(char*))dlsym(dll,"GetAiName");
|
|
|
|
getAI = (CGlobalAI*(*)())dlsym(dll,"GetNewAI");
|
2008-08-02 15:08:03 +00:00
|
|
|
#endif
|
2009-01-31 02:36:44 +00:00
|
|
|
getName(temp);
|
2009-05-06 03:33:57 +00:00
|
|
|
tlog0 << "Loaded AI named " << temp << std::endl;
|
2007-10-21 16:45:13 +00:00
|
|
|
ret = getAI();
|
2009-03-28 18:46:20 +00:00
|
|
|
|
|
|
|
if(!ret)
|
|
|
|
tlog1 << "Cannot get AI!\n";
|
|
|
|
|
|
|
|
ret->dllName = dllname;
|
2007-10-21 16:45:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|