754b6d230b3c9ba9548dc48dd2a83f72d7f148e8
[pcsx_rearmed.git] / frontend / menu.c
1 /*
2  * (C) GraÅžvydas "notaz" Ignotas, 2010-2011
3  *
4  * This work is licensed under the terms of any of these licenses
5  * (at your option):
6  *  - GNU GPL, version 2 or later.
7  *  - GNU LGPL, version 2.1 or later.
8  * See the COPYING file in the top-level directory.
9  */
10
11 #include <stdio.h>
12 #include <string.h>
13 #include <errno.h>
14 #include <dlfcn.h>
15 #include <zlib.h>
16
17 #include "main.h"
18 #include "menu.h"
19 #include "config.h"
20 #include "plugin.h"
21 #include "plugin_lib.h"
22 #include "omap.h"
23 #include "common/plat.h"
24 #include "../libpcsxcore/misc.h"
25 #include "../libpcsxcore/new_dynarec/new_dynarec.h"
26 #include "revision.h"
27
28 #define MENU_X2 1
29 #define array_size(x) (sizeof(x) / sizeof(x[0]))
30
31 typedef enum
32 {
33         MA_NONE = 1,
34         MA_MAIN_RESUME_GAME,
35         MA_MAIN_SAVE_STATE,
36         MA_MAIN_LOAD_STATE,
37         MA_MAIN_RESET_GAME,
38         MA_MAIN_LOAD_ROM,
39         MA_MAIN_RUN_BIOS,
40         MA_MAIN_CONTROLS,
41         MA_MAIN_CREDITS,
42         MA_MAIN_EXIT,
43         MA_CTRL_PLAYER1,
44         MA_CTRL_PLAYER2,
45         MA_CTRL_EMU,
46         MA_CTRL_DEV_FIRST,
47         MA_CTRL_DEV_NEXT,
48         MA_CTRL_DONE,
49         MA_OPT_SAVECFG,
50         MA_OPT_SAVECFG_GAME,
51         MA_OPT_CPU_CLOCKS,
52         MA_OPT_FILTERING,
53 } menu_id;
54
55 enum {
56         SCALE_1_1,
57         SCALE_4_3,
58         SCALE_FULLSCREEN,
59         SCALE_CUSTOM,
60 };
61
62 static int last_psx_w, last_psx_h, last_psx_bpp;
63 static int scaling, filter, state_slot, cpu_clock, cpu_clock_st;
64 static char rom_fname_reload[MAXPATHLEN];
65 static char last_selected_fname[MAXPATHLEN];
66 static int region;
67 int g_opts;
68
69 // from softgpu plugin
70 extern int iUseDither;
71 extern int UseFrameSkip;
72 extern uint32_t dwActFixes;
73 extern float fFrameRateHz;
74 extern int dwFrameRateTicks;
75
76 // sound plugin
77 extern int iUseReverb;
78 extern int iUseInterpolation;
79 extern int iXAPitch;
80 extern int iSPUIRQWait;
81 extern int iUseTimer;
82
83 static const char *bioses[24];
84 static const char *gpu_plugins[16];
85 static const char *spu_plugins[16];
86 static int bios_sel, gpu_plugsel, spu_plugsel;
87
88
89 static int min(int x, int y) { return x < y ? x : y; }
90 static int max(int x, int y) { return x > y ? x : y; }
91
92 void emu_make_path(char *buff, const char *end, int size)
93 {
94         int pos, end_len;
95
96         end_len = strlen(end);
97         pos = plat_get_root_dir(buff, size);
98         strncpy(buff + pos, end, size - pos);
99         buff[size - 1] = 0;
100         if (pos + end_len > size - 1)
101                 printf("Warning: path truncated: %s\n", buff);
102 }
103
104 static int emu_check_save_file(int slot)
105 {
106         char fname[MAXPATHLEN];
107         int ret;
108
109         ret = get_state_filename(fname, sizeof(fname), slot);
110         if (ret != 0)
111                 return 0;
112
113         ret = CheckState(fname);
114         return ret == 0 ? 1 : 0;
115 }
116
117 static int emu_save_load_game(int load, int sram)
118 {
119         char fname[MAXPATHLEN];
120         int ret;
121
122         ret = get_state_filename(fname, sizeof(fname), state_slot);
123         if (ret != 0)
124                 return 0;
125
126         if (load) {
127                 ret = LoadState(fname);
128
129                 // reflect hle/bios mode from savestate
130                 if (Config.HLE)
131                         bios_sel = 0;
132                 else if (bios_sel == 0 && bioses[1] != NULL)
133                         // XXX: maybe find the right bios instead
134                         bios_sel = 1;
135         }
136         else
137                 ret = SaveState(fname);
138
139         return ret;
140 }
141
142 // propagate menu settings to the emu vars
143 static void menu_sync_config(void)
144 {
145         Config.PsxAuto = 1;
146         if (region > 0) {
147                 Config.PsxAuto = 0;
148                 Config.PsxType = region - 1;
149         }
150         pl_frame_interval = Config.PsxType ? 20000 : 16667;
151
152         // used by P.E.Op.S. frameskip code
153         fFrameRateHz = Config.PsxType ? 50.0f : 59.94f;
154         dwFrameRateTicks = (100000*100 / (unsigned long)(fFrameRateHz*100));
155 }
156
157 static void menu_set_defconfig(void)
158 {
159         g_opts = 0;
160         scaling = SCALE_4_3;
161
162         region = 0;
163         Config.Xa = Config.Cdda = Config.Sio =
164         Config.SpuIrq = Config.RCntFix = Config.VSyncWA = 0;
165
166         iUseDither = UseFrameSkip = 0;
167         dwActFixes = 1<<7;
168
169         iUseReverb = 2;
170         iUseInterpolation = 1;
171         iXAPitch = iSPUIRQWait = 0;
172         iUseTimer = 2;
173
174         menu_sync_config();
175 }
176
177 #define CE_CONFIG_STR(val) \
178         { #val, 0, Config.val }
179
180 #define CE_CONFIG_VAL(val) \
181         { #val, sizeof(Config.val), &Config.val }
182
183 #define CE_STR(val) \
184         { #val, 0, val }
185
186 #define CE_INTVAL(val) \
187         { #val, sizeof(val), &val }
188
189 static const struct {
190         const char *name;
191         size_t len;
192         void *val;
193 } config_data[] = {
194         CE_CONFIG_STR(Bios),
195         CE_CONFIG_STR(Gpu),
196         CE_CONFIG_STR(Spu),
197 //      CE_CONFIG_STR(Cdr),
198         CE_CONFIG_VAL(Xa),
199         CE_CONFIG_VAL(Sio),
200         CE_CONFIG_VAL(Mdec),
201         CE_CONFIG_VAL(Cdda),
202         CE_CONFIG_VAL(Debug),
203         CE_CONFIG_VAL(PsxOut),
204         CE_CONFIG_VAL(SpuIrq),
205         CE_CONFIG_VAL(RCntFix),
206         CE_CONFIG_VAL(VSyncWA),
207         CE_CONFIG_VAL(Cpu),
208         CE_INTVAL(region),
209         CE_INTVAL(scaling),
210         CE_INTVAL(g_layer_x),
211         CE_INTVAL(g_layer_y),
212         CE_INTVAL(g_layer_w),
213         CE_INTVAL(g_layer_h),
214         CE_INTVAL(filter),
215         CE_INTVAL(state_slot),
216         CE_INTVAL(cpu_clock),
217         CE_INTVAL(g_opts),
218         CE_INTVAL(iUseDither),
219         CE_INTVAL(UseFrameSkip),
220         CE_INTVAL(dwActFixes),
221         CE_INTVAL(iUseReverb),
222         CE_INTVAL(iUseInterpolation),
223         CE_INTVAL(iXAPitch),
224         CE_INTVAL(iSPUIRQWait),
225         CE_INTVAL(iUseTimer),
226 };
227
228 static char *get_cd_label(void)
229 {
230         static char trimlabel[33];
231         int j;
232
233         strncpy(trimlabel, CdromLabel, 32);
234         trimlabel[32] = 0;
235         for (j = 31; j >= 0; j--)
236                 if (trimlabel[j] == ' ')
237                         trimlabel[j] = 0;
238
239         return trimlabel;
240 }
241
242 static void make_cfg_fname(char *buf, size_t size, int is_game)
243 {
244         if (is_game)
245                 snprintf(buf, size, "." PCSX_DOT_DIR "cfg/%.32s-%.9s.cfg", get_cd_label(), CdromId);
246         else
247                 snprintf(buf, size, "." PCSX_DOT_DIR "%s", cfgfile_basename);
248 }
249
250 static int menu_write_config(int is_game)
251 {
252         char cfgfile[MAXPATHLEN];
253         FILE *f;
254         int i;
255
256         make_cfg_fname(cfgfile, sizeof(cfgfile), is_game);
257         f = fopen(cfgfile, "w");
258         if (f == NULL) {
259                 printf("menu_write_config: failed to open: %s\n", cfgfile);
260                 return -1;
261         }
262
263         for (i = 0; i < ARRAY_SIZE(config_data); i++) {
264                 fprintf(f, "%s = ", config_data[i].name);
265                 switch (config_data[i].len) {
266                 case 0:
267                         fprintf(f, "%s\n", (char *)config_data[i].val);
268                         break;
269                 case 1:
270                         fprintf(f, "%x\n", *(u8 *)config_data[i].val);
271                         break;
272                 case 2:
273                         fprintf(f, "%x\n", *(u16 *)config_data[i].val);
274                         break;
275                 case 4:
276                         fprintf(f, "%x\n", *(u32 *)config_data[i].val);
277                         break;
278                 default:
279                         printf("menu_write_config: unhandled len %d for %s\n",
280                                  config_data[i].len, config_data[i].name);
281                         break;
282                 }
283         }
284
285         if (!is_game)
286                 fprintf(f, "lastcdimg = %s\n", last_selected_fname);
287
288         fclose(f);
289         return 0;
290 }
291
292 static void parse_str_val(char *cval, const char *src)
293 {
294         char *tmp;
295         strncpy(cval, src, MAXPATHLEN);
296         cval[MAXPATHLEN - 1] = 0;
297         tmp = strchr(cval, '\n');
298         if (tmp == NULL)
299                 tmp = strchr(cval, '\r');
300         if (tmp != NULL)
301                 *tmp = 0;
302 }
303
304 static int menu_load_config(int is_game)
305 {
306         char cfgfile[MAXPATHLEN];
307         int i, ret = -1;
308         long size;
309         char *cfg;
310         FILE *f;
311
312         make_cfg_fname(cfgfile, sizeof(cfgfile), is_game);
313         f = fopen(cfgfile, "r");
314         if (f == NULL) {
315                 printf("menu_load_config: failed to open: %s\n", cfgfile);
316                 return -1;
317         }
318
319         fseek(f, 0, SEEK_END);
320         size = ftell(f);
321         if (size <= 0) {
322                 printf("bad size %ld: %s\n", size, cfgfile);
323                 goto fail;
324         }
325
326         cfg = malloc(size + 1);
327         if (cfg == NULL)
328                 goto fail;
329
330         fseek(f, 0, SEEK_SET);
331         if (fread(cfg, 1, size, f) != size) {
332                 printf("failed to read: %s\n", cfgfile);
333                 goto fail_read;
334         }
335         cfg[size] = 0;
336
337         for (i = 0; i < ARRAY_SIZE(config_data); i++) {
338                 char *tmp, *tmp2;
339                 u32 val;
340
341                 tmp = strstr(cfg, config_data[i].name);
342                 if (tmp == NULL)
343                         continue;
344                 tmp += strlen(config_data[i].name);
345                 if (strncmp(tmp, " = ", 3) != 0)
346                         continue;
347                 tmp += 3;
348
349                 if (config_data[i].len == 0) {
350                         parse_str_val(config_data[i].val, tmp);
351                         continue;
352                 }
353
354                 tmp2 = NULL;
355                 val = strtoul(tmp, &tmp2, 16);
356                 if (tmp2 == NULL || tmp == tmp2)
357                         continue; // parse failed
358
359                 switch (config_data[i].len) {
360                 case 1:
361                         *(u8 *)config_data[i].val = val;
362                         break;
363                 case 2:
364                         *(u16 *)config_data[i].val = val;
365                         break;
366                 case 4:
367                         *(u32 *)config_data[i].val = val;
368                         break;
369                 default:
370                         printf("menu_load_config: unhandled len %d for %s\n",
371                                  config_data[i].len, config_data[i].name);
372                         break;
373                 }
374         }
375
376         if (!is_game) {
377                 char *tmp = strstr(cfg, "lastcdimg = ");
378                 if (tmp != NULL) {
379                         tmp += 12;
380                         parse_str_val(last_selected_fname, tmp);
381                 }
382         }
383
384         menu_sync_config();
385
386         // sync plugins
387         for (i = bios_sel = 0; bioses[i] != NULL; i++)
388                 if (strcmp(Config.Bios, bioses[i]) == 0)
389                         { bios_sel = i; break; }
390
391         for (i = gpu_plugsel = 0; gpu_plugins[i] != NULL; i++)
392                 if (strcmp(Config.Gpu, gpu_plugins[i]) == 0)
393                         { gpu_plugsel = i; break; }
394
395         for (i = spu_plugsel = 0; spu_plugins[i] != NULL; i++)
396                 if (strcmp(Config.Spu, spu_plugins[i]) == 0)
397                         { spu_plugsel = i; break; }
398
399         ret = 0;
400 fail_read:
401         free(cfg);
402 fail:
403         fclose(f);
404         return ret;
405 }
406
407 // rrrr rggg gggb bbbb
408 static unsigned short fname2color(const char *fname)
409 {
410         static const char *cdimg_exts[] = { ".bin", ".img", ".iso", ".cue", ".z", ".bz", ".znx", ".pbp" };
411         static const char *other_exts[] = { ".ccd", ".toc", ".mds", ".sub", ".table", ".index" };
412         const char *ext = strrchr(fname, '.');
413         int i;
414
415         if (ext == NULL)
416                 return 0xffff;
417         for (i = 0; i < array_size(cdimg_exts); i++)
418                 if (strcasecmp(ext, cdimg_exts[i]) == 0)
419                         return 0x7bff;
420         for (i = 0; i < array_size(other_exts); i++)
421                 if (strcasecmp(ext, other_exts[i]) == 0)
422                         return 0xa514;
423         return 0xffff;
424 }
425
426 static void draw_savestate_bg(int slot);
427
428 #define MENU_ALIGN_LEFT
429 #define menu_init menu_init_common
430 #include "common/menu.c"
431 #undef menu_init
432
433 // a bit of black magic here
434 static void draw_savestate_bg(int slot)
435 {
436         extern void bgr555_to_rgb565(void *dst, void *src, int bytes);
437         static const int psx_widths[8]  = { 256, 368, 320, 384, 512, 512, 640, 640 };
438         int x, y, w, h;
439         char fname[MAXPATHLEN];
440         GPUFreeze_t *gpu;
441         u16 *s, *d;
442         gzFile f;
443         int ret;
444         u32 tmp;
445
446         ret = get_state_filename(fname, sizeof(fname), slot);
447         if (ret != 0)
448                 return;
449
450         f = gzopen(fname, "rb");
451         if (f == NULL)
452                 return;
453
454         if (gzseek(f, 0x29933d, SEEK_SET) != 0x29933d) {
455                 fprintf(stderr, "gzseek failed\n");
456                 gzclose(f);
457                 return;
458         }
459
460         gpu = malloc(sizeof(*gpu));
461         if (gpu == NULL) {
462                 gzclose(f);
463                 return;
464         }
465
466         ret = gzread(f, gpu, sizeof(*gpu));
467         gzclose(f);
468         if (ret != sizeof(*gpu)) {
469                 fprintf(stderr, "gzread failed\n");
470                 goto out;
471         }
472
473         memcpy(g_menubg_ptr, g_menubg_src_ptr, g_menuscreen_w * g_menuscreen_h * 2);
474
475         if ((gpu->ulStatus & 0x800000) || (gpu->ulStatus & 0x200000))
476                 goto out; // disabled || 24bpp (NYET)
477
478         x = gpu->ulControl[5] & 0x3ff;
479         y = (gpu->ulControl[5] >> 10) & 0x1ff;
480         s = (u16 *)gpu->psxVRam + y * 1024 + (x & ~3);
481         w = psx_widths[(gpu->ulStatus >> 16) & 7];
482         tmp = gpu->ulControl[7];
483         h = ((tmp >> 10) & 0x3ff) - (tmp & 0x3ff);
484         if (gpu->ulStatus & 0x80000) // doubleheight
485                 h *= 2;
486
487         x = max(0, g_menuscreen_w - w) & ~3;
488         y = max(0, g_menuscreen_h / 2 - h / 2);
489         w = min(g_menuscreen_w, w);
490         h = min(g_menuscreen_h, h);
491         d = (u16 *)g_menubg_ptr + g_menuscreen_w * y + x;
492
493         for (; h > 0; h--, d += g_menuscreen_w, s += 1024)
494                 bgr555_to_rgb565(d, s, w * 2);
495
496 out:
497         free(gpu);
498 }
499
500 // ---------- pandora specific -----------
501
502 static const char pnd_script_base[] = "sudo -n /usr/pandora/scripts";
503 static char **pnd_filter_list;
504
505 static int get_cpu_clock(void)
506 {
507         FILE *f;
508         int ret = 0;
509         f = fopen("/proc/pandora/cpu_mhz_max", "r");
510         if (f) {
511                 fscanf(f, "%d", &ret);
512                 fclose(f);
513         }
514         return ret;
515 }
516
517 static void apply_cpu_clock(void)
518 {
519         char buf[128];
520
521         if (cpu_clock != 0 && cpu_clock != get_cpu_clock()) {
522                 snprintf(buf, sizeof(buf), "unset DISPLAY; echo y | %s/op_cpuspeed.sh %d",
523                          pnd_script_base, cpu_clock);
524                 system(buf);
525         }
526 }
527
528 static void apply_filter(int which)
529 {
530         static int old = -1;
531         char buf[128];
532         int i;
533
534         if (pnd_filter_list == NULL || which == old)
535                 return;
536
537         for (i = 0; i < which; i++)
538                 if (pnd_filter_list[i] == NULL)
539                         return;
540
541         if (pnd_filter_list[i] == NULL)
542                 return;
543
544         snprintf(buf, sizeof(buf), "%s/op_videofir.sh %s", pnd_script_base, pnd_filter_list[i]);
545         system(buf);
546         old = which;
547 }
548
549 static menu_entry e_menu_gfx_options[];
550
551 static void pnd_menu_init(void)
552 {
553         struct dirent *ent;
554         int i, count = 0;
555         char **mfilters;
556         char buff[64];
557         DIR *dir;
558
559         cpu_clock_st = cpu_clock = get_cpu_clock();
560
561         dir = opendir("/etc/pandora/conf/dss_fir");
562         if (dir == NULL) {
563                 perror("filter opendir");
564                 return;
565         }
566
567         while (1) {
568                 errno = 0;
569                 ent = readdir(dir);
570                 if (ent == NULL) {
571                         if (errno != 0)
572                                 perror("readdir");
573                         break;
574                 }
575
576                 if (ent->d_type != DT_REG && ent->d_type != DT_LNK)
577                         continue;
578
579                 count++;
580         }
581
582         if (count == 0)
583                 return;
584
585         mfilters = calloc(count + 1, sizeof(mfilters[0]));
586         if (mfilters == NULL)
587                 return;
588
589         rewinddir(dir);
590         for (i = 0; (ent = readdir(dir)); ) {
591                 size_t len;
592
593                 if (ent->d_type != DT_REG && ent->d_type != DT_LNK)
594                         continue;
595
596                 len = strlen(ent->d_name);
597
598                 // skip pre-HF5 extra files
599                 if (len >= 3 && strcmp(ent->d_name + len - 3, "_v3") == 0)
600                         continue;
601                 if (len >= 3 && strcmp(ent->d_name + len - 3, "_v5") == 0)
602                         continue;
603
604                 // have to cut "_up_h" for pre-HF5
605                 if (len > 5 && strcmp(ent->d_name + len - 5, "_up_h") == 0)
606                         len -= 5;
607
608                 if (len > sizeof(buff) - 1)
609                         continue;
610
611                 strncpy(buff, ent->d_name, len);
612                 buff[len] = 0;
613                 mfilters[i] = strdup(buff);
614                 if (mfilters[i] != NULL)
615                         i++;
616         }
617         closedir(dir);
618
619         i = me_id2offset(e_menu_gfx_options, MA_OPT_FILTERING);
620         e_menu_gfx_options[i].data = (void *)mfilters;
621         pnd_filter_list = mfilters;
622 }
623
624 void menu_finish(void)
625 {
626         cpu_clock = cpu_clock_st;
627         apply_cpu_clock();
628 }
629
630 // -------------- key config --------------
631
632 me_bind_action me_ctrl_actions[] =
633 {
634         { "UP      ", 1 << DKEY_UP},
635         { "DOWN    ", 1 << DKEY_DOWN },
636         { "LEFT    ", 1 << DKEY_LEFT },
637         { "RIGHT   ", 1 << DKEY_RIGHT },
638         { "TRIANGLE", 1 << DKEY_TRIANGLE },
639         { "CIRCLE  ", 1 << DKEY_CIRCLE },
640         { "CROSS   ", 1 << DKEY_CROSS },
641         { "SQUARE  ", 1 << DKEY_SQUARE },
642         { "L1      ", 1 << DKEY_L1 },
643         { "R1      ", 1 << DKEY_R1 },
644         { "L2      ", 1 << DKEY_L2 },
645         { "R2      ", 1 << DKEY_R2 },
646         { "START   ", 1 << DKEY_START },
647         { "SELECT  ", 1 << DKEY_SELECT },
648         { NULL,       0 }
649 };
650
651 me_bind_action emuctrl_actions[] =
652 {
653 /*
654         { "Load State       ", PEV_STATE_LOAD },
655         { "Save State       ", PEV_STATE_SAVE },
656         { "Prev Save Slot   ", PEV_SSLOT_PREV },
657         { "Next Save Slot   ", PEV_SSLOT_NEXT },
658 */
659         { "Enter Menu       ", PEV_MENU },
660         { NULL,                0 }
661 };
662
663 static int key_config_loop_wrap(int id, int keys)
664 {
665         switch (id) {
666                 case MA_CTRL_PLAYER1:
667                         key_config_loop(me_ctrl_actions, array_size(me_ctrl_actions) - 1, 0);
668                         break;
669                 case MA_CTRL_PLAYER2:
670                         key_config_loop(me_ctrl_actions, array_size(me_ctrl_actions) - 1, 1);
671                         break;
672                 case MA_CTRL_EMU:
673                         key_config_loop(emuctrl_actions, array_size(emuctrl_actions) - 1, -1);
674                         break;
675                 default:
676                         break;
677         }
678         return 0;
679 }
680
681 static const char *mgn_dev_name(int id, int *offs)
682 {
683         const char *name = NULL;
684         static int it = 0;
685
686         if (id == MA_CTRL_DEV_FIRST)
687                 it = 0;
688
689         for (; it < IN_MAX_DEVS; it++) {
690                 name = in_get_dev_name(it, 1, 1);
691                 if (name != NULL)
692                         break;
693         }
694
695         it++;
696         return name;
697 }
698
699 static const char *mgn_saveloadcfg(int id, int *offs)
700 {
701         return "";
702 }
703
704 static int mh_savecfg(int id, int keys)
705 {
706         if (menu_write_config(id == MA_OPT_SAVECFG_GAME ? 1 : 0) == 0)
707                 me_update_msg("config saved");
708         else
709                 me_update_msg("failed to write config");
710
711         return 1;
712 }
713
714 static menu_entry e_menu_keyconfig[] =
715 {
716         mee_handler_id("Player 1",          MA_CTRL_PLAYER1,    key_config_loop_wrap),
717         mee_handler_id("Player 2",          MA_CTRL_PLAYER2,    key_config_loop_wrap),
718         mee_handler_id("Emulator controls", MA_CTRL_EMU,        key_config_loop_wrap),
719 //      mee_cust_nosave("Save global config",       MA_OPT_SAVECFG, mh_savecfg, mgn_saveloadcfg),
720 //      mee_cust_nosave("Save cfg for loaded game", MA_OPT_SAVECFG_GAME, mh_savecfg, mgn_saveloadcfg),
721         mee_label     (""),
722         mee_label     ("Input devices:"),
723         mee_label_mk  (MA_CTRL_DEV_FIRST, mgn_dev_name),
724         mee_label_mk  (MA_CTRL_DEV_NEXT,  mgn_dev_name),
725         mee_label_mk  (MA_CTRL_DEV_NEXT,  mgn_dev_name),
726         mee_label_mk  (MA_CTRL_DEV_NEXT,  mgn_dev_name),
727         mee_label_mk  (MA_CTRL_DEV_NEXT,  mgn_dev_name),
728         mee_label_mk  (MA_CTRL_DEV_NEXT,  mgn_dev_name),
729         mee_label_mk  (MA_CTRL_DEV_NEXT,  mgn_dev_name),
730         mee_end,
731 };
732
733 static int menu_loop_keyconfig(int id, int keys)
734 {
735         static int sel = 0;
736
737 //      me_enable(e_menu_keyconfig, MA_OPT_SAVECFG_GAME, ready_to_go && CdromId[0]);
738         me_loop(e_menu_keyconfig, &sel, NULL);
739         return 0;
740 }
741
742 // ------------ gfx options menu ------------
743
744 static const char *men_scaler[] = { "1x1", "scaled 4:3", "fullscreen", "custom", NULL };
745 static const char h_cscaler[]   = "Displays the scaler layer, you can resize it\n"
746                                   "using d-pad or move it using R+d-pad";
747 static const char *men_dummy[] = { NULL };
748
749 static int menu_loop_cscaler(int id, int keys)
750 {
751         unsigned int inp;
752
753         scaling = SCALE_CUSTOM;
754
755         omap_enable_layer(1);
756
757         for (;;)
758         {
759                 menu_draw_begin(0);
760                 memset(g_menuscreen_ptr, 4, g_menuscreen_w * g_menuscreen_h * 2);
761                 text_out16(2, 2, "%d,%d", g_layer_x, g_layer_y);
762                 text_out16(2, 480 - 18, "%dx%d | d-pad: resize, R+d-pad: move", g_layer_w, g_layer_h);
763                 menu_draw_end();
764
765                 inp = in_menu_wait(PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT|PBTN_R|PBTN_MOK|PBTN_MBACK, 40);
766                 if (inp & PBTN_UP)    g_layer_y--;
767                 if (inp & PBTN_DOWN)  g_layer_y++;
768                 if (inp & PBTN_LEFT)  g_layer_x--;
769                 if (inp & PBTN_RIGHT) g_layer_x++;
770                 if (!(inp & PBTN_R)) {
771                         if (inp & PBTN_UP)    g_layer_h += 2;
772                         if (inp & PBTN_DOWN)  g_layer_h -= 2;
773                         if (inp & PBTN_LEFT)  g_layer_w += 2;
774                         if (inp & PBTN_RIGHT) g_layer_w -= 2;
775                 }
776                 if (inp & (PBTN_MOK|PBTN_MBACK))
777                         break;
778
779                 if (inp & (PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT)) {
780                         if (g_layer_x < 0)   g_layer_x = 0;
781                         if (g_layer_x > 640) g_layer_x = 640;
782                         if (g_layer_y < 0)   g_layer_y = 0;
783                         if (g_layer_y > 420) g_layer_y = 420;
784                         if (g_layer_w < 160) g_layer_w = 160;
785                         if (g_layer_h < 60)  g_layer_h = 60;
786                         if (g_layer_x + g_layer_w > 800)
787                                 g_layer_w = 800 - g_layer_x;
788                         if (g_layer_y + g_layer_h > 480)
789                                 g_layer_h = 480 - g_layer_y;
790                         omap_enable_layer(1);
791                 }
792         }
793
794         omap_enable_layer(0);
795
796         return 0;
797 }
798
799 static menu_entry e_menu_gfx_options[] =
800 {
801         mee_enum      ("Scaler",                   0, scaling, men_scaler),
802         mee_enum      ("Filter",                   MA_OPT_FILTERING, filter, men_dummy),
803 //      mee_onoff     ("Vsync",                    0, vsync, 1),
804         mee_cust_h    ("Setup custom scaler",      0, menu_loop_cscaler, NULL, h_cscaler),
805         mee_end,
806 };
807
808 static int menu_loop_gfx_options(int id, int keys)
809 {
810         static int sel = 0;
811
812         me_loop(e_menu_gfx_options, &sel, NULL);
813
814         return 0;
815 }
816
817 // ------------ bios/plugins ------------
818
819 static const char *men_gpu_dithering[] = { "None", "Game dependant", "Always", NULL };
820 static const char h_gpu_0[]            = "Needed for Chrono Cross";
821 static const char h_gpu_1[]            = "Capcom fighting games";
822 static const char h_gpu_2[]            = "Black screens in Lunar";
823 static const char h_gpu_3[]            = "Compatibility mode";
824 static const char h_gpu_6[]            = "Pandemonium 2";
825 static const char h_gpu_7[]            = "Skip every second frame";
826 static const char h_gpu_8[]            = "Needed by Dark Forces";
827 static const char h_gpu_9[]            = "better g-colors, worse textures";
828 static const char h_gpu_10[]           = "Toggle busy flags after drawing";
829
830 static menu_entry e_menu_plugin_gpu[] =
831 {
832         mee_enum      ("Dithering",                  0, iUseDither, men_gpu_dithering),
833         mee_onoff_h   ("Odd/even bit hack",          0, dwActFixes, 1<<0, h_gpu_0),
834         mee_onoff_h   ("Expand screen width",        0, dwActFixes, 1<<1, h_gpu_1),
835         mee_onoff_h   ("Ignore brightness color",    0, dwActFixes, 1<<2, h_gpu_2),
836         mee_onoff_h   ("Disable coordinate check",   0, dwActFixes, 1<<3, h_gpu_3),
837         mee_onoff_h   ("Lazy screen update",         0, dwActFixes, 1<<6, h_gpu_6),
838         mee_onoff_h   ("Old frame skipping",         0, dwActFixes, 1<<7, h_gpu_7),
839         mee_onoff_h   ("Repeated flat tex triangles ",0,dwActFixes, 1<<8, h_gpu_8),
840         mee_onoff_h   ("Draw quads with triangles",  0, dwActFixes, 1<<9, h_gpu_9),
841         mee_onoff_h   ("Fake 'gpu busy' states",     0, dwActFixes, 1<<10, h_gpu_10),
842         mee_end,
843 };
844
845 static int menu_loop_plugin_gpu(int id, int keys)
846 {
847         static int sel = 0;
848         me_loop(e_menu_plugin_gpu, &sel, NULL);
849         return 0;
850 }
851
852 static const char *men_spu_reverb[] = { "Off", "Fake", "On", NULL };
853 static const char *men_spu_interp[] = { "None", "Simple", "Gaussian", "Cubic", NULL };
854 static const char h_spu_irq_wait[]  = "Wait for CPU; only useful for some games, may cause glitches";
855 static const char h_spu_thread[]    = "Run sound emulation in main thread (recommended)";
856
857 static menu_entry e_menu_plugin_spu[] =
858 {
859         mee_enum      ("Reverb",                    0, iUseReverb, men_spu_reverb),
860         mee_enum      ("Interpolation",             0, iUseInterpolation, men_spu_interp),
861         mee_onoff     ("Adjust XA pitch",           0, iXAPitch, 1),
862         mee_onoff_h   ("SPU IRQ Wait",              0, iSPUIRQWait, 1, h_spu_irq_wait),
863         mee_onoff_h   ("Sound in main thread",      0, iUseTimer, 2, h_spu_thread),
864         mee_end,
865 };
866
867 static int menu_loop_plugin_spu(int id, int keys)
868 {
869         static int sel = 0;
870         me_loop(e_menu_plugin_spu, &sel, NULL);
871         return 0;
872 }
873
874 static const char h_bios[]       = "HLE is simulated BIOS. BIOS is saved in savestates.\n"
875                                    "Must save config and reload the game\n"
876                                    "for change to take effect";
877 static const char h_plugin_xpu[] = "Must save config and reload the game\n"
878                                    "for plugin change to take effect";
879 static const char h_gpu[]        = "Configure built-in P.E.Op.S. SoftGL Driver V1.17";
880 static const char h_spu[]        = "Configure built-in P.E.Op.S. Sound Driver V1.7";
881
882 static menu_entry e_menu_plugin_options[] =
883 {
884         mee_enum_h    ("BIOS",                          0, bios_sel, bioses, h_bios),
885         mee_enum_h    ("GPU plugin",                    0, gpu_plugsel, gpu_plugins, h_plugin_xpu),
886         mee_enum_h    ("SPU plugin",                    0, spu_plugsel, spu_plugins, h_plugin_xpu),
887         mee_handler_h ("Configure built-in GPU plugin", menu_loop_plugin_gpu, h_gpu),
888         mee_handler_h ("Configure built-in SPU plugin", menu_loop_plugin_spu, h_spu),
889         mee_end,
890 };
891
892 static menu_entry e_menu_main[];
893
894 static int menu_loop_plugin_options(int id, int keys)
895 {
896         static int sel = 0;
897         me_loop(e_menu_plugin_options, &sel, NULL);
898
899         // sync BIOS/plugins
900         snprintf(Config.Bios, sizeof(Config.Bios), "%s", bioses[bios_sel]);
901         snprintf(Config.Gpu, sizeof(Config.Gpu), "%s", gpu_plugins[gpu_plugsel]);
902         snprintf(Config.Spu, sizeof(Config.Spu), "%s", spu_plugins[spu_plugsel]);
903         me_enable(e_menu_main, MA_MAIN_RUN_BIOS, bios_sel != 0);
904
905         return 0;
906 }
907
908 // ------------ adv options menu ------------
909
910 static const char h_cfg_cpul[]   = "Shows CPU usage in %%";
911 static const char h_cfg_fl[]     = "Frame Limiter keeps the game from running too fast";
912 static const char h_cfg_xa[]     = "Disables XA sound, which can sometimes improve performance";
913 static const char h_cfg_cdda[]   = "Disable CD Audio for a performance boost\n"
914                                    "(proper .cue/.bin dump is needed otherwise)";
915 static const char h_cfg_sio[]    = "This should be enabled for certain memcards/gamepads";
916 static const char h_cfg_spuirq[] = "Compatibility tweak; should probably be left off";
917 static const char h_cfg_rcnt1[]  = "Parasite Eve 2, Vandal Hearts 1/2 Fix";
918 static const char h_cfg_rcnt2[]  = "InuYasha Sengoku Battle Fix";
919 static const char h_cfg_nodrc[]  = "Disable dynamic recompiler and use interpreter\n"
920                                    "Might be useful to overcome some dynarec bugs";
921
922 static menu_entry e_menu_adv_options[] =
923 {
924         mee_onoff_h   ("Show CPU load",          0, g_opts, OPT_SHOWCPU, h_cfg_cpul),
925         mee_onoff_h   ("Disable Frame Limiter",  0, g_opts, OPT_NO_FRAMELIM, h_cfg_fl),
926         mee_onoff_h   ("Disable XA Decoding",    0, Config.Xa, 1, h_cfg_xa),
927         mee_onoff_h   ("Disable CD Audio",       0, Config.Cdda, 1, h_cfg_cdda),
928         mee_onoff_h   ("SIO IRQ Always Enabled", 0, Config.Sio, 1, h_cfg_sio),
929         mee_onoff_h   ("SPU IRQ Always Enabled", 0, Config.SpuIrq, 1, h_cfg_spuirq),
930         mee_onoff_h   ("Rootcounter hack",       0, Config.RCntFix, 1, h_cfg_rcnt1),
931         mee_onoff_h   ("Rootcounter hack 2",     0, Config.VSyncWA, 1, h_cfg_rcnt2),
932         mee_onoff_h   ("Disable dynarec (slow!)",0, Config.Cpu, 1, h_cfg_nodrc),
933         mee_end,
934 };
935
936 static int menu_loop_adv_options(int id, int keys)
937 {
938         static int sel = 0;
939         me_loop(e_menu_adv_options, &sel, NULL);
940         return 0;
941 }
942
943 // ------------ options menu ------------
944
945 static int mh_restore_defaults(int id, int keys)
946 {
947         menu_set_defconfig();
948         me_update_msg("defaults restored");
949         return 1;
950 }
951
952 static const char *men_region[]       = { "Auto", "NTSC", "PAL", NULL };
953 /*
954 static const char *men_confirm_save[] = { "OFF", "writes", "loads", "both", NULL };
955 static const char h_confirm_save[]    = "Ask for confirmation when overwriting save,\n"
956                                         "loading state or both";
957 */
958 static const char h_restore_def[]     = "Switches back to default / recommended\n"
959                                         "configuration";
960
961 static menu_entry e_menu_options[] =
962 {
963 //      mee_range     ("Save slot",                0, state_slot, 0, 9),
964 //      mee_enum_h    ("Confirm savestate",        0, dummy, men_confirm_save, h_confirm_save),
965         mee_onoff     ("Frameskip",                0, UseFrameSkip, 1),
966         mee_onoff     ("Show FPS",                 0, g_opts, OPT_SHOWFPS),
967         mee_enum      ("Region",                   0, region, men_region),
968         mee_range     ("CPU clock",                MA_OPT_CPU_CLOCKS, cpu_clock, 20, 5000),
969         mee_handler   ("[Display]",                menu_loop_gfx_options),
970         mee_handler   ("[BIOS/Plugins]",           menu_loop_plugin_options),
971         mee_handler   ("[Advanced]",               menu_loop_adv_options),
972         mee_cust_nosave("Save global config",      MA_OPT_SAVECFG,      mh_savecfg, mgn_saveloadcfg),
973         mee_cust_nosave("Save cfg for loaded game",MA_OPT_SAVECFG_GAME, mh_savecfg, mgn_saveloadcfg),
974         mee_handler_h ("Restore default config",   mh_restore_defaults, h_restore_def),
975         mee_end,
976 };
977
978 static int menu_loop_options(int id, int keys)
979 {
980         static int sel = 0;
981         int i;
982
983         i = me_id2offset(e_menu_options, MA_OPT_CPU_CLOCKS);
984         e_menu_options[i].enabled = cpu_clock != 0 ? 1 : 0;
985         me_enable(e_menu_options, MA_OPT_SAVECFG_GAME, ready_to_go && CdromId[0]);
986
987         me_loop(e_menu_options, &sel, NULL);
988
989         return 0;
990 }
991
992 // ------------ debug menu ------------
993
994 static void draw_frame_debug(void)
995 {
996         smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc);
997 }
998
999 static void debug_menu_loop(void)
1000 {
1001         int inp;
1002
1003         while (1)
1004         {
1005                 menu_draw_begin(1);
1006                 draw_frame_debug();
1007                 menu_draw_end();
1008
1009                 inp = in_menu_wait(PBTN_MOK|PBTN_MBACK|PBTN_MA2|PBTN_MA3|PBTN_L|PBTN_R |
1010                                         PBTN_UP|PBTN_DOWN|PBTN_LEFT|PBTN_RIGHT, 70);
1011                 if (inp & PBTN_MBACK)
1012                         return;
1013         }
1014 }
1015
1016 // ------------ main menu ------------
1017
1018 void OnFile_Exit();
1019
1020 static void draw_frame_main(void)
1021 {
1022         if (CdromId[0] != 0) {
1023                 char buff[64];
1024                 snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s)",
1025                          get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC");
1026                 smalltext_out16(4, 1, buff, 0x105f);
1027         }
1028 }
1029
1030 static void draw_frame_credits(void)
1031 {
1032         smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc);
1033 }
1034
1035 const char *plat_get_credits(void)
1036 {
1037         return  "PCSX-ReARMed\n\n"
1038                 "(C) 1999-2003 PCSX Team\n"
1039                 "(C) 2005-2009 PCSX-df Team\n"
1040                 "(C) 2009-2011 PCSX-Reloaded Team\n\n"
1041                 "GPU and SPU code by Pete Bernert\n"
1042                 "  and the P.E.Op.S. team\n"
1043                 "ARM recompiler (C) 2009-2011 Ari64\n"
1044                 "PCSX4ALL plugins by PCSX4ALL team\n"
1045                 "  Chui, Franxis, Unai\n\n"
1046                 "integration, optimization and\n"
1047                 "  frontend (C) 2010-2011 notaz\n";
1048 }
1049
1050 static int reset_game(void)
1051 {
1052         // sanity check
1053         if (bios_sel == 0 && !Config.HLE)
1054                 return -1;
1055
1056         ClosePlugins();
1057         OpenPlugins();
1058         SysReset();
1059         if (CheckCdrom() != -1) {
1060                 LoadCdrom();
1061         }
1062         return 0;
1063 }
1064
1065 static int run_bios(void)
1066 {
1067         if (bios_sel == 0)
1068                 return -1;
1069
1070         ready_to_go = 0;
1071         pl_fbdev_buf = NULL;
1072
1073         ClosePlugins();
1074         set_cd_image(NULL);
1075         LoadPlugins();
1076         NetOpened = 0;
1077         if (OpenPlugins() == -1) {
1078                 me_update_msg("failed to open plugins");
1079                 return -1;
1080         }
1081         plugin_call_rearmed_cbs();
1082
1083         CdromId[0] = '\0';
1084         CdromLabel[0] = '\0';
1085
1086         SysReset();
1087
1088         ready_to_go = 1;
1089         return 0;
1090 }
1091
1092 static int run_cd_image(const char *fname)
1093 {
1094         ready_to_go = 0;
1095         pl_fbdev_buf = NULL;
1096
1097         ClosePlugins();
1098         set_cd_image(fname);
1099         LoadPlugins();
1100         NetOpened = 0;
1101         if (OpenPlugins() == -1) {
1102                 me_update_msg("failed to open plugins");
1103                 return -1;
1104         }
1105         plugin_call_rearmed_cbs();
1106
1107         if (CheckCdrom() == -1) {
1108                 // Only check the CD if we are starting the console with a CD
1109                 ClosePlugins();
1110                 me_update_msg("unsupported/invalid CD image");
1111                 return -1;
1112         }
1113
1114         SysReset();
1115
1116         // Read main executable directly from CDRom and start it
1117         if (LoadCdrom() == -1) {
1118                 ClosePlugins();
1119                 me_update_msg("failed to load CD image");
1120                 return -1;
1121         }
1122
1123         ready_to_go = 1;
1124         return 0;
1125 }
1126
1127 static int romsel_run(void)
1128 {
1129         int prev_gpu, prev_spu;
1130         char *fname;
1131
1132         fname = menu_loop_romsel(last_selected_fname, sizeof(last_selected_fname));
1133         if (fname == NULL)
1134                 return -1;
1135
1136         printf("selected file: %s\n", fname);
1137
1138         if (run_cd_image(fname) != 0)
1139                 return -1;
1140
1141         prev_gpu = gpu_plugsel;
1142         prev_spu = spu_plugsel;
1143         if (menu_load_config(1) != 0)
1144                 menu_load_config(0);
1145
1146         // check for plugin changes, have to repeat
1147         // loading if game config changed plugins to reload them
1148         if (prev_gpu != gpu_plugsel || prev_spu != spu_plugsel) {
1149                 printf("plugin change detected, reloading plugins..\n");
1150                 if (run_cd_image(fname) != 0)
1151                         return -1;
1152         }
1153
1154         strcpy(last_selected_fname, rom_fname_reload);
1155         return 0;
1156 }
1157
1158 static int main_menu_handler(int id, int keys)
1159 {
1160         switch (id)
1161         {
1162         case MA_MAIN_RESUME_GAME:
1163                 if (ready_to_go)
1164                         return 1;
1165                 break;
1166         case MA_MAIN_SAVE_STATE:
1167                 if (ready_to_go)
1168                         return menu_loop_savestate(0);
1169                 break;
1170         case MA_MAIN_LOAD_STATE:
1171                 if (ready_to_go)
1172                         return menu_loop_savestate(1);
1173                 break;
1174         case MA_MAIN_RESET_GAME:
1175                 if (ready_to_go && reset_game() == 0)
1176                         return 1;
1177                 break;
1178         case MA_MAIN_LOAD_ROM:
1179                 if (romsel_run() == 0)
1180                         return 1;
1181                 break;
1182         case MA_MAIN_RUN_BIOS:
1183                 if (run_bios() == 0)
1184                         return 1;
1185                 break;
1186         case MA_MAIN_CREDITS:
1187                 draw_menu_credits(draw_frame_credits);
1188                 in_menu_wait(PBTN_MOK|PBTN_MBACK, 70);
1189                 break;
1190         case MA_MAIN_EXIT:
1191                 OnFile_Exit();
1192                 break;
1193         default:
1194                 lprintf("%s: something unknown selected\n", __FUNCTION__);
1195                 break;
1196         }
1197
1198         return 0;
1199 }
1200
1201 static menu_entry e_menu_main[] =
1202 {
1203         mee_label     (""),
1204         mee_label     (""),
1205         mee_handler_id("Resume game",        MA_MAIN_RESUME_GAME, main_menu_handler),
1206         mee_handler_id("Save State",         MA_MAIN_SAVE_STATE,  main_menu_handler),
1207         mee_handler_id("Load State",         MA_MAIN_LOAD_STATE,  main_menu_handler),
1208         mee_handler_id("Reset game",         MA_MAIN_RESET_GAME,  main_menu_handler),
1209         mee_handler_id("Load CD image",      MA_MAIN_LOAD_ROM,    main_menu_handler),
1210         mee_handler_id("Run BIOS",           MA_MAIN_RUN_BIOS,    main_menu_handler),
1211         mee_handler   ("Options",            menu_loop_options),
1212         mee_handler   ("Controls",           menu_loop_keyconfig),
1213         mee_handler_id("Credits",            MA_MAIN_CREDITS,     main_menu_handler),
1214         mee_handler_id("Exit",               MA_MAIN_EXIT,        main_menu_handler),
1215         mee_end,
1216 };
1217
1218 // ----------------------------
1219
1220 static void menu_leave_emu(void);
1221
1222 void menu_loop(void)
1223 {
1224         static int sel = 0;
1225
1226         menu_leave_emu();
1227
1228         me_enable(e_menu_main, MA_MAIN_RESUME_GAME, ready_to_go);
1229         me_enable(e_menu_main, MA_MAIN_SAVE_STATE,  ready_to_go && CdromId[0]);
1230         me_enable(e_menu_main, MA_MAIN_LOAD_STATE,  ready_to_go && CdromId[0]);
1231         me_enable(e_menu_main, MA_MAIN_RESET_GAME,  ready_to_go);
1232         me_enable(e_menu_main, MA_MAIN_RUN_BIOS, bios_sel != 0);
1233
1234         in_set_config_int(0, IN_CFG_BLOCKING, 1);
1235
1236         do {
1237                 me_loop(e_menu_main, &sel, draw_frame_main);
1238         } while (!ready_to_go);
1239
1240         /* wait until menu, ok, back is released */
1241         while (in_menu_wait_any(50) & (PBTN_MENU|PBTN_MOK|PBTN_MBACK))
1242                 ;
1243
1244         in_set_config_int(0, IN_CFG_BLOCKING, 0);
1245
1246         menu_prepare_emu();
1247 }
1248
1249 static void scan_bios_plugins(void)
1250 {
1251         char fname[MAXPATHLEN];
1252         struct dirent *ent;
1253         int bios_i, gpu_i, spu_i;
1254         char *p;
1255         DIR *dir;
1256
1257         bioses[0] = "HLE";
1258         gpu_plugins[0] = "builtin_gpu";
1259         spu_plugins[0] = "builtin_spu";
1260         bios_i = gpu_i = spu_i = 1;
1261
1262         snprintf(fname, sizeof(fname), "%s/", Config.BiosDir);
1263         dir = opendir(fname);
1264         if (dir == NULL) {
1265                 perror("scan_bios_plugins bios opendir");
1266                 goto do_plugins;
1267         }
1268
1269         while (1) {
1270                 struct stat st;
1271
1272                 errno = 0;
1273                 ent = readdir(dir);
1274                 if (ent == NULL) {
1275                         if (errno != 0)
1276                                 perror("readdir");
1277                         break;
1278                 }
1279
1280                 if (ent->d_type != DT_REG && ent->d_type != DT_LNK)
1281                         continue;
1282
1283                 snprintf(fname, sizeof(fname), "%s/%s", Config.BiosDir, ent->d_name);
1284                 if (stat(fname, &st) != 0 || st.st_size != 512*1024) {
1285                         printf("bad BIOS file: %s\n", ent->d_name);
1286                         continue;
1287                 }
1288
1289                 if (bios_i < ARRAY_SIZE(bioses) - 1) {
1290                         bioses[bios_i++] = strdup(ent->d_name);
1291                         continue;
1292                 }
1293
1294                 printf("too many BIOSes, dropping \"%s\"\n", ent->d_name);
1295         }
1296
1297         closedir(dir);
1298
1299 do_plugins:
1300         snprintf(fname, sizeof(fname), "%s/", Config.PluginsDir);
1301         dir = opendir(fname);
1302         if (dir == NULL) {
1303                 perror("scan_bios_plugins opendir");
1304                 return;
1305         }
1306
1307         while (1) {
1308                 void *h, *tmp;
1309
1310                 errno = 0;
1311                 ent = readdir(dir);
1312                 if (ent == NULL) {
1313                         if (errno != 0)
1314                                 perror("readdir");
1315                         break;
1316                 }
1317                 p = strstr(ent->d_name, ".so");
1318                 if (p == NULL)
1319                         continue;
1320
1321                 snprintf(fname, sizeof(fname), "%s/%s", Config.PluginsDir, ent->d_name);
1322                 h = dlopen(fname, RTLD_LAZY | RTLD_LOCAL);
1323                 if (h == NULL) {
1324                         fprintf(stderr, "%s\n", dlerror());
1325                         continue;
1326                 }
1327
1328                 // now what do we have here?
1329                 tmp = dlsym(h, "GPUinit");
1330                 if (tmp) {
1331                         dlclose(h);
1332                         if (gpu_i < ARRAY_SIZE(gpu_plugins) - 1)
1333                                 gpu_plugins[gpu_i++] = strdup(ent->d_name);
1334                         continue;
1335                 }
1336
1337                 tmp = dlsym(h, "SPUinit");
1338                 if (tmp) {
1339                         dlclose(h);
1340                         if (spu_i < ARRAY_SIZE(spu_plugins) - 1)
1341                                 spu_plugins[spu_i++] = strdup(ent->d_name);
1342                         continue;
1343                 }
1344
1345                 fprintf(stderr, "ignoring unidentified plugin: %s\n", fname);
1346                 dlclose(h);
1347         }
1348
1349         closedir(dir);
1350 }
1351
1352 void menu_init(void)
1353 {
1354         char buff[MAXPATHLEN];
1355
1356         strcpy(last_selected_fname, "/media");
1357
1358         scan_bios_plugins();
1359         pnd_menu_init();
1360         menu_init_common();
1361
1362         menu_set_defconfig();
1363         menu_load_config(0);
1364         last_psx_w = 320;
1365         last_psx_h = 240;
1366         last_psx_bpp = 16;
1367
1368         g_menubg_src_ptr = calloc(g_menuscreen_w * g_menuscreen_h * 2, 1);
1369         if (g_menubg_src_ptr == NULL)
1370                 exit(1);
1371         emu_make_path(buff, "skin/background.png", sizeof(buff));
1372         readpng(g_menubg_src_ptr, buff, READPNG_BG, g_menuscreen_w, g_menuscreen_h);
1373 }
1374
1375 void menu_notify_mode_change(int w, int h, int bpp)
1376 {
1377         last_psx_w = w;
1378         last_psx_h = h;
1379         last_psx_bpp = bpp;
1380
1381         if (scaling == SCALE_1_1) {
1382                 g_layer_x = 800/2 - w/2;  g_layer_y = 480/2 - h/2;
1383                 g_layer_w = w; g_layer_h = h;
1384         }
1385 }
1386
1387 static void menu_leave_emu(void)
1388 {
1389         if (GPU_close != NULL) {
1390                 int ret = GPU_close();
1391                 if (ret)
1392                         fprintf(stderr, "Warning: GPU_close returned %d\n", ret);
1393         }
1394
1395         memcpy(g_menubg_ptr, g_menubg_src_ptr, g_menuscreen_w * g_menuscreen_h * 2);
1396         if (pl_fbdev_buf != NULL && ready_to_go && last_psx_bpp == 16) {
1397                 int x = max(0, g_menuscreen_w - last_psx_w);
1398                 int y = max(0, g_menuscreen_h / 2 - last_psx_h / 2);
1399                 int w = min(g_menuscreen_w, last_psx_w);
1400                 int h = min(g_menuscreen_h, last_psx_h);
1401                 u16 *d = (u16 *)g_menubg_ptr + g_menuscreen_w * y + x;
1402                 u16 *s = pl_fbdev_buf;
1403
1404                 for (; h > 0; h--, d += g_menuscreen_w, s += last_psx_w)
1405                         menu_darken_bg(d, s, w, 0);
1406         }
1407
1408         if (ready_to_go)
1409                 cpu_clock = get_cpu_clock();
1410
1411         plat_video_menu_enter(ready_to_go);
1412 }
1413
1414 void menu_prepare_emu(void)
1415 {
1416         R3000Acpu *prev_cpu = psxCpu;
1417
1418         plat_video_menu_leave();
1419
1420         switch (scaling) {
1421         case SCALE_1_1:
1422                 menu_notify_mode_change(last_psx_w, last_psx_h, last_psx_bpp);
1423                 break;
1424         case SCALE_4_3:
1425                 g_layer_x = 80;  g_layer_y = 0;
1426                 g_layer_w = 640; g_layer_h = 480;
1427                 break;
1428         case SCALE_FULLSCREEN:
1429                 g_layer_x = 0;   g_layer_y = 0;
1430                 g_layer_w = 800; g_layer_h = 480;
1431                 break;
1432         case SCALE_CUSTOM:
1433                 break;
1434         }
1435         apply_filter(filter);
1436         apply_cpu_clock();
1437         stop = 0;
1438
1439         psxCpu = (Config.Cpu == CPU_INTERPRETER) ? &psxInt : &psxRec;
1440         if (psxCpu != prev_cpu)
1441                 // note that this does not really reset, just clears drc caches
1442                 psxCpu->Reset();
1443
1444         // core doesn't care about Config.Cdda changes,
1445         // so handle them manually here
1446         if (Config.Cdda)
1447                 CDR_stop();
1448
1449         menu_sync_config();
1450
1451         if (GPU_open != NULL) {
1452                 int ret = GPU_open(&gpuDisp, "PCSX", NULL);
1453                 if (ret)
1454                         fprintf(stderr, "Warning: GPU_open returned %d\n", ret);
1455         }
1456 }
1457
1458 void me_update_msg(const char *msg)
1459 {
1460         strncpy(menu_error_msg, msg, sizeof(menu_error_msg));
1461         menu_error_msg[sizeof(menu_error_msg) - 1] = 0;
1462
1463         menu_error_time = plat_get_ticks_ms();
1464         lprintf("msg: %s\n", menu_error_msg);
1465 }
1466