2010-08-03 13:24:44 +00:00
|
|
|
#include "ingredient.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadingr.hpp>
|
|
|
|
|
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
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2014-12-19 10:26:54 +00:00
|
|
|
#include "../mwworld/esmstore.hpp"
|
2015-05-09 23:09:00 +00:00
|
|
|
#include "../mwphysics/physicssystem.hpp"
|
2012-09-13 11:02:26 +00:00
|
|
|
#include "../mwworld/actioneat.hpp"
|
2013-02-17 14:56:22 +00:00
|
|
|
#include "../mwworld/nullaction.hpp"
|
2013-01-11 00:23:24 +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"
|
2010-08-14 08:02:54 +00:00
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2014-02-23 20:21:27 +00:00
|
|
|
|
2015-01-12 10:29:56 +00:00
|
|
|
void Ingredient::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 Ingredient::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
|
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 Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
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 Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mName;
|
2010-08-03 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
2017-05-05 19:21:11 +00:00
|
|
|
std::shared_ptr<MWWorld::Action> Ingredient::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 Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
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 Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
2012-04-07 17:53:49 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return ref->mBase->mData.mValue;
|
2012-04-07 17:53:49 +00:00
|
|
|
}
|
|
|
|
|
2014-02-23 20:21:27 +00:00
|
|
|
|
2018-07-09 15:31:40 +00:00
|
|
|
std::shared_ptr<MWWorld::Action> Ingredient::use (const MWWorld::Ptr& ptr, bool force) const
|
2012-09-13 11:02:26 +00:00
|
|
|
{
|
2017-05-05 19:21:11 +00:00
|
|
|
std::shared_ptr<MWWorld::Action> action (new MWWorld::ActionEat (ptr));
|
2012-09-13 11:02:26 +00:00
|
|
|
|
2012-09-13 11:30:57 +00:00
|
|
|
action->setSound ("Swallow");
|
|
|
|
|
2014-02-23 20:21:27 +00:00
|
|
|
return action;
|
2012-09-13 11:02:26 +00:00
|
|
|
}
|
2014-02-23 20:21:27 +00:00
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Ingredient::registerSelf()
|
|
|
|
{
|
2017-05-05 19:21:11 +00:00
|
|
|
std::shared_ptr<Class> instance (new Ingredient);
|
2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
registerClass (typeid (ESM::Ingredient).name(), instance);
|
|
|
|
}
|
2012-03-13 16:50:32 +00:00
|
|
|
|
2015-12-18 15:09:08 +00:00
|
|
|
std::string Ingredient::getUpSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Ingredient Up");
|
|
|
|
}
|
|
|
|
|
2015-12-18 15:09:08 +00:00
|
|
|
std::string Ingredient::getDownSoundId (const MWWorld::ConstPtr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Ingredient Down");
|
|
|
|
}
|
2012-04-15 15:52:39 +00:00
|
|
|
|
2015-12-18 14:53:47 +00:00
|
|
|
std::string Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
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:13:00 +00:00
|
|
|
bool Ingredient::hasToolTip (const MWWorld::ConstPtr& ptr) const
|
2012-04-16 20:58:16 +00:00
|
|
|
{
|
2015-12-19 15:13:00 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2012-11-05 12:07:59 +00:00
|
|
|
return (ref->mBase->mName != "");
|
2012-04-16 20:58:16 +00:00
|
|
|
}
|
|
|
|
|
2015-12-19 15:29:07 +00:00
|
|
|
MWGui::ToolTipInfo Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2019-08-17 18:53:52 +00:00
|
|
|
info.caption = MyGUI::TextIterator::toTagsString(ref->mBase->mName) + MWGui::ToolTips::getCountString(count);
|
2012-11-05 12:07:59 +00:00
|
|
|
info.icon = ref->mBase->mIcon;
|
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-06-12 19:49:18 +00:00
|
|
|
text += MWGui::ToolTips::getValueString(ref->mBase->mData.mValue, "#{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
|
|
|
}
|
|
|
|
|
2014-01-08 17:39:44 +00:00
|
|
|
MWWorld::Ptr player = MWBase::Environment::get().getWorld ()->getPlayerPtr();
|
2018-10-08 14:06:30 +00:00
|
|
|
int alchemySkill = player.getClass().getSkill(player, ESM::Skill::Alchemy);
|
2013-01-11 00:23:24 +00:00
|
|
|
|
2013-11-21 04:01:55 +00:00
|
|
|
static const float fWortChanceValue =
|
2018-08-29 15:38:12 +00:00
|
|
|
MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>().find("fWortChanceValue")->mValue.getFloat();
|
2013-11-21 04:01:55 +00:00
|
|
|
|
2012-05-24 12:47:57 +00:00
|
|
|
MWGui::Widgets::SpellEffectList list;
|
|
|
|
for (int i=0; i<4; ++i)
|
|
|
|
{
|
2012-11-05 12:07:59 +00:00
|
|
|
if (ref->mBase->mData.mEffectID[i] < 0)
|
2012-05-24 12:47:57 +00:00
|
|
|
continue;
|
|
|
|
MWGui::Widgets::SpellEffectParams params;
|
2012-11-05 12:07:59 +00:00
|
|
|
params.mEffectID = ref->mBase->mData.mEffectID[i];
|
|
|
|
params.mAttribute = ref->mBase->mData.mAttributes[i];
|
|
|
|
params.mSkill = ref->mBase->mData.mSkills[i];
|
2013-01-11 00:23:24 +00:00
|
|
|
|
2013-11-21 04:01:55 +00:00
|
|
|
params.mKnown = ( (i == 0 && alchemySkill >= fWortChanceValue)
|
|
|
|
|| (i == 1 && alchemySkill >= fWortChanceValue*2)
|
|
|
|
|| (i == 2 && alchemySkill >= fWortChanceValue*3)
|
|
|
|
|| (i == 3 && alchemySkill >= fWortChanceValue*4));
|
2013-01-11 00:23:24 +00:00
|
|
|
|
2012-05-24 12:47:57 +00:00
|
|
|
list.push_back(params);
|
|
|
|
}
|
|
|
|
info.effects = list;
|
|
|
|
|
2012-04-16 20:58:16 +00:00
|
|
|
info.text = text;
|
2019-05-06 23:48:13 +00:00
|
|
|
info.isIngredient = true;
|
2012-04-16 20:58:16 +00:00
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-07-25 13:18:17 +00:00
|
|
|
|
2015-12-18 15:24:24 +00:00
|
|
|
MWWorld::Ptr Ingredient::copyToCellImpl(const MWWorld::ConstPtr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 13:18:17 +00:00
|
|
|
{
|
2015-12-18 15:24:24 +00:00
|
|
|
const MWWorld::LiveCellRef<ESM::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
2012-07-25 13:18:17 +00:00
|
|
|
|
2015-11-14 16:12:05 +00:00
|
|
|
return MWWorld::Ptr(cell.insert(ref), &cell);
|
2012-07-25 13:18:17 +00:00
|
|
|
}
|
2013-04-07 19:38:53 +00:00
|
|
|
|
2015-12-18 14:58:23 +00:00
|
|
|
bool Ingredient::canSell (const MWWorld::ConstPtr& item, int npcServices) const
|
2013-04-07 19:38:53 +00:00
|
|
|
{
|
2015-03-06 10:19:57 +00:00
|
|
|
return (npcServices & ESM::NPC::Ingredients) != 0;
|
2013-04-07 19:38:53 +00:00
|
|
|
}
|
2013-05-11 16:38:27 +00:00
|
|
|
|
|
|
|
|
2015-12-18 15:00:50 +00:00
|
|
|
float Ingredient::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::Ingredient> *ref = ptr.get<ESM::Ingredient>();
|
2013-05-11 16:38:27 +00:00
|
|
|
return ref->mBase->mData.mWeight;
|
|
|
|
}
|
2010-08-03 13:24:44 +00:00
|
|
|
}
|