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
|
#include "app.hpp"
#include "src/chunk.hpp"
#include "floormat/events.hpp"
#include "floormat/main.hpp"
namespace floormat {
//#define FM_NO_BINDINGS
void app::maybe_initialize_chunk_(const chunk_coords& pos, chunk& c)
{
(void)pos; (void)c;
constexpr auto N = TILE_MAX_DIM;
for (auto [x, k, pt] : c) {
#if defined FM_NO_BINDINGS
const auto& atlas = floor1;
#else
const auto& atlas = pt.x == N/2 || pt.y == N/2 ? _floor2 : _floor1;
#endif
x.ground_image = { atlas, k % atlas->num_tiles() };
}
#ifdef FM_NO_BINDINGS
const auto& wall1 = floor1, wall2 = floor1;
#endif
constexpr auto K = N/2;
c[{K, K }].wall_north = { _wall1, 0 };
c[{K, K }].wall_west = { _wall2, 0 };
c[{K, K+1}].wall_north = { _wall1, 0 };
c[{K+1, K }].wall_west = { _wall2, 0 };
}
void app::maybe_initialize_chunk([[maybe_unused]] const chunk_coords& pos, [[maybe_unused]] chunk& c)
{
//maybe_initialize_chunk_(pos, c);
}
void app::do_mouse_move(global_coords pos)
{
_editor.on_mouse_move(M->world(), pos);
}
void app::update(float dt)
{
do_camera(dt);
draw_ui();
if (keys[key::quit])
M->quit(0);
}
} // namespace floormat
|