2010-08-03 14:14:04 +02:00
|
|
|
#include "armor.hpp"
|
|
|
|
|
2022-06-04 15:26:36 +02:00
|
|
|
#include <MyGUI_TextIterator.h>
|
|
|
|
|
2022-01-22 15:58:41 +01:00
|
|
|
#include <components/esm3/loadarmo.hpp>
|
|
|
|
#include <components/esm3/loadgmst.hpp>
|
2022-09-08 21:08:59 +02:00
|
|
|
#include <components/esm3/loadnpc.hpp>
|
2022-09-22 21:26:05 +03:00
|
|
|
#include <components/esm3/loadrace.hpp>
|
|
|
|
#include <components/esm3/loadskil.hpp>
|
2010-08-03 14:14:04 +02:00
|
|
|
|
2012-07-03 12:30:50 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-08-12 18:11:09 +02:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2022-09-22 21:26:05 +03:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-07-03 12:30:50 +02:00
|
|
|
|
2012-05-16 16:08:55 +02:00
|
|
|
#include "../mwworld/actionequip.hpp"
|
2012-06-29 16:48:50 +02:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2013-04-05 15:42:05 +02:00
|
|
|
#include "../mwworld/containerstore.hpp"
|
2022-09-22 21:26:05 +03:00
|
|
|
#include "../mwworld/esmstore.hpp"
|
|
|
|
#include "../mwworld/inventorystore.hpp"
|
|
|
|
#include "../mwworld/ptr.hpp"
|
2010-08-03 14:14:04 +02:00
|
|
|
|
2015-08-21 21:12:39 +12:00
|
|
|
#include "../mwmechanics/actorutil.hpp"
|
2018-12-26 13:45:28 +04:00
|
|
|
#include "../mwmechanics/weapontype.hpp"
|
2022-09-22 21:26:05 +03:00
|
|
|
#include "../mwrender/objects.hpp"
|
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2010-08-14 10:02:54 +02:00
|
|
|
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwgui/tooltips.hpp"
|
2022-08-24 22:16:03 +02:00
|
|
|
#include "../mwgui/ustring.hpp"
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2022-06-29 00:32:11 +02:00
|
|
|
#include "classmodel.hpp"
|
|
|
|
|
2010-08-03 14:14:04 +02:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2022-04-04 02:44:53 +02:00
|
|
|
Armor::Armor()
|
|
|
|
: MWWorld::RegisteredClass<Armor>(ESM::Armor::sRecordId)
|
|
|
|
{
|
|
|
|
}
|
2014-07-18 09:56:58 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
void Armor::insertObjectRendering(
|
|
|
|
const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 10:02:54 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
if (!model.empty())
|
|
|
|
{
|
2013-08-07 03:51:57 -07:00
|
|
|
renderingInterface.getObjects().insertModel(ptr, model);
|
2010-08-14 10:02:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
std::string Armor::getModel(const MWWorld::ConstPtr& ptr) const
|
2011-11-11 23:01:12 -05:00
|
|
|
{
|
2022-06-29 00:32:11 +02:00
|
|
|
return getClassModel<ESM::Armor>(ptr);
|
2011-11-11 23:01:12 -05:00
|
|
|
}
|
|
|
|
|
2022-08-16 21:15:03 +02:00
|
|
|
std::string_view Armor::getName(const MWWorld::ConstPtr& ptr) const
|
2010-08-03 17:11:41 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2019-09-11 00:06:50 +03:00
|
|
|
const std::string& name = ref->mBase->mName;
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2019-09-11 00:06:50 +03:00
|
|
|
return !name.empty() ? name : ref->mBase->mId;
|
2010-08-03 17:11:41 +02:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
std::unique_ptr<MWWorld::Action> Armor::activate(const MWWorld::Ptr& ptr, const MWWorld::Ptr& actor) const
|
2010-08-07 20:25:17 +02:00
|
|
|
{
|
2013-08-08 22:34:53 -07:00
|
|
|
return defaultItemActivate(ptr, actor);
|
2010-08-07 20:25:17 +02:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
bool Armor::hasItemHealth(const MWWorld::ConstPtr& ptr) const
|
2010-08-03 14:14:04 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
int Armor::getItemMaxHealth(const MWWorld::ConstPtr& ptr) const
|
2010-08-03 14:14:04 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2010-08-03 14:14:04 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mData.mHealth;
|
2010-08-03 14:14:04 +02:00
|
|
|
}
|
|
|
|
|
2022-08-11 22:51:55 +02:00
|
|
|
std::string_view Armor::getScript(const MWWorld::ConstPtr& ptr) const
|
2010-08-05 15:40:03 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2010-08-05 15:40:03 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 15:40:03 +02:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
std::pair<std::vector<int>, bool> Armor::getEquipmentSlots(const MWWorld::ConstPtr& ptr) const
|
2012-03-13 15:35:06 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2013-11-12 23:23:19 +01:00
|
|
|
std::vector<int> slots_;
|
2012-03-13 15:35:06 +01:00
|
|
|
|
|
|
|
const int size = 11;
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
static const int sMapping[size][2] = { { ESM::Armor::Helmet, MWWorld::InventoryStore::Slot_Helmet },
|
2012-03-13 15:35:06 +01:00
|
|
|
{ ESM::Armor::Cuirass, MWWorld::InventoryStore::Slot_Cuirass },
|
|
|
|
{ ESM::Armor::LPauldron, MWWorld::InventoryStore::Slot_LeftPauldron },
|
|
|
|
{ ESM::Armor::RPauldron, MWWorld::InventoryStore::Slot_RightPauldron },
|
|
|
|
{ ESM::Armor::Greaves, MWWorld::InventoryStore::Slot_Greaves },
|
|
|
|
{ ESM::Armor::Boots, MWWorld::InventoryStore::Slot_Boots },
|
|
|
|
{ ESM::Armor::LGauntlet, MWWorld::InventoryStore::Slot_LeftGauntlet },
|
|
|
|
{ ESM::Armor::RGauntlet, MWWorld::InventoryStore::Slot_RightGauntlet },
|
|
|
|
{ ESM::Armor::Shield, MWWorld::InventoryStore::Slot_CarriedLeft },
|
|
|
|
{ ESM::Armor::LBracer, MWWorld::InventoryStore::Slot_LeftGauntlet },
|
2022-09-22 21:26:05 +03:00
|
|
|
{ ESM::Armor::RBracer, MWWorld::InventoryStore::Slot_RightGauntlet } };
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
for (int i = 0; i < size; ++i)
|
|
|
|
if (sMapping[i][0] == ref->mBase->mData.mType)
|
2012-03-13 15:35:06 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
slots_.push_back(int(sMapping[i][1]));
|
2012-03-13 15:35:06 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
return std::make_pair(slots_, false);
|
2012-03-13 15:35:06 +01:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
int Armor::getEquipmentSkill(const MWWorld::ConstPtr& ptr) const
|
2012-03-13 15:35:06 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2022-08-24 20:38:52 +02:00
|
|
|
std::string_view typeGmst;
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
switch (ref->mBase->mData.mType)
|
2012-03-13 15:35:06 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
case ESM::Armor::Helmet:
|
|
|
|
typeGmst = "iHelmWeight";
|
|
|
|
break;
|
|
|
|
case ESM::Armor::Cuirass:
|
|
|
|
typeGmst = "iCuirassWeight";
|
|
|
|
break;
|
2012-03-13 15:35:06 +01:00
|
|
|
case ESM::Armor::LPauldron:
|
2022-09-22 21:26:05 +03:00
|
|
|
case ESM::Armor::RPauldron:
|
|
|
|
typeGmst = "iPauldronWeight";
|
|
|
|
break;
|
|
|
|
case ESM::Armor::Greaves:
|
|
|
|
typeGmst = "iGreavesWeight";
|
|
|
|
break;
|
|
|
|
case ESM::Armor::Boots:
|
|
|
|
typeGmst = "iBootsWeight";
|
|
|
|
break;
|
2012-03-13 15:35:06 +01:00
|
|
|
case ESM::Armor::LGauntlet:
|
2022-09-22 21:26:05 +03:00
|
|
|
case ESM::Armor::RGauntlet:
|
|
|
|
typeGmst = "iGauntletWeight";
|
|
|
|
break;
|
|
|
|
case ESM::Armor::Shield:
|
|
|
|
typeGmst = "iShieldWeight";
|
|
|
|
break;
|
2012-03-13 15:35:06 +01:00
|
|
|
case ESM::Armor::LBracer:
|
2022-09-22 21:26:05 +03:00
|
|
|
case ESM::Armor::RBracer:
|
|
|
|
typeGmst = "iGauntletWeight";
|
|
|
|
break;
|
2012-03-13 15:35:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeGmst.empty())
|
|
|
|
return -1;
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::Store<ESM::GameSetting>& gmst
|
|
|
|
= MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>();
|
2012-03-13 15:35:06 +01:00
|
|
|
|
2018-08-29 18:38:12 +03:00
|
|
|
float iWeight = floor(gmst.find(typeGmst)->mValue.getFloat());
|
2012-11-05 18:39:42 +04:00
|
|
|
|
2015-03-08 13:07:29 +13:00
|
|
|
float epsilon = 0.0005f;
|
2014-07-30 20:26:47 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
if (ref->mBase->mData.mWeight <= iWeight * gmst.find("fLightMaxMod")->mValue.getFloat() + epsilon)
|
2012-03-13 15:35:06 +01:00
|
|
|
return ESM::Skill::LightArmor;
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
if (ref->mBase->mData.mWeight <= iWeight * gmst.find("fMedMaxMod")->mValue.getFloat() + epsilon)
|
2012-03-13 15:35:06 +01:00
|
|
|
return ESM::Skill::MediumArmor;
|
|
|
|
|
2014-07-30 20:26:47 +02:00
|
|
|
else
|
|
|
|
return ESM::Skill::HeavyArmor;
|
2012-03-13 15:35:06 +01:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
int Armor::getValue(const MWWorld::ConstPtr& ptr) const
|
2012-04-07 19:53:49 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-04-07 19:53:49 +02:00
|
|
|
|
2014-06-26 14:59:33 +02:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 19:53:49 +02:00
|
|
|
}
|
|
|
|
|
2022-08-14 14:39:58 +02:00
|
|
|
std::string_view Armor::getUpSoundId(const MWWorld::ConstPtr& ptr) const
|
2012-03-13 18:05:38 +02:00
|
|
|
{
|
2012-04-23 15:27:03 +02:00
|
|
|
int es = getEquipmentSkill(ptr);
|
2012-03-14 00:38:44 +02:00
|
|
|
if (es == ESM::Skill::LightArmor)
|
2022-08-14 14:39:58 +02:00
|
|
|
return "Item Armor Light Up";
|
2012-03-14 00:38:44 +02:00
|
|
|
else if (es == ESM::Skill::MediumArmor)
|
2022-08-14 14:39:58 +02:00
|
|
|
return "Item Armor Medium Up";
|
2012-03-13 18:05:38 +02:00
|
|
|
else
|
2022-08-14 14:39:58 +02:00
|
|
|
return "Item Armor Heavy Up";
|
2012-03-13 18:05:38 +02:00
|
|
|
}
|
|
|
|
|
2022-08-14 14:39:58 +02:00
|
|
|
std::string_view Armor::getDownSoundId(const MWWorld::ConstPtr& ptr) const
|
2012-03-13 18:05:38 +02:00
|
|
|
{
|
2012-04-23 15:27:03 +02:00
|
|
|
int es = getEquipmentSkill(ptr);
|
2012-03-14 00:38:44 +02:00
|
|
|
if (es == ESM::Skill::LightArmor)
|
2022-08-14 14:39:58 +02:00
|
|
|
return "Item Armor Light Down";
|
2012-03-14 00:38:44 +02:00
|
|
|
else if (es == ESM::Skill::MediumArmor)
|
2022-08-14 14:39:58 +02:00
|
|
|
return "Item Armor Medium Down";
|
2012-03-13 18:05:38 +02:00
|
|
|
else
|
2022-08-14 14:39:58 +02:00
|
|
|
return "Item Armor Heavy Down";
|
2012-03-13 18:05:38 +02:00
|
|
|
}
|
2012-04-15 17:52:39 +02:00
|
|
|
|
2022-08-22 16:55:53 +02:00
|
|
|
const std::string& Armor::getInventoryIcon(const MWWorld::ConstPtr& ptr) const
|
2012-04-15 17:52:39 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-04-15 17:52:39 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mIcon;
|
2012-04-15 17:52:39 +02:00
|
|
|
}
|
2012-05-11 10:40:40 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
MWGui::ToolTipInfo Armor::getToolTipInfo(const MWWorld::ConstPtr& ptr, int count) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2022-08-16 21:15:03 +02:00
|
|
|
std::string_view name = getName(ptr);
|
2022-09-22 21:26:05 +03:00
|
|
|
info.caption
|
|
|
|
= MyGUI::TextIterator::toTagsString(MWGui::toUString(name)) + MWGui::ToolTips::getCountString(count);
|
2012-11-05 16:07:59 +04:00
|
|
|
info.icon = ref->mBase->mIcon;
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
|
|
|
// get armor type string (light/medium/heavy)
|
2022-08-16 21:15:03 +02:00
|
|
|
std::string_view typeText;
|
2016-10-04 22:56:58 +09:00
|
|
|
if (ref->mBase->mData.mWeight == 0)
|
2022-05-04 22:33:39 +02:00
|
|
|
{
|
|
|
|
// no type
|
|
|
|
}
|
2016-10-04 22:56:58 +09:00
|
|
|
else
|
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
int armorType = getEquipmentSkill(ptr);
|
2016-10-04 22:56:58 +09:00
|
|
|
if (armorType == ESM::Skill::LightArmor)
|
|
|
|
typeText = "#{sLight}";
|
|
|
|
else if (armorType == ESM::Skill::MediumArmor)
|
|
|
|
typeText = "#{sMedium}";
|
|
|
|
else
|
|
|
|
typeText = "#{sHeavy}";
|
|
|
|
}
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
text += "\n#{sArmorRating}: "
|
|
|
|
+ MWGui::ToolTips::toString(static_cast<int>(getEffectiveArmorRating(ptr, MWMechanics::getPlayer())));
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2014-05-25 14:13:07 +02:00
|
|
|
int remainingHealth = getItemHealth(ptr);
|
2013-03-22 12:24:09 +01:00
|
|
|
text += "\n#{sCondition}: " + MWGui::ToolTips::toString(remainingHealth) + "/"
|
2022-09-22 21:26:05 +03:00
|
|
|
+ MWGui::ToolTips::toString(ref->mBase->mData.mHealth);
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2022-08-16 21:15:03 +02:00
|
|
|
if (!typeText.empty())
|
|
|
|
{
|
|
|
|
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->mBase->mData.mWeight) + " (";
|
|
|
|
text += typeText;
|
|
|
|
text += ')';
|
|
|
|
}
|
2016-08-14 18:36:46 +09:00
|
|
|
|
2014-06-12 21:49:18 +02:00
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2022-08-16 21:15:03 +02:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp())
|
|
|
|
{
|
2014-07-22 20:03:35 +02:00
|
|
|
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
|
2012-11-05 16:07:59 +04:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
info.enchant = ref->mBase->mEnchant;
|
2013-04-03 21:14:49 +02:00
|
|
|
if (!info.enchant.empty())
|
2015-03-08 13:07:29 +13:00
|
|
|
info.remainingEnchantCharge = static_cast<int>(ptr.getCellRef().getEnchantmentCharge());
|
2012-04-30 00:57:41 +02:00
|
|
|
|
2012-04-16 22:58:16 +02:00
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-05-12 16:17:03 +02:00
|
|
|
|
2022-08-22 16:55:53 +02:00
|
|
|
std::string_view Armor::getEnchantment(const MWWorld::ConstPtr& ptr) const
|
2012-05-12 16:17:03 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-05-12 16:17:03 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mEnchant;
|
2012-05-12 16:17:03 +02:00
|
|
|
}
|
2012-05-16 16:08:55 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
const std::string& Armor::applyEnchantment(
|
|
|
|
const MWWorld::ConstPtr& ptr, const std::string& enchId, int enchCharge, const std::string& newName) const
|
2013-03-28 17:41:00 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2013-03-28 23:39:20 +01:00
|
|
|
|
|
|
|
ESM::Armor newItem = *ref->mBase;
|
2022-05-04 22:33:39 +02:00
|
|
|
newItem.mId.clear();
|
2022-09-22 21:26:05 +03:00
|
|
|
newItem.mName = newName;
|
|
|
|
newItem.mData.mEnchant = enchCharge;
|
|
|
|
newItem.mEnchant = enchId;
|
|
|
|
const ESM::Armor* record = MWBase::Environment::get().getWorld()->createRecord(newItem);
|
2014-05-24 14:48:37 +02:00
|
|
|
return record->mId;
|
2013-03-28 17:41:00 +01:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
float Armor::getEffectiveArmorRating(const MWWorld::ConstPtr& ptr, const MWWorld::Ptr& actor) const
|
2015-03-01 19:28:20 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2015-03-01 19:28:20 +01:00
|
|
|
|
|
|
|
int armorSkillType = getEquipmentSkill(ptr);
|
2018-12-23 15:18:33 +04:00
|
|
|
float armorSkill = actor.getClass().getSkill(actor, armorSkillType);
|
2015-03-01 19:28:20 +01:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWBase::World* world = MWBase::Environment::get().getWorld();
|
2018-08-29 18:38:12 +03:00
|
|
|
int iBaseArmorSkill = world->getStore().get<ESM::GameSetting>().find("iBaseArmorSkill")->mValue.getInteger();
|
2015-03-01 19:28:20 +01:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
if (ref->mBase->mData.mWeight == 0)
|
2015-03-01 19:28:20 +01:00
|
|
|
return ref->mBase->mData.mArmor;
|
|
|
|
else
|
2017-02-17 03:11:37 +01:00
|
|
|
return ref->mBase->mData.mArmor * armorSkill / static_cast<float>(iBaseArmorSkill);
|
2015-03-01 19:28:20 +01:00
|
|
|
}
|
|
|
|
|
2022-08-23 22:14:27 +02:00
|
|
|
std::pair<int, std::string_view> Armor::canBeEquipped(const MWWorld::ConstPtr& ptr, const MWWorld::Ptr& npc) const
|
2013-04-05 15:42:05 +02:00
|
|
|
{
|
2017-02-26 21:24:51 +00:00
|
|
|
const MWWorld::InventoryStore& invStore = npc.getClass().getInventoryStore(npc);
|
2013-04-05 15:42:05 +02:00
|
|
|
|
2018-10-24 18:51:34 +03:00
|
|
|
if (getItemHealth(ptr) == 0)
|
2022-09-22 21:26:05 +03:00
|
|
|
return { 0, "#{sInventoryMessage1}" };
|
2014-01-02 01:03:44 +01:00
|
|
|
|
2013-04-05 15:42:05 +02:00
|
|
|
// slots that this item can be equipped in
|
2018-10-28 17:03:38 +03:00
|
|
|
std::pair<std::vector<int>, bool> slots_ = getEquipmentSlots(ptr);
|
2013-04-05 15:42:05 +02:00
|
|
|
|
2013-12-30 19:04:35 +01:00
|
|
|
if (slots_.first.empty())
|
2022-09-22 21:26:05 +03:00
|
|
|
return { 0, {} };
|
2013-12-30 19:04:35 +01:00
|
|
|
|
2014-01-19 11:42:58 +01:00
|
|
|
if (npc.getClass().isNpc())
|
2013-04-05 15:42:05 +02:00
|
|
|
{
|
2022-08-24 20:38:52 +02:00
|
|
|
const std::string& npcRace = npc.get<ESM::NPC>()->mBase->mRace;
|
2013-04-05 15:42:05 +02:00
|
|
|
|
2014-01-19 11:42:58 +01:00
|
|
|
// Beast races cannot equip shoes / boots, or full helms (head part vs hair part)
|
|
|
|
const ESM::Race* race = MWBase::Environment::get().getWorld()->getStore().get<ESM::Race>().find(npcRace);
|
2022-09-22 21:26:05 +03:00
|
|
|
if (race->mData.mFlags & ESM::Race::Beast)
|
2013-04-05 15:42:05 +02:00
|
|
|
{
|
2014-01-19 11:42:58 +01:00
|
|
|
std::vector<ESM::PartReference> parts = ptr.get<ESM::Armor>()->mBase->mParts.mParts;
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
for (std::vector<ESM::PartReference>::iterator itr = parts.begin(); itr != parts.end(); ++itr)
|
2014-01-19 11:42:58 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
if ((*itr).mPart == ESM::PRT_Head)
|
|
|
|
return { 0, "#{sNotifyMessage13}" };
|
|
|
|
if ((*itr).mPart == ESM::PRT_LFoot || (*itr).mPart == ESM::PRT_RFoot)
|
|
|
|
return { 0, "#{sNotifyMessage14}" };
|
2014-01-19 11:42:58 +01:00
|
|
|
}
|
2013-04-08 17:50:03 +02:00
|
|
|
}
|
2013-12-30 19:04:35 +01:00
|
|
|
}
|
2013-04-05 15:42:05 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
for (std::vector<int>::const_iterator slot = slots_.first.begin(); slot != slots_.first.end(); ++slot)
|
2013-12-30 19:04:35 +01:00
|
|
|
{
|
|
|
|
// If equipping a shield, check if there's a twohanded weapon conflicting with it
|
2022-09-22 21:26:05 +03:00
|
|
|
if (*slot == MWWorld::InventoryStore::Slot_CarriedLeft)
|
2013-04-08 17:50:03 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
MWWorld::ConstContainerStoreIterator weapon
|
|
|
|
= invStore.getSlot(MWWorld::InventoryStore::Slot_CarriedRight);
|
|
|
|
if (weapon != invStore.end() && weapon->getType() == ESM::Weapon::sRecordId)
|
2013-04-08 17:50:03 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Weapon>* ref = weapon->get<ESM::Weapon>();
|
2018-12-26 13:45:28 +04:00
|
|
|
if (MWMechanics::getWeaponType(ref->mBase->mData.mType)->mFlags & ESM::WeaponType::TwoHanded)
|
2022-09-22 21:26:05 +03:00
|
|
|
return { 3, {} };
|
2013-04-08 17:50:03 +02:00
|
|
|
}
|
2018-12-26 13:45:28 +04:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
return { 1, {} };
|
2013-04-05 15:42:05 +02:00
|
|
|
}
|
|
|
|
}
|
2022-09-22 21:26:05 +03:00
|
|
|
return { 1, {} };
|
2013-04-05 15:42:05 +02:00
|
|
|
}
|
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
std::unique_ptr<MWWorld::Action> Armor::use(const MWWorld::Ptr& ptr, bool force) const
|
2012-05-16 16:08:55 +02:00
|
|
|
{
|
2022-05-29 13:24:48 +02:00
|
|
|
std::unique_ptr<MWWorld::Action> action = std::make_unique<MWWorld::ActionEquip>(ptr, force);
|
2012-08-19 20:11:50 -03:00
|
|
|
|
|
|
|
action->setSound(getUpSoundId(ptr));
|
2012-05-16 16:08:55 +02:00
|
|
|
|
2012-08-19 20:11:50 -03:00
|
|
|
return action;
|
2012-05-16 16:08:55 +02:00
|
|
|
}
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
MWWorld::Ptr Armor::copyToCellImpl(const MWWorld::ConstPtr& ptr, MWWorld::CellStore& cell) const
|
2012-07-25 17:18:17 +04:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2015-11-14 17:12:05 +01:00
|
|
|
return MWWorld::Ptr(cell.insert(ref), &cell);
|
2012-07-25 17:18:17 +04:00
|
|
|
}
|
2013-03-16 19:00:14 +01:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
int Armor::getEnchantmentPoints(const MWWorld::ConstPtr& ptr) const
|
2013-03-16 19:00:14 +01:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2013-03-16 19:00:14 +01:00
|
|
|
|
2014-01-27 01:58:04 +01:00
|
|
|
return ref->mBase->mData.mEnchant;
|
2013-03-16 19:00:14 +01:00
|
|
|
}
|
2013-04-07 21:38:53 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
bool Armor::canSell(const MWWorld::ConstPtr& item, int npcServices) const
|
2013-04-07 21:38:53 +02:00
|
|
|
{
|
2014-09-01 02:04:44 +02:00
|
|
|
return (npcServices & ESM::NPC::Armor)
|
2022-09-22 21:26:05 +03:00
|
|
|
|| ((npcServices & ESM::NPC::MagicItems) && !getEnchantment(item).empty());
|
2013-04-07 21:38:53 +02:00
|
|
|
}
|
2013-05-11 18:38:27 +02:00
|
|
|
|
2022-09-22 21:26:05 +03:00
|
|
|
float Armor::getWeight(const MWWorld::ConstPtr& ptr) const
|
2013-05-11 18:38:27 +02:00
|
|
|
{
|
2022-09-22 21:26:05 +03:00
|
|
|
const MWWorld::LiveCellRef<ESM::Armor>* ref = ptr.get<ESM::Armor>();
|
2013-05-11 18:38:27 +02:00
|
|
|
return ref->mBase->mData.mWeight;
|
|
|
|
}
|
2010-08-03 14:14:04 +02:00
|
|
|
}
|