2021-05-15 20:56:31 +02:00
|
|
|
/*
|
|
|
|
* ExecuteHeroChain.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 "CGoal.h"
|
2021-05-16 13:55:47 +02:00
|
|
|
#include "../Pathfinding/AIPathfinder.h"
|
2021-05-15 20:56:31 +02:00
|
|
|
|
|
|
|
namespace Goals
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
class DLL_EXPORT ExecuteHeroChain : public ElementarGoal<ExecuteHeroChain>
|
2021-05-15 20:56:31 +02:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
AIPath chainPath;
|
2021-05-15 20:57:27 +02:00
|
|
|
std::string targetName;
|
2021-05-15 20:56:31 +02:00
|
|
|
|
|
|
|
public:
|
2021-05-16 13:38:53 +02:00
|
|
|
float closestWayRatio;
|
|
|
|
|
2021-05-15 20:56:31 +02:00
|
|
|
ExecuteHeroChain(const AIPath & path, const CGObjectInstance * obj = nullptr);
|
|
|
|
|
2021-05-16 13:38:26 +02:00
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
void accept(AIGateway * ai) override;
|
2021-05-16 13:38:26 +02:00
|
|
|
std::string toString() const override;
|
2021-05-15 20:56:31 +02:00
|
|
|
virtual bool operator==(const ExecuteHeroChain & other) const override;
|
2021-05-16 13:13:56 +02:00
|
|
|
const AIPath & getPath() const { return chainPath; }
|
2021-05-16 13:38:26 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool moveHeroToTile(const CGHeroInstance * hero, const int3 & tile);
|
2021-05-15 20:56:31 +02:00
|
|
|
};
|
|
|
|
}
|