1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-12 10:03:53 +02:00
vcmi/AI/Nullkiller/Engine/Nullkiller.h

22 lines
526 B
C
Raw Normal View History

#pragma once
#include "PriorityEvaluator.h"
#include "../Goals/AbstractGoal.h"
#include "../Behaviors/Behavior.h"
class Nullkiller
{
private:
std::unique_ptr<PriorityEvaluator> priorityEvaluator;
2021-05-15 20:27:22 +02:00
HeroPtr activeHero;
public:
Nullkiller();
void makeTurn();
2021-05-15 20:27:22 +02:00
bool isActive(const CGHeroInstance * hero) const { return activeHero.h == hero; }
2021-05-15 20:56:31 +02:00
void setActive(const HeroPtr & hero) { activeHero = hero; }
private:
Goals::TSubgoal choseBestTask(Behavior & behavior);
Goals::TSubgoal choseBestTask(Goals::TGoalVec tasks);
};