forked from TheOfficialFloW/VitaShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uncommon_dialog.c
391 lines (313 loc) · 12.6 KB
/
uncommon_dialog.c
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
VitaShell
Copyright (C) 2015-2018, TheFloW
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include "main.h"
#include "init.h"
#include "theme.h"
#include "language.h"
#include "utils.h"
#include "uncommon_dialog.h"
#include "qr.h"
typedef struct {
int dialog_status;
int status;
int mode;
int buttonType;
int buttonId;
char msg[512];
char info[64];
float x;
float y;
float width;
float height;
float scale;
int progress;
} UncommonDialog;
static UncommonDialog uncommon_dialog;
static void calculateDialogBoxSize() {
int len = strlen(uncommon_dialog.msg);
char *string = uncommon_dialog.msg;
float text_width = 0;
// Get width and height
uncommon_dialog.width = 0.0f;
uncommon_dialog.height = 0.0f;
int i;
for (i = 0; i < len + 1; i++) {
if (uncommon_dialog.msg[i] == '\n') {
uncommon_dialog.msg[i] = '\0';
float width = pgf_text_width(string);
if (width > uncommon_dialog.width)
uncommon_dialog.width = width;
uncommon_dialog.msg[i] = '\n';
string = uncommon_dialog.msg + i;
}
if (uncommon_dialog.msg[i] == '\0') {
float width = pgf_text_width(string);
if (width > uncommon_dialog.width)
uncommon_dialog.width = width;
}
char tmp = uncommon_dialog.msg[i + 1];
uncommon_dialog.msg[i + 1] = '\0';
text_width = pgf_text_width(uncommon_dialog.msg);
uncommon_dialog.msg[i + 1] = tmp;
if (text_width > UNCOMMON_DIALOG_MAX_WIDTH) {
int lastSpace = i - 1;
while (uncommon_dialog.msg[lastSpace] != ' ' && uncommon_dialog.msg[lastSpace] != '\n' && lastSpace > 0)
lastSpace--;
if (lastSpace == 0 || uncommon_dialog.msg[lastSpace] == '\n') {
memmove(uncommon_dialog.msg + i + 1, uncommon_dialog.msg + i, strlen(uncommon_dialog.msg) - (i + 1));
uncommon_dialog.msg[i] = '\n';
} else {
uncommon_dialog.msg[lastSpace] = '\n';
}
uncommon_dialog.width = text_width;
string = uncommon_dialog.msg + i;
}
}
uncommon_dialog.height += FONT_Y_SPACE;
for (i = 0; uncommon_dialog.msg[i]; i++)
uncommon_dialog.height += FONT_Y_SPACE * (uncommon_dialog.msg[i] == '\n');
// Margin
uncommon_dialog.width += 2.0f * SHELL_MARGIN_X;
uncommon_dialog.height += 2.0f * SHELL_MARGIN_Y;
// Progress bar box width
if (uncommon_dialog.mode == SCE_MSG_DIALOG_MODE_PROGRESS_BAR) {
uncommon_dialog.width = UNCOMMON_DIALOG_PROGRESS_BAR_BOX_WIDTH;
uncommon_dialog.height += 2.0f * FONT_Y_SPACE;
}
if (uncommon_dialog.mode == MSG_DIALOG_MODE_QR_SCAN) {
uncommon_dialog.width = CAM_WIDTH + 30;
uncommon_dialog.height += CAM_HEIGHT;
}
// More space for buttons
if (uncommon_dialog.buttonType != SCE_MSG_DIALOG_BUTTON_TYPE_NONE)
uncommon_dialog.height += 2.0f * FONT_Y_SPACE;
// Position
uncommon_dialog.x = ALIGN_CENTER(SCREEN_WIDTH, uncommon_dialog.width);
uncommon_dialog.y = ALIGN_CENTER(SCREEN_HEIGHT, uncommon_dialog.height);
// Align
int y_n = (int)((float)(uncommon_dialog.y - 2.0f) / FONT_Y_SPACE);
uncommon_dialog.y = (float)y_n * FONT_Y_SPACE + 2.0f;
// Scale
uncommon_dialog.scale = 0;
}
int sceMsgDialogInit(const SceMsgDialogParam *param) {
if (!param)
return VITASHELL_ERROR_ILLEGAL_ADDR;
memset(&uncommon_dialog, 0, sizeof(UncommonDialog));
switch (param->mode) {
case SCE_MSG_DIALOG_MODE_USER_MSG:
{
if (!param->userMsgParam || !param->userMsgParam->msg)
return VITASHELL_ERROR_ILLEGAL_ADDR;
strncpy(uncommon_dialog.msg, (char *)param->userMsgParam->msg, sizeof(uncommon_dialog.msg) - 1);
uncommon_dialog.buttonType = param->userMsgParam->buttonType;
break;
}
case SCE_MSG_DIALOG_MODE_PROGRESS_BAR:
{
if (!param->progBarParam || !param->progBarParam->msg)
return VITASHELL_ERROR_ILLEGAL_ADDR;
strncpy(uncommon_dialog.msg, (char *)param->progBarParam->msg, sizeof(uncommon_dialog.msg) - 1);
uncommon_dialog.buttonType = SCE_MSG_DIALOG_BUTTON_TYPE_CANCEL;
break;
}
case MSG_DIALOG_MODE_QR_SCAN:
{
strncpy(uncommon_dialog.msg, (char *)param->userMsgParam->msg, sizeof(uncommon_dialog.msg) - 1);
uncommon_dialog.buttonType = SCE_MSG_DIALOG_BUTTON_TYPE_CANCEL;
break;
}
default:
return VITASHELL_ERROR_INVALID_ARGUMENT;
}
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_OPENING;
uncommon_dialog.mode = param->mode;
uncommon_dialog.status = SCE_COMMON_DIALOG_STATUS_RUNNING;
calculateDialogBoxSize();
return 0;
}
SceCommonDialogStatus sceMsgDialogGetStatus(void) {
if (uncommon_dialog.status == SCE_COMMON_DIALOG_STATUS_RUNNING) {
switch (uncommon_dialog.buttonType) {
case SCE_MSG_DIALOG_BUTTON_TYPE_OK:
{
if (pressed_pad[PAD_ENTER]) {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
uncommon_dialog.buttonId = SCE_MSG_DIALOG_BUTTON_ID_OK;
}
break;
}
case SCE_MSG_DIALOG_BUTTON_TYPE_YESNO:
{
if (pressed_pad[PAD_ENTER]) {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
uncommon_dialog.buttonId = SCE_MSG_DIALOG_BUTTON_ID_YES;
}
if (pressed_pad[PAD_CANCEL]) {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
uncommon_dialog.buttonId = SCE_MSG_DIALOG_BUTTON_ID_NO;
}
break;
}
case SCE_MSG_DIALOG_BUTTON_TYPE_OK_CANCEL:
{
if (pressed_pad[PAD_ENTER]) {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
uncommon_dialog.buttonId = SCE_MSG_DIALOG_BUTTON_ID_YES;
}
if (pressed_pad[PAD_CANCEL]) {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
uncommon_dialog.buttonId = SCE_MSG_DIALOG_BUTTON_ID_NO;
}
break;
}
case SCE_MSG_DIALOG_BUTTON_TYPE_CANCEL:
{
if (pressed_pad[PAD_CANCEL]) {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
}
break;
}
}
}
return uncommon_dialog.status;
}
int sceMsgDialogClose(void) {
if (uncommon_dialog.status != SCE_COMMON_DIALOG_STATUS_RUNNING)
return VITASHELL_ERROR_NOT_RUNNING;
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSING;
return 0;
}
int sceMsgDialogTerm(void) {
if (uncommon_dialog.status == SCE_COMMON_DIALOG_STATUS_NONE)
return VITASHELL_ERROR_NOT_RUNNING;
uncommon_dialog.status = SCE_COMMON_DIALOG_STATUS_NONE;
return 0;
}
int sceMsgDialogGetResult(SceMsgDialogResult *result) {
if (!result)
return VITASHELL_ERROR_ILLEGAL_ADDR;
result->buttonId = uncommon_dialog.buttonId;
return 0;
}
int sceMsgDialogProgressBarSetInfo(SceMsgDialogProgressBarTarget target, const SceChar8 *barInfo) {
strncpy(uncommon_dialog.info, (char *)barInfo, sizeof(uncommon_dialog.info) - 1);
return 0;
}
int sceMsgDialogProgressBarSetMsg(SceMsgDialogProgressBarTarget target, const SceChar8 *barMsg) {
strncpy(uncommon_dialog.msg, (char *)barMsg, sizeof(uncommon_dialog.msg) - 1);
return 0;
}
int sceMsgDialogProgressBarSetValue(SceMsgDialogProgressBarTarget target, SceUInt32 rate) {
if (rate > 100)
return VITASHELL_ERROR_INVALID_ARGUMENT;
uncommon_dialog.progress = rate;
return 0;
}
int drawUncommonDialog() {
if (uncommon_dialog.status == SCE_COMMON_DIALOG_STATUS_NONE)
return 0;
// Dialog background
vita2d_draw_texture_scale_rotate_hotspot(dialog_image, uncommon_dialog.x + uncommon_dialog.width / 2.0f,
uncommon_dialog.y + uncommon_dialog.height / 2.0f,
uncommon_dialog.scale * (uncommon_dialog.width / vita2d_texture_get_width(dialog_image)),
uncommon_dialog.scale * (uncommon_dialog.height / vita2d_texture_get_height(dialog_image)),
0.0f, vita2d_texture_get_width(dialog_image) / 2.0f, vita2d_texture_get_height(dialog_image) / 2.0f);
// Easing out
if (uncommon_dialog.dialog_status == UNCOMMON_DIALOG_CLOSING) {
if (uncommon_dialog.scale > 0.0f) {
uncommon_dialog.scale -= easeOut(0.0f, uncommon_dialog.scale, 0.25f, 0.01f);
} else {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_CLOSED;
uncommon_dialog.status = SCE_COMMON_DIALOG_STATUS_FINISHED;
}
}
if (uncommon_dialog.dialog_status == UNCOMMON_DIALOG_OPENING) {
if (uncommon_dialog.scale < 1.0f) {
uncommon_dialog.scale += easeOut(uncommon_dialog.scale, 1.0f, 0.25f, 0.01f);
} else {
uncommon_dialog.dialog_status = UNCOMMON_DIALOG_OPENED;
}
}
if (uncommon_dialog.dialog_status == UNCOMMON_DIALOG_OPENED) {
float string_y = uncommon_dialog.y + SHELL_MARGIN_Y - 2.0f;
// Draw info
if (uncommon_dialog.mode == SCE_MSG_DIALOG_MODE_PROGRESS_BAR) {
if (uncommon_dialog.info[0] != '\0') {
float x = ALIGN_RIGHT(uncommon_dialog.x + uncommon_dialog.width - SHELL_MARGIN_X, pgf_text_width(uncommon_dialog.info));
pgf_draw_text(x, string_y, DIALOG_COLOR, uncommon_dialog.info);
}
}
// Draw message
int len = strlen(uncommon_dialog.msg);
char *string = uncommon_dialog.msg;
int i;
for (i = 0; i < len + 1; i++) {
if (uncommon_dialog.msg[i] == '\n') {
uncommon_dialog.msg[i] = '\0';
pgf_draw_text(uncommon_dialog.x + SHELL_MARGIN_X, string_y, DIALOG_COLOR, string);
uncommon_dialog.msg[i] = '\n';
string = uncommon_dialog.msg+i + 1;
string_y += FONT_Y_SPACE;
}
if (uncommon_dialog.msg[i] == '\0') {
pgf_draw_text(uncommon_dialog.x + SHELL_MARGIN_X, string_y, DIALOG_COLOR, string);
string_y += FONT_Y_SPACE;
}
}
// Dialog type
char button_string[128];
switch (uncommon_dialog.buttonType) {
case SCE_MSG_DIALOG_BUTTON_TYPE_OK:
sprintf(button_string, "%s %s", enter_button == SCE_SYSTEM_PARAM_ENTER_BUTTON_CIRCLE ? CIRCLE : CROSS, language_container[OK]);
break;
case SCE_MSG_DIALOG_BUTTON_TYPE_YESNO:
sprintf(button_string, "%s %s %s %s", enter_button == SCE_SYSTEM_PARAM_ENTER_BUTTON_CIRCLE ? CIRCLE : CROSS, language_container[YES],
enter_button == SCE_SYSTEM_PARAM_ENTER_BUTTON_CIRCLE ? CROSS : CIRCLE, language_container[NO]);
break;
case SCE_MSG_DIALOG_BUTTON_TYPE_OK_CANCEL:
sprintf(button_string, "%s %s %s %s", enter_button == SCE_SYSTEM_PARAM_ENTER_BUTTON_CIRCLE ? CIRCLE : CROSS, language_container[OK],
enter_button == SCE_SYSTEM_PARAM_ENTER_BUTTON_CIRCLE ? CROSS : CIRCLE, language_container[CANCEL]);
break;
case SCE_MSG_DIALOG_BUTTON_TYPE_CANCEL:
sprintf(button_string, "%s %s", enter_button == SCE_SYSTEM_PARAM_ENTER_BUTTON_CIRCLE ? CROSS : CIRCLE, language_container[CANCEL]);
break;
}
// Progress bar
if (uncommon_dialog.mode == SCE_MSG_DIALOG_MODE_PROGRESS_BAR) {
float width = uncommon_dialog.width - 2.0f * SHELL_MARGIN_X;
float x = uncommon_dialog.x + SHELL_MARGIN_X;
vita2d_draw_rectangle(x, string_y + 10.0f, width, UNCOMMON_DIALOG_PROGRESS_BAR_HEIGHT, PROGRESS_BAR_BG_COLOR);
vita2d_draw_rectangle(x, string_y + 10.0f, uncommon_dialog.progress * width / 100.0f, UNCOMMON_DIALOG_PROGRESS_BAR_HEIGHT, PROGRESS_BAR_COLOR);
char string[8];
sprintf(string, "%d%%", uncommon_dialog.progress);
pgf_draw_text(ALIGN_CENTER(SCREEN_WIDTH, pgf_text_width(string)), string_y + FONT_Y_SPACE, DIALOG_COLOR, string);
string_y += 2.0f * FONT_Y_SPACE;
}
if (uncommon_dialog.mode == MSG_DIALOG_MODE_QR_SCAN) {
renderCameraQR(uncommon_dialog.x + 15, string_y + 10);
string_y += CAM_HEIGHT;
}
switch (uncommon_dialog.buttonType) {
case SCE_MSG_DIALOG_BUTTON_TYPE_OK:
case SCE_MSG_DIALOG_BUTTON_TYPE_YESNO:
case SCE_MSG_DIALOG_BUTTON_TYPE_OK_CANCEL:
case SCE_MSG_DIALOG_BUTTON_TYPE_CANCEL:
pgf_draw_text(ALIGN_CENTER(SCREEN_WIDTH, pgf_text_width(button_string)), string_y + FONT_Y_SPACE, DIALOG_COLOR, button_string);
break;
}
}
return 0;
}