1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/lib/CBonusTypeHandler.cpp

335 lines
6.9 KiB
C++
Raw Normal View History

/*
* CBonusTypeHandler.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"
2017-08-08 16:53:01 +02:00
#define INSTANTIATE_CBonusTypeHandler_HERE
#include "CBonusTypeHandler.h"
#include "JsonNode.h"
#include "filesystem/Filesystem.h"
2014-01-19 16:29:13 +03:00
#include "GameConstants.h"
#include "CCreatureHandler.h"
#include "spells/CSpellHandler.h"
template class std::vector<VCMI_LIB_WRAP_NAMESPACE(CBonusType)>;
VCMI_LIB_NAMESPACE_BEGIN
2017-08-08 16:53:01 +02:00
///MacroString
2017-08-08 16:53:01 +02:00
MacroString::MacroString(const std::string & format)
{
static const std::string MACRO_START = "${";
static const std::string MACRO_END = "}";
static const size_t MACRO_START_L = 2;
static const size_t MACRO_END_L = 1;
2017-08-08 16:53:01 +02:00
size_t end_pos = 0;
size_t start_pos = std::string::npos;
do
{
start_pos = format.find(MACRO_START, end_pos);
2017-08-08 16:53:01 +02:00
if(!(start_pos == std::string::npos))
{
//chunk before macro
2017-08-08 16:53:01 +02:00
items.push_back(Item(Item::STRING, format.substr(end_pos, start_pos - end_pos)));
start_pos += MACRO_START_L;
end_pos = format.find(MACRO_END, start_pos);
2017-08-08 16:53:01 +02:00
if(end_pos == std::string::npos)
{
logBonus->warn("Format error in: %s", format);
end_pos = start_pos;
break;
}
else
{
2017-08-08 16:53:01 +02:00
items.push_back(Item(Item::MACRO, format.substr(start_pos, end_pos - start_pos)));
end_pos += MACRO_END_L;
}
2017-08-08 16:53:01 +02:00
}
}
2017-08-08 16:53:01 +02:00
while(start_pos != std::string::npos);
//no more macros
2017-08-08 16:53:01 +02:00
items.push_back(Item(Item::STRING, format.substr(end_pos)));
}
2017-08-08 16:53:01 +02:00
std::string MacroString::build(const GetValue & getValue) const
{
std::string result;
2017-08-08 16:53:01 +02:00
for(const Item & i : items)
{
2017-08-08 16:53:01 +02:00
switch(i.type)
{
2017-08-08 16:53:01 +02:00
case Item::MACRO:
{
result += getValue(i.value);
break;
}
case Item::STRING:
{
result += i.value;
break;
}
}
}
return result;
}
///CBonusType
CBonusType::CBonusType()
{
hidden = true;
icon.clear();
nameTemplate.clear();
descriptionTemplate.clear();
}
CBonusType::~CBonusType()
{
2017-08-08 16:53:01 +02:00
}
void CBonusType::buildMacros()
{
name = MacroString(nameTemplate);
description = MacroString(descriptionTemplate);
}
///CBonusTypeHandler
CBonusTypeHandler::CBonusTypeHandler()
{
//register predefined bonus types
#define BONUS_NAME(x) \
2017-08-08 16:53:01 +02:00
do { \
bonusTypes.push_back(CBonusType()); \
} while(0);
BONUS_LIST;
#undef BONUS_NAME
load();
}
CBonusTypeHandler::~CBonusTypeHandler()
{
//dtor
}
2017-08-08 16:53:01 +02:00
std::string CBonusTypeHandler::bonusToString(const std::shared_ptr<Bonus> & bonus, const IBonusBearer * bearer, bool description) const
{
auto getValue = [=](const std::string & name) -> std::string
{
2017-08-08 16:53:01 +02:00
if(name == "val")
{
2017-08-08 16:53:01 +02:00
return boost::lexical_cast<std::string>(bearer->valOfBonuses(Selector::typeSubtype(bonus->type, bonus->subtype)));
}
2017-08-08 16:53:01 +02:00
else if(name == "subtype.creature")
{
2017-08-08 16:53:01 +02:00
const CreatureID cre(bonus->subtype);
return cre.toCreature()->getNamePluralTranslated();
}
2017-08-08 16:53:01 +02:00
else if(name == "subtype.spell")
{
2017-08-08 16:53:01 +02:00
const SpellID sp(bonus->subtype);
return sp.toSpell()->getNameTranslated();
2017-08-08 16:53:01 +02:00
}
else if(name == "MR")
{
return boost::lexical_cast<std::string>(bearer->magicResistance());
2017-08-08 16:53:01 +02:00
}
else
{
logBonus->warn("Unknown macro in bonus config: %s", name);
2017-08-08 16:53:01 +02:00
return "[error]";
}
};
2017-08-08 16:53:01 +02:00
const CBonusType & bt = bonusTypes[bonus->type];
2014-12-25 23:02:50 +02:00
if(bt.hidden)
return "";
2017-08-08 16:53:01 +02:00
const MacroString & macro = description ? bt.description : bt.name;
return macro.build(getValue);
}
2017-08-08 16:53:01 +02:00
std::string CBonusTypeHandler::bonusToGraphics(const std::shared_ptr<Bonus> & bonus) const
{
std::string fileName;
bool fullPath = false;
2017-08-08 16:53:01 +02:00
switch(bonus->type)
{
2017-08-08 16:53:01 +02:00
case Bonus::SECONDARY_SKILL_PREMY:
if(bonus->subtype == SecondarySkill::RESISTANCE)
{
2017-08-08 16:53:01 +02:00
fileName = "E_DWARF.bmp";
}
2017-08-08 16:53:01 +02:00
break;
case Bonus::SPELL_IMMUNITY:
{
fullPath = true;
const CSpell * sp = SpellID(bonus->subtype).toSpell();
fileName = sp->getIconImmune();
break;
}
case Bonus::FIRE_IMMUNITY:
switch(bonus->subtype)
{
2017-08-08 16:53:01 +02:00
case 0:
fileName = "E_SPFIRE.bmp";
break;//all
case 1:
fileName = "E_SPFIRE1.bmp";
break;//not positive
case 2:
fileName = "E_FIRE.bmp";
break;//direct damage
}
2017-08-08 16:53:01 +02:00
break;
case Bonus::WATER_IMMUNITY:
switch(bonus->subtype)
{
2017-08-08 16:53:01 +02:00
case 0:
fileName = "E_SPWATER.bmp";
break;//all
case 1:
fileName = "E_SPWATER1.bmp";
break;//not positive
case 2:
fileName = "E_SPCOLD.bmp";
break;//direct damage
}
break;
case Bonus::AIR_IMMUNITY:
switch(bonus->subtype)
{
case 0:
fileName = "E_SPAIR.bmp";
break;//all
case 1:
fileName = "E_SPAIR1.bmp";
break;//not positive
case 2:
fileName = "E_LIGHT.bmp";
break;//direct damage
}
break;
case Bonus::EARTH_IMMUNITY:
switch(bonus->subtype)
{
case 0:
fileName = "E_SPEATH.bmp";
break;//all
case 1:
case 2://no specific icon for direct damage immunity
fileName = "E_SPEATH1.bmp";
break;//not positive
}
break;
case Bonus::LEVEL_SPELL_IMMUNITY:
{
if(vstd::iswithin(bonus->val, 1, 5))
{
fileName = "E_SPLVL" + boost::lexical_cast<std::string>(bonus->val) + ".bmp";
}
2017-08-08 16:53:01 +02:00
break;
}
case Bonus::GENERAL_DAMAGE_REDUCTION:
{
switch(bonus->subtype)
{
2017-08-08 16:53:01 +02:00
case 0:
fileName = "DamageReductionMelee.bmp";
break;
case 1:
fileName = "DamageReductionRanged.bmp";
break;
}
break;
}
2017-08-08 16:53:01 +02:00
default:
{
const CBonusType & bt = bonusTypes[bonus->type];
fileName = bt.icon;
fullPath = true;
2017-08-08 16:53:01 +02:00
}
break;
}
2017-08-08 16:53:01 +02:00
if(!fileName.empty() && !fullPath)
fileName = "zvs/Lib1.res/" + fileName;
2017-08-08 16:53:01 +02:00
return fileName;
}
void CBonusTypeHandler::load()
{
const JsonNode gameConf(ResourceID("config/gameConfig.json"));
2017-08-08 16:53:01 +02:00
const JsonNode config(JsonUtils::assembleFromFiles(gameConf["bonuses"].convertTo<std::vector<std::string>>()));
load(config);
}
2017-08-08 16:53:01 +02:00
void CBonusTypeHandler::load(const JsonNode & config)
{
for(auto & node : config.Struct())
{
auto it = bonusNameMap.find(node.first);
2017-08-08 16:53:01 +02:00
if(it == bonusNameMap.end())
{
//TODO: new bonus
// CBonusType bt;
// loadItem(node.second, bt);
2017-08-08 16:53:01 +02:00
//
// auto new_id = bonusTypes.size();
2017-08-08 16:53:01 +02:00
//
// bonusTypes.push_back(bt);
2017-08-08 16:53:01 +02:00
logBonus->warn("Adding new bonuses not implemented (%s)", node.first);
}
else
{
2017-08-08 16:53:01 +02:00
CBonusType & bt = bonusTypes[it->second];
loadItem(node.second, bt);
logBonus->trace("Loaded bonus type %s", node.first);
2017-08-08 16:53:01 +02:00
}
}
}
2017-08-08 16:53:01 +02:00
void CBonusTypeHandler::loadItem(const JsonNode & source, CBonusType & dest)
{
2013-03-14 20:56:52 +03:00
dest.nameTemplate = source["name"].String();
dest.descriptionTemplate = source["description"].String();
dest.hidden = source["hidden"].Bool(); //Null -> false
2017-08-08 16:53:01 +02:00
const JsonNode & graphics = source["graphics"];
if(!graphics.isNull())
{
2013-03-14 20:56:52 +03:00
dest.icon = graphics["icon"].String();
2017-08-08 16:53:01 +02:00
}
dest.buildMacros();
}
VCMI_LIB_NAMESPACE_END