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
|
#ifndef UI_MENU_H_
#define UI_MENU_H_
#include <string>
#include <vector>
#include <color.hpp>
#include <config.hpp>
#include <ui.hpp>
#include <vector2.hpp>
using MenuAction = std::function<void(void)>;
class Menu;
class menuItem {
public:
int member;
Menu* child;
vec2 loc;
dim2 dim;
Color color;
std::string text;
struct {
MenuAction func;
} button;
struct {
float minValue;
float maxValue;
float sliderLoc;
float* var;
} slider;
menuItem(void) {}
menuItem(vec2 l, dim2 d, Color c, std::string t, Menu* ch = nullptr)
: child(ch), loc(l), dim(d), color(c), text(t) {}
};
class Menu {
public:
std::vector<menuItem> items;
Menu* parent;
~Menu(void) {
items.clear();
parent = nullptr;
}
void gotoParent(void);
};
class SDLReceiver : public entityx::System<SDLReceiver>, public entityx::Receiver<SDLReceiver>
{
public:
static bool clicked;
void configure(entityx::EventManager& ev)
{ ev.subscribe<MainSDLEvent>(*this); }
void receive(const MainSDLEvent& mse);
void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override
{ (void)en, (void)ev, (void)dt; }
};
namespace ui {
namespace menu {
menuItem createButton(vec2 l, dim2 d, Color c, const char* t, MenuAction f);
menuItem createChildButton(vec2 l, dim2 d, Color c, const char* ti, Menu *_child);
menuItem createParentButton(vec2 l, dim2 d, Color c, const char* t);
menuItem createSlider(vec2 l, dim2 d, Color c, float min, float max, const char* t, float* v);
void init(void);
void toggle(void);
void draw(void);
}
}
#endif // UI_MENU_H_
|