1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00
OpenMW/apps/openmw/mwclass/weapon.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

335 lines
12 KiB
C++
Raw Normal View History

2010-08-03 14:14:04 +02:00
#include "weapon.hpp"
#include <MyGUI_TextIterator.h>
2022-09-08 21:08:59 +02:00
#include <components/esm3/loadnpc.hpp>
#include <components/esm3/loadweap.hpp>
#include <components/misc/constants.hpp>
#include <components/settings/settings.hpp>
2010-08-03 14:14:04 +02:00
#include "../mwbase/environment.hpp"
#include "../mwbase/mechanicsmanager.hpp"
#include "../mwbase/windowmanager.hpp"
#include "../mwbase/world.hpp"
#include "../mwworld/actionequip.hpp"
#include "../mwworld/cellstore.hpp"
#include "../mwworld/esmstore.hpp"
#include "../mwworld/inventorystore.hpp"
2010-08-03 14:14:04 +02:00
#include "../mwworld/ptr.hpp"
#include "../mwmechanics/weapontype.hpp"
#include "../mwgui/tooltips.hpp"
#include "../mwgui/ustring.hpp"
2010-08-03 14:14:04 +02:00
2012-01-27 15:11:02 +01:00
#include "../mwrender/objects.hpp"
#include "../mwrender/renderinginterface.hpp"
#include "classmodel.hpp"
2010-08-03 14:14:04 +02:00
namespace MWClass
{
2022-04-04 02:44:53 +02:00
Weapon::Weapon()
: MWWorld::RegisteredClass<Weapon>(ESM::Weapon::sRecordId)
{
}
2013-07-26 08:08:52 -07:00
void Weapon::insertObjectRendering(
const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
{
2012-07-24 20:22:11 +04:00
if (!model.empty())
{
2013-08-07 03:51:57 -07:00
renderingInterface.getObjects().insertModel(ptr, model);
}
}
2015-12-18 15:51:05 +01:00
std::string Weapon::getModel(const MWWorld::ConstPtr& ptr) const
2011-11-11 23:01:12 -05:00
{
return getClassModel<ESM::Weapon>(ptr);
2011-11-11 23:01:12 -05:00
}
2022-08-16 21:15:03 +02:00
std::string_view Weapon::getName(const MWWorld::ConstPtr& ptr) const
2010-08-03 17:11:41 +02:00
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
const std::string& name = ref->mBase->mName;
2010-08-03 17:11:41 +02:00
return !name.empty() ? name : ref->mBase->mId;
2010-08-03 17:11:41 +02:00
}
std::unique_ptr<MWWorld::Action> Weapon::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
}
bool Weapon::hasItemHealth(const MWWorld::ConstPtr& ptr) const
2010-08-03 14:14:04 +02:00
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
int type = ref->mBase->mData.mType;
return MWMechanics::getWeaponType(type)->mFlags & ESM::WeaponType::HasHealth;
2010-08-03 14:14:04 +02:00
}
int Weapon::getItemMaxHealth(const MWWorld::ConstPtr& ptr) const
2010-08-03 14:14:04 +02:00
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
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 Weapon::getScript(const MWWorld::ConstPtr& ptr) const
{
2015-12-18 00:12:03 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
2012-11-05 16:07:59 +04:00
return ref->mBase->mScript;
}
std::pair<std::vector<int>, bool> Weapon::getEquipmentSlots(const MWWorld::ConstPtr& ptr) const
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
ESM::WeaponType::Class weapClass = MWMechanics::getWeaponType(ref->mBase->mData.mType)->mWeaponClass;
std::vector<int> slots_;
bool stack = false;
if (weapClass == ESM::WeaponType::Ammo)
{
slots_.push_back(int(MWWorld::InventoryStore::Slot_Ammunition));
stack = true;
}
else if (weapClass == ESM::WeaponType::Thrown)
{
slots_.push_back(int(MWWorld::InventoryStore::Slot_CarriedRight));
stack = true;
}
else
slots_.push_back(int(MWWorld::InventoryStore::Slot_CarriedRight));
return std::make_pair(slots_, stack);
}
int Weapon::getEquipmentSkill(const MWWorld::ConstPtr& ptr) const
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
int type = ref->mBase->mData.mType;
return MWMechanics::getWeaponType(type)->mSkill;
}
int Weapon::getValue(const MWWorld::ConstPtr& ptr) const
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
return ref->mBase->mData.mValue;
}
std::string_view Weapon::getUpSoundId(const MWWorld::ConstPtr& ptr) const
2012-03-13 20:31:01 +02:00
{
2015-12-18 16:09:08 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
2012-11-05 16:07:59 +04:00
int type = ref->mBase->mData.mType;
return MWMechanics::getWeaponType(type)->mSoundIdUp;
2012-03-13 20:31:01 +02:00
}
std::string_view Weapon::getDownSoundId(const MWWorld::ConstPtr& ptr) const
2012-03-13 20:31:01 +02:00
{
2015-12-18 16:09:08 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
2012-11-05 16:07:59 +04:00
int type = ref->mBase->mData.mType;
return MWMechanics::getWeaponType(type)->mSoundIdDown;
2012-03-13 20:31:01 +02:00
}
2012-04-15 17:52:39 +02:00
2022-08-22 16:55:53 +02:00
const std::string& Weapon::getInventoryIcon(const MWWorld::ConstPtr& ptr) const
2012-04-15 17:52:39 +02:00
{
2015-12-18 15:53:47 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
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
}
2015-12-19 16:29:07 +01:00
MWGui::ToolTipInfo Weapon::getToolTipInfo(const MWWorld::ConstPtr& ptr, int count) const
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
const ESM::WeaponType* weaponType = MWMechanics::getWeaponType(ref->mBase->mData.mType);
MWGui::ToolTipInfo info;
2022-08-16 21:15:03 +02:00
std::string_view name = getName(ptr);
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-10-01 19:17:04 +04:00
const MWWorld::ESMStore& store = MWBase::Environment::get().getWorld()->getStore();
std::string text;
// weapon type & damage
if (weaponType->mWeaponClass != ESM::WeaponType::Ammo
|| Settings::Manager::getBool("show projectile damage", "Game"))
{
2012-09-22 21:35:57 +02:00
text += "\n#{sType} ";
int skill = MWMechanics::getWeaponType(ref->mBase->mData.mType)->mSkill;
2022-08-28 15:06:31 +02:00
const std::string& type = ESM::Skill::sSkillNameIds[skill];
2022-08-16 21:15:03 +02:00
std::string_view oneOrTwoHanded;
if (weaponType->mWeaponClass == ESM::WeaponType::Melee)
2018-08-31 00:36:30 +03:00
{
if (weaponType->mFlags & ESM::WeaponType::TwoHanded)
oneOrTwoHanded = "sTwoHanded";
else
oneOrTwoHanded = "sOneHanded";
2018-08-31 00:36:30 +03:00
}
2022-08-16 21:15:03 +02:00
text += store.get<ESM::GameSetting>().find(type)->mValue.getString();
if (!oneOrTwoHanded.empty())
text += ", " + store.get<ESM::GameSetting>().find(oneOrTwoHanded)->mValue.getString();
// weapon damage
if (weaponType->mWeaponClass == ESM::WeaponType::Thrown)
{
// Thrown weapons have 2x real damage applied
// as they're both the weapon and the ammo
text += "\n#{sAttack}: " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mChop[0] * 2))
+ " - " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mChop[1] * 2));
}
else if (weaponType->mWeaponClass == ESM::WeaponType::Melee)
{
// Chop
2012-11-05 16:07:59 +04:00
text += "\n#{sChop}: " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mChop[0])) + " - "
+ MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mChop[1]));
// Slash
2012-11-05 16:07:59 +04:00
text += "\n#{sSlash}: " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mSlash[0]))
+ " - " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mSlash[1]));
// Thrust
2012-11-05 16:07:59 +04:00
text += "\n#{sThrust}: " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mThrust[0]))
+ " - " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mThrust[1]));
}
else
{
// marksman
text += "\n#{sAttack}: " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mChop[0]))
+ " - " + MWGui::ToolTips::toString(static_cast<int>(ref->mBase->mData.mChop[1]));
}
}
2018-09-18 15:36:37 +04:00
if (hasItemHealth(ptr))
{
int remainingHealth = getItemHealth(ptr);
text += "\n#{sCondition}: " + MWGui::ToolTips::toString(remainingHealth) + "/"
+ MWGui::ToolTips::toString(ref->mBase->mData.mHealth);
}
2018-09-18 15:36:37 +04:00
const bool verbose = Settings::Manager::getBool("show melee info", "Game");
// add reach for melee weapon
if (weaponType->mWeaponClass == ESM::WeaponType::Melee && verbose)
{
// display value in feet
2018-08-29 18:38:12 +03:00
const float combatDistance
= store.get<ESM::GameSetting>().find("fCombatDistance")->mValue.getFloat() * ref->mBase->mData.mReach;
text += MWGui::ToolTips::getWeightString(combatDistance / Constants::UnitsPerFoot, "#{sRange}");
text += " #{sFeet}";
2018-09-18 15:36:37 +04:00
}
2018-09-18 15:36:37 +04:00
// add attack speed for any weapon excepts arrows and bolts
if (weaponType->mWeaponClass != ESM::WeaponType::Ammo && verbose)
2018-09-18 15:36:37 +04:00
{
text += MWGui::ToolTips::getPercentString(ref->mBase->mData.mSpeed, "#{sAttributeSpeed}");
}
text += MWGui::ToolTips::getWeightString(ref->mBase->mData.mWeight, "#{sWeight}");
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
2012-11-05 16:07:59 +04:00
info.enchant = ref->mBase->mEnchant;
if (!info.enchant.empty())
info.remainingEnchantCharge = static_cast<int>(ptr.getCellRef().getEnchantmentCharge());
if (MWBase::Environment::get().getWindowManager()->getFullHelp())
{
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
2012-11-05 16:07:59 +04:00
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
}
info.text = text;
return info;
}
2012-05-12 16:17:03 +02:00
2022-08-22 16:55:53 +02:00
std::string_view Weapon::getEnchantment(const MWWorld::ConstPtr& ptr) const
2012-05-12 16:17:03 +02:00
{
2015-12-18 15:56:45 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
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
}
2022-08-22 16:55:53 +02:00
const std::string& Weapon::applyEnchantment(
const MWWorld::ConstPtr& ptr, const std::string& enchId, int enchCharge, const std::string& newName) const
2013-03-28 17:41:00 +01:00
{
2015-12-18 16:43:11 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
ESM::Weapon newItem = *ref->mBase;
2022-05-04 22:33:39 +02:00
newItem.mId.clear();
newItem.mName = newName;
newItem.mData.mEnchant = enchCharge;
newItem.mEnchant = enchId;
newItem.mData.mFlags |= ESM::Weapon::Magical;
const ESM::Weapon* record = MWBase::Environment::get().getWorld()->createRecord(newItem);
return record->mId;
2013-03-28 17:41:00 +01:00
}
std::pair<int, std::string_view> Weapon::canBeEquipped(const MWWorld::ConstPtr& ptr, const MWWorld::Ptr& npc) const
2013-04-05 15:42:05 +02:00
{
if (hasItemHealth(ptr) && getItemHealth(ptr) == 0)
return { 0, "#{sInventoryMessage1}" };
// Do not allow equip weapons from inventory during attack
if (MWBase::Environment::get().getMechanicsManager()->isAttackingOrSpell(npc)
&& MWBase::Environment::get().getWindowManager()->isGuiMode())
return { 0, "#{sCantEquipWeapWarning}" };
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())
return { 0, {} };
2013-12-30 19:04:35 +01:00
int type = ptr.get<ESM::Weapon>()->mBase->mData.mType;
if (MWMechanics::getWeaponType(type)->mFlags & ESM::WeaponType::TwoHanded)
2013-04-05 15:42:05 +02:00
{
return { 2, {} };
2013-04-05 15:42:05 +02:00
}
2013-12-30 19:04:35 +01:00
return { 1, {} };
2013-04-05 15:42:05 +02:00
}
std::unique_ptr<MWWorld::Action> Weapon::use(const MWWorld::Ptr& ptr, bool force) const
{
2022-05-29 13:24:48 +02:00
std::unique_ptr<MWWorld::Action> action = std::make_unique<MWWorld::ActionEquip>(ptr, force);
action->setSound(getUpSoundId(ptr));
return action;
}
2015-12-19 16:13:00 +01:00
MWWorld::Ptr Weapon::copyToCellImpl(const MWWorld::ConstPtr& ptr, MWWorld::CellStore& cell) const
{
2015-12-18 16:24:24 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
return MWWorld::Ptr(cell.insert(ref), &cell);
}
2013-03-16 19:00:14 +01:00
int Weapon::getEnchantmentPoints(const MWWorld::ConstPtr& ptr) const
2013-03-16 19:00:14 +01:00
{
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
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
}
2015-12-18 15:58:23 +01:00
bool Weapon::canSell(const MWWorld::ConstPtr& item, int npcServices) const
{
return (npcServices & ESM::NPC::Weapon)
|| ((npcServices & ESM::NPC::MagicItems) && !getEnchantment(item).empty());
}
2013-05-11 18:38:27 +02:00
2015-12-18 16:00:50 +01:00
float Weapon::getWeight(const MWWorld::ConstPtr& ptr) const
2013-05-11 18:38:27 +02:00
{
2015-12-18 16:00:50 +01:00
const MWWorld::LiveCellRef<ESM::Weapon>* ref = ptr.get<ESM::Weapon>();
2013-05-11 18:38:27 +02:00
return ref->mBase->mData.mWeight;
}
2010-08-03 14:14:04 +02:00
}