forked from blastrock/pkgj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkgi_menu.cpp
299 lines (269 loc) · 7.76 KB
/
pkgi_menu.cpp
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
extern "C" {
#include "pkgi_menu.h"
#include "pkgi.h"
#include "pkgi_style.h"
}
#include "pkgi_config.hpp"
static int menu_search_clear;
static Config menu_config;
static uint32_t menu_selected;
static int menu_allow_refresh;
static MenuResult menu_result;
static int32_t menu_width;
static int32_t menu_delta;
typedef enum {
MenuSearch,
MenuSearchClear,
MenuText,
MenuSort,
MenuFilter,
MenuRefresh,
} MenuType;
typedef struct
{
MenuType type;
const char* text;
uint32_t value;
} MenuEntry;
static const MenuEntry menu_entries[] = {
{MenuSearch, "Search...", 0},
{MenuSearchClear, PKGI_UTF8_CLEAR " clear", 0},
{MenuText, "Sort by:", 0},
{MenuSort, "Title", SortByTitle},
{MenuSort, "Region", SortByRegion},
{MenuSort, "Name", SortByName},
{MenuSort, "Size", SortBySize},
{MenuText, "Regions:", 0},
{MenuFilter, "Asia", DbFilterRegionASA},
{MenuFilter, "Europe", DbFilterRegionEUR},
{MenuFilter, "Japan", DbFilterRegionJPN},
{MenuFilter, "USA", DbFilterRegionUSA},
{MenuRefresh, "Refresh games", 1},
{MenuRefresh, "Refresh updates", 2},
{MenuRefresh, "Refresh DLCs", 4},
{MenuRefresh, "Refresh PSX games", 8},
{MenuRefresh, "Refresh PSP games", 16},
};
int pkgi_menu_is_open(void)
{
return menu_width != 0;
}
MenuResult pkgi_menu_result()
{
return menu_result;
}
void pkgi_menu_get(Config* config)
{
*config = menu_config;
}
void pkgi_menu_start(int search_clear, const Config* config, int allow_refresh)
{
menu_search_clear = search_clear;
menu_width = 1;
menu_delta = 1;
menu_config = *config;
menu_allow_refresh = allow_refresh;
}
int pkgi_do_menu(pkgi_input* input)
{
if (menu_delta != 0)
{
menu_width +=
menu_delta *
(int32_t)(input->delta * PKGI_ANIMATION_SPEED / 2 / 1000000);
if (menu_delta < 0 && menu_width <= 0)
{
menu_width = 0;
menu_delta = 0;
return 0;
}
else if (menu_delta > 0 && menu_width >= PKGI_MENU_WIDTH)
{
menu_width = PKGI_MENU_WIDTH;
menu_delta = 0;
}
}
if (menu_width != 0)
{
pkgi_draw_rect(
VITA_WIDTH - menu_width,
0,
menu_width,
VITA_HEIGHT,
PKGI_COLOR_MENU_BACKGROUND);
}
if (input->active & PKGI_BUTTON_UP)
{
do
{
if (menu_selected == 0)
{
menu_selected = PKGI_COUNTOF(menu_entries) - 1;
}
else
{
menu_selected--;
}
} while (menu_entries[menu_selected].type == MenuText ||
(menu_entries[menu_selected].type == MenuSearchClear &&
!menu_search_clear) ||
(menu_entries[menu_selected].type == MenuRefresh &&
!(menu_entries[menu_selected].value & menu_allow_refresh)));
}
if (input->active & PKGI_BUTTON_DOWN)
{
do
{
if (menu_selected == PKGI_COUNTOF(menu_entries) - 1)
{
menu_selected = 0;
}
else
{
menu_selected++;
}
} while (menu_entries[menu_selected].type == MenuText ||
(menu_entries[menu_selected].type == MenuSearchClear &&
!menu_search_clear) ||
(menu_entries[menu_selected].type == MenuRefresh &&
!(menu_entries[menu_selected].value & menu_allow_refresh)));
}
if (input->pressed & pkgi_cancel_button())
{
menu_result = MenuResultCancel;
menu_delta = -1;
return 1;
}
else if (input->pressed & PKGI_BUTTON_T)
{
menu_result = MenuResultAccept;
menu_delta = -1;
return 1;
}
else if (input->pressed & pkgi_ok_button())
{
MenuType type = menu_entries[menu_selected].type;
if (type == MenuSearch)
{
menu_result = MenuResultSearch;
menu_delta = -1;
return 1;
}
if (type == MenuSearchClear)
{
menu_selected--;
menu_result = MenuResultSearchClear;
menu_delta = -1;
return 1;
}
else if (type == MenuRefresh)
{
switch (menu_entries[menu_selected].value)
{
case 1:
menu_result = MenuResultRefreshGames;
break;
case 2:
menu_result = MenuResultRefreshUpdates;
break;
case 4:
menu_result = MenuResultRefreshDlcs;
break;
case 8:
menu_result = MenuResultRefreshPsxGames;
break;
case 16:
menu_result = MenuResultRefreshPspGames;
break;
}
menu_delta = -1;
return 1;
}
else if (type == MenuSort)
{
DbSort value = (DbSort)menu_entries[menu_selected].value;
if (menu_config.sort == value)
{
menu_config.order = menu_config.order == SortAscending
? SortDescending
: SortAscending;
}
else
{
menu_config.sort = value;
}
}
else if (type == MenuFilter)
{
menu_config.filter ^= menu_entries[menu_selected].value;
}
}
if (menu_width != PKGI_MENU_WIDTH)
{
return 1;
}
int font_height = pkgi_text_height("M");
int y = PKGI_MENU_TOP_PADDING;
for (uint32_t i = 0; i < PKGI_COUNTOF(menu_entries); i++)
{
const MenuEntry* entry = menu_entries + i;
MenuType type = entry->type;
if (type == MenuText)
{
y += font_height;
}
else if (type == MenuSearchClear && !menu_search_clear)
{
continue;
}
else if (type == MenuRefresh)
{
if (!(entry->value & menu_allow_refresh))
{
continue;
}
y += font_height / 2;
}
uint32_t color = menu_selected == i ? PKGI_COLOR_TEXT_MENU_SELECTED
: PKGI_COLOR_TEXT_MENU;
int x = VITA_WIDTH - PKGI_MENU_WIDTH + PKGI_MENU_LEFT_PADDING;
char text[64];
if (type == MenuSearch || type == MenuSearchClear || type == MenuText ||
type == MenuRefresh)
{
pkgi_strncpy(text, sizeof(text), entry->text);
}
else if (type == MenuSort)
{
if (menu_config.sort == (DbSort)entry->value)
{
pkgi_snprintf(
text,
sizeof(text),
"%s %s",
menu_config.order == SortAscending
? PKGI_UTF8_SORT_ASC
: PKGI_UTF8_SORT_DESC,
entry->text);
}
else
{
x += pkgi_text_width(PKGI_UTF8_SORT_ASC " ");
pkgi_strncpy(text, sizeof(text), entry->text);
}
}
else if (type == MenuFilter)
{
pkgi_snprintf(
text,
sizeof(text),
"%s %s",
menu_config.filter & entry->value ? PKGI_UTF8_CHECK_ON
: PKGI_UTF8_CHECK_OFF,
entry->text);
}
pkgi_draw_text(x, y, color, text);
y += font_height;
}
return 1;
}