mirror of https://github.com/AxioDL/metaforce.git
139 lines
3.8 KiB
C++
139 lines
3.8 KiB
C++
|
#include "STRG.hpp"
|
||
|
#include "../Logging.hpp"
|
||
|
|
||
|
namespace Retro
|
||
|
{
|
||
|
namespace DNAMP2
|
||
|
{
|
||
|
|
||
|
void STRG::_read(Athena::io::IStreamReader& reader)
|
||
|
{
|
||
|
atUint32 langCount = reader.readUint32();
|
||
|
atUint32 strCount = reader.readUint32();
|
||
|
|
||
|
std::vector<FourCC> readLangs;
|
||
|
readLangs.reserve(langCount);
|
||
|
for (atUint32 l=0 ; l<langCount ; ++l)
|
||
|
{
|
||
|
FourCC lang;
|
||
|
lang.read(reader);
|
||
|
readLangs.emplace_back(lang);
|
||
|
reader.seek(8);
|
||
|
}
|
||
|
|
||
|
atUint32 nameCount = reader.readUint32();
|
||
|
atUint32 nameTableSz = reader.readUint32();
|
||
|
std::unique_ptr<uint8_t[]> nameTableBuf(new uint8_t[nameTableSz]);
|
||
|
reader.readUBytesToBuf(nameTableBuf.get(), nameTableSz);
|
||
|
struct NameIdxEntry
|
||
|
{
|
||
|
atUint32 nameOff;
|
||
|
atUint32 strIdx;
|
||
|
}* nameIndex = (NameIdxEntry*)nameTableBuf.get();
|
||
|
for (atUint32 n=0 ; n<nameCount ; ++n)
|
||
|
{
|
||
|
const char* name = (char*)(nameTableBuf.get() + HECL::SBig(nameIndex[n].nameOff));
|
||
|
names[name] = HECL::SBig(nameIndex[n].strIdx);
|
||
|
}
|
||
|
|
||
|
langs.clear();
|
||
|
langs.reserve(langCount);
|
||
|
for (FourCC& lang : readLangs)
|
||
|
{
|
||
|
std::vector<std::wstring> strs;
|
||
|
reader.seek(strCount * 4);
|
||
|
for (atUint32 s=0 ; s<strCount ; ++s)
|
||
|
strs.emplace_back(reader.readWString());
|
||
|
langs.emplace(std::make_pair(lang, strs));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void STRG::read(Athena::io::IStreamReader& reader)
|
||
|
{
|
||
|
reader.setEndian(Athena::BigEndian);
|
||
|
atUint32 magic = reader.readUint32();
|
||
|
if (magic != 0x87654321)
|
||
|
LogModule.report(LogVisor::Error, "invalid STRG magic");
|
||
|
|
||
|
atUint32 version = reader.readUint32();
|
||
|
if (version != 1)
|
||
|
LogModule.report(LogVisor::Error, "invalid STRG version");
|
||
|
|
||
|
_read(reader);
|
||
|
}
|
||
|
|
||
|
void STRG::write(Athena::io::IStreamWriter& writer) const
|
||
|
{
|
||
|
writer.setEndian(Athena::BigEndian);
|
||
|
writer.writeUint32(0x87654321);
|
||
|
writer.writeUint32(1);
|
||
|
writer.writeUint32(langs.size());
|
||
|
atUint32 strCount = STRG::count();
|
||
|
writer.writeUint32(strCount);
|
||
|
|
||
|
atUint32 offset = 0;
|
||
|
for (const std::pair<FourCC, std::vector<std::wstring>>& lang : langs)
|
||
|
{
|
||
|
lang.first.write(writer);
|
||
|
writer.writeUint32(offset);
|
||
|
offset += strCount * 4 + 4;
|
||
|
atUint32 langStrCount = lang.second.size();
|
||
|
atUint32 tableSz = strCount * 4;
|
||
|
for (atUint32 s=0 ; s<strCount ; ++s)
|
||
|
{
|
||
|
atUint32 chCount = lang.second[s].size();
|
||
|
if (s < langStrCount)
|
||
|
{
|
||
|
offset += chCount * 2 + 1;
|
||
|
tableSz += chCount * 2 + 1;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
offset += 1;
|
||
|
tableSz += 1;
|
||
|
}
|
||
|
}
|
||
|
writer.writeUint32(tableSz);
|
||
|
}
|
||
|
|
||
|
atUint32 nameTableSz = names.size() * 8;
|
||
|
for (const std::pair<std::string, int32_t>& name : names)
|
||
|
nameTableSz += name.first.size() + 1;
|
||
|
writer.writeUint32(names.size());
|
||
|
writer.writeUint32(nameTableSz);
|
||
|
offset = names.size() * 8;
|
||
|
for (const std::pair<std::string, int32_t>& name : names)
|
||
|
{
|
||
|
writer.writeUint32(offset);
|
||
|
writer.writeInt32(name.second);
|
||
|
offset += name.first.size() + 1;
|
||
|
}
|
||
|
for (const std::pair<std::string, int32_t>& name : names)
|
||
|
writer.writeString(name.first);
|
||
|
|
||
|
for (const std::pair<FourCC, std::vector<std::wstring>>& lang : langs)
|
||
|
{
|
||
|
offset = strCount * 4;
|
||
|
atUint32 langStrCount = lang.second.size();
|
||
|
for (atUint32 s=0 ; s<strCount ; ++s)
|
||
|
{
|
||
|
writer.writeUint32(offset);
|
||
|
if (s < langStrCount)
|
||
|
offset += lang.second[s].size() * 2 + 1;
|
||
|
else
|
||
|
offset += 1;
|
||
|
}
|
||
|
|
||
|
for (atUint32 s=0 ; s<strCount ; ++s)
|
||
|
{
|
||
|
if (s < langStrCount)
|
||
|
writer.writeWString(lang.second[s]);
|
||
|
else
|
||
|
writer.writeUByte(0);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|