1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-04 12:39:55 +00:00

75 lines
2.2 KiB
C++
Raw Normal View History

2010-08-03 15:24:44 +02:00
#include "misc.hpp"
#include <components/esm/loadmisc.hpp>
2010-08-03 17:11:41 +02:00
#include <components/esm_store/cell_store.hpp>
#include "../mwworld/ptr.hpp"
2010-08-07 20:25:17 +02:00
#include "../mwworld/actiontake.hpp"
2010-08-03 17:11:41 +02:00
2012-01-27 15:11:02 +01:00
#include "../mwrender/objects.hpp"
2010-08-03 15:24:44 +02:00
namespace MWClass
{
2011-11-11 23:01:12 -05:00
void Miscellaneous::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
{
ESMS::LiveCellRef<ESM::Miscellaneous, MWWorld::RefData> *ref =
ptr.get<ESM::Miscellaneous>();
assert (ref->base != NULL);
const std::string &model = ref->base->model;
2012-01-27 15:11:02 +01:00
if (!model.empty())
{
MWRender::Objects& objects = renderingInterface.getObjects();
2011-11-11 23:01:12 -05:00
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
objects.insertMesh(ptr, "meshes\\" + model);
}
}
2011-11-11 23:01:12 -05:00
void Miscellaneous::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics, MWWorld::Environment& environment) const
{
ESMS::LiveCellRef<ESM::Miscellaneous, MWWorld::RefData> *ref =
ptr.get<ESM::Miscellaneous>();
const std::string &model = ref->base->model;
assert (ref->base != NULL);
if(!model.empty()){
2011-11-17 19:38:52 -05:00
physics.insertObjectPhysics(ptr, "meshes\\" + model);
2011-11-11 23:01:12 -05:00
}
}
std::string Miscellaneous::getName (const MWWorld::Ptr& ptr) const
2010-08-03 17:11:41 +02:00
{
ESMS::LiveCellRef<ESM::Miscellaneous, MWWorld::RefData> *ref =
ptr.get<ESM::Miscellaneous>();
2010-08-03 17:11:41 +02:00
return ref->base->name;
}
boost::shared_ptr<MWWorld::Action> Miscellaneous::activate (const MWWorld::Ptr& ptr,
2010-08-07 20:25:17 +02:00
const MWWorld::Ptr& actor, const MWWorld::Environment& environment) const
{
return boost::shared_ptr<MWWorld::Action> (
new MWWorld::ActionTake (ptr));
}
std::string Miscellaneous::getScript (const MWWorld::Ptr& ptr) const
{
ESMS::LiveCellRef<ESM::Miscellaneous, MWWorld::RefData> *ref =
ptr.get<ESM::Miscellaneous>();
return ref->base->script;
}
void Miscellaneous::registerSelf()
2010-08-03 15:24:44 +02:00
{
boost::shared_ptr<Class> instance (new Miscellaneous);
2010-08-03 15:24:44 +02:00
registerClass (typeid (ESM::Miscellaneous).name(), instance);
2010-08-03 15:24:44 +02:00
}
}