1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 15:29:55 +00:00
openmw/components/esm4/loadgmst.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
2.2 KiB
C++
Raw Normal View History

2023-04-04 07:58:49 +00:00
#include "loadgmst.hpp"
#include <cstdint>
2023-04-04 07:58:49 +00:00
#include <stdexcept>
#include <string>
2023-04-04 07:58:49 +00:00
#include "reader.hpp"
namespace ESM4
{
namespace
{
GameSetting::Data readData(FormId formId, std::string_view editorId, Reader& reader)
{
if (editorId.empty())
2023-04-07 00:14:32 +00:00
throw std::runtime_error("Unknown ESM4 GMST (" + formId.toString() + ") data type: editor id is empty");
2023-04-04 07:58:49 +00:00
const char type = editorId[0];
switch (type)
{
2023-05-17 16:35:55 +00:00
case 'b':
{
std::uint32_t value = 0;
reader.get(value);
return value != 0;
}
2023-04-04 07:58:49 +00:00
case 'i':
{
std::int32_t value = 0;
reader.get(value);
return value;
}
case 'f':
{
float value = 0;
reader.get(value);
return value;
}
case 's':
{
std::string value;
reader.getZString(value);
return value;
}
default:
throw std::runtime_error(
2023-04-07 00:14:32 +00:00
"Unsupported ESM4 GMST (" + formId.toString() + ") data type: " + std::string(editorId));
2023-04-04 07:58:49 +00:00
}
}
}
void GameSetting::load(Reader& reader)
{
2023-04-07 00:14:32 +00:00
mFormId = reader.hdr().record.getFormId();
2023-04-04 07:58:49 +00:00
reader.adjustFormId(mFormId);
mFlags = reader.hdr().record.flags;
while (reader.getSubRecordHeader())
{
const ESM4::SubRecordHeader& subHdr = reader.subRecordHeader();
switch (subHdr.typeId)
{
case ESM4::SUB_EDID:
reader.getZString(mEditorId);
break;
case ESM4::SUB_DATA:
mData = readData(mFormId, mEditorId, reader);
break;
default:
2023-04-07 00:14:32 +00:00
throw std::runtime_error(
"Unknown ESM4 GMST (" + mFormId.toString() + ") subrecord " + ESM::printName(subHdr.typeId));
2023-04-04 07:58:49 +00:00
}
}
}
}