openmw-tes3coop/apps/openmw/mwclass/probe.cpp

43 lines
985 B
C++
Raw Normal View History

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