2010-08-03 15:24:44 +02:00
|
|
|
|
|
|
|
#include "lockpick.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadlocks.hpp>
|
|
|
|
|
2010-08-03 17:11:41 +02:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
2010-08-06 22:20:20 +02:00
|
|
|
#include "containerutil.hpp"
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2010-08-03 17:11:41 +02:00
|
|
|
std::string Lockpick::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Tool, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-06 22:20:20 +02:00
|
|
|
void Lockpick::insertIntoContainer (const MWWorld::Ptr& ptr,
|
|
|
|
MWWorld::ContainerStore<MWWorld::RefData>& containerStore) const
|
|
|
|
{
|
|
|
|
insertIntoContainerStore (ptr, containerStore.lockpicks);
|
|
|
|
}
|
|
|
|
|
2010-08-05 15:40:03 +02:00
|
|
|
std::string Lockpick::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Tool, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Tool>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
void Lockpick::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Lockpick);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Tool).name(), instance);
|
|
|
|
}
|
|
|
|
}
|