2021-05-16 13:45:12 +02:00
|
|
|
/*
|
|
|
|
* DangerHitMapAnalyzer.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 "ObjectClusterizer.h"
|
|
|
|
#include "../Goals/ExecuteHeroChain.h"
|
2021-05-16 14:39:38 +02:00
|
|
|
#include "../AIGateway.h"
|
2021-05-16 13:45:12 +02:00
|
|
|
#include "../Engine/Nullkiller.h"
|
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
|
|
|
|
2021-05-16 13:45:12 +02:00
|
|
|
void ObjectCluster::addObject(const CGObjectInstance * obj, const AIPath & path, float priority)
|
|
|
|
{
|
2021-05-16 14:08:56 +02:00
|
|
|
ClusterObjects::accessor info;
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
objects.insert(info, ClusterObjects::value_type(obj->id, ClusterObjectInfo()));
|
2021-05-16 14:08:56 +02:00
|
|
|
|
|
|
|
if(info->second.priority < priority)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2021-05-16 14:08:56 +02:00
|
|
|
info->second.priority = priority;
|
|
|
|
info->second.movementCost = path.movementCost() - path.firstNode().cost;
|
|
|
|
info->second.danger = path.targetObjectDanger;
|
|
|
|
info->second.turn = path.turn();
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
const CGObjectInstance * ObjectCluster::calculateCenter(const CPlayerSpecificInfoCallback * cb) const
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
|
|
|
auto tile = int3(0);
|
|
|
|
float priority = 0;
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
for(auto & pair : objects)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
auto newPoint = cb->getObj(pair.first)->visitablePos();
|
2021-05-16 13:45:12 +02:00
|
|
|
float newPriority = std::pow(pair.second.priority, 4); // lets make high priority targets more weghtful
|
|
|
|
int3 direction = newPoint - tile;
|
|
|
|
float priorityRatio = newPriority / (priority + newPriority);
|
|
|
|
|
|
|
|
tile += direction * priorityRatio;
|
|
|
|
priority += newPriority;
|
|
|
|
}
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
auto closestPair = *vstd::minElementByFun(objects, [&](const std::pair<ObjectInstanceID, ClusterObjectInfo> & pair) -> int
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
return cb->getObj(pair.first)->visitablePos().dist2dSQ(tile);
|
2021-05-16 13:45:12 +02:00
|
|
|
});
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
return cb->getObj(closestPair.first);
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
std::vector<const CGObjectInstance *> ObjectCluster::getObjects(const CPlayerSpecificInfoCallback * cb) const
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
|
|
|
std::vector<const CGObjectInstance *> result;
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
for(auto & pair : objects)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
result.push_back(cb->getObj(pair.first));
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<const CGObjectInstance *> ObjectClusterizer::getNearbyObjects() const
|
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
return nearObjects.getObjects(ai->cb.get());
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
|
|
|
|
2021-05-16 13:45:45 +02:00
|
|
|
std::vector<const CGObjectInstance *> ObjectClusterizer::getFarObjects() const
|
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
return farObjects.getObjects(ai->cb.get());
|
2021-05-16 13:45:45 +02:00
|
|
|
}
|
|
|
|
|
2021-05-16 13:45:12 +02:00
|
|
|
std::vector<std::shared_ptr<ObjectCluster>> ObjectClusterizer::getLockedClusters() const
|
|
|
|
{
|
|
|
|
std::vector<std::shared_ptr<ObjectCluster>> result;
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
for(auto & pair : blockedObjects)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
|
|
|
result.push_back(pair.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
std::optional<const CGObjectInstance *> ObjectClusterizer::getBlocker(const AIPathNodeInfo & node) const
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-03-24 09:32:29 +02:00
|
|
|
std::vector<const CGObjectInstance *> blockers = {};
|
|
|
|
|
|
|
|
if(node.layer == EPathfindingLayer::LAND || node.layer == EPathfindingLayer::SAIL)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-03-24 09:32:29 +02:00
|
|
|
auto guardPos = ai->cb->getGuardingCreaturePosition(node.coord);
|
2023-09-24 12:07:42 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
blockers = ai->cb->getVisitableObjs(node.coord);
|
|
|
|
|
|
|
|
if(guardPos.valid())
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-03-24 09:32:29 +02:00
|
|
|
auto guard = ai->cb->getTopObj(ai->cb->getGuardingCreaturePosition(node.coord));
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(guard)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-03-24 09:32:29 +02:00
|
|
|
blockers.insert(blockers.begin(), guard);
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
|
|
|
}
|
2024-03-24 09:32:29 +02:00
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(node.specialAction && node.actionIsBlocked)
|
|
|
|
{
|
|
|
|
auto blockerObject = node.specialAction->targetObject();
|
2021-05-16 13:55:33 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(blockerObject)
|
|
|
|
{
|
|
|
|
blockers.insert(blockers.begin(), blockerObject);
|
2021-05-16 13:55:33 +02:00
|
|
|
}
|
2024-03-24 09:32:29 +02:00
|
|
|
}
|
2021-05-16 13:55:33 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(blockers.empty())
|
|
|
|
return std::optional< const CGObjectInstance *>();
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
auto blocker = blockers.front();
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(isObjectPassable(ai, blocker))
|
|
|
|
return std::optional< const CGObjectInstance *>();
|
2022-09-06 20:14:22 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(blocker->ID == Obj::GARRISON
|
|
|
|
|| blocker->ID == Obj::GARRISON2)
|
|
|
|
{
|
|
|
|
if(dynamic_cast<const CArmedInstance *>(blocker)->getArmyStrength() == 0)
|
|
|
|
return std::optional< const CGObjectInstance *>();
|
|
|
|
else
|
2021-05-16 13:56:27 +02:00
|
|
|
return blocker;
|
2024-03-24 09:32:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(blocker->ID == Obj::MONSTER
|
|
|
|
|| blocker->ID == Obj::BORDERGUARD
|
|
|
|
|| blocker->ID == Obj::BORDER_GATE
|
|
|
|
|| blocker->ID == Obj::SHIPYARD
|
|
|
|
|| (blocker->ID == Obj::QUEST_GUARD && node.actionIsBlocked))
|
|
|
|
{
|
|
|
|
return blocker;
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::optional< const CGObjectInstance *>();
|
|
|
|
}
|
|
|
|
|
|
|
|
const CGObjectInstance * ObjectClusterizer::getBlocker(const AIPath & path) const
|
|
|
|
{
|
|
|
|
for(auto node = path.nodes.rbegin(); node != path.nodes.rend(); node++)
|
|
|
|
{
|
|
|
|
auto blocker = getBlocker(*node);
|
|
|
|
|
|
|
|
if(blocker)
|
|
|
|
return *blocker;
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
void ObjectClusterizer::invalidate(ObjectInstanceID id)
|
|
|
|
{
|
|
|
|
nearObjects.objects.erase(id);
|
|
|
|
farObjects.objects.erase(id);
|
|
|
|
invalidated.push_back(id);
|
|
|
|
|
|
|
|
for(auto & c : blockedObjects)
|
|
|
|
{
|
|
|
|
c.second->objects.erase(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObjectClusterizer::validateObjects()
|
|
|
|
{
|
|
|
|
std::vector<ObjectInstanceID> toRemove;
|
|
|
|
|
|
|
|
auto scanRemovedObjects = [this, &toRemove](const ObjectCluster & cluster)
|
|
|
|
{
|
|
|
|
for(auto & pair : cluster.objects)
|
|
|
|
{
|
|
|
|
if(!ai->cb->getObj(pair.first, false))
|
|
|
|
toRemove.push_back(pair.first);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
scanRemovedObjects(nearObjects);
|
|
|
|
scanRemovedObjects(farObjects);
|
|
|
|
|
|
|
|
for(auto & pair : blockedObjects)
|
|
|
|
{
|
|
|
|
if(!ai->cb->getObj(pair.first, false) || pair.second->objects.empty())
|
|
|
|
toRemove.push_back(pair.first);
|
|
|
|
else
|
|
|
|
scanRemovedObjects(*pair.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
vstd::removeDuplicates(toRemove);
|
|
|
|
|
|
|
|
for(auto id : toRemove)
|
|
|
|
{
|
|
|
|
onObjectRemoved(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObjectClusterizer::onObjectRemoved(ObjectInstanceID id)
|
|
|
|
{
|
|
|
|
invalidate(id);
|
|
|
|
|
|
|
|
vstd::erase_if_present(invalidated, id);
|
|
|
|
|
|
|
|
NKAI::ClusterMap::accessor cluster;
|
|
|
|
|
|
|
|
if(blockedObjects.find(cluster, id))
|
|
|
|
{
|
|
|
|
for(auto & unlocked : cluster->second->objects)
|
|
|
|
{
|
|
|
|
invalidated.push_back(unlocked.first);
|
|
|
|
}
|
|
|
|
|
|
|
|
blockedObjects.erase(cluster);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 17:58:43 +02:00
|
|
|
bool ObjectClusterizer::shouldVisitObject(const CGObjectInstance * obj) const
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
|
|
|
if(isObjectRemovable(obj))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int3 pos = obj->visitablePos();
|
|
|
|
|
2022-09-22 10:22:14 +02:00
|
|
|
if((obj->ID != Obj::CREATURE_GENERATOR1 && vstd::contains(ai->memory->alreadyVisited, obj))
|
2021-05-16 13:45:12 +02:00
|
|
|
|| obj->wasVisited(ai->playerID))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-04 17:58:43 +02:00
|
|
|
auto playerRelations = ai->cb->getPlayerRelations(ai->playerID, obj->tempOwner);
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
if(playerRelations != PlayerRelations::ENEMIES && !isWeeklyRevisitable(ai, obj))
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//it may be hero visiting this obj
|
|
|
|
//we don't try visiting object on which allied or owned hero stands
|
|
|
|
// -> it will just trigger exchange windows and AI will be confused that obj behind doesn't get visited
|
2020-05-04 17:58:43 +02:00
|
|
|
const CGObjectInstance * topObj = ai->cb->getTopObj(pos);
|
2021-05-16 13:45:12 +02:00
|
|
|
|
|
|
|
if(!topObj)
|
|
|
|
return false; // partly visible obj but its visitable pos is not visible.
|
|
|
|
|
2020-05-04 17:58:43 +02:00
|
|
|
if(topObj->ID == Obj::HERO && ai->cb->getPlayerRelations(ai->playerID, topObj->tempOwner) != PlayerRelations::ENEMIES)
|
2021-05-16 13:45:12 +02:00
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true; //all of the following is met
|
|
|
|
}
|
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
Obj ObjectClusterizer::IgnoredObjectTypes[] = {
|
2021-05-16 13:56:27 +02:00
|
|
|
Obj::BOAT,
|
|
|
|
Obj::EYE_OF_MAGI,
|
2021-05-16 13:45:12 +02:00
|
|
|
Obj::MONOLITH_ONE_WAY_ENTRANCE,
|
|
|
|
Obj::MONOLITH_ONE_WAY_EXIT,
|
2021-05-16 13:56:27 +02:00
|
|
|
Obj::MONOLITH_TWO_WAY,
|
|
|
|
Obj::SUBTERRANEAN_GATE,
|
|
|
|
Obj::WHIRLPOOL,
|
|
|
|
Obj::BUOY,
|
|
|
|
Obj::SIGN,
|
|
|
|
Obj::GARRISON,
|
|
|
|
Obj::MONSTER,
|
|
|
|
Obj::GARRISON2,
|
|
|
|
Obj::BORDERGUARD,
|
|
|
|
Obj::QUEST_GUARD,
|
|
|
|
Obj::BORDER_GATE,
|
|
|
|
Obj::REDWOOD_OBSERVATORY,
|
|
|
|
Obj::CARTOGRAPHER,
|
|
|
|
Obj::PILLAR_OF_FIRE
|
2024-03-09 16:20:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void ObjectClusterizer::clusterize()
|
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
if(isUpToDate)
|
|
|
|
{
|
|
|
|
validateObjects();
|
|
|
|
}
|
2024-03-09 16:20:00 +02:00
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
if(isUpToDate && invalidated.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto start = std::chrono::high_resolution_clock::now();
|
2021-05-16 13:45:12 +02:00
|
|
|
|
|
|
|
logAi->debug("Begin object clusterization");
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
std::vector<const CGObjectInstance *> objs;
|
|
|
|
|
|
|
|
if(isUpToDate)
|
|
|
|
{
|
|
|
|
for(auto id : invalidated)
|
|
|
|
{
|
|
|
|
auto obj = cb->getObj(id, false);
|
|
|
|
|
|
|
|
if(obj)
|
|
|
|
{
|
|
|
|
objs.push_back(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
invalidated.clear();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nearObjects.reset();
|
|
|
|
farObjects.reset();
|
|
|
|
blockedObjects.clear();
|
|
|
|
invalidated.clear();
|
|
|
|
|
|
|
|
objs = std::vector<const CGObjectInstance *>(
|
|
|
|
ai->memory->visitableObjs.begin(),
|
|
|
|
ai->memory->visitableObjs.end());
|
|
|
|
}
|
2021-05-16 14:08:56 +02:00
|
|
|
|
2024-02-03 12:20:59 +02:00
|
|
|
#if NKAI_TRACE_LEVEL == 0
|
2024-03-25 17:05:24 +02:00
|
|
|
tbb::parallel_for(tbb::blocked_range<size_t>(0, objs.size()), [&](const tbb::blocked_range<size_t> & r) {
|
2024-02-03 12:20:59 +02:00
|
|
|
#else
|
2024-03-25 17:05:24 +02:00
|
|
|
tbb::blocked_range<size_t> r(0, objs.size());
|
2024-02-03 12:20:59 +02:00
|
|
|
#endif
|
2021-05-16 14:08:56 +02:00
|
|
|
auto priorityEvaluator = ai->priorityEvaluators->acquire();
|
2024-03-24 09:32:29 +02:00
|
|
|
auto heroes = ai->cb->getHeroesInfo();
|
|
|
|
std::vector<AIPath> pathCache;
|
2021-05-16 14:08:56 +02:00
|
|
|
|
|
|
|
for(int i = r.begin(); i != r.end(); i++)
|
|
|
|
{
|
2024-03-24 09:32:29 +02:00
|
|
|
clusterizeObject(objs[i], priorityEvaluator.get(), pathCache, heroes);
|
2024-03-09 16:20:00 +02:00
|
|
|
}
|
|
|
|
#if NKAI_TRACE_LEVEL == 0
|
|
|
|
});
|
2023-07-30 10:33:52 +02:00
|
|
|
#endif
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("Near objects count: %i", nearObjects.objects.size());
|
|
|
|
logAi->trace("Far objects count: %i", farObjects.objects.size());
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
for(auto pair : blockedObjects)
|
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
auto blocker = cb->getObj(pair.first);
|
|
|
|
|
|
|
|
logAi->trace("Cluster %s %s count: %i", blocker->getObjectName(), blocker->visitablePos().toString(), pair.second->objects.size());
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 1
|
2024-04-14 14:23:44 +02:00
|
|
|
for(auto obj : pair.second->getObjects(ai->cb.get()))
|
2024-03-09 16:20:00 +02:00
|
|
|
{
|
|
|
|
logAi->trace("Object %s %s", obj->getObjectName(), obj->visitablePos().toString());
|
|
|
|
}
|
2021-05-16 13:56:27 +02:00
|
|
|
#endif
|
2024-03-09 16:20:00 +02:00
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
isUpToDate = true;
|
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("Clusterization complete in %ld", timeElapsed(start));
|
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
void ObjectClusterizer::clusterizeObject(
|
|
|
|
const CGObjectInstance * obj,
|
|
|
|
PriorityEvaluator * priorityEvaluator,
|
|
|
|
std::vector<AIPath> & pathCache,
|
|
|
|
std::vector<const CGHeroInstance *> & heroes)
|
2024-03-09 16:20:00 +02:00
|
|
|
{
|
|
|
|
if(!shouldVisitObject(obj))
|
|
|
|
{
|
2022-09-26 20:01:07 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("Skip object %s%s.", obj->getObjectName(), obj->visitablePos().toString());
|
2021-05-16 13:56:27 +02:00
|
|
|
#endif
|
2024-03-09 16:20:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("Check object %s%s.", obj->getObjectName(), obj->visitablePos().toString());
|
2021-05-16 13:56:27 +02:00
|
|
|
#endif
|
2021-05-16 13:55:33 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(ai->settings->isObjectGraphAllowed())
|
|
|
|
{
|
|
|
|
ai->pathfinder->calculateQuickPathsWithBlocker(pathCache, heroes, obj->visitablePos());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ai->pathfinder->calculatePathInfo(pathCache, obj->visitablePos(), false);
|
2024-03-09 16:20:00 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(pathCache.empty())
|
2024-03-09 16:20:00 +02:00
|
|
|
{
|
2022-09-26 20:01:07 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("No paths found.");
|
2021-05-16 14:08:56 +02:00
|
|
|
#endif
|
2024-03-09 16:20:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
std::sort(pathCache.begin(), pathCache.end(), [](const AIPath & p1, const AIPath & p2) -> bool
|
2024-03-09 16:20:00 +02:00
|
|
|
{
|
|
|
|
return p1.movementCost() < p2.movementCost();
|
|
|
|
});
|
|
|
|
|
|
|
|
if(vstd::contains(IgnoredObjectTypes, obj->ID))
|
|
|
|
{
|
2024-03-24 09:32:29 +02:00
|
|
|
farObjects.addObject(obj, pathCache.front(), 0);
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
2024-03-24 09:32:29 +02:00
|
|
|
logAi->trace("Object ignored. Moved to far objects with path %s", pathCache.front().toString());
|
2021-05-16 14:08:56 +02:00
|
|
|
#endif
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
std::set<const CGHeroInstance *> heroesProcessed;
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
for(auto & path : pathCache)
|
2024-03-09 16:20:00 +02:00
|
|
|
{
|
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
|
|
|
logAi->trace("Checking path %s", path.toString());
|
|
|
|
#endif
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-24 09:32:29 +02:00
|
|
|
if(ai->heroManager->getHeroRole(path.targetHero) == HeroRole::SCOUT)
|
|
|
|
{
|
|
|
|
if(path.movementCost() > 2.0f)
|
2024-03-28 13:39:15 +02:00
|
|
|
{
|
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
|
|
|
logAi->trace("Path is too far %f", path.movementCost());
|
|
|
|
#endif
|
2024-03-24 09:32:29 +02:00
|
|
|
continue;
|
2024-03-28 13:39:15 +02:00
|
|
|
}
|
2024-03-24 09:32:29 +02:00
|
|
|
}
|
2024-03-28 13:39:15 +02:00
|
|
|
else if(path.movementCost() > 4.0f && obj->ID != Obj::TOWN)
|
2024-03-24 09:32:29 +02:00
|
|
|
{
|
|
|
|
auto strategicalValue = valueEvaluator.getStrategicalValue(obj);
|
|
|
|
|
2024-03-28 13:39:15 +02:00
|
|
|
if(strategicalValue < 0.3f)
|
|
|
|
{
|
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
|
|
|
logAi->trace("Object value is too low %f", strategicalValue);
|
|
|
|
#endif
|
2024-03-24 09:32:29 +02:00
|
|
|
continue;
|
2024-03-28 13:39:15 +02:00
|
|
|
}
|
2024-03-24 09:32:29 +02:00
|
|
|
}
|
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
if(!shouldVisit(ai, path.targetHero, obj))
|
|
|
|
{
|
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
|
|
|
logAi->trace("Hero %s does not need to visit %s", path.targetHero->getObjectName(), obj->getObjectName());
|
|
|
|
#endif
|
|
|
|
continue;
|
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
if(path.nodes.size() > 1)
|
|
|
|
{
|
|
|
|
auto blocker = getBlocker(path);
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
if(blocker)
|
|
|
|
{
|
|
|
|
if(vstd::contains(heroesProcessed, path.targetHero))
|
|
|
|
{
|
2022-09-26 20:01:07 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("Hero %s is already processed.", path.targetHero->getObjectName());
|
2021-05-16 13:56:27 +02:00
|
|
|
#endif
|
2024-03-09 16:20:00 +02:00
|
|
|
continue;
|
2021-05-16 13:56:27 +02:00
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2021-05-16 14:08:56 +02:00
|
|
|
heroesProcessed.insert(path.targetHero);
|
2021-05-16 13:55:33 +02:00
|
|
|
|
2021-05-16 14:08:56 +02:00
|
|
|
float priority = priorityEvaluator->evaluate(Goals::sptr(Goals::ExecuteHeroChain(path, obj)));
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2021-05-16 14:08:56 +02:00
|
|
|
if(priority < MIN_PRIORITY)
|
|
|
|
continue;
|
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
ClusterMap::accessor cluster;
|
|
|
|
blockedObjects.insert(
|
|
|
|
cluster,
|
2024-04-14 14:23:44 +02:00
|
|
|
ClusterMap::value_type(blocker->id, std::make_shared<ObjectCluster>(blocker)));
|
2021-05-16 14:08:56 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
cluster->second->addObject(obj, path, priority);
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
2024-03-09 16:20:00 +02:00
|
|
|
logAi->trace("Path added to cluster %s%s", blocker->getObjectName(), blocker->visitablePos().toString());
|
2021-05-16 13:56:27 +02:00
|
|
|
#endif
|
2024-03-09 16:20:00 +02:00
|
|
|
continue;
|
2021-05-16 14:08:56 +02:00
|
|
|
}
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
2021-05-16 13:56:27 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
heroesProcessed.insert(path.targetHero);
|
2021-05-16 14:08:56 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
float priority = priorityEvaluator->evaluate(Goals::sptr(Goals::ExecuteHeroChain(path, obj)));
|
2021-05-16 13:45:12 +02:00
|
|
|
|
2024-03-09 16:20:00 +02:00
|
|
|
if(priority < MIN_PRIORITY)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
bool interestingObject = path.turn() <= 2 || priority > 0.5f;
|
|
|
|
|
|
|
|
if(interestingObject)
|
2021-05-16 13:45:12 +02:00
|
|
|
{
|
2024-03-09 16:20:00 +02:00
|
|
|
nearObjects.addObject(obj, path, priority);
|
2021-05-16 13:45:12 +02:00
|
|
|
}
|
2024-03-09 16:20:00 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
farObjects.addObject(obj, path, priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if NKAI_TRACE_LEVEL >= 2
|
|
|
|
logAi->trace("Path %s added to %s objects. Turn: %d, priority: %f",
|
|
|
|
path.toString(),
|
|
|
|
interestingObject ? "near" : "far",
|
|
|
|
path.turn(),
|
|
|
|
priority);
|
2021-05-16 13:45:12 +02:00
|
|
|
#endif
|
|
|
|
}
|
2021-11-23 08:41:03 +02:00
|
|
|
}
|
2022-09-26 20:01:07 +02:00
|
|
|
|
|
|
|
}
|