#pragma once #include #include #include #include template struct SerializerCallbacks { using Registry = entt::basic_registry; using Handle = entt::basic_handle; // nlohmann // json/msgpack using serialize_json_fn = bool(*)(const Handle h, nlohmann::json& out); entt::dense_map _serl_json; using deserialize_json_fn = bool(*)(Handle h, const nlohmann::json& in); entt::dense_map _deserl_json; template static bool component_get_json(const Handle h, nlohmann::json& j) { if (h.template all_of()) { if constexpr (!std::is_empty_v) { j = h.template get(); } return true; } return false; } template static bool component_emplace_or_replace_json(Handle h, const nlohmann::json& j) { if constexpr (std::is_empty_v) { h.template emplace_or_replace(); // assert empty json? } else { h.template emplace_or_replace(static_cast(j)); } return true; } void registerSerializerJson(serialize_json_fn fn, const entt::type_info& type_info) { _serl_json[type_info.hash()] = fn; } template void registerSerializerJson( serialize_json_fn fn = component_get_json, const entt::type_info& type_info = entt::type_id() ) { registerSerializerJson(fn, type_info); } void registerDeSerializerJson(deserialize_json_fn fn, const entt::type_info& type_info) { _deserl_json[type_info.hash()] = fn; } template void registerDeSerializerJson( deserialize_json_fn fn = component_emplace_or_replace_json, const entt::type_info& type_info = entt::type_id() ) { registerDeSerializerJson(fn, type_info); } };