mirror of https://github.com/OpenMW/openmw.git
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.
51 lines
1004 B
C++
51 lines
1004 B
C++
#include "loadglob.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
void Global::load(ESMReader& esm, bool& isDeleted)
|
|
{
|
|
isDeleted = false;
|
|
mRecordFlags = esm.getRecordFlags();
|
|
|
|
mId = esm.getHNString("NAME");
|
|
|
|
if (esm.isNextSub("DELE"))
|
|
{
|
|
esm.skipHSub();
|
|
isDeleted = true;
|
|
}
|
|
else
|
|
{
|
|
mValue.read(esm, Variant::Format_Global);
|
|
}
|
|
}
|
|
|
|
void Global::save(ESMWriter& esm, bool isDeleted) const
|
|
{
|
|
esm.writeHNCString("NAME", mId);
|
|
|
|
if (isDeleted)
|
|
{
|
|
esm.writeHNCString("DELE", "");
|
|
}
|
|
else
|
|
{
|
|
mValue.write(esm, Variant::Format_Global);
|
|
}
|
|
}
|
|
|
|
void Global::blank()
|
|
{
|
|
mRecordFlags = 0;
|
|
mValue.setType(VT_None);
|
|
}
|
|
|
|
bool operator==(const Global& left, const Global& right)
|
|
{
|
|
return left.mId == right.mId && left.mValue == right.mValue;
|
|
}
|
|
}
|