1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-21 21:17:49 +02:00

106 lines
2.4 KiB
C++
Raw Normal View History

2021-05-15 19:22:44 +03:00
/*
2021-05-16 14:38:53 +03:00
* SpecialAction.h, part of VCMI engine
2021-05-15 19:22:44 +03: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"
2023-06-21 13:51:31 +03:00
VCMI_LIB_NAMESPACE_BEGIN
2023-06-21 12:00:44 +03:00
struct PathNodeInfo;
struct CDestinationNodeInfo;
2023-06-21 13:51:31 +03:00
VCMI_LIB_NAMESPACE_END
2023-06-21 12:00:44 +03:00
2022-09-26 21:01:07 +03:00
namespace NKAI
{
2021-05-15 19:23:01 +03:00
struct AIPathNode;
struct AIPathNodeInfo;
2023-09-16 12:33:02 +03:00
class ChainActor;
2021-05-15 19:22:44 +03:00
2021-05-16 14:38:53 +03:00
class SpecialAction
2021-05-15 19:22:44 +03:00
{
public:
2022-09-22 11:02:16 +03:00
virtual ~SpecialAction() = default;
2024-03-31 18:39:00 +03:00
virtual bool canAct(const Nullkiller * ai, const AIPathNode * source) const
2021-05-16 13:52:30 +03:00
{
return true;
}
2024-03-31 18:39:00 +03:00
virtual bool canAct(const Nullkiller * ai, const AIPathNodeInfo & source) const
{
return true;
}
2024-03-31 18:39:00 +03:00
virtual Goals::TSubgoal decompose(const Nullkiller * ai, const CGHeroInstance * hero) const;
2021-05-16 14:38:53 +03:00
2024-03-31 18:39:00 +03:00
virtual void execute(AIGateway * ai, const CGHeroInstance * hero) const;
2021-05-15 19:22:44 +03:00
virtual void applyOnDestination(
const CGHeroInstance * hero,
CDestinationNodeInfo & destination,
const PathNodeInfo & source,
AIPathNode * dstNode,
2021-05-15 19:22:44 +03:00
const AIPathNode * srcNode) const
{
}
2021-05-16 14:38:53 +03: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 {};
}
2023-09-16 12:33:02 +03:00
virtual const ChainActor * getActor(const ChainActor * sourceActor) const
{
return sourceActor;
}
};
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) {}
2024-03-31 18:39:00 +03:00
bool canAct(const Nullkiller * ai, const AIPathNode * source) const override;
void execute(AIGateway * ai, const CGHeroInstance * hero) const override;
std::string toString() const override;
const CGObjectInstance * targetObject() const override;
2024-03-31 18:39:00 +03:00
Goals::TSubgoal decompose(const Nullkiller * ai, 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 11:02:16 +03:00
};
2022-09-26 21:01:07 +03:00
class ISpecialActionFactory
{
public:
virtual std::shared_ptr<SpecialAction> create(const Nullkiller * ai) = 0;
2024-03-28 15:37:30 +02:00
virtual ~ISpecialActionFactory() = default;
};
2022-09-26 21:01:07 +03:00
}