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
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
class CRandomGenerator;
|
|
|
|
|
2016-09-08 18:42:59 +02:00
|
|
|
struct Bonus;
|
|
|
|
struct Component;
|
2014-06-22 13:39:40 +03:00
|
|
|
class CStackBasicDescriptor;
|
|
|
|
|
|
|
|
namespace JsonRandom
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
using Variables = std::map<std::string, int>;
|
|
|
|
|
2014-06-24 00:05:53 +03:00
|
|
|
struct DLL_LINKAGE RandomStackInfo
|
2014-06-22 13:39:40 +03:00
|
|
|
{
|
|
|
|
std::vector<const CCreature *> allowedCreatures;
|
|
|
|
si32 minAmount;
|
|
|
|
si32 maxAmount;
|
|
|
|
};
|
|
|
|
|
2023-09-30 17:47:47 +02:00
|
|
|
DLL_LINKAGE si32 loadValue(const JsonNode & value, CRandomGenerator & rng, const Variables & variables, si32 defaultValue = 0);
|
2023-09-29 15:18:57 +02:00
|
|
|
|
2023-09-30 17:47:47 +02:00
|
|
|
DLL_LINKAGE TResources loadResources(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE TResources loadResource(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
2023-10-04 18:32:16 +02:00
|
|
|
DLL_LINKAGE PrimarySkill loadPrimary(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE std::vector<si32> loadPrimaries(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
2023-09-30 17:47:47 +02:00
|
|
|
DLL_LINKAGE SecondarySkill loadSecondary(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE std::map<SecondarySkill, si32> loadSecondaries(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2023-09-30 17:47:47 +02:00
|
|
|
DLL_LINKAGE ArtifactID loadArtifact(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE std::vector<ArtifactID> loadArtifacts(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2023-09-30 17:47:47 +02:00
|
|
|
DLL_LINKAGE SpellID loadSpell(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE std::vector<SpellID> loadSpells(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2023-09-30 17:47:47 +02:00
|
|
|
DLL_LINKAGE CStackBasicDescriptor loadCreature(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE std::vector<CStackBasicDescriptor> loadCreatures(const JsonNode & value, CRandomGenerator & rng, const Variables & variables);
|
|
|
|
DLL_LINKAGE std::vector<RandomStackInfo> evaluateCreatures(const JsonNode & value, const Variables & variables);
|
2014-06-22 13:39:40 +03:00
|
|
|
|
2023-10-09 04:19:12 +02:00
|
|
|
DLL_LINKAGE std::vector<PlayerColor> loadColors(const JsonNode & value, CRandomGenerator & rng);
|
|
|
|
DLL_LINKAGE std::vector<HeroTypeID> loadHeroes(const JsonNode & value, CRandomGenerator & rng);
|
|
|
|
DLL_LINKAGE std::vector<HeroClassID> loadHeroClasses(const JsonNode & value, CRandomGenerator & rng);
|
|
|
|
|
2014-06-24 00:05:53 +03:00
|
|
|
DLL_LINKAGE std::vector<Bonus> loadBonuses(const JsonNode & value);
|
2014-06-22 13:39:40 +03:00
|
|
|
}
|
2022-07-26 15:07:42 +02:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|