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
51
52
53
54
55
56
57
58
59
60
61
62
|
#include "src/tile-atlas.hpp"
#include "serialize/tile-atlas.hpp"
#include "serialize/corrade-string.hpp"
#include "serialize/magnum-vector2i.hpp"
#include "loader/loader.hpp"
#include "serialize/pass-mode.hpp"
#include <Corrade/Containers/Optional.h>
#include <Corrade/Containers/String.h>
#include <nlohmann/json.hpp>
using namespace floormat;
namespace {
struct proxy {
String name;
Vector2ub size;
Optional<pass_mode> passability;
};
NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(proxy, name, size)
} // namespace
namespace nlohmann {
void adl_serializer<std::shared_ptr<tile_atlas>>::to_json(json& j, const std::shared_ptr<const tile_atlas>& x)
{
using nlohmann::to_json;
if (!x)
j = nullptr;
else
{
to_json(j, proxy{x->name(), x->num_tiles2(), NullOpt});
if (auto p = x->pass_mode())
j["pass-mode"] = *p;
}
}
void adl_serializer<std::shared_ptr<tile_atlas>>::from_json(const json& j, std::shared_ptr<tile_atlas>& val)
{
if (j.is_null())
val = nullptr;
else
{
using nlohmann::from_json;
proxy x;
from_json(j, x);
Optional<pass_mode> p;
if (j.contains("pass-mode"))
p = {InPlaceInit, j["pass-mode"]};
val = loader.tile_atlas(x.name, x.size, p);
if (auto p2 = val->pass_mode(); p && p2 != p)
{
int m = p2 ? int(*p2) : -1;
const auto name = val->name();
fm_throw("atlas {} wrong pass mode {} should be {}"_cf, StringView{name.data(), name.size()}, m, std::uint8_t(*p));
}
}
}
} // namespace nlohmann
|