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
|
|
|
|
{
|
|
|
|
return hero.h == other.hero.h;
|
|
|
|
}
|
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
void DismissHero::accept(AIGateway * ai)
|
2021-05-16 13:11:35 +02:00
|
|
|
{
|
|
|
|
if(!hero.validAndSet())
|
|
|
|
throw cannotFulfillGoalException("Invalid hero!");
|
|
|
|
|
|
|
|
cb->dismissHero(hero.h);
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
return "DismissHero " + hero.name;
|
|
|
|
}
|
2022-09-26 20:01:07 +02:00
|
|
|
|
|
|
|
}
|