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