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

45 lines
1.1 KiB
C++
Raw Normal View History

2021-05-16 13:38:53 +02:00
/*
* BuildThis.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"
2022-09-26 20:01:07 +02:00
namespace NKAI
{
2021-05-16 13:38:53 +02:00
namespace Goals
{
class DLL_EXPORT Composition : public ElementarGoal<Composition>
{
private:
std::vector<TGoalVec> subtasks; // things we want to do now
2021-05-16 13:38:53 +02:00
public:
Composition()
: ElementarGoal(Goals::COMPOSITION), subtasks()
{
}
bool operator==(const Composition & other) const override;
std::string toString() const override;
2021-05-16 14:39:38 +02:00
void accept(AIGateway * ai) override;
2021-05-16 13:45:35 +02:00
Composition & addNext(const AbstractGoal & goal);
2021-05-16 13:38:53 +02:00
Composition & addNext(TSubgoal goal);
Composition & addNextSequence(const TGoalVec & taskSequence);
2024-03-31 17:39:00 +02:00
TGoalVec decompose(const Nullkiller * ai) const override;
bool isElementar() const override;
int getHeroExchangeCount() const override;
std::vector<ObjectInstanceID> getAffectedObjects() const override;
bool isObjectAffected(ObjectInstanceID id) const override;
2021-05-16 13:38:53 +02:00
};
}
2022-09-26 20:01:07 +02:00
}