2011-04-08 17:58:21 +04:00
|
|
|
#include "loadgmst.hpp"
|
|
|
|
|
2015-07-08 21:17:59 +03:00
|
|
|
#include "esmreader.hpp"
|
|
|
|
#include "esmwriter.hpp"
|
2013-09-24 13:17:28 +02:00
|
|
|
|
2011-04-08 17:58:21 +04:00
|
|
|
namespace ESM
|
|
|
|
{
|
2015-07-20 17:23:14 +03:00
|
|
|
void GameSetting::load(ESMReader& esm, bool& isDeleted)
|
2011-04-08 17:58:21 +04:00
|
|
|
{
|
2015-07-20 17:23:14 +03:00
|
|
|
isDeleted = false; // GameSetting record can't be deleted now (may be changed in the future)
|
2021-07-25 19:53:41 +10:00
|
|
|
mRecordFlags = esm.getRecordFlags();
|
2015-07-20 17:23:14 +03:00
|
|
|
|
2023-02-12 19:36:56 +01:00
|
|
|
mId = esm.getHNRefId("NAME");
|
2022-04-12 00:18:39 +02:00
|
|
|
mValue.read(esm, Variant::Format_Gmst);
|
2011-04-08 17:58:21 +04:00
|
|
|
}
|
|
|
|
|
2015-07-20 17:23:14 +03:00
|
|
|
void GameSetting::save(ESMWriter& esm, bool /*isDeleted*/) const
|
2011-04-08 17:58:21 +04:00
|
|
|
{
|
2023-02-12 19:36:56 +01:00
|
|
|
esm.writeHNCRefId("NAME", mId);
|
2022-04-12 00:18:39 +02:00
|
|
|
mValue.write(esm, Variant::Format_Gmst);
|
2011-04-08 17:58:21 +04:00
|
|
|
}
|
2012-12-17 23:13:33 +01:00
|
|
|
|
2013-02-08 09:58:19 +01:00
|
|
|
void GameSetting::blank()
|
|
|
|
{
|
2022-05-29 22:12:30 +02:00
|
|
|
mRecordFlags = 0;
|
2022-04-12 00:18:39 +02:00
|
|
|
mValue.setType(VT_None);
|
2013-02-08 09:58:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const GameSetting& left, const GameSetting& right)
|
|
|
|
{
|
2013-03-05 08:02:27 +01:00
|
|
|
return left.mValue == right.mValue;
|
2013-02-08 09:58:19 +01:00
|
|
|
}
|
2011-04-08 17:58:21 +04:00
|
|
|
}
|