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
|
#pragma once
#include "tests.hpp"
#include "compat/defs.hpp"
#include "src/point.hpp"
#include "src/object-id.hpp"
#include "floormat/events.hpp"
#include <cr/StringView.h>
#include <cr/Pointer.h>
namespace floormat { struct app; }
namespace floormat::tests {
struct base_test
{
fm_DECLARE_DEFAULT_MOVE_ASSIGNMENT_(base_test);
fm_DECLARE_DELETED_COPY_ASSIGNMENT(base_test);
virtual bool handle_key(app& a, const key_event& e, bool is_down) = 0;
virtual bool handle_mouse_click(app& a, const mouse_button_event& e, bool is_down) = 0;
virtual bool handle_mouse_move(app& a, const mouse_move_event& e) = 0;
virtual void draw_overlay(app& a) = 0;
virtual void draw_ui(app& a, float width) = 0;
virtual void update_pre(app& a) = 0;
virtual void update_post(app& a) = 0;
virtual ~base_test() noexcept;
protected:
base_test();
};
enum class Test : uint32_t {
//todo add a speedometer overlay test
none, path, raycast, region, pathfinding, COUNT,
};
struct tests_data final : tests_data_
{
~tests_data() noexcept override;
void switch_to(Test i);
static Pointer<base_test> make_test_none();
static Pointer<base_test> make_test_path();
static Pointer<base_test> make_test_raycast();
static Pointer<base_test> make_test_region();
static Pointer<base_test> make_test_pathfinding();
Pointer<base_test> current_test;
Test current_index = Test::none;
struct test_tuple
{
StringView name;
Test t;
Pointer<base_test>(*ctor)();
};
static constexpr test_tuple fields[] = {
{ "None"_s, Test::none, make_test_none, },
{ "Path"_s, Test::path, make_test_path, },
{ "Raycasting"_s, Test::raycast, make_test_raycast },
{ "Region extraction"_s, Test::region, make_test_region },
{ "Pathfinding"_s, Test::pathfinding, make_test_pathfinding },
};
};
} // namespace floormat::tests
|