2010-08-03 11:03:08 +00:00
|
|
|
|
|
|
|
#include "activator.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadacti.hpp>
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
namespace MWClass
|
2010-08-03 11:03:08 +00:00
|
|
|
{
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Activator::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Activator, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Activator::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Activator, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2010-08-03 11:03:08 +00:00
|
|
|
void Activator::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Activator);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Activator).name(), instance);
|
|
|
|
}
|
|
|
|
}
|