1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/AI/Nullkiller/Behaviors/GatherArmyBehavior.cpp

301 lines
7.0 KiB
C++
Raw Normal View History

2021-05-16 13:19:07 +02:00
/*
* GatherArmyBehavior.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"
2021-05-16 14:39:38 +02:00
#include "../AIGateway.h"
2021-05-16 13:19:07 +02:00
#include "../Engine/Nullkiller.h"
#include "../Goals/ExecuteHeroChain.h"
#include "../Goals/Composition.h"
#include "../Markers/HeroExchange.h"
#include "../Markers/ArmyUpgrade.h"
2021-05-16 13:19:07 +02:00
#include "GatherArmyBehavior.h"
#include "../AIUtility.h"
#include "lib/mapping/CMap.h" //for victory conditions
#include "lib/CPathfinder.h"
2022-09-26 20:01:07 +02:00
namespace NKAI
{
2021-05-16 13:19:07 +02:00
extern boost::thread_specific_ptr<CCallback> cb;
2021-05-16 14:39:38 +02:00
extern boost::thread_specific_ptr<AIGateway> ai;
2021-05-16 13:19:07 +02:00
using namespace Goals;
std::string GatherArmyBehavior::toString() const
{
return "Gather army";
}
Goals::TGoalVec GatherArmyBehavior::decompose() const
2021-05-16 13:19:07 +02:00
{
Goals::TGoalVec tasks;
auto heroes = cb->getHeroesInfo();
if(heroes.empty())
{
return tasks;
}
2021-05-16 13:19:07 +02:00
for(const CGHeroInstance * hero : heroes)
{
2023-03-05 15:42:15 +02:00
if(ai->nullkiller->heroManager->getHeroRole(hero) == HeroRole::MAIN)
2021-05-16 13:19:07 +02:00
{
vstd::concatenate(tasks, deliverArmyToHero(hero));
2021-05-16 13:19:07 +02:00
}
}
2021-05-16 13:19:07 +02:00
auto towns = cb->getTownsInfo();
for(const CGTownInstance * town : towns)
{
vstd::concatenate(tasks, upgradeArmy(town));
}
return tasks;
}
Goals::TGoalVec GatherArmyBehavior::deliverArmyToHero(const CGHeroInstance * hero) const
{
Goals::TGoalVec tasks;
const int3 pos = hero->visitablePos();
2021-05-16 13:19:07 +02:00
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 1
logAi->trace("Checking ways to gaher army for hero %s, %s", hero->getObjectName(), pos.toString());
2021-05-16 13:19:07 +02:00
#endif
auto paths = ai->nullkiller->pathfinder->getPathInfo(pos);
2021-05-16 13:19:07 +02:00
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 1
2021-05-16 13:56:49 +02:00
logAi->trace("Gather army found %d paths", paths.size());
#endif
for(const AIPath & path : paths)
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Path found %s", path.toString());
2021-05-16 13:19:07 +02:00
#endif
if(path.containsHero(hero)) continue;
2021-05-16 13:19:07 +02:00
2023-03-05 15:42:15 +02:00
if(path.turn() == 0 && hero->inTownGarrison)
{
#if NKAI_TRACE_LEVEL >= 1
logAi->trace("Skipping garnisoned hero %s, %s", hero->getObjectName(), pos.toString());
#endif
continue;
}
if(ai->nullkiller->dangerHitMap->enemyCanKillOurHeroesAlongThePath(path))
2021-05-16 13:19:07 +02:00
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Ignore path. Target hero can be killed by enemy. Our power %lld", path.heroArmy->getArmyStrength());
2021-05-16 13:19:07 +02:00
#endif
continue;
}
2021-05-16 13:19:07 +02:00
if(ai->nullkiller->arePathHeroesLocked(path))
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Ignore path because of locked hero");
#endif
continue;
}
2021-05-16 13:19:07 +02:00
HeroExchange heroExchange(hero, path);
float armyValue = (float)heroExchange.getReinforcementArmyStrength() / hero->getArmyStrength();
// avoid transferring very small amount of army
if(armyValue < 0.1f)
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Army value is too small.");
#endif
continue;
}
// avoid trying to move bigger army to the weaker one.
if(armyValue > 1)
{
2023-03-05 15:42:15 +02:00
bool hasOtherMainInPath = false;
for(auto node : path.nodes)
{
if(!node.targetHero) continue;
auto heroRole = ai->nullkiller->heroManager->getHeroRole(node.targetHero);
if(heroRole == HeroRole::MAIN)
{
hasOtherMainInPath = true;
break;
}
}
if(hasOtherMainInPath)
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
2023-03-05 15:42:15 +02:00
logAi->trace("Army value is too large.");
#endif
2023-03-05 15:42:15 +02:00
continue;
}
}
auto danger = path.getTotalDanger();
auto isSafe = isSafeToVisit(hero, path.heroArmy, danger);
2021-05-16 13:19:07 +02:00
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace(
"It is %s to visit %s by %s with army %lld, danger %lld and army loss %lld",
isSafe ? "safe" : "not safe",
2023-02-28 09:07:59 +02:00
hero->getObjectName(),
path.targetHero->getObjectName(),
path.getHeroStrength(),
danger,
path.getTotalArmyLoss());
#endif
if(isSafe)
{
Composition composition;
ExecuteHeroChain exchangePath(path, hero);
exchangePath.closestWayRatio = 1;
composition.addNext(heroExchange);
composition.addNext(exchangePath);
auto blockedAction = path.getFirstBlockedAction();
if(blockedAction)
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Action is blocked. Considering decomposition.");
#endif
composition.addNext(blockedAction->decompose(path.targetHero));
}
tasks.push_back(sptr(composition));
}
}
return tasks;
}
2021-05-16 13:22:37 +02:00
Goals::TGoalVec GatherArmyBehavior::upgradeArmy(const CGTownInstance * upgrader) const
{
Goals::TGoalVec tasks;
const int3 pos = upgrader->visitablePos();
2021-05-16 14:39:38 +02:00
TResources availableResources = ai->nullkiller->getFreeResources();
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 1
logAi->trace("Checking ways to upgrade army in town %s, %s", upgrader->getObjectName(), pos.toString());
#endif
auto paths = ai->nullkiller->pathfinder->getPathInfo(pos);
std::vector<std::shared_ptr<ExecuteHeroChain>> waysToVisitObj;
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 1
logAi->trace("Found %d paths", paths.size());
2021-05-16 13:19:07 +02:00
#endif
for(const AIPath & path : paths)
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Path found %s", path.toString());
2021-05-16 13:19:07 +02:00
#endif
2023-03-05 15:42:15 +02:00
if(upgrader->visitingHero && upgrader->visitingHero.get() != path.targetHero)
2021-05-16 13:22:37 +02:00
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
2021-05-16 13:22:37 +02:00
logAi->trace("Ignore path. Town has visiting hero.");
#endif
continue;
}
2021-05-16 13:19:07 +02:00
if(ai->nullkiller->arePathHeroesLocked(path))
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Ignore path because of locked hero");
#endif
continue;
}
if(path.getFirstBlockedAction())
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
// TODO: decomposition?
logAi->trace("Ignore path. Action is blocked.");
2021-05-16 13:19:07 +02:00
#endif
continue;
}
2021-05-16 13:19:07 +02:00
2023-03-05 15:42:15 +02:00
auto heroRole = ai->nullkiller->heroManager->getHeroRole(path.targetHero);
if(heroRole == HeroRole::SCOUT
&& ai->nullkiller->dangerHitMap->enemyCanKillOurHeroesAlongThePath(path))
{
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Ignore path. Target hero can be killed by enemy. Our power %lld", path.heroArmy->getArmyStrength());
#endif
continue;
}
2021-05-16 13:19:07 +02:00
auto upgrade = ai->nullkiller->armyManager->calculateCreaturesUpgrade(path.heroArmy, upgrader, availableResources);
2021-05-16 13:19:07 +02:00
2023-03-11 13:54:05 +02:00
if(!upgrader->garrisonHero && ai->nullkiller->heroManager->getHeroRole(path.targetHero) == HeroRole::MAIN)
2023-02-28 09:07:59 +02:00
{
2023-03-05 15:42:15 +02:00
upgrade.upgradeValue +=
2023-03-11 13:54:05 +02:00
ai->nullkiller->armyManager->howManyReinforcementsCanGet(
path.targetHero,
path.heroArmy,
upgrader->getUpperArmy());
2023-02-28 09:07:59 +02:00
}
2023-03-05 15:42:15 +02:00
auto armyValue = (float)upgrade.upgradeValue / path.getHeroStrength();
if(armyValue < 0.25f || upgrade.upgradeValue < 300) // avoid small upgrades
{
#if NKAI_TRACE_LEVEL >= 2
logAi->trace("Ignore path. Army value is too small (%f)", armyValue);
#endif
continue;
2023-03-05 15:42:15 +02:00
}
2021-05-16 13:19:07 +02:00
auto danger = path.getTotalDanger();
2021-05-16 13:19:07 +02:00
auto isSafe = isSafeToVisit(path.targetHero, path.heroArmy, danger);
2021-05-16 13:19:07 +02:00
2022-09-26 20:01:07 +02:00
#if NKAI_TRACE_LEVEL >= 2
logAi->trace(
"It is %s to visit %s by %s with army %lld, danger %lld and army loss %lld",
isSafe ? "safe" : "not safe",
upgrader->getObjectName(),
2023-02-28 09:07:59 +02:00
path.targetHero->getObjectName(),
path.getHeroStrength(),
danger,
path.getTotalArmyLoss());
2021-05-16 13:19:07 +02:00
#endif
if(isSafe)
{
ExecuteHeroChain newWay(path, upgrader);
newWay.closestWayRatio = 1;
tasks.push_back(sptr(Composition().addNext(ArmyUpgrade(path, upgrader, upgrade)).addNext(newWay)));
2021-05-16 13:19:07 +02:00
}
}
2021-05-16 13:19:07 +02:00
return tasks;
}
2022-09-26 20:01:07 +02:00
}