2021-05-16 13:11:35 +02:00
|
|
|
/*
|
|
|
|
* DismissHero.cpp, 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "StdInc.h"
|
|
|
|
#include "DismissHero.h"
|
2021-05-16 14:39:38 +02:00
|
|
|
#include "../AIGateway.h"
|
2021-05-16 13:11:35 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
|
|
|
|
2021-05-16 13:11:35 +02:00
|
|
|
using namespace Goals;
|
|
|
|
|
|
|
|
bool DismissHero::operator==(const DismissHero & other) const
|
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
return hero == other.hero;
|
2021-05-16 13:11:35 +02:00
|
|
|
}
|
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
void DismissHero::accept(AIGateway * ai)
|
2021-05-16 13:11:35 +02:00
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
if(!hero)
|
2021-05-16 13:11:35 +02:00
|
|
|
throw cannotFulfillGoalException("Invalid hero!");
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
cb->dismissHero(hero);
|
2021-05-16 13:11:35 +02:00
|
|
|
|
|
|
|
throw goalFulfilledException(sptr(*this));
|
|
|
|
}
|
|
|
|
|
2021-05-16 13:38:26 +02:00
|
|
|
std::string DismissHero::toString() const
|
2021-05-16 13:11:35 +02:00
|
|
|
{
|
2024-04-14 14:23:44 +02:00
|
|
|
return "DismissHero " + heroName;
|
2021-05-16 13:11:35 +02:00
|
|
|
}
|
2022-09-26 20:01:07 +02:00
|
|
|
|
|
|
|
}
|