|
|
|
|
|
|
|
#include "clothing.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadclot.hpp>
|
|
|
|
|
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include "../mwworld/actiontake.hpp"
|
|
|
|
|
|
|
|
#include "../mwrender/objects.hpp"
|
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
|
|
|
void Clothing::insertObjectRendering (const MWWorld::Ptr& ptr, MWRender::RenderingInterface& renderingInterface) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Clothing, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Clothing>();
|
|
|
|
|
|
|
|
assert (ref->base != NULL);
|
|
|
|
const std::string &model = ref->base->model;
|
|
|
|
|
|
|
|
if (!model.empty())
|
|
|
|
{
|
|
|
|
MWRender::Objects& objects = renderingInterface.getObjects();
|
|
|
|
objects.insertBegin(ptr, ptr.getRefData().isEnabled(), false);
|
|
|
|
objects.insertMesh(ptr, "meshes\\" + model);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clothing::insertObject(const MWWorld::Ptr& ptr, MWWorld::PhysicsSystem& physics, MWWorld::Environment& environment) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Clothing, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Clothing>();
|
|
|
|
|
|
|
|
|
|
|
|
const std::string &model = ref->base->model;
|
|
|
|
assert (ref->base != NULL);
|
|
|
|
if(!model.empty()){
|
|
|
|
physics.insertObjectPhysics(ptr, "meshes\\" + model);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Clothing::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Clothing, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Clothing>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::shared_ptr<MWWorld::Action> Clothing::activate (const MWWorld::Ptr& ptr,
|
|
|
|
const MWWorld::Ptr& actor, const MWWorld::Environment& environment) const
|
|
|
|
{
|
|
|
|
return boost::shared_ptr<MWWorld::Action> (
|
|
|
|
new MWWorld::ActionTake (ptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Clothing::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Clothing, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Clothing>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clothing::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Clothing);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Clothing).name(), instance);
|
|
|
|
}
|
|
|
|
}
|