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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
#include "wall-atlas.hpp"
#include "compat/exception.hpp"
#include "src/tile-defs.hpp"
#include <utility>
#include <Corrade/Containers/ArrayViewStl.h>
#include <Corrade/Containers/StridedArrayView.h>
#include <Magnum/ImageView.h>
#include <Magnum/GL/TextureFormat.h>
namespace floormat {
wall_atlas::wall_atlas() noexcept = default;
wall_atlas::~wall_atlas() noexcept = default;
#if 0
void wall_atlas::validate(const wall_atlas& a, const ImageView2D& img) noexcept(false)
{
// todo
const auto pixels = img.pixels();
const auto size = pixels.size();
const auto width = size[1], height = size[0];
fm_soft_assert(width * height > 0);
for (const auto& frame : a.raw_frame_array())
{
fm_soft_assert(frame.offset < Vector2ui{(unsigned)width, (unsigned)height});
fm_soft_assert((int)frame.offset.y() + iTILE_SIZE.z() <= (int)height);
fm_soft_assert((int)frame.offset.x() < iTILE_SIZE2.x());
// todo check frame offset + size based on wall_atlas::expected_size()
}
const auto frame_count = a.raw_frame_array().size();
bool got_group = false;
for (auto [_str, _group, tag] : Direction::groups)
{
const auto* dir = a.direction((size_t)tag);
if (!dir)
continue;
const auto* g = a.group(dir, tag);
if (!g)
continue;
got_group = true;
fm_soft_assert(g->count > 0 == g->index < (uint32_t)-1);
if (g->count > 0)
{
fm_soft_assert(g->index < frame_count);
fm_soft_assert(g->index + g->count <= frame_count);
}
}
fm_soft_assert(got_group);
}
#endif
Vector2ui wall_atlas::expected_size(unsigned depth, Group_ group)
{
constexpr auto size = Vector3ui{iTILE_SIZE};
constexpr auto half_tile = size.x()/2u;
static_assert(size.x() == size.y());
fm_assert(depth > 0 && depth < 1<<15);
CORRADE_ASSUME(group < Group_::COUNT);
switch (group)
{
using enum Group_;
case overlay:
case wall:
return { size.x(), size.z() };
case top:
case side:
return { depth, size.z() };
case corner_L:
return { half_tile, size.z() };
case corner_R:
return { size.x() - half_tile, size.z() };
default:
fm_assert(false);
}
}
wall_atlas::wall_atlas(wall_atlas_def def, String path, const ImageView2D& img)
: _dir_array{std::move(def.direction_array)},
_frame_array{std::move(def.frames)},
_info{std::move(def.header)}, _path{std::move(path)},
_direction_map{def.direction_map }
{
_texture.setLabel(_path)
.setWrapping(GL::SamplerWrapping::ClampToEdge)
.setMagnificationFilter(GL::SamplerFilter::Nearest)
.setMinificationFilter(GL::SamplerFilter::Linear)
.setMaxAnisotropy(1) // todo?
.setBorderColor(Color4{1, 0, 0, 1})
.setStorage(1, GL::textureFormat(img.format()), img.size())
.setSubImage(0, {}, img);
}
auto wall_atlas::get_Direction(Direction_ num) const -> Direction*
{
fm_debug_assert(num < Direction_::COUNT);
if (auto DAI = _direction_map[(uint8_t)num])
return const_cast<Direction*>(&_dir_array[DAI.val]);
else [[unlikely]]
return {};
}
auto wall_atlas::frames(const Group& group) const -> ArrayView<const Frame>
{
if (_frame_array.empty()) [[unlikely]]
return {};
const auto size = _frame_array.size(); (void)size;
const auto index = group.index, count = group.count;
fm_assert(index < size && index <= index + count && index + count <= size);
return { &_frame_array[index], count };
}
auto wall_atlas::group(Direction_ dir, Group_ gr) const -> const Group* { return group((size_t)dir, (size_t)gr); }
auto wall_atlas::group(size_t dir, Group_ gr) const -> const Group* { return group(dir, (size_t)gr); }
auto wall_atlas::group(size_t dir, size_t group) const -> const Group*
{
fm_assert((Group_)group < Group_::COUNT);
const auto* const set_ = direction(dir);
if (!set_)
return {};
const auto& set = *set_;
const auto memfn = set.groups[group].member;
const Group& ret = set.*memfn;
#if 0
if (ret.is_empty())
return {};
#endif
return &ret;
}
auto wall_atlas::group(const Direction& dir, Group_ tag) const -> const Group*
{
fm_assert(tag < Group_::COUNT);
const auto memfn = dir.groups[(size_t)tag].member;
const Group& ret = dir.*memfn;
#if 0
if (ret.is_empty())
return {};
#endif
return &ret;
}
auto wall_atlas::direction(size_t dir) const -> const Direction*
{
return get_Direction(Direction_(dir));
}
uint8_t wall_atlas::direction_count() const { return (uint8_t)_dir_array.size(); }
auto wall_atlas::raw_frame_array() const -> ArrayView<const Frame> { return _frame_array; }
GL::Texture2D& wall_atlas::texture() { fm_debug_assert(_texture.id()); return _texture; }
size_t wall_atlas::enum_to_index(enum rotation r)
{
static_assert(rotation_COUNT == rotation{8});
fm_debug_assert(r < rotation_COUNT);
auto x = uint8_t(r);
x >>= 1;
return x;
}
} // namespace floormat
namespace floormat::Wall {
const Group& Direction::group(Group_ i) const { return const_cast<Direction&>(*this).group((size_t)i); }
const Group& Direction::group(size_t i) const { return const_cast<Direction&>(*this).group(i); }
Group& Direction::group(Group_ i) { return group((size_t)i); }
Group& Direction::group(size_t i)
{
fm_assert(i < (size_t)Group_::COUNT);
auto ptr = groups[i].member;
return this->*ptr;
}
bool Frame::operator==(const Frame&) const noexcept = default;
bool Direction::operator==(const Direction&) const noexcept = default;
bool Info::operator==(const floormat::Wall::Info&) const noexcept = default;
bool DirArrayIndex::operator==(const floormat::Wall::DirArrayIndex&) const noexcept = default;
#if 1
bool Group::operator==(const Group&) const noexcept = default;
#else
bool Group::operator==(const Group& other) const noexcept
{
bool ret = index == other.index && count == other.count &&
pixel_size == other.pixel_size &&
from_rotation == other.from_rotation &&
mirrored == other.mirrored && default_tint == other.default_tint;
if (!ret)
return ret;
constexpr auto eps = 1e-5f;
if (auto diff = Math::abs(Vector4(tint_mult) - Vector4(other.tint_mult)).sum(); diff > eps)
return false;
if (auto diff = Math::abs(Vector3(tint_add) - Vector3(other.tint_add)).sum(); diff > eps)
return false;
return true;
}
#endif
} // namespace floormat::Wall
|