summaryrefslogtreecommitdiffhomepage
path: root/src/global-coords.hpp
blob: 182511ea6c3aa91fc5793103ff3c471db1462543 (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
#pragma once
#include "local-coords.hpp"
#include "compat/assert.hpp"
#include <Magnum/Magnum.h>
#include <Magnum/Math/Vector2.h>

namespace floormat {

struct chunk_coords final {
    std::int16_t x = 0, y = 0;

    constexpr bool operator==(const chunk_coords& other) const noexcept = default;
};

struct global_coords final {
    static constexpr std::uint32_t _0u = 1 << 15;
    static constexpr auto _0s = std::int32_t(_0u);

    std::uint32_t x = _0u, y = _0u;

    constexpr global_coords(chunk_coords c, local_coords xy) :
        x{ std::uint32_t(c.x + _0s) << 4 | (xy.x & 0x0f) },
        y{ std::uint32_t(c.y + _0s) << 4 | (xy.y & 0x0f) }
    {}
    constexpr global_coords(std::uint32_t x, std::uint32_t y) noexcept : x{x}, y{y} {}
    constexpr global_coords(std::int32_t x, std::int32_t y) noexcept :
          x{std::uint32_t(x + _0s)}, y{std::uint32_t(y + _0s)}
    {}
    constexpr global_coords() noexcept = default;

    constexpr local_coords local() const noexcept;
    constexpr chunk_coords chunk() const noexcept;

    constexpr Vector2i to_signed() const noexcept;

    constexpr bool operator==(const global_coords& other) const noexcept = default;
};

constexpr local_coords global_coords::local() const noexcept
{
    return { std::uint8_t(x & 0x0f), std::uint8_t(y & 0x0f), };
}

constexpr chunk_coords global_coords::chunk() const noexcept
{
    return { std::int16_t((x - _0u) >> 4), std::int16_t((y - _0u) >> 4), };
}

constexpr Vector2i global_coords::to_signed() const noexcept
{
    return { std::int32_t(x - _0s), std::int32_t(y - _0s), };
}

} // namespace floormat