1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-28 23:06:24 +02:00
vcmi/CGameInterface.cpp

59 lines
1.5 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "CGameInterface.h"
2007-10-21 19:45:13 +03:00
#ifdef _WIN32
#include <windows.h> //for .dll libs
#else
#include <dlfcn.h>
#endif
/*
* 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 19:45:13 +03:00
CGlobalAI * CAIHandler::getNewAI(CCallback * cb, std::string dllname)
{
char temp[50];
2007-10-21 19:45:13 +03:00
CGlobalAI * ret=NULL;
2009-03-07 00:11:17 +02:00
CGlobalAI*(*getAI)();
void(*getName)(char*);
2007-10-21 19:45:13 +03:00
#ifdef _WIN32
2009-05-06 06:33:57 +03:00
dllname = "AI/"+dllname+".dll";
2007-10-21 19:45:13 +03:00
HINSTANCE dll = LoadLibraryA(dllname.c_str());
if (!dll)
{
tlog1 << "Cannot open AI library ("<<dllname<<"). Throwing..."<<std::endl;
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-05-06 06:33:57 +03:00
dllname = "AI/"+dllname+".so";
void *dll = dlopen(dllname.c_str(), RTLD_LOCAL | RTLD_LAZY);
if (!dll)
{
tlog1 << "Cannot open AI library ("<<dllname<<"). Throwing..."<<std::endl;
throw new std::string("Cannot open AI library");
}
getName = (void(*)(char*))dlsym(dll,"GetAiName");
getAI = (CGlobalAI*(*)())dlsym(dll,"GetNewAI");
#endif
getName(temp);
2009-05-06 06:33:57 +03:00
tlog0 << "Loaded AI named " << temp << std::endl;
2007-10-21 19:45:13 +03:00
ret = getAI();
if(!ret)
tlog1 << "Cannot get AI!\n";
ret->dllName = dllname;
2007-10-21 19:45:13 +03:00
return ret;
}