2021-05-15 18:22:44 +02:00
|
|
|
/*
|
|
|
|
* RecruitHero.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-15 18:22:44 +02:00
|
|
|
struct HeroPtr;
|
2021-05-16 14:39:38 +02:00
|
|
|
class AIGateway;
|
2021-05-15 18:22:44 +02:00
|
|
|
class FuzzyHelper;
|
|
|
|
|
|
|
|
namespace Goals
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
class DLL_EXPORT RecruitHero : public ElementarGoal<RecruitHero>
|
2021-05-15 18:22:44 +02:00
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
private:
|
|
|
|
const CGHeroInstance * heroToBuy;
|
|
|
|
|
2021-05-15 18:22:44 +02:00
|
|
|
public:
|
2021-05-16 13:38:26 +02:00
|
|
|
RecruitHero(const CGTownInstance * townWithTavern, const CGHeroInstance * heroToBuy)
|
2023-06-04 15:02:02 +02:00
|
|
|
: ElementarGoal(Goals::RECRUIT_HERO), heroToBuy(heroToBuy)
|
2021-05-16 13:38:26 +02:00
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
town = townWithTavern;
|
|
|
|
priority = 1;
|
2021-05-16 13:38:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
RecruitHero(const CGTownInstance * townWithTavern)
|
2023-06-04 15:02:02 +02:00
|
|
|
: RecruitHero(townWithTavern, nullptr)
|
2021-05-15 18:22:44 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool operator==(const RecruitHero & other) const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2021-05-16 13:38:26 +02:00
|
|
|
|
|
|
|
virtual std::string toString() const override;
|
2021-05-16 14:39:38 +02:00
|
|
|
void accept(AIGateway * ai) override;
|
2021-05-15 18:22:44 +02:00
|
|
|
};
|
|
|
|
}
|
2022-09-26 20:01:07 +02:00
|
|
|
|
|
|
|
}
|