mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
0b70baa95e
* Indirect spell effects loading * Json serializer improvements * spell->canBeCastAt do not allow useless cast for any spell * Added proxy caster class for spell-created obstacles * Handle damage from spell-created obstacles inside mechanics * Experimental GameState integration/regression tests * Ignore mod settings and load only "vcmi" mod when running tests * fixed https://bugs.vcmi.eu/view.php?id=2765 (with tests) * Huge improvements of BattleAI regarding spell casts * AI can cast almost any combat spell except TELEPORT, SACRIFICE and obstacle placement spells. * Possible fix for https://bugs.vcmi.eu/view.php?id=1811 * CStack factored out to several classes * [Battle] Allowed RETURN_AFTER_STRIKE effect on server side to be optional * [Battle] Allowed BattleAction have multiple destinations * [Spells] Converted limit|immunity to target condition * [Spells] Use partial configuration reload for backward compatibility handling * [Tests] Started tests for CUnitState * Partial fixes of fire shield effect * [Battle] Do HP calculations in 64 bits * [BattleAI] Use threading for spell cast evaluation * [BattleAI] Made AI be able to evaluate modified turn order (on hypothetical battle state) * Implemented https://bugs.vcmi.eu/view.php?id=2811 * plug rare freeze when hypnotized unit shots vertically * Correctly apply ONLY_MELEE_FIGHT / ONLY_DISTANCE_FIGHT for unit damage, attack & defense * [BattleAI] Try to not waste a cast if battle is actually won already * Extended JsonSerializeFormat API * fixed https://bugs.vcmi.eu/view.php?id=2847 * Any unit effect can be now chained (not only damage like Chain Lightning) ** only damage effect for now actually uses "chainFactor" * Possible quick fix for https://bugs.vcmi.eu/view.php?id=2860
270 lines
6.8 KiB
C++
270 lines
6.8 KiB
C++
/*
|
|
* 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
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
#include "CGameInterface.h"
|
|
|
|
#include "CStack.h"
|
|
#include "VCMIDirs.h"
|
|
|
|
#ifdef VCMI_WINDOWS
|
|
#include <windows.h> //for .dll libs
|
|
#elif !defined VCMI_ANDROID
|
|
#include <dlfcn.h>
|
|
#endif
|
|
|
|
#include "serializer/BinaryDeserializer.h"
|
|
#include "serializer/BinarySerializer.h"
|
|
|
|
#ifdef VCMI_ANDROID
|
|
|
|
#include "AI/VCAI/VCAI.h"
|
|
#include "AI/BattleAI/BattleAI.h"
|
|
|
|
#endif
|
|
|
|
template<typename rett>
|
|
std::shared_ptr<rett> createAny(const boost::filesystem::path & libpath, const std::string & methodName)
|
|
{
|
|
#ifdef VCMI_ANDROID
|
|
// android currently doesn't support loading libs dynamically, so the access to the known libraries
|
|
// is possible only via specializations of this template
|
|
throw std::runtime_error("Could not resolve ai library " + libpath.generic_string());
|
|
#else
|
|
typedef void(* TGetAIFun)(std::shared_ptr<rett> &);
|
|
typedef void(* TGetNameFun)(char *);
|
|
|
|
char temp[150];
|
|
|
|
TGetAIFun getAI = nullptr;
|
|
TGetNameFun getName = nullptr;
|
|
|
|
#ifdef VCMI_WINDOWS
|
|
HMODULE dll = LoadLibraryW(libpath.c_str());
|
|
if (dll)
|
|
{
|
|
getName = (TGetNameFun)GetProcAddress(dll, "GetAiName");
|
|
getAI = (TGetAIFun)GetProcAddress(dll, methodName.c_str());
|
|
}
|
|
#else // !VCMI_WINDOWS
|
|
void *dll = dlopen(libpath.string().c_str(), RTLD_LOCAL | RTLD_LAZY);
|
|
if (dll)
|
|
{
|
|
getName = (TGetNameFun)dlsym(dll, "GetAiName");
|
|
getAI = (TGetAIFun)dlsym(dll, methodName.c_str());
|
|
}
|
|
#endif // VCMI_WINDOWS
|
|
|
|
if (!dll)
|
|
{
|
|
logGlobal->error("Cannot open dynamic library (%s). Throwing...", libpath.string());
|
|
throw std::runtime_error("Cannot open dynamic library");
|
|
}
|
|
else if(!getName || !getAI)
|
|
{
|
|
logGlobal->error("%s does not export method %s", libpath.string(), methodName);
|
|
#ifdef VCMI_WINDOWS
|
|
FreeLibrary(dll);
|
|
#else
|
|
dlclose(dll);
|
|
#endif
|
|
throw std::runtime_error("Cannot find method " + methodName);
|
|
}
|
|
|
|
getName(temp);
|
|
logGlobal->info("Loaded %s", temp);
|
|
|
|
std::shared_ptr<rett> ret;
|
|
getAI(ret);
|
|
if(!ret)
|
|
logGlobal->error("Cannot get AI!");
|
|
|
|
return ret;
|
|
#endif //!VCMI_ANDROID
|
|
}
|
|
|
|
#ifdef VCMI_ANDROID
|
|
|
|
template<>
|
|
std::shared_ptr<CGlobalAI> createAny(const boost::filesystem::path & libpath, const std::string & methodName)
|
|
{
|
|
return std::make_shared<VCAI>();
|
|
}
|
|
|
|
template<>
|
|
std::shared_ptr<CBattleGameInterface> createAny(const boost::filesystem::path & libpath, const std::string & methodName)
|
|
{
|
|
return std::make_shared<CBattleAI>();
|
|
}
|
|
|
|
#endif
|
|
|
|
template<typename rett>
|
|
std::shared_ptr<rett> createAnyAI(std::string dllname, const std::string & methodName)
|
|
{
|
|
logGlobal->info("Opening %s", dllname);
|
|
|
|
const boost::filesystem::path filePath = VCMIDirs::get().fullLibraryPath("AI", dllname);
|
|
auto ret = createAny<rett>(filePath, methodName);
|
|
ret->dllName = std::move(dllname);
|
|
return ret;
|
|
}
|
|
|
|
std::shared_ptr<CGlobalAI> CDynLibHandler::getNewAI(std::string dllname)
|
|
{
|
|
return createAnyAI<CGlobalAI>(dllname, "GetNewAI");
|
|
}
|
|
|
|
std::shared_ptr<CBattleGameInterface> CDynLibHandler::getNewBattleAI(std::string dllname)
|
|
{
|
|
return createAnyAI<CBattleGameInterface>(dllname, "GetNewBattleAI");
|
|
}
|
|
|
|
std::shared_ptr<CScriptingModule> CDynLibHandler::getNewScriptingModule(std::string dllname)
|
|
{
|
|
return createAny<CScriptingModule>(dllname, "GetNewModule");
|
|
}
|
|
|
|
BattleAction CGlobalAI::activeStack(const CStack * stack)
|
|
{
|
|
BattleAction ba;
|
|
ba.actionType = EActionType::DEFEND;
|
|
ba.stackNumber = stack->ID;
|
|
return ba;
|
|
}
|
|
|
|
CGlobalAI::CGlobalAI()
|
|
{
|
|
human = false;
|
|
}
|
|
|
|
void CAdventureAI::battleNewRound(int round)
|
|
{
|
|
battleAI->battleNewRound(round);
|
|
}
|
|
|
|
void CAdventureAI::battleCatapultAttacked(const CatapultAttack & ca)
|
|
{
|
|
battleAI->battleCatapultAttacked(ca);
|
|
}
|
|
|
|
void CAdventureAI::battleStart(const CCreatureSet * army1, const CCreatureSet * army2, int3 tile,
|
|
const CGHeroInstance * hero1, const CGHeroInstance * hero2, bool side)
|
|
{
|
|
assert(!battleAI);
|
|
assert(cbc);
|
|
battleAI = CDynLibHandler::getNewBattleAI(getBattleAIName());
|
|
battleAI->init(cbc);
|
|
battleAI->battleStart(army1, army2, tile, hero1, hero2, side);
|
|
}
|
|
|
|
void CAdventureAI::battleStacksAttacked(const std::vector<BattleStackAttacked> & bsa, const std::vector<MetaString> & battleLog)
|
|
{
|
|
battleAI->battleStacksAttacked(bsa, battleLog);
|
|
}
|
|
|
|
void CAdventureAI::actionStarted(const BattleAction & action)
|
|
{
|
|
battleAI->actionStarted(action);
|
|
}
|
|
|
|
void CAdventureAI::battleNewRoundFirst(int round)
|
|
{
|
|
battleAI->battleNewRoundFirst(round);
|
|
}
|
|
|
|
void CAdventureAI::actionFinished(const BattleAction & action)
|
|
{
|
|
battleAI->actionFinished(action);
|
|
}
|
|
|
|
void CAdventureAI::battleStacksEffectsSet(const SetStackEffect & sse)
|
|
{
|
|
battleAI->battleStacksEffectsSet(sse);
|
|
}
|
|
|
|
void CAdventureAI::battleObstaclesChanged(const std::vector<ObstacleChanges> & obstacles)
|
|
{
|
|
battleAI->battleObstaclesChanged(obstacles);
|
|
}
|
|
|
|
void CAdventureAI::battleStackMoved(const CStack * stack, std::vector<BattleHex> dest, int distance)
|
|
{
|
|
battleAI->battleStackMoved(stack, dest, distance);
|
|
}
|
|
|
|
void CAdventureAI::battleAttack(const BattleAttack * ba)
|
|
{
|
|
battleAI->battleAttack(ba);
|
|
}
|
|
|
|
void CAdventureAI::battleSpellCast(const BattleSpellCast * sc)
|
|
{
|
|
battleAI->battleSpellCast(sc);
|
|
}
|
|
|
|
void CAdventureAI::battleEnd(const BattleResult * br)
|
|
{
|
|
battleAI->battleEnd(br);
|
|
battleAI.reset();
|
|
}
|
|
|
|
void CAdventureAI::battleUnitsChanged(const std::vector<UnitChanges> & units, const std::vector<CustomEffectInfo> & customEffects, const std::vector<MetaString> & battleLog)
|
|
{
|
|
battleAI->battleUnitsChanged(units, customEffects, battleLog);
|
|
}
|
|
|
|
BattleAction CAdventureAI::activeStack(const CStack * stack)
|
|
{
|
|
return battleAI->activeStack(stack);
|
|
}
|
|
|
|
void CAdventureAI::yourTacticPhase(int distance)
|
|
{
|
|
battleAI->yourTacticPhase(distance);
|
|
}
|
|
|
|
void CAdventureAI::saveGame(BinarySerializer & h, const int version) /*saving */
|
|
{
|
|
LOG_TRACE_PARAMS(logAi, "version '%i'", version);
|
|
CGlobalAI::saveGame(h, version);
|
|
bool hasBattleAI = static_cast<bool>(battleAI);
|
|
h & hasBattleAI;
|
|
if(hasBattleAI)
|
|
{
|
|
h & std::string(battleAI->dllName);
|
|
battleAI->saveGame(h, version);
|
|
}
|
|
}
|
|
|
|
void CAdventureAI::loadGame(BinaryDeserializer & h, const int version) /*loading */
|
|
{
|
|
LOG_TRACE_PARAMS(logAi, "version '%i'", version);
|
|
CGlobalAI::loadGame(h, version);
|
|
bool hasBattleAI = false;
|
|
h & hasBattleAI;
|
|
if(hasBattleAI)
|
|
{
|
|
std::string dllName;
|
|
h & dllName;
|
|
battleAI = CDynLibHandler::getNewBattleAI(dllName);
|
|
assert(cbc); //it should have been set by the one who new'ed us
|
|
battleAI->init(cbc);
|
|
//battleAI->loadGame(h, version);
|
|
}
|
|
}
|
|
|
|
void CBattleGameInterface::saveGame(BinarySerializer & h, const int version)
|
|
{
|
|
}
|
|
|
|
void CBattleGameInterface::loadGame(BinaryDeserializer & h, const int version)
|
|
{
|
|
}
|