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/potion.cpp

198 lines
6 KiB
C++
Raw Normal View History

2010-08-03 13:24:44 +00:00
#include "potion.hpp"
/*
Start of tes3mp addition
Include additional headers for multiplayer purposes
*/
#include <components/openmw-mp/Utils.hpp>
#include "../mwmp/Main.hpp"
#include "../mwmp/Networking.hpp"
/*
End of tes3mp addition
*/
2010-08-03 13:24:44 +00:00
#include <components/esm/loadalch.hpp>
#include "../mwbase/environment.hpp"
#include "../mwbase/world.hpp"
#include "../mwbase/windowmanager.hpp"
2010-08-03 15:11:41 +00:00
#include "../mwworld/ptr.hpp"
2012-07-13 11:09:22 +00:00
#include "../mwworld/actionapply.hpp"
#include "../mwworld/cellstore.hpp"
#include "../mwworld/esmstore.hpp"
#include "../mwphysics/physicssystem.hpp"
#include "../mwworld/nullaction.hpp"
#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"
#include "../mwmechanics/alchemy.hpp"
2010-08-03 13:24:44 +00:00
namespace MWClass
{
void Potion::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);
}
}
void Potion::insertObject(const MWWorld::Ptr& ptr, const std::string& model, MWPhysics::PhysicsSystem& physics) const
2012-07-24 16:22:11 +00:00
{
// TODO: add option somewhere to enable collision for placeable objects
/*
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()))
{
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-07-27 10:00:10 +00:00
2015-12-18 14:51:05 +00:00
std::string Potion::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::Potion> *ref = ptr.get<ESM::Potion>();
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 Potion::getName (const MWWorld::ConstPtr& ptr) const
2010-08-03 15:11:41 +00:00
{
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
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> Potion::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 Potion::getScript (const MWWorld::ConstPtr& ptr) const
{
2015-12-17 23:12:03 +00:00
const MWWorld::LiveCellRef<ESM::Potion> *ref =
ptr.get<ESM::Potion>();
2012-11-05 12:07:59 +00:00
return ref->mBase->mScript;
}
int Potion::getValue (const MWWorld::ConstPtr& ptr) const
{
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
2012-11-05 12:07:59 +00:00
return ref->mBase->mData.mValue;
}
2010-08-03 13:24:44 +00:00
void Potion::registerSelf()
{
std::shared_ptr<Class> instance (new Potion);
2010-08-03 13:24:44 +00:00
registerClass (typeid (ESM::Potion).name(), instance);
}
2015-12-18 15:09:08 +00:00
std::string Potion::getUpSoundId (const MWWorld::ConstPtr& ptr) const
{
return std::string("Item Potion Up");
}
2015-12-18 15:09:08 +00:00
std::string Potion::getDownSoundId (const MWWorld::ConstPtr& ptr) const
{
return std::string("Item Potion Down");
}
2012-04-15 15:52:39 +00:00
2015-12-18 14:53:47 +00:00
std::string Potion::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::Potion> *ref = ptr.get<ESM::Potion>();
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 Potion::getToolTipInfo (const MWWorld::ConstPtr& ptr, int count) const
{
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
MWGui::ToolTipInfo info;
info.caption = MyGUI::TextIterator::toTagsString(getName(ptr)) + MWGui::ToolTips::getCountString(count);
2012-11-05 12:07:59 +00:00
info.icon = ref->mBase->mIcon;
std::string text;
2012-11-05 12:07:59 +00:00
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->mBase->mData.mWeight);
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
2012-11-05 12:07:59 +00:00
info.effects = MWGui::Widgets::MWEffectList::effectListFromESM(&ref->mBase->mEffects);
2016-12-14 21:11:22 +00:00
// hide effects the player doesn't know about
MWWorld::Ptr player = MWBase::Environment::get().getWorld ()->getPlayerPtr();
for (unsigned int i=0; i<info.effects.size(); ++i)
info.effects[i].mKnown = MWMechanics::Alchemy::knownEffect(i, player);
info.isPotion = true;
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;
}
2012-07-13 11:09:22 +00:00
std::shared_ptr<MWWorld::Action> Potion::use (const MWWorld::Ptr& ptr, bool force) const
2012-07-13 11:09:22 +00:00
{
MWWorld::LiveCellRef<ESM::Potion> *ref =
ptr.get<ESM::Potion>();
std::shared_ptr<MWWorld::Action> action (
new MWWorld::ActionApply (ptr, ref->mBase->mId));
action->setSound ("Drink");
return action;
2012-07-13 11:09:22 +00:00
}
2015-12-18 15:24:24 +00:00
MWWorld::Ptr Potion::copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
{
2015-12-18 15:24:24 +00:00
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
return MWWorld::Ptr(cell.insert(ref), &cell);
}
2015-12-18 14:58:23 +00:00
bool Potion::canSell (const MWWorld::ConstPtr& item, int npcServices) const
{
return (npcServices & ESM::NPC::Potions) != 0;
}
2013-05-11 16:38:27 +00:00
2015-12-18 15:00:50 +00:00
float Potion::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::Potion> *ref = ptr.get<ESM::Potion>();
2013-05-11 16:38:27 +00:00
return ref->mBase->mData.mWeight;
}
2010-08-03 13:24:44 +00:00
}