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