2010-08-03 11:03:08 +00:00
|
|
|
|
|
|
|
#include "activator.hpp"
|
2011-11-12 20:58:22 +00:00
|
|
|
#include "../mwrender/objects.hpp"
|
2010-08-03 11:03:08 +00:00
|
|
|
|
|
|
|
#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
|
|
|
|
2010-08-03 11:17:31 +00:00
|
|
|
namespace MWClass
|
2010-08-03 11:03:08 +00:00
|
|
|
{
|
2011-11-12 04:01:12 +00:00
|
|
|
void Activator::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 08:02:54 +00:00
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Activator, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
assert (ref->base != NULL);
|
|
|
|
const std::string &model = ref->base->model;
|
2011-11-12 04:01:12 +00:00
|
|
|
|
2010-08-14 08:02:54 +00:00
|
|
|
if (!model.empty())
|
|
|
|
{
|
2011-11-19 06:01:19 +00:00
|
|
|
MWRender::Objects& objects = renderingInterface.getObjects();
|
2011-11-12 04:01:12 +00:00
|
|
|
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
|
|
|
|
objects.insertMesh(ptr, "meshes\\" + model);
|
2010-08-14 08:02:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-12 04:01:12 +00:00
|
|
|
void Activator::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics, MWWorld::Environment& environment) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Activator, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Activator>();
|
|
|
|
|
|
|
|
|
|
|
|
const std::string &model = ref->base->model;
|
|
|
|
assert (ref->base != NULL);
|
|
|
|
if(!model.empty()){
|
2011-11-18 00:38:52 +00:00
|
|
|
physics.insertObjectPhysics(ptr, "meshes\\" + model);
|
2011-11-12 04:01:12 +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);
|
|
|
|
}
|
|
|
|
}
|