123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- /*
- * BonusList.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "CBonusSystemNode.h"
- #include "../json/JsonNode.h"
- VCMI_LIB_NAMESPACE_BEGIN
- BonusList::BonusList(bool BelongsToTree) : belongsToTree(BelongsToTree)
- {
- }
- BonusList::BonusList(const BonusList & bonusList): belongsToTree(false)
- {
- bonuses.resize(bonusList.size());
- std::copy(bonusList.begin(), bonusList.end(), bonuses.begin());
- }
- BonusList::BonusList(BonusList && other) noexcept: belongsToTree(false)
- {
- std::swap(belongsToTree, other.belongsToTree);
- std::swap(bonuses, other.bonuses);
- }
- BonusList& BonusList::operator=(const BonusList &bonusList)
- {
- bonuses.resize(bonusList.size());
- std::copy(bonusList.begin(), bonusList.end(), bonuses.begin());
- belongsToTree = false;
- return *this;
- }
- void BonusList::changed() const
- {
- if(belongsToTree)
- CBonusSystemNode::treeHasChanged();
- }
- void BonusList::stackBonuses()
- {
- boost::sort(bonuses, [](const std::shared_ptr<Bonus> & b1, const 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 = false;
- std::shared_ptr<Bonus> last = bonuses[next-1];
- std::shared_ptr<Bonus> current = bonuses[next];
- 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++;
- }
- }
- int BonusList::totalValue() const
- {
- if (bonuses.empty())
- return 0;
- struct BonusCollection
- {
- int base = 0;
- int percentToBase = 0;
- int percentToAll = 0;
- int additive = 0;
- int percentToSource = 0;
- int indepMin = std::numeric_limits<int>::max();
- int indepMax = std::numeric_limits<int>::min();
- };
- auto applyPercentage = [](int base, int percent) -> int {
- return (static_cast<int64_t>(base) * (100 + percent)) / 100;
- };
- BonusCollection accumulated;
- int indexMaxCount = 0;
- int indexMinCount = 0;
- std::array<int, vstd::to_underlying(BonusSource::NUM_BONUS_SOURCE)> percentToSource = {};
- for(const auto & b : bonuses)
- {
- switch(b->valType)
- {
- case BonusValueType::PERCENT_TO_SOURCE:
- percentToSource[vstd::to_underlying(b->source)] += b->val;
- break;
- case BonusValueType::PERCENT_TO_TARGET_TYPE:
- percentToSource[vstd::to_underlying(b->targetSourceType)] += b->val;
- break;
- }
- }
- for(const auto & b : bonuses)
- {
- int sourceIndex = vstd::to_underlying(b->source);
- int valModified = applyPercentage(b->val, percentToSource[sourceIndex]);
- switch(b->valType)
- {
- case BonusValueType::BASE_NUMBER:
- accumulated.base += valModified;
- break;
- case BonusValueType::PERCENT_TO_ALL:
- accumulated.percentToAll += valModified;
- break;
- case BonusValueType::PERCENT_TO_BASE:
- accumulated.percentToBase += valModified;
- break;
- case BonusValueType::ADDITIVE_VALUE:
- accumulated.additive += valModified;
- break;
- case BonusValueType::INDEPENDENT_MAX: // actual meaning: at least this value
- indexMaxCount++;
- vstd::amax(accumulated.indepMax, valModified);
- break;
- case BonusValueType::INDEPENDENT_MIN: // actual meaning: at most this value
- indexMinCount++;
- vstd::amin(accumulated.indepMin, valModified);
- break;
- }
- }
- accumulated.base = applyPercentage(accumulated.base, accumulated.percentToBase);
- accumulated.base += accumulated.additive;
- auto valFirst = applyPercentage(accumulated.base ,accumulated.percentToAll);
- if(indexMinCount && indexMaxCount && accumulated.indepMin < accumulated.indepMax)
- accumulated.indepMax = accumulated.indepMin;
- const int notIndepBonuses = bonuses.size() - indexMaxCount - indexMinCount;
- if(notIndepBonuses)
- return std::clamp(valFirst, accumulated.indepMax, accumulated.indepMin);
- if (indexMinCount)
- return accumulated.indepMin;
- if (indexMaxCount)
- return accumulated.indepMax;
- return 0;
- }
- std::shared_ptr<Bonus> BonusList::getFirst(const CSelector &select)
- {
- for (auto & b : bonuses)
- {
- if(select(b.get()))
- return b;
- }
- return nullptr;
- }
- std::shared_ptr<const Bonus> BonusList::getFirst(const CSelector &selector) const
- {
- for(const auto & b : bonuses)
- {
- if(selector(b.get()))
- return b;
- }
- return nullptr;
- }
- void BonusList::getBonuses(BonusList & out, const CSelector &selector, const CSelector &limit) const
- {
- for(const auto & b : bonuses)
- {
- if(selector(b.get()) && (!limit || ((bool)limit && limit(b.get()))))
- out.push_back(b);
- }
- }
- void BonusList::getAllBonuses(BonusList &out) const
- {
- for(const auto & b : bonuses)
- out.push_back(b);
- }
- int BonusList::valOfBonuses(const CSelector &select) const
- {
- BonusList ret;
- CSelector limit = nullptr;
- getBonuses(ret, select, limit);
- return ret.totalValue();
- }
- JsonNode BonusList::toJsonNode() const
- {
- JsonNode node;
- for(const std::shared_ptr<Bonus> & b : bonuses)
- node.Vector().push_back(b->toJsonNode());
- return node;
- }
- void BonusList::push_back(const std::shared_ptr<Bonus> & x)
- {
- bonuses.push_back(x);
- changed();
- }
- BonusList::TInternalContainer::iterator BonusList::erase(const int position)
- {
- changed();
- return bonuses.erase(bonuses.begin() + position);
- }
- void BonusList::clear()
- {
- bonuses.clear();
- changed();
- }
- std::vector<BonusList *>::size_type BonusList::operator-=(const std::shared_ptr<Bonus> & i)
- {
- auto itr = std::find(bonuses.begin(), bonuses.end(), i);
- if(itr == bonuses.end())
- return false;
- bonuses.erase(itr);
- changed();
- return true;
- }
- void BonusList::resize(BonusList::TInternalContainer::size_type sz, const std::shared_ptr<Bonus> & c)
- {
- bonuses.resize(sz, c);
- changed();
- }
- void BonusList::insert(BonusList::TInternalContainer::iterator position, BonusList::TInternalContainer::size_type n, const std::shared_ptr<Bonus> & x)
- {
- bonuses.insert(position, n, x);
- changed();
- }
- DLL_LINKAGE std::ostream & operator<<(std::ostream &out, const BonusList &bonusList)
- {
- for (ui32 i = 0; i < bonusList.size(); i++)
- {
- const auto & b = bonusList[i];
- out << "Bonus " << i << "\n" << *b << std::endl;
- }
- return out;
- }
- VCMI_LIB_NAMESPACE_END
|