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

41 lines
1.0 KiB
C
Raw Normal View History

2021-05-16 13:45:12 +02:00
/*
* FindObj.h, 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
*
*/
#pragma once
#include "../Goals/CGoal.h"
2021-05-16 13:45:12 +02:00
#include "../Analyzers/ObjectClusterizer.h"
struct HeroPtr;
2021-05-16 14:39:38 +02:00
class AIGateway;
2021-05-16 13:45:12 +02:00
class FuzzyHelper;
namespace Goals
{
class DLL_EXPORT UnlockCluster : public CGoal<UnlockCluster>
{
private:
std::shared_ptr<ObjectCluster> cluster;
AIPath pathToCenter;
public:
UnlockCluster(std::shared_ptr<ObjectCluster> cluster, const AIPath & pathToCenter)
: CGoal(Goals::UNLOCK_CLUSTER), cluster(cluster), pathToCenter(pathToCenter)
{
tile = cluster->blocker->visitablePos();
sethero(pathToCenter.targetHero);
}
virtual bool operator==(const UnlockCluster & other) const override;
virtual std::string toString() const override;
std::shared_ptr<ObjectCluster> getCluster() const { return cluster; }
const AIPath & getPathToCenter() { return pathToCenter; }
};
}