1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/AI/Nullkiller/Pathfinding/AIPathfinder.cpp

87 lines
1.9 KiB
C++
Raw Normal View History

2021-05-15 18:22:44 +02:00
/*
* AIPathfinder.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 "AIPathfinder.h"
#include "AIPathfinderConfig.h"
#include "../../../CCallback.h"
#include "../../../lib/mapping/CMap.h"
2021-05-15 18:22:49 +02:00
std::shared_ptr<AINodeStorage> AIPathfinder::storage;
2021-05-15 18:22:44 +02:00
AIPathfinder::AIPathfinder(CPlayerSpecificInfoCallback * cb, VCAI * ai)
:cb(cb), ai(ai)
{
}
void AIPathfinder::init()
{
2021-05-15 18:22:49 +02:00
storage.reset();
2021-05-15 18:22:44 +02:00
}
bool AIPathfinder::isTileAccessible(const HeroPtr & hero, const int3 & tile) const
{
2021-05-15 18:22:49 +02:00
return storage->isTileAccessible(hero, tile, EPathfindingLayer::LAND)
|| storage->isTileAccessible(hero, tile, EPathfindingLayer::SAIL);
2021-05-15 18:22:44 +02:00
}
2021-05-15 20:56:31 +02:00
std::vector<AIPath> AIPathfinder::getPathInfo(const int3 & tile) const
2021-05-15 18:22:44 +02:00
{
const TerrainTile * tileInfo = cb->getTile(tile, false);
if(!tileInfo)
{
return std::vector<AIPath>();
}
2021-05-15 18:22:49 +02:00
return storage->getChainInfo(tile, !tileInfo->isWater());
2021-05-15 18:22:44 +02:00
}
2021-05-15 20:01:48 +02:00
void AIPathfinder::updatePaths(std::vector<HeroPtr> heroes, bool useHeroChain)
2021-05-15 18:22:44 +02:00
{
2021-05-15 18:22:49 +02:00
if(!storage)
2021-05-15 18:22:44 +02:00
{
2021-05-15 18:22:49 +02:00
storage = std::make_shared<AINodeStorage>(cb->getMapSize());
2021-05-15 18:22:44 +02:00
}
2021-05-15 18:22:49 +02:00
logAi->debug("Recalculate all paths");
2021-05-15 20:04:48 +02:00
int pass = 0;
2021-05-15 18:22:44 +02:00
2021-05-15 18:23:01 +02:00
storage->clear();
2021-05-15 18:22:49 +02:00
storage->setHeroes(heroes, ai);
2021-05-15 18:22:44 +02:00
2021-05-15 20:54:28 +02:00
if(useHeroChain)
{
storage->setTownsAndDwellings(cb->getTownsInfo(), ai->visitableObjs);
}
2021-05-15 20:01:48 +02:00
auto config = std::make_shared<AIPathfinding::AIPathfinderConfig>(cb, ai, storage);
bool continueCalculation = false;
2021-05-15 20:01:48 +02:00
do
{
do
{
logAi->trace("Recalculate paths pass %d", pass++);
cb->calculatePaths(config);
} while(useHeroChain && storage->calculateHeroChain());
if(!useHeroChain)
break;
if(storage->calculateHeroChainFinal())
{
logAi->trace("Recalculate paths pass final");
cb->calculatePaths(config);
}
continueCalculation = storage->increaseHeroChainTurnLimit() && storage->calculateHeroChain();
} while(continueCalculation);
}