mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-12 10:03:53 +02:00
462c79e190
Method CBonusSystemNode::getAllBonuses have 'root' parameter which is never set to anythig else than nullptr. This patch removes the parameter and all code that depends on it as preparatory work for further bonus system optimization.
97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
/*
|
|
* IBonusBearer.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 "IBonusBearer.h"
|
|
#include "BonusList.h"
|
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
int IBonusBearer::valOfBonuses(const CSelector &selector, const std::string &cachingStr) const
|
|
{
|
|
TConstBonusListPtr hlp = getAllBonuses(selector, nullptr, cachingStr);
|
|
return hlp->totalValue();
|
|
}
|
|
|
|
bool IBonusBearer::hasBonus(const CSelector &selector, const std::string &cachingStr) const
|
|
{
|
|
//TODO: We don't need to count all bonuses and could break on first matching
|
|
return !getBonuses(selector, cachingStr)->empty();
|
|
}
|
|
|
|
bool IBonusBearer::hasBonus(const CSelector &selector, const CSelector &limit, const std::string &cachingStr) const
|
|
{
|
|
return !getBonuses(selector, limit, cachingStr)->empty();
|
|
}
|
|
|
|
TConstBonusListPtr IBonusBearer::getBonuses(const CSelector &selector, const std::string &cachingStr) const
|
|
{
|
|
return getAllBonuses(selector, nullptr, cachingStr);
|
|
}
|
|
|
|
TConstBonusListPtr IBonusBearer::getBonuses(const CSelector &selector, const CSelector &limit, const std::string &cachingStr) const
|
|
{
|
|
return getAllBonuses(selector, limit, cachingStr);
|
|
}
|
|
|
|
int IBonusBearer::valOfBonuses(BonusType type) const
|
|
{
|
|
//This part is performance-critical
|
|
std::string cachingStr = "type_" + std::to_string(static_cast<int>(type));
|
|
|
|
CSelector s = Selector::type()(type);
|
|
|
|
return valOfBonuses(s, cachingStr);
|
|
}
|
|
|
|
bool IBonusBearer::hasBonusOfType(BonusType type) const
|
|
{
|
|
//This part is performance-critical
|
|
std::string cachingStr = "type_" + std::to_string(static_cast<int>(type));
|
|
|
|
CSelector s = Selector::type()(type);
|
|
|
|
return hasBonus(s, cachingStr);
|
|
}
|
|
|
|
int IBonusBearer::valOfBonuses(BonusType type, BonusSubtypeID subtype) const
|
|
{
|
|
//This part is performance-critical
|
|
std::string cachingStr = "type_" + std::to_string(static_cast<int>(type)) + "_" + subtype.toString();
|
|
|
|
CSelector s = Selector::typeSubtype(type, subtype);
|
|
|
|
return valOfBonuses(s, cachingStr);
|
|
}
|
|
|
|
bool IBonusBearer::hasBonusOfType(BonusType type, BonusSubtypeID subtype) const
|
|
{
|
|
//This part is performance-critical
|
|
std::string cachingStr = "type_" + std::to_string(static_cast<int>(type)) + "_" + subtype.toString();
|
|
|
|
CSelector s = Selector::typeSubtype(type, subtype);
|
|
|
|
return hasBonus(s, cachingStr);
|
|
}
|
|
|
|
bool IBonusBearer::hasBonusFrom(BonusSource source, BonusSourceID sourceID) const
|
|
{
|
|
return hasBonus(Selector::source(source,sourceID));
|
|
}
|
|
|
|
std::shared_ptr<const Bonus> IBonusBearer::getBonus(const CSelector &selector) const
|
|
{
|
|
auto bonuses = getAllBonuses(selector, Selector::all);
|
|
return bonuses->getFirst(Selector::all);
|
|
}
|
|
|
|
VCMI_LIB_NAMESPACE_END
|