2012-12-19 17:54:10 +03:00
|
|
|
/*
|
|
|
|
* HeroBonus.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
#include "StdInc.h"
|
2010-02-10 04:56:00 +02:00
|
|
|
#include "HeroBonus.h"
|
2011-12-14 00:23:17 +03:00
|
|
|
|
2010-05-02 21:20:26 +03:00
|
|
|
#include "VCMI_Lib.h"
|
2015-02-02 10:25:26 +02:00
|
|
|
#include "spells/CSpellHandler.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "CCreatureHandler.h"
|
2010-07-12 13:20:25 +03:00
|
|
|
#include "CCreatureSet.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "CHeroHandler.h"
|
2018-04-17 14:59:30 +02:00
|
|
|
#include "CTownHandler.h"
|
2011-01-15 04:17:56 +02:00
|
|
|
#include "CGeneralTextHandler.h"
|
2017-08-30 12:35:23 +02:00
|
|
|
#include "CSkillHandler.h"
|
2017-03-17 17:48:44 +02:00
|
|
|
#include "CStack.h"
|
2011-02-22 11:47:25 +02:00
|
|
|
#include "CArtHandler.h"
|
2017-09-12 08:15:13 +02:00
|
|
|
#include "StringConstants.h"
|
2018-04-17 14:59:30 +02:00
|
|
|
#include "battle/BattleInfo.h"
|
2010-04-03 06:33:46 +03:00
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
#define FOREACH_PARENT(pname) TNodes lparents; getParents(lparents); for(CBonusSystemNode *pname : lparents)
|
|
|
|
#define FOREACH_CPARENT(pname) TCNodes lparents; getParents(lparents); for(const CBonusSystemNode *pname : lparents)
|
|
|
|
#define FOREACH_RED_CHILD(pname) TNodes lchildren; getRedChildren(lchildren); for(CBonusSystemNode *pname : lchildren)
|
|
|
|
#define FOREACH_RED_PARENT(pname) TNodes lparents; getRedParents(lparents); for(CBonusSystemNode *pname : lparents)
|
2010-02-10 04:56:00 +02:00
|
|
|
|
2014-10-02 18:43:46 +03:00
|
|
|
#define BONUS_NAME(x) { #x, Bonus::x },
|
|
|
|
const std::map<std::string, Bonus::BonusType> bonusNameMap = { BONUS_LIST };
|
2010-07-12 13:20:25 +03:00
|
|
|
#undef BONUS_NAME
|
|
|
|
|
2014-10-02 18:43:46 +03:00
|
|
|
#define BONUS_VALUE(x) { #x, Bonus::x },
|
|
|
|
const std::map<std::string, Bonus::ValueType> bonusValueMap = { BONUS_VALUE_LIST };
|
2012-08-23 21:46:43 +03:00
|
|
|
#undef BONUS_VALUE
|
|
|
|
|
2014-10-02 18:43:46 +03:00
|
|
|
#define BONUS_SOURCE(x) { #x, Bonus::x },
|
|
|
|
const std::map<std::string, Bonus::BonusSource> bonusSourceMap = { BONUS_SOURCE_LIST };
|
2012-08-23 21:46:43 +03:00
|
|
|
#undef BONUS_SOURCE
|
|
|
|
|
2014-10-02 18:43:46 +03:00
|
|
|
#define BONUS_ITEM(x) { #x, Bonus::x },
|
2012-08-23 21:46:43 +03:00
|
|
|
|
2016-08-18 14:03:20 +02:00
|
|
|
const std::map<std::string, ui16> bonusDurationMap =
|
2014-10-02 18:43:46 +03:00
|
|
|
{
|
2012-08-23 21:46:43 +03:00
|
|
|
BONUS_ITEM(PERMANENT)
|
|
|
|
BONUS_ITEM(ONE_BATTLE)
|
|
|
|
BONUS_ITEM(ONE_DAY)
|
|
|
|
BONUS_ITEM(ONE_WEEK)
|
|
|
|
BONUS_ITEM(N_TURNS)
|
|
|
|
BONUS_ITEM(N_DAYS)
|
2016-09-30 00:57:33 +02:00
|
|
|
BONUS_ITEM(UNTIL_BEING_ATTACKED)
|
2012-08-23 21:46:43 +03:00
|
|
|
BONUS_ITEM(UNTIL_ATTACK)
|
|
|
|
BONUS_ITEM(STACK_GETS_TURN)
|
2014-10-02 18:43:46 +03:00
|
|
|
BONUS_ITEM(COMMANDER_KILLED)
|
2016-09-30 00:57:33 +02:00
|
|
|
{ "UNITL_BEING_ATTACKED", Bonus::UNTIL_BEING_ATTACKED }//typo, but used in some mods
|
2014-10-02 18:43:46 +03:00
|
|
|
};
|
2012-08-23 21:46:43 +03:00
|
|
|
|
2016-08-18 14:03:20 +02:00
|
|
|
const std::map<std::string, Bonus::LimitEffect> bonusLimitEffect =
|
2014-10-02 18:43:46 +03:00
|
|
|
{
|
2012-08-23 21:46:43 +03:00
|
|
|
BONUS_ITEM(NO_LIMIT)
|
|
|
|
BONUS_ITEM(ONLY_DISTANCE_FIGHT)
|
2014-05-21 12:02:20 +03:00
|
|
|
BONUS_ITEM(ONLY_MELEE_FIGHT)
|
2014-10-02 18:43:46 +03:00
|
|
|
BONUS_ITEM(ONLY_ENEMY_ARMY)
|
|
|
|
};
|
|
|
|
|
|
|
|
const std::map<std::string, TLimiterPtr> bonusLimiterMap =
|
|
|
|
{
|
2015-12-29 04:43:33 +02:00
|
|
|
{"SHOOTER_ONLY", std::make_shared<HasAnotherBonusLimiter>(Bonus::SHOOTER)},
|
|
|
|
{"DRAGON_NATURE", std::make_shared<HasAnotherBonusLimiter>(Bonus::DRAGON_NATURE)},
|
2018-04-17 14:59:30 +02:00
|
|
|
{"IS_UNDEAD", std::make_shared<HasAnotherBonusLimiter>(Bonus::UNDEAD)},
|
|
|
|
{"CREATURE_NATIVE_TERRAIN", std::make_shared<CreatureTerrainLimiter>()}
|
2014-10-02 18:43:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const std::map<std::string, TPropagatorPtr> bonusPropagatorMap =
|
|
|
|
{
|
2015-12-29 04:43:33 +02:00
|
|
|
{"BATTLE_WIDE", std::make_shared<CPropagatorNodeType>(CBonusSystemNode::BATTLE)},
|
|
|
|
{"VISITED_TOWN_AND_VISITOR", std::make_shared<CPropagatorNodeType>(CBonusSystemNode::TOWN_AND_VISITOR)},
|
|
|
|
{"PLAYER_PROPAGATOR", std::make_shared<CPropagatorNodeType>(CBonusSystemNode::PLAYER)},
|
|
|
|
{"HERO", std::make_shared<CPropagatorNodeType>(CBonusSystemNode::HERO)},
|
|
|
|
{"TEAM_PROPAGATOR", std::make_shared<CPropagatorNodeType>(CBonusSystemNode::TEAM)}, //untested
|
|
|
|
{"GLOBAL_EFFECT", std::make_shared<CPropagatorNodeType>(CBonusSystemNode::GLOBAL_EFFECTS)}
|
2014-10-02 18:43:46 +03:00
|
|
|
}; //untested
|
2012-09-27 19:48:46 +03:00
|
|
|
|
2017-09-19 00:08:28 +02:00
|
|
|
const std::map<std::string, TUpdaterPtr> bonusUpdaterMap =
|
|
|
|
{
|
2017-09-19 01:43:13 +02:00
|
|
|
{"TIMES_HERO_LEVEL", std::make_shared<TimesHeroLevelUpdater>()},
|
|
|
|
{"TIMES_STACK_LEVEL", std::make_shared<TimesStackLevelUpdater>()}
|
2017-09-19 00:08:28 +02:00
|
|
|
};
|
|
|
|
|
2017-07-04 13:24:46 +02:00
|
|
|
///CBonusProxy
|
2017-07-20 06:08:49 +02:00
|
|
|
CBonusProxy::CBonusProxy(const IBonusBearer * Target, CSelector Selector)
|
2020-11-11 21:43:40 +02:00
|
|
|
: bonusListCachedLast(0),
|
2017-07-20 06:08:49 +02:00
|
|
|
target(Target),
|
|
|
|
selector(Selector),
|
2020-11-11 21:43:40 +02:00
|
|
|
bonusList()
|
2017-07-04 13:24:46 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
CBonusProxy::CBonusProxy(const CBonusProxy & other)
|
2020-11-11 21:43:40 +02:00
|
|
|
: bonusListCachedLast(other.bonusListCachedLast),
|
2017-07-20 06:08:49 +02:00
|
|
|
target(other.target),
|
|
|
|
selector(other.selector),
|
2020-11-11 21:43:40 +02:00
|
|
|
bonusList(other.bonusList)
|
2017-07-20 06:08:49 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
CBonusProxy::CBonusProxy(CBonusProxy && other)
|
2020-11-11 21:43:40 +02:00
|
|
|
: bonusListCachedLast(0),
|
2017-07-20 06:08:49 +02:00
|
|
|
target(other.target),
|
|
|
|
selector(),
|
2020-11-11 21:43:40 +02:00
|
|
|
bonusList()
|
2017-07-20 06:08:49 +02:00
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
std::swap(bonusListCachedLast, other.bonusListCachedLast);
|
2017-07-20 06:08:49 +02:00
|
|
|
std::swap(selector, other.selector);
|
2020-11-11 21:43:40 +02:00
|
|
|
std::swap(bonusList, other.bonusList);
|
2017-07-20 06:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CBonusProxy & CBonusProxy::operator=(const CBonusProxy & other)
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
bonusListCachedLast = other.bonusListCachedLast;
|
2017-07-20 06:08:49 +02:00
|
|
|
selector = other.selector;
|
2020-11-11 21:43:40 +02:00
|
|
|
bonusList = other.bonusList;
|
2017-07-20 06:08:49 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
CBonusProxy & CBonusProxy::operator=(CBonusProxy && other)
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
std::swap(bonusListCachedLast, other.bonusListCachedLast);
|
2017-07-20 06:08:49 +02:00
|
|
|
std::swap(selector, other.selector);
|
2020-11-11 21:43:40 +02:00
|
|
|
std::swap(bonusList, other.bonusList);
|
2017-07-20 06:08:49 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
TConstBonusListPtr CBonusProxy::getBonusList() const
|
2017-07-04 13:24:46 +02:00
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
if(target->getTreeVersion() != bonusListCachedLast || !bonusList)
|
2017-07-04 13:24:46 +02:00
|
|
|
{
|
2017-07-08 20:20:38 +02:00
|
|
|
//TODO: support limiters
|
2020-11-11 21:43:40 +02:00
|
|
|
bonusList = target->getAllBonuses(selector, Selector::all);
|
|
|
|
bonusListCachedLast = target->getTreeVersion();
|
2017-07-04 13:24:46 +02:00
|
|
|
}
|
2020-11-11 21:43:40 +02:00
|
|
|
return bonusList;
|
2017-07-04 13:24:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const BonusList * CBonusProxy::operator->() const
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
return getBonusList().get();
|
2017-07-04 13:24:46 +02:00
|
|
|
}
|
2012-09-27 19:48:46 +03:00
|
|
|
|
2020-06-28 15:19:27 +02:00
|
|
|
CTotalsProxy::CTotalsProxy(const IBonusBearer * Target, CSelector Selector, int InitialValue)
|
2020-11-11 21:43:40 +02:00
|
|
|
: CBonusProxy(Target, Selector),
|
2020-06-28 15:19:27 +02:00
|
|
|
initialValue(InitialValue),
|
|
|
|
meleeCachedLast(0),
|
|
|
|
meleeValue(0),
|
|
|
|
rangedCachedLast(0),
|
|
|
|
rangedValue(0),
|
|
|
|
value(0),
|
2020-11-11 21:43:40 +02:00
|
|
|
valueCachedLast(0)
|
2020-06-28 15:19:27 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CTotalsProxy::CTotalsProxy(const CTotalsProxy & other)
|
2020-11-11 21:43:40 +02:00
|
|
|
: CBonusProxy(other),
|
2020-06-28 15:19:27 +02:00
|
|
|
initialValue(other.initialValue),
|
|
|
|
meleeCachedLast(other.meleeCachedLast),
|
|
|
|
meleeValue(other.meleeValue),
|
|
|
|
rangedCachedLast(other.rangedCachedLast),
|
|
|
|
rangedValue(other.rangedValue)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CTotalsProxy & CTotalsProxy::operator=(const CTotalsProxy & other)
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
CBonusProxy::operator=(other);
|
2020-06-28 15:19:27 +02:00
|
|
|
initialValue = other.initialValue;
|
|
|
|
meleeCachedLast = other.meleeCachedLast;
|
|
|
|
meleeValue = other.meleeValue;
|
|
|
|
rangedCachedLast = other.rangedCachedLast;
|
|
|
|
rangedValue = other.rangedValue;
|
|
|
|
value = other.value;
|
2020-11-11 21:43:40 +02:00
|
|
|
valueCachedLast = other.valueCachedLast;
|
2020-06-28 15:19:27 +02:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CTotalsProxy::getValue() const
|
|
|
|
{
|
|
|
|
const auto treeVersion = target->getTreeVersion();
|
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
if(treeVersion != valueCachedLast)
|
2020-06-28 15:19:27 +02:00
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
auto bonuses = getBonusList();
|
2020-06-28 15:19:27 +02:00
|
|
|
|
|
|
|
value = initialValue + bonuses->totalValue();
|
2020-11-11 21:43:40 +02:00
|
|
|
valueCachedLast = treeVersion;
|
2020-06-28 15:19:27 +02:00
|
|
|
}
|
2020-11-11 21:43:40 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CTotalsProxy::getValueAndList(TConstBonusListPtr & outBonusList) const
|
|
|
|
{
|
|
|
|
const auto treeVersion = target->getTreeVersion();
|
|
|
|
outBonusList = getBonusList();
|
2020-06-28 15:19:27 +02:00
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
if(treeVersion != valueCachedLast)
|
|
|
|
{
|
|
|
|
value = initialValue + outBonusList->totalValue();
|
|
|
|
valueCachedLast = treeVersion;
|
|
|
|
}
|
2020-06-28 15:19:27 +02:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CTotalsProxy::getMeleeValue() const
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
static const auto limit = Selector::effectRange()(Bonus::NO_LIMIT).Or(Selector::effectRange()(Bonus::ONLY_MELEE_FIGHT));
|
2020-06-28 15:19:27 +02:00
|
|
|
|
|
|
|
const auto treeVersion = target->getTreeVersion();
|
|
|
|
|
|
|
|
if(treeVersion != meleeCachedLast)
|
|
|
|
{
|
|
|
|
auto bonuses = target->getBonuses(selector, limit);
|
|
|
|
meleeValue = initialValue + bonuses->totalValue();
|
|
|
|
meleeCachedLast = treeVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
return meleeValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CTotalsProxy::getRangedValue() const
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
static const auto limit = Selector::effectRange()(Bonus::NO_LIMIT).Or(Selector::effectRange()(Bonus::ONLY_DISTANCE_FIGHT));
|
2020-06-28 15:19:27 +02:00
|
|
|
|
|
|
|
const auto treeVersion = target->getTreeVersion();
|
|
|
|
|
|
|
|
if(treeVersion != rangedCachedLast)
|
|
|
|
{
|
|
|
|
auto bonuses = target->getBonuses(selector, limit);
|
|
|
|
rangedValue = initialValue + bonuses->totalValue();
|
|
|
|
rangedCachedLast = treeVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rangedValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
///CCheckProxy
|
|
|
|
CCheckProxy::CCheckProxy(const IBonusBearer * Target, CSelector Selector)
|
|
|
|
: target(Target),
|
|
|
|
selector(Selector),
|
|
|
|
cachedLast(0),
|
|
|
|
hasBonus(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCheckProxy::CCheckProxy(const CCheckProxy & other)
|
|
|
|
: target(other.target),
|
|
|
|
selector(other.selector),
|
|
|
|
cachedLast(other.cachedLast),
|
|
|
|
hasBonus(other.hasBonus)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCheckProxy::getHasBonus() const
|
|
|
|
{
|
|
|
|
const auto treeVersion = target->getTreeVersion();
|
|
|
|
|
|
|
|
if(treeVersion != cachedLast)
|
|
|
|
{
|
|
|
|
hasBonus = target->hasBonus(selector);
|
|
|
|
cachedLast = treeVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hasBonus;
|
|
|
|
}
|
|
|
|
|
2018-03-12 07:20:18 +02:00
|
|
|
CAddInfo::CAddInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CAddInfo::CAddInfo(si32 value)
|
|
|
|
{
|
|
|
|
if(value != CAddInfo::NONE)
|
|
|
|
push_back(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CAddInfo::operator==(si32 value) const
|
|
|
|
{
|
|
|
|
switch(size())
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
return value == CAddInfo::NONE;
|
|
|
|
case 1:
|
|
|
|
return operator[](0) == value;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CAddInfo::operator!=(si32 value) const
|
|
|
|
{
|
|
|
|
return !operator==(value);
|
|
|
|
}
|
|
|
|
|
2018-03-17 00:03:02 +02:00
|
|
|
si32 & CAddInfo::operator[](size_type pos)
|
|
|
|
{
|
2018-03-20 01:58:02 +02:00
|
|
|
if(pos >= size())
|
2018-03-17 00:03:02 +02:00
|
|
|
resize(pos + 1, CAddInfo::NONE);
|
|
|
|
return vector::operator[](pos);
|
|
|
|
}
|
|
|
|
|
2018-03-12 07:20:18 +02:00
|
|
|
si32 CAddInfo::operator[](size_type pos) const
|
|
|
|
{
|
|
|
|
return pos < size() ? vector::operator[](pos) : CAddInfo::NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CAddInfo::toString() const
|
|
|
|
{
|
|
|
|
return toJsonNode().toJson(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode CAddInfo::toJsonNode() const
|
|
|
|
{
|
|
|
|
if(size() < 2)
|
|
|
|
{
|
|
|
|
return JsonUtils::intNode(operator[](0));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
JsonNode node(JsonNode::JsonType::DATA_VECTOR);
|
|
|
|
for(si32 value : *this)
|
|
|
|
node.Vector().push_back(JsonUtils::intNode(value));
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
std::atomic<int32_t> CBonusSystemNode::treeChanged(1);
|
2011-07-13 21:39:02 +03:00
|
|
|
const bool CBonusSystemNode::cachingEnabled = true;
|
2011-06-25 16:53:15 +03:00
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
BonusList::BonusList(bool BelongsToTree) : belongsToTree(BelongsToTree)
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
BonusList::BonusList(const BonusList &bonusList)
|
|
|
|
{
|
|
|
|
bonuses.resize(bonusList.size());
|
|
|
|
std::copy(bonusList.begin(), bonusList.end(), bonuses.begin());
|
|
|
|
belongsToTree = false;
|
|
|
|
}
|
|
|
|
|
2016-08-15 08:28:00 +02:00
|
|
|
BonusList::BonusList(BonusList&& other):
|
|
|
|
belongsToTree(false)
|
|
|
|
{
|
|
|
|
std::swap(belongsToTree, other.belongsToTree);
|
|
|
|
std::swap(bonuses, other.bonuses);
|
|
|
|
}
|
|
|
|
|
2011-07-13 21:39:02 +03:00
|
|
|
BonusList& BonusList::operator=(const BonusList &bonusList)
|
|
|
|
{
|
|
|
|
bonuses.resize(bonusList.size());
|
|
|
|
std::copy(bonusList.begin(), bonusList.end(), bonuses.begin());
|
|
|
|
belongsToTree = false;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2016-07-29 12:10:32 +02:00
|
|
|
void BonusList::changed()
|
|
|
|
{
|
|
|
|
if(belongsToTree)
|
|
|
|
CBonusSystemNode::treeHasChanged();
|
|
|
|
}
|
|
|
|
|
2018-03-27 09:54:58 +02:00
|
|
|
void BonusList::stackBonuses()
|
|
|
|
{
|
|
|
|
boost::sort(bonuses, [](std::shared_ptr<Bonus> b1, std::shared_ptr<Bonus> b2) -> bool
|
|
|
|
{
|
|
|
|
if(b1 == b2)
|
|
|
|
return false;
|
|
|
|
#define COMPARE_ATT(ATT) if(b1->ATT != b2->ATT) return b1->ATT < b2->ATT
|
|
|
|
COMPARE_ATT(stacking);
|
|
|
|
COMPARE_ATT(type);
|
|
|
|
COMPARE_ATT(subtype);
|
|
|
|
COMPARE_ATT(valType);
|
|
|
|
#undef COMPARE_ATT
|
|
|
|
return b1->val > b2->val;
|
|
|
|
});
|
|
|
|
// remove non-stacking
|
|
|
|
size_t next = 1;
|
|
|
|
while(next < bonuses.size())
|
|
|
|
{
|
|
|
|
bool remove;
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<Bonus> last = bonuses[next-1];
|
|
|
|
std::shared_ptr<Bonus> current = bonuses[next];
|
2018-03-27 09:54:58 +02:00
|
|
|
|
|
|
|
if(current->stacking.empty())
|
|
|
|
remove = current == last;
|
|
|
|
else if(current->stacking == "ALWAYS")
|
|
|
|
remove = false;
|
|
|
|
else
|
|
|
|
remove = current->stacking == last->stacking
|
|
|
|
&& current->type == last->type
|
|
|
|
&& current->subtype == last->subtype
|
|
|
|
&& current->valType == last->valType;
|
|
|
|
|
|
|
|
if(remove)
|
|
|
|
bonuses.erase(bonuses.begin() + next);
|
|
|
|
else
|
|
|
|
next++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-13 21:39:02 +03:00
|
|
|
int BonusList::totalValue() const
|
2010-02-10 04:56:00 +02:00
|
|
|
{
|
2010-05-02 21:20:26 +03:00
|
|
|
int base = 0;
|
|
|
|
int percentToBase = 0;
|
|
|
|
int percentToAll = 0;
|
|
|
|
int additive = 0;
|
2010-08-05 12:11:38 +03:00
|
|
|
int indepMax = 0;
|
|
|
|
bool hasIndepMax = false;
|
2011-02-12 18:12:48 +02:00
|
|
|
int indepMin = 0;
|
|
|
|
bool hasIndepMin = false;
|
2010-02-10 04:56:00 +02:00
|
|
|
|
2018-03-27 09:54:58 +02:00
|
|
|
for(std::shared_ptr<Bonus> b : bonuses)
|
2010-02-10 04:56:00 +02:00
|
|
|
{
|
2011-07-16 16:57:25 +03:00
|
|
|
switch(b->valType)
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
|
|
|
case Bonus::BASE_NUMBER:
|
2011-07-16 16:57:25 +03:00
|
|
|
base += b->val;
|
2010-05-02 21:20:26 +03:00
|
|
|
break;
|
|
|
|
case Bonus::PERCENT_TO_ALL:
|
2011-07-16 16:57:25 +03:00
|
|
|
percentToAll += b->val;
|
2010-05-02 21:20:26 +03:00
|
|
|
break;
|
|
|
|
case Bonus::PERCENT_TO_BASE:
|
2011-07-16 16:57:25 +03:00
|
|
|
percentToBase += b->val;
|
2010-05-02 21:20:26 +03:00
|
|
|
break;
|
|
|
|
case Bonus::ADDITIVE_VALUE:
|
2011-07-16 16:57:25 +03:00
|
|
|
additive += b->val;
|
2010-08-05 12:11:38 +03:00
|
|
|
break;
|
|
|
|
case Bonus::INDEPENDENT_MAX:
|
2011-02-21 18:53:23 +02:00
|
|
|
if (!hasIndepMax)
|
2010-08-05 12:11:38 +03:00
|
|
|
{
|
2011-07-16 16:57:25 +03:00
|
|
|
indepMax = b->val;
|
2010-08-05 12:11:38 +03:00
|
|
|
hasIndepMax = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
vstd::amax(indepMax, b->val);
|
2010-08-05 12:11:38 +03:00
|
|
|
}
|
|
|
|
|
2011-02-12 18:12:48 +02:00
|
|
|
break;
|
|
|
|
case Bonus::INDEPENDENT_MIN:
|
2011-02-21 18:53:23 +02:00
|
|
|
if (!hasIndepMin)
|
2011-02-12 18:12:48 +02:00
|
|
|
{
|
2011-07-16 16:57:25 +03:00
|
|
|
indepMin = b->val;
|
2011-02-12 18:12:48 +02:00
|
|
|
hasIndepMin = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
vstd::amin(indepMin, b->val);
|
2011-02-12 18:12:48 +02:00
|
|
|
}
|
|
|
|
|
2010-05-02 21:20:26 +03:00
|
|
|
break;
|
|
|
|
}
|
2010-02-10 04:56:00 +02:00
|
|
|
}
|
2010-05-02 21:20:26 +03:00
|
|
|
int modifiedBase = base + (base * percentToBase) / 100;
|
|
|
|
modifiedBase += additive;
|
2010-08-05 12:11:38 +03:00
|
|
|
int valFirst = (modifiedBase * (100 + percentToAll)) / 100;
|
2011-02-12 18:12:48 +02:00
|
|
|
|
|
|
|
if(hasIndepMin && hasIndepMax)
|
|
|
|
assert(indepMin < indepMax);
|
2012-08-26 12:07:48 +03:00
|
|
|
|
2020-10-01 10:38:06 +02:00
|
|
|
const int notIndepBonuses = (int)boost::count_if(bonuses, [](const std::shared_ptr<Bonus>& b)
|
2013-02-13 22:35:43 +03:00
|
|
|
{
|
|
|
|
return b->valType != Bonus::INDEPENDENT_MAX && b->valType != Bonus::INDEPENDENT_MIN;
|
2012-08-26 12:07:48 +03:00
|
|
|
});
|
|
|
|
|
2010-08-05 12:11:38 +03:00
|
|
|
if (hasIndepMax)
|
2012-08-26 12:07:48 +03:00
|
|
|
{
|
|
|
|
if(notIndepBonuses)
|
|
|
|
vstd::amax(valFirst, indepMax);
|
|
|
|
else
|
|
|
|
valFirst = indepMax;
|
|
|
|
}
|
2011-02-21 18:53:23 +02:00
|
|
|
if (hasIndepMin)
|
2012-08-26 12:07:48 +03:00
|
|
|
{
|
|
|
|
if(notIndepBonuses)
|
|
|
|
vstd::amin(valFirst, indepMin);
|
|
|
|
else
|
|
|
|
valFirst = indepMin;
|
|
|
|
}
|
2011-02-12 18:12:48 +02:00
|
|
|
|
|
|
|
return valFirst;
|
2010-02-10 04:56:00 +02:00
|
|
|
}
|
2016-09-19 23:36:35 +02:00
|
|
|
|
|
|
|
std::shared_ptr<Bonus> BonusList::getFirst(const CSelector &select)
|
2010-02-10 04:56:00 +02:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for (auto & b : bonuses)
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
if(select(b.get()))
|
|
|
|
return b;
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
2010-02-10 04:56:00 +02:00
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<const Bonus> BonusList::getFirst(const CSelector &selector) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for (auto & b : bonuses)
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
if(selector(b.get()))
|
|
|
|
return b;
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2010-02-10 04:56:00 +02:00
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
void BonusList::getBonuses(BonusList & out, const CSelector &selector) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
getBonuses(out, selector, nullptr);
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
void BonusList::getBonuses(BonusList & out, const CSelector &selector, const CSelector &limit) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for (auto & b : bonuses)
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
|
|
|
//add matching bonuses that matches limit predicate or have NO_LIMIT if no given predicate
|
2016-09-19 23:36:35 +02:00
|
|
|
if(selector(b.get()) && ((!limit && b->effectRange == Bonus::NO_LIMIT) || ((bool)limit && limit(b.get()))))
|
2012-03-06 19:59:55 +03:00
|
|
|
out.push_back(b);
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
2010-08-31 13:22:21 +03:00
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
void BonusList::getAllBonuses(BonusList &out) const
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto & b : bonuses)
|
2012-03-06 19:59:55 +03:00
|
|
|
out.push_back(b);
|
2011-07-13 21:39:02 +03:00
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
int BonusList::valOfBonuses(const CSelector &select) const
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
BonusList ret;
|
2013-06-29 16:05:48 +03:00
|
|
|
CSelector limit = nullptr;
|
2012-03-06 19:59:55 +03:00
|
|
|
getBonuses(ret, select, limit);
|
|
|
|
return ret.totalValue();
|
2010-07-12 13:20:25 +03:00
|
|
|
}
|
|
|
|
|
2018-03-27 09:54:58 +02:00
|
|
|
JsonNode BonusList::toJsonNode() const
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
2018-03-27 09:54:58 +02:00
|
|
|
JsonNode node(JsonNode::JsonType::DATA_VECTOR);
|
|
|
|
for(std::shared_ptr<Bonus> b : bonuses)
|
|
|
|
node.Vector().push_back(b->toJsonNode());
|
|
|
|
return node;
|
2011-07-13 21:39:02 +03:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void BonusList::push_back(std::shared_ptr<Bonus> x)
|
2011-02-27 13:26:18 +02:00
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
bonuses.push_back(x);
|
2016-07-29 12:10:32 +02:00
|
|
|
changed();
|
2011-07-13 21:39:02 +03:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
BonusList::TInternalContainer::iterator BonusList::erase(const int position)
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
2016-07-29 12:10:32 +02:00
|
|
|
changed();
|
2011-07-16 16:57:25 +03:00
|
|
|
return bonuses.erase(bonuses.begin() + position);
|
2011-07-13 21:39:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void BonusList::clear()
|
|
|
|
{
|
|
|
|
bonuses.clear();
|
2016-07-29 12:10:32 +02:00
|
|
|
changed();
|
2011-07-13 21:39:02 +03:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
std::vector<BonusList*>::size_type BonusList::operator-=(std::shared_ptr<Bonus> const &i)
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
auto itr = std::find(bonuses.begin(), bonuses.end(), i);
|
2011-07-13 21:39:02 +03:00
|
|
|
if(itr == bonuses.end())
|
|
|
|
return false;
|
|
|
|
bonuses.erase(itr);
|
2016-07-29 12:10:32 +02:00
|
|
|
changed();
|
2011-07-13 21:39:02 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void BonusList::resize(BonusList::TInternalContainer::size_type sz, std::shared_ptr<Bonus> c )
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
|
|
|
bonuses.resize(sz, c);
|
2016-07-29 12:10:32 +02:00
|
|
|
changed();
|
2011-07-13 21:39:02 +03:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void BonusList::insert(BonusList::TInternalContainer::iterator position, BonusList::TInternalContainer::size_type n, std::shared_ptr<Bonus> const &x)
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
|
|
|
bonuses.insert(position, n, x);
|
2016-07-29 12:10:32 +02:00
|
|
|
changed();
|
2011-02-27 13:26:18 +02:00
|
|
|
}
|
|
|
|
|
2020-06-28 15:19:27 +02:00
|
|
|
CSelector IBonusBearer::anaffectedByMoraleSelector
|
2020-11-11 21:43:40 +02:00
|
|
|
= Selector::type()(Bonus::NON_LIVING)
|
|
|
|
.Or(Selector::type()(Bonus::UNDEAD))
|
|
|
|
.Or(Selector::type()(Bonus::NO_MORALE))
|
|
|
|
.Or(Selector::type()(Bonus::SIEGE_WEAPON));
|
2020-06-28 15:19:27 +02:00
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
CSelector IBonusBearer::moraleSelector = Selector::type()(Bonus::MORALE);
|
|
|
|
CSelector IBonusBearer::luckSelector = Selector::type()(Bonus::LUCK);
|
|
|
|
CSelector IBonusBearer::selfMoraleSelector = Selector::type()(Bonus::SELF_MORALE);
|
|
|
|
CSelector IBonusBearer::selfLuckSelector = Selector::type()(Bonus::SELF_LUCK);
|
2020-06-28 15:19:27 +02:00
|
|
|
|
|
|
|
IBonusBearer::IBonusBearer()
|
|
|
|
:anaffectedByMorale(this, anaffectedByMoraleSelector),
|
|
|
|
moraleValue(this, moraleSelector, 0),
|
2020-11-11 21:43:40 +02:00
|
|
|
luckValue(this, luckSelector, 0),
|
|
|
|
selfMorale(this, selfMoraleSelector),
|
|
|
|
selfLuck(this, selfLuckSelector)
|
2020-06-28 15:19:27 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-27 21:58:14 +02:00
|
|
|
int IBonusBearer::valOfBonuses(Bonus::BonusType type, const CSelector &selector) const
|
2010-08-25 11:40:50 +03:00
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
return valOfBonuses(Selector::type()(type).And(selector));
|
2010-08-25 11:40:50 +03:00
|
|
|
}
|
2010-12-06 01:10:02 +02:00
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
int IBonusBearer::valOfBonuses(Bonus::BonusType type, int subtype) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2019-01-15 05:00:00 +02:00
|
|
|
boost::format fmt("type_%ds_%d");
|
|
|
|
fmt % (int)type % subtype;
|
2013-02-13 22:35:43 +03:00
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
CSelector s = Selector::type()(type);
|
2010-05-02 21:20:26 +03:00
|
|
|
if(subtype != -1)
|
2020-11-11 21:43:40 +02:00
|
|
|
s = s.And(Selector::subtype()(subtype));
|
2010-05-02 21:20:26 +03:00
|
|
|
|
2019-01-15 05:00:00 +02:00
|
|
|
return valOfBonuses(s, fmt.str());
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
2010-12-06 01:10:02 +02:00
|
|
|
|
2011-07-16 16:57:25 +03:00
|
|
|
int IBonusBearer::valOfBonuses(const CSelector &selector, const std::string &cachingStr) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
CSelector limit = nullptr;
|
2020-10-01 07:55:41 +02:00
|
|
|
TConstBonusListPtr hlp = getAllBonuses(selector, limit, nullptr, cachingStr);
|
2011-06-25 16:53:15 +03:00
|
|
|
return hlp->totalValue();
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
2017-07-15 13:08:20 +02:00
|
|
|
bool IBonusBearer::hasBonus(const CSelector &selector, const std::string &cachingStr) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
return getBonuses(selector, cachingStr)->size() > 0;
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
bool IBonusBearer::hasBonus(const CSelector &selector, const CSelector &limit, const std::string &cachingStr) const
|
2016-09-30 16:11:17 +02:00
|
|
|
{
|
|
|
|
return getBonuses(selector, limit, cachingStr)->size() > 0;
|
|
|
|
}
|
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
bool IBonusBearer::hasBonusOfType(Bonus::BonusType type, int subtype) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2019-01-15 05:00:00 +02:00
|
|
|
boost::format fmt("type_%ds_%d");
|
|
|
|
fmt % (int)type % subtype;
|
2011-07-16 16:57:25 +03:00
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
CSelector s = Selector::type()(type);
|
2010-05-02 21:20:26 +03:00
|
|
|
if(subtype != -1)
|
2020-11-11 21:43:40 +02:00
|
|
|
s = s.And(Selector::subtype()(subtype));
|
2010-05-02 21:20:26 +03:00
|
|
|
|
2019-01-15 05:00:00 +02:00
|
|
|
return hasBonus(s, fmt.str());
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
TConstBonusListPtr IBonusBearer::getBonuses(const CSelector &selector, const std::string &cachingStr) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
return getAllBonuses(selector, nullptr, nullptr, cachingStr);
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
TConstBonusListPtr IBonusBearer::getBonuses(const CSelector &selector, const CSelector &limit, const std::string &cachingStr) const
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
2013-06-26 14:18:27 +03:00
|
|
|
return getAllBonuses(selector, limit, nullptr, cachingStr);
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2013-02-02 01:04:25 +03:00
|
|
|
bool IBonusBearer::hasBonusFrom(Bonus::BonusSource source, ui32 sourceID) const
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2019-01-15 05:00:00 +02:00
|
|
|
boost::format fmt("source_%did_%d");
|
|
|
|
fmt % (int)source % sourceID;
|
|
|
|
|
|
|
|
return hasBonus(Selector::source(source,sourceID), fmt.str());
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2011-02-27 21:58:14 +02:00
|
|
|
int IBonusBearer::MoraleVal() const
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
2020-06-28 15:19:27 +02:00
|
|
|
if(anaffectedByMorale.getHasBonus())
|
2010-05-02 21:20:26 +03:00
|
|
|
return 0;
|
2013-02-13 22:35:43 +03:00
|
|
|
|
2020-06-28 15:19:27 +02:00
|
|
|
int ret = moraleValue.getValue();
|
2010-04-03 06:33:46 +03:00
|
|
|
|
2020-06-28 15:19:27 +02:00
|
|
|
if(selfMorale.getHasBonus()) //eg. minotaur
|
2011-12-14 00:23:17 +03:00
|
|
|
vstd::amax(ret, +1);
|
2010-04-03 06:33:46 +03:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
return vstd::abetween(ret, -3, +3);
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2011-02-27 21:58:14 +02:00
|
|
|
int IBonusBearer::LuckVal() const
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
2010-05-02 21:20:26 +03:00
|
|
|
if(hasBonusOfType(Bonus::NO_LUCK))
|
|
|
|
return 0;
|
2013-02-13 22:35:43 +03:00
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
int ret = luckValue.getValue();
|
|
|
|
|
|
|
|
if(selfLuck.getHasBonus()) //eg. halfling
|
|
|
|
vstd::amax(ret, +1);
|
|
|
|
|
|
|
|
return vstd::abetween(ret, -3, +3);
|
|
|
|
}
|
|
|
|
|
|
|
|
int IBonusBearer::MoraleValAndBonusList(TConstBonusListPtr & bonusList) const
|
|
|
|
{
|
|
|
|
if(anaffectedByMorale.getHasBonus())
|
|
|
|
{
|
|
|
|
if(!bonusList->empty())
|
|
|
|
bonusList = std::make_shared<const BonusList>();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int ret = moraleValue.getValueAndList(bonusList);
|
|
|
|
|
|
|
|
if(selfMorale.getHasBonus()) //eg. minotaur
|
|
|
|
vstd::amax(ret, +1);
|
2013-02-13 22:35:43 +03:00
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
return vstd::abetween(ret, -3, +3);
|
|
|
|
}
|
|
|
|
|
|
|
|
int IBonusBearer::LuckValAndBonusList(TConstBonusListPtr & bonusList) const
|
|
|
|
{
|
|
|
|
if(hasBonusOfType(Bonus::NO_LUCK))
|
|
|
|
{
|
|
|
|
if(!bonusList->empty())
|
|
|
|
bonusList = std::make_shared<const BonusList>();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int ret = luckValue.getValueAndList(bonusList);
|
|
|
|
|
|
|
|
if(selfLuck.getHasBonus()) //eg. halfling
|
2011-12-14 00:23:17 +03:00
|
|
|
vstd::amax(ret, +1);
|
2010-05-02 21:20:26 +03:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
return vstd::abetween(ret, -3, +3);
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
ui32 IBonusBearer::MaxHealth() const
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
2017-07-20 06:08:49 +02:00
|
|
|
const std::string cachingStr = "type_STACK_HEALTH";
|
2020-11-11 21:43:40 +02:00
|
|
|
static const auto selector = Selector::type()(Bonus::STACK_HEALTH);
|
2017-07-20 06:08:49 +02:00
|
|
|
auto value = valOfBonuses(selector, cachingStr);
|
|
|
|
return std::max(1, value); //never 0
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
int IBonusBearer::getAttack(bool ranged) const
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
2017-07-20 06:08:49 +02:00
|
|
|
const std::string cachingStr = "type_PRIMARY_SKILLs_ATTACK";
|
2010-04-03 06:33:46 +03:00
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
static const auto selector = Selector::typeSubtype(Bonus::PRIMARY_SKILL, PrimarySkill::ATTACK);
|
2010-04-03 06:33:46 +03:00
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
return getBonuses(selector, nullptr, cachingStr)->totalValue();
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
int IBonusBearer::getDefence(bool ranged) const
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
2017-07-20 06:08:49 +02:00
|
|
|
const std::string cachingStr = "type_PRIMARY_SKILLs_DEFENSE";
|
|
|
|
|
|
|
|
static const auto selector = Selector::typeSubtype(Bonus::PRIMARY_SKILL, PrimarySkill::DEFENSE);
|
|
|
|
|
|
|
|
return getBonuses(selector, nullptr, cachingStr)->totalValue();
|
2010-04-03 06:33:46 +03:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
int IBonusBearer::getMinDamage(bool ranged) const
|
2010-08-30 21:06:17 +03:00
|
|
|
{
|
2017-07-20 06:08:49 +02:00
|
|
|
const std::string cachingStr = "type_CREATURE_DAMAGEs_0Otype_CREATURE_DAMAGEs_1";
|
|
|
|
static const auto selector = Selector::typeSubtype(Bonus::CREATURE_DAMAGE, 0).Or(Selector::typeSubtype(Bonus::CREATURE_DAMAGE, 1));
|
|
|
|
return valOfBonuses(selector, cachingStr);
|
2010-08-30 21:06:17 +03:00
|
|
|
}
|
2017-07-20 06:08:49 +02:00
|
|
|
|
|
|
|
int IBonusBearer::getMaxDamage(bool ranged) const
|
2010-08-30 21:06:17 +03:00
|
|
|
{
|
2017-07-20 06:08:49 +02:00
|
|
|
const std::string cachingStr = "type_CREATURE_DAMAGEs_0Otype_CREATURE_DAMAGEs_2";
|
|
|
|
static const auto selector = Selector::typeSubtype(Bonus::CREATURE_DAMAGE, 0).Or(Selector::typeSubtype(Bonus::CREATURE_DAMAGE, 2));
|
|
|
|
return valOfBonuses(selector, cachingStr);
|
2010-08-30 21:06:17 +03:00
|
|
|
}
|
|
|
|
|
2012-02-20 19:26:14 +03:00
|
|
|
si32 IBonusBearer::manaLimit() const
|
2011-02-27 21:58:14 +02:00
|
|
|
{
|
2013-02-13 22:35:43 +03:00
|
|
|
return si32(getPrimSkillLevel(PrimarySkill::KNOWLEDGE)
|
|
|
|
* (100.0 + valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, SecondarySkill::INTELLIGENCE))
|
2013-01-20 15:06:18 +03:00
|
|
|
/ 10.0);
|
2011-02-27 21:58:14 +02:00
|
|
|
}
|
|
|
|
|
2013-02-06 13:16:44 +03:00
|
|
|
int IBonusBearer::getPrimSkillLevel(PrimarySkill::PrimarySkill id) const
|
2011-02-27 21:58:14 +02:00
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
static const CSelector selectorAllSkills = Selector::type()(Bonus::PRIMARY_SKILL);
|
2019-01-15 05:00:00 +02:00
|
|
|
static const std::string keyAllSkills = "type_PRIMARY_SKILL";
|
|
|
|
|
|
|
|
auto allSkills = getBonuses(selectorAllSkills, keyAllSkills);
|
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
int ret = allSkills->valOfBonuses(Selector::subtype()(id));
|
2011-02-27 21:58:14 +02:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
vstd::amax(ret, id/2); //minimal value is 0 for attack and defense and 1 for spell power and knowledge
|
2011-02-27 21:58:14 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-05-29 21:28:50 +03:00
|
|
|
si32 IBonusBearer::magicResistance() const
|
|
|
|
{
|
2011-07-16 16:57:25 +03:00
|
|
|
return valOfBonuses(Bonus::MAGIC_RESISTANCE);
|
2011-05-29 21:28:50 +03:00
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
ui32 IBonusBearer::Speed(int turn, bool useBind) const
|
2013-07-22 13:39:11 +03:00
|
|
|
{
|
2013-07-22 20:06:32 +03:00
|
|
|
//war machines cannot move
|
2020-11-11 21:43:40 +02:00
|
|
|
if(hasBonus(Selector::type()(Bonus::SIEGE_WEAPON).And(Selector::turns(turn))))
|
2013-07-22 13:39:11 +03:00
|
|
|
{
|
2013-07-22 20:06:32 +03:00
|
|
|
return 0;
|
2013-07-22 13:39:11 +03:00
|
|
|
}
|
|
|
|
//bind effect check - doesn't influence stack initiative
|
2020-11-11 21:43:40 +02:00
|
|
|
if(useBind && hasBonus(Selector::type()(Bonus::BIND_EFFECT).And(Selector::turns(turn))))
|
2013-07-22 13:39:11 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-11-11 21:43:40 +02:00
|
|
|
return valOfBonuses(Selector::type()(Bonus::STACKS_SPEED).And(Selector::turns(turn)));
|
2016-08-18 14:03:20 +02:00
|
|
|
}
|
2013-07-22 13:39:11 +03:00
|
|
|
|
2011-06-25 18:05:01 +03:00
|
|
|
bool IBonusBearer::isLiving() const //TODO: theoreticaly there exists "LIVING" bonus in stack experience documentation
|
|
|
|
{
|
2019-01-15 05:00:00 +02:00
|
|
|
static const std::string cachingStr = "IBonusBearer::isLiving";
|
2020-11-11 21:43:40 +02:00
|
|
|
static const CSelector selector = Selector::type()(Bonus::UNDEAD)
|
|
|
|
.Or(Selector::type()(Bonus::NON_LIVING))
|
|
|
|
.Or(Selector::type()(Bonus::GARGOYLE))
|
|
|
|
.Or(Selector::type()(Bonus::SIEGE_WEAPON));
|
2019-01-15 05:00:00 +02:00
|
|
|
|
|
|
|
return !hasBonus(selector, cachingStr);
|
2011-06-25 18:05:01 +03:00
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<const Bonus> IBonusBearer::getBonus(const CSelector &selector) const
|
2012-09-20 19:55:21 +03:00
|
|
|
{
|
2017-07-20 06:08:49 +02:00
|
|
|
auto bonuses = getAllBonuses(selector, Selector::all);
|
|
|
|
return bonuses->getFirst(Selector::all);
|
2012-09-20 19:55:21 +03:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
std::shared_ptr<Bonus> CBonusSystemNode::getBonusLocalFirst(const CSelector &selector)
|
2011-02-27 21:58:14 +02:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
auto ret = bonuses.getFirst(selector);
|
2011-02-27 21:58:14 +02:00
|
|
|
if(ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
FOREACH_PARENT(pname)
|
|
|
|
{
|
2012-09-20 19:55:21 +03:00
|
|
|
ret = pname->getBonusLocalFirst(selector);
|
2011-02-27 21:58:14 +02:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2011-02-27 21:58:14 +02:00
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<const Bonus> CBonusSystemNode::getBonusLocalFirst( const CSelector &selector ) const
|
2011-02-27 21:58:14 +02:00
|
|
|
{
|
2012-09-20 19:55:21 +03:00
|
|
|
return (const_cast<CBonusSystemNode*>(this))->getBonusLocalFirst(selector);
|
2011-02-27 21:58:14 +02:00
|
|
|
}
|
|
|
|
|
2018-02-10 20:52:23 +02:00
|
|
|
void CBonusSystemNode::getParents(TCNodes & out) const /*retrieves list of parent nodes (nodes to inherit bonuses from) */
|
2011-02-27 21:58:14 +02:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
for (auto & elem : parents)
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
const CBonusSystemNode *parent = elem;
|
2011-02-27 21:58:14 +02:00
|
|
|
out.insert(parent);
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
2011-02-27 21:58:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::getParents(TNodes &out)
|
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
for (auto & elem : parents)
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
const CBonusSystemNode *parent = elem;
|
2011-02-27 21:58:14 +02:00
|
|
|
out.insert(const_cast<CBonusSystemNode*>(parent));
|
2013-02-13 22:35:43 +03:00
|
|
|
}
|
2011-02-27 21:58:14 +02:00
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
void CBonusSystemNode::getBonusesRec(BonusList &out, const CSelector &selector, const CSelector &limit) const
|
2011-02-27 21:58:14 +02:00
|
|
|
{
|
2017-09-16 02:26:48 +02:00
|
|
|
BonusList beforeUpdate;
|
2012-03-06 19:59:55 +03:00
|
|
|
FOREACH_CPARENT(p)
|
|
|
|
{
|
2017-09-16 02:26:48 +02:00
|
|
|
p->getBonusesRec(beforeUpdate, selector, limit);
|
2012-03-06 19:59:55 +03:00
|
|
|
}
|
2017-09-16 02:26:48 +02:00
|
|
|
bonuses.getBonuses(beforeUpdate, selector, limit);
|
2012-03-06 19:59:55 +03:00
|
|
|
|
2017-09-16 02:26:48 +02:00
|
|
|
for(auto b : beforeUpdate)
|
|
|
|
out.push_back(update(b));
|
2012-03-06 19:59:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::getAllBonusesRec(BonusList &out) const
|
|
|
|
{
|
2017-09-16 02:26:48 +02:00
|
|
|
BonusList beforeUpdate;
|
2012-03-06 19:59:55 +03:00
|
|
|
FOREACH_CPARENT(p)
|
|
|
|
{
|
2017-09-16 02:26:48 +02:00
|
|
|
p->getAllBonusesRec(beforeUpdate);
|
2012-03-06 19:59:55 +03:00
|
|
|
}
|
2017-09-16 02:26:48 +02:00
|
|
|
bonuses.getAllBonuses(beforeUpdate);
|
2012-03-06 19:59:55 +03:00
|
|
|
|
2017-09-16 02:26:48 +02:00
|
|
|
for(auto b : beforeUpdate)
|
|
|
|
out.push_back(update(b));
|
2011-02-27 21:58:14 +02:00
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
TConstBonusListPtr CBonusSystemNode::getAllBonuses(const CSelector &selector, const CSelector &limit, const CBonusSystemNode *root, const std::string &cachingStr) const
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
bool limitOnUs = (!root || root == this); //caching won't work when we want to limit bonuses against an external node
|
2013-02-13 22:35:43 +03:00
|
|
|
if (CBonusSystemNode::cachingEnabled && limitOnUs)
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2011-07-16 16:57:25 +03:00
|
|
|
// Exclusive access for one thread
|
2011-07-13 21:39:02 +03:00
|
|
|
static boost::mutex m;
|
|
|
|
boost::mutex::scoped_lock lock(m);
|
|
|
|
|
2013-02-13 22:35:43 +03:00
|
|
|
// If the bonus system tree changes(state of a single node or the relations to each other) then
|
2011-07-16 16:57:25 +03:00
|
|
|
// cache all bonus objects. Selector objects doesn't matter.
|
2011-06-25 16:53:15 +03:00
|
|
|
if (cachedLast != treeChanged)
|
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
cachedBonuses.clear();
|
2011-06-25 16:53:15 +03:00
|
|
|
cachedRequests.clear();
|
2012-03-06 19:59:55 +03:00
|
|
|
|
|
|
|
BonusList allBonuses;
|
|
|
|
getAllBonusesRec(allBonuses);
|
|
|
|
limitBonuses(allBonuses, cachedBonuses);
|
2018-03-27 09:54:58 +02:00
|
|
|
cachedBonuses.stackBonuses();
|
2012-03-06 19:59:55 +03:00
|
|
|
|
2011-06-25 16:53:15 +03:00
|
|
|
cachedLast = treeChanged;
|
|
|
|
}
|
2013-02-13 22:35:43 +03:00
|
|
|
|
2011-07-16 16:57:25 +03:00
|
|
|
// If a bonus system request comes with a caching string then look up in the map if there are any
|
|
|
|
// pre-calculated bonus results. Limiters can't be cached so they have to be calculated.
|
2011-06-25 16:53:15 +03:00
|
|
|
if (cachingStr != "")
|
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
auto it = cachedRequests.find(cachingStr);
|
|
|
|
if(it != cachedRequests.end())
|
2011-06-25 16:53:15 +03:00
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
//Cached list contains bonuses for our query with applied limiters
|
|
|
|
return it->second;
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
//We still don't have the bonuses (didn't returned them from cache)
|
|
|
|
//Perform bonus selection
|
2015-12-29 04:43:33 +02:00
|
|
|
auto ret = std::make_shared<BonusList>();
|
2013-02-13 22:35:43 +03:00
|
|
|
cachedBonuses.getBonuses(*ret, selector, limit);
|
2012-03-06 19:59:55 +03:00
|
|
|
|
|
|
|
// Save the results in the cache
|
|
|
|
if(cachingStr != "")
|
2011-06-25 16:53:15 +03:00
|
|
|
cachedRequests[cachingStr] = ret;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
return getAllBonusesWithoutCaching(selector, limit, root);
|
|
|
|
}
|
|
|
|
}
|
2011-07-16 16:57:25 +03:00
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
TConstBonusListPtr CBonusSystemNode::getAllBonusesWithoutCaching(const CSelector &selector, const CSelector &limit, const CBonusSystemNode *root) const
|
2012-03-06 19:59:55 +03:00
|
|
|
{
|
2015-12-29 04:43:33 +02:00
|
|
|
auto ret = std::make_shared<BonusList>();
|
2011-07-16 16:57:25 +03:00
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
// Get bonus results without caching enabled.
|
|
|
|
BonusList beforeLimiting, afterLimiting;
|
|
|
|
getAllBonusesRec(beforeLimiting);
|
|
|
|
|
|
|
|
if(!root || root == this)
|
|
|
|
{
|
|
|
|
limitBonuses(beforeLimiting, afterLimiting);
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
2012-03-06 19:59:55 +03:00
|
|
|
else if(root)
|
|
|
|
{
|
2013-02-13 22:35:43 +03:00
|
|
|
//We want to limit our query against an external node. We get all its bonuses,
|
2012-03-06 19:59:55 +03:00
|
|
|
// add the ones we're considering and see if they're cut out by limiters
|
|
|
|
BonusList rootBonuses, limitedRootBonuses;
|
|
|
|
getAllBonusesRec(rootBonuses);
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto b : beforeLimiting)
|
2012-03-06 19:59:55 +03:00
|
|
|
rootBonuses.push_back(b);
|
|
|
|
|
|
|
|
root->limitBonuses(rootBonuses, limitedRootBonuses);
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto b : beforeLimiting)
|
2012-03-06 19:59:55 +03:00
|
|
|
if(vstd::contains(limitedRootBonuses, b))
|
|
|
|
afterLimiting.push_back(b);
|
|
|
|
|
|
|
|
}
|
2018-03-27 09:54:58 +02:00
|
|
|
afterLimiting.getBonuses(*ret, selector, limit);
|
|
|
|
ret->stackBonuses();
|
2012-03-06 19:59:55 +03:00
|
|
|
return ret;
|
2011-06-25 16:53:15 +03:00
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<Bonus> CBonusSystemNode::update(const std::shared_ptr<Bonus> & b) const
|
2017-09-16 02:26:48 +02:00
|
|
|
{
|
|
|
|
if(b->updater)
|
|
|
|
return b->updater->update(b, *this);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
CBonusSystemNode::CBonusSystemNode()
|
|
|
|
: bonuses(true),
|
|
|
|
exportedBonuses(true),
|
|
|
|
nodeType(UNKNOWN),
|
|
|
|
cachedLast(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CBonusSystemNode::CBonusSystemNode(ENodeTypes NodeType)
|
|
|
|
: bonuses(true),
|
|
|
|
exportedBonuses(true),
|
|
|
|
nodeType(NodeType),
|
|
|
|
cachedLast(0)
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-07-29 11:27:55 +02:00
|
|
|
CBonusSystemNode::CBonusSystemNode(CBonusSystemNode && other):
|
2016-08-15 08:28:00 +02:00
|
|
|
bonuses(std::move(other.bonuses)),
|
|
|
|
exportedBonuses(std::move(other.exportedBonuses)),
|
2016-07-29 11:27:55 +02:00
|
|
|
nodeType(other.nodeType),
|
|
|
|
description(other.description),
|
|
|
|
cachedLast(0)
|
|
|
|
{
|
|
|
|
std::swap(parents, other.parents);
|
|
|
|
std::swap(children, other.children);
|
|
|
|
|
2016-08-15 10:04:45 +02:00
|
|
|
//fixing bonus tree without recalculation
|
|
|
|
|
|
|
|
for(CBonusSystemNode * n : parents)
|
|
|
|
{
|
|
|
|
n->children -= &other;
|
|
|
|
n->children.push_back(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(CBonusSystemNode * n : children)
|
|
|
|
{
|
|
|
|
n->parents -= &other;
|
|
|
|
n->parents.push_back(this);
|
|
|
|
}
|
|
|
|
|
2016-08-15 08:28:00 +02:00
|
|
|
//cache ignored
|
2016-07-29 11:27:55 +02:00
|
|
|
|
|
|
|
//cachedBonuses
|
|
|
|
//cachedRequests
|
|
|
|
}
|
|
|
|
|
2010-07-12 13:20:25 +03:00
|
|
|
CBonusSystemNode::~CBonusSystemNode()
|
|
|
|
{
|
2010-12-06 01:10:02 +02:00
|
|
|
detachFromAll();
|
2010-07-12 13:20:25 +03:00
|
|
|
|
2010-11-27 03:46:19 +02:00
|
|
|
if(children.size())
|
|
|
|
{
|
2011-02-04 16:58:14 +02:00
|
|
|
while(children.size())
|
|
|
|
children.front()->detachFrom(this);
|
2010-11-27 03:46:19 +02:00
|
|
|
}
|
2010-07-12 13:20:25 +03:00
|
|
|
}
|
|
|
|
|
2010-11-22 02:34:46 +02:00
|
|
|
void CBonusSystemNode::attachTo(CBonusSystemNode *parent)
|
2010-11-13 22:26:15 +02:00
|
|
|
{
|
2010-11-22 02:34:46 +02:00
|
|
|
assert(!vstd::contains(parents, parent));
|
|
|
|
parents.push_back(parent);
|
2011-02-21 06:13:00 +02:00
|
|
|
|
|
|
|
if(parent->actsAsBonusSourceOnly())
|
|
|
|
parent->newRedDescendant(this);
|
|
|
|
else
|
|
|
|
newRedDescendant(parent);
|
2010-11-22 02:34:46 +02:00
|
|
|
|
|
|
|
parent->newChildAttached(this);
|
2015-04-11 07:13:28 +02:00
|
|
|
CBonusSystemNode::treeHasChanged();
|
2010-11-13 22:26:15 +02:00
|
|
|
}
|
|
|
|
|
2010-11-22 02:34:46 +02:00
|
|
|
void CBonusSystemNode::detachFrom(CBonusSystemNode *parent)
|
2010-11-13 22:26:15 +02:00
|
|
|
{
|
2010-11-22 02:34:46 +02:00
|
|
|
assert(vstd::contains(parents, parent));
|
2010-11-13 22:26:15 +02:00
|
|
|
|
2011-02-21 06:13:00 +02:00
|
|
|
if(parent->actsAsBonusSourceOnly())
|
|
|
|
parent->removedRedDescendant(this);
|
|
|
|
else
|
|
|
|
removedRedDescendant(parent);
|
|
|
|
|
|
|
|
parents -= parent;
|
2010-11-22 02:34:46 +02:00
|
|
|
parent->childDetached(this);
|
2015-04-11 07:13:28 +02:00
|
|
|
CBonusSystemNode::treeHasChanged();
|
2010-11-13 22:26:15 +02:00
|
|
|
}
|
|
|
|
|
2018-03-05 13:03:14 +02:00
|
|
|
void CBonusSystemNode::removeBonusesRecursive(const CSelector & s)
|
2010-11-19 00:06:56 +02:00
|
|
|
{
|
2018-03-05 13:03:14 +02:00
|
|
|
removeBonuses(s);
|
|
|
|
for(CBonusSystemNode * child : children)
|
2018-03-05 08:51:35 +02:00
|
|
|
child->removeBonusesRecursive(s);
|
2010-11-19 00:06:56 +02:00
|
|
|
}
|
|
|
|
|
2017-09-09 14:25:55 +02:00
|
|
|
void CBonusSystemNode::reduceBonusDurations(const CSelector &s)
|
2015-11-09 13:18:36 +02:00
|
|
|
{
|
|
|
|
BonusList bl;
|
2016-09-30 16:11:17 +02:00
|
|
|
exportedBonuses.getBonuses(bl, s, Selector::all);
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto b : bl)
|
2015-11-09 13:18:36 +02:00
|
|
|
{
|
2015-11-09 14:48:07 +02:00
|
|
|
b->turnsRemain--;
|
|
|
|
if(b->turnsRemain <= 0)
|
|
|
|
removeBonus(b);
|
2015-11-09 13:18:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for(CBonusSystemNode *child : children)
|
2017-09-09 14:25:55 +02:00
|
|
|
child->reduceBonusDurations(s);
|
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void CBonusSystemNode::addNewBonus(const std::shared_ptr<Bonus>& b)
|
2010-11-19 00:06:56 +02:00
|
|
|
{
|
2015-11-20 13:37:57 +02:00
|
|
|
//turnsRemain shouldn't be zero for following durations
|
2016-09-19 23:36:35 +02:00
|
|
|
if(Bonus::NTurns(b.get()) || Bonus::NDays(b.get()) || Bonus::OneWeek(b.get()))
|
2015-11-20 13:37:57 +02:00
|
|
|
{
|
|
|
|
assert(b->turnsRemain);
|
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
assert(!vstd::contains(exportedBonuses, b));
|
2010-11-19 00:22:51 +02:00
|
|
|
exportedBonuses.push_back(b);
|
2011-02-23 05:57:45 +02:00
|
|
|
exportBonus(b);
|
2015-04-11 07:13:28 +02:00
|
|
|
CBonusSystemNode::treeHasChanged();
|
2010-11-19 00:06:56 +02:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void CBonusSystemNode::accumulateBonus(const std::shared_ptr<Bonus>& b)
|
2012-04-04 20:41:55 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
auto bonus = exportedBonuses.getFirst(Selector::typeSubtype(b->type, b->subtype)); //only local bonuses are interesting //TODO: what about value type?
|
2012-04-04 20:41:55 +03:00
|
|
|
if(bonus)
|
2016-09-19 23:36:35 +02:00
|
|
|
bonus->val += b->val;
|
2012-04-04 20:41:55 +03:00
|
|
|
else
|
2016-09-19 23:36:35 +02:00
|
|
|
addNewBonus(std::make_shared<Bonus>(*b)); //duplicate needed, original may get destroyed
|
2012-04-04 20:41:55 +03:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void CBonusSystemNode::removeBonus(const std::shared_ptr<Bonus>& b)
|
2010-11-19 00:06:56 +02:00
|
|
|
{
|
2010-11-19 00:22:51 +02:00
|
|
|
exportedBonuses -= b;
|
2010-11-20 02:03:31 +02:00
|
|
|
if(b->propagator)
|
2011-02-21 06:13:00 +02:00
|
|
|
unpropagateBonus(b);
|
2010-11-20 02:03:31 +02:00
|
|
|
else
|
2011-02-21 06:13:00 +02:00
|
|
|
bonuses -= b;
|
2015-04-11 07:13:28 +02:00
|
|
|
CBonusSystemNode::treeHasChanged();
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
|
|
|
|
2018-03-05 13:03:14 +02:00
|
|
|
void CBonusSystemNode::removeBonuses(const CSelector & selector)
|
2018-02-28 21:44:05 +02:00
|
|
|
{
|
|
|
|
BonusList toRemove;
|
2018-03-05 13:03:14 +02:00
|
|
|
exportedBonuses.getBonuses(toRemove, selector, Selector::all);
|
2018-02-28 21:44:05 +02:00
|
|
|
for(auto bonus : toRemove)
|
|
|
|
removeBonus(bonus);
|
|
|
|
}
|
|
|
|
|
2011-02-21 06:13:00 +02:00
|
|
|
bool CBonusSystemNode::actsAsBonusSourceOnly() const
|
2010-11-20 19:36:02 +02:00
|
|
|
{
|
|
|
|
switch(nodeType)
|
|
|
|
{
|
|
|
|
case CREATURE:
|
|
|
|
case ARTIFACT:
|
|
|
|
case ARTIFACT_INSTANCE:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void CBonusSystemNode::propagateBonus(std::shared_ptr<Bonus> b)
|
2010-11-20 19:36:02 +02:00
|
|
|
{
|
2011-02-21 06:13:00 +02:00
|
|
|
if(b->propagator->shouldBeAttached(this))
|
|
|
|
{
|
|
|
|
bonuses.push_back(b);
|
2017-08-11 19:03:05 +02:00
|
|
|
logBonus->trace("#$# %s #propagated to# %s", b->Description(), nodeName());
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FOREACH_RED_CHILD(child)
|
|
|
|
child->propagateBonus(b);
|
2010-11-20 19:36:02 +02:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void CBonusSystemNode::unpropagateBonus(std::shared_ptr<Bonus> b)
|
2010-11-22 02:34:46 +02:00
|
|
|
{
|
2011-02-21 06:13:00 +02:00
|
|
|
if(b->propagator->shouldBeAttached(this))
|
|
|
|
{
|
|
|
|
bonuses -= b;
|
2017-08-11 19:03:05 +02:00
|
|
|
logBonus->trace("#$# %s #is no longer propagated to# %s", b->Description(), nodeName());
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
FOREACH_RED_CHILD(child)
|
|
|
|
child->unpropagateBonus(b);
|
2010-11-22 02:34:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::newChildAttached(CBonusSystemNode *child)
|
|
|
|
{
|
|
|
|
assert(!vstd::contains(children, child));
|
|
|
|
children.push_back(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::childDetached(CBonusSystemNode *child)
|
|
|
|
{
|
2014-09-17 12:03:53 +03:00
|
|
|
if (vstd::contains(children, child))
|
|
|
|
children -= child;
|
|
|
|
else
|
|
|
|
{
|
2017-08-12 13:36:04 +02:00
|
|
|
logBonus->error("Error! %s #cannot be detached from# %s", child->nodeName(), nodeName());
|
2017-08-11 19:03:05 +02:00
|
|
|
throw std::runtime_error("internal error");
|
2014-09-17 12:03:53 +03:00
|
|
|
}
|
2016-08-18 14:03:20 +02:00
|
|
|
|
2010-11-22 02:34:46 +02:00
|
|
|
}
|
|
|
|
|
2010-12-06 01:10:02 +02:00
|
|
|
void CBonusSystemNode::detachFromAll()
|
|
|
|
{
|
|
|
|
while(parents.size())
|
|
|
|
detachFrom(parents.front());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CBonusSystemNode::isIndependentNode() const
|
|
|
|
{
|
|
|
|
return parents.empty() && children.empty();
|
|
|
|
}
|
|
|
|
|
2010-12-12 01:11:26 +02:00
|
|
|
std::string CBonusSystemNode::nodeName() const
|
|
|
|
{
|
2013-02-13 22:35:43 +03:00
|
|
|
return description.size()
|
2011-02-10 15:12:53 +02:00
|
|
|
? description
|
|
|
|
: std::string("Bonus system node of type ") + typeid(*this).name();
|
2010-12-12 01:11:26 +02:00
|
|
|
}
|
|
|
|
|
2011-02-04 16:58:14 +02:00
|
|
|
void CBonusSystemNode::deserializationFix()
|
|
|
|
{
|
2011-03-01 12:19:05 +02:00
|
|
|
exportBonuses();
|
|
|
|
|
2011-02-04 16:58:14 +02:00
|
|
|
}
|
|
|
|
|
2011-02-21 06:13:00 +02:00
|
|
|
void CBonusSystemNode::getRedParents(TNodes &out)
|
|
|
|
{
|
|
|
|
FOREACH_PARENT(pname)
|
|
|
|
{
|
|
|
|
if(pname->actsAsBonusSourceOnly())
|
|
|
|
{
|
|
|
|
out.insert(pname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!actsAsBonusSourceOnly())
|
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
for(CBonusSystemNode *child : children)
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
|
|
|
out.insert(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::getRedChildren(TNodes &out)
|
|
|
|
{
|
|
|
|
FOREACH_PARENT(pname)
|
|
|
|
{
|
|
|
|
if(!pname->actsAsBonusSourceOnly())
|
|
|
|
{
|
|
|
|
out.insert(pname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(actsAsBonusSourceOnly())
|
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
for(CBonusSystemNode *child : children)
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
|
|
|
out.insert(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::newRedDescendant(CBonusSystemNode *descendant)
|
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto b : exportedBonuses)
|
2011-02-21 06:13:00 +02:00
|
|
|
if(b->propagator)
|
|
|
|
descendant->propagateBonus(b);
|
|
|
|
|
|
|
|
FOREACH_RED_PARENT(parent)
|
|
|
|
parent->newRedDescendant(descendant);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::removedRedDescendant(CBonusSystemNode *descendant)
|
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto b : exportedBonuses)
|
2011-02-21 06:13:00 +02:00
|
|
|
if(b->propagator)
|
|
|
|
descendant->unpropagateBonus(b);
|
|
|
|
|
|
|
|
FOREACH_RED_PARENT(parent)
|
|
|
|
parent->removedRedDescendant(descendant);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::getRedAncestors(TNodes &out)
|
|
|
|
{
|
|
|
|
getRedParents(out);
|
|
|
|
FOREACH_RED_PARENT(p)
|
|
|
|
p->getRedAncestors(out);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::getRedDescendants(TNodes &out)
|
|
|
|
{
|
|
|
|
getRedChildren(out);
|
|
|
|
FOREACH_RED_CHILD(c)
|
|
|
|
c->getRedChildren(out);
|
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
void CBonusSystemNode::exportBonus(std::shared_ptr<Bonus> b)
|
2011-02-23 05:57:45 +02:00
|
|
|
{
|
|
|
|
if(b->propagator)
|
|
|
|
propagateBonus(b);
|
|
|
|
else
|
|
|
|
bonuses.push_back(b);
|
2011-07-13 21:39:02 +03:00
|
|
|
|
2015-04-11 07:13:28 +02:00
|
|
|
CBonusSystemNode::treeHasChanged();
|
2011-02-23 05:57:45 +02:00
|
|
|
}
|
|
|
|
|
2011-03-01 12:19:05 +02:00
|
|
|
void CBonusSystemNode::exportBonuses()
|
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
for(auto b : exportedBonuses)
|
2011-03-01 12:19:05 +02:00
|
|
|
exportBonus(b);
|
|
|
|
}
|
|
|
|
|
2013-02-02 22:28:39 +03:00
|
|
|
CBonusSystemNode::ENodeTypes CBonusSystemNode::getNodeType() const
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
|
|
|
return nodeType;
|
|
|
|
}
|
|
|
|
|
|
|
|
const BonusList& CBonusSystemNode::getBonusList() const
|
|
|
|
{
|
|
|
|
return bonuses;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TNodesVector& CBonusSystemNode::getParentNodes() const
|
|
|
|
{
|
|
|
|
return parents;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TNodesVector& CBonusSystemNode::getChildrenNodes() const
|
|
|
|
{
|
|
|
|
return children;
|
|
|
|
}
|
|
|
|
|
2013-02-02 22:28:39 +03:00
|
|
|
void CBonusSystemNode::setNodeType(CBonusSystemNode::ENodeTypes type)
|
2011-07-13 21:39:02 +03:00
|
|
|
{
|
|
|
|
nodeType = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
BonusList& CBonusSystemNode::getExportedBonusList()
|
|
|
|
{
|
|
|
|
return exportedBonuses;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& CBonusSystemNode::getDescription() const
|
|
|
|
{
|
|
|
|
return description;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::setDescription(const std::string &description)
|
|
|
|
{
|
|
|
|
this->description = description;
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
void CBonusSystemNode::limitBonuses(const BonusList &allBonuses, BonusList &out) const
|
|
|
|
{
|
|
|
|
assert(&allBonuses != &out); //todo should it work in-place?
|
|
|
|
|
2013-02-13 22:35:43 +03:00
|
|
|
BonusList undecided = allBonuses,
|
2012-03-06 19:59:55 +03:00
|
|
|
&accepted = out;
|
|
|
|
|
|
|
|
while(true)
|
|
|
|
{
|
2020-10-01 10:38:06 +02:00
|
|
|
int undecidedCount = static_cast<int>(undecided.size());
|
2012-03-06 19:59:55 +03:00
|
|
|
for(int i = 0; i < undecided.size(); i++)
|
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
auto b = undecided[i];
|
2018-04-01 13:17:34 +02:00
|
|
|
BonusLimitationContext context = {b, *this, out, undecided};
|
2013-01-20 15:06:18 +03:00
|
|
|
int decision = b->limiter ? b->limiter->limit(context) : ILimiter::ACCEPT; //bonuses without limiters will be accepted by default
|
2012-03-06 19:59:55 +03:00
|
|
|
if(decision == ILimiter::DISCARD)
|
|
|
|
{
|
|
|
|
undecided.erase(i);
|
2013-02-13 22:35:43 +03:00
|
|
|
i--; continue;
|
2012-03-06 19:59:55 +03:00
|
|
|
}
|
|
|
|
else if(decision == ILimiter::ACCEPT)
|
|
|
|
{
|
|
|
|
accepted.push_back(b);
|
|
|
|
undecided.erase(i);
|
2013-02-13 22:35:43 +03:00
|
|
|
i--; continue;
|
2012-03-06 19:59:55 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
assert(decision == ILimiter::NOT_SURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(undecided.size() == undecidedCount) //we haven't moved a single bonus -> limiters reached a stable state
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TBonusListPtr CBonusSystemNode::limitBonuses(const BonusList &allBonuses) const
|
|
|
|
{
|
2015-12-29 04:43:33 +02:00
|
|
|
auto ret = std::make_shared<BonusList>();
|
2012-03-06 19:59:55 +03:00
|
|
|
limitBonuses(allBonuses, *ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CBonusSystemNode::treeHasChanged()
|
|
|
|
{
|
|
|
|
treeChanged++;
|
|
|
|
}
|
|
|
|
|
2017-07-20 06:08:49 +02:00
|
|
|
int64_t CBonusSystemNode::getTreeVersion() const
|
|
|
|
{
|
|
|
|
int64_t ret = treeChanged;
|
|
|
|
return ret << 32;
|
|
|
|
}
|
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
int NBonus::valOf(const CBonusSystemNode *obj, Bonus::BonusType type, int subtype)
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
|
|
|
if(obj)
|
|
|
|
return obj->valOfBonuses(type, subtype);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
bool NBonus::hasOfType(const CBonusSystemNode *obj, Bonus::BonusType type, int subtype)
|
2010-04-03 06:33:46 +03:00
|
|
|
{
|
|
|
|
if(obj)
|
|
|
|
return obj->hasBonusOfType(type, subtype);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-05-02 21:20:26 +03:00
|
|
|
std::string Bonus::Description() const
|
|
|
|
{
|
|
|
|
std::ostringstream str;
|
2016-08-18 14:03:20 +02:00
|
|
|
|
2015-09-04 18:38:42 +02:00
|
|
|
if(description.empty())
|
2018-03-27 09:54:58 +02:00
|
|
|
{
|
|
|
|
if(stacking.empty() || stacking == "ALWAYS")
|
2015-09-04 18:38:42 +02:00
|
|
|
{
|
2018-03-27 09:54:58 +02:00
|
|
|
switch(source)
|
|
|
|
{
|
|
|
|
case ARTIFACT:
|
|
|
|
str << VLC->arth->artifacts[sid]->Name();
|
|
|
|
break;
|
|
|
|
case SPELL_EFFECT:
|
|
|
|
str << SpellID(sid).toSpell()->name;
|
|
|
|
break;
|
|
|
|
case CREATURE_ABILITY:
|
|
|
|
str << VLC->creh->creatures[sid]->namePl;
|
|
|
|
break;
|
|
|
|
case SECONDARY_SKILL:
|
|
|
|
str << VLC->skillh->skillName(sid);
|
|
|
|
break;
|
2018-10-29 22:33:13 +02:00
|
|
|
case HERO_SPECIAL:
|
|
|
|
str << VLC->heroh->heroes[sid]->name;
|
|
|
|
break;
|
2018-03-27 09:54:58 +02:00
|
|
|
default:
|
|
|
|
//todo: handle all possible sources
|
|
|
|
str << "Unknown";
|
|
|
|
break;
|
|
|
|
}
|
2015-09-04 18:38:42 +02:00
|
|
|
}
|
2018-03-27 09:54:58 +02:00
|
|
|
else
|
|
|
|
str << stacking;
|
|
|
|
}
|
2015-09-04 18:38:42 +02:00
|
|
|
else
|
2018-03-27 09:54:58 +02:00
|
|
|
{
|
2015-09-04 18:38:42 +02:00
|
|
|
str << description;
|
2018-03-27 09:54:58 +02:00
|
|
|
}
|
2016-08-18 14:03:20 +02:00
|
|
|
|
2015-09-04 18:38:42 +02:00
|
|
|
if(val != 0)
|
|
|
|
str << " " << std::showpos << val;
|
2016-08-18 14:03:20 +02:00
|
|
|
|
2010-05-02 21:20:26 +03:00
|
|
|
return str.str();
|
|
|
|
}
|
|
|
|
|
2017-09-12 08:15:13 +02:00
|
|
|
JsonNode subtypeToJson(Bonus::BonusType type, int subtype)
|
|
|
|
{
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case Bonus::PRIMARY_SKILL:
|
2017-09-13 08:58:14 +02:00
|
|
|
return JsonUtils::stringNode("primSkill." + PrimarySkill::names[subtype]);
|
2017-09-12 08:15:13 +02:00
|
|
|
case Bonus::SECONDARY_SKILL_PREMY:
|
2018-03-31 07:56:40 +02:00
|
|
|
return JsonUtils::stringNode(CSkillHandler::encodeSkillWithType(subtype));
|
2017-09-12 10:56:59 +02:00
|
|
|
case Bonus::SPECIAL_SPELL_LEV:
|
|
|
|
case Bonus::SPECIFIC_SPELL_DAMAGE:
|
|
|
|
case Bonus::SPECIAL_BLESS_DAMAGE:
|
|
|
|
case Bonus::MAXED_SPELL:
|
|
|
|
case Bonus::SPECIAL_PECULIAR_ENCHANT:
|
2017-09-13 08:58:14 +02:00
|
|
|
return JsonUtils::stringNode("spell." + (*VLC->spellh)[SpellID::ESpellID(subtype)]->identifier);
|
2018-03-27 09:54:58 +02:00
|
|
|
case Bonus::IMPROVED_NECROMANCY:
|
2017-09-12 10:56:59 +02:00
|
|
|
case Bonus::SPECIAL_UPGRADE:
|
2017-09-13 08:58:14 +02:00
|
|
|
return JsonUtils::stringNode("creature." + CreatureID::encode(subtype));
|
2017-09-12 10:56:59 +02:00
|
|
|
case Bonus::GENERATE_RESOURCE:
|
2017-09-17 00:02:04 +02:00
|
|
|
return JsonUtils::stringNode("resource." + GameConstants::RESOURCE_NAMES[subtype]);
|
2017-09-12 08:15:13 +02:00
|
|
|
default:
|
2017-09-12 10:56:59 +02:00
|
|
|
return JsonUtils::intNode(subtype);
|
2017-09-12 08:15:13 +02:00
|
|
|
}
|
2017-09-12 10:56:59 +02:00
|
|
|
}
|
2017-09-12 08:15:13 +02:00
|
|
|
|
2018-03-12 07:20:18 +02:00
|
|
|
JsonNode additionalInfoToJson(Bonus::BonusType type, CAddInfo addInfo)
|
2017-09-12 10:56:59 +02:00
|
|
|
{
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case Bonus::SPECIAL_UPGRADE:
|
2018-03-12 07:20:18 +02:00
|
|
|
return JsonUtils::stringNode("creature." + CreatureID::encode(addInfo[0]));
|
2017-09-12 10:56:59 +02:00
|
|
|
default:
|
2018-03-27 09:54:58 +02:00
|
|
|
return addInfo.toJsonNode();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode durationToJson(ui16 duration)
|
|
|
|
{
|
|
|
|
std::vector<std::string> durationNames;
|
|
|
|
for(ui16 durBit = 1; durBit; durBit = durBit << 1)
|
|
|
|
{
|
|
|
|
if(duration & durBit)
|
|
|
|
durationNames.push_back(vstd::findKey(bonusDurationMap, durBit));
|
|
|
|
}
|
|
|
|
if(durationNames.size() == 1)
|
|
|
|
{
|
|
|
|
return JsonUtils::stringNode(durationNames[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
JsonNode node(JsonNode::JsonType::DATA_VECTOR);
|
|
|
|
for(std::string dur : durationNames)
|
|
|
|
node.Vector().push_back(JsonUtils::stringNode(dur));
|
|
|
|
return node;
|
2017-09-12 10:56:59 +02:00
|
|
|
}
|
2017-09-12 08:15:13 +02:00
|
|
|
}
|
|
|
|
|
2017-09-11 08:21:24 +02:00
|
|
|
JsonNode Bonus::toJsonNode() const
|
|
|
|
{
|
2017-09-12 10:56:59 +02:00
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
2018-03-27 09:54:58 +02:00
|
|
|
// only add values that might reasonably be found in config files
|
2017-09-12 08:15:13 +02:00
|
|
|
root["type"].String() = vstd::findKey(bonusNameMap, type);
|
2017-09-11 08:21:24 +02:00
|
|
|
if(subtype != -1)
|
2017-09-12 08:15:13 +02:00
|
|
|
root["subtype"] = subtypeToJson(type, subtype);
|
2018-03-12 07:20:18 +02:00
|
|
|
if(additionalInfo != CAddInfo::NONE)
|
2017-09-12 10:56:59 +02:00
|
|
|
root["addInfo"] = additionalInfoToJson(type, additionalInfo);
|
2017-09-11 08:21:24 +02:00
|
|
|
if(val != 0)
|
2017-09-12 08:15:13 +02:00
|
|
|
root["val"].Integer() = val;
|
2017-09-11 08:21:24 +02:00
|
|
|
if(valType != ADDITIVE_VALUE)
|
2017-09-17 00:02:04 +02:00
|
|
|
root["valueType"].String() = vstd::findKey(bonusValueMap, valType);
|
2018-03-27 09:54:58 +02:00
|
|
|
if(stacking != "")
|
|
|
|
root["stacking"].String() = stacking;
|
|
|
|
if(description != "")
|
|
|
|
root["description"].String() = description;
|
|
|
|
if(effectRange != NO_LIMIT)
|
|
|
|
root["effectRange"].String() = vstd::findKey(bonusLimitEffect, effectRange);
|
|
|
|
if(duration != PERMANENT)
|
|
|
|
root["duration"] = durationToJson(duration);
|
|
|
|
if(turnsRemain)
|
|
|
|
root["turns"].Integer() = turnsRemain;
|
2017-09-12 01:56:38 +02:00
|
|
|
if(limiter)
|
2018-04-01 13:17:34 +02:00
|
|
|
root["limiters"] = limiter->toJsonNode();
|
2017-09-11 08:21:24 +02:00
|
|
|
if(updater)
|
|
|
|
root["updater"] = updater->toJsonNode();
|
2018-03-27 09:54:58 +02:00
|
|
|
if(propagator)
|
|
|
|
root["propagator"].String() = vstd::findKey(bonusPropagatorMap, propagator);
|
2017-09-11 08:21:24 +02:00
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2017-09-15 00:48:34 +02:00
|
|
|
std::string Bonus::nameForBonus() const
|
|
|
|
{
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case Bonus::PRIMARY_SKILL:
|
|
|
|
return PrimarySkill::names[subtype];
|
|
|
|
case Bonus::SECONDARY_SKILL_PREMY:
|
2018-03-31 07:56:40 +02:00
|
|
|
return CSkillHandler::encodeSkill(subtype);
|
2017-09-15 00:48:34 +02:00
|
|
|
case Bonus::SPECIAL_SPELL_LEV:
|
|
|
|
case Bonus::SPECIFIC_SPELL_DAMAGE:
|
|
|
|
case Bonus::SPECIAL_BLESS_DAMAGE:
|
|
|
|
case Bonus::MAXED_SPELL:
|
|
|
|
case Bonus::SPECIAL_PECULIAR_ENCHANT:
|
|
|
|
return (*VLC->spellh)[SpellID::ESpellID(subtype)]->identifier;
|
|
|
|
case Bonus::SPECIAL_UPGRADE:
|
2018-03-12 07:20:18 +02:00
|
|
|
return CreatureID::encode(subtype) + "2" + CreatureID::encode(additionalInfo[0]);
|
2017-09-15 00:48:34 +02:00
|
|
|
case Bonus::GENERATE_RESOURCE:
|
|
|
|
return GameConstants::RESOURCE_NAMES[subtype];
|
|
|
|
case Bonus::STACKS_SPEED:
|
|
|
|
return "speed";
|
|
|
|
default:
|
|
|
|
return vstd::findKey(bonusNameMap, type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
Bonus::Bonus(ui16 Dur, BonusType Type, BonusSource Src, si32 Val, ui32 ID, std::string Desc, si32 Subtype)
|
2011-02-20 20:32:39 +02:00
|
|
|
: duration(Dur), type(Type), subtype(Subtype), source(Src), val(Val), sid(ID), description(Desc)
|
2010-07-13 08:25:40 +03:00
|
|
|
{
|
|
|
|
turnsRemain = 0;
|
|
|
|
valType = ADDITIVE_VALUE;
|
|
|
|
effectRange = NO_LIMIT;
|
|
|
|
boost::algorithm::trim(description);
|
|
|
|
}
|
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
Bonus::Bonus(ui16 Dur, BonusType Type, BonusSource Src, si32 Val, ui32 ID, si32 Subtype, ValueType ValType)
|
2011-02-20 20:32:39 +02:00
|
|
|
: duration(Dur), type(Type), subtype(Subtype), source(Src), val(Val), sid(ID), valType(ValType)
|
2010-07-13 08:25:40 +03:00
|
|
|
{
|
|
|
|
turnsRemain = 0;
|
|
|
|
effectRange = NO_LIMIT;
|
|
|
|
}
|
|
|
|
|
2016-08-18 14:03:20 +02:00
|
|
|
Bonus::Bonus()
|
2010-07-13 08:25:40 +03:00
|
|
|
{
|
2013-03-14 20:21:16 +03:00
|
|
|
duration = PERMANENT;
|
|
|
|
turnsRemain = 0;
|
|
|
|
type = NONE;
|
2010-07-13 08:25:40 +03:00
|
|
|
subtype = -1;
|
2016-08-18 14:03:20 +02:00
|
|
|
|
2010-07-13 08:25:40 +03:00
|
|
|
valType = ADDITIVE_VALUE;
|
|
|
|
effectRange = NO_LIMIT;
|
2013-03-14 20:21:16 +03:00
|
|
|
val = 0;
|
2013-04-21 15:49:26 +03:00
|
|
|
source = OTHER;
|
2016-08-18 14:03:20 +02:00
|
|
|
sid = 0;
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
std::shared_ptr<Bonus> Bonus::addPropagator(TPropagatorPtr Propagator)
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
|
|
|
propagator = Propagator;
|
2016-09-19 23:36:35 +02:00
|
|
|
return this->shared_from_this();
|
2010-07-13 08:25:40 +03:00
|
|
|
}
|
|
|
|
|
2010-05-02 21:20:26 +03:00
|
|
|
namespace Selector
|
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
DLL_LINKAGE CSelectFieldEqual<Bonus::BonusType> & type()
|
|
|
|
{
|
|
|
|
static CSelectFieldEqual<Bonus::BonusType> stype(&Bonus::type);
|
|
|
|
return stype;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLL_LINKAGE CSelectFieldEqual<TBonusSubtype> & subtype()
|
|
|
|
{
|
|
|
|
static CSelectFieldEqual<TBonusSubtype> ssubtype(&Bonus::subtype);
|
|
|
|
return ssubtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLL_LINKAGE CSelectFieldEqual<CAddInfo> & info()
|
|
|
|
{
|
|
|
|
static CSelectFieldEqual<CAddInfo> sinfo(&Bonus::additionalInfo);
|
|
|
|
return sinfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLL_LINKAGE CSelectFieldEqual<Bonus::BonusSource> & sourceType()
|
|
|
|
{
|
|
|
|
static CSelectFieldEqual<Bonus::BonusSource> ssourceType(&Bonus::source);
|
|
|
|
return ssourceType;
|
|
|
|
}
|
|
|
|
|
|
|
|
DLL_LINKAGE CSelectFieldEqual<Bonus::LimitEffect> & effectRange()
|
|
|
|
{
|
|
|
|
static CSelectFieldEqual<Bonus::LimitEffect> seffectRange(&Bonus::effectRange);
|
|
|
|
return seffectRange;
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
DLL_LINKAGE CWillLastTurns turns;
|
2015-11-09 14:01:58 +02:00
|
|
|
DLL_LINKAGE CWillLastDays days;
|
2010-05-02 21:20:26 +03:00
|
|
|
|
2013-02-16 17:03:47 +03:00
|
|
|
CSelector DLL_LINKAGE typeSubtype(Bonus::BonusType Type, TBonusSubtype Subtype)
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2020-11-11 21:43:40 +02:00
|
|
|
return type()(Type).And(subtype()(Subtype));
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2018-03-12 07:20:18 +02:00
|
|
|
CSelector DLL_LINKAGE typeSubtypeInfo(Bonus::BonusType type, TBonusSubtype subtype, CAddInfo info)
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2013-07-02 15:08:30 +03:00
|
|
|
return CSelectFieldEqual<Bonus::BonusType>(&Bonus::type)(type)
|
|
|
|
.And(CSelectFieldEqual<TBonusSubtype>(&Bonus::subtype)(subtype))
|
2018-03-12 07:20:18 +02:00
|
|
|
.And(CSelectFieldEqual<CAddInfo>(&Bonus::additionalInfo)(info));
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2013-02-02 01:04:25 +03:00
|
|
|
CSelector DLL_LINKAGE source(Bonus::BonusSource source, ui32 sourceID)
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
2013-07-02 15:08:30 +03:00
|
|
|
return CSelectFieldEqual<Bonus::BonusSource>(&Bonus::source)(source)
|
|
|
|
.And(CSelectFieldEqual<ui32>(&Bonus::sid)(sourceID));
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
|
|
|
|
2013-02-02 01:04:25 +03:00
|
|
|
CSelector DLL_LINKAGE sourceTypeSel(Bonus::BonusSource source)
|
2010-08-31 13:22:21 +03:00
|
|
|
{
|
2013-07-02 15:08:30 +03:00
|
|
|
return CSelectFieldEqual<Bonus::BonusSource>(&Bonus::source)(source);
|
2010-08-31 13:22:21 +03:00
|
|
|
}
|
|
|
|
|
2017-08-27 05:35:04 +02:00
|
|
|
CSelector DLL_LINKAGE valueType(Bonus::ValueType valType)
|
|
|
|
{
|
|
|
|
return CSelectFieldEqual<Bonus::ValueType>(&Bonus::valType)(valType);
|
|
|
|
}
|
|
|
|
|
2016-09-30 16:11:17 +02:00
|
|
|
DLL_LINKAGE CSelector all([](const Bonus * b){return true;});
|
|
|
|
DLL_LINKAGE CSelector none([](const Bonus * b){return false;});
|
|
|
|
|
2013-02-16 17:03:47 +03:00
|
|
|
bool DLL_LINKAGE matchesType(const CSelector &sel, Bonus::BonusType type)
|
2010-05-02 21:20:26 +03:00
|
|
|
{
|
|
|
|
Bonus dummy;
|
|
|
|
dummy.type = type;
|
2010-11-19 00:06:56 +02:00
|
|
|
return sel(&dummy);
|
2010-05-02 21:20:26 +03:00
|
|
|
}
|
2010-05-14 05:18:37 +03:00
|
|
|
|
2013-02-16 17:03:47 +03:00
|
|
|
bool DLL_LINKAGE matchesTypeSubtype(const CSelector &sel, Bonus::BonusType type, TBonusSubtype subtype)
|
2010-05-14 05:18:37 +03:00
|
|
|
{
|
|
|
|
Bonus dummy;
|
|
|
|
dummy.type = type;
|
|
|
|
dummy.subtype = subtype;
|
2010-11-19 00:06:56 +02:00
|
|
|
return sel(&dummy);
|
2010-05-14 05:18:37 +03:00
|
|
|
}
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
|
|
|
|
2018-02-10 20:52:23 +02:00
|
|
|
const CStack * retrieveStackBattle(const CBonusSystemNode * node)
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
switch(node->getNodeType())
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
|
|
|
case CBonusSystemNode::STACK_BATTLE:
|
|
|
|
return static_cast<const CStack*>(node);
|
|
|
|
default:
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
2010-07-12 13:20:25 +03:00
|
|
|
}
|
|
|
|
|
2018-02-10 20:52:23 +02:00
|
|
|
const CStackInstance * retrieveStackInstance(const CBonusSystemNode * node)
|
2011-02-12 18:12:48 +02:00
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
switch(node->getNodeType())
|
2011-02-12 18:12:48 +02:00
|
|
|
{
|
|
|
|
case CBonusSystemNode::STACK_INSTANCE:
|
|
|
|
return (static_cast<const CStackInstance *>(node));
|
|
|
|
case CBonusSystemNode::STACK_BATTLE:
|
|
|
|
return (static_cast<const CStack*>(node))->base;
|
|
|
|
default:
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2011-02-12 18:12:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-20 02:03:31 +02:00
|
|
|
const CCreature * retrieveCreature(const CBonusSystemNode *node)
|
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
switch(node->getNodeType())
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
|
|
|
case CBonusSystemNode::CREATURE:
|
|
|
|
return (static_cast<const CCreature *>(node));
|
2017-09-06 14:27:26 +02:00
|
|
|
case CBonusSystemNode::STACK_BATTLE:
|
|
|
|
return (static_cast<const CStack*>(node))->type;
|
2010-11-20 02:03:31 +02:00
|
|
|
default:
|
2018-02-10 20:52:23 +02:00
|
|
|
const CStackInstance * csi = retrieveStackInstance(node);
|
2011-02-12 18:12:48 +02:00
|
|
|
if(csi)
|
|
|
|
return csi->type;
|
2013-06-26 14:18:27 +03:00
|
|
|
return nullptr;
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
DLL_LINKAGE std::ostream & operator<<(std::ostream &out, const BonusList &bonusList)
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
for (ui32 i = 0; i < bonusList.size(); i++)
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
2016-09-19 23:36:35 +02:00
|
|
|
auto b = bonusList[i];
|
2011-06-25 16:53:15 +03:00
|
|
|
out << "Bonus " << i << "\n" << *b << std::endl;
|
2010-07-12 13:20:25 +03:00
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
DLL_LINKAGE std::ostream & operator<<(std::ostream &out, const Bonus &bonus)
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
2013-02-16 17:03:47 +03:00
|
|
|
for(auto i = bonusNameMap.cbegin(); i != bonusNameMap.cend(); i++)
|
2010-07-12 13:20:25 +03:00
|
|
|
if(i->second == bonus.type)
|
|
|
|
out << "\tType: " << i->first << " \t";
|
|
|
|
|
|
|
|
#define printField(field) out << "\t" #field ": " << (int)bonus.field << "\n"
|
|
|
|
printField(val);
|
|
|
|
printField(subtype);
|
|
|
|
printField(duration);
|
|
|
|
printField(source);
|
2011-02-20 20:32:39 +02:00
|
|
|
printField(sid);
|
2018-03-12 07:20:18 +02:00
|
|
|
if(bonus.additionalInfo != CAddInfo::NONE)
|
|
|
|
out << "\taddInfo: " << bonus.additionalInfo.toString() << "\n";
|
2010-07-12 13:20:25 +03:00
|
|
|
printField(turnsRemain);
|
|
|
|
printField(valType);
|
2018-03-27 09:54:58 +02:00
|
|
|
if(!bonus.stacking.empty())
|
|
|
|
out << "\tstacking: \"" << bonus.stacking << "\"\n";
|
2010-07-12 13:20:25 +03:00
|
|
|
printField(effectRange);
|
|
|
|
#undef printField
|
|
|
|
|
2017-09-12 01:56:38 +02:00
|
|
|
if(bonus.limiter)
|
|
|
|
out << "\tLimiter: " << bonus.limiter->toString() << "\n";
|
2017-09-11 02:36:02 +02:00
|
|
|
if(bonus.updater)
|
|
|
|
out << "\tUpdater: " << bonus.updater->toString() << "\n";
|
|
|
|
|
2010-07-12 13:20:25 +03:00
|
|
|
return out;
|
|
|
|
}
|
2013-01-20 15:06:18 +03:00
|
|
|
|
2016-09-19 23:36:35 +02:00
|
|
|
std::shared_ptr<Bonus> Bonus::addLimiter(TLimiterPtr Limiter)
|
2013-01-16 16:02:01 +03:00
|
|
|
{
|
2013-01-20 15:06:18 +03:00
|
|
|
if (limiter)
|
2013-01-16 16:02:01 +03:00
|
|
|
{
|
2014-03-23 15:59:03 +03:00
|
|
|
//If we already have limiter list, retrieve it
|
2018-04-01 13:17:34 +02:00
|
|
|
auto limiterList = std::dynamic_pointer_cast<AllOfLimiter>(limiter);
|
2013-01-20 15:06:18 +03:00
|
|
|
if(!limiterList)
|
|
|
|
{
|
|
|
|
//Create a new limiter list with old limiter and the new one will be pushed later
|
2018-04-01 13:17:34 +02:00
|
|
|
limiterList = std::make_shared<AllOfLimiter>();
|
2013-01-20 15:06:18 +03:00
|
|
|
limiterList->add(limiter);
|
|
|
|
limiter = limiterList;
|
|
|
|
}
|
|
|
|
|
|
|
|
limiterList->add(Limiter);
|
2013-01-16 16:02:01 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-19 20:38:37 +03:00
|
|
|
limiter = Limiter;
|
2013-01-16 16:02:01 +03:00
|
|
|
}
|
2016-09-19 23:36:35 +02:00
|
|
|
return this->shared_from_this();
|
2012-12-13 13:49:12 +03:00
|
|
|
}
|
|
|
|
|
2010-07-12 13:20:25 +03:00
|
|
|
ILimiter::~ILimiter()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
int ILimiter::limit(const BonusLimitationContext &context) const /*return true to drop the bonus */
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-12 01:56:38 +02:00
|
|
|
std::string ILimiter::toString() const
|
|
|
|
{
|
|
|
|
return typeid(*this).name();
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode ILimiter::toJsonNode() const
|
|
|
|
{
|
2017-09-12 10:56:59 +02:00
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
2017-09-12 01:56:38 +02:00
|
|
|
root["type"].String() = toString();
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
int CCreatureTypeLimiter::limit(const BonusLimitationContext &context) const
|
2010-07-12 13:20:25 +03:00
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
const CCreature *c = retrieveCreature(&context.node);
|
2011-02-22 11:47:25 +02:00
|
|
|
if(!c)
|
|
|
|
return true;
|
2011-02-12 18:12:48 +02:00
|
|
|
return c != creature && (!includeUpgrades || !creature->isMyUpgrade(c));
|
2014-05-21 12:02:20 +03:00
|
|
|
//drop bonus if it's not our creature and (we don`t check upgrades or its not our upgrade)
|
2010-07-12 13:20:25 +03:00
|
|
|
}
|
2011-02-12 18:12:48 +02:00
|
|
|
|
2017-07-15 13:08:20 +02:00
|
|
|
CCreatureTypeLimiter::CCreatureTypeLimiter(const CCreature &Creature, bool IncludeUpgrades)
|
2010-07-12 13:20:25 +03:00
|
|
|
:creature(&Creature), includeUpgrades(IncludeUpgrades)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CCreatureTypeLimiter::CCreatureTypeLimiter()
|
|
|
|
{
|
2013-06-26 14:18:27 +03:00
|
|
|
creature = nullptr;
|
2010-07-12 13:20:25 +03:00
|
|
|
includeUpgrades = false;
|
2010-08-06 13:46:40 +03:00
|
|
|
}
|
|
|
|
|
2013-02-11 02:24:57 +03:00
|
|
|
void CCreatureTypeLimiter::setCreature (CreatureID id)
|
2013-01-18 14:49:15 +03:00
|
|
|
{
|
|
|
|
creature = VLC->creh->creatures[id];
|
|
|
|
}
|
|
|
|
|
2017-09-12 01:56:38 +02:00
|
|
|
std::string CCreatureTypeLimiter::toString() const
|
|
|
|
{
|
2018-04-17 14:59:30 +02:00
|
|
|
boost::format fmt("CCreatureTypeLimiter(creature=%s, includeUpgrades=%s)");
|
|
|
|
fmt % creature->identifier % (includeUpgrades ? "true" : "false");
|
|
|
|
return fmt.str();
|
2017-09-12 01:56:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode CCreatureTypeLimiter::toJsonNode() const
|
|
|
|
{
|
2017-09-12 10:56:59 +02:00
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
2017-09-12 01:56:38 +02:00
|
|
|
|
|
|
|
root["type"].String() = "CREATURE_TYPE_LIMITER";
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::stringNode(creature->identifier));
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::boolNode(includeUpgrades));
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2013-02-16 17:03:47 +03:00
|
|
|
HasAnotherBonusLimiter::HasAnotherBonusLimiter( Bonus::BonusType bonus )
|
2010-08-06 13:46:40 +03:00
|
|
|
: type(bonus), subtype(0), isSubtypeRelevant(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-02-16 17:03:47 +03:00
|
|
|
HasAnotherBonusLimiter::HasAnotherBonusLimiter( Bonus::BonusType bonus, TBonusSubtype _subtype )
|
2010-08-06 13:46:40 +03:00
|
|
|
: type(bonus), subtype(_subtype), isSubtypeRelevant(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
int HasAnotherBonusLimiter::limit(const BonusLimitationContext &context) const
|
2010-08-06 13:46:40 +03:00
|
|
|
{
|
2013-02-13 22:35:43 +03:00
|
|
|
CSelector mySelector = isSubtypeRelevant
|
|
|
|
? Selector::typeSubtype(type, subtype)
|
2020-11-11 21:43:40 +02:00
|
|
|
: Selector::type()(type);
|
2012-03-06 19:59:55 +03:00
|
|
|
|
|
|
|
//if we have a bonus of required type accepted, limiter should accept also this bonus
|
|
|
|
if(context.alreadyAccepted.getFirst(mySelector))
|
|
|
|
return ACCEPT;
|
|
|
|
|
2018-04-01 13:17:34 +02:00
|
|
|
//if there are no matching bonuses pending, we can (and must) reject right away
|
|
|
|
if(!context.stillUndecided.getFirst(mySelector))
|
|
|
|
return DISCARD;
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
//do not accept for now but it may change if more bonuses gets included
|
|
|
|
return NOT_SURE;
|
2010-08-06 13:46:40 +03:00
|
|
|
}
|
2010-11-19 00:22:51 +02:00
|
|
|
|
2017-09-17 04:45:23 +02:00
|
|
|
std::string HasAnotherBonusLimiter::toString() const
|
|
|
|
{
|
|
|
|
std::string typeName = vstd::findKey(bonusNameMap, type);
|
|
|
|
if(isSubtypeRelevant)
|
2018-04-17 14:59:30 +02:00
|
|
|
{
|
|
|
|
boost::format fmt("HasAnotherBonusLimiter(type=%s, subtype=%d)");
|
|
|
|
fmt % typeName % subtype;
|
|
|
|
return fmt.str();
|
|
|
|
}
|
2017-09-17 04:45:23 +02:00
|
|
|
else
|
2018-04-17 14:59:30 +02:00
|
|
|
{
|
|
|
|
boost::format fmt("HasAnotherBonusLimiter(type=%s)");
|
|
|
|
fmt % typeName;
|
|
|
|
return fmt.str();
|
|
|
|
}
|
2017-09-17 04:45:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode HasAnotherBonusLimiter::toJsonNode() const
|
|
|
|
{
|
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
|
|
|
std::string typeName = vstd::findKey(bonusNameMap, type);
|
|
|
|
|
|
|
|
root["type"].String() = "HAS_ANOTHER_BONUS_LIMITER";
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::stringNode(typeName));
|
|
|
|
if(isSubtypeRelevant)
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::intNode(subtype));
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2010-11-19 00:22:51 +02:00
|
|
|
IPropagator::~IPropagator()
|
|
|
|
{
|
|
|
|
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
|
|
|
|
2011-02-21 06:13:00 +02:00
|
|
|
bool IPropagator::shouldBeAttached(CBonusSystemNode *dest)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CPropagatorNodeType::CPropagatorNodeType()
|
2016-11-27 16:48:18 +02:00
|
|
|
:nodeType(0)
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-02-02 22:28:39 +03:00
|
|
|
CPropagatorNodeType::CPropagatorNodeType(int NodeType)
|
2011-02-21 06:13:00 +02:00
|
|
|
: nodeType(NodeType)
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CPropagatorNodeType::shouldBeAttached(CBonusSystemNode *dest)
|
|
|
|
{
|
2011-07-13 21:39:02 +03:00
|
|
|
return nodeType == dest->getNodeType();
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 14:59:30 +02:00
|
|
|
CreatureTerrainLimiter::CreatureTerrainLimiter(int TerrainType)
|
2010-11-20 02:03:31 +02:00
|
|
|
: terrainType(TerrainType)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-17 14:59:30 +02:00
|
|
|
CreatureTerrainLimiter::CreatureTerrainLimiter()
|
2016-11-27 16:48:18 +02:00
|
|
|
: terrainType(-1)
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2012-03-06 19:59:55 +03:00
|
|
|
|
2018-04-17 14:59:30 +02:00
|
|
|
int CreatureTerrainLimiter::limit(const BonusLimitationContext &context) const
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
2018-04-17 14:59:30 +02:00
|
|
|
const CStack *stack = retrieveStackBattle(&context.node);
|
|
|
|
if(stack)
|
|
|
|
{
|
|
|
|
if(terrainType == -1)//terrainType not specified = native
|
|
|
|
return !stack->isOnNativeTerrain();
|
|
|
|
return !stack->isOnTerrain(terrainType);
|
|
|
|
}
|
|
|
|
return true;
|
2011-02-21 06:13:00 +02:00
|
|
|
//TODO neutral creatues
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 14:59:30 +02:00
|
|
|
std::string CreatureTerrainLimiter::toString() const
|
|
|
|
{
|
|
|
|
boost::format fmt("CreatureTerrainLimiter(terrainType=%s)");
|
|
|
|
fmt % (terrainType >= 0 ? GameConstants::TERRAIN_NAMES[terrainType] : "native");
|
|
|
|
return fmt.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode CreatureTerrainLimiter::toJsonNode() const
|
|
|
|
{
|
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
|
|
|
|
|
|
|
root["type"].String() = "CREATURE_TERRAIN_LIMITER";
|
|
|
|
if(terrainType >= 0)
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::stringNode(GameConstants::TERRAIN_NAMES[terrainType]));
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2020-12-10 03:05:37 +02:00
|
|
|
CreatureFactionLimiter::CreatureFactionLimiter(TFaction creatureFaction)
|
|
|
|
: faction(creatureFaction)
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CreatureFactionLimiter::CreatureFactionLimiter()
|
2020-12-10 03:05:37 +02:00
|
|
|
: faction((TFaction)-1)
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
|
|
|
}
|
2012-03-06 19:59:55 +03:00
|
|
|
|
|
|
|
int CreatureFactionLimiter::limit(const BonusLimitationContext &context) const
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
const CCreature *c = retrieveCreature(&context.node);
|
2010-11-20 02:03:31 +02:00
|
|
|
return !c || c->faction != faction; //drop bonus for non-creatures or non-native residents
|
|
|
|
}
|
|
|
|
|
2018-04-17 14:59:30 +02:00
|
|
|
std::string CreatureFactionLimiter::toString() const
|
|
|
|
{
|
|
|
|
boost::format fmt("CreatureFactionLimiter(faction=%s)");
|
|
|
|
fmt % VLC->townh->factions[faction]->identifier;
|
|
|
|
return fmt.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode CreatureFactionLimiter::toJsonNode() const
|
|
|
|
{
|
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
|
|
|
|
|
|
|
root["type"].String() = "CREATURE_FACTION_LIMITER";
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::stringNode(VLC->townh->factions[faction]->identifier));
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2010-11-20 02:03:31 +02:00
|
|
|
CreatureAlignmentLimiter::CreatureAlignmentLimiter()
|
2016-11-27 16:48:18 +02:00
|
|
|
: alignment(-1)
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CreatureAlignmentLimiter::CreatureAlignmentLimiter(si8 Alignment)
|
|
|
|
: alignment(Alignment)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
int CreatureAlignmentLimiter::limit(const BonusLimitationContext &context) const
|
2010-11-20 02:03:31 +02:00
|
|
|
{
|
2012-03-06 19:59:55 +03:00
|
|
|
const CCreature *c = retrieveCreature(&context.node);
|
2013-02-13 22:35:43 +03:00
|
|
|
if(!c)
|
2010-11-20 02:03:31 +02:00
|
|
|
return true;
|
|
|
|
switch(alignment)
|
|
|
|
{
|
2011-12-14 00:23:17 +03:00
|
|
|
case EAlignment::GOOD:
|
2010-11-20 02:03:31 +02:00
|
|
|
return !c->isGood(); //if not good -> return true (drop bonus)
|
2011-12-14 00:23:17 +03:00
|
|
|
case EAlignment::NEUTRAL:
|
2010-11-20 02:03:31 +02:00
|
|
|
return c->isEvil() || c->isGood();
|
2011-12-14 00:23:17 +03:00
|
|
|
case EAlignment::EVIL:
|
2010-11-20 02:03:31 +02:00
|
|
|
return !c->isEvil();
|
|
|
|
default:
|
2017-08-10 18:39:27 +02:00
|
|
|
logBonus->warn("Warning: illegal alignment in limiter!");
|
2016-03-12 03:41:27 +02:00
|
|
|
return true;
|
2010-11-20 02:03:31 +02:00
|
|
|
}
|
2011-02-11 10:20:26 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 14:59:30 +02:00
|
|
|
std::string CreatureAlignmentLimiter::toString() const
|
|
|
|
{
|
|
|
|
boost::format fmt("CreatureAlignmentLimiter(alignment=%s)");
|
|
|
|
fmt % EAlignment::names[alignment];
|
|
|
|
return fmt.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode CreatureAlignmentLimiter::toJsonNode() const
|
|
|
|
{
|
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
|
|
|
|
|
|
|
root["type"].String() = "CREATURE_ALIGNMENT_LIMITER";
|
|
|
|
root["parameters"].Vector().push_back(JsonUtils::stringNode(EAlignment::names[alignment]));
|
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
2011-02-12 18:12:48 +02:00
|
|
|
RankRangeLimiter::RankRangeLimiter(ui8 Min, ui8 Max)
|
|
|
|
:minRank(Min), maxRank(Max)
|
2011-02-11 10:20:26 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-02-21 06:13:00 +02:00
|
|
|
RankRangeLimiter::RankRangeLimiter()
|
|
|
|
{
|
|
|
|
minRank = maxRank = -1;
|
|
|
|
}
|
|
|
|
|
2012-03-06 19:59:55 +03:00
|
|
|
int RankRangeLimiter::limit(const BonusLimitationContext &context) const
|
2011-02-11 10:20:26 +02:00
|
|
|
{
|
2018-02-10 20:52:23 +02:00
|
|
|
const CStackInstance * csi = retrieveStackInstance(&context.node);
|
2011-02-12 18:12:48 +02:00
|
|
|
if(csi)
|
2012-08-20 19:10:50 +03:00
|
|
|
{
|
2013-02-05 22:56:28 +03:00
|
|
|
if (csi->getNodeType() == CBonusSystemNode::COMMANDER) //no stack exp bonuses for commander creatures
|
2012-08-20 19:10:50 +03:00
|
|
|
return true;
|
2011-02-12 18:12:48 +02:00
|
|
|
return csi->getExpRank() < minRank || csi->getExpRank() > maxRank;
|
2012-08-20 19:10:50 +03:00
|
|
|
}
|
2011-02-12 18:12:48 +02:00
|
|
|
return true;
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
|
|
|
|
2013-02-13 22:35:43 +03:00
|
|
|
int StackOwnerLimiter::limit(const BonusLimitationContext &context) const
|
2011-02-21 06:13:00 +02:00
|
|
|
{
|
2018-02-10 20:52:23 +02:00
|
|
|
const CStack * s = retrieveStackBattle(&context.node);
|
2011-02-21 06:13:00 +02:00
|
|
|
if(s)
|
|
|
|
return s->owner != owner;
|
|
|
|
|
2018-02-10 20:52:23 +02:00
|
|
|
const CStackInstance * csi = retrieveStackInstance(&context.node);
|
|
|
|
if(csi && csi->armyObj)
|
|
|
|
return csi->armyObj->tempOwner != owner;
|
|
|
|
return true;
|
2011-02-21 06:13:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
StackOwnerLimiter::StackOwnerLimiter()
|
|
|
|
: owner(-1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-03 20:06:03 +03:00
|
|
|
StackOwnerLimiter::StackOwnerLimiter(PlayerColor Owner)
|
2011-02-21 06:13:00 +02:00
|
|
|
: owner(Owner)
|
|
|
|
{
|
2011-05-30 22:20:14 +03:00
|
|
|
}
|
2013-01-20 15:06:18 +03:00
|
|
|
|
2018-04-01 13:17:34 +02:00
|
|
|
// Aggregate/Boolean Limiters
|
|
|
|
|
|
|
|
void AggregateLimiter::add(TLimiterPtr limiter)
|
|
|
|
{
|
|
|
|
if(limiter)
|
|
|
|
limiters.push_back(limiter);
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode AggregateLimiter::toJsonNode() const
|
|
|
|
{
|
|
|
|
JsonNode result(JsonNode::JsonType::DATA_VECTOR);
|
|
|
|
result.Vector().push_back(JsonUtils::stringNode(getAggregator()));
|
|
|
|
for(auto l : limiters)
|
|
|
|
result.Vector().push_back(l->toJsonNode());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string AllOfLimiter::aggregator = "allOf";
|
|
|
|
const std::string & AllOfLimiter::getAggregator() const
|
|
|
|
{
|
|
|
|
return aggregator;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AllOfLimiter::limit(const BonusLimitationContext & context) const
|
2013-01-20 15:06:18 +03:00
|
|
|
{
|
|
|
|
bool wasntSure = false;
|
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(auto limiter : limiters)
|
2013-01-20 15:06:18 +03:00
|
|
|
{
|
|
|
|
auto result = limiter->limit(context);
|
|
|
|
if(result == ILimiter::DISCARD)
|
|
|
|
return result;
|
|
|
|
if(result == ILimiter::NOT_SURE)
|
|
|
|
wasntSure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wasntSure ? ILimiter::NOT_SURE : ILimiter::ACCEPT;
|
|
|
|
}
|
|
|
|
|
2018-04-01 13:17:34 +02:00
|
|
|
const std::string AnyOfLimiter::aggregator = "anyOf";
|
|
|
|
const std::string & AnyOfLimiter::getAggregator() const
|
2013-01-20 15:06:18 +03:00
|
|
|
{
|
2018-04-01 13:17:34 +02:00
|
|
|
return aggregator;
|
|
|
|
}
|
|
|
|
|
|
|
|
int AnyOfLimiter::limit(const BonusLimitationContext & context) const
|
|
|
|
{
|
|
|
|
bool wasntSure = false;
|
|
|
|
|
|
|
|
for(auto limiter : limiters)
|
|
|
|
{
|
|
|
|
auto result = limiter->limit(context);
|
|
|
|
if(result == ILimiter::ACCEPT)
|
|
|
|
return result;
|
|
|
|
if(result == ILimiter::NOT_SURE)
|
|
|
|
wasntSure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wasntSure ? ILimiter::NOT_SURE : ILimiter::DISCARD;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string NoneOfLimiter::aggregator = "noneOf";
|
|
|
|
const std::string & NoneOfLimiter::getAggregator() const
|
|
|
|
{
|
|
|
|
return aggregator;
|
|
|
|
}
|
|
|
|
|
|
|
|
int NoneOfLimiter::limit(const BonusLimitationContext & context) const
|
|
|
|
{
|
|
|
|
bool wasntSure = false;
|
|
|
|
|
|
|
|
for(auto limiter : limiters)
|
|
|
|
{
|
|
|
|
auto result = limiter->limit(context);
|
|
|
|
if(result == ILimiter::ACCEPT)
|
|
|
|
return ILimiter::DISCARD;
|
|
|
|
if(result == ILimiter::NOT_SURE)
|
|
|
|
wasntSure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wasntSure ? ILimiter::NOT_SURE : ILimiter::ACCEPT;
|
2013-01-20 15:06:18 +03:00
|
|
|
}
|
2017-09-09 07:43:53 +02:00
|
|
|
|
2017-09-10 05:20:47 +02:00
|
|
|
// Updaters
|
|
|
|
|
2017-09-12 01:56:38 +02:00
|
|
|
std::shared_ptr<Bonus> Bonus::addUpdater(TUpdaterPtr Updater)
|
|
|
|
{
|
|
|
|
updater = Updater;
|
|
|
|
return this->shared_from_this();
|
|
|
|
}
|
|
|
|
|
2017-09-10 05:20:47 +02:00
|
|
|
IUpdater::~IUpdater()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<Bonus> IUpdater::update(const std::shared_ptr<Bonus> & b, const CBonusSystemNode & context) const
|
2017-09-19 00:08:28 +02:00
|
|
|
{
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2017-09-11 02:36:02 +02:00
|
|
|
std::string IUpdater::toString() const
|
|
|
|
{
|
|
|
|
return typeid(*this).name();
|
|
|
|
}
|
|
|
|
|
2017-09-19 00:08:28 +02:00
|
|
|
JsonNode IUpdater::toJsonNode() const
|
2017-09-10 05:20:47 +02:00
|
|
|
{
|
2017-09-19 00:08:28 +02:00
|
|
|
return JsonNode(JsonNode::JsonType::DATA_NULL);
|
2017-09-10 05:20:47 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 00:08:28 +02:00
|
|
|
GrowsWithLevelUpdater::GrowsWithLevelUpdater() : valPer20(0), stepSize(1)
|
2017-09-10 04:10:50 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-09-19 00:08:28 +02:00
|
|
|
GrowsWithLevelUpdater::GrowsWithLevelUpdater(int valPer20, int stepSize) : valPer20(valPer20), stepSize(stepSize)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<Bonus> GrowsWithLevelUpdater::update(const std::shared_ptr<Bonus> & b, const CBonusSystemNode & context) const
|
2017-09-09 07:43:53 +02:00
|
|
|
{
|
2017-09-09 14:25:55 +02:00
|
|
|
if(context.getNodeType() == CBonusSystemNode::HERO)
|
2017-09-09 07:43:53 +02:00
|
|
|
{
|
2017-09-09 14:25:55 +02:00
|
|
|
int level = static_cast<const CGHeroInstance &>(context).level;
|
2017-09-09 07:43:53 +02:00
|
|
|
int steps = stepSize ? level / stepSize : level;
|
|
|
|
//rounding follows format for HMM3 creature specialty bonus
|
2017-09-09 23:32:54 +02:00
|
|
|
int newVal = (valPer20 * steps + 19) / 20;
|
2017-09-16 02:26:48 +02:00
|
|
|
//return copy of bonus with updated val
|
|
|
|
std::shared_ptr<Bonus> newBonus = std::make_shared<Bonus>(*b);
|
|
|
|
newBonus->val = newVal;
|
|
|
|
return newBonus;
|
2017-09-09 07:43:53 +02:00
|
|
|
}
|
2017-09-16 02:26:48 +02:00
|
|
|
return b;
|
2017-09-09 07:43:53 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 00:08:28 +02:00
|
|
|
std::string GrowsWithLevelUpdater::toString() const
|
2017-09-11 02:36:02 +02:00
|
|
|
{
|
2018-02-20 12:36:00 +02:00
|
|
|
return boost::str(boost::format("GrowsWithLevelUpdater(valPer20=%d, stepSize=%d)") % valPer20 % stepSize);
|
2017-09-11 02:36:02 +02:00
|
|
|
}
|
|
|
|
|
2017-09-19 00:08:28 +02:00
|
|
|
JsonNode GrowsWithLevelUpdater::toJsonNode() const
|
2017-09-11 08:21:24 +02:00
|
|
|
{
|
2017-09-12 10:56:59 +02:00
|
|
|
JsonNode root(JsonNode::JsonType::DATA_STRUCT);
|
2017-09-11 08:21:24 +02:00
|
|
|
|
|
|
|
root["type"].String() = "GROWS_WITH_LEVEL";
|
2017-09-12 01:56:38 +02:00
|
|
|
root["parameters"].Vector().push_back(JsonUtils::intNode(valPer20));
|
2017-09-11 08:21:24 +02:00
|
|
|
if(stepSize > 1)
|
2017-09-12 01:56:38 +02:00
|
|
|
root["parameters"].Vector().push_back(JsonUtils::intNode(stepSize));
|
2017-09-11 08:21:24 +02:00
|
|
|
|
|
|
|
return root;
|
|
|
|
}
|
2017-09-19 00:08:28 +02:00
|
|
|
|
|
|
|
TimesHeroLevelUpdater::TimesHeroLevelUpdater()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<Bonus> TimesHeroLevelUpdater::update(const std::shared_ptr<Bonus> & b, const CBonusSystemNode & context) const
|
2017-09-19 00:08:28 +02:00
|
|
|
{
|
|
|
|
if(context.getNodeType() == CBonusSystemNode::HERO)
|
|
|
|
{
|
|
|
|
int level = static_cast<const CGHeroInstance &>(context).level;
|
|
|
|
std::shared_ptr<Bonus> newBonus = std::make_shared<Bonus>(*b);
|
|
|
|
newBonus->val *= level;
|
|
|
|
return newBonus;
|
|
|
|
}
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string TimesHeroLevelUpdater::toString() const
|
|
|
|
{
|
|
|
|
return "TimesHeroLevelUpdater";
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode TimesHeroLevelUpdater::toJsonNode() const
|
|
|
|
{
|
|
|
|
return JsonUtils::stringNode("TIMES_HERO_LEVEL");
|
|
|
|
}
|
2017-09-19 01:43:13 +02:00
|
|
|
|
|
|
|
TimesStackLevelUpdater::TimesStackLevelUpdater()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-10-01 07:55:41 +02:00
|
|
|
std::shared_ptr<Bonus> TimesStackLevelUpdater::update(const std::shared_ptr<Bonus> & b, const CBonusSystemNode & context) const
|
2017-09-19 01:43:13 +02:00
|
|
|
{
|
|
|
|
if(context.getNodeType() == CBonusSystemNode::STACK_INSTANCE)
|
|
|
|
{
|
|
|
|
int level = static_cast<const CStackInstance &>(context).getLevel();
|
|
|
|
std::shared_ptr<Bonus> newBonus = std::make_shared<Bonus>(*b);
|
|
|
|
newBonus->val *= level;
|
|
|
|
return newBonus;
|
|
|
|
}
|
|
|
|
else if(context.getNodeType() == CBonusSystemNode::STACK_BATTLE)
|
|
|
|
{
|
|
|
|
const CStack & stack = static_cast<const CStack &>(context);
|
|
|
|
//only update if stack doesn't have an instance (summons, war machines)
|
|
|
|
//otherwise we'd end up multiplying twice
|
|
|
|
if(stack.base == nullptr)
|
|
|
|
{
|
|
|
|
int level = stack.type->level;
|
|
|
|
std::shared_ptr<Bonus> newBonus = std::make_shared<Bonus>(*b);
|
|
|
|
newBonus->val *= level;
|
|
|
|
return newBonus;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string TimesStackLevelUpdater::toString() const
|
|
|
|
{
|
|
|
|
return "TimesStackLevelUpdater";
|
|
|
|
}
|
|
|
|
|
|
|
|
JsonNode TimesStackLevelUpdater::toJsonNode() const
|
|
|
|
{
|
|
|
|
return JsonUtils::stringNode("TIMES_STACK_LEVEL");
|
|
|
|
}
|