2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
#include "lockpick.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadlocks.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"
|
2010-08-07 18:25:17 +00:00
|
|
|
#include "../mwworld/actiontake.hpp"
|
2012-06-04 19:48:20 +00:00
|
|
|
#include "../mwworld/actionequip.hpp"
|
2012-03-13 14:35:06 +00:00
|
|
|
#include "../mwworld/inventorystore.hpp"
|
2012-06-29 14:48:50 +00:00
|
|
|
#include "../mwworld/cellstore.hpp"
|
2012-07-03 11:15:20 +00:00
|
|
|
#include "../mwworld/physicssystem.hpp"
|
2012-06-29 14:48:50 +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
|
|
|
|
{
|
2011-11-09 20:47:06 +00:00
|
|
|
void Lockpick::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 08:02:54 +00:00
|
|
|
{
|
2012-07-24 16:22:11 +00:00
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if (!model.empty()) {
|
2011-11-19 06:01:19 +00:00
|
|
|
MWRender::Objects& objects = renderingInterface.getObjects();
|
2011-11-11 19:37:42 +00:00
|
|
|
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
|
2012-07-24 16:22:11 +00:00
|
|
|
objects.insertMesh(ptr, model);
|
2010-08-14 08:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
void Lockpick::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics) const
|
2012-07-24 16:22:11 +00:00
|
|
|
{
|
|
|
|
const std::string model = getModel(ptr);
|
|
|
|
if(!model.empty()) {
|
|
|
|
physics.insertObjectPhysics(ptr, model);
|
|
|
|
}
|
|
|
|
}
|
2012-08-09 12:33:21 +00:00
|
|
|
|
2012-07-24 16:22:11 +00:00
|
|
|
std::string Lockpick::getModel(const MWWorld::Ptr &ptr) const
|
2011-11-09 23:06:55 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2011-11-09 23:06:55 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
2012-07-24 16:22:11 +00:00
|
|
|
assert(ref->base != NULL);
|
2011-11-11 19:37:42 +00:00
|
|
|
|
|
|
|
const std::string &model = ref->base->model;
|
2012-07-24 16:22:11 +00:00
|
|
|
if (!model.empty()) {
|
|
|
|
return "meshes\\" + model;
|
2011-11-09 23:06:55 +00:00
|
|
|
}
|
2012-07-24 16:22:11 +00:00
|
|
|
return "";
|
2011-11-09 23:06:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Lockpick::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2010-08-03 15:11:41 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-07 18:25:17 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> Lockpick::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
|
|
|
{
|
2012-08-19 23:11:50 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> action(new MWWorld::ActionTake (ptr));
|
2012-03-13 16:50:32 +00:00
|
|
|
|
2012-08-19 23:11:50 +00:00
|
|
|
action->setSound(getUpSoundId(ptr));
|
|
|
|
|
|
|
|
return action;
|
2010-08-07 18:25:17 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Lockpick::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2010-08-05 13:40:03 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2012-03-13 14:35:06 +00:00
|
|
|
std::pair<std::vector<int>, bool> Lockpick::getEquipmentSlots (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
std::vector<int> slots;
|
|
|
|
|
|
|
|
slots.push_back (int (MWWorld::InventoryStore::Slot_CarriedRight));
|
|
|
|
|
|
|
|
return std::make_pair (slots, false);
|
|
|
|
}
|
|
|
|
|
2012-04-07 17:53:49 +00:00
|
|
|
int Lockpick::getValue (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2012-04-07 17:53:49 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return ref->base->data.value;
|
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Lockpick::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Lockpick);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Tool).name(), instance);
|
|
|
|
}
|
2012-03-13 16:50:32 +00:00
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
std::string Lockpick::getUpSoundId (const MWWorld::Ptr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Lockpick Up");
|
|
|
|
}
|
|
|
|
|
2012-04-23 13:27:03 +00:00
|
|
|
std::string Lockpick::getDownSoundId (const MWWorld::Ptr& ptr) const
|
2012-03-13 16:50:32 +00:00
|
|
|
{
|
|
|
|
return std::string("Item Lockpick Down");
|
|
|
|
}
|
2012-04-15 15:52:39 +00:00
|
|
|
|
|
|
|
std::string Lockpick::getInventoryIcon (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2012-04-15 15:52:39 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return ref->base->icon;
|
|
|
|
}
|
2012-05-11 08:40:40 +00:00
|
|
|
|
2012-04-16 20:58:16 +00:00
|
|
|
bool Lockpick::hasToolTip (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return (ref->base->name != "");
|
|
|
|
}
|
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
MWGui::ToolTipInfo Lockpick::getToolTipInfo (const MWWorld::Ptr& ptr) const
|
2012-04-16 20:58:16 +00:00
|
|
|
{
|
2012-06-29 16:54:23 +00:00
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
2012-04-16 20:58:16 +00:00
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
MWGui::ToolTipInfo info;
|
2012-05-12 11:46:03 +00:00
|
|
|
info.caption = ref->base->name + MWGui::ToolTips::getCountString(ptr.getRefData().getCount());
|
2012-04-16 20:58:16 +00:00
|
|
|
info.icon = ref->base->icon;
|
|
|
|
|
|
|
|
std::string text;
|
|
|
|
|
|
|
|
/// \todo store remaining uses somewhere
|
|
|
|
|
2012-09-22 19:35:57 +00:00
|
|
|
text += "\n#{sUses}: " + MWGui::ToolTips::toString(ref->base->data.uses);
|
|
|
|
text += "\n#{sQuality}: " + MWGui::ToolTips::toString(ref->base->data.quality);
|
|
|
|
text += "\n#{sWeight}: " + MWGui::ToolTips::toString(ref->base->data.weight);
|
|
|
|
text += MWGui::ToolTips::getValueString(ref->base->data.value, "#{sValue}");
|
2012-04-16 20:58:16 +00:00
|
|
|
|
2012-04-24 00:02:03 +00:00
|
|
|
if (MWBase::Environment::get().getWindowManager()->getFullHelp()) {
|
2012-04-16 20:58:16 +00:00
|
|
|
text += MWGui::ToolTips::getMiscString(ref->ref.owner, "Owner");
|
|
|
|
text += MWGui::ToolTips::getMiscString(ref->base->script, "Script");
|
|
|
|
}
|
|
|
|
|
|
|
|
info.text = text;
|
|
|
|
|
|
|
|
return info;
|
|
|
|
}
|
2012-06-04 19:48:20 +00:00
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Lockpick::use (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
2012-08-19 23:11:50 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> action(new MWWorld::ActionEquip(ptr));
|
|
|
|
|
|
|
|
action->setSound(getUpSoundId(ptr));
|
2012-06-04 19:48:20 +00:00
|
|
|
|
2012-08-19 23:11:50 +00:00
|
|
|
return action;
|
2012-06-04 19:48:20 +00:00
|
|
|
}
|
2012-07-25 13:18:17 +00:00
|
|
|
|
|
|
|
MWWorld::Ptr
|
2012-07-26 12:14:11 +00:00
|
|
|
Lockpick::copyToCellImpl(const MWWorld::Ptr &ptr, MWWorld::CellStore &cell) const
|
2012-07-25 13:18:17 +00:00
|
|
|
{
|
|
|
|
MWWorld::LiveCellRef<ESM::Tool> *ref =
|
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return MWWorld::Ptr(&cell.lockpicks.insert(*ref), &cell);
|
|
|
|
}
|
2010-08-03 13:24:44 +00:00
|
|
|
}
|