1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 20:49:56 +00:00
openmw-tes3mp/apps/openmw/mwclass/misc.cpp

236 lines
8.4 KiB
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "misc.hpp"
#include <components/esm/loadmisc.hpp>
#include <components/settings/settings.hpp>
2010-08-03 13:24:44 +00:00
#include "../mwbase/environment.hpp"
#include "../mwbase/world.hpp"
#include "../mwbase/windowmanager.hpp"
#include "../mwworld/cellstore.hpp"
2015-02-09 14:01:49 +00:00
#include "../mwworld/esmstore.hpp"
#include "../mwphysics/physicssystem.hpp"
#include "../mwworld/manualref.hpp"
#include "../mwworld/nullaction.hpp"
#include "../mwworld/actionsoulgem.hpp"
2010-08-03 15:11:41 +00:00
#include "../mwgui/tooltips.hpp"
2010-08-03 15:11:41 +00:00
2012-01-27 14:11:02 +00:00
#include "../mwrender/objects.hpp"
#include "../mwrender/renderinginterface.hpp"
2012-01-27 14:11:02 +00:00
2010-08-03 13:24:44 +00:00
namespace MWClass
{
bool Miscellaneous::isGold (const MWWorld::ConstPtr& ptr) const
2015-07-19 23:05:52 +00:00
{
return Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "gold_001")
|| Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "gold_005")
|| Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "gold_010")
|| Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "gold_025")
|| Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "gold_100");
}
void Miscellaneous::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
{
2012-07-24 16:22:11 +00:00
if (!model.empty()) {
2013-08-07 10:51:57 +00:00
renderingInterface.getObjects().insertModel(ptr, model);
}
}
2015-12-18 14:51:05 +00:00
std::string Miscellaneous::getModel(const MWWorld::ConstPtr &ptr) const
2011-11-12 04:01:12 +00:00
{
2015-12-18 14:51:05 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
2011-11-12 04:01:12 +00:00
2012-11-05 12:07:59 +00:00
const std::string &model = ref->mBase->mModel;
2012-07-24 16:22:11 +00:00
if (!model.empty()) {
return "meshes\\" + model;
2011-11-12 04:01:12 +00:00
}
2012-07-24 16:22:11 +00:00
return "";
2011-11-12 04:01:12 +00:00
}
std::string Miscellaneous::getName (const MWWorld::ConstPtr& ptr) const
2010-08-03 15:11:41 +00:00
{
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
const std::string& name = ref->mBase->mName;
2010-08-03 15:11:41 +00:00
return !name.empty() ? name : ref->mBase->mId;
2010-08-03 15:11:41 +00:00
}
std::shared_ptr<MWWorld::Action> Miscellaneous::activate (const MWWorld::Ptr& ptr,
const MWWorld::Ptr& actor) const
2010-08-07 18:25:17 +00:00
{
2013-08-09 05:34:53 +00:00
return defaultItemActivate(ptr, actor);
2010-08-07 18:25:17 +00:00
}
2015-12-17 23:12:03 +00:00
std::string Miscellaneous::getScript (const MWWorld::ConstPtr& ptr) const
{
2015-12-17 23:12:03 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
2012-11-05 12:07:59 +00:00
return ref->mBase->mScript;
}
int Miscellaneous::getValue (const MWWorld::ConstPtr& ptr) const
{
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
2014-01-09 00:34:10 +00:00
int value = ref->mBase->mData.mValue;
if (ptr.getCellRef().getGoldValue() > 1 && ptr.getRefData().getCount() == 1)
value = ptr.getCellRef().getGoldValue();
2013-03-27 16:27:43 +00:00
if (ptr.getCellRef().getSoul() != "")
{
const ESM::Creature *creature = MWBase::Environment::get().getWorld()->getStore().get<ESM::Creature>().search(ref->mRef.getSoul());
if (creature)
{
int soul = creature->mData.mSoul;
2018-05-21 18:10:24 +00:00
if (Settings::Manager::getBool("rebalance soul gem values", "Game"))
{
2018-05-21 21:14:23 +00:00
// use the 'soul gem value rebalance' formula from the Morrowind Code Patch
float soulValue = 0.0001 * pow(soul, 3) + 2 * soul;
// for Azura's star add the unfilled value
if (Misc::StringUtils::ciEqual(ptr.getCellRef().getRefId(), "Misc_SoulGem_Azura"))
value += soulValue;
else
value = soulValue;
}
else
value *= soul;
}
}
2013-03-27 16:27:43 +00:00
return value;
}
void Miscellaneous::registerSelf()
2010-08-03 13:24:44 +00:00
{
std::shared_ptr<Class> instance (new Miscellaneous);
2010-08-03 13:24:44 +00:00
registerClass (typeid (ESM::Miscellaneous).name(), instance);
2010-08-03 13:24:44 +00:00
}
2015-12-18 15:09:08 +00:00
std::string Miscellaneous::getUpSoundId (const MWWorld::ConstPtr& ptr) const
{
if (isGold(ptr))
return std::string("Item Gold Up");
return std::string("Item Misc Up");
}
2015-12-18 15:09:08 +00:00
std::string Miscellaneous::getDownSoundId (const MWWorld::ConstPtr& ptr) const
{
if (isGold(ptr))
return std::string("Item Gold Down");
return std::string("Item Misc Down");
}
2012-04-15 15:52:39 +00:00
2015-12-18 14:53:47 +00:00
std::string Miscellaneous::getInventoryIcon (const MWWorld::ConstPtr& ptr) const
2012-04-15 15:52:39 +00:00
{
2015-12-18 14:53:47 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
2012-04-15 15:52:39 +00:00
2012-11-05 12:07:59 +00:00
return ref->mBase->mIcon;
2012-04-15 15:52:39 +00:00
}
2015-12-19 15:29:07 +00:00
MWGui::ToolTipInfo Miscellaneous::getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const
{
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
MWGui::ToolTipInfo info;
bool gold = isGold(ptr);
if (gold)
count *= getValue(ptr);
2012-05-16 15:22:25 +00:00
std::string countString;
if (!gold)
2012-05-16 15:22:25 +00:00
countString = MWGui::ToolTips::getCountString(count);
else // gold displays its count also if it's 1.
2017-05-06 21:05:13 +00:00
countString = " (" + std::to_string(count) + ")";
2012-05-12 12:29:49 +00:00
info.caption = MyGUI::TextIterator::toTagsString(getName(ptr)) + countString + MWGui::ToolTips::getSoulString(ptr.getCellRef());
2012-11-05 12:07:59 +00:00
info.icon = ref->mBase->mIcon;
2012-05-12 12:29:49 +00:00
std::string text;
text += MWGui::ToolTips::getWeightString(ref->mBase->mData.mWeight, "#{sWeight}");
if (!gold && !ref->mBase->mData.mIsKey)
text += MWGui::ToolTips::getValueString(getValue(ptr), "#{sValue}");
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
2012-11-05 12:07:59 +00:00
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
}
info.text = text;
return info;
}
MWWorld::Ptr Miscellaneous::copyToCell(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell, int count) const
{
MWWorld::Ptr newPtr;
2012-10-01 15:17:04 +00:00
const MWWorld::ESMStore &store =
MWBase::Environment::get().getWorld()->getStore();
if (isGold(ptr)) {
int goldAmount = getValue(ptr) * count;
std::string base = "Gold_001";
if (goldAmount >= 100)
base = "Gold_100";
else if (goldAmount >= 25)
base = "Gold_025";
else if (goldAmount >= 10)
base = "Gold_010";
else if (goldAmount >= 5)
base = "Gold_005";
// Really, I have no idea why moving ref out of conditional
// scope causes list::push_back throwing std::bad_alloc
MWWorld::ManualRef newRef(store, base);
2015-12-18 15:24:24 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref =
newRef.getPtr().get<ESM::Miscellaneous>();
newPtr = MWWorld::Ptr(cell.insert(ref), &cell);
newPtr.getCellRef().setGoldValue(goldAmount);
newPtr.getRefData().setCount(1);
} else {
2015-12-18 15:24:24 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref =
ptr.get<ESM::Miscellaneous>();
newPtr = MWWorld::Ptr(cell.insert(ref), &cell);
newPtr.getRefData().setCount(count);
}
newPtr.getCellRef().unsetRefNum();
return newPtr;
}
std::shared_ptr<MWWorld::Action> Miscellaneous::use (const MWWorld::Ptr& ptr, bool force) const
{
if (ptr.getCellRef().getSoul().empty() || !MWBase::Environment::get().getWorld()->getStore().get<ESM::Creature>().search(ptr.getCellRef().getSoul()))
return std::shared_ptr<MWWorld::Action>(new MWWorld::NullAction());
else
return std::shared_ptr<MWWorld::Action>(new MWWorld::ActionSoulgem(ptr));
}
2015-12-18 14:58:23 +00:00
bool Miscellaneous::canSell (const MWWorld::ConstPtr& item, int npcServices) const
{
2015-12-18 14:58:23 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = item.get<ESM::Miscellaneous>();
return !ref->mBase->mData.mIsKey && (npcServices & ESM::NPC::Misc) && !isGold(item);
}
2015-12-18 15:00:50 +00:00
float Miscellaneous::getWeight(const MWWorld::ConstPtr &ptr) const
2013-05-11 16:38:27 +00:00
{
2015-12-18 15:00:50 +00:00
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
2013-05-11 16:38:27 +00:00
return ref->mBase->mData.mWeight;
}
bool Miscellaneous::isKey(const MWWorld::ConstPtr &ptr) const
{
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
return ref->mBase->mData.mIsKey != 0;
}
2010-08-03 13:24:44 +00:00
}