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"
|
2010-08-07 18:25:17 +00:00
|
|
|
#include "../mwworld/actiontake.hpp"
|
2010-08-03 15:11:41 +00:00
|
|
|
|
2010-08-14 08:02:54 +00:00
|
|
|
#include "../mwrender/cellimp.hpp"
|
|
|
|
|
2010-08-06 20:20:20 +00:00
|
|
|
#include "containerutil.hpp"
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2011-11-12 04:01:12 +00:00
|
|
|
void Probe::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
2010-08-14 08:02:54 +00:00
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Probe, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Probe>();
|
|
|
|
|
|
|
|
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-12 04:01:12 +00:00
|
|
|
MWRender::Objects objects = renderingInterface.getObjects();
|
|
|
|
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 Probe::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics, MWWorld::Environment& environment) const
|
2010-08-03 15:11:41 +00:00
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Probe, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Probe>();
|
|
|
|
|
2011-11-12 04:01:12 +00:00
|
|
|
|
|
|
|
const std::string &model = ref->base->model;
|
|
|
|
assert (ref->base != NULL);
|
|
|
|
if(!model.empty()){
|
|
|
|
physics.insertObjectPhysics(ptr);
|
|
|
|
}
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
}
|
|
|
|
|
2010-08-07 18:25:17 +00:00
|
|
|
boost::shared_ptr<MWWorld::Action> Probe::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 Probe::insertIntoContainer (const MWWorld::Ptr& ptr,
|
|
|
|
MWWorld::ContainerStore<MWWorld::RefData>& containerStore) const
|
|
|
|
{
|
|
|
|
insertIntoContainerStore (ptr, containerStore.probes);
|
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|