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.
|
|
|
|
|
|
|
#include "misc.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/loadmisc.hpp>
|
|
|
|
|
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
|
|
|
|
#include "containerutil.hpp"
|
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
|
|
|
std::string Misc::getName (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Misc, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Misc>();
|
|
|
|
|
|
|
|
return ref->base->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Misc::insertIntoContainer (const MWWorld::Ptr& ptr,
|
|
|
|
MWWorld::ContainerStore<MWWorld::RefData>& containerStore) const
|
|
|
|
{
|
|
|
|
insertIntoContainerStore (ptr, containerStore.miscItems);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Misc::getScript (const MWWorld::Ptr& ptr) const
|
|
|
|
{
|
|
|
|
ESMS::LiveCellRef<ESM::Misc, MWWorld::RefData> *ref =
|
|
|
|
ptr.get<ESM::Misc>();
|
|
|
|
|
|
|
|
return ref->base->script;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Misc::registerSelf()
|
|
|
|
{
|
|
|
|
boost::shared_ptr<Class> instance (new Misc);
|
|
|
|
|
|
|
|
registerClass (typeid (ESM::Misc).name(), instance);
|
|
|
|
}
|
|
|
|
}
|