2021-05-15 21:04:26 +02:00
|
|
|
/*
|
|
|
|
* ExchangeSwapTownHeroes.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"
|
2021-05-16 13:22:30 +02:00
|
|
|
#include "../Engine/Nullkiller.h"
|
2021-05-15 21:04:26 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
2021-05-15 21:04:26 +02:00
|
|
|
namespace Goals
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
class DLL_EXPORT ExchangeSwapTownHeroes : public ElementarGoal<ExchangeSwapTownHeroes>
|
2021-05-15 21:04:26 +02:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
const CGTownInstance * town;
|
|
|
|
const CGHeroInstance * garrisonHero;
|
2021-05-16 13:13:56 +02:00
|
|
|
HeroLockedReason lockingReason;
|
2021-05-15 21:04:26 +02:00
|
|
|
|
|
|
|
public:
|
2021-05-16 13:13:56 +02:00
|
|
|
ExchangeSwapTownHeroes(
|
|
|
|
const CGTownInstance * town,
|
|
|
|
const CGHeroInstance * garrisonHero = nullptr,
|
|
|
|
HeroLockedReason lockingReason = HeroLockedReason::NOT_LOCKED);
|
2021-05-15 21:04:26 +02:00
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
void accept(AIGateway * ai) override;
|
2021-05-16 13:38:26 +02:00
|
|
|
std::string toString() const override;
|
2024-02-10 21:22:08 +02:00
|
|
|
bool operator==(const ExchangeSwapTownHeroes & other) const override;
|
2023-02-28 09:07:59 +02:00
|
|
|
|
|
|
|
const CGHeroInstance * getGarrisonHero() const { return garrisonHero; }
|
|
|
|
HeroLockedReason getLockingReason() const { return lockingReason; }
|
2024-04-14 14:23:44 +02:00
|
|
|
|
|
|
|
std::vector<ObjectInstanceID> getAffectedObjects() const override;
|
|
|
|
bool isObjectAffected(ObjectInstanceID id) const override;
|
2021-05-15 21:04:26 +02:00
|
|
|
};
|
|
|
|
}
|
2022-09-26 20:01:07 +02:00
|
|
|
|
|
|
|
}
|