2010-08-03 15:24:44 +02:00
|
|
|
#include "potion.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadalch.hpp>
|
|
|
|
|
2012-04-23 15:27:03 +02:00
|
|
|
#include "../mwbase/environment.hpp"
|
2012-07-03 12:30:50 +02:00
|
|
|
#include "../mwbase/world.hpp"
|
2012-08-12 18:11:09 +02:00
|
|
|
#include "../mwbase/windowmanager.hpp"
|
2012-04-23 15:27:03 +02:00
|
|
|
|
2010-08-03 17:11:41 +02:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2010-08-07 20:25:17 +02:00
|
|
|
#include "../mwworld/actiontake.hpp"
|
2012-07-13 13:09:22 +02:00
|
|
|
#include "../mwworld/actionapply.hpp"
|
2012-06-29 16:48:50 +02:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2014-12-19 11:26:54 +01:00
|
|
|
#include "../mwworld/esmstore.hpp"
|
2013-08-13 01:19:33 +02:00
|
|
|
#include "../mwworld/containerstore.hpp"
|
2015-05-10 01:09:00 +02:00
|
|
|
#include "../mwphysics/physicssystem.hpp"
|
2013-02-17 15:56:22 +01:00
|
|
|
#include "../mwworld/nullaction.hpp"
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
#include "../mwgui/tooltips.hpp"
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2012-01-27 15:11:02 +01:00
|
|
|
#include "../mwrender/objects.hpp"
|
2012-07-03 13:15:20 +02:00
|
|
|
#include "../mwrender/renderinginterface.hpp"
|
2010-08-14 10:02:54 +02:00
|
|
|
|
2013-03-02 13:34:26 +01:00
|
|
|
#include "../mwmechanics/npcstats.hpp"
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2014-07-18 09:56:58 +02:00
|
|
|
|
2015-01-12 11:29:56 +01:00
|
|
|
void Potion::insertObjectRendering (const MWWorld::Ptr& ptr, const std::string& model, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 10:02:54 +02:00
|
|
|
{
|
2012-07-24 20:22:11 +04:00
|
|
|
if (!model.empty()) {
|
2013-08-07 03:51:57 -07:00
|
|
|
renderingInterface.getObjects().insertModel(ptr, model);
|
2010-08-14 10:02:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-10 01:09:00 +02:00
|
|
|
void Potion::insertObject(const MWWorld::Ptr& ptr, const std::string& model, MWPhysics::PhysicsSystem& physics) const
|
2012-07-24 20:22:11 +04:00
|
|
|
{
|
2015-05-12 03:02:15 +02:00
|
|
|
// TODO: add option somewhere to enable collision for placeable objects
|
2012-07-24 20:22:11 +04:00
|
|
|
}
|
2012-07-27 12:00:10 +02:00
|
|
|
|
2015-12-18 15:51:05 +01:00
|
|
|
std::string Potion::getModel(const MWWorld::ConstPtr &ptr) const
|
2011-11-11 23:01:12 -05:00
|
|
|
{
|
2015-12-18 15:51:05 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
|
2011-11-11 23:01:12 -05:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
const std::string &model = ref->mBase->mModel;
|
2012-07-24 20:22:11 +04:00
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
2011-11-11 23:01:12 -05:00
|
|
|
}
|
2012-07-24 20:22:11 +04:00
|
|
|
return "";
|
2011-11-11 23:01:12 -05:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
std::string Potion::getName (const MWWorld::ConstPtr& ptr) const
|
2010-08-03 17:11:41 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
|
2010-08-03 17:11:41 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mName;
|
2010-08-03 17:11:41 +02:00
|
|
|
}
|
|
|
|
|
2010-08-07 20:25:17 +02:00
|
|
|
boost::shared_ptr<MWWorld::Action> Potion::activate (const MWWorld::Ptr& ptr,
|
2012-04-23 15:27:03 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-12-18 00:12:03 +01:00
|
|
|
std::string Potion::getScript (const MWWorld::ConstPtr& ptr) const
|
2010-08-05 15:40:03 +02:00
|
|
|
{
|
2015-12-18 00:12:03 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref =
|
2010-08-05 15:40:03 +02:00
|
|
|
ptr.get<ESM::Potion>();
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mScript;
|
2010-08-05 15:40:03 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
int Potion::getValue (const MWWorld::ConstPtr& ptr) const
|
2012-04-07 19:53:49 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
|
2012-04-07 19:53:49 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 19:53:49 +02:00
|
|
|
}
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
void Potion::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Potion);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Potion).name(), instance);
|
|
|
|
}
|
2012-03-13 20:01:55 +02:00
|
|
|
|
2015-12-18 16:09:08 +01:00
|
|
|
std::string Potion::getUpSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 20:01:55 +02:00
|
|
|
{
|
|
|
|
return std::string("Item Potion Up");
|
|
|
|
}
|
|
|
|
|
2015-12-18 16:09:08 +01:00
|
|
|
std::string Potion::getDownSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 20:01:55 +02:00
|
|
|
{
|
|
|
|
return std::string("Item Potion Down");
|
|
|
|
}
|
2012-04-15 17:52:39 +02:00
|
|
|
|
2015-12-18 15:53:47 +01:00
|
|
|
std::string Potion::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::Potion> *ref = ptr.get<ESM::Potion>();
|
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
|
|
|
}
|
2012-05-11 10:40:40 +02:00
|
|
|
|
2015-12-19 16:13:00 +01:00
|
|
|
bool Potion::hasToolTip (const MWWorld::ConstPtr& ptr) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2015-12-19 16:13:00 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
return (ref->mBase->mName != "");
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
MWGui::ToolTipInfo Potion::getToolTipInfo (const MWWorld::ConstPtr& ptr) const
|
2012-04-16 22:58:16 +02:00
|
|
|
{
|
2015-12-18 15:27:06 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2012-11-05 16:07:59 +04:00
|
|
|
info.caption = ref->mBase->mName + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
|
|
|
info.icon = ref->mBase->mIcon;
|
2012-04-16 22:58:16 +02:00
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->mBase->mData.mWeight);
|
2014-06-12 21:49:18 +02:00
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{sValue}");
|
2012-04-16 22:58:16 +02:00
|
|
|
|
2012-11-05 16:07:59 +04:00
|
|
|
info.effects = MWGui::Widgets::MWEffectList::effectListFromESM(&ref->mBase->mEffects);
|
2013-03-02 13:34:26 +01:00
|
|
|
|
|
|
|
// hide effects the player doesnt know about
|
2014-01-08 18:39:44 +01:00
|
|
|
MWWorld::Ptr player = MWBase::Environment::get().getWorld ()->getPlayerPtr();
|
2014-05-22 20:37:22 +02:00
|
|
|
MWMechanics::NpcStats& npcStats = player.getClass().getNpcStats (player);
|
2013-03-02 13:34:26 +01:00
|
|
|
int alchemySkill = npcStats.getSkill (ESM::Skill::Alchemy).getBase();
|
|
|
|
int i=0;
|
2013-11-21 05:01:55 +01:00
|
|
|
static const float fWortChanceValue =
|
|
|
|
MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>().find("fWortChanceValue")->getFloat();
|
2013-03-02 13:34:26 +01:00
|
|
|
for (MWGui::Widgets::SpellEffectList::iterator it = info.effects.begin(); it != info.effects.end(); ++it)
|
|
|
|
{
|
2014-08-11 20:13:46 +02:00
|
|
|
it->mKnown = (i <= 1 && alchemySkill >= fWortChanceValue)
|
|
|
|
|| (i <= 3 && alchemySkill >= fWortChanceValue*2);
|
2013-03-02 13:34:26 +01:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
2012-09-09 23:06:24 +02:00
|
|
|
info.isPotion = true;
|
2012-04-30 01:08:10 +02:00
|
|
|
|
2012-04-24 02:02:03 +02:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2014-07-22 20:03:35 +02:00
|
|
|
text += MWGui::ToolTips::getCellRefString(ptr.getCellRef());
|
2012-11-05 16:07:59 +04:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->mBase->mScript, "Script");
|
2012-04-16 22:58:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-07-13 13:09:22 +02:00
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Potion::use (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Potion> *ref =
|
|
|
|
ptr.get<ESM::Potion>();
|
|
|
|
|
2012-07-27 12:27:22 +02:00
|
|
|
boost::shared_ptr<MWWorld::Action> action (
|
2014-06-16 20:23:57 +02:00
|
|
|
new MWWorld::ActionApply (ptr, ref->mBase->mId));
|
2012-07-27 12:27:22 +02:00
|
|
|
|
|
|
|
action->setSound ("Drink");
|
|
|
|
|
|
|
|
return action;
|
2012-07-13 13:09:22 +02:00
|
|
|
}
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2015-12-18 16:24:24 +01:00
|
|
|
MWWorld::Ptr Potion::copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 17:18:17 +04:00
|
|
|
{
|
2015-12-18 16:24:24 +01:00
|
|
|
const MWWorld::LiveCellRef<ESM::Potion> *ref = ptr.get<ESM::Potion>();
|
2012-07-25 17:18:17 +04:00
|
|
|
|
2015-11-14 17:12:05 +01:00
|
|
|
return MWWorld::Ptr(cell.insert(ref), &cell);
|
2012-07-25 17:18:17 +04:00
|
|
|
}
|
2013-04-07 21:38:53 +02:00
|
|
|
|
2015-12-18 15:58:23 +01:00
|
|
|
bool Potion::canSell (const MWWorld::ConstPtr& item, int npcServices) const
|
2013-04-07 21:38:53 +02:00
|
|
|
{
|
2015-03-06 23:19:57 +13:00
|
|
|
return (npcServices & ESM::NPC::Potions) != 0;
|
2013-04-07 21:38:53 +02:00
|
|
|
}
|
2013-05-11 18:38:27 +02:00
|
|
|
|
2015-12-18 16:00:50 +01:00
|
|
|
float Potion::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::Potion> *ref = ptr.get<ESM::Potion>();
|
2013-05-11 18:38:27 +02:00
|
|
|
return ref->mBase->mData.mWeight;
|
|
|
|
}
|
2010-08-03 15:24:44 +02:00
|
|
|
}
|