2010-08-03 13:24:44 +00:00
|
|
|
#include "misc.hpp"
|
|
|
|
|
2018-05-27 13:05:40 +00:00
|
|
|
/*
|
|
|
|
Start of tes3mp addition
|
|
|
|
|
|
|
|
Include additional headers for multiplayer purposes
|
|
|
|
*/
|
2018-06-28 01:53:00 +00:00
|
|
|
#include <components/openmw-mp/Utils.hpp>
|
2018-05-27 13:05:40 +00:00
|
|
|
#include "../mwmp/Main.hpp"
|
|
|
|
#include "../mwmp/Networking.hpp"
|
|
|
|
/*
|
|
|
|
End of tes3mp addition
|
|
|
|
*/
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
#include <components/esm/loadmisc.hpp>
|
2018-05-21 12:59:20 +00:00
|
|
|
#include <components/settings/settings.hpp>
|
2010-08-03 13:24:44 +00:00
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-07-03 10:30:50 +00:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-08-12 16:11:09 +00:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2012-04-23 13:27:03 +00:00
|
|
|
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2015-02-09 14:01:49 +00:00
|
|
|
#include "../mwworld/esmstore.hpp"
|
2015-05-09 23:09:00 +00:00
|
|
|
#include "../mwphysics/physicssystem.hpp"
|
2012-07-25 13:18:17 +00:00
|
|
|
#include "../mwworld/manualref.hpp"
|
2013-02-17 14:56:22 +00:00
|
|
|
#include "../mwworld/nullaction.hpp"
|
2013-03-30 14:51:07 +00:00
|
|
|
#include "../mwworld/actionsoulgem.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2012-04-16 20:58:16 +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"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2012-01-27 14:11:02 +00:00
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2015-12-18 14:27:06 +00:00
|
|
|
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");
|
|
|
|
}
|
2014-07-18 07:56:58 +00:00
|
|
|
|
2015-01-12 10:29:56 +00:00
|
|
|
void Miscellaneous::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 08:02:54 +00:00
|
|
|
{
|
2012-07-24 16:22:11 +00:00
|
|
|
if (!model.empty()) {
|
2013-08-07 10:51:57 +00:00
|
|
|
renderingInterface.getObjects().insertModel(ptr, model);
|
2010-08-14 08:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-09 23:09:00 +00:00
|
|
|
void Miscellaneous::insertObject(const MWWorld::Ptr& ptr, const std::string& model, MWPhysics::PhysicsSystem& physics) const
|
2012-07-24 16:22:11 +00:00
|
|
|
{
|
2015-05-12 01:02:15 +00:00
|
|
|
// TODO: add option somewhere to enable collision for placeable objects
|
2018-05-27 13:05:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Start of tes3mp addition
|
|
|
|
|
|
|
|
Make it possible to enable collision for this object class from a packet
|
|
|
|
*/
|
|
|
|
if (!model.empty())
|
|
|
|
{
|
|
|
|
mwmp::BaseWorldstate *worldstate = mwmp::Main::get().getNetworking()->getWorldstate();
|
|
|
|
|
2018-07-03 10:34:41 +00:00
|
|
|
if (worldstate->hasPlacedObjectCollision || Utils::vectorContains(worldstate->enforcedCollisionRefIds, ptr.getCellRef().getRefId()))
|
2018-05-27 13:05:40 +00:00
|
|
|
{
|
|
|
|
if (worldstate->useActorCollisionForPlacedObjects)
|
|
|
|
physics.addObject(ptr, model, MWPhysics::CollisionType_Actor);
|
|
|
|
else
|
|
|
|
physics.addObject(ptr, model, MWPhysics::CollisionType_World);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
End of tes3mp addition
|
|
|
|
*/
|
2012-07-24 16:22:11 +00:00
|
|
|
}
|
2012-08-09 12:33:21 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-12-18 14:27:06 +00:00
|
|
|
std::string Miscellaneous::getName (const MWWorld::ConstPtr& ptr) const
|
2010-08-03 15:11:41 +00:00
|
|
|
{
|
2015-12-18 14:27:06 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
|
2019-09-10 21:06:50 +00:00
|
|
|
const std::string& name = ref->mBase->mName;
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2019-09-10 21:06:50 +00:00
|
|
|
return !name.empty() ? name : ref->mBase->mId;
|
2010-08-03 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
2017-05-05 19:21:11 +00:00
|
|
|
std::shared_ptr<MWWorld::Action> Miscellaneous::activate (const MWWorld::Ptr& ptr,
|
2012-04-23 13:27:03 +00:00
|
|
|
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
|
2010-08-05 13:40:03 +00:00
|
|
|
{
|
2015-12-17 23:12:03 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
|
2010-08-05 13:40:03 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 13:40:03 +00:00
|
|
|
}
|
|
|
|
|
2015-12-18 14:27:06 +00:00
|
|
|
int Miscellaneous::getValue (const MWWorld::ConstPtr& ptr) const
|
2012-04-07 17:53:49 +00:00
|
|
|
{
|
2015-12-18 14:27:06 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
|
2012-04-07 17:53:49 +00:00
|
|
|
|
2014-01-09 00:34:10 +00:00
|
|
|
int value = ref->mBase->mData.mValue;
|
2014-05-25 12:13:07 +00:00
|
|
|
if (ptr.getCellRef().getGoldValue() > 1 && ptr.getRefData().getCount() == 1)
|
|
|
|
value = ptr.getCellRef().getGoldValue();
|
2013-03-27 16:27:43 +00:00
|
|
|
|
2014-05-25 12:13:07 +00:00
|
|
|
if (ptr.getCellRef().getSoul() != "")
|
2013-03-27 16:39:49 +00:00
|
|
|
{
|
2018-03-08 23:38:04 +00:00
|
|
|
const ESM::Creature *creature = MWBase::Environment::get().getWorld()->getStore().get<ESM::Creature>().search(ref->mRef.getSoul());
|
2018-05-21 12:59:20 +00:00
|
|
|
if (creature)
|
|
|
|
{
|
2018-05-21 17:16:04 +00:00
|
|
|
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 12:59:20 +00:00
|
|
|
{
|
2018-05-21 21:14:23 +00:00
|
|
|
// use the 'soul gem value rebalance' formula from the Morrowind Code Patch
|
2018-05-21 12:59:20 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-05-20 16:06:26 +00:00
|
|
|
else
|
2018-05-21 17:16:04 +00:00
|
|
|
value *= soul;
|
2018-05-20 16:06:26 +00:00
|
|
|
}
|
2013-03-27 16:39:49 +00:00
|
|
|
}
|
|
|
|
|
2013-03-27 16:27:43 +00:00
|
|
|
return value;
|
2012-04-07 17:53:49 +00:00
|
|
|
}
|
|
|
|
|
2011-06-19 16:14:03 +00:00
|
|
|
void Miscellaneous::registerSelf()
|
2010-08-03 13:24:44 +00:00
|
|
|
{
|
2017-05-05 19:21:11 +00:00
|
|
|
std::shared_ptr<Class> instance (new Miscellaneous);
|
2010-08-03 13:24:44 +00:00
|
|
|
|
2011-06-19 16:14:03 +00:00
|
|
|
registerClass (typeid (ESM::Miscellaneous).name(), instance);
|
2010-08-03 13:24:44 +00:00
|
|
|
}
|
2012-03-13 16:50:32 +00:00
|
|
|
|
2015-12-18 15:09:08 +00:00
|
|
|
std::string Miscellaneous::getUpSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
2013-03-30 17:29:21 +00:00
|
|
|
if (isGold(ptr))
|
2012-03-13 18:01:55 +00:00
|
|
|
return std::string("Item Gold Up");
|
2012-03-13 16:50:32 +00:00
|
|
|
return std::string("Item Misc Up");
|
|
|
|
}
|
|
|
|
|
2015-12-18 15:09:08 +00:00
|
|
|
std::string Miscellaneous::getDownSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
2013-03-30 17:29:21 +00:00
|
|
|
if (isGold(ptr))
|
2012-03-13 18:01:55 +00:00
|
|
|
return std::string("Item Gold Down");
|
2012-03-13 16:50:32 +00:00
|
|
|
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
|
|
|
}
|
2012-05-11 08:40:40 +00:00
|
|
|
|
2015-12-19 15:29:07 +00:00
|
|
|
MWGui::ToolTipInfo Miscellaneous::getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const
|
2012-04-16 20:58:16 +00:00
|
|
|
{
|
2015-12-18 14:27:06 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
|
|
|
|
2013-03-30 17:29:21 +00:00
|
|
|
bool gold = isGold(ptr);
|
2014-01-29 14:22:07 +00:00
|
|
|
if (gold)
|
|
|
|
count *= getValue(ptr);
|
2012-05-16 15:22:25 +00:00
|
|
|
|
|
|
|
std::string countString;
|
2013-03-30 17:29:21 +00:00
|
|
|
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
|
|
|
|
2020-04-10 20:14:00 +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
|
|
|
|
2012-04-16 20:58:16 +00:00
|
|
|
std::string text;
|
|
|
|
|
2016-08-14 10:37:22 +00:00
|
|
|
text += MWGui::ToolTips::getWeightString(ref->mBase->mData.mWeight, "#{sWeight}");
|
2014-08-16 14:51:56 +00:00
|
|
|
if (!gold && !ref->mBase->mData.mIsKey)
|
2013-03-27 16:39:49 +00:00
|
|
|
text += MWGui::ToolTips::getValueString(getValue(ptr), "#{sValue}");
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2014-07-22 18:03:35 +00:00
|
|
|
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
|
2012-11-05 12:07:59 +00:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 20:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-07-25 13:18:17 +00:00
|
|
|
|
2015-12-19 15:47:55 +00:00
|
|
|
MWWorld::Ptr Miscellaneous::copyToCell(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell, int count) const
|
2012-07-25 13:18:17 +00:00
|
|
|
{
|
|
|
|
MWWorld::Ptr newPtr;
|
2012-08-09 12:33:21 +00:00
|
|
|
|
2012-10-01 15:17:04 +00:00
|
|
|
const MWWorld::ESMStore &store =
|
2012-07-25 13:18:17 +00:00
|
|
|
MWBase::Environment::get().getWorld()->getStore();
|
|
|
|
|
2013-03-30 17:29:21 +00:00
|
|
|
if (isGold(ptr)) {
|
2015-12-19 15:47:55 +00:00
|
|
|
int goldAmount = getValue(ptr) * count;
|
2012-07-25 13:18:17 +00:00
|
|
|
|
|
|
|
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 =
|
2012-07-25 13:18:17 +00:00
|
|
|
newRef.getPtr().get<ESM::Miscellaneous>();
|
2015-11-14 16:12:05 +00:00
|
|
|
|
|
|
|
newPtr = MWWorld::Ptr(cell.insert(ref), &cell);
|
2014-05-25 12:13:07 +00:00
|
|
|
newPtr.getCellRef().setGoldValue(goldAmount);
|
2014-01-29 14:22:07 +00:00
|
|
|
newPtr.getRefData().setCount(1);
|
2012-07-25 13:18:17 +00:00
|
|
|
} else {
|
2015-12-18 15:24:24 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref =
|
2012-07-25 13:18:17 +00:00
|
|
|
ptr.get<ESM::Miscellaneous>();
|
2015-11-14 16:12:05 +00:00
|
|
|
newPtr = MWWorld::Ptr(cell.insert(ref), &cell);
|
2015-12-19 15:47:55 +00:00
|
|
|
newPtr.getRefData().setCount(count);
|
2012-07-25 13:18:17 +00:00
|
|
|
}
|
2015-12-19 15:47:55 +00:00
|
|
|
newPtr.getCellRef().unsetRefNum();
|
|
|
|
|
2012-07-25 13:18:17 +00:00
|
|
|
return newPtr;
|
|
|
|
}
|
2013-03-30 14:51:07 +00:00
|
|
|
|
2018-07-09 15:31:40 +00:00
|
|
|
std::shared_ptr<MWWorld::Action> Miscellaneous::use (const MWWorld::Ptr& ptr, bool force) const
|
2013-03-30 14:51:07 +00:00
|
|
|
{
|
2018-03-08 23:38:04 +00:00
|
|
|
if (ptr.getCellRef().getSoul().empty() || !MWBase::Environment::get().getWorld()->getStore().get<ESM::Creature>().search(ptr.getCellRef().getSoul()))
|
2017-05-05 19:21:11 +00:00
|
|
|
return std::shared_ptr<MWWorld::Action>(new MWWorld::NullAction());
|
2013-03-30 14:51:07 +00:00
|
|
|
else
|
2017-05-05 19:21:11 +00:00
|
|
|
return std::shared_ptr<MWWorld::Action>(new MWWorld::ActionSoulgem(ptr));
|
2013-03-30 14:51:07 +00:00
|
|
|
}
|
|
|
|
|
2015-12-18 14:58:23 +00:00
|
|
|
bool Miscellaneous::canSell (const MWWorld::ConstPtr& item, int npcServices) const
|
2013-04-07 19:38:53 +00:00
|
|
|
{
|
2015-12-18 14:58:23 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = item.get<ESM::Miscellaneous>();
|
2013-04-07 19:38:53 +00:00
|
|
|
|
2014-05-25 12:13:07 +00:00
|
|
|
return !ref->mBase->mData.mIsKey && (npcServices & ESM::NPC::Misc) && !isGold(item);
|
2013-04-07 19:38:53 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-12-18 14:27:06 +00:00
|
|
|
bool Miscellaneous::isKey(const MWWorld::ConstPtr &ptr) const
|
2014-01-01 21:37:52 +00:00
|
|
|
{
|
2015-12-18 14:27:06 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Miscellaneous> *ref = ptr.get<ESM::Miscellaneous>();
|
2015-03-06 10:19:57 +00:00
|
|
|
return ref->mBase->mData.mIsKey != 0;
|
2014-01-01 21:37:52 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
}
|