remove one of the hacks
[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;
38c2028e 291#endif
4c08b9e7 292 default:
293 return;
8f892648 294 }
8f892648 295
8f892648 296 hud_new_msg = 3;
297}
298
cae602d4 299static char basic_lcase(char c)
300{
301 if ('A' <= c && c <= 'Z')
302 return c - 'A' + 'a';
303 return c;
304}
305
9c27c205 306static int cdidcmp(const char *id1, const char *id2)
307{
308 while (*id1 != 0 && *id2 != 0) {
309 if (*id1 == '_') { id1++; continue; }
310 if (*id2 == '_') { id2++; continue; }
cae602d4 311 if (basic_lcase(*id1) != basic_lcase(*id2))
9c27c205 312 break;
313 id1++;
314 id2++;
315 }
316
317 return *id1 - *id2;
318}
319
320static void parse_cwcheat(void)
321{
7a8d521f 322 char line[256], buf[256], name[256], *p;
9c27c205 323 int newcheat = 1;
324 u32 a, v;
325 FILE *f;
326
327 f = fopen("cheatpops.db", "r");
328 if (f == NULL)
329 return;
330
331 /* find the game */
332 while (fgets(line, sizeof(line), f)) {
333 if (sscanf(line, "_S %63s", buf) != 1)
334 continue;
335 if (cdidcmp(buf, CdromId) == 0)
336 break;
337 }
338
339 if (feof(f))
340 goto out;
341
f29fbd53 342 SysPrintf("cwcheat section found for %s\n", CdromId);
9c27c205 343 while (fgets(line, sizeof(line), f))
344 {
345 p = line + strlen(line);
346 for (p--; p >= line && (*p == '\r' || *p == '\n' || *p == ' '); p--)
347 *p = 0;
348 if (*p == 0 || *p == '#' || *p == ';')
349 continue;
350
351 if (strncmp(line, "_S", 2) == 0)
352 break;
353 if (strncmp(line, "_G", 2) == 0) {
f29fbd53 354 SysPrintf(" cwcheat game name: '%s'\n", line + 3);
9c27c205 355 continue;
356 }
357 if (strncmp(line, "_C0", 3) == 0) {
358 if (!newcheat && Cheats[NumCheats - 1].n == 0) {
f29fbd53 359 SysPrintf("cheat '%s' failed to parse\n", name);
9c27c205 360 free(Cheats[NumCheats - 1].Descr);
361 NumCheats--;
362 }
363 snprintf(name, sizeof(name), "%s", line + 4);
364 newcheat = 1;
365 continue;
366 }
367 if (sscanf(line, "_L %x %x", &a, &v) != 2) {
f29fbd53 368 SysPrintf("line failed to parse: '%s'\n", line);
9c27c205 369 continue;
370 }
371
372 if (newcheat) {
373 if (NumCheats >= NumCheatsAllocated) {
374 NumCheatsAllocated += 16;
375 Cheats = realloc(Cheats, sizeof(Cheat) *
376 NumCheatsAllocated);
377 if (Cheats == NULL)
378 break;
379 }
380 Cheats[NumCheats].Descr = strdup(name);
381 Cheats[NumCheats].Enabled = 0;
2c843d96 382 Cheats[NumCheats].WasEnabled = 0;
9c27c205 383 Cheats[NumCheats].First = NumCodes;
384 Cheats[NumCheats].n = 0;
385 NumCheats++;
386 newcheat = 0;
387 }
388
389 if (NumCodes >= NumCodesAllocated) {
390 NumCodesAllocated += 16;
391 CheatCodes = realloc(CheatCodes, sizeof(CheatCode) *
392 NumCodesAllocated);
393 if (CheatCodes == NULL)
394 break;
395 }
396 CheatCodes[NumCodes].Addr = a;
397 CheatCodes[NumCodes].Val = v;
398 NumCodes++;
399 Cheats[NumCheats - 1].n++;
400 }
401
402out:
403 fclose(f);
404}
405
79f216e3 406void emu_on_new_cd(int show_hud_msg)
9c27c205 407{
408 ClearAllCheats();
409 parse_cwcheat();
410
411 if (Config.HLE) {
f29fbd53 412 SysPrintf("note: running with HLE BIOS, expect compatibility problems\n");
413 SysPrintf("----------------------------------------------------------\n");
9c27c205 414 }
415
79f216e3 416 if (show_hud_msg) {
f3746eea 417 if (check_unsatisfied_libcrypt())
418 snprintf(hud_msg, sizeof(hud_msg),
419 "LibCrypt protected game with missing SBI detected");
420 else
421 snprintf(hud_msg, sizeof(hud_msg), BOOT_MSG);
79f216e3 422 hud_new_msg = 3;
423 }
9c27c205 424}
425
1f1128d0 426static void log_wrong_cpu(void)
427{
428#if DO_CPU_CHECKS
429 __builtin_cpu_init();
430 #define CHECK_CPU(name) if (!__builtin_cpu_supports(name)) \
431 SysPrintf("ERROR: compiled for " name ", which is unsupported by the CPU\n")
432#ifdef __SSE2__
433 CHECK_CPU("sse2");
434#endif
435#ifdef __SSSE3__
436 CHECK_CPU("ssse3");
437#endif
438#ifdef __SSE4_1__
439 CHECK_CPU("sse4.1");
440#endif
441#endif // DO_CPU_CHECKS
442}
443
0d87d062 444#define MKSTR2(x) #x
445#define MKSTR(x) MKSTR2(x)
446static const char *get_build_info(void)
447{
448 return " ("
449#ifdef __VERSION__
450 "cc " __VERSION__ " "
451#endif
452#if defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ == 8
453 "64bit "
454#elif defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ == 4
455 "32bit "
456#endif
457#if defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
458 "be "
459#endif
460#if defined(__PIC__) || defined(__pic__)
461 "pic "
462#endif
463#if defined(__aarch64__)
464 "arm64"
465#elif defined(__arm__)
466 "arm"
467#endif
468#ifdef __ARM_ARCH
469 "v" MKSTR(__ARM_ARCH) " "
470#endif
471#if defined(__AVX__)
472 "avx "
473#elif defined(__SSSE3__)
474 "ssse3 "
475#elif defined(__ARM_NEON) || defined(__ARM_NEON__)
476 "neon "
477#endif
478#if defined(LIGHTREC)
479 "lightrec "
480#elif !defined(DRC_DISABLE)
481 "ari64 "
482#endif
483 "gpu=" MKSTR(BUILTIN_GPU)
484 ")";
485}
486
38c2028e 487int emu_core_preinit(void)
80c2304e 488{
80c2304e 489 // what is the name of the config file?
490 // it may be redefined by -cfg on the command line
491 strcpy(cfgfile_basename, "pcsx.cfg");
492
ea12009c 493#ifdef IOS
494 emuLog = fopen("/User/Documents/pcsxr.log", "w");
495 if (emuLog == NULL)
496 emuLog = fopen("pcsxr.log", "w");
497 if (emuLog == NULL)
498#endif
e906c010 499 emuLog = stdout;
ea12009c 500
1f1128d0 501 log_wrong_cpu();
502
80c2304e 503 SetIsoFile(NULL);
80c2304e 504
e0c692d9 505 memset(&Config, 0, sizeof(Config));
506
e0c692d9 507 set_default_paths();
33400707 508 emu_set_default_config();
e0c692d9 509 strcpy(Config.Bios, "HLE");
510
38c2028e 511 return 0;
512}
513
514int emu_core_init(void)
515{
0d87d062 516 SysPrintf("Starting PCSX-ReARMed " REV "%s\n", get_build_info());
45b97ede 517
e6495add 518#ifndef NO_FRONTEND
519 check_profile();
38c2028e 520 check_memcards();
e6495add 521#endif
38c2028e 522
523 if (EmuInit() == -1) {
f29fbd53 524 SysPrintf("PSX emulator couldn't be initialized.\n");
38c2028e 525 return -1;
526 }
527
528 LoadMcds(Config.Mcd1, Config.Mcd2);
529
530 if (Config.Debug) {
531 StartDebugger();
532 }
533
534 return 0;
535}
536
69e482e3 537void emu_core_ask_exit(void)
538{
da65071f 539 stop++;
69e482e3 540 g_emu_want_quit = 1;
541}
542
38c2028e 543#ifndef NO_FRONTEND
003cfc63 544
545#include <sys/stat.h>
546#include <sys/types.h>
547
e6495add 548static void create_profile_dir(const char *directory) {
549 char path[MAXPATHLEN];
550
551 MAKE_PATH(path, directory, NULL);
552 mkdir(path, S_IRWXU | S_IRWXG);
553}
554
555static void check_profile(void) {
556 // make sure that ~/.pcsx exists
557 create_profile_dir(PCSX_DOT_DIR);
558
559 create_profile_dir(BIOS_DIR);
560 create_profile_dir(MEMCARD_DIR);
561 create_profile_dir(STATES_DIR);
562 create_profile_dir(PLUGINS_DIR);
563 create_profile_dir(PLUGINS_CFG_DIR);
564 create_profile_dir(CHEATS_DIR);
565 create_profile_dir(PATCHES_DIR);
566 create_profile_dir(PCSX_DOT_DIR "cfg");
567 create_profile_dir("/screenshots/");
568}
569
570static void check_memcards(void)
571{
572 char buf[MAXPATHLEN];
573 FILE *f;
574 int i;
575
576 for (i = 1; i <= 9; i++) {
577 snprintf(buf, sizeof(buf), ".%scard%d.mcd", MEMCARD_DIR, i);
578
579 f = fopen(buf, "rb");
580 if (f == NULL) {
581 SysPrintf("Creating memcard: %s\n", buf);
582 CreateMcd(buf);
583 }
584 else
585 fclose(f);
586 }
587}
588
38c2028e 589int main(int argc, char *argv[])
590{
e0c692d9 591 char file[MAXPATHLEN] = "";
592 char path[MAXPATHLEN];
2ca1e56e 593 char isofilename[MAXPATHLEN];
e0c692d9 594 const char *cdfile = NULL;
de910c6b 595 const char *loadst_f = NULL;
0a151868 596 int psxout = 0;
e0c692d9 597 int loadst = 0;
598 int i;
599
38c2028e 600 emu_core_preinit();
601
80c2304e 602 // read command line options
603 for (i = 1; i < argc; i++) {
0a151868 604 if (!strcmp(argv[i], "-psxout")) psxout = 1;
80c2304e 605 else if (!strcmp(argv[i], "-load")) loadst = atol(argv[++i]);
606 else if (!strcmp(argv[i], "-cfg")) {
607 if (i+1 >= argc) break;
608 strncpy(cfgfile_basename, argv[++i], MAXPATHLEN-100); /* TODO buffer overruns */
f29fbd53 609 SysPrintf("Using config file %s.\n", cfgfile_basename);
80c2304e 610 }
611 else if (!strcmp(argv[i], "-cdfile")) {
80c2304e 612 if (i+1 >= argc) break;
613 strncpy(isofilename, argv[++i], MAXPATHLEN);
614 if (isofilename[0] != '/') {
615 getcwd(path, MAXPATHLEN);
616 if (strlen(path) + strlen(isofilename) + 1 < MAXPATHLEN) {
617 strcat(path, "/");
618 strcat(path, isofilename);
619 strcpy(isofilename, path);
620 } else
621 isofilename[0] = 0;
622 }
623
47bf65ab 624 cdfile = isofilename;
80c2304e 625 }
de910c6b 626 else if (!strcmp(argv[i], "-loadf")) {
627 if (i+1 >= argc) break;
628 loadst_f = argv[++i];
629 }
80c2304e 630 else if (!strcmp(argv[i], "-h") ||
631 !strcmp(argv[i], "-help") ||
632 !strcmp(argv[i], "--help")) {
38c2028e 633 printf("PCSX-ReARMed " REV "\n");
80c2304e 634 printf("%s\n", _(
635 " pcsx [options] [file]\n"
636 "\toptions:\n"
637 "\t-cdfile FILE\tRuns a CD image file\n"
80c2304e 638 "\t-cfg FILE\tLoads desired configuration file (default: ~/.pcsx/pcsx.cfg)\n"
639 "\t-psxout\t\tEnable PSX output\n"
640 "\t-load STATENUM\tLoads savestate STATENUM (1-5)\n"
641 "\t-h -help\tDisplay this message\n"
38c2028e 642 "\tfile\t\tLoads a PSX EXE file\n"));
80c2304e 643 return 0;
644 } else {
645 strncpy(file, argv[i], MAXPATHLEN);
646 if (file[0] != '/') {
647 getcwd(path, MAXPATHLEN);
648 if (strlen(path) + strlen(file) + 1 < MAXPATHLEN) {
649 strcat(path, "/");
650 strcat(path, file);
651 strcpy(file, path);
652 } else
653 file[0] = 0;
654 }
655 }
656 }
657
47bf65ab 658 if (cdfile)
659 set_cd_image(cdfile);
660
69af03a2 661 // frontend stuff
b07c18e8 662 // init input but leave probing to platform code,
663 // they add input drivers and may need to modify them after probe
69af03a2 664 in_init();
59f1c85c 665 pl_init();
69af03a2 666 plat_init();
0a151868 667 menu_init(); // loads config
668
45b97ede 669 if (emu_core_init() != 0)
670 return 1;
38c2028e 671
0a151868 672 if (psxout)
673 Config.PsxOut = 1;
80c2304e 674
69af03a2 675 if (LoadPlugins() == -1) {
6fe1f056 676 // FIXME: this recovery doesn't work, just delete bad config and bail out
677 // SysMessage("could not load plugins, retrying with defaults\n");
678 set_default_paths();
679 snprintf(path, sizeof(path), "." PCSX_DOT_DIR "%s", cfgfile_basename);
680 remove(path);
69af03a2 681 SysMessage("Failed loading plugins!");
682 return 1;
683 }
684 pcnt_hook_plugins();
80c2304e 685
69af03a2 686 if (OpenPlugins() == -1) {
687 return 1;
688 }
201c21e2 689 plugin_call_rearmed_cbs();
80c2304e 690
69af03a2 691 CheckCdrom();
bbd837c6 692 SysReset();
69af03a2 693
694 if (file[0] != '\0') {
695 if (Load(file) != -1)
696 ready_to_go = 1;
697 } else {
47bf65ab 698 if (cdfile) {
69af03a2 699 if (LoadCdrom() == -1) {
700 ClosePlugins();
f29fbd53 701 SysPrintf(_("Could not load CD-ROM!\n"));
69af03a2 702 return -1;
80c2304e 703 }
79f216e3 704 emu_on_new_cd(!loadst);
69af03a2 705 ready_to_go = 1;
80c2304e 706 }
69af03a2 707 }
80c2304e 708
ea66e884 709 if (loadst_f) {
710 int ret = LoadState(loadst_f);
f29fbd53 711 SysPrintf("%s state file: %s\n",
712 ret ? "failed to load" : "loaded", loadst_f);
ea66e884 713 ready_to_go |= ret == 0;
714 }
715
45d45c1e 716 if (ready_to_go) {
49e9602d 717 if (menu_load_config(1) != 0)
718 menu_load_config(0);
32631e6a 719 menu_prepare_emu();
45d45c1e 720
721 // If a state has been specified, then load that
722 if (loadst) {
723 int ret = emu_load_state(loadst - 1);
f29fbd53 724 SysPrintf("%s state %d\n",
725 ret ? "failed to load" : "loaded", loadst);
45d45c1e 726 }
727 }
3c70c47b 728 else
69af03a2 729 menu_loop();
730
7c0f51de 731 pl_start_watchdog();
732
69e482e3 733 while (!g_emu_want_quit)
69af03a2 734 {
799b0b87 735 stop = 0;
8f892648 736 emu_action = SACTION_NONE;
737
80c2304e 738 psxCpu->Execute();
8f892648 739 if (emu_action != SACTION_NONE)
740 do_emu_action();
80c2304e 741 }
742
69e482e3 743 printf("Exit..\n");
744 ClosePlugins();
745 SysClose();
746 menu_finish();
747 plat_finish();
748
80c2304e 749 return 0;
750}
456f1b86 751
752static void toggle_fast_forward(int force_off)
753{
754 static int fast_forward;
755 static int normal_g_opts;
456f1b86 756 static int normal_enhancement_enable;
a8305381 757 //static int normal_frameskip;
456f1b86 758
759 if (force_off && !fast_forward)
760 return;
761
762 fast_forward = !fast_forward;
763 if (fast_forward) {
764 normal_g_opts = g_opts;
a8305381 765 //normal_frameskip = pl_rearmed_cbs.frameskip;
456f1b86 766 normal_enhancement_enable =
767 pl_rearmed_cbs.gpu_neon.enhancement_enable;
768
769 g_opts |= OPT_NO_FRAMELIM;
a8305381 770 // pl_rearmed_cbs.frameskip = 3; // too broken
456f1b86 771 pl_rearmed_cbs.gpu_neon.enhancement_enable = 0;
772 } else {
773 g_opts = normal_g_opts;
a8305381 774 //pl_rearmed_cbs.frameskip = normal_frameskip;
456f1b86 775 pl_rearmed_cbs.gpu_neon.enhancement_enable =
776 normal_enhancement_enable;
777
778 pl_timing_prepare(Config.PsxType);
779 }
780
781 if (!force_off)
782 snprintf(hud_msg, sizeof(hud_msg), "FAST FORWARD %s",
783 fast_forward ? "ON" : "OFF");
784}
ee1a37fd 785
786static void SignalExit(int sig) {
787 // only to restore framebuffer/resolution on some devices
788 plat_finish();
cfa5a2af 789 _exit(1);
ee1a37fd 790}
38c2028e 791#endif
80c2304e 792
793void SysRunGui() {
794 printf("SysRunGui\n");
795}
796
029e681c 797static void CALLBACK dummy_lace()
e6eb2066 798{
799}
800
80c2304e 801void SysReset() {
e6eb2066 802 // rearmed hack: EmuReset() runs some code when real BIOS is used,
803 // but we usually do reset from menu while GPU is not open yet,
804 // so we need to prevent updateLace() call..
805 void *real_lace = GPU_updateLace;
806 GPU_updateLace = dummy_lace;
69e482e3 807 g_emu_resetting = 1;
e6eb2066 808
33400707 809 // reset can run code, timing must be set
810 pl_timing_prepare(Config.PsxType);
811
bd6267e6 812 // hmh core forgets this
813 CDR_stop();
7a8d521f 814
815 EmuReset();
e6eb2066 816
817 GPU_updateLace = real_lace;
69e482e3 818 g_emu_resetting = 0;
80c2304e 819}
820
821void SysClose() {
822 EmuShutdown();
823 ReleasePlugins();
824
825 StopDebugger();
826
69e482e3 827 if (emuLog != NULL && emuLog != stdout && emuLog != stderr) {
828 fclose(emuLog);
829 emuLog = NULL;
830 }
80c2304e 831}
832
c5061935 833int get_state_filename(char *buf, int size, int i) {
29a8c4f3 834 return get_gameid_filename(buf, size,
835 "." STATES_DIR "%.32s-%.9s.%3.3d", i);
80c2304e 836}
837
8f892648 838int emu_check_state(int slot)
839{
840 char fname[MAXPATHLEN];
841 int ret;
842
843 ret = get_state_filename(fname, sizeof(fname), slot);
844 if (ret != 0)
845 return ret;
846
847 return CheckState(fname);
848}
849
850int emu_save_state(int slot)
851{
852 char fname[MAXPATHLEN];
853 int ret;
854
855 ret = get_state_filename(fname, sizeof(fname), slot);
856 if (ret != 0)
857 return ret;
858
90f1d26c 859 ret = SaveState(fname);
7a8d521f 860#if defined(HAVE_PRE_ARMV7) && !defined(_3DS) && !defined(__SWITCH__) /* XXX GPH hack */
0b1dbe6b 861 sync();
862#endif
f29fbd53 863 SysPrintf("* %s \"%s\" [%d]\n",
864 ret == 0 ? "saved" : "failed to save", fname, slot);
90f1d26c 865 return ret;
8f892648 866}
867
868int emu_load_state(int slot)
869{
870 char fname[MAXPATHLEN];
871 int ret;
872
dde7da71 873 hud_msg[0] = 0;
874
8f892648 875 ret = get_state_filename(fname, sizeof(fname), slot);
876 if (ret != 0)
877 return ret;
878
879 return LoadState(fname);
880}
881
7a8d521f 882#ifndef HAVE_LIBRETRO
45b97ede 883#ifndef ANDROID
884
80c2304e 885void SysPrintf(const char *fmt, ...) {
886 va_list list;
80c2304e 887
888 va_start(list, fmt);
f29fbd53 889 vfprintf(emuLog, fmt, list);
80c2304e 890 va_end(list);
82fe9e47 891 fflush(emuLog);
80c2304e 892}
893
45b97ede 894#else
895
896#include <android/log.h>
897
898void SysPrintf(const char *fmt, ...) {
899 va_list list;
900
901 va_start(list, fmt);
902 __android_log_vprint(ANDROID_LOG_INFO, "PCSX", fmt, list);
903 va_end(list);
904}
905
906#endif
7a8d521f 907#endif /* HAVE_LIBRETRO */
45b97ede 908
80c2304e 909void SysMessage(const char *fmt, ...) {
45b97ede 910 va_list list;
911 char msg[512];
912 int ret;
80c2304e 913
45b97ede 914 va_start(list, fmt);
915 ret = vsnprintf(msg, sizeof(msg), fmt, list);
916 va_end(list);
80c2304e 917
45b97ede 918 if (ret < sizeof(msg) && msg[ret - 1] == '\n')
919 msg[ret - 1] = 0;
80c2304e 920
f29fbd53 921 SysPrintf("%s\n", msg);
80c2304e 922}
923
c5061935 924#define PARSEPATH(dst, src) \
925 ptr = src + strlen(src); \
926 while (*ptr != '\\' && ptr != src) ptr--; \
927 if (ptr != src) { \
928 strcpy(dst, ptr+1); \
929 }
930
931static int _OpenPlugins(void) {
932 int ret;
933
ee1a37fd 934#ifndef NO_FRONTEND
c5061935 935 signal(SIGINT, SignalExit);
936 signal(SIGPIPE, SignalExit);
ee1a37fd 937#endif
c5061935 938
c5061935 939 ret = CDR_open();
940 if (ret < 0) { SysMessage(_("Error opening CD-ROM plugin!")); return -1; }
941 ret = SPU_open();
942 if (ret < 0) { SysMessage(_("Error opening SPU plugin!")); return -1; }
943 SPU_registerCallback(SPUirq);
2b30c129 944 SPU_registerScheduleCb(SPUschedule);
c5061935 945 // pcsx-rearmed: we handle gpu elsewhere
946 //ret = GPU_open(&gpuDisp, "PCSX", NULL);
947 //if (ret < 0) { SysMessage(_("Error opening GPU plugin!")); return -1; }
948 ret = PAD1_open(&gpuDisp);
949 if (ret < 0) { SysMessage(_("Error opening Controller 1 plugin!")); return -1; }
950 ret = PAD2_open(&gpuDisp);
951 if (ret < 0) { SysMessage(_("Error opening Controller 2 plugin!")); return -1; }
952
953 if (Config.UseNet && !NetOpened) {
954 netInfo info;
7a8d521f 955 char path[MAXPATHLEN * 2];
c5061935 956 char dotdir[MAXPATHLEN];
957
958 MAKE_PATH(dotdir, "/.pcsx/plugins/", NULL);
959
38c2028e 960 strcpy(info.EmuName, "PCSX");
7a8d521f 961 memcpy(info.CdromID, CdromId, 9); /* no \0 trailing character? */
962 memcpy(info.CdromLabel, CdromLabel, 9);
963 info.CdromLabel[9] = '\0';
c5061935 964 info.psxMem = psxM;
965 info.GPU_showScreenPic = GPU_showScreenPic;
966 info.GPU_displayText = GPU_displayText;
967 info.GPU_showScreenPic = GPU_showScreenPic;
968 info.PAD_setSensitive = PAD1_setSensitive;
969 sprintf(path, "%s%s", Config.BiosDir, Config.Bios);
970 strcpy(info.BIOSpath, path);
971 strcpy(info.MCD1path, Config.Mcd1);
972 strcpy(info.MCD2path, Config.Mcd2);
973 sprintf(path, "%s%s", dotdir, Config.Gpu);
974 strcpy(info.GPUpath, path);
975 sprintf(path, "%s%s", dotdir, Config.Spu);
976 strcpy(info.SPUpath, path);
977 sprintf(path, "%s%s", dotdir, Config.Cdr);
978 strcpy(info.CDRpath, path);
979 NET_setInfo(&info);
980
981 ret = NET_open(&gpuDisp);
982 if (ret < 0) {
983 if (ret == -2) {
984 // -2 is returned when something in the info
985 // changed and needs to be synced
986 char *ptr;
987
988 PARSEPATH(Config.Bios, info.BIOSpath);
989 PARSEPATH(Config.Gpu, info.GPUpath);
990 PARSEPATH(Config.Spu, info.SPUpath);
991 PARSEPATH(Config.Cdr, info.CDRpath);
992
993 strcpy(Config.Mcd1, info.MCD1path);
994 strcpy(Config.Mcd2, info.MCD2path);
995 return -2;
996 } else {
997 Config.UseNet = FALSE;
998 }
999 } else {
1000 if (NET_queryPlayer() == 1) {
1001 if (SendPcsxInfo() == -1) Config.UseNet = FALSE;
1002 } else {
1003 if (RecvPcsxInfo() == -1) Config.UseNet = FALSE;
1004 }
1005 }
1006 NetOpened = TRUE;
1007 } else if (Config.UseNet) {
1008 NET_resume();
1009 }
1010
1011 return 0;
1012}
1013
1014int OpenPlugins() {
1015 int ret;
1016
1017 while ((ret = _OpenPlugins()) == -2) {
1018 ReleasePlugins();
1019 LoadMcds(Config.Mcd1, Config.Mcd2);
1020 if (LoadPlugins() == -1) return -1;
1021 }
1022 return ret;
1023}
1024
1025void ClosePlugins() {
1026 int ret;
1027
ee1a37fd 1028#ifndef NO_FRONTEND
c5061935 1029 signal(SIGINT, SIG_DFL);
1030 signal(SIGPIPE, SIG_DFL);
ee1a37fd 1031#endif
1032
c5061935 1033 ret = CDR_close();
1034 if (ret < 0) { SysMessage(_("Error closing CD-ROM plugin!")); return; }
1035 ret = SPU_close();
1036 if (ret < 0) { SysMessage(_("Error closing SPU plugin!")); return; }
1037 ret = PAD1_close();
1038 if (ret < 0) { SysMessage(_("Error closing Controller 1 Plugin!")); return; }
1039 ret = PAD2_close();
1040 if (ret < 0) { SysMessage(_("Error closing Controller 2 plugin!")); return; }
1041 // pcsx-rearmed: we handle gpu elsewhere
1042 //ret = GPU_close();
1043 //if (ret < 0) { SysMessage(_("Error closing GPU plugin!")); return; }
1044
1045 if (Config.UseNet) {
1046 NET_pause();
1047 }
1048}
1049
e906c010 1050/* we hook statically linked plugins here */
1051static const char *builtin_plugins[] = {
47bf65ab 1052 "builtin_gpu", "builtin_spu", "builtin_cdr", "builtin_pad",
1053 "builtin_cdrcimg",
e906c010 1054};
1055
1056static const int builtin_plugin_ids[] = {
1057 PLUGIN_GPU, PLUGIN_SPU, PLUGIN_CDR, PLUGIN_PAD,
47bf65ab 1058 PLUGIN_CDRCIMG,
e906c010 1059};
1060
80c2304e 1061void *SysLoadLibrary(const char *lib) {
e906c010 1062 const char *tmp = strrchr(lib, '/');
003cfc63 1063 void *ret = NULL;
e906c010 1064 int i;
1065
f29fbd53 1066 SysPrintf("plugin: %s\n", lib);
bbd837c6 1067
e906c010 1068 if (tmp != NULL) {
1069 tmp++;
1070 for (i = 0; i < ARRAY_SIZE(builtin_plugins); i++)
1071 if (strcmp(tmp, builtin_plugins[i]) == 0)
77e1e479 1072 return (void *)(uintptr_t)(PLUGIN_DL_BASE + builtin_plugin_ids[i]);
e906c010 1073 }
1074
7a8d521f 1075#if !defined(_WIN32) && !defined(NO_DYLIB)
bbd837c6 1076 ret = dlopen(lib, RTLD_NOW);
1077 if (ret == NULL)
f29fbd53 1078 SysMessage("dlopen: %s", dlerror());
003cfc63 1079#else
1080 /* no external plugin support, abi is no longer
1081 * compatible with psemu/pcsx anyway */
1082#endif
bbd837c6 1083 return ret;
80c2304e 1084}
1085
1086void *SysLoadSym(void *lib, const char *sym) {
77e1e479 1087 unsigned int plugid = (unsigned int)(uintptr_t)lib;
e906c010 1088
1089 if (PLUGIN_DL_BASE <= plugid && plugid < PLUGIN_DL_BASE + ARRAY_SIZE(builtin_plugins))
1090 return plugin_link(plugid - PLUGIN_DL_BASE, sym);
1091
7a8d521f 1092#if !defined(_WIN32) && !defined(NO_DYLIB)
80c2304e 1093 return dlsym(lib, sym);
003cfc63 1094#else
1095 return NULL;
1096#endif
80c2304e 1097}
1098
1099const char *SysLibError() {
7a8d521f 1100#if defined(NO_DYLIB)
1101 return NULL;
1102#elif !defined(_WIN32)
80c2304e 1103 return dlerror();
003cfc63 1104#else
1105 return "not supported";
1106#endif
80c2304e 1107}
1108
1109void SysCloseLibrary(void *lib) {
77e1e479 1110 unsigned int plugid = (unsigned int)(uintptr_t)lib;
e906c010 1111
1112 if (PLUGIN_DL_BASE <= plugid && plugid < PLUGIN_DL_BASE + ARRAY_SIZE(builtin_plugins))
1113 return;
1114
7a8d521f 1115#if !defined(_WIN32) && !defined(NO_DYLIB)
80c2304e 1116 dlclose(lib);
003cfc63 1117#endif
80c2304e 1118}