mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
33 lines
620 B
C++
33 lines
620 B
C++
#include "cellstate.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void CellState::load(ESMReader& esm)
|
|
{
|
|
mWaterLevel = 0;
|
|
esm.getHNOT(mWaterLevel, "WLVL");
|
|
|
|
mHasFogOfWar = false;
|
|
esm.getHNOT(mHasFogOfWar, "HFOW");
|
|
|
|
mLastRespawn.mDay = 0;
|
|
mLastRespawn.mHour = 0;
|
|
esm.getHNOT(mLastRespawn, "RESP");
|
|
}
|
|
|
|
void CellState::save(ESMWriter& esm) const
|
|
{
|
|
if (mIsInterior)
|
|
esm.writeHNT("WLVL", mWaterLevel);
|
|
|
|
esm.writeHNT("HFOW", mHasFogOfWar);
|
|
|
|
esm.writeHNT("RESP", mLastRespawn);
|
|
}
|
|
|
|
}
|