1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00

70 lines
2.0 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
#include "../mwrender/cellimp.hpp"
#include "containerutil.hpp"
2010-08-03 15:24:44 +02:00
namespace MWClass
{
void Miscellaneous::insertObj (const MWWorld::Ptr& ptr, MWRender::CellRenderImp& cellRender,
MWWorld::Environment& environment) const
{
ESMS::LiveCellRef<ESM::Miscellaneous, MWWorld::RefData> *ref =
ptr.get<ESM::Miscellaneous>();
assert (ref->base != NULL);
const std::string &model = ref->base->model;
if (!model.empty())
{
MWRender::Rendering rendering (cellRender, ref->ref);
cellRender.insertMesh ("meshes\\" + model);
cellRender.insertObjectPhysics();
ref->mData.setHandle (rendering.end (ref->mData.isEnabled()));
}
}
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));
}
void Miscellaneous::insertIntoContainer (const MWWorld::Ptr& ptr,
MWWorld::ContainerStore<MWWorld::RefData>& containerStore) const
{
insertIntoContainerStore (ptr, containerStore.miscItems);
}
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
}
}