2014-01-16 11:03:23 +00:00
|
|
|
|
|
|
|
#include "livecellref.hpp"
|
|
|
|
|
|
|
|
#include <components/esm/objectstate.hpp>
|
|
|
|
|
2014-01-30 10:50:13 +00:00
|
|
|
#include "ptr.hpp"
|
|
|
|
#include "class.hpp"
|
|
|
|
|
2014-01-16 11:03:23 +00:00
|
|
|
void MWWorld::LiveCellRefBase::loadImp (const ESM::ObjectState& state)
|
|
|
|
{
|
|
|
|
mRef = state.mRef;
|
|
|
|
mData = RefData (state);
|
2014-01-30 10:50:13 +00:00
|
|
|
Ptr ptr (this);
|
|
|
|
mClass->readAdditionalState (ptr, state);
|
2014-01-16 11:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MWWorld::LiveCellRefBase::saveImp (ESM::ObjectState& state) const
|
|
|
|
{
|
|
|
|
state.mRef = mRef;
|
|
|
|
mData.write (state);
|
2014-01-30 10:50:13 +00:00
|
|
|
/// \todo get rid of this cast once const-correct Ptr are available
|
|
|
|
Ptr ptr (const_cast<LiveCellRefBase *> (this));
|
|
|
|
mClass->writeAdditionalState (ptr, state);
|
2014-01-16 11:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MWWorld::LiveCellRefBase::checkStateImp (const ESM::ObjectState& state)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|