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

82 lines
1.8 KiB
C
Raw Normal View History

2021-05-15 18:22:44 +02:00
/*
2021-05-16 13:38:53 +02:00
* SpecialAction.h, part of VCMI engine
2021-05-15 18:22:44 +02:00
*
* 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 "../../AIUtility.h"
#include "../../Goals/AbstractGoal.h"
2022-09-26 20:01:07 +02:00
namespace NKAI
{
2021-05-15 18:23:01 +02:00
struct AIPathNode;
2021-05-15 18:22:44 +02:00
2021-05-16 13:38:53 +02:00
class SpecialAction
2021-05-15 18:22:44 +02:00
{
public:
2022-09-22 10:02:16 +02:00
virtual ~SpecialAction() = default;
2021-05-16 13:38:53 +02:00
virtual bool canAct(const AIPathNode * source) const
2021-05-16 12:52:30 +02:00
{
return true;
}
2021-05-16 13:38:53 +02:00
virtual Goals::TSubgoal decompose(const CGHeroInstance * hero) const;
virtual void execute(const CGHeroInstance * hero) const;
2021-05-15 18:22:44 +02:00
virtual void applyOnDestination(
const CGHeroInstance * hero,
CDestinationNodeInfo & destination,
const PathNodeInfo & source,
AIPathNode * dstNode,
2021-05-15 18:22:44 +02:00
const AIPathNode * srcNode) const
{
}
2021-05-16 13:38:53 +02:00
virtual std::string toString() const = 0;
virtual const CGObjectInstance * targetObject() const { return nullptr; }
virtual std::vector<std::shared_ptr<const SpecialAction>> getParts() const
{
return {};
}
};
class CompositeAction : public SpecialAction
{
private:
std::vector<std::shared_ptr<const SpecialAction>> parts;
public:
CompositeAction(std::vector<std::shared_ptr<const SpecialAction>> parts) : parts(parts) {}
bool canAct(const AIPathNode * source) const override;
void execute(const CGHeroInstance * hero) const override;
std::string toString() const override;
const CGObjectInstance * targetObject() const override;
Goals::TSubgoal decompose(const CGHeroInstance * hero) const override;
std::vector<std::shared_ptr<const SpecialAction>> getParts() const override
{
return parts;
}
void applyOnDestination(
const CGHeroInstance * hero,
CDestinationNodeInfo & destination,
const PathNodeInfo & source,
AIPathNode * dstNode,
const AIPathNode * srcNode) const override;
2022-09-22 10:02:16 +02:00
};
2022-09-26 20:01:07 +02:00
}