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.
34 lines
806 B
C++
34 lines
806 B
C++
#include "loadgmst.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
void GameSetting::load (ESMReader &esm, bool &isDeleted)
|
|
{
|
|
isDeleted = false; // GameSetting record can't be deleted now (may be changed in the future)
|
|
mRecordFlags = esm.getRecordFlags();
|
|
|
|
mId = esm.getHNString("NAME");
|
|
mValue.read (esm, Variant::Format_Gmst);
|
|
}
|
|
|
|
void GameSetting::save (ESMWriter &esm, bool /*isDeleted*/) const
|
|
{
|
|
esm.writeHNCString("NAME", mId);
|
|
mValue.write (esm, Variant::Format_Gmst);
|
|
}
|
|
|
|
void GameSetting::blank()
|
|
{
|
|
mRecordFlags = 0;
|
|
mValue.setType (VT_None);
|
|
}
|
|
|
|
bool operator== (const GameSetting& left, const GameSetting& right)
|
|
{
|
|
return left.mValue==right.mValue;
|
|
}
|
|
}
|