blob: 02f7d24cc5feaf483ca4c4c37786d34535748214 (
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
|
#pragma once
namespace Magnum::Math { template<typename T> class Vector2; template<class T> class Nanoseconds; }
namespace floormat {
struct mouse_move_event;
struct mouse_button_event;
struct mouse_scroll_event;
struct key_event;
struct text_input_event;
struct text_editing_event;
union any_event;
struct chunk_coords;
struct chunk_coords_;
class chunk;
struct Ns;
struct z_bounds;
struct draw_bounds;
struct floormat_app
{
explicit floormat_app() noexcept;
virtual ~floormat_app() noexcept;
floormat_app(const floormat_app&) = delete;
floormat_app& operator=(const floormat_app&) = delete;
[[deprecated]] floormat_app(floormat_app&&) = default;
[[deprecated]] floormat_app& operator=(floormat_app&&) = default;
virtual void update(Ns t) = 0;
virtual void maybe_initialize_chunk(const chunk_coords_& pos, chunk& c) = 0;
virtual void draw() = 0;
virtual z_bounds get_z_bounds() = 0;
virtual void on_mouse_move(const mouse_move_event& event) noexcept = 0;
virtual void on_mouse_up_down(const mouse_button_event& event, bool is_down) noexcept = 0;
virtual void on_mouse_scroll(const mouse_scroll_event& event) noexcept = 0;
virtual void on_key_up_down(const key_event& event, bool is_down) noexcept = 0;
virtual void on_text_input_event(const text_input_event& event) noexcept = 0;
//virtual bool on_text_editing_event(const text_editing_event& event) noexcept = 0;
virtual void on_viewport_event(const Magnum::Math::Vector2<int>& size) noexcept = 0;
virtual void on_any_event(const any_event& event) noexcept = 0;
virtual void on_focus_in() noexcept = 0;
virtual void on_focus_out() noexcept = 0;
virtual void on_mouse_leave() noexcept = 0;
virtual void on_mouse_enter() noexcept = 0;
};
} // namespace floormat
|