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