2014-06-22 13:39:40 +03:00
|
|
|
/*
|
|
|
|
* JsonRandom.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
|
|
|
|
*
|
|
|
|
*/
|
2017-07-13 10:26:03 +02:00
|
|
|
#pragma once
|
|
|
|
|
2024-02-13 19:16:35 +02:00
|
|
|
#include "GameCallbackHolder.h"
|
2023-04-30 15:13:07 +02:00
|
|
|
#include "GameConstants.h"
|
|
|
|
#include "ResourceSet.h"
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2022-07-26 15:07:42 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
namespace vstd
|
|
|
|
{
|
|
|
|
class RNG;
|
|
|
|
}
|
|
|
|
|
2014-06-22 13:39:40 +03:00
|
|
|
class JsonNode;
|
2023-04-06 17:28:02 +02:00
|
|
|
using JsonVector = std::vector<JsonNode>;
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2016-09-08 18:42:59 +02:00
|
|
|
struct Bonus;
|
|
|
|
struct Component;
|
2014-06-22 13:39:40 +03:00
|
|
|
class CStackBasicDescriptor;
|
|
|
|
|
2024-02-12 01:22:16 +02:00
|
|
|
class JsonRandom : public GameCallbackHolder
|
2014-06-22 13:39:40 +03:00
|
|
|
{
|
2024-01-01 16:37:48 +02:00
|
|
|
public:
|
2023-09-30 17:47:47 +02:00
|
|
|
using Variables = std::map<std::string, int>;
|
|
|
|
|
2024-01-01 16:37:48 +02:00
|
|
|
private:
|
|
|
|
template<typename IdentifierType>
|
|
|
|
std::set<IdentifierType> filterKeys(const JsonNode & value, const std::set<IdentifierType> & valuesSet, const Variables & variables);
|
|
|
|
|
|
|
|
template<typename IdentifierType>
|
|
|
|
std::set<IdentifierType> filterKeysTyped(const JsonNode & value, const std::set<IdentifierType> & valuesSet);
|
|
|
|
|
|
|
|
template<typename IdentifierType>
|
|
|
|
IdentifierType decodeKey(const std::string & modScope, const std::string & value, const Variables & variables);
|
|
|
|
|
|
|
|
template<typename IdentifierType>
|
|
|
|
IdentifierType decodeKey(const JsonNode & value, const Variables & variables);
|
|
|
|
|
2024-01-19 23:02:00 +02:00
|
|
|
si32 loadVariable(const std::string & variableGroup, const std::string & value, const Variables & variables, si32 defaultValue);
|
2024-01-01 16:37:48 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
using GameCallbackHolder::GameCallbackHolder;
|
|
|
|
|
2024-02-12 01:22:16 +02:00
|
|
|
struct RandomStackInfo
|
2014-06-22 13:39:40 +03:00
|
|
|
{
|
|
|
|
std::vector<const CCreature *> allowedCreatures;
|
|
|
|
si32 minAmount;
|
|
|
|
si32 maxAmount;
|
|
|
|
};
|
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
si32 loadValue(const JsonNode & value, vstd::RNG & rng, const Variables & variables, si32 defaultValue = 0);
|
2023-09-29 15:18:57 +02:00
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
TResources loadResources(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
TResources loadResource(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
PrimarySkill loadPrimary(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
std::vector<si32> loadPrimaries(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
SecondarySkill loadSecondary(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
std::map<SecondarySkill, si32> loadSecondaries(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
ArtifactID loadArtifact(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
std::vector<ArtifactID> loadArtifacts(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
SpellID loadSpell(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
std::vector<SpellID> loadSpells(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
CStackBasicDescriptor loadCreature(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
std::vector<CStackBasicDescriptor> loadCreatures(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
2024-01-01 16:37:48 +02:00
|
|
|
std::vector<RandomStackInfo> evaluateCreatures(const JsonNode & value, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2024-06-01 17:28:17 +02:00
|
|
|
std::vector<PlayerColor> loadColors(const JsonNode & value, vstd::RNG & rng, const Variables & variables);
|
|
|
|
std::vector<HeroTypeID> loadHeroes(const JsonNode & value, vstd::RNG & rng);
|
|
|
|
std::vector<HeroClassID> loadHeroClasses(const JsonNode & value, vstd::RNG & rng);
|
2023-10-09 04:19:12 +02:00
|
|
|
|
2024-01-01 16:37:48 +02:00
|
|
|
static std::vector<Bonus> loadBonuses(const JsonNode & value);
|
|
|
|
};
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|