blob: c7e5205764224c0336e2caa6b96146a1991e17b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#include "src/tile-atlas.hpp"
#include "serialize/tile-atlas.hpp"
#include "serialize/magnum-vector2i.hpp"
#include "loader.hpp"
#include <nlohmann/json.hpp>
namespace Magnum::Examples::Serialize {
struct proxy_atlas final {
std::string name;
Vector2ui num_tiles;
};
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(proxy_atlas, name, num_tiles)
} // namespace Magnum::Examples::Serialize
namespace nlohmann {
using namespace Magnum::Examples;
using namespace Magnum::Examples::Serialize;
using shared_atlas = std::shared_ptr<Magnum::Examples::tile_atlas>;
void adl_serializer<shared_atlas>::to_json(json& j, const shared_atlas& x)
{
if (!x)
j = nullptr;
else {
using nlohmann::to_json;
to_json(j, proxy_atlas{x->name(), x->num_tiles()});
}
}
void adl_serializer<shared_atlas>::from_json(const json& j, shared_atlas& x)
{
proxy_atlas proxy = j;
x = loader.tile_atlas(proxy.name, proxy.num_tiles);
}
} // namespace nlohmann
|