metaforce/DataSpec/DNAMP1/STRG.cpp

493 lines
14 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
2016-02-13 01:02:47 -08:00
namespace DataSpec
2015-07-09 22:28:08 -07:00
{
namespace DNAMP1
{
2016-08-16 22:40:25 -07:00
const std::vector<FourCC> skLanguages =
{
FOURCC('ENGL'),
FOURCC('FREN'),
FOURCC('GERM'),
FOURCC('SPAN'),
FOURCC('ITAL'),
FOURCC('DUTC'),
FOURCC('JAPN')
};
static float u16stof(char16_t* str)
{
char cstr[16];
int i;
for (i=0 ; i<15 && str[i] != u'\0' ; ++i)
cstr[i] = str[i];
cstr[i] = '\0';
return strtof(cstr, nullptr);
}
static uint32_t ParseTag(const char16_t* str)
{
char parseStr[9];
int i;
for (i=0 ; i<8 && str[i] ; ++i)
parseStr[i] = str[i];
parseStr[i] = '\0';
2017-01-28 23:27:48 -08:00
return strtoul(parseStr, nullptr, 16);
}
static std::u16string::const_iterator SkipCommas(std::u16string& ret,
const std::u16string& str,
std::u16string::const_iterator it,
size_t count)
{
for (size_t i=0 ; i<count ; ++i)
{
auto cpos = str.find(u',', it - str.begin());
if (cpos == std::u16string::npos)
return str.end();
auto end = str.begin() + cpos + 1;
ret.insert(ret.end(), it, end);
it = end;
}
return it;
}
static std::u16string::const_iterator UncookTextureList(std::u16string& ret,
const std::u16string& str,
std::u16string::const_iterator it)
{
while (true)
{
UniqueID32 id = ParseTag(&*it);
hecl::ProjectPath path = UniqueIDBridge::TranslatePakIdToPath(id);
ret.append(hecl::UTF8ToChar16(path ? path.getRelativePathUTF8() : id.toString()));
it += 8;
if (*it == u';')
{
ret.push_back(u';');
return it + 1;
}
else if (*it == u',')
{
ret.push_back(u',');
++it;
}
else
{
break;
}
}
/* Failsafe */
auto scpos = str.find(u';', it - str.begin());
if (scpos == std::u16string::npos)
return str.end();
return str.begin() + scpos + 1;
}
static std::u16string::const_iterator CookTextureList(std::u16string& ret,
const std::u16string& str,
std::u16string::const_iterator it)
{
while (true)
{
2017-01-28 19:58:16 -08:00
auto end = str.find_first_of(u",;", it - str.begin());
if (end == std::u16string::npos)
2017-01-28 19:58:16 -08:00
Log.report(logvisor::Fatal,
"Missing comma/semicolon token while pasing font tag");
auto endIt = str.begin() + end;
hecl::ProjectPath path =
UniqueIDBridge::MakePathFromString<UniqueID32>(
hecl::Char16ToUTF8(std::u16string(it, endIt)));
ret.append(hecl::UTF8ToChar16(UniqueID32(path).toString()));
it = endIt;
if (*it == u';')
{
ret.push_back(u';');
return it + 1;
}
else if (*it == u',')
{
ret.push_back(u',');
++it;
}
else
{
break;
}
}
/* Failsafe */
auto scpos = str.find(u';', it - str.begin());
if (scpos == std::u16string::npos)
return str.end();
return str.begin() + scpos + 1;
}
static std::u16string UncookString(const std::u16string& str)
{
std::u16string ret;
ret.reserve(str.size());
for (auto it = str.begin() ; it != str.end() ;)
{
if (*it == u'&')
{
ret.push_back(u'&');
++it;
if (!str.compare(it - str.begin(), 5, u"image"))
{
ret.append(u"image=");
it += 6;
if (!str.compare(it - str.begin(), 1, u"A"))
{
it = SkipCommas(ret, str, it, 2);
it = UncookTextureList(ret, str, it);
continue;
}
else if (!str.compare(it - str.begin(), 2, u"SA"))
{
it = SkipCommas(ret, str, it, 4);
it = UncookTextureList(ret, str, it);
continue;
}
else if (!str.compare(it - str.begin(), 2, u"SI"))
{
it = SkipCommas(ret, str, it, 3);
it = UncookTextureList(ret, str, it);
continue;
}
}
else if (!str.compare(it - str.begin(), 4, u"font"))
{
ret.append(u"font=");
it += 5;
UniqueID32 id = ParseTag(&*it);
hecl::ProjectPath path = UniqueIDBridge::TranslatePakIdToPath(id, true);
ret.append(hecl::UTF8ToChar16(path ? path.getRelativePathUTF8() : id.toString()));
ret.push_back(u';');
auto scpos = str.find(u';', it - str.begin());
if (scpos == std::u16string::npos)
it = str.end();
else
it = str.begin() + scpos + 1;
}
else
{
auto scpos = str.find(u';', it - str.begin());
if (scpos == std::u16string::npos)
{
it = str.end();
}
else
{
auto end = str.begin() + scpos + 1;
ret.insert(ret.end(), it, end);
it = end;
}
}
}
else
{
ret.push_back(*it);
++it;
}
}
return ret;
}
static std::u16string CookString(const std::u16string& str)
{
std::u16string ret;
ret.reserve(str.size());
for (auto it = str.begin() ; it != str.end() ;)
{
if (*it == u'&')
{
ret.push_back(u'&');
++it;
if (!str.compare(it - str.begin(), 5, u"image"))
{
ret.append(u"image=");
it += 6;
if (!str.compare(it - str.begin(), 1, u"A"))
{
it = SkipCommas(ret, str, it, 2);
it = CookTextureList(ret, str, it);
continue;
}
else if (!str.compare(it - str.begin(), 2, u"SA"))
{
it = SkipCommas(ret, str, it, 4);
it = CookTextureList(ret, str, it);
continue;
}
else if (!str.compare(it - str.begin(), 2, u"SI"))
{
it = SkipCommas(ret, str, it, 3);
it = CookTextureList(ret, str, it);
continue;
}
}
else if (!str.compare(it - str.begin(), 4, u"font"))
{
ret.append(u"font=");
it += 5;
2017-01-26 18:22:52 -08:00
auto scpos = str.find(u';', it - str.begin());
if (scpos == std::u16string::npos)
Log.report(logvisor::Fatal, "Missing semicolon token while pasing font tag");
hecl::ProjectPath path =
UniqueIDBridge::MakePathFromString<UniqueID32>(
2017-01-26 18:22:52 -08:00
hecl::Char16ToUTF8(std::u16string(it, str.begin() + scpos)));
ret.append(hecl::UTF8ToChar16(UniqueID32(path).toString()));
ret.push_back(u';');
2017-01-26 18:22:52 -08:00
it = str.begin() + scpos + 1;
}
else
{
auto scpos = str.find(u';', it - str.begin());
if (scpos == std::u16string::npos)
{
it = str.end();
}
else
{
auto end = str.begin() + scpos + 1;
ret.insert(ret.end(), it, end);
it = end;
}
}
}
else
{
ret.push_back(*it);
++it;
}
}
return ret;
}
2016-03-04 15:04:53 -08:00
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
2016-08-16 22:40:25 -07:00
std::vector<std::pair<FourCC, atUint32>> readLangs;
readLangs.reserve(langCount);
for (atUint32 l=0 ; l<langCount ; ++l)
{
2015-08-22 23:42:29 -07:00
DNAFourCC lang;
lang.read(reader);
2016-08-16 22:40:25 -07:00
atUint32 off = reader.readUint32Big();
readLangs.emplace_back(lang, off);
}
2015-07-09 22:28:08 -07:00
2016-08-16 22:40:25 -07:00
atUint32 tablesStart = reader.position();
2015-07-09 22:28:08 -07:00
langs.clear();
2016-08-16 22:40:25 -07:00
langs.reserve(skLanguages.size());
for (const std::pair<FourCC, atUint32>& lang : readLangs)
2015-07-09 22:28:08 -07:00
{
2017-01-23 23:41:33 -08:00
std::vector<std::u16string> strs;
2016-08-16 22:40:25 -07:00
reader.seek(tablesStart + lang.second, athena::SeekOrigin::Begin);
reader.readUint32Big(); // table size
atUint32 langStart = reader.position();
for (atUint32 s=0 ; s<strCount ; ++s)
2016-08-16 22:40:25 -07:00
{
atUint32 strOffset = reader.readUint32Big();
atUint32 tmpOffset = reader.position();
reader.seek(langStart + strOffset, athena::SeekOrigin::Begin);
strs.emplace_back(UncookString(reader.readU16StringBig()));
2016-08-16 22:40:25 -07:00
reader.seek(tmpOffset, athena::SeekOrigin::Begin);
}
langs.emplace_back(lang.first, strs);
2015-07-09 22:28:08 -07:00
}
langMap.clear();
langMap.reserve(langCount);
2017-01-23 23:41:33 -08:00
for (std::pair<FourCC, std::vector<std::u16string>>& item : langs)
langMap.emplace(item.first, &item.second);
}
2015-07-09 22:28:08 -07:00
2016-03-04 15:04:53 -08:00
void STRG::read(athena::io::IStreamReader& reader)
{
atUint32 magic = reader.readUint32Big();
if (magic != 0x87654321)
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Error, "invalid STRG magic");
atUint32 version = reader.readUint32Big();
if (version != 0)
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Error, "invalid STRG version");
_read(reader);
2015-07-09 22:28:08 -07:00
}
2016-03-04 15:04:53 -08:00
void STRG::write(athena::io::IStreamWriter& writer) const
2015-07-09 22:28:08 -07:00
{
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
2017-01-26 18:22:52 -08:00
std::vector<std::u16string> strings;
strings.reserve(strCount * langs.size());
atUint32 offset = 0;
2017-01-23 23:41:33 -08:00
for (const std::pair<FourCC, std::vector<std::u16string>>& 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
{
2017-01-26 18:22:52 -08:00
std::u16string str = CookString(lang.second[s]);
atUint32 chCount = str.size();
if (s < langStrCount)
2016-08-16 22:40:25 -07:00
offset += (chCount + 1) * 2;
2015-07-09 22:28:08 -07:00
else
offset += 1;
2017-01-26 18:22:52 -08:00
strings.push_back(std::move(str));
2015-07-09 22:28:08 -07:00
}
}
2017-01-26 18:22:52 -08:00
auto langIt = strings.cbegin();
2017-01-23 23:41:33 -08:00
for (const std::pair<FourCC, std::vector<std::u16string>>& lang : langs)
2015-07-09 22:28:08 -07:00
{
atUint32 langStrCount = lang.second.size();
atUint32 tableSz = strCount * 4;
2017-01-26 18:22:52 -08:00
auto strIt = langIt;
for (atUint32 s=0 ; s<strCount ; ++s)
{
if (s < langStrCount)
2017-01-26 18:22:52 -08:00
tableSz += ((strIt++)->size() + 1) * 2;
else
tableSz += 1;
}
writer.writeUint32Big(tableSz);
2015-07-09 22:28:08 -07:00
offset = strCount * 4;
2017-01-26 18:22:52 -08:00
strIt = langIt;
for (atUint32 s=0 ; s<strCount ; ++s)
2015-07-09 22:28:08 -07:00
{
writer.writeUint32Big(offset);
if (s < langStrCount)
2017-01-26 18:22:52 -08:00
offset += ((strIt++)->size() + 1) * 2;
2015-07-09 22:28:08 -07:00
else
offset += 1;
}
2017-01-26 18:22:52 -08:00
strIt = langIt;
for (atUint32 s=0 ; s<strCount ; ++s)
2015-07-09 22:28:08 -07:00
{
if (s < langStrCount)
2017-01-26 18:22:52 -08:00
writer.writeU16StringBig(*strIt++);
2015-07-09 22:28:08 -07:00
else
writer.writeUByte(0);
}
2017-01-26 18:22:52 -08:00
langIt = strIt;
2015-07-09 22:28:08 -07:00
}
}
size_t STRG::binarySize(size_t __isz) const
{
__isz += 16;
__isz += langs.size() * 12;
size_t strCount = STRG::count();
__isz += langs.size() * strCount * 4;
2017-01-23 23:41:33 -08:00
for (const std::pair<FourCC, std::vector<std::u16string>>& lang : langs)
{
atUint32 langStrCount = lang.second.size();
for (atUint32 s=0 ; s<strCount ; ++s)
{
if (s < langStrCount)
2017-01-26 18:22:52 -08:00
__isz += (CookString(lang.second[s]).size() + 1) * 2;
else
__isz += 1;
}
}
return __isz;
}
2016-03-04 15:04:53 -08:00
void STRG::read(athena::io::YAMLDocReader& reader)
2015-07-31 17:38:35 -07:00
{
2016-03-04 15:04:53 -08:00
const athena::io::YAMLNode* root = reader.getRootNode();
2015-07-31 17:38:35 -07:00
/* Validate Pass */
if (root->m_type == YAML_MAPPING_NODE)
{
for (const auto& lang : root->m_mapChildren)
{
2016-08-16 22:40:25 -07:00
if (lang.first == "DNAType")
continue;
2015-07-31 17:38:35 -07:00
if (lang.first.size() != 4)
{
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Warning, "STRG language string '%s' must be exactly 4 characters; skipping", lang.first.c_str());
2015-07-31 17:38:35 -07:00
return;
}
if (lang.second->m_type != YAML_SEQUENCE_NODE)
{
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Warning, "STRG language string '%s' must contain a sequence; skipping", lang.first.c_str());
2015-07-31 17:38:35 -07:00
return;
}
for (const auto& str : lang.second->m_seqChildren)
{
if (str->m_type != YAML_SCALAR_NODE)
{
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Warning, "STRG language '%s' must contain all scalars; skipping", lang.first.c_str());
2015-07-31 17:38:35 -07:00
return;
}
}
}
}
else
{
2016-03-04 15:04:53 -08:00
Log.report(logvisor::Warning, "STRG must have a mapping root node; skipping");
2015-07-31 17:38:35 -07:00
return;
}
/* Read Pass */
langs.clear();
for (const auto& lang : root->m_mapChildren)
{
2016-08-16 22:40:25 -07:00
if (lang.first == "DNAType")
continue;
2017-01-23 23:41:33 -08:00
std::vector<std::u16string> strs;
2015-07-31 17:38:35 -07:00
for (const auto& str : lang.second->m_seqChildren)
2017-01-23 23:41:33 -08:00
strs.emplace_back(hecl::UTF8ToChar16(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);
}
2016-03-04 15:04:53 -08:00
void STRG::write(athena::io::YAMLDocWriter& writer) const
2015-07-31 17:38:35 -07:00
{
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());
2017-01-23 23:41:33 -08:00
for (const std::u16string& str : lang.second)
writer.writeU16String(nullptr, str);
2015-07-31 17:38:35 -07:00
writer.leaveSubVector();
}
}
2015-09-30 17:40:21 -07:00
const char* STRG::DNAType()
{
2016-03-04 15:04:53 -08:00
return "urde::DNAMP1::STRG";
2015-09-30 17:40:21 -07:00
}
2015-07-09 22:28:08 -07:00
}
}