|
|
|
@ -9,6 +9,7 @@
|
|
|
|
|
|
|
|
|
|
#include "../mwbase/world.hpp"
|
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
|
#include "../mwbase/mechanicsmanager.hpp"
|
|
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
|
{
|
|
|
|
@ -23,38 +24,7 @@ namespace MWGui
|
|
|
|
|
if (base.getClass().getEnchantment(base) != "")
|
|
|
|
|
mFlags |= Flag_Enchanted;
|
|
|
|
|
|
|
|
|
|
static std::set<std::string> boundItemIDCache;
|
|
|
|
|
|
|
|
|
|
// If this is empty then we haven't executed the GMST cache logic yet; or there isn't any sMagicBound* GMST's for some reason
|
|
|
|
|
if (boundItemIDCache.empty())
|
|
|
|
|
{
|
|
|
|
|
// Build a list of known bound item ID's
|
|
|
|
|
const MWWorld::Store<ESM::GameSetting> &gameSettings = MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>();
|
|
|
|
|
|
|
|
|
|
for (MWWorld::Store<ESM::GameSetting>::iterator currentIteration = gameSettings.begin(); currentIteration != gameSettings.end(); ++currentIteration)
|
|
|
|
|
{
|
|
|
|
|
const ESM::GameSetting ¤tSetting = *currentIteration;
|
|
|
|
|
std::string currentGMSTID = currentSetting.mId;
|
|
|
|
|
Misc::StringUtils::lowerCaseInPlace(currentGMSTID);
|
|
|
|
|
|
|
|
|
|
// Don't bother checking this GMST if it's not a sMagicBound* one.
|
|
|
|
|
const std::string& toFind = "smagicbound";
|
|
|
|
|
if (currentGMSTID.compare(0, toFind.length(), toFind) != 0)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// All sMagicBound* GMST's should be of type string
|
|
|
|
|
std::string currentGMSTValue = currentSetting.getString();
|
|
|
|
|
Misc::StringUtils::lowerCaseInPlace(currentGMSTValue);
|
|
|
|
|
|
|
|
|
|
boundItemIDCache.insert(currentGMSTValue);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Perform bound item check and assign the Flag_Bound bit if it passes
|
|
|
|
|
std::string tempItemID = base.getCellRef().getRefId();
|
|
|
|
|
Misc::StringUtils::lowerCaseInPlace(tempItemID);
|
|
|
|
|
|
|
|
|
|
if (boundItemIDCache.count(tempItemID) != 0)
|
|
|
|
|
if (MWBase::Environment::get().getMechanicsManager()->isBoundItem(base))
|
|
|
|
|
mFlags |= Flag_Bound;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|