Common: add json utility functions for Vec3 serialization

This commit is contained in:
iwubcode
2024-02-16 22:13:20 -06:00
parent 7d6a5d3665
commit edbf8f1772
2 changed files with 39 additions and 1 deletions

View File

@ -3,10 +3,13 @@
#pragma once
#include <span>
#include <string>
#include <picojson.h>
#include "Common/MathUtil.h"
#include "Common/Matrix.h"
// Ideally this would use a concept like, 'template <std::ranges::range Range>' to constrain it,
// but unfortunately we'd need to require clang 15 for that, since the ranges library isn't
// fully implemented until then, but this should suffice.
@ -24,3 +27,18 @@ picojson::array ToJsonArray(const Range& data)
return result;
}
template <typename Type>
Type ReadNumericOrDefault(const picojson::object& obj, const std::string& key,
Type default_value = Type{})
{
const auto it = obj.find(key);
if (it == obj.end())
return default_value;
if (!it->second.is<double>())
return default_value;
return MathUtil::SaturatingCast<Type>(it->second.get<double>());
}
picojson::object ToJsonObject(const Common::Vec3& vec);
void FromJson(const picojson::object& obj, Common::Vec3& vec);