2021-05-15 21:04:26 +02:00
|
|
|
/*
|
|
|
|
* Nullkiller.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
|
|
|
|
*
|
|
|
|
*/
|
2021-05-15 18:23:05 +02:00
|
|
|
#pragma once
|
|
|
|
|
2021-05-15 18:23:38 +02:00
|
|
|
#include "PriorityEvaluator.h"
|
2021-05-15 20:57:36 +02:00
|
|
|
#include "DangerHitMapAnalyzer.h"
|
2021-05-15 18:23:38 +02:00
|
|
|
#include "../Goals/AbstractGoal.h"
|
|
|
|
#include "../Behaviors/Behavior.h"
|
|
|
|
|
2021-05-15 18:23:05 +02:00
|
|
|
class Nullkiller
|
|
|
|
{
|
2021-05-15 18:23:38 +02:00
|
|
|
private:
|
|
|
|
std::unique_ptr<PriorityEvaluator> priorityEvaluator;
|
2021-05-16 13:07:54 +02:00
|
|
|
const CGHeroInstance * activeHero;
|
|
|
|
std::set<const CGHeroInstance *> lockedHeroes;
|
2021-05-15 18:23:38 +02:00
|
|
|
|
2021-05-15 18:23:05 +02:00
|
|
|
public:
|
2021-05-15 20:57:36 +02:00
|
|
|
std::unique_ptr<DangerHitMapAnalyzer> dangerHitMap;
|
|
|
|
|
2021-05-15 18:23:38 +02:00
|
|
|
Nullkiller();
|
2021-05-15 18:23:05 +02:00
|
|
|
void makeTurn();
|
2021-05-16 13:07:54 +02:00
|
|
|
bool isActive(const CGHeroInstance * hero) const { return activeHero == hero; }
|
|
|
|
bool isHeroLocked(const CGHeroInstance * hero) const { return vstd::contains(lockedHeroes, hero); }
|
|
|
|
void setActive(const CGHeroInstance * hero) { activeHero = hero; }
|
|
|
|
void lockHero(const CGHeroInstance * hero) { lockedHeroes.insert(hero); }
|
|
|
|
void unlockHero(const CGHeroInstance * hero) { lockedHeroes.erase(hero); }
|
2021-05-16 13:11:35 +02:00
|
|
|
bool canMove(const CGHeroInstance * hero) { return hero->movement; }
|
2021-05-15 18:23:38 +02:00
|
|
|
|
|
|
|
private:
|
2021-05-15 20:57:27 +02:00
|
|
|
void resetAiState();
|
|
|
|
void updateAiState();
|
2021-05-15 20:57:44 +02:00
|
|
|
Goals::TSubgoal choseBestTask(std::shared_ptr<Behavior> behavior) const;
|
|
|
|
Goals::TSubgoal choseBestTask(Goals::TGoalVec & tasks) const;
|
2021-05-15 21:04:26 +02:00
|
|
|
};
|