mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-20 15:40:32 +00:00
Show attack speed of ranged weapons
This commit is contained in:
parent
989de05f80
commit
62f6f174cf
@ -65,7 +65,7 @@ namespace MWClass
|
||||
{
|
||||
const MWWorld::LiveCellRef<ESM::Weapon> *ref = ptr.get<ESM::Weapon>();
|
||||
|
||||
return (ref->mBase->mData.mType < 11); // thrown weapons and arrows/bolts don't have health, only quantity
|
||||
return (ref->mBase->mData.mType < ESM::Weapon::MarksmanThrown); // thrown weapons and arrows/bolts don't have health, only quantity
|
||||
}
|
||||
|
||||
int Weapon::getItemMaxHealth (const MWWorld::ConstPtr& ptr) const
|
||||
@ -318,21 +318,26 @@ namespace MWClass
|
||||
}
|
||||
}
|
||||
|
||||
if (ref->mBase->mData.mType < 11) // thrown weapons and arrows/bolts don't have health, only quantity
|
||||
if (hasItemHealth(ptr))
|
||||
{
|
||||
int remainingHealth = getItemHealth(ptr);
|
||||
text += "\n#{sCondition}: " + MWGui::ToolTips::toString(remainingHealth) + "/"
|
||||
+ MWGui::ToolTips::toString(ref->mBase->mData.mHealth);
|
||||
}
|
||||
|
||||
// add reach and attack speed for melee weapon
|
||||
if (ref->mBase->mData.mType < 9 && Settings::Manager::getBool("show melee info", "Game"))
|
||||
const bool verbose = Settings::Manager::getBool("show melee info", "Game");
|
||||
// add reach for melee weapon
|
||||
if (ref->mBase->mData.mType < ESM::Weapon::MarksmanBow && verbose)
|
||||
{
|
||||
// 64 game units = 1 yard = 3 ft, display value in feet
|
||||
const float combatDistance = store.get<ESM::GameSetting>().find("fCombatDistance")->mValue.getFloat() * ref->mBase->mData.mReach;
|
||||
text += MWGui::ToolTips::getWeightString(combatDistance*3/64, "#{sRange}");
|
||||
text += " #{sFeet}";
|
||||
}
|
||||
|
||||
// add attack speed for any weapon excepts arrows and bolts
|
||||
if (ref->mBase->mData.mType < ESM::Weapon::Arrow && verbose)
|
||||
{
|
||||
text += MWGui::ToolTips::getPercentString(ref->mBase->mData.mSpeed, "#{sAttributeSpeed}");
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ show melee info
|
||||
:Range: True/False
|
||||
:Default: False
|
||||
|
||||
If this setting is true, the reach and speed of melee weapons will show on their tooltip.
|
||||
If this setting is true, the reach and speed of weapons will show on their tooltip.
|
||||
|
||||
This setting can only be configured by editing the settings configuration file.
|
||||
|
||||
|
@ -188,7 +188,7 @@ show owned = 0
|
||||
# Show damage bonus of arrow and bolts.
|
||||
show projectile damage = false
|
||||
|
||||
# Show additional melee weapon info: reach and attack speed
|
||||
# Show additional weapon info: reach and attack speed
|
||||
show melee info = false
|
||||
|
||||
# Show success probability in self-enchant dialog
|
||||
|
Loading…
x
Reference in New Issue
Block a user