mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 15:59:23 +01:00
Merge pull request #12652 from iwubcode/json_util_update
Common: add even more json utility functions
This commit is contained in:
commit
f535b61d5d
@ -14,7 +14,27 @@ picojson::object ToJsonObject(const Common::Vec3& vec)
|
|||||||
|
|
||||||
void FromJson(const picojson::object& obj, Common::Vec3& vec)
|
void FromJson(const picojson::object& obj, Common::Vec3& vec)
|
||||||
{
|
{
|
||||||
vec.x = ReadNumericOrDefault<float>(obj, "x");
|
vec.x = ReadNumericFromJson<float>(obj, "x").value_or(0.0f);
|
||||||
vec.y = ReadNumericOrDefault<float>(obj, "y");
|
vec.y = ReadNumericFromJson<float>(obj, "y").value_or(0.0f);
|
||||||
vec.z = ReadNumericOrDefault<float>(obj, "z");
|
vec.z = ReadNumericFromJson<float>(obj, "z").value_or(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::optional<std::string> ReadStringFromJson(const picojson::object& obj, const std::string& key)
|
||||||
|
{
|
||||||
|
const auto it = obj.find(key);
|
||||||
|
if (it == obj.end())
|
||||||
|
return std::nullopt;
|
||||||
|
if (!it->second.is<std::string>())
|
||||||
|
return std::nullopt;
|
||||||
|
return it->second.to_str();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::optional<bool> ReadBoolFromJson(const picojson::object& obj, const std::string& key)
|
||||||
|
{
|
||||||
|
const auto it = obj.find(key);
|
||||||
|
if (it == obj.end())
|
||||||
|
return std::nullopt;
|
||||||
|
if (!it->second.is<bool>())
|
||||||
|
return std::nullopt;
|
||||||
|
return it->second.get<bool>();
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,9 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <optional>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <type_traits>
|
||||||
|
|
||||||
#include <picojson.h>
|
#include <picojson.h>
|
||||||
|
|
||||||
@ -17,28 +19,40 @@
|
|||||||
template <typename Range>
|
template <typename Range>
|
||||||
picojson::array ToJsonArray(const Range& data)
|
picojson::array ToJsonArray(const Range& data)
|
||||||
{
|
{
|
||||||
|
using RangeUnderlyingType = typename Range::value_type;
|
||||||
picojson::array result;
|
picojson::array result;
|
||||||
result.reserve(std::size(data));
|
result.reserve(std::size(data));
|
||||||
|
|
||||||
for (const auto& value : data)
|
for (const auto& value : data)
|
||||||
|
{
|
||||||
|
if constexpr (std::is_integral_v<RangeUnderlyingType> ||
|
||||||
|
std::is_floating_point_v<RangeUnderlyingType>)
|
||||||
{
|
{
|
||||||
result.emplace_back(static_cast<double>(value));
|
result.emplace_back(static_cast<double>(value));
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result.emplace_back(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Type>
|
template <typename Type>
|
||||||
Type ReadNumericOrDefault(const picojson::object& obj, const std::string& key,
|
std::optional<Type> ReadNumericFromJson(const picojson::object& obj, const std::string& key)
|
||||||
Type default_value = Type{})
|
|
||||||
{
|
{
|
||||||
const auto it = obj.find(key);
|
const auto it = obj.find(key);
|
||||||
if (it == obj.end())
|
if (it == obj.end())
|
||||||
return default_value;
|
return std::nullopt;
|
||||||
if (!it->second.is<double>())
|
if (!it->second.is<double>())
|
||||||
return default_value;
|
return std::nullopt;
|
||||||
return MathUtil::SaturatingCast<Type>(it->second.get<double>());
|
return MathUtil::SaturatingCast<Type>(it->second.get<double>());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::optional<std::string> ReadStringFromJson(const picojson::object& obj, const std::string& key);
|
||||||
|
|
||||||
|
std::optional<bool> ReadBoolFromJson(const picojson::object& obj, const std::string& key);
|
||||||
|
|
||||||
picojson::object ToJsonObject(const Common::Vec3& vec);
|
picojson::object ToJsonObject(const Common::Vec3& vec);
|
||||||
void FromJson(const picojson::object& obj, Common::Vec3& vec);
|
void FromJson(const picojson::object& obj, Common::Vec3& vec);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user