ZoneLoading: Add dumper for Stringtable assets

This commit is contained in:
Jan
2019-11-18 21:44:51 +01:00
parent 1d609cc2d2
commit 97590148ad
2 changed files with 27 additions and 2 deletions

View File

@ -9,5 +9,29 @@ std::string AssetDumperStringTable::GetFileNameForAsset(StringTable* asset)
void AssetDumperStringTable::DumpAsset(StringTable* asset, FileAPI::File* out)
{
// TODO
char separator[]{ ',' };
char newLine[]{ '\n' };
for(int row = 0; row < asset->rowCount; row++)
{
for(int column = 0; column < asset->columnCount; column++)
{
const auto cell = &asset->values[column + row * asset->columnCount];
if (column != 0)
{
out->Write(separator, 1, sizeof separator);
}
if(cell->string && *cell->string)
{
out->Write(cell->string, 1, strlen(cell->string));
}
}
if (row != asset->rowCount - 1)
{
out->Write(newLine, 1, sizeof newLine);
}
}
}