2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
#include "apparatus.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadappa.hpp>
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
2010-08-07 18:25:17 +00:00
|
|
|
#include "../mwworld/actiontake.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2010-08-06 20:20:20 +00:00
|
|
|
#include "containerutil.hpp"
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Apparatus::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Apparatus, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Apparatus>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-07 18:25:17 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> Apparatus::activate (const MWWorld::Ptr& ptr,
|
|
|
|
const MWWorld::Ptr& actor, const MWWorld::Environment& environment) const
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<MWWorld::Action> (
|
|
|
|
new MWWorld::ActionTake (ptr));
|
|
|
|
}
|
|
|
|
|
2010-08-06 20:20:20 +00:00
|
|
|
void Apparatus::insertIntoContainer (const MWWorld::Ptr& ptr,
|
|
|
|
MWWorld::ContainerStore<MWWorld::RefData>& containerStore) const
|
|
|
|
{
|
|
|
|
insertIntoContainerStore (ptr, containerStore.appas);
|
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Apparatus::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Apparatus, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Apparatus>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Apparatus::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Apparatus);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Apparatus).name(), instance);
|
|
|
|
}
|
|
|
|
}
|