2014-04-27 15:19:23 +03:00
|
|
|
#include "StdInc.h"
|
|
|
|
#include "CObjectConstructor.h"
|
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
#include "CRandomGenerator.h"
|
|
|
|
#include "StringConstants.h"
|
|
|
|
#include "CCreatureHandler.h"
|
|
|
|
|
2014-04-27 15:19:23 +03:00
|
|
|
/*
|
|
|
|
* CObjectConstructor.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
|
|
|
|
*
|
|
|
|
*/
|
2014-04-27 20:37:53 +03:00
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
namespace {
|
|
|
|
si32 loadValue(const JsonNode & value, CRandomGenerator & rng, si32 defaultValue = 0)
|
|
|
|
{
|
|
|
|
if (value.isNull())
|
|
|
|
return defaultValue;
|
|
|
|
if (value.getType() == JsonNode::DATA_FLOAT)
|
|
|
|
return value.Float();
|
|
|
|
si32 min = value["min"].Float();
|
|
|
|
si32 max = value["max"].Float();
|
|
|
|
return rng.getIntRange(min, max)();
|
|
|
|
}
|
|
|
|
|
|
|
|
TResources loadResources(const JsonNode & value, CRandomGenerator & rng)
|
|
|
|
{
|
|
|
|
TResources ret;
|
|
|
|
for (size_t i=0; i<GameConstants::RESOURCE_QUANTITY; i++)
|
|
|
|
{
|
|
|
|
ret[i] = loadValue(value[GameConstants::RESOURCE_NAMES[i]], rng);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<si32> loadPrimary(const JsonNode & value, CRandomGenerator & rng)
|
|
|
|
{
|
|
|
|
std::vector<si32> ret;
|
|
|
|
for (auto & name : PrimarySkill::names)
|
|
|
|
{
|
|
|
|
ret.push_back(loadValue(value[name], rng));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<SecondarySkill, si32> loadSecondary(const JsonNode & value, CRandomGenerator & rng)
|
|
|
|
{
|
|
|
|
std::map<SecondarySkill, si32> ret;
|
|
|
|
for (auto & pair : value.Struct())
|
|
|
|
{
|
|
|
|
SecondarySkill id(VLC->modh->identifiers.getIdentifier(pair.second.meta, "skill", pair.first).get());
|
|
|
|
ret[id] = loadValue(pair.second, rng);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<ArtifactID> loadArtifacts(const JsonNode & value, CRandomGenerator & rng)
|
|
|
|
{
|
|
|
|
std::vector<ArtifactID> ret;
|
|
|
|
for (const JsonNode & entry : value.Vector())
|
|
|
|
{
|
|
|
|
ArtifactID art(VLC->modh->identifiers.getIdentifier("artifact", entry).get());
|
|
|
|
ret.push_back(art);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<SpellID> loadSpells(const JsonNode & value, CRandomGenerator & rng)
|
|
|
|
{
|
|
|
|
std::vector<SpellID> ret;
|
|
|
|
for (const JsonNode & entry : value.Vector())
|
|
|
|
{
|
|
|
|
SpellID spell(VLC->modh->identifiers.getIdentifier("spell", entry).get());
|
|
|
|
ret.push_back(spell);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<CStackBasicDescriptor> loadCreatures(const JsonNode & value, CRandomGenerator & rng)
|
|
|
|
{
|
|
|
|
std::vector<CStackBasicDescriptor> ret;
|
|
|
|
for (auto & pair : value.Struct())
|
|
|
|
{
|
|
|
|
CStackBasicDescriptor stack;
|
|
|
|
stack.type = VLC->creh->creatures[VLC->modh->identifiers.getIdentifier(pair.second.meta, "creature", pair.first).get()];
|
|
|
|
stack.count = loadValue(pair.second, rng);
|
|
|
|
ret.push_back(stack);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Bonus> loadBonuses(const JsonNode & value)
|
|
|
|
{
|
|
|
|
std::vector<Bonus> ret;
|
|
|
|
for (const JsonNode & entry : value.Vector())
|
|
|
|
{
|
|
|
|
Bonus * bonus = JsonUtils::parseBonus(entry);
|
|
|
|
ret.push_back(*bonus);
|
|
|
|
delete bonus;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Component> loadComponents(const JsonNode & value)
|
|
|
|
{
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
MetaString loadMessage(const JsonNode & value)
|
|
|
|
{
|
|
|
|
MetaString ret;
|
|
|
|
if (value.getType() == JsonNode::DATA_FLOAT)
|
|
|
|
ret.addTxt(MetaString::ADVOB_TXT, value.Float());
|
|
|
|
else
|
|
|
|
ret << value.String();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool testForKey(const JsonNode & value, const std::string & key)
|
|
|
|
{
|
|
|
|
for( auto & reward : value["rewards"].Vector() )
|
|
|
|
{
|
|
|
|
if (!reward[key].isNull())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-16 23:50:02 +03:00
|
|
|
void CRandomRewardObjectInfo::init(const JsonNode & objectConfig)
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-16 23:50:02 +03:00
|
|
|
parameters = objectConfig;
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
void CRandomRewardObjectInfo::configureObject(CObjectWithReward * object, CRandomGenerator & rng) const
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-24 01:56:51 +03:00
|
|
|
std::map<si32, si32> thrownDice;
|
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
for (const JsonNode & reward : parameters["rewards"].Vector())
|
|
|
|
{
|
2014-05-24 01:56:51 +03:00
|
|
|
if (!reward["appearChance"].isNull())
|
|
|
|
{
|
|
|
|
JsonNode chance = reward["appearChance"];
|
|
|
|
si32 diceID = chance["dice"].Float();
|
|
|
|
|
|
|
|
if (thrownDice.count(diceID) == 0)
|
|
|
|
thrownDice[diceID] = rng.getIntRange(1, 100)();
|
|
|
|
|
|
|
|
if (!chance["min"].isNull())
|
|
|
|
{
|
|
|
|
int min = chance["min"].Float();
|
|
|
|
if (min > thrownDice[diceID])
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!chance["max"].isNull())
|
|
|
|
{
|
|
|
|
int max = chance["max"].Float();
|
|
|
|
if (max < thrownDice[diceID])
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
const JsonNode & limiter = reward["limiter"];
|
|
|
|
CVisitInfo info;
|
|
|
|
// load limiter
|
|
|
|
info.limiter.numOfGrants = loadValue(limiter["numOfGrants"], rng);
|
|
|
|
info.limiter.dayOfWeek = loadValue(limiter["dayOfWeek"], rng);
|
|
|
|
info.limiter.minLevel = loadValue(limiter["minLevel"], rng);
|
|
|
|
info.limiter.resources = loadResources(limiter["resources"], rng);
|
|
|
|
|
|
|
|
info.limiter.primary = loadPrimary(limiter["primary"], rng);
|
|
|
|
info.limiter.secondary = loadSecondary(limiter["secondary"], rng);
|
|
|
|
info.limiter.artifacts = loadArtifacts(limiter["artifacts"], rng);
|
|
|
|
info.limiter.creatures = loadCreatures(limiter["creatures"], rng);
|
|
|
|
|
|
|
|
info.reward.resources = loadResources(reward["resources"], rng);
|
|
|
|
|
|
|
|
info.reward.gainedExp = loadValue(reward["gainedExp"], rng);
|
|
|
|
info.reward.gainedLevels = loadValue(reward["gainedLevels"], rng);
|
|
|
|
|
|
|
|
info.reward.manaDiff = loadValue(reward["manaPoints"], rng);
|
|
|
|
info.reward.manaPercentage = loadValue(reward["manaPercentage"], rng, -1);
|
|
|
|
|
|
|
|
info.reward.movePoints = loadValue(reward["movePoints"], rng);
|
|
|
|
info.reward.movePercentage = loadValue(reward["movePercentage"], rng, -1);
|
|
|
|
|
|
|
|
info.reward.bonuses = loadBonuses(reward["bonuses"]);
|
|
|
|
|
|
|
|
info.reward.primary = loadPrimary(reward["primary"], rng);
|
|
|
|
info.reward.secondary = loadSecondary(reward["secondary"], rng);
|
|
|
|
|
|
|
|
info.reward.artifacts = loadArtifacts(reward["artifacts"], rng);
|
|
|
|
info.reward.spells = loadSpells(reward["spells"], rng);
|
|
|
|
info.reward.creatures = loadCreatures(reward["creatures"], rng);
|
2014-05-24 01:56:51 +03:00
|
|
|
|
|
|
|
info.message = loadMessage(reward["message"]);
|
|
|
|
info.selectChance = loadValue(reward["selectChance"], rng);
|
2014-05-17 17:50:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
object->onSelect = loadMessage(parameters["onSelectMessage"]);
|
|
|
|
object->onVisited = loadMessage(parameters["onVisitedMessage"]);
|
|
|
|
object->onEmpty = loadMessage(parameters["onEmptyMessage"]);
|
|
|
|
|
|
|
|
//TODO: visitMode and selectMode
|
2014-04-27 20:37:53 +03:00
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
object->soundID = parameters["soundID"].Float();
|
|
|
|
object->resetDuration = parameters["resetDuration"].Float();
|
|
|
|
object->canRefuse =parameters["canRefuse"].Bool();
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
2014-04-27 20:37:53 +03:00
|
|
|
|
2014-05-16 23:50:02 +03:00
|
|
|
bool CRandomRewardObjectInfo::givesResources() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "resources");
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-16 23:50:02 +03:00
|
|
|
bool CRandomRewardObjectInfo::givesExperience() const
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "gainedExp") || testForKey(parameters, "gainedLevels");
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-16 23:50:02 +03:00
|
|
|
bool CRandomRewardObjectInfo::givesMana() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "manaPoints") || testForKey(parameters, "manaPercentage");
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CRandomRewardObjectInfo::givesMovement() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "movePoints") || testForKey(parameters, "movePercentage");
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CRandomRewardObjectInfo::givesPrimarySkills() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "primary");
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CRandomRewardObjectInfo::givesSecondarySkills() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "secondary");
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CRandomRewardObjectInfo::givesArtifacts() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "artifacts");
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CRandomRewardObjectInfo::givesCreatures() const
|
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "spells");
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CRandomRewardObjectInfo::givesSpells() const
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "creatures");
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-16 23:50:02 +03:00
|
|
|
bool CRandomRewardObjectInfo::givesBonuses() const
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
return testForKey(parameters, "bonuses");
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-16 23:50:02 +03:00
|
|
|
CObjectWithRewardConstructor::CObjectWithRewardConstructor()
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-16 23:50:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CObjectWithRewardConstructor::init(const JsonNode & config)
|
|
|
|
{
|
2014-05-24 01:56:51 +03:00
|
|
|
AObjectTypeHandler::init(config);
|
2014-05-16 23:50:02 +03:00
|
|
|
objectInfo.init(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
CGObjectInstance * CObjectWithRewardConstructor::create(ObjectTemplate tmpl) const
|
|
|
|
{
|
|
|
|
auto ret = new CObjectWithReward();
|
|
|
|
ret->appearance = tmpl;
|
|
|
|
return ret;
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
2014-05-17 17:50:11 +03:00
|
|
|
void CObjectWithRewardConstructor::configureObject(CGObjectInstance * object, CRandomGenerator & rng) const
|
2014-04-27 20:37:53 +03:00
|
|
|
{
|
2014-05-17 17:50:11 +03:00
|
|
|
objectInfo.configureObject(dynamic_cast<CObjectWithReward*>(object), rng);
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const IObjectInfo * CObjectWithRewardConstructor::getObjectInfo(ObjectTemplate tmpl) const
|
|
|
|
{
|
2014-05-16 23:50:02 +03:00
|
|
|
return &objectInfo;
|
2014-04-27 20:37:53 +03:00
|
|
|
}
|