eb728dab6bdd256d5c6183e3d6702da8a82758a9
[libpicofe.git] / menu.c
1 /*\r
2  * (C) GraÅžvydas "notaz" Ignotas, 2006-2012\r
3  *\r
4  * This work is licensed under the terms of any of these licenses\r
5  * (at your option):\r
6  *  - GNU GPL, version 2 or later.\r
7  *  - GNU LGPL, version 2.1 or later.\r
8  *  - MAME license.\r
9  * See the COPYING file in the top-level directory.\r
10  */\r
11 \r
12 #include <stdio.h>\r
13 #include <string.h>\r
14 #include <stdlib.h>\r
15 #include <stdarg.h>\r
16 #include <time.h>\r
17 #include <locale.h> // savestate date\r
18 \r
19 #include "menu.h"\r
20 #include "fonts.h"\r
21 #include "readpng.h"\r
22 #include "lprintf.h"\r
23 #include "input.h"\r
24 #include "plat.h"\r
25 #include "posix.h"\r
26 \r
27 static char static_buff[64];\r
28 static int  menu_error_time = 0;\r
29 char menu_error_msg[64] = { 0, };\r
30 void *g_menuscreen_ptr;\r
31 void *g_menubg_src_ptr;\r
32 void *g_menubg_ptr;\r
33 \r
34 int g_menuscreen_w;\r
35 int g_menuscreen_h;\r
36 \r
37 int g_autostateld_opt;\r
38 \r
39 static unsigned char *menu_font_data = NULL;\r
40 static int menu_text_color = 0xfffe; // default to white\r
41 static int menu_sel_color = -1; // disabled\r
42 \r
43 /* note: these might become non-constant in future */\r
44 #if MENU_X2\r
45 static const int me_mfont_w = 16, me_mfont_h = 20;\r
46 static const int me_sfont_w = 12, me_sfont_h = 20;\r
47 #else\r
48 static const int me_mfont_w = 8, me_mfont_h = 10;\r
49 static const int me_sfont_w = 6, me_sfont_h = 10;\r
50 #endif\r
51 \r
52 static int g_menu_filter_off;\r
53 static int g_border_style;\r
54 static int border_left, border_right, border_top, border_bottom;\r
55 \r
56 // draws text to current bbp16 screen\r
57 static void text_out16_(int x, int y, const char *text, int color)\r
58 {\r
59         int i, lh, tr, tg, tb, len;\r
60         unsigned short *dest = (unsigned short *)g_menuscreen_ptr + x + y * g_menuscreen_w;\r
61         tr = (color & 0xf800) >> 8;\r
62         tg = (color & 0x07e0) >> 3;\r
63         tb = (color & 0x001f) << 3;\r
64 \r
65         if (text == (void *)1)\r
66         {\r
67                 // selector symbol\r
68                 text = "";\r
69                 len = 1;\r
70         }\r
71         else\r
72         {\r
73                 const char *p;\r
74                 for (p = text; *p != 0 && *p != '\n'; p++)\r
75                         ;\r
76                 len = p - text;\r
77         }\r
78 \r
79         lh = me_mfont_h;\r
80         if (y + lh > g_menuscreen_h)\r
81                 lh = g_menuscreen_h - y;\r
82 \r
83         for (i = 0; i < len; i++)\r
84         {\r
85                 unsigned char  *src = menu_font_data + (unsigned int)text[i] * me_mfont_w * me_mfont_h / 2;\r
86                 unsigned short *dst = dest;\r
87                 int u, l;\r
88 \r
89                 for (l = 0; l < lh; l++, dst += g_menuscreen_w - me_mfont_w)\r
90                 {\r
91                         for (u = me_mfont_w / 2; u > 0; u--, src++)\r
92                         {\r
93                                 int c, r, g, b;\r
94                                 c = *src >> 4;\r
95                                 r = (*dst & 0xf800) >> 8;\r
96                                 g = (*dst & 0x07e0) >> 3;\r
97                                 b = (*dst & 0x001f) << 3;\r
98                                 r = (c^0xf)*r/15 + c*tr/15;\r
99                                 g = (c^0xf)*g/15 + c*tg/15;\r
100                                 b = (c^0xf)*b/15 + c*tb/15;\r
101                                 *dst++ = ((r<<8)&0xf800) | ((g<<3)&0x07e0) | (b>>3);\r
102                                 c = *src & 0xf;\r
103                                 r = (*dst & 0xf800) >> 8;\r
104                                 g = (*dst & 0x07e0) >> 3;\r
105                                 b = (*dst & 0x001f) << 3;\r
106                                 r = (c^0xf)*r/15 + c*tr/15;\r
107                                 g = (c^0xf)*g/15 + c*tg/15;\r
108                                 b = (c^0xf)*b/15 + c*tb/15;\r
109                                 *dst++ = ((r<<8)&0xf800) | ((g<<3)&0x07e0) | (b>>3);\r
110                         }\r
111                 }\r
112                 dest += me_mfont_w;\r
113         }\r
114 \r
115         if (x < border_left)\r
116                 border_left = x;\r
117         if (x + i * me_mfont_w > border_right)\r
118                 border_right = x + i * me_mfont_w;\r
119         if (y < border_top)\r
120                 border_top = y;\r
121         if (y + me_mfont_h > border_bottom)\r
122                 border_bottom = y + me_mfont_h;\r
123 }\r
124 \r
125 void text_out16(int x, int y, const char *texto, ...)\r
126 {\r
127         va_list args;\r
128         char    buffer[256];\r
129         int     maxw = (g_menuscreen_w - x) / me_mfont_w;\r
130 \r
131         if (maxw < 0)\r
132                 return;\r
133 \r
134         va_start(args, texto);\r
135         vsnprintf(buffer, sizeof(buffer), texto, args);\r
136         va_end(args);\r
137 \r
138         if (maxw > sizeof(buffer) - 1)\r
139                 maxw = sizeof(buffer) - 1;\r
140         buffer[maxw] = 0;\r
141 \r
142         text_out16_(x,y,buffer,menu_text_color);\r
143 }\r
144 \r
145 /* draws in 6x8 font, might multiply size by integer */\r
146 static void smalltext_out16_(int x, int y, const char *texto, int color)\r
147 {\r
148         unsigned char  *src;\r
149         unsigned short *dst;\r
150         int multiplier = me_sfont_w / 6;\r
151         int i;\r
152 \r
153         for (i = 0;; i++, x += me_sfont_w)\r
154         {\r
155                 unsigned char c = (unsigned char) texto[i];\r
156                 int h = 8;\r
157 \r
158                 if (!c || c == '\n')\r
159                         break;\r
160 \r
161                 src = fontdata6x8[c];\r
162                 dst = (unsigned short *)g_menuscreen_ptr + x + y * g_menuscreen_w;\r
163 \r
164                 while (h--)\r
165                 {\r
166                         int m, w2, h2;\r
167                         for (h2 = multiplier; h2 > 0; h2--)\r
168                         {\r
169                                 for (m = 0x20; m; m >>= 1) {\r
170                                         if (*src & m)\r
171                                                 for (w2 = multiplier; w2 > 0; w2--)\r
172                                                         *dst++ = color;\r
173                                         else\r
174                                                 dst += multiplier;\r
175                                 }\r
176 \r
177                                 dst += g_menuscreen_w - me_sfont_w;\r
178                         }\r
179                         src++;\r
180                 }\r
181         }\r
182 }\r
183 \r
184 static void smalltext_out16(int x, int y, const char *texto, int color)\r
185 {\r
186         char buffer[128];\r
187         int maxw = (g_menuscreen_w - x) / me_sfont_w;\r
188 \r
189         if (maxw < 0)\r
190                 return;\r
191 \r
192         strncpy(buffer, texto, sizeof(buffer));\r
193         if (maxw > sizeof(buffer) - 1)\r
194                 maxw = sizeof(buffer) - 1;\r
195         buffer[maxw] = 0;\r
196 \r
197         smalltext_out16_(x, y, buffer, color);\r
198 }\r
199 \r
200 static void menu_draw_selection(int x, int y, int w)\r
201 {\r
202         int i, h;\r
203         unsigned short *dst, *dest;\r
204 \r
205         text_out16_(x, y, (void *)1, (menu_sel_color < 0) ? menu_text_color : menu_sel_color);\r
206 \r
207         if (menu_sel_color < 0) return; // no selection hilight\r
208 \r
209         if (y > 0) y--;\r
210         dest = (unsigned short *)g_menuscreen_ptr + x + y * g_menuscreen_w + me_mfont_w * 2 - 2;\r
211         for (h = me_mfont_h + 1; h > 0; h--)\r
212         {\r
213                 dst = dest;\r
214                 for (i = w - (me_mfont_w * 2 - 2); i > 0; i--)\r
215                         *dst++ = menu_sel_color;\r
216                 dest += g_menuscreen_w;\r
217         }\r
218 }\r
219 \r
220 static int parse_hex_color(char *buff)\r
221 {\r
222         char *endp = buff;\r
223         int t = (int) strtoul(buff, &endp, 16);\r
224         if (endp != buff)\r
225 #ifdef PSP\r
226                 return ((t<<8)&0xf800) | ((t>>5)&0x07e0) | ((t>>19)&0x1f);\r
227 #else\r
228                 return ((t>>8)&0xf800) | ((t>>5)&0x07e0) | ((t>>3)&0x1f);\r
229 #endif\r
230         return -1;\r
231 }\r
232 \r
233 static char tolower_simple(char c)\r
234 {\r
235         if ('A' <= c && c <= 'Z')\r
236                 c = c - 'A' + 'a';\r
237         return c;\r
238 }\r
239 \r
240 void menu_init_base(void)\r
241 {\r
242         int i, c, l;\r
243         unsigned char *fd, *fds;\r
244         char buff[256];\r
245         FILE *f;\r
246 \r
247         if (menu_font_data != NULL)\r
248                 free(menu_font_data);\r
249 \r
250         menu_font_data = calloc((MENU_X2 ? 256 * 320 : 128 * 160) / 2, 1);\r
251         if (menu_font_data == NULL)\r
252                 return;\r
253 \r
254         // generate default 8x10 font from fontdata8x8\r
255         for (c = 0, fd = menu_font_data; c < 256; c++)\r
256         {\r
257                 for (l = 0; l < 8; l++)\r
258                 {\r
259                         unsigned char fd8x8 = fontdata8x8[c*8+l];\r
260                         if (fd8x8&0x80) *fd  = 0xf0;\r
261                         if (fd8x8&0x40) *fd |= 0x0f; fd++;\r
262                         if (fd8x8&0x20) *fd  = 0xf0;\r
263                         if (fd8x8&0x10) *fd |= 0x0f; fd++;\r
264                         if (fd8x8&0x08) *fd  = 0xf0;\r
265                         if (fd8x8&0x04) *fd |= 0x0f; fd++;\r
266                         if (fd8x8&0x02) *fd  = 0xf0;\r
267                         if (fd8x8&0x01) *fd |= 0x0f; fd++;\r
268                 }\r
269                 fd += 8*2/2; // 2 empty lines\r
270         }\r
271 \r
272         if (MENU_X2) {\r
273                 // expand default font\r
274                 fds = menu_font_data + 128 * 160 / 2 - 4;\r
275                 fd  = menu_font_data + 256 * 320 / 2 - 1;\r
276                 for (c = 255; c >= 0; c--)\r
277                 {\r
278                         for (l = 9; l >= 0; l--, fds -= 4)\r
279                         {\r
280                                 for (i = 3; i >= 0; i--) {\r
281                                         int px = fds[i] & 0x0f;\r
282                                         *fd-- = px | (px << 4);\r
283                                         px = (fds[i] >> 4) & 0x0f;\r
284                                         *fd-- = px | (px << 4);\r
285                                 }\r
286                                 for (i = 3; i >= 0; i--) {\r
287                                         int px = fds[i] & 0x0f;\r
288                                         *fd-- = px | (px << 4);\r
289                                         px = (fds[i] >> 4) & 0x0f;\r
290                                         *fd-- = px | (px << 4);\r
291                                 }\r
292                         }\r
293                 }\r
294         }\r
295 \r
296         // load custom font and selector (stored as 1st symbol in font table)\r
297         emu_make_path(buff, "skin/font.png", sizeof(buff));\r
298         readpng(menu_font_data, buff, READPNG_FONT,\r
299                 MENU_X2 ? 256 : 128, MENU_X2 ? 320 : 160);\r
300         // default selector symbol is '>'\r
301         memcpy(menu_font_data, menu_font_data + ((int)'>') * me_mfont_w * me_mfont_h / 2,\r
302                 me_mfont_w * me_mfont_h / 2);\r
303         emu_make_path(buff, "skin/selector.png", sizeof(buff));\r
304         readpng(menu_font_data, buff, READPNG_SELECTOR, me_mfont_w, me_mfont_h);\r
305 \r
306         // load custom colors\r
307         emu_make_path(buff, "skin/skin.txt", sizeof(buff));\r
308         f = fopen(buff, "r");\r
309         if (f != NULL)\r
310         {\r
311                 lprintf("found skin.txt\n");\r
312                 while (!feof(f))\r
313                 {\r
314                         if (fgets(buff, sizeof(buff), f) == NULL)\r
315                                 break;\r
316                         if (buff[0] == '#'  || buff[0] == '/')  continue; // comment\r
317                         if (buff[0] == '\r' || buff[0] == '\n') continue; // empty line\r
318                         if (strncmp(buff, "text_color=", 11) == 0)\r
319                         {\r
320                                 int tmp = parse_hex_color(buff+11);\r
321                                 if (tmp >= 0) menu_text_color = tmp;\r
322                                 else lprintf("skin.txt: parse error for text_color\n");\r
323                         }\r
324                         else if (strncmp(buff, "selection_color=", 16) == 0)\r
325                         {\r
326                                 int tmp = parse_hex_color(buff+16);\r
327                                 if (tmp >= 0) menu_sel_color = tmp;\r
328                                 else lprintf("skin.txt: parse error for selection_color\n");\r
329                         }\r
330                         else\r
331                                 lprintf("skin.txt: parse error: %s\n", buff);\r
332                 }\r
333                 fclose(f);\r
334         }\r
335 \r
336         // use user's locale for savestate date display\r
337         setlocale(LC_TIME, "");\r
338 }\r
339 \r
340 static void menu_darken_bg(void *dst, void *src, int pixels, int darker)\r
341 {\r
342         unsigned int *dest = dst;\r
343         unsigned int *sorc = src;\r
344         pixels /= 2;\r
345         if (darker)\r
346         {\r
347                 while (pixels--)\r
348                 {\r
349                         unsigned int p = *sorc++;\r
350                         *dest++ = ((p&0xf79ef79e)>>1) - ((p&0xc618c618)>>3);\r
351                 }\r
352         }\r
353         else\r
354         {\r
355                 while (pixels--)\r
356                 {\r
357                         unsigned int p = *sorc++;\r
358                         *dest++ = (p&0xf79ef79e)>>1;\r
359                 }\r
360         }\r
361 }\r
362 \r
363 static void menu_darken_text_bg(void)\r
364 {\r
365         int x, y, xmin, xmax, ymax, ls;\r
366         unsigned short *screen = g_menuscreen_ptr;\r
367 \r
368         xmin = border_left - 3;\r
369         if (xmin < 0)\r
370                 xmin = 0;\r
371         xmax = border_right + 2;\r
372         if (xmax > g_menuscreen_w - 1)\r
373                 xmax = g_menuscreen_w - 1;\r
374 \r
375         y = border_top - 3;\r
376         if (y < 0)\r
377                 y = 0;\r
378         ymax = border_bottom + 2;\r
379         if (ymax > g_menuscreen_h - 1)\r
380                 ymax = g_menuscreen_h - 1;\r
381 \r
382         for (x = xmin; x <= xmax; x++)\r
383                 screen[y * g_menuscreen_w + x] = 0xa514;\r
384         for (y++; y < ymax; y++)\r
385         {\r
386                 ls = y * g_menuscreen_w;\r
387                 screen[ls + xmin] = 0xffff;\r
388                 for (x = xmin + 1; x < xmax; x++)\r
389                 {\r
390                         unsigned int p = screen[ls + x];\r
391                         if (p != menu_text_color)\r
392                                 screen[ls + x] = ((p&0xf79e)>>1) - ((p&0xc618)>>3);\r
393                 }\r
394                 screen[ls + xmax] = 0xffff;\r
395         }\r
396         ls = y * g_menuscreen_w;\r
397         for (x = xmin; x <= xmax; x++)\r
398                 screen[ls + x] = 0xffff;\r
399 }\r
400 \r
401 static int borders_pending;\r
402 \r
403 static void menu_reset_borders(void)\r
404 {\r
405         border_left = g_menuscreen_w;\r
406         border_right = 0;\r
407         border_top = g_menuscreen_h;\r
408         border_bottom = 0;\r
409 }\r
410 \r
411 static void menu_draw_begin(int need_bg, int no_borders)\r
412 {\r
413         plat_video_menu_begin();\r
414 \r
415         menu_reset_borders();\r
416         borders_pending = g_border_style && !no_borders;\r
417 \r
418         if (need_bg) {\r
419                 if (g_border_style && no_borders) {\r
420                         menu_darken_bg(g_menuscreen_ptr, g_menubg_ptr,\r
421                                 g_menuscreen_w * g_menuscreen_h, 1);\r
422                 }\r
423                 else {\r
424                         memcpy(g_menuscreen_ptr, g_menubg_ptr,\r
425                                 g_menuscreen_w * g_menuscreen_h * 2);\r
426                 }\r
427         }\r
428 }\r
429 \r
430 static void menu_draw_end(void)\r
431 {\r
432         if (borders_pending)\r
433                 menu_darken_text_bg();\r
434         plat_video_menu_end();\r
435 }\r
436 \r
437 static void menu_separation(void)\r
438 {\r
439         if (borders_pending) {\r
440                 menu_darken_text_bg();\r
441                 menu_reset_borders();\r
442         }\r
443 }\r
444 \r
445 static int me_id2offset(const menu_entry *ent, menu_id id)\r
446 {\r
447         int i;\r
448         for (i = 0; ent->name; ent++, i++)\r
449                 if (ent->id == id) return i;\r
450 \r
451         lprintf("%s: id %i not found\n", __FUNCTION__, id);\r
452         return 0;\r
453 }\r
454 \r
455 static void me_enable(menu_entry *entries, menu_id id, int enable)\r
456 {\r
457         int i = me_id2offset(entries, id);\r
458         entries[i].enabled = enable;\r
459 }\r
460 \r
461 static int me_count(const menu_entry *ent)\r
462 {\r
463         int ret;\r
464 \r
465         for (ret = 0; ent->name; ent++, ret++)\r
466                 ;\r
467 \r
468         return ret;\r
469 }\r
470 \r
471 static unsigned int me_read_onoff(const menu_entry *ent)\r
472 {\r
473         // guess var size based on mask to avoid reading too much\r
474         if (ent->mask & 0xffff0000)\r
475                 return *(unsigned int *)ent->var & ent->mask;\r
476         else if (ent->mask & 0xff00)\r
477                 return *(unsigned short *)ent->var & ent->mask;\r
478         else\r
479                 return *(unsigned char *)ent->var & ent->mask;\r
480 }\r
481 \r
482 static void me_toggle_onoff(menu_entry *ent)\r
483 {\r
484         // guess var size based on mask to avoid reading too much\r
485         if (ent->mask & 0xffff0000)\r
486                 *(unsigned int *)ent->var ^= ent->mask;\r
487         else if (ent->mask & 0xff00)\r
488                 *(unsigned short *)ent->var ^= ent->mask;\r
489         else\r
490                 *(unsigned char *)ent->var ^= ent->mask;\r
491 }\r
492 \r
493 static void me_draw(const menu_entry *entries, int sel, void (*draw_more)(void))\r
494 {\r
495         const menu_entry *ent, *ent_sel = entries;\r
496         int x, y, w = 0, h = 0;\r
497         int offs, col2_offs = 27 * me_mfont_w;\r
498         int vi_sel_ln = 0;\r
499         const char *name;\r
500         int i, n;\r
501 \r
502         /* calculate size of menu rect */\r
503         for (ent = entries, i = n = 0; ent->name; ent++, i++)\r
504         {\r
505                 int wt;\r
506 \r
507                 if (!ent->enabled)\r
508                         continue;\r
509 \r
510                 if (i == sel) {\r
511                         ent_sel = ent;\r
512                         vi_sel_ln = n;\r
513                 }\r
514 \r
515                 name = NULL;\r
516                 wt = strlen(ent->name) * me_mfont_w;\r
517                 if (wt == 0 && ent->generate_name)\r
518                         name = ent->generate_name(ent->id, &offs);\r
519                 if (name != NULL)\r
520                         wt = strlen(name) * me_mfont_w;\r
521 \r
522                 if (ent->beh != MB_NONE)\r
523                 {\r
524                         if (wt > col2_offs)\r
525                                 col2_offs = wt + me_mfont_w;\r
526                         wt = col2_offs;\r
527 \r
528                         switch (ent->beh) {\r
529                         case MB_NONE:\r
530                                 break;\r
531                         case MB_OPT_ONOFF:\r
532                         case MB_OPT_RANGE:\r
533                                 wt += me_mfont_w * 3;\r
534                                 break;\r
535                         case MB_OPT_CUSTOM:\r
536                         case MB_OPT_CUSTONOFF:\r
537                         case MB_OPT_CUSTRANGE:\r
538                                 name = NULL;\r
539                                 offs = 0;\r
540                                 if (ent->generate_name != NULL)\r
541                                         name = ent->generate_name(ent->id, &offs);\r
542                                 if (name != NULL)\r
543                                         wt += (strlen(name) + offs) * me_mfont_w;\r
544                                 break;\r
545                         case MB_OPT_ENUM:\r
546                                 wt += 10 * me_mfont_w;\r
547                                 break;\r
548                         }\r
549                 }\r
550 \r
551                 if (wt > w)\r
552                         w = wt;\r
553                 n++;\r
554         }\r
555         h = n * me_mfont_h;\r
556         w += me_mfont_w * 2; /* selector */\r
557 \r
558         if (w > g_menuscreen_w) {\r
559                 lprintf("width %d > %d\n", w, g_menuscreen_w);\r
560                 w = g_menuscreen_w;\r
561         }\r
562         if (h > g_menuscreen_h) {\r
563                 lprintf("height %d > %d\n", w, g_menuscreen_h);\r
564                 h = g_menuscreen_h;\r
565         }\r
566 \r
567         x = g_menuscreen_w / 2 - w / 2;\r
568         y = g_menuscreen_h / 2 - h / 2;\r
569 #ifdef MENU_ALIGN_LEFT\r
570         if (x > 12) x = 12;\r
571 #endif\r
572 \r
573         /* draw */\r
574         menu_draw_begin(1, 0);\r
575         menu_draw_selection(x, y + vi_sel_ln * me_mfont_h, w);\r
576         x += me_mfont_w * 2;\r
577 \r
578         for (ent = entries; ent->name; ent++)\r
579         {\r
580                 const char **names;\r
581                 int len, leftname_end = 0;\r
582 \r
583                 if (!ent->enabled)\r
584                         continue;\r
585 \r
586                 name = ent->name;\r
587                 if (strlen(name) == 0) {\r
588                         if (ent->generate_name)\r
589                                 name = ent->generate_name(ent->id, &offs);\r
590                 }\r
591                 if (name != NULL) {\r
592                         text_out16(x, y, name);\r
593                         leftname_end = x + (strlen(name) + 1) * me_mfont_w;\r
594                 }\r
595 \r
596                 switch (ent->beh) {\r
597                 case MB_NONE:\r
598                         break;\r
599                 case MB_OPT_ONOFF:\r
600                         text_out16(x + col2_offs, y, me_read_onoff(ent) ? "ON" : "OFF");\r
601                         break;\r
602                 case MB_OPT_RANGE:\r
603                         text_out16(x + col2_offs, y, "%i", *(int *)ent->var);\r
604                         break;\r
605                 case MB_OPT_CUSTOM:\r
606                 case MB_OPT_CUSTONOFF:\r
607                 case MB_OPT_CUSTRANGE:\r
608                         name = NULL;\r
609                         offs = 0;\r
610                         if (ent->generate_name)\r
611                                 name = ent->generate_name(ent->id, &offs);\r
612                         if (name != NULL)\r
613                                 text_out16(x + col2_offs + offs * me_mfont_w, y, "%s", name);\r
614                         break;\r
615                 case MB_OPT_ENUM:\r
616                         names = (const char **)ent->data;\r
617                         for (i = 0; names[i] != NULL; i++) {\r
618                                 offs = x + col2_offs;\r
619                                 len = strlen(names[i]);\r
620                                 if (len > 10)\r
621                                         offs += (10 - len - 2) * me_mfont_w;\r
622                                 if (offs < leftname_end)\r
623                                         offs = leftname_end;\r
624                                 if (i == *(unsigned char *)ent->var) {\r
625                                         text_out16(offs, y, "%s", names[i]);\r
626                                         break;\r
627                                 }\r
628                         }\r
629                         break;\r
630                 }\r
631 \r
632                 y += me_mfont_h;\r
633         }\r
634 \r
635         menu_separation();\r
636 \r
637         /* display help or message if we have one */\r
638         h = (g_menuscreen_h - h) / 2; // bottom area height\r
639         if (menu_error_msg[0] != 0) {\r
640                 if (h >= me_mfont_h + 4)\r
641                         text_out16(5, g_menuscreen_h - me_mfont_h - 4, menu_error_msg);\r
642                 else\r
643                         lprintf("menu msg doesn't fit!\n");\r
644 \r
645                 if (plat_get_ticks_ms() - menu_error_time > 2048)\r
646                         menu_error_msg[0] = 0;\r
647         }\r
648         else if (ent_sel->help != NULL) {\r
649                 const char *tmp = ent_sel->help;\r
650                 int l;\r
651                 for (l = 0; tmp != NULL && *tmp != 0; l++)\r
652                         tmp = strchr(tmp + 1, '\n');\r
653                 if (h >= l * me_sfont_h + 4)\r
654                         for (tmp = ent_sel->help; l > 0; l--, tmp = strchr(tmp, '\n') + 1)\r
655                                 smalltext_out16(5, g_menuscreen_h - (l * me_sfont_h + 4), tmp, 0xffff);\r
656         }\r
657 \r
658         menu_separation();\r
659 \r
660         if (draw_more != NULL)\r
661                 draw_more();\r
662 \r
663         menu_draw_end();\r
664 }\r
665 \r
666 static int me_process(menu_entry *entry, int is_next, int is_lr)\r
667 {\r
668         const char **names;\r
669         int c;\r
670         switch (entry->beh)\r
671         {\r
672                 case MB_OPT_ONOFF:\r
673                 case MB_OPT_CUSTONOFF:\r
674                         me_toggle_onoff(entry);\r
675                         return 1;\r
676                 case MB_OPT_RANGE:\r
677                 case MB_OPT_CUSTRANGE:\r
678                         c = is_lr ? 10 : 1;\r
679                         *(int *)entry->var += is_next ? c : -c;\r
680                         if (*(int *)entry->var < (int)entry->min)\r
681                                 *(int *)entry->var = (int)entry->max;\r
682                         if (*(int *)entry->var > (int)entry->max)\r
683                                 *(int *)entry->var = (int)entry->min;\r
684                         return 1;\r
685                 case MB_OPT_ENUM:\r
686                         names = (const char **)entry->data;\r
687                         for (c = 0; names[c] != NULL; c++)\r
688                                 ;\r
689                         *(signed char *)entry->var += is_next ? 1 : -1;\r
690                         if (*(signed char *)entry->var < 0)\r
691                                 *(signed char *)entry->var = 0;\r
692                         if (*(signed char *)entry->var >= c)\r
693                                 *(signed char *)entry->var = c - 1;\r
694                         return 1;\r
695                 default:\r
696                         return 0;\r
697         }\r
698 }\r
699 \r
700 static void debug_menu_loop(void);\r
701 \r
702 static int me_loop_d(menu_entry *menu, int *menu_sel, void (*draw_prep)(void), void (*draw_more)(void))\r
703 {\r
704         int ret = 0, inp, sel = *menu_sel, menu_sel_max;\r
705 \r
706         menu_sel_max = me_count(menu) - 1;\r
707         if (menu_sel_max < 0) {\r
708                 lprintf("no enabled menu entries\n");\r
709                 return 0;\r
710         }\r
711 \r
712         while ((!menu[sel].enabled || !menu[sel].selectable) && sel < menu_sel_max)\r
713                 sel++;\r
714 \r
715         /* make sure action buttons are not pressed on entering menu */\r
716         me_draw(menu, sel, NULL);\r
717         while (in_menu_wait_any(NULL, 50) & (PBTN_MOK|PBTN_MBACK|PBTN_MENU));\r
718 \r
719         for (;;)\r
720         {\r
721                 if (draw_prep != NULL)\r
722                         draw_prep();\r
723 \r
724                 me_draw(menu, sel, draw_more);\r
725                 inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|\r
726                         PBTN_MOK|PBTN_MBACK|PBTN_MENU|PBTN_L|PBTN_R, NULL, 70);\r
727                 if (inp & (PBTN_MENU|PBTN_MBACK))\r
728                         break;\r
729 \r
730                 if (inp & PBTN_UP  ) {\r
731                         do {\r
732                                 sel--;\r
733                                 if (sel < 0)\r
734                                         sel = menu_sel_max;\r
735                         }\r
736                         while (!menu[sel].enabled || !menu[sel].selectable);\r
737                 }\r
738                 if (inp & PBTN_DOWN) {\r
739                         do {\r
740                                 sel++;\r
741                                 if (sel > menu_sel_max)\r
742                                         sel = 0;\r
743                         }\r
744                         while (!menu[sel].enabled || !menu[sel].selectable);\r
745                 }\r
746 \r
747                 /* a bit hacky but oh well */\r
748                 if ((inp & (PBTN_L|PBTN_R)) == (PBTN_L|PBTN_R))\r
749                         debug_menu_loop();\r
750 \r
751                 if (inp & (PBTN_LEFT|PBTN_RIGHT|PBTN_L|PBTN_R)) { /* multi choice */\r
752                         if (me_process(&menu[sel], (inp & (PBTN_RIGHT|PBTN_R)) ? 1 : 0,\r
753                                                 inp & (PBTN_L|PBTN_R)))\r
754                                 continue;\r
755                 }\r
756 \r
757                 if (inp & (PBTN_MOK|PBTN_LEFT|PBTN_RIGHT|PBTN_L|PBTN_R))\r
758                 {\r
759                         /* require PBTN_MOK for MB_NONE */\r
760                         if (menu[sel].handler != NULL && (menu[sel].beh != MB_NONE || (inp & PBTN_MOK))) {\r
761                                 ret = menu[sel].handler(menu[sel].id, inp);\r
762                                 if (ret) break;\r
763                                 menu_sel_max = me_count(menu) - 1; /* might change, so update */\r
764                         }\r
765                 }\r
766         }\r
767         *menu_sel = sel;\r
768 \r
769         return ret;\r
770 }\r
771 \r
772 static int me_loop(menu_entry *menu, int *menu_sel)\r
773 {\r
774         return me_loop_d(menu, menu_sel, NULL, NULL);\r
775 }\r
776 \r
777 /* ***************************************** */\r
778 \r
779 static void draw_menu_message(const char *msg, void (*draw_more)(void))\r
780 {\r
781         int x, y, h, w, wt;\r
782         const char *p;\r
783 \r
784         p = msg;\r
785         for (h = 1, w = 0; *p != 0; h++) {\r
786                 for (wt = 0; *p != 0 && *p != '\n'; p++)\r
787                         wt++;\r
788 \r
789                 if (wt > w)\r
790                         w = wt;\r
791                 if (*p == 0)\r
792                         break;\r
793                 p++;\r
794         }\r
795 \r
796         x = g_menuscreen_w / 2 - w * me_mfont_w / 2;\r
797         y = g_menuscreen_h / 2 - h * me_mfont_h / 2;\r
798         if (x < 0) x = 0;\r
799         if (y < 0) y = 0;\r
800 \r
801         menu_draw_begin(1, 0);\r
802 \r
803         for (p = msg; *p != 0 && y <= g_menuscreen_h - me_mfont_h; y += me_mfont_h) {\r
804                 text_out16(x, y, p);\r
805 \r
806                 for (; *p != 0 && *p != '\n'; p++)\r
807                         ;\r
808                 if (*p != 0)\r
809                         p++;\r
810         }\r
811 \r
812         menu_separation();\r
813 \r
814         if (draw_more != NULL)\r
815                 draw_more();\r
816 \r
817         menu_draw_end();\r
818 }\r
819 \r
820 // -------------- del confirm ---------------\r
821 \r
822 static void do_delete(const char *fpath, const char *fname)\r
823 {\r
824         int len, mid, inp;\r
825         const char *nm;\r
826         char tmp[64];\r
827 \r
828         menu_draw_begin(1, 0);\r
829 \r
830         len = strlen(fname);\r
831         if (len > g_menuscreen_w / me_sfont_w)\r
832                 len = g_menuscreen_w / me_sfont_w;\r
833 \r
834         mid = g_menuscreen_w / 2;\r
835         text_out16(mid - me_mfont_w * 15 / 2,  8 * me_mfont_h, "About to delete");\r
836         smalltext_out16(mid - len * me_sfont_w / 2, 9 * me_mfont_h + 5, fname, 0xbdff);\r
837         text_out16(mid - me_mfont_w * 13 / 2, 11 * me_mfont_h, "Are you sure?");\r
838 \r
839         nm = in_get_key_name(-1, -PBTN_MA3);\r
840         snprintf(tmp, sizeof(tmp), "(%s - confirm, ", nm);\r
841         len = strlen(tmp);\r
842         nm = in_get_key_name(-1, -PBTN_MBACK);\r
843         snprintf(tmp + len, sizeof(tmp) - len, "%s - cancel)", nm);\r
844         len = strlen(tmp);\r
845 \r
846         text_out16(mid - me_mfont_w * len / 2, 12 * me_mfont_h, tmp);\r
847         menu_draw_end();\r
848 \r
849         while (in_menu_wait_any(NULL, 50) & (PBTN_MENU|PBTN_MA2));\r
850         inp = in_menu_wait(PBTN_MA3|PBTN_MBACK, NULL, 100);\r
851         if (inp & PBTN_MA3)\r
852                 remove(fpath);\r
853 }\r
854 \r
855 // -------------- ROM selector --------------\r
856 \r
857 static void draw_dirlist(char *curdir, struct dirent **namelist,\r
858         int n, int sel, int show_help)\r
859 {\r
860         int max_cnt, start, i, x, pos;\r
861         void *darken_ptr;\r
862         char buff[64];\r
863 \r
864         max_cnt = g_menuscreen_h / me_sfont_h;\r
865         start = max_cnt / 2 - sel;\r
866         n--; // exclude current dir (".")\r
867 \r
868         menu_draw_begin(1, 1);\r
869 \r
870 //      if (!rom_loaded)\r
871 //              menu_darken_bg(gp2x_screen, 320*240, 0);\r
872 \r
873         darken_ptr = (short *)g_menuscreen_ptr + g_menuscreen_w * max_cnt/2 * me_sfont_h;\r
874         menu_darken_bg(darken_ptr, darken_ptr, g_menuscreen_w * me_sfont_h * 8 / 10, 0);\r
875 \r
876         x = 5 + me_mfont_w + 1;\r
877         if (start - 2 >= 0)\r
878                 smalltext_out16(14, (start - 2) * me_sfont_h, curdir, 0xffff);\r
879         for (i = 0; i < n; i++) {\r
880                 pos = start + i;\r
881                 if (pos < 0)  continue;\r
882                 if (pos >= max_cnt) break;\r
883                 if (namelist[i+1]->d_type == DT_DIR) {\r
884                         smalltext_out16(x, pos * me_sfont_h, "/", 0xfff6);\r
885                         smalltext_out16(x + me_sfont_w, pos * me_sfont_h, namelist[i+1]->d_name, 0xfff6);\r
886                 } else {\r
887                         unsigned short color = fname2color(namelist[i+1]->d_name);\r
888                         smalltext_out16(x, pos * me_sfont_h, namelist[i+1]->d_name, color);\r
889                 }\r
890         }\r
891         smalltext_out16(5, max_cnt/2 * me_sfont_h, ">", 0xffff);\r
892 \r
893         if (show_help) {\r
894                 darken_ptr = (short *)g_menuscreen_ptr\r
895                         + g_menuscreen_w * (g_menuscreen_h - me_sfont_h * 5 / 2);\r
896                 menu_darken_bg(darken_ptr, darken_ptr,\r
897                         g_menuscreen_w * (me_sfont_h * 5 / 2), 1);\r
898 \r
899                 snprintf(buff, sizeof(buff), "%s - select, %s - back",\r
900                         in_get_key_name(-1, -PBTN_MOK), in_get_key_name(-1, -PBTN_MBACK));\r
901                 smalltext_out16(x, g_menuscreen_h - me_sfont_h * 3 - 2, buff, 0xe78c);\r
902 \r
903                 snprintf(buff, sizeof(buff), g_menu_filter_off ?\r
904                          "%s - hide unknown files" : "%s - show all files",\r
905                         in_get_key_name(-1, -PBTN_MA3));\r
906                 smalltext_out16(x, g_menuscreen_h - me_sfont_h * 2 - 2, buff, 0xe78c);\r
907 \r
908                 snprintf(buff, sizeof(buff), g_autostateld_opt ?\r
909                          "%s - autoload save is ON" : "%s - autoload save is OFF",\r
910                         in_get_key_name(-1, -PBTN_MA2));\r
911                 smalltext_out16(x, g_menuscreen_h - me_sfont_h * 1 - 2, buff, 0xe78c);\r
912         }\r
913 \r
914         menu_draw_end();\r
915 }\r
916 \r
917 static int scandir_cmp(const void *p1, const void *p2)\r
918 {\r
919         const struct dirent **d1 = (const struct dirent **)p1;\r
920         const struct dirent **d2 = (const struct dirent **)p2;\r
921         if ((*d1)->d_type == (*d2)->d_type)\r
922                 return alphasort(d1, d2);\r
923         if ((*d1)->d_type == DT_DIR)\r
924                 return -1; // put before\r
925         if ((*d2)->d_type == DT_DIR)\r
926                 return  1;\r
927 \r
928         return alphasort(d1, d2);\r
929 }\r
930 \r
931 static const char **filter_exts_internal;\r
932 \r
933 static int scandir_filter(const struct dirent *ent)\r
934 {\r
935         const char **filter = filter_exts_internal;\r
936         const char *ext;\r
937         int i;\r
938 \r
939         if (ent == NULL || ent->d_name == NULL)\r
940                 return 0;\r
941 \r
942         if (ent->d_type == DT_DIR)\r
943                 return 1;\r
944 \r
945         ext = strrchr(ent->d_name, '.');\r
946         if (ext == NULL)\r
947                 return 0;\r
948 \r
949         ext++;\r
950         for (i = 0; filter[i] != NULL; i++)\r
951                 if (strcasecmp(ext, filter[i]) == 0)\r
952                         return 1;\r
953 \r
954         return 0;\r
955 }\r
956 \r
957 static int dirent_seek_char(struct dirent **namelist, int len, int sel, char c)\r
958 {\r
959         int i;\r
960 \r
961         sel++;\r
962         for (i = sel + 1; i != sel; i++) {\r
963                 if (i >= len)\r
964                         i = 1;\r
965 \r
966                 if (tolower_simple(namelist[i]->d_name[0]) == c)\r
967                         break;\r
968         }\r
969 \r
970         return i - 1;\r
971 }\r
972 \r
973 static const char *menu_loop_romsel(char *curr_path, int len,\r
974         const char **filter_exts,\r
975         int (*extra_filter)(struct dirent **namelist, int count,\r
976                             const char *basedir))\r
977 {\r
978         static char rom_fname_reload[256]; // used for return\r
979         char sel_fname[256];\r
980         int (*filter)(const struct dirent *);\r
981         struct dirent **namelist = NULL;\r
982         int n = 0, inp = 0, sel = 0, show_help = 0;\r
983         char *curr_path_restore = NULL;\r
984         const char *ret = NULL;\r
985         char cinp;\r
986 \r
987         filter_exts_internal = filter_exts;\r
988         sel_fname[0] = 0;\r
989 \r
990         // is this a dir or a full path?\r
991         if (!plat_is_dir(curr_path)) {\r
992                 char *p = strrchr(curr_path, '/');\r
993                 if (p != NULL) {\r
994                         *p = 0;\r
995                         curr_path_restore = p;\r
996                         snprintf(sel_fname, sizeof(sel_fname), "%s", p + 1);\r
997                 }\r
998 \r
999                 if (rom_fname_reload[0] == 0)\r
1000                         show_help = 2;\r
1001         }\r
1002 \r
1003 rescan:\r
1004         if (namelist != NULL) {\r
1005                 while (n-- > 0)\r
1006                         free(namelist[n]);\r
1007                 free(namelist);\r
1008                 namelist = NULL;\r
1009         }\r
1010 \r
1011         filter = NULL;\r
1012         if (!g_menu_filter_off)\r
1013                 filter = scandir_filter;\r
1014 \r
1015         n = scandir(curr_path, &namelist, filter, (void *)scandir_cmp);\r
1016         if (n < 0) {\r
1017                 char *t;\r
1018                 lprintf("menu_loop_romsel failed, dir: %s\n", curr_path);\r
1019 \r
1020                 // try root\r
1021                 t = getcwd(curr_path, len);\r
1022                 if (t == NULL)\r
1023                         plat_get_root_dir(curr_path, len);\r
1024                 n = scandir(curr_path, &namelist, filter, (void *)scandir_cmp);\r
1025                 if (n < 0) {\r
1026                         // oops, we failed\r
1027                         lprintf("menu_loop_romsel failed, dir: %s\n", curr_path);\r
1028                         return NULL;\r
1029                 }\r
1030         }\r
1031 \r
1032         if (!g_menu_filter_off && extra_filter != NULL)\r
1033                 n = extra_filter(namelist, n, curr_path);\r
1034 \r
1035         // try to find selected file\r
1036         // note: we don't show '.' so sel is namelist index - 1\r
1037         sel = 0;\r
1038         if (sel_fname[0] != 0) {\r
1039                 int i;\r
1040                 for (i = 1; i < n; i++) {\r
1041                         char *dname = namelist[i]->d_name;\r
1042                         if (dname[0] == sel_fname[0] && strcmp(dname, sel_fname) == 0) {\r
1043                                 sel = i - 1;\r
1044                                 break;\r
1045                         }\r
1046                 }\r
1047         }\r
1048 \r
1049         /* make sure action buttons are not pressed on entering menu */\r
1050         draw_dirlist(curr_path, namelist, n, sel, show_help);\r
1051         while (in_menu_wait_any(NULL, 50) & (PBTN_MOK|PBTN_MBACK|PBTN_MENU))\r
1052                 ;\r
1053 \r
1054         for (;;)\r
1055         {\r
1056                 draw_dirlist(curr_path, namelist, n, sel, show_help);\r
1057                 inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT\r
1058                         | PBTN_L|PBTN_R|PBTN_MA2|PBTN_MA3|PBTN_MOK|PBTN_MBACK\r
1059                         | PBTN_MENU|PBTN_CHAR, &cinp, 33);\r
1060                 if (inp & PBTN_MA3)   {\r
1061                         g_menu_filter_off = !g_menu_filter_off;\r
1062                         snprintf(sel_fname, sizeof(sel_fname), "%s",\r
1063                                 namelist[sel+1]->d_name);\r
1064                         goto rescan;\r
1065                 }\r
1066                 if (inp & PBTN_UP  )  { sel--;   if (sel < 0)   sel = n-2; }\r
1067                 if (inp & PBTN_DOWN)  { sel++;   if (sel > n-2) sel = 0; }\r
1068                 if (inp & PBTN_LEFT)  { sel-=10; if (sel < 0)   sel = 0; }\r
1069                 if (inp & PBTN_L)     { sel-=24; if (sel < 0)   sel = 0; }\r
1070                 if (inp & PBTN_RIGHT) { sel+=10; if (sel > n-2) sel = n-2; }\r
1071                 if (inp & PBTN_R)     { sel+=24; if (sel > n-2) sel = n-2; }\r
1072 \r
1073                 if ((inp & PBTN_MOK) || (inp & (PBTN_MENU|PBTN_MA2)) == (PBTN_MENU|PBTN_MA2))\r
1074                 {\r
1075                         again:\r
1076                         if (namelist[sel+1]->d_type == DT_REG)\r
1077                         {\r
1078                                 snprintf(rom_fname_reload, sizeof(rom_fname_reload),\r
1079                                         "%s/%s", curr_path, namelist[sel+1]->d_name);\r
1080                                 if (inp & PBTN_MOK) { // return sel\r
1081                                         ret = rom_fname_reload;\r
1082                                         break;\r
1083                                 }\r
1084                                 do_delete(rom_fname_reload, namelist[sel+1]->d_name);\r
1085                                 goto rescan;\r
1086                         }\r
1087                         else if (namelist[sel+1]->d_type == DT_DIR)\r
1088                         {\r
1089                                 int newlen;\r
1090                                 char *p, *newdir;\r
1091                                 if (!(inp & PBTN_MOK))\r
1092                                         continue;\r
1093                                 newlen = strlen(curr_path) + strlen(namelist[sel+1]->d_name) + 2;\r
1094                                 newdir = malloc(newlen);\r
1095                                 if (newdir == NULL)\r
1096                                         break;\r
1097                                 if (strcmp(namelist[sel+1]->d_name, "..") == 0) {\r
1098                                         char *start = curr_path;\r
1099                                         p = start + strlen(start) - 1;\r
1100                                         while (*p == '/' && p > start) p--;\r
1101                                         while (*p != '/' && p > start) p--;\r
1102                                         if (p <= start) strcpy(newdir, "/");\r
1103                                         else { strncpy(newdir, start, p-start); newdir[p-start] = 0; }\r
1104                                 } else {\r
1105                                         strcpy(newdir, curr_path);\r
1106                                         p = newdir + strlen(newdir) - 1;\r
1107                                         while (*p == '/' && p >= newdir) *p-- = 0;\r
1108                                         strcat(newdir, "/");\r
1109                                         strcat(newdir, namelist[sel+1]->d_name);\r
1110                                 }\r
1111                                 ret = menu_loop_romsel(newdir, newlen, filter_exts, extra_filter);\r
1112                                 free(newdir);\r
1113                                 break;\r
1114                         }\r
1115                         else\r
1116                         {\r
1117                                 // unknown file type, happens on NTFS mounts. Try to guess.\r
1118                                 FILE *tstf; int tmp;\r
1119                                 snprintf(rom_fname_reload, sizeof(rom_fname_reload),\r
1120                                         "%s/%s", curr_path, namelist[sel+1]->d_name);\r
1121                                 tstf = fopen(rom_fname_reload, "rb");\r
1122                                 if (tstf != NULL)\r
1123                                 {\r
1124                                         if (fread(&tmp, 1, 1, tstf) > 0 || ferror(tstf) == 0)\r
1125                                                 namelist[sel+1]->d_type = DT_REG;\r
1126                                         else    namelist[sel+1]->d_type = DT_DIR;\r
1127                                         fclose(tstf);\r
1128                                         goto again;\r
1129                                 }\r
1130                         }\r
1131                 }\r
1132                 else if (inp & PBTN_MA2) {\r
1133                         g_autostateld_opt = !g_autostateld_opt;\r
1134                         show_help = 3;\r
1135                 }\r
1136                 else if (inp & PBTN_CHAR) {\r
1137                         // must be last\r
1138                         sel = dirent_seek_char(namelist, n, sel, cinp);\r
1139                 }\r
1140 \r
1141                 if (inp & PBTN_MBACK)\r
1142                         break;\r
1143 \r
1144                 if (show_help > 0)\r
1145                         show_help--;\r
1146         }\r
1147 \r
1148         if (n > 0) {\r
1149                 while (n-- > 0)\r
1150                         free(namelist[n]);\r
1151                 free(namelist);\r
1152         }\r
1153 \r
1154         // restore curr_path\r
1155         if (curr_path_restore != NULL)\r
1156                 *curr_path_restore = '/';\r
1157 \r
1158         return ret;\r
1159 }\r
1160 \r
1161 // ------------ savestate loader ------------\r
1162 \r
1163 #define STATE_SLOT_COUNT 10\r
1164 \r
1165 static int state_slot_flags = 0;\r
1166 static int state_slot_times[STATE_SLOT_COUNT];\r
1167 \r
1168 static void state_check_slots(void)\r
1169 {\r
1170         int slot;\r
1171 \r
1172         state_slot_flags = 0;\r
1173 \r
1174         for (slot = 0; slot < STATE_SLOT_COUNT; slot++) {\r
1175                 state_slot_times[slot] = 0;\r
1176                 if (emu_check_save_file(slot, &state_slot_times[slot]))\r
1177                         state_slot_flags |= 1 << slot;\r
1178         }\r
1179 }\r
1180 \r
1181 static void draw_savestate_bg(int slot);\r
1182 \r
1183 static void draw_savestate_menu(int menu_sel, int is_loading)\r
1184 {\r
1185         int i, x, y, w, h;\r
1186         char time_buf[32];\r
1187 \r
1188         if (state_slot_flags & (1 << menu_sel))\r
1189                 draw_savestate_bg(menu_sel);\r
1190 \r
1191         w = (13 + 2) * me_mfont_w;\r
1192         h = (1+2+STATE_SLOT_COUNT+1) * me_mfont_h;\r
1193         x = g_menuscreen_w / 2 - w / 2;\r
1194         if (x < 0) x = 0;\r
1195         y = g_menuscreen_h / 2 - h / 2;\r
1196         if (y < 0) y = 0;\r
1197 #ifdef MENU_ALIGN_LEFT\r
1198         if (x > 12 + me_mfont_w * 2)\r
1199                 x = 12 + me_mfont_w * 2;\r
1200 #endif\r
1201 \r
1202         menu_draw_begin(1, 1);\r
1203 \r
1204         text_out16(x, y, is_loading ? "Load state" : "Save state");\r
1205         y += 3 * me_mfont_h;\r
1206 \r
1207         menu_draw_selection(x - me_mfont_w * 2, y + menu_sel * me_mfont_h, (23 + 2) * me_mfont_w + 4);\r
1208 \r
1209         /* draw all slots */\r
1210         for (i = 0; i < STATE_SLOT_COUNT; i++, y += me_mfont_h)\r
1211         {\r
1212                 if (!(state_slot_flags & (1 << i)))\r
1213                         strcpy(time_buf, "free");\r
1214                 else {\r
1215                         strcpy(time_buf, "USED");\r
1216                         if (state_slot_times[i] != 0) {\r
1217                                 time_t time = state_slot_times[i];\r
1218                                 struct tm *t = localtime(&time);\r
1219                                 strftime(time_buf, sizeof(time_buf), "%x %R", t);\r
1220                         }\r
1221                 }\r
1222 \r
1223                 text_out16(x, y, "SLOT %i (%s)", i, time_buf);\r
1224         }\r
1225         text_out16(x, y, "back");\r
1226 \r
1227         menu_draw_end();\r
1228 }\r
1229 \r
1230 static int menu_loop_savestate(int is_loading)\r
1231 {\r
1232         static int menu_sel = STATE_SLOT_COUNT;\r
1233         int menu_sel_max = STATE_SLOT_COUNT;\r
1234         unsigned long inp = 0;\r
1235         int ret = 0;\r
1236 \r
1237         state_check_slots();\r
1238 \r
1239         if (!(state_slot_flags & (1 << menu_sel)) && is_loading)\r
1240                 menu_sel = menu_sel_max;\r
1241 \r
1242         for (;;)\r
1243         {\r
1244                 draw_savestate_menu(menu_sel, is_loading);\r
1245                 inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_MOK|PBTN_MBACK, NULL, 100);\r
1246                 if (inp & PBTN_UP) {\r
1247                         do {\r
1248                                 menu_sel--;\r
1249                                 if (menu_sel < 0)\r
1250                                         menu_sel = menu_sel_max;\r
1251                         } while (!(state_slot_flags & (1 << menu_sel)) && menu_sel != menu_sel_max && is_loading);\r
1252                 }\r
1253                 if (inp & PBTN_DOWN) {\r
1254                         do {\r
1255                                 menu_sel++;\r
1256                                 if (menu_sel > menu_sel_max)\r
1257                                         menu_sel = 0;\r
1258                         } while (!(state_slot_flags & (1 << menu_sel)) && menu_sel != menu_sel_max && is_loading);\r
1259                 }\r
1260                 if (inp & PBTN_MOK) { // save/load\r
1261                         if (menu_sel < STATE_SLOT_COUNT) {\r
1262                                 state_slot = menu_sel;\r
1263                                 if (emu_save_load_game(is_loading, 0)) {\r
1264                                         menu_update_msg(is_loading ? "Load failed" : "Save failed");\r
1265                                         break;\r
1266                                 }\r
1267                                 ret = 1;\r
1268                                 break;\r
1269                         }\r
1270                         break;\r
1271                 }\r
1272                 if (inp & PBTN_MBACK)\r
1273                         break;\r
1274         }\r
1275 \r
1276         return ret;\r
1277 }\r
1278 \r
1279 // -------------- key config --------------\r
1280 \r
1281 static char *action_binds(int player_idx, int action_mask, int dev_id)\r
1282 {\r
1283         int dev = 0, dev_last = IN_MAX_DEVS - 1;\r
1284         int can_combo = 1, type;\r
1285 \r
1286         static_buff[0] = 0;\r
1287 \r
1288         type = IN_BINDTYPE_EMU;\r
1289         if (player_idx >= 0) {\r
1290                 can_combo = 0;\r
1291                 type = IN_BINDTYPE_PLAYER12;\r
1292         }\r
1293         if (player_idx == 1)\r
1294                 action_mask <<= 16;\r
1295 \r
1296         if (dev_id >= 0)\r
1297                 dev = dev_last = dev_id;\r
1298 \r
1299         for (; dev <= dev_last; dev++) {\r
1300                 int k, count = 0, combo = 0;\r
1301                 const int *binds;\r
1302 \r
1303                 binds = in_get_dev_binds(dev);\r
1304                 if (binds == NULL)\r
1305                         continue;\r
1306 \r
1307                 in_get_config(dev, IN_CFG_BIND_COUNT, &count);\r
1308                 in_get_config(dev, IN_CFG_DOES_COMBOS, &combo);\r
1309                 combo = combo && can_combo;\r
1310 \r
1311                 for (k = 0; k < count; k++) {\r
1312                         const char *xname;\r
1313                         int len;\r
1314 \r
1315                         if (!(binds[IN_BIND_OFFS(k, type)] & action_mask))\r
1316                                 continue;\r
1317 \r
1318                         xname = in_get_key_name(dev, k);\r
1319                         len = strlen(static_buff);\r
1320                         if (len) {\r
1321                                 strncat(static_buff, combo ? " + " : ", ",\r
1322                                         sizeof(static_buff) - len - 1);\r
1323                                 len += combo ? 3 : 2;\r
1324                         }\r
1325                         strncat(static_buff, xname, sizeof(static_buff) - len - 1);\r
1326                 }\r
1327         }\r
1328 \r
1329         return static_buff;\r
1330 }\r
1331 \r
1332 static int count_bound_keys(int dev_id, int action_mask, int bindtype)\r
1333 {\r
1334         const int *binds;\r
1335         int k, keys = 0;\r
1336         int count = 0;\r
1337 \r
1338         binds = in_get_dev_binds(dev_id);\r
1339         if (binds == NULL)\r
1340                 return 0;\r
1341 \r
1342         in_get_config(dev_id, IN_CFG_BIND_COUNT, &count);\r
1343         for (k = 0; k < count; k++)\r
1344         {\r
1345                 if (binds[IN_BIND_OFFS(k, bindtype)] & action_mask)\r
1346                         keys++;\r
1347         }\r
1348 \r
1349         return keys;\r
1350 }\r
1351 \r
1352 static void draw_key_config(const me_bind_action *opts, int opt_cnt, int player_idx,\r
1353                 int sel, int dev_id, int dev_count, int is_bind)\r
1354 {\r
1355         char buff[64], buff2[32];\r
1356         const char *dev_name;\r
1357         int x, y, w, i;\r
1358 \r
1359         w = ((player_idx >= 0) ? 20 : 30) * me_mfont_w;\r
1360         x = g_menuscreen_w / 2 - w / 2;\r
1361         y = (g_menuscreen_h - 4 * me_mfont_h) / 2 - (2 + opt_cnt) * me_mfont_h / 2;\r
1362         if (x < me_mfont_w * 2)\r
1363                 x = me_mfont_w * 2;\r
1364 \r
1365         menu_draw_begin(1, 0);\r
1366         if (player_idx >= 0)\r
1367                 text_out16(x, y, "Player %i controls", player_idx + 1);\r
1368         else\r
1369                 text_out16(x, y, "Emulator controls");\r
1370 \r
1371         y += 2 * me_mfont_h;\r
1372         menu_draw_selection(x - me_mfont_w * 2, y + sel * me_mfont_h, w + 2 * me_mfont_w);\r
1373 \r
1374         for (i = 0; i < opt_cnt; i++, y += me_mfont_h)\r
1375                 text_out16(x, y, "%s : %s", opts[i].name,\r
1376                         action_binds(player_idx, opts[i].mask, dev_id));\r
1377 \r
1378         menu_separation();\r
1379 \r
1380         if (dev_id < 0)\r
1381                 dev_name = "(all devices)";\r
1382         else\r
1383                 dev_name = in_get_dev_name(dev_id, 0, 1);\r
1384         w = strlen(dev_name) * me_mfont_w;\r
1385         if (w < 30 * me_mfont_w)\r
1386                 w = 30 * me_mfont_w;\r
1387         if (w > g_menuscreen_w)\r
1388                 w = g_menuscreen_w;\r
1389 \r
1390         x = g_menuscreen_w / 2 - w / 2;\r
1391 \r
1392         if (!is_bind) {\r
1393                 snprintf(buff2, sizeof(buff2), "%s", in_get_key_name(-1, -PBTN_MOK));\r
1394                 snprintf(buff, sizeof(buff), "%s - bind, %s - clear", buff2,\r
1395                                 in_get_key_name(-1, -PBTN_MA2));\r
1396                 text_out16(x, g_menuscreen_h - 4 * me_mfont_h, buff);\r
1397         }\r
1398         else\r
1399                 text_out16(x, g_menuscreen_h - 4 * me_mfont_h, "Press a button to bind/unbind");\r
1400 \r
1401         if (dev_count > 1) {\r
1402                 text_out16(x, g_menuscreen_h - 3 * me_mfont_h, dev_name);\r
1403                 text_out16(x, g_menuscreen_h - 2 * me_mfont_h, "Press left/right for other devs");\r
1404         }\r
1405 \r
1406         menu_draw_end();\r
1407 }\r
1408 \r
1409 static void key_config_loop(const me_bind_action *opts, int opt_cnt, int player_idx)\r
1410 {\r
1411         int i, sel = 0, menu_sel_max = opt_cnt - 1, does_combos = 0;\r
1412         int dev_id, bind_dev_id, dev_count, kc, is_down, mkey;\r
1413         int unbind, bindtype, mask_shift;\r
1414 \r
1415         for (i = 0, dev_id = -1, dev_count = 0; i < IN_MAX_DEVS; i++) {\r
1416                 if (in_get_dev_name(i, 1, 0) != NULL) {\r
1417                         dev_count++;\r
1418                         if (dev_id < 0)\r
1419                                 dev_id = i;\r
1420                 }\r
1421         }\r
1422 \r
1423         if (dev_id == -1) {\r
1424                 lprintf("no devs, can't do config\n");\r
1425                 return;\r
1426         }\r
1427 \r
1428         dev_id = -1; // show all\r
1429         mask_shift = 0;\r
1430         if (player_idx == 1)\r
1431                 mask_shift = 16;\r
1432         bindtype = player_idx >= 0 ? IN_BINDTYPE_PLAYER12 : IN_BINDTYPE_EMU;\r
1433 \r
1434         for (;;)\r
1435         {\r
1436                 draw_key_config(opts, opt_cnt, player_idx, sel, dev_id, dev_count, 0);\r
1437                 mkey = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT\r
1438                                 |PBTN_MBACK|PBTN_MOK|PBTN_MA2, NULL, 100);\r
1439                 switch (mkey) {\r
1440                         case PBTN_UP:   sel--; if (sel < 0) sel = menu_sel_max; continue;\r
1441                         case PBTN_DOWN: sel++; if (sel > menu_sel_max) sel = 0; continue;\r
1442                         case PBTN_LEFT:\r
1443                                 for (i = 0, dev_id--; i < IN_MAX_DEVS + 1; i++, dev_id--) {\r
1444                                         if (dev_id < -1)\r
1445                                                 dev_id = IN_MAX_DEVS - 1;\r
1446                                         if (dev_id == -1 || in_get_dev_name(dev_id, 0, 0) != NULL)\r
1447                                                 break;\r
1448                                 }\r
1449                                 continue;\r
1450                         case PBTN_RIGHT:\r
1451                                 for (i = 0, dev_id++; i < IN_MAX_DEVS; i++, dev_id++) {\r
1452                                         if (dev_id >= IN_MAX_DEVS)\r
1453                                                 dev_id = -1;\r
1454                                         if (dev_id == -1 || in_get_dev_name(dev_id, 0, 0) != NULL)\r
1455                                                 break;\r
1456                                 }\r
1457                                 continue;\r
1458                         case PBTN_MBACK:\r
1459                                 return;\r
1460                         case PBTN_MOK:\r
1461                                 if (sel >= opt_cnt)\r
1462                                         return;\r
1463                                 while (in_menu_wait_any(NULL, 30) & PBTN_MOK)\r
1464                                         ;\r
1465                                 break;\r
1466                         case PBTN_MA2:\r
1467                                 in_unbind_all(dev_id, opts[sel].mask << mask_shift, bindtype);\r
1468                                 continue;\r
1469                         default:continue;\r
1470                 }\r
1471 \r
1472                 draw_key_config(opts, opt_cnt, player_idx, sel, dev_id, dev_count, 1);\r
1473 \r
1474                 /* wait for some up event */\r
1475                 for (is_down = 1; is_down; )\r
1476                         kc = in_update_keycode(&bind_dev_id, &is_down, NULL, -1);\r
1477 \r
1478                 i = count_bound_keys(bind_dev_id, opts[sel].mask << mask_shift, bindtype);\r
1479                 unbind = (i > 0);\r
1480 \r
1481                 /* allow combos if device supports them */\r
1482                 in_get_config(bind_dev_id, IN_CFG_DOES_COMBOS, &does_combos);\r
1483                 if (i == 1 && bindtype == IN_BINDTYPE_EMU && does_combos)\r
1484                         unbind = 0;\r
1485 \r
1486                 if (unbind)\r
1487                         in_unbind_all(bind_dev_id, opts[sel].mask << mask_shift, bindtype);\r
1488 \r
1489                 in_bind_key(bind_dev_id, kc, opts[sel].mask << mask_shift, bindtype, 0);\r
1490         }\r
1491 }\r
1492 \r