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-14 08:02:54 +00:00
|
|
|
#include "../mwrender/cellimp.hpp"
|
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
namespace MWClass
|
2010-08-03 11:03:08 +00:00
|
|
|
{
|
2010-08-14 08:02:54 +00:00
|
|
|
void Activator::insertObj (const MWWorld::Ptr& ptr, MWRender::CellRenderImp& cellRender,
|
|
|
|
MWWorld::Environment& environment) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Activator, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
assert (ref->base != NULL);
|
|
|
|
const std::string &model = ref->base->model;
|
|
|
|
if (!model.empty())
|
|
|
|
{
|
2010-08-25 07:43:06 +00:00
|
|
|
MWRender::Rendering rendering (cellRender, ref->ref);
|
2010-08-14 08:02:54 +00:00
|
|
|
cellRender.insertMesh ("meshes\\" + model);
|
2011-01-29 16:33:48 +00:00
|
|
|
cellRender.insertObjectPhysics();
|
2010-08-25 07:43:06 +00:00
|
|
|
ref->mData.setHandle (rendering.end (ref->mData.isEnabled()));
|
2010-08-14 08:02:54 +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);
|
|
|
|
}
|
|
|
|
}
|