mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-30 08:57:00 +02:00
02e429e973
Changes were reviewed manually
42 lines
789 B
C++
42 lines
789 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 getPrisonsRemaining() const;
|
|
[[nodiscard]] HeroTypeID drawRandomHero();
|
|
void restoreDrawnHero(const HeroTypeID & hid);
|
|
|
|
private:
|
|
void getAllowedHeroes();
|
|
size_t reservedHeroes;
|
|
|
|
protected:
|
|
|
|
std::vector<HeroTypeID> allowedHeroes;
|
|
};
|
|
|
|
VCMI_LIB_NAMESPACE_END
|