summaryrefslogtreecommitdiffhomepage
path: root/serialize/tile.cpp
blob: 2f414e62c19a505cf05cf939a6c42055b0cfabaa (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
43
44
45
46
47
48
49
50
#include "src/tile.hpp"
#include "src/chunk.hpp"
#include "serialize/tile.hpp"
#include "serialize/tile-atlas.hpp"
#include <tuple>
#include <nlohmann/json.hpp>

namespace Magnum::Examples {

NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(tile_image, atlas, variant)
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(tile, ground_image, wall_north, wall_west, passability)

} // namespace Magnum::Examples

namespace nlohmann {

using namespace Magnum::Examples;

void adl_serializer<tile_image>::to_json(json& j, const tile_image& val) {
    using nlohmann::to_json;
    to_json(j, val);
}

void adl_serializer<tile_image>::from_json(const json& j, tile_image& val) {
    using nlohmann::from_json;
    from_json(j, val);
}

void adl_serializer<tile>::to_json(json& j, const tile& val) {
    using nlohmann::to_json;
    to_json(j, val);
}

void adl_serializer<tile>::from_json(const json& j, tile& val) {
    using nlohmann::from_json;
    from_json(j, val);
}

void adl_serializer<chunk>::to_json(json& j, const chunk& val) {
    using nlohmann::to_json;
    to_json(j, val.tiles());
}

void adl_serializer<chunk>::from_json(const json& j, chunk& val) {
    using nlohmann::from_json;
    std::remove_cvref_t<decltype(val.tiles())> tiles = {};
    tiles = j;
}

} // namespace nlohmann