summaryrefslogtreecommitdiffhomepage
path: root/test/json.cpp
blob: 9c6385307c68950fb25f904ab790fbe417eee4c5 (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
51
52
53
54
55
56
57
58
59
#include "app.hpp"
#include "serialize/tile-atlas.hpp"
#include "serialize/magnum-vector.hpp"
#include "serialize/tile.hpp"
#include "serialize/json-helper.hpp"
#include "compat/assert.hpp"
#include "tile-atlas.hpp"
#include "tile.hpp"
#include "chunk.hpp"
#include "world.hpp"
#include "loader/loader.hpp"
#include "tile-iterator.hpp"
#include <Corrade/Containers/StringView.h>
#include <Corrade/Utility/Path.h>

namespace floormat {

[[maybe_unused]]
static chunk make_test_chunk()
{
    auto metal1 = loader.tile_atlas("metal1", {2, 2}, pass_mode::pass),
         metal2 = loader.tile_atlas("metal2", {2, 2}, pass_mode::blocked),
         tiles = loader.tile_atlas("tiles", {8, 5}, pass_mode::pass);
    constexpr auto N = TILE_MAX_DIM;
    world w;
    chunk c{w, {}};
    for (auto [x, k, pt] : c) {
        x.ground() = { tiles, variant_t(k % tiles->num_tiles()) };
    }
    constexpr auto K = N/2;
    c[{K,   K  }].wall_north() = { metal1, 0 };
    c[{K,   K  }].wall_west()  = { metal2, 0 };
    c[{K,   K+1}].wall_north() = { metal1, 0 };
    c[{K+1, K  }].wall_west()  = { metal2, 0 };
    return c;
}

void test_app::test_json() // NOLINT(readability-convert-member-functions-to-static)
{
    fm_assert(Path::exists(Path::join(loader.TEMP_PATH, "CMakeCache.txt")));
    const auto output_dir = Path::join(loader.TEMP_PATH, "test/."_s);
    {
        auto atlas = loader.tile_atlas("metal1", {2, 2}, pass_mode::pass);
        json_helper::to_json(atlas, Path::join(output_dir, "atlas.json"));
    }
    {
        Magnum::Math::Vector<2, int> v2i_1{1, 2};
        Vector2i v2i_2{2, 3};
        json_helper::to_json(v2i_1, Path::join(output_dir, "vec2i_1.json"));
        json_helper::to_json(v2i_2, Path::join(output_dir, "vec2i_2.json"));
    }
    {
        volatile float zero = 0;
        Magnum::Math::Vector3 vec{0.f/zero, -1.f/zero, 123.f};
        json_helper::to_json(vec, Path::join(output_dir, "vec3_inf.json"));
    }
}

} // namespace floormat