2021-05-15 18:22:44 +02:00
|
|
|
/*
|
|
|
|
* ISpecialAction.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 "../../AIUtility.h"
|
|
|
|
#include "../../Goals/AbstractGoal.h"
|
|
|
|
|
2021-05-15 18:23:01 +02:00
|
|
|
struct AIPathNode;
|
2021-05-15 18:22:44 +02:00
|
|
|
|
|
|
|
class ISpecialAction
|
|
|
|
{
|
|
|
|
public:
|
2021-05-16 12:52:30 +02:00
|
|
|
virtual bool canAct(const CGHeroInstance * hero) const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-15 15:47:21 +02:00
|
|
|
virtual Goals::TSubgoal whatToDo(const CGHeroInstance * hero) const = 0;
|
2021-05-15 18:22:44 +02:00
|
|
|
|
|
|
|
virtual void applyOnDestination(
|
|
|
|
const CGHeroInstance * hero,
|
|
|
|
CDestinationNodeInfo & destination,
|
|
|
|
const PathNodeInfo & source,
|
|
|
|
AIPathNode * dstMode,
|
|
|
|
const AIPathNode * srcNode) const
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|