|
|
|
@ -1,6 +1,9 @@
|
|
|
|
|
#include "loadglob.hpp"
|
|
|
|
|
|
|
|
|
|
#include "esmreader.hpp"
|
|
|
|
|
#include "esmwriter.hpp"
|
|
|
|
|
#include "defs.hpp"
|
|
|
|
|
#include "util.hpp"
|
|
|
|
|
|
|
|
|
|
namespace ESM
|
|
|
|
|
{
|
|
|
|
@ -8,11 +11,24 @@ namespace ESM
|
|
|
|
|
|
|
|
|
|
void Global::load (ESMReader &esm)
|
|
|
|
|
{
|
|
|
|
|
mId = esm.getHNString("NAME");
|
|
|
|
|
if (mIsDeleted = readDeleSubRecord(esm))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mValue.read (esm, ESM::Variant::Format_Global);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Global::save (ESMWriter &esm) const
|
|
|
|
|
{
|
|
|
|
|
esm.writeHNCString("NAME", mId);
|
|
|
|
|
if (mIsDeleted)
|
|
|
|
|
{
|
|
|
|
|
writeDeleSubRecord(esm);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mValue.write (esm, ESM::Variant::Format_Global);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|