2010-08-03 15:24:44 +02:00
|
|
|
|
|
|
|
#include "container.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadcont.hpp>
|
|
|
|
|
2010-08-03 17:11:41 +02:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2010-08-03 17:11:41 +02:00
|
|
|
std::string Container::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Container, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Container>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-04 14:37:23 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2010-08-05 15:40:03 +02:00
|
|
|
std::string Container::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Container, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Container>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
void Container::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Container);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Container).name(), instance);
|
|
|
|
}
|
|
|
|
}
|