2010-08-03 13:24:44 +00:00
|
|
|
|
|
|
|
#include "clothing.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadclot.hpp>
|
|
|
|
|
2010-08-03 15:11:41 +00:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
2010-08-06 20:20:20 +00:00
|
|
|
#include "containerutil.hpp"
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
namespace MWClass
|
|
|
|
{
|
2010-08-03 15:11:41 +00:00
|
|
|
std::string Clothing::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Clothing, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Clothing>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
2010-08-06 20:20:20 +00:00
|
|
|
void Clothing::insertIntoContainer (const MWWorld::Ptr& ptr,
|
|
|
|
MWWorld::ContainerStore<MWWorld::RefData>& containerStore) const
|
|
|
|
{
|
|
|
|
insertIntoContainerStore (ptr, containerStore.clothes);
|
|
|
|
}
|
|
|
|
|
2010-08-05 13:40:03 +00:00
|
|
|
std::string Clothing::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Clothing, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Clothing>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
2010-08-03 13:24:44 +00:00
|
|
|
void Clothing::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Clothing);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Clothing).name(), instance);
|
|
|
|
}
|
|
|
|
}
|