2019-08-28 02:29:02 -04:00
|
|
|
#include "Globals.h"
|
|
|
|
#include "BlockTypePalette.h"
|
2019-12-02 10:45:55 -05:00
|
|
|
#include "json/value.h"
|
|
|
|
#include "json/reader.h"
|
|
|
|
|
2019-08-28 02:29:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-01 08:41:46 -05:00
|
|
|
BlockTypePalette::BlockTypePalette():
|
|
|
|
mMaxIndex(0)
|
2019-08-28 02:29:02 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UInt32 BlockTypePalette::index(const AString & aBlockTypeName, const BlockState & aBlockState)
|
|
|
|
{
|
|
|
|
auto idx = maybeIndex(aBlockTypeName, aBlockState);
|
|
|
|
if (idx.second)
|
|
|
|
{
|
|
|
|
return idx.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not found, append:
|
2019-12-01 08:41:46 -05:00
|
|
|
auto index = mMaxIndex++;
|
|
|
|
mBlockToNumber[aBlockTypeName][aBlockState] = index;
|
|
|
|
mNumberToBlock[index] = {aBlockTypeName, aBlockState};
|
|
|
|
return index;
|
2019-08-28 02:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::pair<UInt32, bool> BlockTypePalette::maybeIndex(const AString & aBlockTypeName, const BlockState & aBlockState) const
|
|
|
|
{
|
2019-12-01 08:41:46 -05:00
|
|
|
auto itr1 = mBlockToNumber.find(aBlockTypeName);
|
|
|
|
if (itr1 == mBlockToNumber.end())
|
2019-08-28 02:29:02 -04:00
|
|
|
{
|
2019-12-01 08:41:46 -05:00
|
|
|
return {0, false};
|
|
|
|
}
|
|
|
|
auto itr2 = itr1->second.find(aBlockState);
|
|
|
|
if (itr2 == itr1->second.end())
|
|
|
|
{
|
|
|
|
return {0, false};
|
2019-08-28 02:29:02 -04:00
|
|
|
}
|
2019-12-01 08:41:46 -05:00
|
|
|
return {itr2->second, true};
|
2019-08-28 02:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UInt32 BlockTypePalette::count() const
|
|
|
|
{
|
2019-12-01 08:41:46 -05:00
|
|
|
return static_cast<UInt32>(mNumberToBlock.size());
|
2019-08-28 02:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const std::pair<AString, BlockState> & BlockTypePalette::entry(UInt32 aIndex) const
|
|
|
|
{
|
2019-12-01 08:41:46 -05:00
|
|
|
auto itr = mNumberToBlock.find(aIndex);
|
|
|
|
if (itr == mNumberToBlock.end())
|
|
|
|
{
|
|
|
|
throw NoSuchIndexException(aIndex);
|
|
|
|
}
|
|
|
|
return itr->second;
|
2019-08-28 02:29:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-01 08:41:46 -05:00
|
|
|
std::map<UInt32, UInt32> BlockTypePalette::createTransformMapAddMissing(const BlockTypePalette & aFrom)
|
2019-08-28 02:29:02 -04:00
|
|
|
{
|
|
|
|
std::map<UInt32, UInt32> res;
|
2019-12-01 08:41:46 -05:00
|
|
|
for (const auto & fromEntry: aFrom.mNumberToBlock)
|
2019-08-28 02:29:02 -04:00
|
|
|
{
|
2019-12-01 08:41:46 -05:00
|
|
|
auto fromIndex = fromEntry.first;
|
|
|
|
const auto & blockTypeName = fromEntry.second.first;
|
|
|
|
const auto & blockState = fromEntry.second.second;
|
|
|
|
res[fromIndex] = index(blockTypeName, blockState);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::map<UInt32, UInt32> BlockTypePalette::createTransformMapWithFallback(const BlockTypePalette & aFrom, UInt32 aFallbackIndex) const
|
|
|
|
{
|
|
|
|
std::map<UInt32, UInt32> res;
|
|
|
|
for (const auto & fromEntry: aFrom.mNumberToBlock)
|
|
|
|
{
|
|
|
|
auto fromIndex = fromEntry.first;
|
|
|
|
const auto & blockTypeName = fromEntry.second.first;
|
|
|
|
const auto & blockState = fromEntry.second.second;
|
|
|
|
auto thisIndex = maybeIndex(blockTypeName, blockState);
|
|
|
|
if (thisIndex.second)
|
|
|
|
{
|
|
|
|
// The entry was found in this
|
|
|
|
res[fromIndex] = thisIndex.first;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The entry was NOT found in this, replace with fallback:
|
|
|
|
res[fromIndex] = aFallbackIndex;
|
|
|
|
}
|
2019-08-28 02:29:02 -04:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2019-12-02 10:45:55 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BlockTypePalette::loadFromString(const AString & aString)
|
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
static const AString hdrTsvRegular = "BlockTypePalette";
|
|
|
|
static const AString hdrTsvUpgrade = "UpgradeBlockTypePalette";
|
|
|
|
|
|
|
|
// Detect format by checking the header line (none -> JSON):
|
|
|
|
if (aString.substr(0, hdrTsvRegular.length()) == hdrTsvRegular)
|
|
|
|
{
|
|
|
|
return loadFromTsv(aString, false);
|
|
|
|
}
|
|
|
|
else if (aString.substr(0, hdrTsvUpgrade.length()) == hdrTsvUpgrade)
|
|
|
|
{
|
|
|
|
return loadFromTsv(aString, true);
|
|
|
|
}
|
2019-12-02 10:45:55 -05:00
|
|
|
return loadFromJsonString(aString);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BlockTypePalette::loadFromJsonString(const AString & aJsonPalette)
|
|
|
|
{
|
|
|
|
// Parse the string into JSON object:
|
|
|
|
Json::Value root;
|
|
|
|
Json::CharReaderBuilder builder;
|
|
|
|
std::unique_ptr<Json::CharReader> reader(builder.newCharReader());
|
|
|
|
std::string errs;
|
|
|
|
if (!reader->parse(aJsonPalette.data(), aJsonPalette.data() + aJsonPalette.size(), &root, &errs))
|
|
|
|
{
|
|
|
|
throw LoadFailedException(errs);
|
|
|
|
}
|
|
|
|
|
2019-12-20 16:10:24 -05:00
|
|
|
// Sanity-check the JSON's structure:
|
|
|
|
if (!root.isObject())
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
throw LoadFailedException("Incorrect palette format, expected an object at root.");
|
2019-12-02 10:45:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Load the palette:
|
2019-12-20 16:10:24 -05:00
|
|
|
for (auto itr = root.begin(), end = root.end(); itr != end; ++itr)
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
const auto & blockTypeName = itr.name();
|
|
|
|
const auto & states = (*itr)["states"];
|
|
|
|
if (states == Json::Value())
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
throw LoadFailedException(Printf("Missing \"states\" for block type \"%s\"", blockTypeName));
|
2019-12-02 10:45:55 -05:00
|
|
|
}
|
2019-12-20 16:10:24 -05:00
|
|
|
for (const auto & state: states)
|
|
|
|
{
|
|
|
|
auto id = static_cast<UInt32>(std::stoul(state["id"].asString()));
|
|
|
|
std::map<AString, AString> props;
|
|
|
|
if (state.isMember("properties"))
|
|
|
|
{
|
|
|
|
const auto & properties = state["properties"];
|
|
|
|
if (!properties.isObject())
|
|
|
|
{
|
|
|
|
throw LoadFailedException(Printf("Member \"properties\" is not a JSON object (block type \"%s\", id %u).", blockTypeName, id));
|
|
|
|
}
|
|
|
|
for (const auto & key: properties.getMemberNames())
|
|
|
|
{
|
|
|
|
props[key] = properties[key].asString();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
addMapping(id, blockTypeName, props);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-02 10:45:55 -05:00
|
|
|
|
|
|
|
|
2019-12-20 16:10:24 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BlockTypePalette::loadFromTsv(const AString & aTsvPalette, bool aIsUpgrade)
|
|
|
|
{
|
|
|
|
auto lines = StringSplitAndTrim(aTsvPalette, "\n");
|
|
|
|
|
|
|
|
// Parse the header:
|
|
|
|
int fileVersion = 0;
|
|
|
|
AString commonPrefix;
|
|
|
|
auto numLines = lines.size();
|
|
|
|
for (size_t idx = 1; idx < numLines; ++idx)
|
|
|
|
{
|
|
|
|
const auto & line = lines[idx];
|
|
|
|
if (line.empty())
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
// End of headers, erase them from lines[] and go parse the data
|
|
|
|
lines.erase(lines.begin(), lines.begin() + static_cast<AStringVector::difference_type>(idx) + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto s = StringSplit(line, "\t");
|
|
|
|
if (s.size() != 2)
|
|
|
|
{
|
|
|
|
throw LoadFailedException(Printf("Invalid header format on line %u", idx + 1));
|
|
|
|
}
|
|
|
|
if (s[0] == "FileVersion")
|
|
|
|
{
|
|
|
|
try
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
fileVersion = std::stoi(s[1]);
|
2019-12-02 10:45:55 -05:00
|
|
|
}
|
2019-12-20 16:10:24 -05:00
|
|
|
catch (const std::exception & exc)
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
throw LoadFailedException(Printf("Invalid file version: \"%d\" (%s)", s[1], exc.what()));
|
2019-12-02 10:45:55 -05:00
|
|
|
}
|
|
|
|
}
|
2019-12-20 16:10:24 -05:00
|
|
|
else if (s[0] == "CommonPrefix")
|
|
|
|
{
|
|
|
|
commonPrefix = s[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fileVersion != 1)
|
|
|
|
{
|
|
|
|
throw LoadFailedException(Printf("Unknown file version (%d), only version 1 is supported", fileVersion));
|
|
|
|
}
|
2019-12-02 10:45:55 -05:00
|
|
|
|
2019-12-20 16:10:24 -05:00
|
|
|
// Parse the data:
|
|
|
|
size_t minSplit = aIsUpgrade ? 3 : 2;
|
|
|
|
for (const auto & line: lines)
|
|
|
|
{
|
|
|
|
auto s = StringSplit(line, "\t");
|
|
|
|
auto numSplit = s.size();
|
|
|
|
if (numSplit < minSplit)
|
|
|
|
{
|
|
|
|
throw LoadFailedException(Printf("Not enough values on data line: \"%s\"", line));
|
|
|
|
}
|
|
|
|
UInt32 id;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
id = static_cast<UInt32>(std::stoi(s[0]));
|
|
|
|
}
|
|
|
|
catch (const std::exception & exc)
|
|
|
|
{
|
|
|
|
throw LoadFailedException(Printf("Invalid block ID: \"%s\" (%s)", s[0], exc.what()));
|
|
|
|
}
|
|
|
|
size_t idx = 1;
|
|
|
|
if (aIsUpgrade)
|
|
|
|
{
|
|
|
|
id = id * 16;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
id = id + static_cast<UInt32>(Clamp(std::stoi(s[1]), 0, 15));
|
|
|
|
}
|
|
|
|
catch (const std::exception & exc)
|
|
|
|
{
|
|
|
|
throw LoadFailedException(Printf("Invalid block meta: \"%s\" (%s)", s[1], exc.what()));
|
|
|
|
}
|
|
|
|
idx = 2;
|
|
|
|
}
|
|
|
|
const auto & blockTypeName = s[idx];
|
|
|
|
idx += 1;
|
|
|
|
std::map<AString, AString> state;
|
|
|
|
while (idx + 1 < numSplit)
|
2019-12-02 10:45:55 -05:00
|
|
|
{
|
2019-12-20 16:10:24 -05:00
|
|
|
state[s[idx]] = s[idx + 1];
|
|
|
|
idx += 2;
|
2019-12-02 10:45:55 -05:00
|
|
|
}
|
2019-12-20 16:10:24 -05:00
|
|
|
addMapping(id, commonPrefix + blockTypeName, state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void BlockTypePalette::addMapping(UInt32 aID, const AString & aBlockTypeName, const BlockState & aBlockState)
|
|
|
|
{
|
|
|
|
mNumberToBlock[aID] = {aBlockTypeName, aBlockState};
|
|
|
|
mBlockToNumber[aBlockTypeName][aBlockState] = aID;
|
|
|
|
if (aID > mMaxIndex)
|
|
|
|
{
|
|
|
|
mMaxIndex = aID;
|
|
|
|
}
|
2019-12-02 10:45:55 -05:00
|
|
|
}
|