You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
|
|
#include "container.hpp"
|
|
|
|
#include <components/esm/loadcont.hpp>
|
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
#include "../mwrender/cellimp.hpp"
|
|
|
|
namespace MWClass
|
|
{
|
|
void Container::insertObj (const MWWorld::Ptr& ptr, MWRender::CellRenderImp& cellRender,
|
|
MWWorld::Environment& environment) const
|
|
{
|
|
ESMS::LiveCellRef<ESM::Container, MWWorld::RefData> *ref =
|
|
ptr.get<ESM::Container>();
|
|
|
|
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 Container::getName (const MWWorld::Ptr& ptr) const
|
|
{
|
|
ESMS::LiveCellRef<ESM::Container, MWWorld::RefData> *ref =
|
|
ptr.get<ESM::Container>();
|
|
|
|
return ref->base->name;
|
|
}
|
|
|
|
MWWorld::ContainerStore<MWWorld::RefData>& Container::getContainerStore (const MWWorld::Ptr& ptr)
|
|
const
|
|
{
|
|
if (!ptr.getRefData().getContainerStore().get())
|
|
{
|
|
boost::shared_ptr<MWWorld::ContainerStore<MWWorld::RefData> > store (
|
|
new MWWorld::ContainerStore<MWWorld::RefData>);
|
|
|
|
// TODO add initial content
|
|
|
|
ptr.getRefData().getContainerStore() = store;
|
|
}
|
|
|
|
return *ptr.getRefData().getContainerStore();
|
|
}
|
|
|
|
std::string Container::getScript (const MWWorld::Ptr& ptr) const
|
|
{
|
|
ESMS::LiveCellRef<ESM::Container, MWWorld::RefData> *ref =
|
|
ptr.get<ESM::Container>();
|
|
|
|
return ref->base->script;
|
|
}
|
|
|
|
void Container::registerSelf()
|
|
{
|
|
boost::shared_ptr<Class> instance (new Container);
|
|
|
|
registerClass (typeid (ESM::Container).name(), instance);
|
|
}
|
|
}
|