menu: don't override region, fix P.E.Op.S. frameskip
[pcsx_rearmed.git] / frontend / menu.c
CommitLineData
69af03a2 1/*
201c21e2 2 * (C) GraÅžvydas "notaz" Ignotas, 2010-2011
69af03a2 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>
3c70c47b 13#include <errno.h>
bbd837c6 14#include <dlfcn.h>
61363062 15#include <zlib.h>
69af03a2 16
c5061935 17#include "main.h"
3c70c47b 18#include "menu.h"
69af03a2 19#include "config.h"
201c21e2 20#include "plugin.h"
69af03a2 21#include "plugin_lib.h"
22#include "omap.h"
23#include "common/plat.h"
24#include "../libpcsxcore/misc.h"
7eda34c1 25#include "../libpcsxcore/new_dynarec/new_dynarec.h"
3c70c47b 26#include "revision.h"
69af03a2 27
28#define MENU_X2 1
29#define array_size(x) (sizeof(x) / sizeof(x[0]))
30
31typedef 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,
e16a7e51 39 MA_MAIN_RUN_BIOS,
69af03a2 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,
3c70c47b 52 MA_OPT_FILTERING,
69af03a2 53} menu_id;
54
3c70c47b 55enum {
56 SCALE_1_1,
57 SCALE_4_3,
58 SCALE_FULLSCREEN,
59 SCALE_CUSTOM,
60};
69af03a2 61
bd6267e6 62static int last_psx_w, last_psx_h, last_psx_bpp;
201c21e2 63static int scaling, filter, state_slot, cpu_clock, cpu_clock_st;
69af03a2 64static char rom_fname_reload[MAXPATHLEN];
65static char last_selected_fname[MAXPATHLEN];
907b1e90 66static int region;
bd6267e6 67int g_opts;
68
69// from softgpu plugin
70extern int iUseDither;
71extern int UseFrameSkip;
72extern uint32_t dwActFixes;
fba06457 73extern float fFrameRateHz;
74extern int dwFrameRateTicks;
bd6267e6 75
76// sound plugin
77extern int iUseReverb;
78extern int iUseInterpolation;
79extern int iXAPitch;
80extern int iSPUIRQWait;
81extern int iUseTimer;
82
e6eb2066 83static const char *bioses[24];
bbd837c6 84static const char *gpu_plugins[16];
85static const char *spu_plugins[16];
e6eb2066 86static int bios_sel, gpu_plugsel, spu_plugsel;
bbd837c6 87
bd6267e6 88
89static int min(int x, int y) { return x < y ? x : y; }
90static int max(int x, int y) { return x > y ? x : y; }
69af03a2 91
92void 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
104static int emu_check_save_file(int slot)
105{
c5061935 106 char fname[MAXPATHLEN];
3c70c47b 107 int ret;
108
c5061935 109 ret = get_state_filename(fname, sizeof(fname), slot);
110 if (ret != 0)
3c70c47b 111 return 0;
112
113 ret = CheckState(fname);
3c70c47b 114 return ret == 0 ? 1 : 0;
69af03a2 115}
116
117static int emu_save_load_game(int load, int sram)
118{
c5061935 119 char fname[MAXPATHLEN];
3c70c47b 120 int ret;
121
c5061935 122 ret = get_state_filename(fname, sizeof(fname), state_slot);
123 if (ret != 0)
3c70c47b 124 return 0;
125
33f56da1 126 if (load) {
3c70c47b 127 ret = LoadState(fname);
33f56da1 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 }
3c70c47b 136 else
137 ret = SaveState(fname);
3c70c47b 138
139 return ret;
69af03a2 140}
141
907b1e90 142// propagate menu settings to the emu vars
143static 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
3c70c47b 157static void menu_set_defconfig(void)
158{
bce6b056 159 g_opts = 0;
3c70c47b 160 scaling = SCALE_4_3;
bd6267e6 161
907b1e90 162 region = 0;
bd6267e6 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;
907b1e90 173
174 menu_sync_config();
3c70c47b 175}
176
4f3639fa 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
189static 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),
33716956 197// CE_CONFIG_STR(Cdr),
4f3639fa 198 CE_CONFIG_VAL(Xa),
199 CE_CONFIG_VAL(Sio),
200 CE_CONFIG_VAL(Mdec),
4f3639fa 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),
907b1e90 208 CE_INTVAL(region),
4f3639fa 209 CE_INTVAL(scaling),
cd6e8d0f 210 CE_INTVAL(g_layer_x),
211 CE_INTVAL(g_layer_y),
212 CE_INTVAL(g_layer_w),
213 CE_INTVAL(g_layer_h),
4f3639fa 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
1bd9ee68 228static char *get_cd_label(void)
cd6e8d0f 229{
1bd9ee68 230 static char trimlabel[33];
cd6e8d0f 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
1bd9ee68 239 return trimlabel;
240}
241
242static void make_cfg_fname(char *buf, size_t size, int is_game)
243{
cd6e8d0f 244 if (is_game)
1bd9ee68 245 snprintf(buf, size, "." PCSX_DOT_DIR "cfg/%.32s-%.9s.cfg", get_cd_label(), CdromId);
cd6e8d0f 246 else
bbd837c6 247 snprintf(buf, size, "." PCSX_DOT_DIR "%s", cfgfile_basename);
cd6e8d0f 248}
249
3c70c47b 250static int menu_write_config(int is_game)
251{
4f3639fa 252 char cfgfile[MAXPATHLEN];
253 FILE *f;
254 int i;
255
cd6e8d0f 256 make_cfg_fname(cfgfile, sizeof(cfgfile), is_game);
4f3639fa 257 f = fopen(cfgfile, "w");
258 if (f == NULL) {
bbd837c6 259 printf("menu_write_config: failed to open: %s\n", cfgfile);
4f3639fa 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
292static 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;
3c70c47b 302}
303
304static int menu_load_config(int is_game)
69af03a2 305{
4f3639fa 306 char cfgfile[MAXPATHLEN];
307 int i, ret = -1;
308 long size;
309 char *cfg;
310 FILE *f;
311
cd6e8d0f 312 make_cfg_fname(cfgfile, sizeof(cfgfile), is_game);
4f3639fa 313 f = fopen(cfgfile, "r");
314 if (f == NULL) {
bbd837c6 315 printf("menu_load_config: failed to open: %s\n", cfgfile);
4f3639fa 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
907b1e90 384 menu_sync_config();
385
bbd837c6 386 // sync plugins
e6eb2066 387 for (i = bios_sel = 0; bioses[i] != NULL; i++)
388 if (strcmp(Config.Bios, bioses[i]) == 0)
389 { bios_sel = i; break; }
390
bbd837c6 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;
4f3639fa 400fail_read:
401 free(cfg);
402fail:
403 fclose(f);
404 return ret;
69af03a2 405}
406
9564e73d 407// rrrr rggg gggb bbbb
408static unsigned short fname2color(const char *fname)
409{
33716956 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" };
9564e73d 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
61363062 426static void draw_savestate_bg(int slot);
427
bd6267e6 428#define MENU_ALIGN_LEFT
3c70c47b 429#define menu_init menu_init_common
69af03a2 430#include "common/menu.c"
3c70c47b 431#undef menu_init
69af03a2 432
61363062 433// a bit of black magic here
434static 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
496out:
497 free(gpu);
498}
499
3c70c47b 500// ---------- pandora specific -----------
501
502static const char pnd_script_base[] = "sudo -n /usr/pandora/scripts";
503static char **pnd_filter_list;
504
505static int get_cpu_clock(void)
69af03a2 506{
3c70c47b 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
517static 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
528static void apply_filter(int which)
529{
4f3639fa 530 static int old = -1;
3c70c47b 531 char buf[128];
532 int i;
533
4f3639fa 534 if (pnd_filter_list == NULL || which == old)
3c70c47b 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);
4f3639fa 546 old = which;
3c70c47b 547}
548
549static menu_entry e_menu_gfx_options[];
550
551static void pnd_menu_init(void)
552{
553 struct dirent *ent;
554 int i, count = 0;
555 char **mfilters;
1bd9ee68 556 char buff[64];
3c70c47b 557 DIR *dir;
558
201c21e2 559 cpu_clock_st = cpu_clock = get_cpu_clock();
3c70c47b 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 }
1bd9ee68 575
576 if (ent->d_type != DT_REG && ent->d_type != DT_LNK)
577 continue;
578
579 count++;
3c70c47b 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
1bd9ee68 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)
3c70c47b 602 continue;
603
1bd9ee68 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
3c70c47b 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;
69af03a2 622}
623
201c21e2 624void menu_finish(void)
625{
626 cpu_clock = cpu_clock_st;
627 apply_cpu_clock();
628}
629
69af03a2 630// -------------- key config --------------
631
632me_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 },
22a8a805 639 { "CIRCLE ", 1 << DKEY_CIRCLE },
69af03a2 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
651me_bind_action emuctrl_actions[] =
652{
bd6267e6 653/*
69af03a2 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 },
bd6267e6 658*/
69af03a2 659 { "Enter Menu ", PEV_MENU },
660 { NULL, 0 }
661};
662
663static 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
681static 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
699static const char *mgn_saveloadcfg(int id, int *offs)
700{
701 return "";
702}
703
cd6e8d0f 704static int mh_savecfg(int id, int keys)
69af03a2 705{
cd6e8d0f 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");
69af03a2 710
711 return 1;
712}
713
714static 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),
cd6e8d0f 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),
69af03a2 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
733static int menu_loop_keyconfig(int id, int keys)
734{
735 static int sel = 0;
736
e16a7e51 737// me_enable(e_menu_keyconfig, MA_OPT_SAVECFG_GAME, ready_to_go && CdromId[0]);
69af03a2 738 me_loop(e_menu_keyconfig, &sel, NULL);
739 return 0;
740}
741
69af03a2 742// ------------ gfx options menu ------------
743
3c70c47b 744static const char *men_scaler[] = { "1x1", "scaled 4:3", "fullscreen", "custom", NULL };
745static const char h_cscaler[] = "Displays the scaler layer, you can resize it\n"
746 "using d-pad or move it using R+d-pad";
747static const char *men_dummy[] = { NULL };
748
749static int menu_loop_cscaler(int id, int keys)
750{
751 unsigned int inp;
752
753 scaling = SCALE_CUSTOM;
754
755 omap_enable_layer(1);
3c70c47b 756
757 for (;;)
758 {
759 menu_draw_begin(0);
201c21e2 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);
3c70c47b 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
69af03a2 799static menu_entry e_menu_gfx_options[] =
800{
3c70c47b 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),
69af03a2 805 mee_end,
806};
807
808static 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
bd6267e6 817// ------------ bios/plugins ------------
818
819static const char *men_gpu_dithering[] = { "None", "Game dependant", "Always", NULL };
bd6267e6 820static const char h_gpu_0[] = "Needed for Chrono Cross";
821static const char h_gpu_1[] = "Capcom fighting games";
822static const char h_gpu_2[] = "Black screens in Lunar";
823static const char h_gpu_3[] = "Compatibility mode";
824static const char h_gpu_6[] = "Pandemonium 2";
825static const char h_gpu_7[] = "Skip every second frame";
826static const char h_gpu_8[] = "Needed by Dark Forces";
827static const char h_gpu_9[] = "better g-colors, worse textures";
828static const char h_gpu_10[] = "Toggle busy flags after drawing";
829
830static 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
845static 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
852static const char *men_spu_reverb[] = { "Off", "Fake", "On", NULL };
853static const char *men_spu_interp[] = { "None", "Simple", "Gaussian", "Cubic", NULL };
bd6267e6 854static const char h_spu_irq_wait[] = "Wait for CPU; only useful for some games, may cause glitches";
1bd9ee68 855static const char h_spu_thread[] = "Run sound emulation in main thread (recommended)";
bd6267e6 856
857static 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),
1bd9ee68 863 mee_onoff_h ("Sound in main thread", 0, iUseTimer, 2, h_spu_thread),
bd6267e6 864 mee_end,
865};
866
867static 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
e6eb2066 874static 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";
bbd837c6 877static const char h_plugin_xpu[] = "Must save config and reload the game\n"
878 "for plugin change to take effect";
e6eb2066 879static const char h_gpu[] = "Configure built-in P.E.Op.S. SoftGL Driver V1.17";
880static const char h_spu[] = "Configure built-in P.E.Op.S. Sound Driver V1.7";
bbd837c6 881
bd6267e6 882static menu_entry e_menu_plugin_options[] =
883{
e6eb2066 884 mee_enum_h ("BIOS", 0, bios_sel, bioses, h_bios),
bbd837c6 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),
bd6267e6 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
e16a7e51 892static menu_entry e_menu_main[];
893
bd6267e6 894static int menu_loop_plugin_options(int id, int keys)
895{
896 static int sel = 0;
897 me_loop(e_menu_plugin_options, &sel, NULL);
bbd837c6 898
e6eb2066 899 // sync BIOS/plugins
900 snprintf(Config.Bios, sizeof(Config.Bios), "%s", bioses[bios_sel]);
bbd837c6 901 snprintf(Config.Gpu, sizeof(Config.Gpu), "%s", gpu_plugins[gpu_plugsel]);
902 snprintf(Config.Spu, sizeof(Config.Spu), "%s", spu_plugins[spu_plugsel]);
e16a7e51 903 me_enable(e_menu_main, MA_MAIN_RUN_BIOS, bios_sel != 0);
bbd837c6 904
bd6267e6 905 return 0;
906}
907
908// ------------ adv options menu ------------
909
fba06457 910static const char h_cfg_cpul[] = "Shows CPU usage in %%";
1bd9ee68 911static const char h_cfg_fl[] = "Frame Limiter keeps the game from running too fast";
bd6267e6 912static const char h_cfg_xa[] = "Disables XA sound, which can sometimes improve performance";
913static const char h_cfg_cdda[] = "Disable CD Audio for a performance boost\n"
914 "(proper .cue/.bin dump is needed otherwise)";
915static const char h_cfg_sio[] = "This should be enabled for certain memcards/gamepads";
916static const char h_cfg_spuirq[] = "Compatibility tweak; should probably be left off";
917static const char h_cfg_rcnt1[] = "Parasite Eve 2, Vandal Hearts 1/2 Fix";
918static const char h_cfg_rcnt2[] = "InuYasha Sengoku Battle Fix";
b5e7e49a 919static const char h_cfg_nodrc[] = "Disable dynamic recompiler and use interpreter\n"
920 "Might be useful to overcome some dynarec bugs";
bd6267e6 921
922static menu_entry e_menu_adv_options[] =
923{
fba06457 924 mee_onoff_h ("Show CPU load", 0, g_opts, OPT_SHOWCPU, h_cfg_cpul),
bce6b056 925 mee_onoff_h ("Disable Frame Limiter", 0, g_opts, OPT_NO_FRAMELIM, h_cfg_fl),
bd6267e6 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),
b5e7e49a 932 mee_onoff_h ("Disable dynarec (slow!)",0, Config.Cpu, 1, h_cfg_nodrc),
bd6267e6 933 mee_end,
934};
935
936static 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
69af03a2 943// ------------ options menu ------------
944
69af03a2 945static int mh_restore_defaults(int id, int keys)
946{
3c70c47b 947 menu_set_defconfig();
69af03a2 948 me_update_msg("defaults restored");
949 return 1;
950}
951
907b1e90 952static const char *men_region[] = { "Auto", "NTSC", "PAL", NULL };
bd6267e6 953/*
69af03a2 954static const char *men_confirm_save[] = { "OFF", "writes", "loads", "both", NULL };
955static const char h_confirm_save[] = "Ask for confirmation when overwriting save,\n"
956 "loading state or both";
bd6267e6 957*/
958static const char h_restore_def[] = "Switches back to default / recommended\n"
959 "configuration";
69af03a2 960
961static menu_entry e_menu_options[] =
962{
bd6267e6 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),
907b1e90 967 mee_enum ("Region", 0, region, men_region),
3c70c47b 968 mee_range ("CPU clock", MA_OPT_CPU_CLOCKS, cpu_clock, 20, 5000),
69af03a2 969 mee_handler ("[Display]", menu_loop_gfx_options),
bd6267e6 970 mee_handler ("[BIOS/Plugins]", menu_loop_plugin_options),
69af03a2 971 mee_handler ("[Advanced]", menu_loop_adv_options),
cd6e8d0f 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),
bd6267e6 974 mee_handler_h ("Restore default config", mh_restore_defaults, h_restore_def),
69af03a2 975 mee_end,
976};
977
978static 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);
3c70c47b 984 e_menu_options[i].enabled = cpu_clock != 0 ? 1 : 0;
e16a7e51 985 me_enable(e_menu_options, MA_OPT_SAVECFG_GAME, ready_to_go && CdromId[0]);
69af03a2 986
987 me_loop(e_menu_options, &sel, NULL);
988
989 return 0;
990}
991
992// ------------ debug menu ------------
993
69af03a2 994static void draw_frame_debug(void)
995{
3c70c47b 996 smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc);
69af03a2 997}
998
999static 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
bd6267e6 1018void OnFile_Exit();
1019
1bd9ee68 1020static void draw_frame_main(void)
1021{
1022 if (CdromId[0] != 0) {
1023 char buff[64];
907b1e90 1024 snprintf(buff, sizeof(buff), "%.32s/%.9s (running as %s)",
1025 get_cd_label(), CdromId, Config.PsxType ? "PAL" : "NTSC");
1bd9ee68 1026 smalltext_out16(4, 1, buff, 0x105f);
1027 }
1028}
1029
1030static void draw_frame_credits(void)
1031{
1032 smalltext_out16(4, 1, "build: "__DATE__ " " __TIME__ " " REV, 0xe7fc);
1033}
1034
69af03a2 1035const char *plat_get_credits(void)
1036{
bd6267e6 1037 return "PCSX-ReARMed\n\n"
1038 "(C) 1999-2003 PCSX Team\n"
69af03a2 1039 "(C) 2005-2009 PCSX-df Team\n"
1040 "(C) 2009-2010 PCSX-Reloaded Team\n\n"
1041 "GPU and SPU code by Pete Bernert\n"
1042 " and the P.E.Op.S. team\n"
ee78346e 1043 "ARM recompiler (C) 2009-2010 Ari64\n"
1044 "PCSX4ALL plugins by PCSX4ALL team\n"
1045 " Chui, Franxis, Unai\n\n"
69af03a2 1046 "integration, optimization and\n"
201c21e2 1047 " frontend (C) 2010-2011 notaz\n";
69af03a2 1048}
1049
e16a7e51 1050static 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
1065static 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
bbd837c6 1092static int run_cd_image(const char *fname)
69af03a2 1093{
69af03a2 1094 ready_to_go = 0;
fba06457 1095 pl_fbdev_buf = NULL;
69af03a2 1096
fba06457 1097 ClosePlugins();
bbd837c6 1098 set_cd_image(fname);
69af03a2 1099 LoadPlugins();
1100 NetOpened = 0;
1101 if (OpenPlugins() == -1) {
1102 me_update_msg("failed to open plugins");
bbd837c6 1103 return -1;
69af03a2 1104 }
201c21e2 1105 plugin_call_rearmed_cbs();
69af03a2 1106
69af03a2 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");
bbd837c6 1111 return -1;
69af03a2 1112 }
1113
bbd837c6 1114 SysReset();
1115
69af03a2 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");
bbd837c6 1120 return -1;
69af03a2 1121 }
1122
1123 ready_to_go = 1;
bbd837c6 1124 return 0;
69af03a2 1125}
1126
bbd837c6 1127static int romsel_run(void)
69af03a2 1128{
bbd837c6 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;
69af03a2 1135
bbd837c6 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
1158static int main_menu_handler(int id, int keys)
1159{
69af03a2 1160 switch (id)
1161 {
1162 case MA_MAIN_RESUME_GAME:
3c70c47b 1163 if (ready_to_go)
1164 return 1;
69af03a2 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:
e16a7e51 1175 if (ready_to_go && reset_game() == 0)
3c70c47b 1176 return 1;
69af03a2 1177 break;
1178 case MA_MAIN_LOAD_ROM:
bbd837c6 1179 if (romsel_run() == 0)
69af03a2 1180 return 1;
1181 break;
e16a7e51 1182 case MA_MAIN_RUN_BIOS:
1183 if (run_bios() == 0)
1184 return 1;
1185 break;
69af03a2 1186 case MA_MAIN_CREDITS:
1bd9ee68 1187 draw_menu_credits(draw_frame_credits);
69af03a2 1188 in_menu_wait(PBTN_MOK|PBTN_MBACK, 70);
1189 break;
1190 case MA_MAIN_EXIT:
bd6267e6 1191 OnFile_Exit();
1192 break;
69af03a2 1193 default:
1194 lprintf("%s: something unknown selected\n", __FUNCTION__);
1195 break;
1196 }
1197
1198 return 0;
1199}
1200
1201static 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),
e16a7e51 1210 mee_handler_id("Run BIOS", MA_MAIN_RUN_BIOS, main_menu_handler),
69af03a2 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
3c70c47b 1218// ----------------------------
1219
bd6267e6 1220static void menu_leave_emu(void);
1221
69af03a2 1222void menu_loop(void)
1223{
1224 static int sel = 0;
1225
bd6267e6 1226 menu_leave_emu();
69af03a2 1227
1228 me_enable(e_menu_main, MA_MAIN_RESUME_GAME, ready_to_go);
e16a7e51 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]);
69af03a2 1231 me_enable(e_menu_main, MA_MAIN_RESET_GAME, ready_to_go);
e16a7e51 1232 me_enable(e_menu_main, MA_MAIN_RUN_BIOS, bios_sel != 0);
69af03a2 1233
69af03a2 1234 in_set_config_int(0, IN_CFG_BLOCKING, 1);
1235
1236 do {
1bd9ee68 1237 me_loop(e_menu_main, &sel, draw_frame_main);
69af03a2 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
3c70c47b 1246 menu_prepare_emu();
1247}
1248
e6eb2066 1249static void scan_bios_plugins(void)
bbd837c6 1250{
1251 char fname[MAXPATHLEN];
1252 struct dirent *ent;
e6eb2066 1253 int bios_i, gpu_i, spu_i;
bbd837c6 1254 char *p;
1255 DIR *dir;
1256
e6eb2066 1257 bioses[0] = "HLE";
bbd837c6 1258 gpu_plugins[0] = "builtin_gpu";
1259 spu_plugins[0] = "builtin_spu";
e6eb2066 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);
bbd837c6 1298
e6eb2066 1299do_plugins:
bbd837c6 1300 snprintf(fname, sizeof(fname), "%s/", Config.PluginsDir);
1301 dir = opendir(fname);
1302 if (dir == NULL) {
e6eb2066 1303 perror("scan_bios_plugins opendir");
bbd837c6 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
3c70c47b 1352void menu_init(void)
1353{
4f3639fa 1354 char buff[MAXPATHLEN];
1355
1356 strcpy(last_selected_fname, "/media");
1357
e6eb2066 1358 scan_bios_plugins();
4f3639fa 1359 pnd_menu_init();
1360 menu_init_common();
1361
3c70c47b 1362 menu_set_defconfig();
1363 menu_load_config(0);
3c70c47b 1364 last_psx_w = 320;
1365 last_psx_h = 240;
bd6267e6 1366 last_psx_bpp = 16;
1367
4f3639fa 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);
3c70c47b 1373}
1374
bd6267e6 1375void menu_notify_mode_change(int w, int h, int bpp)
3c70c47b 1376{
1377 last_psx_w = w;
1378 last_psx_h = h;
bd6267e6 1379 last_psx_bpp = bpp;
3c70c47b 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;
3c70c47b 1384 }
1385}
1386
bd6267e6 1387static void menu_leave_emu(void)
1388{
6d1a1ac2 1389 if (GPU_close != NULL) {
1390 int ret = GPU_close();
1391 if (ret)
1392 fprintf(stderr, "Warning: GPU_close returned %d\n", ret);
1393 }
bd6267e6 1394
4f3639fa 1395 memcpy(g_menubg_ptr, g_menubg_src_ptr, g_menuscreen_w * g_menuscreen_h * 2);
fba06457 1396 if (pl_fbdev_buf != NULL && ready_to_go && last_psx_bpp == 16) {
bd6267e6 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);
4f3639fa 1401 u16 *d = (u16 *)g_menubg_ptr + g_menuscreen_w * y + x;
bd6267e6 1402 u16 *s = pl_fbdev_buf;
1403
1404 for (; h > 0; h--, d += g_menuscreen_w, s += last_psx_w)
4f3639fa 1405 menu_darken_bg(d, s, w, 0);
bd6267e6 1406 }
fba06457 1407
1bd9ee68 1408 if (ready_to_go)
1409 cpu_clock = get_cpu_clock();
1410
fba06457 1411 plat_video_menu_enter(ready_to_go);
bd6267e6 1412}
1413
3c70c47b 1414void menu_prepare_emu(void)
1415{
b5e7e49a 1416 R3000Acpu *prev_cpu = psxCpu;
1417
fba06457 1418 plat_video_menu_leave();
1419
3c70c47b 1420 switch (scaling) {
1421 case SCALE_1_1:
bd6267e6 1422 menu_notify_mode_change(last_psx_w, last_psx_h, last_psx_bpp);
3c70c47b 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 }
3c70c47b 1435 apply_filter(filter);
1436 apply_cpu_clock();
7eda34c1 1437 stop = 0;
bd6267e6 1438
b5e7e49a 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
bd6267e6 1444 // core doesn't care about Config.Cdda changes,
1445 // so handle them manually here
1446 if (Config.Cdda)
1447 CDR_stop();
6d1a1ac2 1448
907b1e90 1449 menu_sync_config();
fba06457 1450
6d1a1ac2 1451 if (GPU_open != NULL) {
6d1a1ac2 1452 int ret = GPU_open(&gpuDisp, "PCSX", NULL);
1453 if (ret)
1454 fprintf(stderr, "Warning: GPU_open returned %d\n", ret);
1455 }
69af03a2 1456}
1457
1458void 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