mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
285bafdbf4
Restore hero to pool if Prison fails to be placed.
41 lines
773 B
C++
41 lines
773 B
C++
/*
|
|
* PrisonHeroPlacer, 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 "../Zone.h"
|
|
#include "../Functions.h"
|
|
#include "../../mapObjects/ObjectTemplate.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
class CRandomGenerator;
|
|
|
|
class PrisonHeroPlacer : public Modificator
|
|
{
|
|
public:
|
|
MODIFICATOR(PrisonHeroPlacer);
|
|
|
|
void process() override;
|
|
void init() override;
|
|
|
|
int getPrisonsRemaning() const;
|
|
HeroTypeID drawRandomHero();
|
|
void restoreDrawnHero(const HeroTypeID & hid);
|
|
|
|
private:
|
|
void getAllowedHeroes();
|
|
size_t reservedHeroes;
|
|
|
|
protected:
|
|
|
|
std::vector<HeroTypeID> allowedHeroes;
|
|
};
|
|
|
|
VCMI_LIB_NAMESPACE_END |