libretro: minor adjustments and a sanity check
[pcsx_rearmed.git] / frontend / main.c
CommitLineData
e906c010 1/*
dde7da71 2 * (C) notaz, 2010-2012
e906c010 3 *
4 * This work is licensed under the terms of the GNU GPLv2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
80c2304e 8#include <stdio.h>
9#include <string.h>
10#include <stdarg.h>
11#include <dlfcn.h>
12#include <sys/stat.h>
13#include <sys/types.h>
14#include <unistd.h>
c5061935 15#include <signal.h>
29a8c4f3 16#include <time.h>
80c2304e 17
c5061935 18#include "main.h"
e906c010 19#include "plugin.h"
7c0f51de 20#include "plugin_lib.h"
14dffdb7 21#include "pcnt.h"
3c70c47b 22#include "menu.h"
47821672 23#include "plat.h"
80c2304e 24#include "../libpcsxcore/misc.h"
9c27c205 25#include "../libpcsxcore/cheat.h"
799b0b87 26#include "../libpcsxcore/new_dynarec/new_dynarec.h"
47bf65ab 27#include "../plugins/cdrcimg/cdrcimg.h"
38c2028e 28#include "revision.h"
80c2304e 29
cc56203b 30#ifndef NO_FRONTEND
31#include "libpicofe/input.h"
32#include "libpicofe/plat.h"
33#include "libpicofe/readpng.h"
87e5b45f 34
35static void toggle_fast_forward(int force_off);
e6495add 36static void check_profile(void);
37static void check_memcards(void);
cc56203b 38#endif
a1b44e36 39#ifndef BOOT_MSG
40#define BOOT_MSG "Booting up..."
41#endif
cc56203b 42
fc8145b7 43// don't include debug.h - it breaks ARM build (R1 redefined)
44void StartDebugger();
45void StopDebugger();
46
33400707 47// sound plugin
48extern int iUseReverb;
49extern int iUseInterpolation;
50extern int iXAPitch;
33400707 51extern int iVolume;
52
69e482e3 53int ready_to_go, g_emu_want_quit, g_emu_resetting;
c5061935 54unsigned long gpuDisp;
55char cfgfile_basename[MAXPATHLEN];
8f892648 56int state_slot;
57enum sched_action emu_action, emu_action_old;
58char hud_msg[64];
59int hud_new_msg;
60
80c2304e 61static void make_path(char *buf, size_t size, const char *dir, const char *fname)
62{
63 if (fname)
64 snprintf(buf, size, ".%s%s", dir, fname);
65 else
66 snprintf(buf, size, ".%s", dir);
67}
68#define MAKE_PATH(buf, dir, fname) \
69 make_path(buf, sizeof(buf), dir, fname)
70
29a8c4f3 71static int get_gameid_filename(char *buf, int size, const char *fmt, int i) {
72 char trimlabel[33];
73 int j;
74
75 strncpy(trimlabel, CdromLabel, 32);
76 trimlabel[32] = 0;
77 for (j = 31; j >= 0; j--)
78 if (trimlabel[j] == ' ')
79 trimlabel[j] = 0;
80 else
81 continue;
82
83 snprintf(buf, size, fmt, trimlabel, CdromId, i);
84
85 return 0;
80c2304e 86}
87
47bf65ab 88void set_cd_image(const char *fname)
89{
e16a7e51 90 const char *ext = NULL;
47bf65ab 91
33716956 92 if (fname != NULL)
93 ext = strrchr(fname, '.');
47bf65ab 94
33716956 95 if (ext && (
96 strcasecmp(ext, ".z") == 0 || strcasecmp(ext, ".bz") == 0 ||
9a92bffb 97 strcasecmp(ext, ".znx") == 0 /*|| strcasecmp(ext, ".pbp") == 0*/)) {
47bf65ab 98 SetIsoFile(NULL);
99 cdrcimg_set_fname(fname);
100 strcpy(Config.Cdr, "builtin_cdrcimg");
101 } else {
102 SetIsoFile(fname);
103 strcpy(Config.Cdr, "builtin_cdr");
104 }
105}
106
6fe1f056 107static void set_default_paths(void)
108{
e6495add 109#ifndef NO_FRONTEND
110 snprintf(Config.PatchesDir, sizeof(Config.PatchesDir), "." PATCHES_DIR);
6fe1f056 111 MAKE_PATH(Config.Mcd1, MEMCARD_DIR, "card1.mcd");
112 MAKE_PATH(Config.Mcd2, MEMCARD_DIR, "card2.mcd");
113 strcpy(Config.BiosDir, "bios");
e6495add 114#endif
6fe1f056 115
116 strcpy(Config.PluginsDir, "plugins");
117 strcpy(Config.Gpu, "builtin_gpu");
118 strcpy(Config.Spu, "builtin_spu");
119 strcpy(Config.Cdr, "builtin_cdr");
120 strcpy(Config.Pad1, "builtin_pad");
121 strcpy(Config.Pad2, "builtin_pad");
122 strcpy(Config.Net, "Disabled");
6fe1f056 123}
124
33400707 125void emu_set_default_config(void)
126{
127 // try to set sane config on which most games work
128 Config.Xa = Config.Cdda = Config.Sio =
129 Config.SpuIrq = Config.RCntFix = Config.VSyncWA = 0;
33400707 130 Config.PsxAuto = 1;
131
746fee51 132 pl_rearmed_cbs.gpu_neon.allow_interlace = 2; // auto
0b02eb77 133 pl_rearmed_cbs.gpu_neon.enhancement_enable =
134 pl_rearmed_cbs.gpu_neon.enhancement_no_main = 0;
33400707 135 pl_rearmed_cbs.gpu_peops.iUseDither = 0;
136 pl_rearmed_cbs.gpu_peops.dwActFixes = 1<<7;
137 pl_rearmed_cbs.gpu_unai.abe_hack =
138 pl_rearmed_cbs.gpu_unai.no_light =
139 pl_rearmed_cbs.gpu_unai.no_blend = 0;
e60da159 140 memset(&pl_rearmed_cbs.gpu_peopsgl, 0, sizeof(pl_rearmed_cbs.gpu_peopsgl));
746fee51 141 pl_rearmed_cbs.gpu_peopsgl.iVRamSize = 64;
cbb26048 142 pl_rearmed_cbs.gpu_peopsgl.iTexGarbageCollection = 1;
33400707 143
144 iUseReverb = 2;
145 iUseInterpolation = 1;
146 iXAPitch = 0;
33400707 147 iVolume = 768;
148#ifndef __ARM_ARCH_7A__ /* XXX */
149 iUseReverb = 0;
150 iUseInterpolation = 0;
151#endif
152 new_dynarec_hacks = 0;
153 cycle_multiplier = 200;
154
155 in_type1 = PSE_PAD_TYPE_STANDARD;
156 in_type2 = PSE_PAD_TYPE_STANDARD;
157}
158
8f892648 159void do_emu_action(void)
160{
161 int ret;
162
163 emu_action_old = emu_action;
164
165 switch (emu_action) {
8f892648 166 case SACTION_LOAD_STATE:
167 ret = emu_load_state(state_slot);
168 snprintf(hud_msg, sizeof(hud_msg), ret == 0 ? "LOADED" : "FAIL!");
169 break;
170 case SACTION_SAVE_STATE:
171 ret = emu_save_state(state_slot);
172 snprintf(hud_msg, sizeof(hud_msg), ret == 0 ? "SAVED" : "FAIL!");
173 break;
38c2028e 174#ifndef NO_FRONTEND
175 case SACTION_ENTER_MENU:
456f1b86 176 toggle_fast_forward(1);
38c2028e 177 menu_loop();
178 return;
8f892648 179 case SACTION_NEXT_SSLOT:
180 state_slot++;
181 if (state_slot > 9)
182 state_slot = 0;
183 goto do_state_slot;
184 case SACTION_PREV_SSLOT:
185 state_slot--;
186 if (state_slot < 0)
187 state_slot = 9;
38c2028e 188do_state_slot:
189 snprintf(hud_msg, sizeof(hud_msg), "STATE SLOT %d [%s]", state_slot,
190 emu_check_state(state_slot) == 0 ? "USED" : "FREE");
191 hud_new_msg = 3;
f29fbd53 192 SysPrintf("* %s\n", hud_msg);
38c2028e 193 break;
8f892648 194 case SACTION_TOGGLE_FSKIP:
ea4a16e7 195 pl_rearmed_cbs.fskip_advice = 0;
196 pl_rearmed_cbs.frameskip++;
197 if (pl_rearmed_cbs.frameskip > 1)
198 pl_rearmed_cbs.frameskip = -1;
199 snprintf(hud_msg, sizeof(hud_msg), "FRAMESKIP: %s",
200 pl_rearmed_cbs.frameskip == -1 ? "AUTO" :
201 pl_rearmed_cbs.frameskip == 0 ? "OFF" : "1" );
202 plugin_call_rearmed_cbs();
8f892648 203 break;
fa56d360 204 case SACTION_SWITCH_DISPMODE:
205 pl_switch_dispmode();
d81b8e97 206 plugin_call_rearmed_cbs();
fa56d360 207 if (GPU_open != NULL && GPU_close != NULL) {
208 GPU_close();
209 GPU_open(&gpuDisp, "PCSX", NULL);
210 }
d81b8e97 211 break;
456f1b86 212 case SACTION_FAST_FORWARD:
213 toggle_fast_forward(0);
214 plugin_call_rearmed_cbs();
215 break;
dde7da71 216 case SACTION_TOGGLE_FPS:
217 if ((g_opts & (OPT_SHOWFPS|OPT_SHOWCPU))
218 == (OPT_SHOWFPS|OPT_SHOWCPU))
219 g_opts &= ~(OPT_SHOWFPS|OPT_SHOWCPU);
220 else if (g_opts & OPT_SHOWFPS)
221 g_opts |= OPT_SHOWCPU;
222 else
223 g_opts |= OPT_SHOWFPS;
224 break;
a8376201 225 case SACTION_TOGGLE_FULLSCREEN:
5b9aa749 226 plat_target.vout_fullscreen = !plat_target.vout_fullscreen;
c9099d02 227 if (GPU_open != NULL && GPU_close != NULL) {
228 GPU_close();
229 GPU_open(&gpuDisp, "PCSX", NULL);
230 }
a8376201 231 break;
29a8c4f3 232 case SACTION_SCREENSHOT:
233 {
38c2028e 234 char buf[MAXPATHLEN];
29a8c4f3 235 void *scrbuf;
236 int w, h, bpp;
237 time_t t = time(NULL);
238 struct tm *tb = localtime(&t);
239 int ti = tb->tm_yday * 1000000 + tb->tm_hour * 10000 +
240 tb->tm_min * 100 + tb->tm_sec;
241
242 scrbuf = pl_prepare_screenshot(&w, &h, &bpp);
243 get_gameid_filename(buf, sizeof(buf),
244 "screenshots/%.32s-%.9s.%d.png", ti);
245 ret = -1;
246 if (scrbuf != 0 && bpp == 16)
247 ret = writepng(buf, scrbuf, w, h);
248 if (ret == 0)
249 snprintf(hud_msg, sizeof(hud_msg), "SCREENSHOT TAKEN");
250 break;
251 }
221be40d 252 case SACTION_VOLUME_UP:
253 case SACTION_VOLUME_DOWN:
cc56203b 254 plat_target_step_volume(emu_action == SACTION_VOLUME_UP);
221be40d 255 return;
a805c855 256 case SACTION_MINIMIZE:
36dfb787 257 if (GPU_close != NULL)
258 GPU_close();
259
a805c855 260 plat_minimize();
36dfb787 261
262 if (GPU_open != NULL) {
263 ret = GPU_open(&gpuDisp, "PCSX", NULL);
264 if (ret)
f29fbd53 265 SysMessage("GPU_open returned %d", ret);
36dfb787 266 }
a805c855 267 return;
38c2028e 268#endif
4c08b9e7 269 default:
270 return;
8f892648 271 }
8f892648 272
8f892648 273 hud_new_msg = 3;
274}
275
cae602d4 276static char basic_lcase(char c)
277{
278 if ('A' <= c && c <= 'Z')
279 return c - 'A' + 'a';
280 return c;
281}
282
9c27c205 283static int cdidcmp(const char *id1, const char *id2)
284{
285 while (*id1 != 0 && *id2 != 0) {
286 if (*id1 == '_') { id1++; continue; }
287 if (*id2 == '_') { id2++; continue; }
cae602d4 288 if (basic_lcase(*id1) != basic_lcase(*id2))
9c27c205 289 break;
290 id1++;
291 id2++;
292 }
293
294 return *id1 - *id2;
295}
296
297static void parse_cwcheat(void)
298{
299 char line[256], buf[64], name[64], *p;
300 int newcheat = 1;
301 u32 a, v;
302 FILE *f;
303
304 f = fopen("cheatpops.db", "r");
305 if (f == NULL)
306 return;
307
308 /* find the game */
309 while (fgets(line, sizeof(line), f)) {
310 if (sscanf(line, "_S %63s", buf) != 1)
311 continue;
312 if (cdidcmp(buf, CdromId) == 0)
313 break;
314 }
315
316 if (feof(f))
317 goto out;
318
f29fbd53 319 SysPrintf("cwcheat section found for %s\n", CdromId);
9c27c205 320 while (fgets(line, sizeof(line), f))
321 {
322 p = line + strlen(line);
323 for (p--; p >= line && (*p == '\r' || *p == '\n' || *p == ' '); p--)
324 *p = 0;
325 if (*p == 0 || *p == '#' || *p == ';')
326 continue;
327
328 if (strncmp(line, "_S", 2) == 0)
329 break;
330 if (strncmp(line, "_G", 2) == 0) {
f29fbd53 331 SysPrintf(" cwcheat game name: '%s'\n", line + 3);
9c27c205 332 continue;
333 }
334 if (strncmp(line, "_C0", 3) == 0) {
335 if (!newcheat && Cheats[NumCheats - 1].n == 0) {
f29fbd53 336 SysPrintf("cheat '%s' failed to parse\n", name);
9c27c205 337 free(Cheats[NumCheats - 1].Descr);
338 NumCheats--;
339 }
340 snprintf(name, sizeof(name), "%s", line + 4);
341 newcheat = 1;
342 continue;
343 }
344 if (sscanf(line, "_L %x %x", &a, &v) != 2) {
f29fbd53 345 SysPrintf("line failed to parse: '%s'\n", line);
9c27c205 346 continue;
347 }
348
349 if (newcheat) {
350 if (NumCheats >= NumCheatsAllocated) {
351 NumCheatsAllocated += 16;
352 Cheats = realloc(Cheats, sizeof(Cheat) *
353 NumCheatsAllocated);
354 if (Cheats == NULL)
355 break;
356 }
357 Cheats[NumCheats].Descr = strdup(name);
358 Cheats[NumCheats].Enabled = 0;
2c843d96 359 Cheats[NumCheats].WasEnabled = 0;
9c27c205 360 Cheats[NumCheats].First = NumCodes;
361 Cheats[NumCheats].n = 0;
362 NumCheats++;
363 newcheat = 0;
364 }
365
366 if (NumCodes >= NumCodesAllocated) {
367 NumCodesAllocated += 16;
368 CheatCodes = realloc(CheatCodes, sizeof(CheatCode) *
369 NumCodesAllocated);
370 if (CheatCodes == NULL)
371 break;
372 }
373 CheatCodes[NumCodes].Addr = a;
374 CheatCodes[NumCodes].Val = v;
375 NumCodes++;
376 Cheats[NumCheats - 1].n++;
377 }
378
379out:
380 fclose(f);
381}
382
79f216e3 383void emu_on_new_cd(int show_hud_msg)
9c27c205 384{
385 ClearAllCheats();
386 parse_cwcheat();
387
388 if (Config.HLE) {
f29fbd53 389 SysPrintf("note: running with HLE BIOS, expect compatibility problems\n");
390 SysPrintf("----------------------------------------------------------\n");
9c27c205 391 }
392
79f216e3 393 if (show_hud_msg) {
394 snprintf(hud_msg, sizeof(hud_msg), BOOT_MSG);
395 hud_new_msg = 3;
396 }
9c27c205 397}
398
38c2028e 399int emu_core_preinit(void)
80c2304e 400{
80c2304e 401 // what is the name of the config file?
402 // it may be redefined by -cfg on the command line
403 strcpy(cfgfile_basename, "pcsx.cfg");
404
e906c010 405 emuLog = stdout;
80c2304e 406 SetIsoFile(NULL);
80c2304e 407
e0c692d9 408 memset(&Config, 0, sizeof(Config));
409
e0c692d9 410 set_default_paths();
33400707 411 emu_set_default_config();
e0c692d9 412 strcpy(Config.Bios, "HLE");
413
38c2028e 414 return 0;
415}
416
417int emu_core_init(void)
418{
45b97ede 419 SysPrintf("Starting PCSX-ReARMed " REV "\n");
420
e6495add 421#ifndef NO_FRONTEND
422 check_profile();
38c2028e 423 check_memcards();
e6495add 424#endif
38c2028e 425
426 if (EmuInit() == -1) {
f29fbd53 427 SysPrintf("PSX emulator couldn't be initialized.\n");
38c2028e 428 return -1;
429 }
430
431 LoadMcds(Config.Mcd1, Config.Mcd2);
432
433 if (Config.Debug) {
434 StartDebugger();
435 }
436
437 return 0;
438}
439
69e482e3 440void emu_core_ask_exit(void)
441{
442 stop = 1;
443 g_emu_want_quit = 1;
444}
445
38c2028e 446#ifndef NO_FRONTEND
e6495add 447static void create_profile_dir(const char *directory) {
448 char path[MAXPATHLEN];
449
450 MAKE_PATH(path, directory, NULL);
451 mkdir(path, S_IRWXU | S_IRWXG);
452}
453
454static void check_profile(void) {
455 // make sure that ~/.pcsx exists
456 create_profile_dir(PCSX_DOT_DIR);
457
458 create_profile_dir(BIOS_DIR);
459 create_profile_dir(MEMCARD_DIR);
460 create_profile_dir(STATES_DIR);
461 create_profile_dir(PLUGINS_DIR);
462 create_profile_dir(PLUGINS_CFG_DIR);
463 create_profile_dir(CHEATS_DIR);
464 create_profile_dir(PATCHES_DIR);
465 create_profile_dir(PCSX_DOT_DIR "cfg");
466 create_profile_dir("/screenshots/");
467}
468
469static void check_memcards(void)
470{
471 char buf[MAXPATHLEN];
472 FILE *f;
473 int i;
474
475 for (i = 1; i <= 9; i++) {
476 snprintf(buf, sizeof(buf), ".%scard%d.mcd", MEMCARD_DIR, i);
477
478 f = fopen(buf, "rb");
479 if (f == NULL) {
480 SysPrintf("Creating memcard: %s\n", buf);
481 CreateMcd(buf);
482 }
483 else
484 fclose(f);
485 }
486}
487
38c2028e 488int main(int argc, char *argv[])
489{
e0c692d9 490 char file[MAXPATHLEN] = "";
491 char path[MAXPATHLEN];
492 const char *cdfile = NULL;
de910c6b 493 const char *loadst_f = NULL;
0a151868 494 int psxout = 0;
e0c692d9 495 int loadst = 0;
496 int i;
497
38c2028e 498 emu_core_preinit();
499
80c2304e 500 // read command line options
501 for (i = 1; i < argc; i++) {
0a151868 502 if (!strcmp(argv[i], "-psxout")) psxout = 1;
80c2304e 503 else if (!strcmp(argv[i], "-load")) loadst = atol(argv[++i]);
504 else if (!strcmp(argv[i], "-cfg")) {
505 if (i+1 >= argc) break;
506 strncpy(cfgfile_basename, argv[++i], MAXPATHLEN-100); /* TODO buffer overruns */
f29fbd53 507 SysPrintf("Using config file %s.\n", cfgfile_basename);
80c2304e 508 }
509 else if (!strcmp(argv[i], "-cdfile")) {
510 char isofilename[MAXPATHLEN];
511
512 if (i+1 >= argc) break;
513 strncpy(isofilename, argv[++i], MAXPATHLEN);
514 if (isofilename[0] != '/') {
515 getcwd(path, MAXPATHLEN);
516 if (strlen(path) + strlen(isofilename) + 1 < MAXPATHLEN) {
517 strcat(path, "/");
518 strcat(path, isofilename);
519 strcpy(isofilename, path);
520 } else
521 isofilename[0] = 0;
522 }
523
47bf65ab 524 cdfile = isofilename;
80c2304e 525 }
de910c6b 526 else if (!strcmp(argv[i], "-loadf")) {
527 if (i+1 >= argc) break;
528 loadst_f = argv[++i];
529 }
80c2304e 530 else if (!strcmp(argv[i], "-h") ||
531 !strcmp(argv[i], "-help") ||
532 !strcmp(argv[i], "--help")) {
38c2028e 533 printf("PCSX-ReARMed " REV "\n");
80c2304e 534 printf("%s\n", _(
535 " pcsx [options] [file]\n"
536 "\toptions:\n"
537 "\t-cdfile FILE\tRuns a CD image file\n"
80c2304e 538 "\t-cfg FILE\tLoads desired configuration file (default: ~/.pcsx/pcsx.cfg)\n"
539 "\t-psxout\t\tEnable PSX output\n"
540 "\t-load STATENUM\tLoads savestate STATENUM (1-5)\n"
541 "\t-h -help\tDisplay this message\n"
38c2028e 542 "\tfile\t\tLoads a PSX EXE file\n"));
80c2304e 543 return 0;
544 } else {
545 strncpy(file, argv[i], MAXPATHLEN);
546 if (file[0] != '/') {
547 getcwd(path, MAXPATHLEN);
548 if (strlen(path) + strlen(file) + 1 < MAXPATHLEN) {
549 strcat(path, "/");
550 strcat(path, file);
551 strcpy(file, path);
552 } else
553 file[0] = 0;
554 }
555 }
556 }
557
47bf65ab 558 if (cdfile)
559 set_cd_image(cdfile);
560
69af03a2 561 // frontend stuff
b07c18e8 562 // init input but leave probing to platform code,
563 // they add input drivers and may need to modify them after probe
69af03a2 564 in_init();
59f1c85c 565 pl_init();
69af03a2 566 plat_init();
0a151868 567 menu_init(); // loads config
568
45b97ede 569 if (emu_core_init() != 0)
570 return 1;
38c2028e 571
0a151868 572 if (psxout)
573 Config.PsxOut = 1;
80c2304e 574
69af03a2 575 if (LoadPlugins() == -1) {
6fe1f056 576 // FIXME: this recovery doesn't work, just delete bad config and bail out
577 // SysMessage("could not load plugins, retrying with defaults\n");
578 set_default_paths();
579 snprintf(path, sizeof(path), "." PCSX_DOT_DIR "%s", cfgfile_basename);
580 remove(path);
69af03a2 581 SysMessage("Failed loading plugins!");
582 return 1;
583 }
584 pcnt_hook_plugins();
80c2304e 585
69af03a2 586 if (OpenPlugins() == -1) {
587 return 1;
588 }
201c21e2 589 plugin_call_rearmed_cbs();
80c2304e 590
69af03a2 591 CheckCdrom();
bbd837c6 592 SysReset();
69af03a2 593
594 if (file[0] != '\0') {
595 if (Load(file) != -1)
596 ready_to_go = 1;
597 } else {
47bf65ab 598 if (cdfile) {
69af03a2 599 if (LoadCdrom() == -1) {
600 ClosePlugins();
f29fbd53 601 SysPrintf(_("Could not load CD-ROM!\n"));
69af03a2 602 return -1;
80c2304e 603 }
79f216e3 604 emu_on_new_cd(!loadst);
69af03a2 605 ready_to_go = 1;
80c2304e 606 }
69af03a2 607 }
80c2304e 608
ea66e884 609 if (loadst_f) {
610 int ret = LoadState(loadst_f);
f29fbd53 611 SysPrintf("%s state file: %s\n",
612 ret ? "failed to load" : "loaded", loadst_f);
ea66e884 613 ready_to_go |= ret == 0;
614 }
615
45d45c1e 616 if (ready_to_go) {
3c70c47b 617 menu_prepare_emu();
45d45c1e 618
619 // If a state has been specified, then load that
620 if (loadst) {
621 int ret = emu_load_state(loadst - 1);
f29fbd53 622 SysPrintf("%s state %d\n",
623 ret ? "failed to load" : "loaded", loadst);
45d45c1e 624 }
625 }
3c70c47b 626 else
69af03a2 627 menu_loop();
628
7c0f51de 629 pl_start_watchdog();
630
69e482e3 631 while (!g_emu_want_quit)
69af03a2 632 {
799b0b87 633 stop = 0;
8f892648 634 emu_action = SACTION_NONE;
635
80c2304e 636 psxCpu->Execute();
8f892648 637 if (emu_action != SACTION_NONE)
638 do_emu_action();
80c2304e 639 }
640
69e482e3 641 printf("Exit..\n");
642 ClosePlugins();
643 SysClose();
644 menu_finish();
645 plat_finish();
646
80c2304e 647 return 0;
648}
456f1b86 649
650static void toggle_fast_forward(int force_off)
651{
652 static int fast_forward;
653 static int normal_g_opts;
654 static int normal_frameskip;
655 static int normal_enhancement_enable;
656
657 if (force_off && !fast_forward)
658 return;
659
660 fast_forward = !fast_forward;
661 if (fast_forward) {
662 normal_g_opts = g_opts;
663 normal_frameskip = pl_rearmed_cbs.frameskip;
664 normal_enhancement_enable =
665 pl_rearmed_cbs.gpu_neon.enhancement_enable;
666
667 g_opts |= OPT_NO_FRAMELIM;
668 pl_rearmed_cbs.frameskip = 3;
669 pl_rearmed_cbs.gpu_neon.enhancement_enable = 0;
670 } else {
671 g_opts = normal_g_opts;
672 pl_rearmed_cbs.frameskip = normal_frameskip;
673 pl_rearmed_cbs.gpu_neon.enhancement_enable =
674 normal_enhancement_enable;
675
676 pl_timing_prepare(Config.PsxType);
677 }
678
679 if (!force_off)
680 snprintf(hud_msg, sizeof(hud_msg), "FAST FORWARD %s",
681 fast_forward ? "ON" : "OFF");
682}
ee1a37fd 683
684static void SignalExit(int sig) {
685 // only to restore framebuffer/resolution on some devices
686 plat_finish();
687 exit(1);
688}
38c2028e 689#endif
80c2304e 690
691void SysRunGui() {
692 printf("SysRunGui\n");
693}
694
e6eb2066 695static void dummy_lace()
696{
697}
698
80c2304e 699void SysReset() {
e6eb2066 700 // rearmed hack: EmuReset() runs some code when real BIOS is used,
701 // but we usually do reset from menu while GPU is not open yet,
702 // so we need to prevent updateLace() call..
703 void *real_lace = GPU_updateLace;
704 GPU_updateLace = dummy_lace;
69e482e3 705 g_emu_resetting = 1;
e6eb2066 706
33400707 707 // reset can run code, timing must be set
708 pl_timing_prepare(Config.PsxType);
709
80c2304e 710 EmuReset();
bd6267e6 711
712 // hmh core forgets this
713 CDR_stop();
e6eb2066 714
715 GPU_updateLace = real_lace;
69e482e3 716 g_emu_resetting = 0;
80c2304e 717}
718
719void SysClose() {
720 EmuShutdown();
721 ReleasePlugins();
722
723 StopDebugger();
724
69e482e3 725 if (emuLog != NULL && emuLog != stdout && emuLog != stderr) {
726 fclose(emuLog);
727 emuLog = NULL;
728 }
80c2304e 729}
730
731void SysUpdate() {
80c2304e 732}
733
c5061935 734int get_state_filename(char *buf, int size, int i) {
29a8c4f3 735 return get_gameid_filename(buf, size,
736 "." STATES_DIR "%.32s-%.9s.%3.3d", i);
80c2304e 737}
738
8f892648 739int emu_check_state(int slot)
740{
741 char fname[MAXPATHLEN];
742 int ret;
743
744 ret = get_state_filename(fname, sizeof(fname), slot);
745 if (ret != 0)
746 return ret;
747
748 return CheckState(fname);
749}
750
751int emu_save_state(int slot)
752{
753 char fname[MAXPATHLEN];
754 int ret;
755
756 ret = get_state_filename(fname, sizeof(fname), slot);
757 if (ret != 0)
758 return ret;
759
90f1d26c 760 ret = SaveState(fname);
0b1dbe6b 761#ifndef __ARM_ARCH_7A__ /* XXX */
762 sync();
763#endif
f29fbd53 764 SysPrintf("* %s \"%s\" [%d]\n",
765 ret == 0 ? "saved" : "failed to save", fname, slot);
90f1d26c 766 return ret;
8f892648 767}
768
769int emu_load_state(int slot)
770{
771 char fname[MAXPATHLEN];
772 int ret;
773
dde7da71 774 hud_msg[0] = 0;
775
8f892648 776 ret = get_state_filename(fname, sizeof(fname), slot);
777 if (ret != 0)
778 return ret;
779
780 return LoadState(fname);
781}
782
45b97ede 783#ifndef ANDROID
784
80c2304e 785void SysPrintf(const char *fmt, ...) {
786 va_list list;
80c2304e 787
788 va_start(list, fmt);
f29fbd53 789 vfprintf(emuLog, fmt, list);
80c2304e 790 va_end(list);
80c2304e 791}
792
45b97ede 793#else
794
795#include <android/log.h>
796
797void SysPrintf(const char *fmt, ...) {
798 va_list list;
799
800 va_start(list, fmt);
801 __android_log_vprint(ANDROID_LOG_INFO, "PCSX", fmt, list);
802 va_end(list);
803}
804
805#endif
806
80c2304e 807void SysMessage(const char *fmt, ...) {
45b97ede 808 va_list list;
809 char msg[512];
810 int ret;
80c2304e 811
45b97ede 812 va_start(list, fmt);
813 ret = vsnprintf(msg, sizeof(msg), fmt, list);
814 va_end(list);
80c2304e 815
45b97ede 816 if (ret < sizeof(msg) && msg[ret - 1] == '\n')
817 msg[ret - 1] = 0;
80c2304e 818
f29fbd53 819 SysPrintf("%s\n", msg);
80c2304e 820}
821
c5061935 822#define PARSEPATH(dst, src) \
823 ptr = src + strlen(src); \
824 while (*ptr != '\\' && ptr != src) ptr--; \
825 if (ptr != src) { \
826 strcpy(dst, ptr+1); \
827 }
828
829static int _OpenPlugins(void) {
830 int ret;
831
ee1a37fd 832#ifndef NO_FRONTEND
c5061935 833 signal(SIGINT, SignalExit);
834 signal(SIGPIPE, SignalExit);
ee1a37fd 835#endif
c5061935 836
837 GPU_clearDynarec(clearDynarec);
838
839 ret = CDR_open();
840 if (ret < 0) { SysMessage(_("Error opening CD-ROM plugin!")); return -1; }
841 ret = SPU_open();
842 if (ret < 0) { SysMessage(_("Error opening SPU plugin!")); return -1; }
843 SPU_registerCallback(SPUirq);
844 // pcsx-rearmed: we handle gpu elsewhere
845 //ret = GPU_open(&gpuDisp, "PCSX", NULL);
846 //if (ret < 0) { SysMessage(_("Error opening GPU plugin!")); return -1; }
847 ret = PAD1_open(&gpuDisp);
848 if (ret < 0) { SysMessage(_("Error opening Controller 1 plugin!")); return -1; }
849 ret = PAD2_open(&gpuDisp);
850 if (ret < 0) { SysMessage(_("Error opening Controller 2 plugin!")); return -1; }
851
852 if (Config.UseNet && !NetOpened) {
853 netInfo info;
854 char path[MAXPATHLEN];
855 char dotdir[MAXPATHLEN];
856
857 MAKE_PATH(dotdir, "/.pcsx/plugins/", NULL);
858
38c2028e 859 strcpy(info.EmuName, "PCSX");
c5061935 860 strncpy(info.CdromID, CdromId, 9);
861 strncpy(info.CdromLabel, CdromLabel, 9);
862 info.psxMem = psxM;
863 info.GPU_showScreenPic = GPU_showScreenPic;
864 info.GPU_displayText = GPU_displayText;
865 info.GPU_showScreenPic = GPU_showScreenPic;
866 info.PAD_setSensitive = PAD1_setSensitive;
867 sprintf(path, "%s%s", Config.BiosDir, Config.Bios);
868 strcpy(info.BIOSpath, path);
869 strcpy(info.MCD1path, Config.Mcd1);
870 strcpy(info.MCD2path, Config.Mcd2);
871 sprintf(path, "%s%s", dotdir, Config.Gpu);
872 strcpy(info.GPUpath, path);
873 sprintf(path, "%s%s", dotdir, Config.Spu);
874 strcpy(info.SPUpath, path);
875 sprintf(path, "%s%s", dotdir, Config.Cdr);
876 strcpy(info.CDRpath, path);
877 NET_setInfo(&info);
878
879 ret = NET_open(&gpuDisp);
880 if (ret < 0) {
881 if (ret == -2) {
882 // -2 is returned when something in the info
883 // changed and needs to be synced
884 char *ptr;
885
886 PARSEPATH(Config.Bios, info.BIOSpath);
887 PARSEPATH(Config.Gpu, info.GPUpath);
888 PARSEPATH(Config.Spu, info.SPUpath);
889 PARSEPATH(Config.Cdr, info.CDRpath);
890
891 strcpy(Config.Mcd1, info.MCD1path);
892 strcpy(Config.Mcd2, info.MCD2path);
893 return -2;
894 } else {
895 Config.UseNet = FALSE;
896 }
897 } else {
898 if (NET_queryPlayer() == 1) {
899 if (SendPcsxInfo() == -1) Config.UseNet = FALSE;
900 } else {
901 if (RecvPcsxInfo() == -1) Config.UseNet = FALSE;
902 }
903 }
904 NetOpened = TRUE;
905 } else if (Config.UseNet) {
906 NET_resume();
907 }
908
909 return 0;
910}
911
912int OpenPlugins() {
913 int ret;
914
915 while ((ret = _OpenPlugins()) == -2) {
916 ReleasePlugins();
917 LoadMcds(Config.Mcd1, Config.Mcd2);
918 if (LoadPlugins() == -1) return -1;
919 }
920 return ret;
921}
922
923void ClosePlugins() {
924 int ret;
925
ee1a37fd 926#ifndef NO_FRONTEND
c5061935 927 signal(SIGINT, SIG_DFL);
928 signal(SIGPIPE, SIG_DFL);
ee1a37fd 929#endif
930
c5061935 931 ret = CDR_close();
932 if (ret < 0) { SysMessage(_("Error closing CD-ROM plugin!")); return; }
933 ret = SPU_close();
934 if (ret < 0) { SysMessage(_("Error closing SPU plugin!")); return; }
935 ret = PAD1_close();
936 if (ret < 0) { SysMessage(_("Error closing Controller 1 Plugin!")); return; }
937 ret = PAD2_close();
938 if (ret < 0) { SysMessage(_("Error closing Controller 2 plugin!")); return; }
939 // pcsx-rearmed: we handle gpu elsewhere
940 //ret = GPU_close();
941 //if (ret < 0) { SysMessage(_("Error closing GPU plugin!")); return; }
942
943 if (Config.UseNet) {
944 NET_pause();
945 }
946}
947
e906c010 948/* we hook statically linked plugins here */
949static const char *builtin_plugins[] = {
47bf65ab 950 "builtin_gpu", "builtin_spu", "builtin_cdr", "builtin_pad",
951 "builtin_cdrcimg",
e906c010 952};
953
954static const int builtin_plugin_ids[] = {
955 PLUGIN_GPU, PLUGIN_SPU, PLUGIN_CDR, PLUGIN_PAD,
47bf65ab 956 PLUGIN_CDRCIMG,
e906c010 957};
958
80c2304e 959void *SysLoadLibrary(const char *lib) {
e906c010 960 const char *tmp = strrchr(lib, '/');
bbd837c6 961 void *ret;
e906c010 962 int i;
963
f29fbd53 964 SysPrintf("plugin: %s\n", lib);
bbd837c6 965
e906c010 966 if (tmp != NULL) {
967 tmp++;
968 for (i = 0; i < ARRAY_SIZE(builtin_plugins); i++)
969 if (strcmp(tmp, builtin_plugins[i]) == 0)
970 return (void *)(long)(PLUGIN_DL_BASE + builtin_plugin_ids[i]);
971 }
972
bbd837c6 973 ret = dlopen(lib, RTLD_NOW);
974 if (ret == NULL)
f29fbd53 975 SysMessage("dlopen: %s", dlerror());
bbd837c6 976 return ret;
80c2304e 977}
978
979void *SysLoadSym(void *lib, const char *sym) {
e906c010 980 unsigned int plugid = (unsigned int)(long)lib;
981
982 if (PLUGIN_DL_BASE <= plugid && plugid < PLUGIN_DL_BASE + ARRAY_SIZE(builtin_plugins))
983 return plugin_link(plugid - PLUGIN_DL_BASE, sym);
984
80c2304e 985 return dlsym(lib, sym);
986}
987
988const char *SysLibError() {
989 return dlerror();
990}
991
992void SysCloseLibrary(void *lib) {
e906c010 993 unsigned int plugid = (unsigned int)(long)lib;
994
995 if (PLUGIN_DL_BASE <= plugid && plugid < PLUGIN_DL_BASE + ARRAY_SIZE(builtin_plugins))
996 return;
997
80c2304e 998 dlclose(lib);
999}
1000