forked from exult/exult
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenulist.h
202 lines (162 loc) · 4.48 KB
/
menulist.h
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
/*
* Copyright (C) 2000-2022 The Exult Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef MENULIST_H
#define MENULIST_H
#include <memory>
#include <string>
#include <vector>
#ifdef __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wold-style-cast"
# pragma GCC diagnostic ignored "-Wzero-as-null-pointer-constant"
#endif // __GNUC__
#include <SDL.h>
static const Uint32 EXSDL_TOUCH_MOUSEID = SDL_TOUCH_MOUSEID;
#ifdef __GNUC__
# pragma GCC diagnostic pop
#endif // __GNUC__
class Game_window;
class Shape_frame;
class Font;
class Mouse;
class MenuObject {
private:
bool has_id = false;
int id = 0;
public:
int x, y, x1, y1, x2, y2;
bool selected;
bool dirty;
virtual ~MenuObject() = default;
void set_selected(bool sel) {
dirty |= (selected != sel);
selected = sel;
}
bool is_selected() {
return selected;
}
bool is_mouse_over(int mx, int my) {
return (mx >= x1) && (mx <= x2) && (my >= y1) && (my <= y2);
}
virtual void paint(Game_window* gwin) = 0;
virtual bool handle_event(SDL_Event& event) = 0;
bool get_has_id() const {
return has_id;
}
int get_id() const {
return id;
}
void set_id(int newid) {
has_id = true;
id = newid;
}
// Don't think it will ever be needed, but:
void delete_id() {
has_id = false;
id = 0;
}
};
class MenuEntry : public MenuObject {
public:
Shape_frame *frame_on, *frame_off;
MenuEntry(Shape_frame* on, Shape_frame* off, int xpos, int ypos);
void paint(Game_window* gwin) override;
bool handle_event(SDL_Event& event) override;
};
class MenuTextObject : public MenuObject {
public:
std::shared_ptr<Font> font;
std::shared_ptr<Font> font_on;
std::string text;
MenuTextObject(
std::shared_ptr<Font> fnt, std::shared_ptr<Font> fnton,
std::string txt)
: font(fnt), font_on(fnton), text(std::move(txt)) {}
virtual int get_height() {
return y2 - y1;
}
void paint(Game_window* gwin) override = 0;
bool handle_event(SDL_Event& event) override = 0;
};
class MenuTextEntry : public MenuTextObject {
private:
bool enabled;
public:
MenuTextEntry(
std::shared_ptr<Font> fnton, std::shared_ptr<Font> fnt,
const char* txt, int xpos, int ypos);
void paint(Game_window* gwin) override;
bool handle_event(SDL_Event& event) override;
bool is_enabled() const {
return enabled;
}
void set_enabled(bool en) {
enabled = en;
}
};
class MenuGameEntry : public MenuTextEntry {
private:
Shape_frame* sfxicon;
public:
MenuGameEntry(
std::shared_ptr<Font> fnton, std::shared_ptr<Font> fnt,
const char* txt, Shape_frame* sfx, int xpos, int ypos);
void paint(Game_window* gwin) override;
bool handle_event(SDL_Event& event) override;
};
class MenuTextChoice : public MenuTextObject {
private:
std::vector<std::string> choices;
int choice;
int max_choice_width;
public:
MenuTextChoice(
std::shared_ptr<Font> fnton, std::shared_ptr<Font> fnt,
const char* txt, int xpos, int ypos);
void add_choice(const char* s);
int get_choice() {
return choice;
}
void set_choice(int c) {
choice = c;
}
void paint(Game_window* gwin) override;
bool handle_event(SDL_Event& event) override;
};
class MenuList {
private:
std::vector<std::unique_ptr<MenuObject>> entries;
bool selected = false;
int selection = 0;
bool has_cancel = false;
int cancel_id = 0;
public:
int add_entry(MenuObject* entry) {
entries.emplace_back(entry);
return entries.size() - 1;
}
void paint(Game_window* gwin);
int handle_events(Game_window* gwin, Mouse* mouse);
int get_selection() {
return selection;
}
void set_selection(int sel);
void set_selection(int x, int y);
void set_cancel(int val);
};
#endif