2023-06-06 17:32:53 +02:00
|
|
|
/*
|
|
|
|
* CBankInstanceConstructor.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 "CBankInstanceConstructor.h"
|
|
|
|
|
|
|
|
#include "../JsonRandom.h"
|
|
|
|
#include "../CGeneralTextHandler.h"
|
|
|
|
#include "../IGameCallback.h"
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
bool CBankInstanceConstructor::hasNameTextID() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBankInstanceConstructor::initTypeData(const JsonNode & input)
|
|
|
|
{
|
|
|
|
if (input.Struct().count("name") == 0)
|
|
|
|
logMod->warn("Bank %s missing name!", getJsonKey());
|
|
|
|
|
|
|
|
VLC->generaltexth->registerString(input.meta, getNameTextID(), input["name"].String());
|
|
|
|
|
|
|
|
levels = input["levels"].Vector();
|
|
|
|
bankResetDuration = static_cast<si32>(input["resetDuration"].Float());
|
2023-06-21 15:49:44 +02:00
|
|
|
blockVisit = input["blockedVisitable"].Bool();
|
|
|
|
coastVisitable = input["coastVisitable"].Bool();
|
2023-06-06 17:32:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
BankConfig CBankInstanceConstructor::generateConfig(const JsonNode & level, CRandomGenerator & rng) const
|
|
|
|
{
|
|
|
|
BankConfig bc;
|
2023-09-30 17:47:47 +02:00
|
|
|
JsonRandom::Variables emptyVariables;
|
2023-06-06 17:32:53 +02:00
|
|
|
|
|
|
|
bc.chance = static_cast<ui32>(level["chance"].Float());
|
2023-09-30 17:47:47 +02:00
|
|
|
bc.guards = JsonRandom::loadCreatures(level["guards"], rng, emptyVariables);
|
2023-06-06 17:32:53 +02:00
|
|
|
|
|
|
|
bc.resources = ResourceSet(level["reward"]["resources"]);
|
2023-09-30 17:47:47 +02:00
|
|
|
bc.creatures = JsonRandom::loadCreatures(level["reward"]["creatures"], rng, emptyVariables);
|
|
|
|
bc.artifacts = JsonRandom::loadArtifacts(level["reward"]["artifacts"], rng, emptyVariables);
|
|
|
|
bc.spells = JsonRandom::loadSpells(level["reward"]["spells"], rng, emptyVariables);
|
2023-06-06 17:32:53 +02:00
|
|
|
|
|
|
|
return bc;
|
|
|
|
}
|
|
|
|
|
2023-06-07 23:42:47 +02:00
|
|
|
void CBankInstanceConstructor::randomizeObject(CBank * bank, CRandomGenerator & rng) const
|
2023-06-06 17:32:53 +02:00
|
|
|
{
|
|
|
|
bank->resetDuration = bankResetDuration;
|
2023-06-21 15:49:44 +02:00
|
|
|
bank->blockVisit = blockVisit;
|
|
|
|
bank->coastVisitable = coastVisitable;
|
2023-06-06 17:32:53 +02:00
|
|
|
|
|
|
|
si32 totalChance = 0;
|
|
|
|
for(const auto & node : levels)
|
|
|
|
totalChance += static_cast<si32>(node["chance"].Float());
|
|
|
|
|
|
|
|
assert(totalChance != 0);
|
|
|
|
|
|
|
|
si32 selectedChance = rng.nextInt(totalChance - 1);
|
|
|
|
|
|
|
|
int cumulativeChance = 0;
|
|
|
|
for(const auto & node : levels)
|
|
|
|
{
|
|
|
|
cumulativeChance += static_cast<int>(node["chance"].Float());
|
|
|
|
if(selectedChance < cumulativeChance)
|
|
|
|
{
|
|
|
|
bank->setConfig(generateConfig(node, rng));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CBankInfo::CBankInfo(const JsonVector & Config) :
|
|
|
|
config(Config)
|
|
|
|
{
|
|
|
|
assert(!Config.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
static void addStackToArmy(IObjectInfo::CArmyStructure & army, const CCreature * crea, si32 amount)
|
|
|
|
{
|
|
|
|
army.totalStrength += crea->getFightValue() * amount;
|
|
|
|
|
|
|
|
bool walker = true;
|
|
|
|
if(crea->hasBonusOfType(BonusType::SHOOTER))
|
|
|
|
{
|
|
|
|
army.shootersStrength += crea->getFightValue() * amount;
|
|
|
|
walker = false;
|
|
|
|
}
|
|
|
|
if(crea->hasBonusOfType(BonusType::FLYING))
|
|
|
|
{
|
|
|
|
army.flyersStrength += crea->getFightValue() * amount;
|
|
|
|
walker = false;
|
|
|
|
}
|
|
|
|
if(walker)
|
|
|
|
army.walkersStrength += crea->getFightValue() * amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
IObjectInfo::CArmyStructure CBankInfo::minGuards() const
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
JsonRandom::Variables emptyVariables;
|
|
|
|
|
2023-06-06 17:32:53 +02:00
|
|
|
std::vector<IObjectInfo::CArmyStructure> armies;
|
|
|
|
for(auto configEntry : config)
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
auto stacks = JsonRandom::evaluateCreatures(configEntry["guards"], emptyVariables);
|
2023-06-06 17:32:53 +02:00
|
|
|
IObjectInfo::CArmyStructure army;
|
|
|
|
for(auto & stack : stacks)
|
|
|
|
{
|
|
|
|
assert(!stack.allowedCreatures.empty());
|
|
|
|
auto weakest = boost::range::min_element(stack.allowedCreatures, [](const CCreature * a, const CCreature * b)
|
|
|
|
{
|
|
|
|
return a->getFightValue() < b->getFightValue();
|
|
|
|
});
|
|
|
|
addStackToArmy(army, *weakest, stack.minAmount);
|
|
|
|
}
|
|
|
|
armies.push_back(army);
|
|
|
|
}
|
|
|
|
return *boost::range::min_element(armies);
|
|
|
|
}
|
|
|
|
|
|
|
|
IObjectInfo::CArmyStructure CBankInfo::maxGuards() const
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
JsonRandom::Variables emptyVariables;
|
|
|
|
|
2023-06-06 17:32:53 +02:00
|
|
|
std::vector<IObjectInfo::CArmyStructure> armies;
|
|
|
|
for(auto configEntry : config)
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
auto stacks = JsonRandom::evaluateCreatures(configEntry["guards"], emptyVariables);
|
2023-06-06 17:32:53 +02:00
|
|
|
IObjectInfo::CArmyStructure army;
|
|
|
|
for(auto & stack : stacks)
|
|
|
|
{
|
|
|
|
assert(!stack.allowedCreatures.empty());
|
|
|
|
auto strongest = boost::range::max_element(stack.allowedCreatures, [](const CCreature * a, const CCreature * b)
|
|
|
|
{
|
|
|
|
return a->getFightValue() < b->getFightValue();
|
|
|
|
});
|
|
|
|
addStackToArmy(army, *strongest, stack.maxAmount);
|
|
|
|
}
|
|
|
|
armies.push_back(army);
|
|
|
|
}
|
|
|
|
return *boost::range::max_element(armies);
|
|
|
|
}
|
|
|
|
|
|
|
|
TPossibleGuards CBankInfo::getPossibleGuards() const
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
JsonRandom::Variables emptyVariables;
|
2023-06-06 17:32:53 +02:00
|
|
|
TPossibleGuards out;
|
|
|
|
|
|
|
|
for(const JsonNode & configEntry : config)
|
|
|
|
{
|
|
|
|
const JsonNode & guardsInfo = configEntry["guards"];
|
2023-09-30 17:47:47 +02:00
|
|
|
auto stacks = JsonRandom::evaluateCreatures(guardsInfo, emptyVariables);
|
2023-06-06 17:32:53 +02:00
|
|
|
IObjectInfo::CArmyStructure army;
|
|
|
|
|
|
|
|
|
|
|
|
for(auto stack : stacks)
|
|
|
|
{
|
|
|
|
army.totalStrength += stack.allowedCreatures.front()->getAIValue() * (stack.minAmount + stack.maxAmount) / 2;
|
|
|
|
//TODO: add fields for flyers, walkers etc...
|
|
|
|
}
|
|
|
|
|
|
|
|
ui8 chance = static_cast<ui8>(configEntry["chance"].Float());
|
|
|
|
out.push_back(std::make_pair(chance, army));
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<PossibleReward<TResources>> CBankInfo::getPossibleResourcesReward() const
|
|
|
|
{
|
|
|
|
std::vector<PossibleReward<TResources>> result;
|
|
|
|
|
|
|
|
for(const JsonNode & configEntry : config)
|
|
|
|
{
|
|
|
|
const JsonNode & resourcesInfo = configEntry["reward"]["resources"];
|
|
|
|
|
|
|
|
if(!resourcesInfo.isNull())
|
|
|
|
{
|
|
|
|
result.emplace_back(configEntry["chance"].Integer(), TResources(resourcesInfo));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<PossibleReward<CStackBasicDescriptor>> CBankInfo::getPossibleCreaturesReward() const
|
|
|
|
{
|
2023-09-30 17:47:47 +02:00
|
|
|
JsonRandom::Variables emptyVariables;
|
2023-06-06 17:32:53 +02:00
|
|
|
std::vector<PossibleReward<CStackBasicDescriptor>> aproximateReward;
|
|
|
|
|
|
|
|
for(const JsonNode & configEntry : config)
|
|
|
|
{
|
|
|
|
const JsonNode & guardsInfo = configEntry["reward"]["creatures"];
|
2023-09-30 17:47:47 +02:00
|
|
|
auto stacks = JsonRandom::evaluateCreatures(guardsInfo, emptyVariables);
|
2023-06-06 17:32:53 +02:00
|
|
|
|
|
|
|
for(auto stack : stacks)
|
|
|
|
{
|
|
|
|
const auto * creature = stack.allowedCreatures.front();
|
|
|
|
|
|
|
|
aproximateReward.emplace_back(configEntry["chance"].Integer(), CStackBasicDescriptor(creature, (stack.minAmount + stack.maxAmount) / 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return aproximateReward;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBankInfo::givesResources() const
|
|
|
|
{
|
|
|
|
for(const JsonNode & node : config)
|
|
|
|
if(!node["reward"]["resources"].isNull())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBankInfo::givesArtifacts() const
|
|
|
|
{
|
|
|
|
for(const JsonNode & node : config)
|
|
|
|
if(!node["reward"]["artifacts"].isNull())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBankInfo::givesCreatures() const
|
|
|
|
{
|
|
|
|
for(const JsonNode & node : config)
|
|
|
|
if(!node["reward"]["creatures"].isNull())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBankInfo::givesSpells() const
|
|
|
|
{
|
|
|
|
for(const JsonNode & node : config)
|
|
|
|
if(!node["reward"]["spells"].isNull())
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::unique_ptr<IObjectInfo> CBankInstanceConstructor::getObjectInfo(std::shared_ptr<const ObjectTemplate> tmpl) const
|
|
|
|
{
|
|
|
|
return std::unique_ptr<IObjectInfo>(new CBankInfo(levels));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|