metaforce/DataSpec/DNAMP1/STRG.cpp

181 lines
4.9 KiB
C++
Raw Normal View History

2015-07-09 22:28:08 -07:00
#include "STRG.hpp"
2015-07-15 18:57:34 -07:00
#include "DNAMP1.hpp"
2015-07-09 22:28:08 -07:00
namespace Retro
{
namespace DNAMP1
{
void STRG::_read(Athena::io::IStreamReader& reader)
2015-07-09 22:28:08 -07:00
{
atUint32 langCount = reader.readUint32Big();
atUint32 strCount = reader.readUint32Big();
2015-07-09 22:28:08 -07:00
std::vector<FourCC> readLangs;
readLangs.reserve(langCount);
for (atUint32 l=0 ; l<langCount ; ++l)
{
2015-08-22 23:42:29 -07:00
DNAFourCC lang;
lang.read(reader);
readLangs.emplace_back(lang);
reader.seek(4);
}
2015-07-09 22:28:08 -07:00
langs.clear();
langs.reserve(langCount);
for (FourCC& lang : readLangs)
2015-07-09 22:28:08 -07:00
{
std::vector<std::wstring> strs;
reader.seek(strCount * 4 + 4);
for (atUint32 s=0 ; s<strCount ; ++s)
strs.emplace_back(reader.readWStringBig());
langs.emplace_back(lang, strs);
2015-07-09 22:28:08 -07:00
}
langMap.clear();
langMap.reserve(langCount);
for (std::pair<FourCC, std::vector<std::wstring>>& item : langs)
langMap.emplace(item.first, &item.second);
}
2015-07-09 22:28:08 -07:00
void STRG::read(Athena::io::IStreamReader& reader)
{
atUint32 magic = reader.readUint32Big();
if (magic != 0x87654321)
2015-07-15 18:57:34 -07:00
Log.report(LogVisor::Error, "invalid STRG magic");
atUint32 version = reader.readUint32Big();
if (version != 0)
2015-07-15 18:57:34 -07:00
Log.report(LogVisor::Error, "invalid STRG version");
_read(reader);
2015-07-09 22:28:08 -07:00
}
void STRG::write(Athena::io::IStreamWriter& writer) const
{
writer.writeUint32Big(0x87654321);
writer.writeUint32Big(0);
writer.writeUint32Big(langs.size());
atUint32 strCount = STRG::count();
writer.writeUint32Big(strCount);
2015-07-09 22:28:08 -07:00
atUint32 offset = 0;
for (const std::pair<FourCC, std::vector<std::wstring>>& lang : langs)
2015-07-09 22:28:08 -07:00
{
2015-08-22 23:42:29 -07:00
DNAFourCC(lang.first).write(writer);
writer.writeUint32Big(offset);
2015-07-09 22:28:08 -07:00
offset += strCount * 4 + 4;
atUint32 langStrCount = lang.second.size();
for (atUint32 s=0 ; s<strCount ; ++s)
2015-07-09 22:28:08 -07:00
{
atUint32 chCount = lang.second[s].size();
if (s < langStrCount)
offset += chCount * 2 + 1;
2015-07-09 22:28:08 -07:00
else
offset += 1;
}
}
for (const std::pair<FourCC, std::vector<std::wstring>>& lang : langs)
2015-07-09 22:28:08 -07:00
{
atUint32 langStrCount = lang.second.size();
atUint32 tableSz = strCount * 4;
for (atUint32 s=0 ; s<strCount ; ++s)
{
if (s < langStrCount)
tableSz += lang.second[s].size() * 2 + 1;
else
tableSz += 1;
}
writer.writeUint32Big(tableSz);
2015-07-09 22:28:08 -07:00
offset = strCount * 4;
for (atUint32 s=0 ; s<strCount ; ++s)
2015-07-09 22:28:08 -07:00
{
writer.writeUint32Big(offset);
if (s < langStrCount)
offset += lang.second[s].size() * 2 + 1;
2015-07-09 22:28:08 -07:00
else
offset += 1;
}
for (atUint32 s=0 ; s<strCount ; ++s)
2015-07-09 22:28:08 -07:00
{
if (s < langStrCount)
writer.writeWStringBig(lang.second[s]);
2015-07-09 22:28:08 -07:00
else
writer.writeUByte(0);
}
}
}
2015-07-31 17:38:35 -07:00
void STRG::fromYAML(Athena::io::YAMLDocReader& reader)
{
const Athena::io::YAMLNode* root = reader.getRootNode();
/* Validate Pass */
if (root->m_type == YAML_MAPPING_NODE)
{
for (const auto& lang : root->m_mapChildren)
{
if (lang.first.size() != 4)
{
Log.report(LogVisor::Warning, "STRG language string '%s' must be exactly 4 characters; skipping", lang.first.c_str());
return;
}
if (lang.second->m_type != YAML_SEQUENCE_NODE)
{
Log.report(LogVisor::Warning, "STRG language string '%s' must contain a sequence; skipping", lang.first.c_str());
return;
}
for (const auto& str : lang.second->m_seqChildren)
{
if (str->m_type != YAML_SCALAR_NODE)
{
Log.report(LogVisor::Warning, "STRG language '%s' must contain all scalars; skipping", lang.first.c_str());
return;
}
}
}
}
else
{
Log.report(LogVisor::Warning, "STRG must have a mapping root node; skipping");
return;
}
/* Read Pass */
langs.clear();
for (const auto& lang : root->m_mapChildren)
{
std::vector<std::wstring> strs;
for (const auto& str : lang.second->m_seqChildren)
2015-08-25 00:04:50 -07:00
strs.emplace_back(HECL::UTF8ToWide(str->m_scalarString));
2015-07-31 17:38:35 -07:00
langs.emplace_back(FourCC(lang.first.c_str()), strs);
}
langMap.clear();
langMap.reserve(langs.size());
2015-08-08 20:55:11 -07:00
for (auto& item : langs)
2015-07-31 17:38:35 -07:00
langMap.emplace(item.first, &item.second);
}
void STRG::toYAML(Athena::io::YAMLDocWriter& writer) const
{
2015-08-08 20:55:11 -07:00
for (const auto& lang : langs)
2015-07-31 17:38:35 -07:00
{
writer.enterSubVector(lang.first.toString().c_str());
for (const std::wstring& str : lang.second)
writer.writeWString(nullptr, str);
writer.leaveSubVector();
}
}
2015-09-30 17:40:21 -07:00
const char* STRG::DNAType()
{
return "Retro::DNAMP1::STRG";
}
2015-07-09 22:28:08 -07:00
}
}