blob: 2d449aae72e30a18b78744afa92bc3e7f250121e (
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
|
#pragma once
#include "compat/assert.hpp"
#include "tile-defs.hpp"
#include <cstdint>
#include <concepts>
namespace floormat {
struct local_coords final {
std::uint8_t x = 0, y = 0;
explicit constexpr local_coords(std::size_t idx) noexcept;
constexpr local_coords() noexcept = default;
template<std::integral T> requires (sizeof(T) <= sizeof(std::size_t))
constexpr local_coords(T x, T y) noexcept;
constexpr local_coords(std::uint8_t x, std::uint8_t y) noexcept : x{x}, y{y} {}
constexpr std::size_t to_index() const noexcept { return y*TILE_MAX_DIM + x; }
};
constexpr local_coords::local_coords(std::size_t index) noexcept :
x{(std::uint8_t)(index % TILE_MAX_DIM)},
y{(std::uint8_t)(index / TILE_MAX_DIM)}
{
fm_assert(index < TILE_COUNT);
}
template<std::integral T>
requires (sizeof(T) <= sizeof(std::size_t))
constexpr local_coords::local_coords(T x, T y) noexcept
: x{(std::uint8_t)x}, y{(std::uint8_t)y}
{
fm_assert((std::size_t)x < TILE_MAX_DIM && (std::size_t)y < TILE_MAX_DIM);
}
} // namespace floormat
|