1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-27 22:49:25 +02:00

Advance Json serializer

* added bool, numeric and string support
* added some enum support
* PoC implementation of logical id condition
* Refactoring
This commit is contained in:
AlexVinS
2016-02-14 14:22:46 +03:00
parent 67b03b9658
commit ec760632a6
11 changed files with 517 additions and 248 deletions

View File

@@ -15,9 +15,51 @@
#include "../JsonNode.h"
JsonSerializer::JsonSerializer(JsonNode & root_):
JsonSerializeFormat(root_)
JsonSerializeFormat(root_, true)
{
}
void JsonSerializer::serializeBool(const std::string & fieldName, bool & value)
{
current->operator[](fieldName).Bool() = value;
}
void JsonSerializer::serializeBoolEnum(const std::string & fieldName, const std::string & trueValue, const std::string & falseValue, bool & value)
{
current->operator[](fieldName).String() = value ? trueValue : falseValue;
}
void JsonSerializer::serializeFloat(const std::string & fieldName, double & value)
{
current->operator[](fieldName).Float() = value;
}
void JsonSerializer::serializeIntEnum(const std::string & fieldName, const std::vector<std::string> & enumMap, const si32 defaultValue, si32 & value)
{
current->operator[](fieldName).String() = enumMap.at(value);
}
void JsonSerializer::serializeLIC(const std::string & fieldName, const TDecoder & decoder, const TEncoder & encoder, const std::vector<bool> & standard, std::vector<bool> & value)
{
assert(standard.size() == value.size());
if(standard == value)
return;
auto & target = current->operator[](fieldName)["anyOf"].Vector();
for(si32 idx = 0; idx < value.size(); idx ++)
{
if(value[idx])
{
JsonNode val(JsonNode::DATA_STRING);
val.String() = encoder(idx);
target.push_back(std::move(val));
}
}
}
void JsonSerializer::serializeString(const std::string & fieldName, std::string & value)
{
current->operator[](fieldName).String() = value;
}