Merge pull request #520 from negativeExponent/multitap_option_description
[pcsx_rearmed.git] / frontend / libretro.c
CommitLineData
38c2028e 1/*
003cfc63 2 * (C) notaz, 2012,2014,2015
38c2028e 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
805fe9bc 8#define _GNU_SOURCE 1 // strcasestr
38c2028e 9#include <stdio.h>
10#include <stdlib.h>
11#include <string.h>
74ebc05b 12#include <strings.h>
d148d265 13#ifdef __MACH__
14#include <unistd.h>
15#include <sys/syscall.h>
16#endif
38c2028e 17
12367ad0 18#ifdef SWITCH
19#include <switch.h>
20#endif
21
38c2028e 22#include "../libpcsxcore/misc.h"
23#include "../libpcsxcore/psxcounters.h"
87e5b45f 24#include "../libpcsxcore/psxmem_map.h"
38c2028e 25#include "../libpcsxcore/new_dynarec/new_dynarec.h"
23ea11bd 26#include "../libpcsxcore/cdrom.h"
27#include "../libpcsxcore/cdriso.h"
6e921e1d 28#include "../libpcsxcore/cheat.h"
f422f444 29#include "../libpcsxcore/r3000a.h"
07c13dfd 30#include "../plugins/dfsound/out.h"
01394a7f 31#include "../plugins/dfsound/spu_config.h"
805fe9bc 32#include "../plugins/dfinput/externals.h"
c82f907a 33#include "cspace.h"
38c2028e 34#include "main.h"
b12cce74 35#include "menu.h"
38c2028e 36#include "plugin.h"
37#include "plugin_lib.h"
ace14ab3 38#include "arm_features.h"
38c2028e 39#include "revision.h"
919cac88 40
41#include <libretro.h>
42#include "libretro_core_options.h"
38c2028e 43
226a5691 44#ifdef USE_LIBRETRO_VFS
45#include <streams/file_stream_transforms.h>
46#endif
47
fc99395c 48#ifdef _3DS
fc99395c 49#include "3ds/3ds_utils.h"
fc99395c 50#endif
51
8136cafb
AP
52#define PORTS_NUMBER 8
53
a9bb0712 54#ifndef MIN
55#define MIN(a, b) ((a) < (b) ? (a) : (b))
56#endif
57
8741f7a2 58#ifndef MAX
59#define MAX(a, b) ((a) > (b) ? (a) : (b))
60#endif
61
8822aea7 62#define ISHEXDEC ((buf[cursor] >= '0') && (buf[cursor] <= '9')) || ((buf[cursor] >= 'a') && (buf[cursor] <= 'f')) || ((buf[cursor] >= 'A') && (buf[cursor] <= 'F'))
47624ecf 63
2df7fcac
BP
64#define INTERNAL_FPS_SAMPLE_PERIOD 64
65
726da67c 66//hack to prevent retroarch freezing when reseting in the menu but not while running with the hot key
76996fc3 67static int rebootemu = 0;
726da67c 68
38c2028e 69static retro_video_refresh_t video_cb;
70static retro_input_poll_t input_poll_cb;
71static retro_input_state_t input_state_cb;
72static retro_environment_t environ_cb;
73static retro_audio_sample_batch_t audio_batch_cb;
79f29e0a 74static retro_set_rumble_state_t rumble_cb;
b2aef321 75static struct retro_log_callback logging;
76static retro_log_printf_t log_cb;
38c2028e 77
8a60e610 78static unsigned msg_interface_version = 0;
79
38c2028e 80static void *vout_buf;
8822aea7 81static void *vout_buf_ptr;
70d56ca3 82static int vout_width, vout_height;
83static int vout_doffs_old, vout_fb_dirty;
1a6164a1 84static bool vout_can_dupe;
0e5a7b7d 85static bool duping_enable;
b580cc4f 86static bool found_bios;
2df7fcac
BP
87static bool display_internal_fps = false;
88static unsigned frame_count = 0;
6fbd15c8 89static bool libretro_supports_bitmasks = false;
b41cca85 90#ifdef GPU_PEOPS
c8108d88 91static int show_advanced_gpu_peops_settings = -1;
b41cca85 92#endif
93#ifdef GPU_UNAI
8822aea7 94static int show_advanced_gpu_unai_settings = -1;
b41cca85 95#endif
ce239f4a 96static int show_other_input_settings = -1;
399a33fe 97static float mouse_sensitivity = 1.0f;
70d56ca3 98
4ce3bd43
VP
99static unsigned previous_width = 0;
100static unsigned previous_height = 0;
101
38c2028e 102static int plugins_opened;
17f84149 103static int is_pal_mode;
38c2028e 104
f9f60dae
TK
105/* memory card data */
106extern char Mcd1Data[MCD_SIZE];
76e889bc 107extern char Mcd2Data[MCD_SIZE];
f9f60dae 108extern char McdDisable[2];
38c2028e 109
110/* PCSX ReARMed core calls and stuff */
8822aea7 111int in_type[8] = {
cada0a36 112 PSE_PAD_TYPE_NONE, PSE_PAD_TYPE_NONE,
113 PSE_PAD_TYPE_NONE, PSE_PAD_TYPE_NONE,
114 PSE_PAD_TYPE_NONE, PSE_PAD_TYPE_NONE,
115 PSE_PAD_TYPE_NONE, PSE_PAD_TYPE_NONE
116};
8822aea7 117int in_analog_left[8][2] = { { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 } };
118int in_analog_right[8][2] = { { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 }, { 127, 127 } };
3c0fb554 119unsigned short in_keystate[PORTS_NUMBER];
7dea987c 120int in_mouse[8][2];
29f3675b 121int multitap1 = 0;
122int multitap2 = 0;
4e477065 123int in_enable_vibration = 1;
38c2028e 124
e1442c48 125// NegCon adjustment parameters
126// > The NegCon 'twist' action is somewhat awkward when mapped
127// to a standard analog stick -> user should be able to tweak
128// response/deadzone for comfort
129// > When response is linear, 'additional' deadzone (set here)
130// may be left at zero, since this is normally handled via in-game
131// options menus
132// > When response is non-linear, deadzone should be set to match the
133// controller being used (otherwise precision may be lost)
134// > negcon_linearity:
135// - 1: Response is linear - recommended when using racing wheel
136// peripherals, not recommended for standard gamepads
137// - 2: Response is quadratic - optimal setting for gamepads
138// - 3: Response is cubic - enables precise fine control, but
139// difficult to use...
140#define NEGCON_RANGE 0x7FFF
141static int negcon_deadzone = 0;
142static int negcon_linearity = 1;
143
ace1989f
SK
144static bool axis_bounds_modifier;
145
805fe9bc 146/* PSX max resolution is 640x512, but with enhancement it's 1024x512 */
8822aea7 147#define VOUT_MAX_WIDTH 1024
805fe9bc 148#define VOUT_MAX_HEIGHT 512
149
646a63e4 150//Dummy functions
8822aea7 151bool retro_load_game_special(unsigned game_type, const struct retro_game_info *info, size_t num_info) { return false; }
152void retro_unload_game(void) {}
153static int vout_open(void) { return 0; }
154static void vout_close(void) {}
155static int snd_init(void) { return 0; }
156static void snd_finish(void) {}
157static int snd_busy(void) { return 0; }
646a63e4 158
6713b629 159#define GPU_PEOPS_ODD_EVEN_BIT (1 << 0)
160#define GPU_PEOPS_EXPAND_SCREEN_WIDTH (1 << 1)
161#define GPU_PEOPS_IGNORE_BRIGHTNESS (1 << 2)
162#define GPU_PEOPS_DISABLE_COORD_CHECK (1 << 3)
163#define GPU_PEOPS_LAZY_SCREEN_UPDATE (1 << 6)
164#define GPU_PEOPS_OLD_FRAME_SKIP (1 << 7)
165#define GPU_PEOPS_REPEATED_TRIANGLES (1 << 8)
166#define GPU_PEOPS_QUADS_WITH_TRIANGLES (1 << 9)
167#define GPU_PEOPS_FAKE_BUSY_STATE (1 << 10)
168
7df396ea
TK
169static void init_memcard(char *mcd_data)
170{
cada0a36 171 unsigned off = 0;
172 unsigned i;
173
174 memset(mcd_data, 0, MCD_SIZE);
175
176 mcd_data[off++] = 'M';
177 mcd_data[off++] = 'C';
178 off += 0x7d;
179 mcd_data[off++] = 0x0e;
180
8822aea7 181 for (i = 0; i < 15; i++)
182 {
cada0a36 183 mcd_data[off++] = 0xa0;
184 off += 0x07;
185 mcd_data[off++] = 0xff;
186 mcd_data[off++] = 0xff;
187 off += 0x75;
188 mcd_data[off++] = 0xa0;
189 }
190
8822aea7 191 for (i = 0; i < 20; i++)
192 {
cada0a36 193 mcd_data[off++] = 0xff;
194 mcd_data[off++] = 0xff;
195 mcd_data[off++] = 0xff;
196 mcd_data[off++] = 0xff;
197 off += 0x04;
198 mcd_data[off++] = 0xff;
199 mcd_data[off++] = 0xff;
200 off += 0x76;
201 }
7df396ea
TK
202}
203
49c61096 204static void set_vout_fb()
38c2028e 205{
8822aea7 206 struct retro_framebuffer fb = { 0 };
6558949c 207
8822aea7 208 fb.width = vout_width;
209 fb.height = vout_height;
210 fb.access_flags = RETRO_MEMORY_ACCESS_WRITE;
6558949c 211
cada0a36 212 if (environ_cb(RETRO_ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER, &fb) && fb.format == RETRO_PIXEL_FORMAT_RGB565)
8822aea7 213 vout_buf_ptr = (uint16_t *)fb.data;
cada0a36 214 else
215 vout_buf_ptr = vout_buf;
49c61096 216}
6558949c 217
49c61096
G
218static void vout_set_mode(int w, int h, int raw_w, int raw_h, int bpp)
219{
cada0a36 220 vout_width = w;
221 vout_height = h;
49c61096 222
cada0a36 223 if (previous_width != vout_width || previous_height != vout_height)
224 {
225 previous_width = vout_width;
226 previous_height = vout_height;
4ce3bd43 227
cada0a36 228 struct retro_system_av_info info;
229 retro_get_system_av_info(&info);
230 environ_cb(RETRO_ENVIRONMENT_SET_GEOMETRY, &info.geometry);
231 }
d3c41e5e 232
cada0a36 233 set_vout_fb();
38c2028e 234}
235
cc4f9b70 236#ifndef FRONTEND_SUPPORTS_RGB565
9c59f120 237static void convert(void *buf, size_t bytes)
38c2028e 238{
cada0a36 239 unsigned int i, v, *p = buf;
38c2028e 240
8822aea7 241 for (i = 0; i < bytes / 4; i++)
242 {
cada0a36 243 v = p[i];
244 p[i] = (v & 0x001f001f) | ((v >> 1) & 0x7fe07fe0);
245 }
38c2028e 246}
46aa5b98 247#endif
38c2028e 248
fa56d360 249static void vout_flip(const void *vram, int stride, int bgr24, int w, int h)
38c2028e 250{
cada0a36 251 unsigned short *dest = vout_buf_ptr;
252 const unsigned short *src = vram;
253 int dstride = vout_width, h1 = h;
254 int doffs;
255
8822aea7 256 if (vram == NULL)
257 {
cada0a36 258 // blanking
259 memset(vout_buf_ptr, 0, dstride * h * 2);
260 goto out;
261 }
262
263 doffs = (vout_height - h) * dstride;
264 doffs += (dstride - w) / 2 & ~1;
8822aea7 265 if (doffs != vout_doffs_old)
266 {
cada0a36 267 // clear borders
268 memset(vout_buf_ptr, 0, dstride * h * 2);
269 vout_doffs_old = doffs;
270 }
271 dest += doffs;
272
273 if (bgr24)
274 {
275 // XXX: could we switch to RETRO_PIXEL_FORMAT_XRGB8888 here?
276 for (; h1-- > 0; dest += dstride, src += stride)
277 {
278 bgr888_to_rgb565(dest, src, w * 3);
279 }
280 }
281 else
282 {
283 for (; h1-- > 0; dest += dstride, src += stride)
284 {
285 bgr555_to_rgb565(dest, src, w * 2);
286 }
287 }
38c2028e 288
fa56d360 289out:
46aa5b98 290#ifndef FRONTEND_SUPPORTS_RGB565
cada0a36 291 convert(vout_buf_ptr, vout_width * vout_height * 2);
46aa5b98 292#endif
cada0a36 293 vout_fb_dirty = 1;
294 pl_rearmed_cbs.flip_cnt++;
38c2028e 295}
296
fc99395c 297#ifdef _3DS
298typedef struct
299{
8822aea7 300 void *buffer;
fc99395c 301 uint32_t target_map;
302 size_t size;
303 enum psxMapTag tag;
8822aea7 304} psx_map_t;
fc99395c 305
306psx_map_t custom_psx_maps[] = {
8822aea7 307 { NULL, 0x13000000, 0x210000, MAP_TAG_RAM }, // 0x80000000
308 { NULL, 0x12800000, 0x010000, MAP_TAG_OTHER }, // 0x1f800000
309 { NULL, 0x12c00000, 0x080000, MAP_TAG_OTHER }, // 0x1fc00000
310 { NULL, 0x11000000, 0x800000, MAP_TAG_LUTS }, // 0x08000000
311 { NULL, 0x12000000, 0x200000, MAP_TAG_VRAM }, // 0x00000000
fc99395c 312};
313
8822aea7 314void *pl_3ds_mmap(unsigned long addr, size_t size, int is_fixed,
315 enum psxMapTag tag)
fc99395c 316{
317 (void)is_fixed;
318 (void)addr;
319
f72db18e 320 if (__ctr_svchax)
fc99395c 321 {
8822aea7 322 psx_map_t *custom_map = custom_psx_maps;
fc99395c 323
324 for (; custom_map->size; custom_map++)
325 {
326 if ((custom_map->size == size) && (custom_map->tag == tag))
327 {
328 uint32_t ptr_aligned, tmp;
329
330 custom_map->buffer = malloc(size + 0x1000);
331 ptr_aligned = (((u32)custom_map->buffer) + 0xFFF) & ~0xFFF;
332
8822aea7 333 if (svcControlMemory(&tmp, (void *)custom_map->target_map, (void *)ptr_aligned, size, MEMOP_MAP, 0x3) < 0)
fc99395c 334 {
335 SysPrintf("could not map memory @0x%08X\n", custom_map->target_map);
336 exit(1);
337 }
338
8822aea7 339 return (void *)custom_map->target_map;
fc99395c 340 }
341 }
342 }
343
344 return malloc(size);
345}
346
347void pl_3ds_munmap(void *ptr, size_t size, enum psxMapTag tag)
cc56203b 348{
fc99395c 349 (void)tag;
350
f72db18e 351 if (__ctr_svchax)
fc99395c 352 {
8822aea7 353 psx_map_t *custom_map = custom_psx_maps;
fc99395c 354
355 for (; custom_map->size; custom_map++)
356 {
357 if ((custom_map->target_map == (uint32_t)ptr))
358 {
359 uint32_t ptr_aligned, tmp;
360
361 ptr_aligned = (((u32)custom_map->buffer) + 0xFFF) & ~0xFFF;
362
8822aea7 363 svcControlMemory(&tmp, (void *)custom_map->target_map, (void *)ptr_aligned, size, MEMOP_UNMAP, 0x3);
fc99395c 364
365 free(custom_map->buffer);
366 custom_map->buffer = NULL;
367 return;
368 }
369 }
370 }
371
372 free(ptr);
373}
374#endif
375
1a5fd794 376#ifdef VITA
377typedef struct
378{
8822aea7 379 void *buffer;
1a5fd794 380 uint32_t target_map;
381 size_t size;
382 enum psxMapTag tag;
8822aea7 383} psx_map_t;
1a5fd794 384
8822aea7 385void *addr = NULL;
73081f23 386
1a5fd794 387psx_map_t custom_psx_maps[] = {
8822aea7 388 { NULL, NULL, 0x210000, MAP_TAG_RAM }, // 0x80000000
389 { NULL, NULL, 0x010000, MAP_TAG_OTHER }, // 0x1f800000
390 { NULL, NULL, 0x080000, MAP_TAG_OTHER }, // 0x1fc00000
391 { NULL, NULL, 0x800000, MAP_TAG_LUTS }, // 0x08000000
392 { NULL, NULL, 0x200000, MAP_TAG_VRAM }, // 0x00000000
1a5fd794 393};
394
8822aea7 395int init_vita_mmap()
396{
cada0a36 397 int n;
8822aea7 398 void *tmpaddr;
399 addr = malloc(64 * 1024 * 1024);
400 if (addr == NULL)
cada0a36 401 return -1;
8822aea7 402 tmpaddr = ((u32)(addr + 0xFFFFFF)) & ~0xFFFFFF;
403 custom_psx_maps[0].buffer = tmpaddr + 0x2000000;
404 custom_psx_maps[1].buffer = tmpaddr + 0x1800000;
405 custom_psx_maps[2].buffer = tmpaddr + 0x1c00000;
406 custom_psx_maps[3].buffer = tmpaddr + 0x0000000;
407 custom_psx_maps[4].buffer = tmpaddr + 0x1000000;
73081f23 408#if 0
cada0a36 409 for(n = 0; n < 5; n++){
410 sceClibPrintf("addr reserved %x\n",custom_psx_maps[n].buffer);
411 }
73081f23 412#endif
cada0a36 413 return 0;
73081f23
FJGG
414}
415
8822aea7 416void deinit_vita_mmap()
417{
cada0a36 418 free(addr);
73081f23
FJGG
419}
420
8822aea7 421void *pl_vita_mmap(unsigned long addr, size_t size, int is_fixed,
422 enum psxMapTag tag)
1a5fd794 423{
424 (void)is_fixed;
425 (void)addr;
426
8822aea7 427 psx_map_t *custom_map = custom_psx_maps;
1a5fd794 428
cada0a36 429 for (; custom_map->size; custom_map++)
430 {
431 if ((custom_map->size == size) && (custom_map->tag == tag))
432 {
433 return custom_map->buffer;
434 }
435 }
1a5fd794 436
437 return malloc(size);
438}
439
440void pl_vita_munmap(void *ptr, size_t size, enum psxMapTag tag)
441{
442 (void)tag;
443
8822aea7 444 psx_map_t *custom_map = custom_psx_maps;
1a5fd794 445
cada0a36 446 for (; custom_map->size; custom_map++)
447 {
448 if ((custom_map->buffer == ptr))
449 {
450 return;
451 }
452 }
1a5fd794 453
454 free(ptr);
455}
456#endif
457
fc99395c 458static void *pl_mmap(unsigned int size)
ace14ab3 459{
cada0a36 460 return psxMap(0, size, 0, MAP_TAG_VRAM);
cc56203b 461}
462
463static void pl_munmap(void *ptr, unsigned int size)
464{
cada0a36 465 psxUnmap(ptr, size, MAP_TAG_VRAM);
cc56203b 466}
467
38c2028e 468struct rearmed_cbs pl_rearmed_cbs = {
8822aea7 469 .pl_vout_open = vout_open,
cada0a36 470 .pl_vout_set_mode = vout_set_mode,
8822aea7 471 .pl_vout_flip = vout_flip,
472 .pl_vout_close = vout_close,
473 .mmap = pl_mmap,
474 .munmap = pl_munmap,
cada0a36 475 /* from psxcounters */
8822aea7 476 .gpu_hcnt = &hSyncCount,
477 .gpu_frame_count = &frame_counter,
38c2028e 478};
479
480void pl_frame_limit(void)
481{
cada0a36 482 /* called once per frame, make psxCpu->Execute() above return */
483 stop = 1;
38c2028e 484}
485
486void pl_timing_prepare(int is_pal)
487{
cada0a36 488 is_pal_mode = is_pal;
38c2028e 489}
490
d71c7095 491void plat_trigger_vibrate(int pad, int low, int high)
38c2028e 492{
cada0a36 493 if (!rumble_cb)
494 return;
79f29e0a 495
cada0a36 496 if (in_enable_vibration)
497 {
498 rumble_cb(pad, RETRO_RUMBLE_STRONG, high << 8);
499 rumble_cb(pad, RETRO_RUMBLE_WEAK, low ? 0xffff : 0x0);
500 }
38c2028e 501}
502
e4c83ca6 503void pl_update_gun(int *xn, int *yn, int *xres, int *yres, int *in)
38c2028e 504{
505}
506
507/* sound calls */
07c13dfd 508static void snd_feed(void *buf, int bytes)
38c2028e 509{
cada0a36 510 if (audio_batch_cb != NULL)
511 audio_batch_cb(buf, bytes / 4);
38c2028e 512}
513
07c13dfd 514void out_register_libretro(struct out_driver *drv)
515{
8822aea7 516 drv->name = "libretro";
517 drv->init = snd_init;
cada0a36 518 drv->finish = snd_finish;
8822aea7 519 drv->busy = snd_busy;
520 drv->feed = snd_feed;
07c13dfd 521}
522
31131233 523#define RETRO_DEVICE_PSE_STANDARD RETRO_DEVICE_SUBCLASS(RETRO_DEVICE_JOYPAD, 0)
524#define RETRO_DEVICE_PSE_ANALOG RETRO_DEVICE_SUBCLASS(RETRO_DEVICE_ANALOG, 0)
525#define RETRO_DEVICE_PSE_DUALSHOCK RETRO_DEVICE_SUBCLASS(RETRO_DEVICE_ANALOG, 1)
526#define RETRO_DEVICE_PSE_NEGCON RETRO_DEVICE_SUBCLASS(RETRO_DEVICE_ANALOG, 2)
527#define RETRO_DEVICE_PSE_GUNCON RETRO_DEVICE_SUBCLASS(RETRO_DEVICE_LIGHTGUN, 0)
528#define RETRO_DEVICE_PSE_MOUSE RETRO_DEVICE_SUBCLASS(RETRO_DEVICE_MOUSE, 0)
529
530static char *get_pse_pad_label[] = {
531 "none", "mouse", "negcon", "konami gun", "standard", "analog", "guncon", "dualshock"
532};
533
534static const struct retro_controller_description pads[7] =
535{
536 { "standard", RETRO_DEVICE_JOYPAD },
537 { "analog", RETRO_DEVICE_PSE_ANALOG },
538 { "dualshock", RETRO_DEVICE_PSE_DUALSHOCK },
539 { "negcon", RETRO_DEVICE_PSE_NEGCON },
540 { "guncon", RETRO_DEVICE_PSE_GUNCON },
541 { "mouse", RETRO_DEVICE_PSE_MOUSE },
542 { NULL, 0 },
543};
544
545static const struct retro_controller_info ports[9] =
546{
547 { pads, 7 },
548 { pads, 7 },
549 { pads, 7 },
550 { pads, 7 },
551 { pads, 7 },
552 { pads, 7 },
553 { pads, 7 },
554 { pads, 7 },
555 { NULL, 0 },
556};
557
38c2028e 558/* libretro */
e268a47e 559void retro_set_environment(retro_environment_t cb)
560{
226a5691 561#ifdef USE_LIBRETRO_VFS
562 struct retro_vfs_interface_info vfs_iface_info;
563#endif
564
e268a47e 565 environ_cb = cb;
566
919cac88 567 if (cb(RETRO_ENVIRONMENT_GET_LOG_INTERFACE, &logging))
568 log_cb = logging.log;
569
31131233 570 environ_cb(RETRO_ENVIRONMENT_SET_CONTROLLER_INFO, (void*)ports);
919cac88 571 libretro_set_core_options(environ_cb);
226a5691 572
573#ifdef USE_LIBRETRO_VFS
574 vfs_iface_info.required_interface_version = 1;
575 vfs_iface_info.iface = NULL;
576 if (environ_cb(RETRO_ENVIRONMENT_GET_VFS_INTERFACE, &vfs_iface_info))
577 filestream_vfs_init(&vfs_iface_info);
578#endif
e268a47e 579}
580
38c2028e 581void retro_set_video_refresh(retro_video_refresh_t cb) { video_cb = cb; }
582void retro_set_audio_sample(retro_audio_sample_t cb) { (void)cb; }
583void retro_set_audio_sample_batch(retro_audio_sample_batch_t cb) { audio_batch_cb = cb; }
584void retro_set_input_poll(retro_input_poll_t cb) { input_poll_cb = cb; }
585void retro_set_input_state(retro_input_state_t cb) { input_state_cb = cb; }
586
587unsigned retro_api_version(void)
588{
cada0a36 589 return RETRO_API_VERSION;
38c2028e 590}
591
31131233 592static void update_multitap(void)
30d43b8a 593{
6cb1dcb1 594 struct retro_variable var = { 0 };
595
596 multitap1 = 0;
597 multitap2 = 0;
cada0a36 598
599 var.value = NULL;
f6575013 600 var.key = "pcsx_rearmed_multitap";
cada0a36 601 if (environ_cb && (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value))
602 {
6cb1dcb1 603 if (strcmp(var.value, "port 1") == 0)
cada0a36 604 multitap1 = 1;
6cb1dcb1 605 else if (strcmp(var.value, "port 2") == 0)
cada0a36 606 multitap2 = 1;
6cb1dcb1 607 else if (strcmp(var.value, "ports 1 and 2") == 0)
f6575013 608 {
609 multitap1 = 1;
610 multitap2 = 1;
611 }
cada0a36 612 }
30d43b8a
AP
613}
614
38c2028e 615void retro_set_controller_port_device(unsigned port, unsigned device)
616{
cada0a36 617 if (port >= PORTS_NUMBER)
618 return;
8c047f6f 619
31131233 620 switch (device)
621 {
622 case RETRO_DEVICE_JOYPAD:
623 case RETRO_DEVICE_PSE_STANDARD:
624 in_type[port] = PSE_PAD_TYPE_STANDARD;
625 break;
626 case RETRO_DEVICE_PSE_ANALOG:
627 in_type[port] = PSE_PAD_TYPE_ANALOGJOY;
628 break;
629 case RETRO_DEVICE_PSE_DUALSHOCK:
630 in_type[port] = PSE_PAD_TYPE_ANALOGPAD;
631 break;
632 case RETRO_DEVICE_PSE_MOUSE:
633 in_type[port] = PSE_PAD_TYPE_MOUSE;
634 break;
635 case RETRO_DEVICE_PSE_NEGCON:
636 in_type[port] = PSE_PAD_TYPE_NEGCON;
637 break;
638 case RETRO_DEVICE_PSE_GUNCON:
639 in_type[port] = PSE_PAD_TYPE_GUNCON;
640 break;
641 case RETRO_DEVICE_NONE:
642 default:
643 in_type[port] = PSE_PAD_TYPE_NONE;
644 break;
645 }
646
647 SysPrintf("port: %u device: %s\n", port + 1, get_pse_pad_label[in_type[port]]);
38c2028e 648}
649
650void retro_get_system_info(struct retro_system_info *info)
651{
8fc5171a
GR
652#ifndef GIT_VERSION
653#define GIT_VERSION ""
654#endif
cada0a36 655 memset(info, 0, sizeof(*info));
8822aea7 656 info->library_name = "PCSX-ReARMed";
657 info->library_version = "r22" GIT_VERSION;
cada0a36 658 info->valid_extensions = "bin|cue|img|mdf|pbp|toc|cbn|m3u|chd";
8822aea7 659 info->need_fullpath = true;
38c2028e 660}
661
662void retro_get_system_av_info(struct retro_system_av_info *info)
663{
8822aea7 664 unsigned geom_height = vout_height > 0 ? vout_height : 240;
665 unsigned geom_width = vout_width > 0 ? vout_width : 320;
d3c41e5e 666
cada0a36 667 memset(info, 0, sizeof(*info));
8822aea7 668 info->timing.fps = is_pal_mode ? 50.0 : 60.0;
669 info->timing.sample_rate = 44100.0;
670 info->geometry.base_width = geom_width;
671 info->geometry.base_height = geom_height;
672 info->geometry.max_width = VOUT_MAX_WIDTH;
673 info->geometry.max_height = VOUT_MAX_HEIGHT;
674 info->geometry.aspect_ratio = 4.0 / 3.0;
38c2028e 675}
676
6e921e1d 677/* savestates */
ace14ab3 678size_t retro_serialize_size(void)
679{
cada0a36 680 // it's currently 4380651-4397047 bytes,
681 // but have some reserved for future
682 return 0x440000;
6e921e1d 683}
684
8822aea7 685struct save_fp
686{
cada0a36 687 char *buf;
688 size_t pos;
689 int is_write;
6e921e1d 690};
691
692static void *save_open(const char *name, const char *mode)
693{
cada0a36 694 struct save_fp *fp;
6e921e1d 695
cada0a36 696 if (name == NULL || mode == NULL)
697 return NULL;
6e921e1d 698
cada0a36 699 fp = malloc(sizeof(*fp));
700 if (fp == NULL)
701 return NULL;
6e921e1d 702
cada0a36 703 fp->buf = (char *)name;
704 fp->pos = 0;
705 fp->is_write = (mode[0] == 'w' || mode[1] == 'w');
6e921e1d 706
cada0a36 707 return fp;
6e921e1d 708}
709
710static int save_read(void *file, void *buf, u32 len)
711{
cada0a36 712 struct save_fp *fp = file;
713 if (fp == NULL || buf == NULL)
714 return -1;
6e921e1d 715
cada0a36 716 memcpy(buf, fp->buf + fp->pos, len);
717 fp->pos += len;
718 return len;
6e921e1d 719}
720
721static int save_write(void *file, const void *buf, u32 len)
722{
cada0a36 723 struct save_fp *fp = file;
724 if (fp == NULL || buf == NULL)
725 return -1;
6e921e1d 726
cada0a36 727 memcpy(fp->buf + fp->pos, buf, len);
728 fp->pos += len;
729 return len;
6e921e1d 730}
731
732static long save_seek(void *file, long offs, int whence)
733{
cada0a36 734 struct save_fp *fp = file;
735 if (fp == NULL)
736 return -1;
737
8822aea7 738 switch (whence)
739 {
cada0a36 740 case SEEK_CUR:
741 fp->pos += offs;
742 return fp->pos;
743 case SEEK_SET:
744 fp->pos = offs;
745 return fp->pos;
746 default:
747 return -1;
748 }
6e921e1d 749}
750
751static void save_close(void *file)
752{
cada0a36 753 struct save_fp *fp = file;
754 size_t r_size = retro_serialize_size();
755 if (fp == NULL)
756 return;
6e921e1d 757
cada0a36 758 if (fp->pos > r_size)
759 SysPrintf("ERROR: save buffer overflow detected\n");
760 else if (fp->is_write && fp->pos < r_size)
761 // make sure we don't save trash in leftover space
762 memset(fp->buf + fp->pos, 0, r_size - fp->pos);
763 free(fp);
38c2028e 764}
765
766bool retro_serialize(void *data, size_t size)
ace14ab3 767{
cada0a36 768 int ret = SaveState(data);
769 return ret == 0 ? true : false;
38c2028e 770}
771
772bool retro_unserialize(const void *data, size_t size)
773{
cada0a36 774 int ret = LoadState(data);
775 return ret == 0 ? true : false;
38c2028e 776}
777
23ea11bd 778/* cheats */
38c2028e 779void retro_cheat_reset(void)
780{
cada0a36 781 ClearAllCheats();
38c2028e 782}
783
784void retro_cheat_set(unsigned index, bool enabled, const char *code)
785{
cada0a36 786 char buf[256];
787 int ret;
788
789 // cheat funcs are destructive, need a copy..
790 strncpy(buf, code, sizeof(buf));
791 buf[sizeof(buf) - 1] = 0;
792
793 //Prepare buffered cheat for PCSX's AddCheat fucntion.
8822aea7 794 int cursor = 0;
795 int nonhexdec = 0;
796 while (buf[cursor])
797 {
798 if (!(ISHEXDEC))
799 {
800 if (++nonhexdec % 2)
801 {
802 buf[cursor] = ' ';
803 }
804 else
805 {
806 buf[cursor] = '\n';
cada0a36 807 }
808 }
809 cursor++;
810 }
6e921e1d 811
cada0a36 812 if (index < NumCheats)
813 ret = EditCheat(index, "", buf);
814 else
815 ret = AddCheat("", buf);
6e921e1d 816
cada0a36 817 if (ret != 0)
818 SysPrintf("Failed to set cheat %#u\n", index);
819 else if (index < NumCheats)
820 Cheats[index].Enabled = enabled;
38c2028e 821}
822
144493e8 823// just in case, maybe a win-rt port in the future?
824#ifdef _WIN32
825#define SLASH '\\'
826#else
827#define SLASH '/'
828#endif
829
830#ifndef PATH_MAX
8822aea7 831#define PATH_MAX 4096
144493e8 832#endif
833
23ea11bd 834/* multidisk support */
144493e8 835static unsigned int disk_initial_index;
836static char disk_initial_path[PATH_MAX];
23ea11bd 837static bool disk_ejected;
838static unsigned int disk_current_index;
51ba7408 839static unsigned int disk_count;
8822aea7 840static struct disks_state
841{
cada0a36 842 char *fname;
843 char *flabel;
844 int internal_index; // for multidisk eboots
23ea11bd 845} disks[8];
846
144493e8 847static void get_disk_label(char *disk_label, const char *disk_path, size_t len)
848{
cada0a36 849 const char *base = NULL;
144493e8 850
cada0a36 851 if (!disk_path || (*disk_path == '\0'))
852 return;
144493e8 853
cada0a36 854 base = strrchr(disk_path, SLASH);
855 if (!base)
856 base = disk_path;
144493e8 857
cada0a36 858 if (*base == SLASH)
859 base++;
144493e8 860
cada0a36 861 strncpy(disk_label, base, len - 1);
862 disk_label[len - 1] = '\0';
144493e8 863
cada0a36 864 char *ext = strrchr(disk_label, '.');
865 if (ext)
866 *ext = '\0';
144493e8 867}
868
869static void disk_init(void)
870{
cada0a36 871 size_t i;
144493e8 872
cada0a36 873 disk_ejected = false;
874 disk_current_index = 0;
875 disk_count = 0;
144493e8 876
8822aea7 877 for (i = 0; i < sizeof(disks) / sizeof(disks[0]); i++)
878 {
879 if (disks[i].fname != NULL)
880 {
cada0a36 881 free(disks[i].fname);
882 disks[i].fname = NULL;
883 }
8822aea7 884 if (disks[i].flabel != NULL)
885 {
cada0a36 886 free(disks[i].flabel);
887 disks[i].flabel = NULL;
888 }
889 disks[i].internal_index = 0;
890 }
144493e8 891}
892
23ea11bd 893static bool disk_set_eject_state(bool ejected)
894{
cada0a36 895 // weird PCSX API..
896 SetCdOpenCaseTime(ejected ? -1 : (time(NULL) + 2));
897 LidInterrupt();
23ea11bd 898
cada0a36 899 disk_ejected = ejected;
900 return true;
23ea11bd 901}
902
903static bool disk_get_eject_state(void)
904{
cada0a36 905 /* can't be controlled by emulated software */
906 return disk_ejected;
23ea11bd 907}
908
909static unsigned int disk_get_image_index(void)
910{
cada0a36 911 return disk_current_index;
23ea11bd 912}
913
914static bool disk_set_image_index(unsigned int index)
915{
cada0a36 916 if (index >= sizeof(disks) / sizeof(disks[0]))
917 return false;
23ea11bd 918
cada0a36 919 CdromId[0] = '\0';
920 CdromLabel[0] = '\0';
23ea11bd 921
8822aea7 922 if (disks[index].fname == NULL)
923 {
cada0a36 924 SysPrintf("missing disk #%u\n", index);
925 CDR_shutdown();
23ea11bd 926
cada0a36 927 // RetroArch specifies "no disk" with index == count,
928 // so don't fail here..
929 disk_current_index = index;
930 return true;
931 }
23ea11bd 932
cada0a36 933 SysPrintf("switching to disk %u: \"%s\" #%d\n", index,
8822aea7 934 disks[index].fname, disks[index].internal_index);
23ea11bd 935
cada0a36 936 cdrIsoMultidiskSelect = disks[index].internal_index;
937 set_cd_image(disks[index].fname);
8822aea7 938 if (ReloadCdromPlugin() < 0)
939 {
cada0a36 940 SysPrintf("failed to load cdr plugin\n");
941 return false;
942 }
8822aea7 943 if (CDR_open() < 0)
944 {
cada0a36 945 SysPrintf("failed to open cdr plugin\n");
946 return false;
947 }
23ea11bd 948
8822aea7 949 if (!disk_ejected)
950 {
cada0a36 951 SetCdOpenCaseTime(time(NULL) + 2);
952 LidInterrupt();
953 }
23ea11bd 954
cada0a36 955 disk_current_index = index;
956 return true;
23ea11bd 957}
958
959static unsigned int disk_get_num_images(void)
960{
cada0a36 961 return disk_count;
23ea11bd 962}
963
964static bool disk_replace_image_index(unsigned index,
8822aea7 965 const struct retro_game_info *info)
23ea11bd 966{
cada0a36 967 char *old_fname = NULL;
968 char *old_flabel = NULL;
969 bool ret = true;
23ea11bd 970
cada0a36 971 if (index >= sizeof(disks) / sizeof(disks[0]))
972 return false;
23ea11bd 973
cada0a36 974 old_fname = disks[index].fname;
975 old_flabel = disks[index].flabel;
144493e8 976
cada0a36 977 disks[index].fname = NULL;
978 disks[index].flabel = NULL;
979 disks[index].internal_index = 0;
23ea11bd 980
8822aea7 981 if (info != NULL)
982 {
cada0a36 983 char disk_label[PATH_MAX];
984 disk_label[0] = '\0';
144493e8 985
cada0a36 986 disks[index].fname = strdup(info->path);
144493e8 987
cada0a36 988 get_disk_label(disk_label, info->path, PATH_MAX);
989 disks[index].flabel = strdup(disk_label);
144493e8 990
cada0a36 991 if (index == disk_current_index)
992 ret = disk_set_image_index(index);
993 }
23ea11bd 994
cada0a36 995 if (old_fname != NULL)
996 free(old_fname);
23ea11bd 997
cada0a36 998 if (old_flabel != NULL)
999 free(old_flabel);
144493e8 1000
cada0a36 1001 return ret;
23ea11bd 1002}
1003
1004static bool disk_add_image_index(void)
1005{
cada0a36 1006 if (disk_count >= 8)
1007 return false;
51ba7408 1008
cada0a36 1009 disk_count++;
1010 return true;
23ea11bd 1011}
1012
144493e8 1013static bool disk_set_initial_image(unsigned index, const char *path)
1014{
cada0a36 1015 if (index >= sizeof(disks) / sizeof(disks[0]))
1016 return false;
144493e8 1017
cada0a36 1018 if (!path || (*path == '\0'))
1019 return false;
144493e8 1020
cada0a36 1021 disk_initial_index = index;
144493e8 1022
cada0a36 1023 strncpy(disk_initial_path, path, sizeof(disk_initial_path) - 1);
1024 disk_initial_path[sizeof(disk_initial_path) - 1] = '\0';
144493e8 1025
cada0a36 1026 return true;
144493e8 1027}
1028
1029static bool disk_get_image_path(unsigned index, char *path, size_t len)
1030{
cada0a36 1031 const char *fname = NULL;
144493e8 1032
cada0a36 1033 if (len < 1)
1034 return false;
144493e8 1035
cada0a36 1036 if (index >= sizeof(disks) / sizeof(disks[0]))
1037 return false;
144493e8 1038
cada0a36 1039 fname = disks[index].fname;
144493e8 1040
cada0a36 1041 if (!fname || (*fname == '\0'))
1042 return false;
144493e8 1043
cada0a36 1044 strncpy(path, fname, len - 1);
1045 path[len - 1] = '\0';
144493e8 1046
cada0a36 1047 return true;
144493e8 1048}
1049
1050static bool disk_get_image_label(unsigned index, char *label, size_t len)
1051{
cada0a36 1052 const char *flabel = NULL;
144493e8 1053
cada0a36 1054 if (len < 1)
1055 return false;
144493e8 1056
cada0a36 1057 if (index >= sizeof(disks) / sizeof(disks[0]))
1058 return false;
144493e8 1059
cada0a36 1060 flabel = disks[index].flabel;
144493e8 1061
cada0a36 1062 if (!flabel || (*flabel == '\0'))
1063 return false;
144493e8 1064
cada0a36 1065 strncpy(label, flabel, len - 1);
1066 label[len - 1] = '\0';
144493e8 1067
cada0a36 1068 return true;
144493e8 1069}
1070
23ea11bd 1071static struct retro_disk_control_callback disk_control = {
8822aea7 1072 .set_eject_state = disk_set_eject_state,
1073 .get_eject_state = disk_get_eject_state,
1074 .get_image_index = disk_get_image_index,
1075 .set_image_index = disk_set_image_index,
1076 .get_num_images = disk_get_num_images,
cada0a36 1077 .replace_image_index = disk_replace_image_index,
8822aea7 1078 .add_image_index = disk_add_image_index,
23ea11bd 1079};
1080
144493e8 1081static struct retro_disk_control_ext_callback disk_control_ext = {
8822aea7 1082 .set_eject_state = disk_set_eject_state,
1083 .get_eject_state = disk_get_eject_state,
1084 .get_image_index = disk_get_image_index,
1085 .set_image_index = disk_set_image_index,
1086 .get_num_images = disk_get_num_images,
cada0a36 1087 .replace_image_index = disk_replace_image_index,
8822aea7 1088 .add_image_index = disk_add_image_index,
1089 .set_initial_image = disk_set_initial_image,
1090 .get_image_path = disk_get_image_path,
1091 .get_image_label = disk_get_image_label,
144493e8 1092};
9096ba88 1093
e6f1e7f7 1094static char base_dir[1024];
9fba39a9
T
1095
1096static bool read_m3u(const char *file)
1097{
cada0a36 1098 char line[1024];
1099 char name[PATH_MAX];
226a5691 1100 FILE *fp = fopen(file, "r");
1101 if (!fp)
cada0a36 1102 return false;
1103
d710d713 1104 while (fgets(line, sizeof(line), fp) && disk_count < sizeof(disks) / sizeof(disks[0]))
8822aea7 1105 {
cada0a36 1106 if (line[0] == '#')
1107 continue;
1108 char *carrige_return = strchr(line, '\r');
1109 if (carrige_return)
1110 *carrige_return = '\0';
1111 char *newline = strchr(line, '\n');
1112 if (newline)
1113 *newline = '\0';
1114
1115 if (line[0] != '\0')
1116 {
1117 char disk_label[PATH_MAX];
1118 disk_label[0] = '\0';
144493e8 1119
cada0a36 1120 snprintf(name, sizeof(name), "%s%c%s", base_dir, SLASH, line);
1121 disks[disk_count].fname = strdup(name);
144493e8 1122
cada0a36 1123 get_disk_label(disk_label, name, PATH_MAX);
1124 disks[disk_count].flabel = strdup(disk_label);
144493e8 1125
cada0a36 1126 disk_count++;
1127 }
1128 }
9fba39a9 1129
226a5691 1130 fclose(fp);
cada0a36 1131 return (disk_count != 0);
9fba39a9
T
1132}
1133
1134static void extract_directory(char *buf, const char *path, size_t size)
1135{
1136 char *base;
1137 strncpy(buf, path, size - 1);
1138 buf[size - 1] = '\0';
1139
1140 base = strrchr(buf, '/');
1141 if (!base)
1142 base = strrchr(buf, '\\');
1143
1144 if (base)
1145 *base = '\0';
1146 else
1147 {
1148 buf[0] = '.';
1149 buf[1] = '\0';
1150 }
1151}
1152
003cfc63 1153#if defined(__QNX__) || defined(_WIN32)
41294f4d 1154/* Blackberry QNX doesn't have strcasestr */
1155
1156/*
1157 * Find the first occurrence of find in s, ignore case.
1158 */
1159char *
8822aea7 1160strcasestr(const char *s, const char *find)
41294f4d 1161{
cada0a36 1162 char c, sc;
1163 size_t len;
1164
8822aea7 1165 if ((c = *find++) != 0)
1166 {
cada0a36 1167 c = tolower((unsigned char)c);
1168 len = strlen(find);
8822aea7 1169 do
1170 {
1171 do
1172 {
cada0a36 1173 if ((sc = *s++) == 0)
1174 return (NULL);
1175 } while ((char)tolower((unsigned char)sc) != c);
1176 } while (strncasecmp(s, find, len) != 0);
1177 s--;
1178 }
1179 return ((char *)s);
41294f4d 1180}
1181#endif
1182
b5926d18 1183static void set_retro_memmap(void)
1184{
5c00ea32 1185#ifndef NDEBUG
cada0a36 1186 struct retro_memory_map retromap = { 0 };
8822aea7 1187 struct retro_memory_descriptor mmap = {
cada0a36 1188 0, psxM, 0, 0, 0, 0, 0x200000
1189 };
b5926d18 1190
cada0a36 1191 retromap.descriptors = &mmap;
1192 retromap.num_descriptors = 1;
b5926d18 1193
cada0a36 1194 environ_cb(RETRO_ENVIRONMENT_SET_MEMORY_MAPS, &retromap);
5c00ea32 1195#endif
b5926d18 1196}
1197
570b9365 1198static void update_variables(bool in_flight);
38c2028e 1199bool retro_load_game(const struct retro_game_info *info)
1200{
cada0a36 1201 size_t i;
1202 unsigned int cd_index = 0;
1203 bool is_m3u = (strcasestr(info->path, ".m3u") != NULL);
9fba39a9 1204
e3f8313f 1205 struct retro_input_descriptor desc[] = {
8822aea7 1206#define JOYP(port) \
1207 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_LEFT, "D-Pad Left" }, \
1208 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_UP, "D-Pad Up" }, \
1209 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_DOWN, "D-Pad Down" }, \
1210 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_RIGHT, "D-Pad Right" }, \
1211 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_B, "Cross" }, \
1212 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_A, "Circle" }, \
1213 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_X, "Triangle" }, \
1214 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_Y, "Square" }, \
1215 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_L, "L1" }, \
1216 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_L2, "L2" }, \
1217 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_L3, "L3" }, \
1218 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_R, "R1" }, \
1219 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_R2, "R2" }, \
1220 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_R3, "R3" }, \
1221 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_SELECT, "Select" }, \
1222 { port, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_START, "Start" }, \
1223 { port, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_LEFT, RETRO_DEVICE_ID_ANALOG_X, "Left Analog X" }, \
1224 { port, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_LEFT, RETRO_DEVICE_ID_ANALOG_Y, "Left Analog Y" }, \
cada0a36 1225 { port, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_RIGHT, RETRO_DEVICE_ID_ANALOG_X, "Right Analog X" }, \
1226 { port, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_RIGHT, RETRO_DEVICE_ID_ANALOG_Y, "Right Analog Y" },
1227
1228 JOYP(0)
1229 JOYP(1)
1230 JOYP(2)
1231 JOYP(3)
1232 JOYP(4)
1233 JOYP(5)
1234 JOYP(6)
1235 JOYP(7)
e3f8313f 1236
1237 { 0 },
1238 };
1239
cada0a36 1240 frame_count = 0;
2df7fcac 1241
e3f8313f 1242 environ_cb(RETRO_ENVIRONMENT_SET_INPUT_DESCRIPTORS, desc);
1243
46aa5b98 1244#ifdef FRONTEND_SUPPORTS_RGB565
cada0a36 1245 enum retro_pixel_format fmt = RETRO_PIXEL_FORMAT_RGB565;
8822aea7 1246 if (environ_cb(RETRO_ENVIRONMENT_SET_PIXEL_FORMAT, &fmt))
1247 {
cada0a36 1248 SysPrintf("RGB565 supported, using it\n");
1249 }
46aa5b98 1250#endif
c19aba43 1251
8822aea7 1252 if (info == NULL || info->path == NULL)
1253 {
cada0a36 1254 SysPrintf("info->path required\n");
1255 return false;
1256 }
1257
1258 update_variables(false);
1259
8822aea7 1260 if (plugins_opened)
1261 {
cada0a36 1262 ClosePlugins();
1263 plugins_opened = 0;
1264 }
1265
1266 disk_init();
1267
1268 extract_directory(base_dir, info->path, sizeof(base_dir));
1269
8822aea7 1270 if (is_m3u)
1271 {
1272 if (!read_m3u(info->path))
1273 {
cada0a36 1274 log_cb(RETRO_LOG_INFO, "failed to read m3u file\n");
1275 return false;
1276 }
8822aea7 1277 }
1278 else
1279 {
cada0a36 1280 char disk_label[PATH_MAX];
1281 disk_label[0] = '\0';
1282
1283 disk_count = 1;
1284 disks[0].fname = strdup(info->path);
1285
1286 get_disk_label(disk_label, info->path, PATH_MAX);
1287 disks[0].flabel = strdup(disk_label);
1288 }
1289
1290 /* If this is an M3U file, attempt to set the
1291 * initial disk image */
8822aea7 1292 if (is_m3u && (disk_initial_index > 0) && (disk_initial_index < disk_count))
1293 {
cada0a36 1294 const char *fname = disks[disk_initial_index].fname;
1295
1296 if (fname && (*fname != '\0'))
1297 if (strcmp(disk_initial_path, fname) == 0)
1298 cd_index = disk_initial_index;
1299 }
1300
1301 set_cd_image(disks[cd_index].fname);
1302 disk_current_index = cd_index;
1303
1304 /* have to reload after set_cd_image for correct cdr plugin */
8822aea7 1305 if (LoadPlugins() == -1)
1306 {
cada0a36 1307 log_cb(RETRO_LOG_INFO, "failed to load plugins\n");
1308 return false;
1309 }
1310
1311 plugins_opened = 1;
1312 NetOpened = 0;
1313
8822aea7 1314 if (OpenPlugins() == -1)
1315 {
cada0a36 1316 log_cb(RETRO_LOG_INFO, "failed to open plugins\n");
1317 return false;
1318 }
1319
1320 /* Handle multi-disk images (i.e. PBP)
1321 * > Cannot do this until after OpenPlugins() is
1322 * called (since this sets the value of
1323 * cdrIsoMultidiskCount) */
8822aea7 1324 if (!is_m3u && (cdrIsoMultidiskCount > 1))
1325 {
cada0a36 1326 disk_count = cdrIsoMultidiskCount < 8 ? cdrIsoMultidiskCount : 8;
1327
1328 /* Small annoyance: We need to change the label
1329 * of disk 0, so have to clear existing entries */
1330 if (disks[0].fname != NULL)
1331 free(disks[0].fname);
1332 disks[0].fname = NULL;
1333
1334 if (disks[0].flabel != NULL)
1335 free(disks[0].flabel);
1336 disks[0].flabel = NULL;
1337
8822aea7 1338 for (i = 0; i < sizeof(disks) / sizeof(disks[0]) && i < cdrIsoMultidiskCount; i++)
1339 {
cada0a36 1340 char disk_name[PATH_MAX];
1341 char disk_label[PATH_MAX];
8822aea7 1342 disk_name[0] = '\0';
cada0a36 1343 disk_label[0] = '\0';
1344
1345 disks[i].fname = strdup(info->path);
1346
1347 get_disk_label(disk_name, info->path, PATH_MAX);
1348 snprintf(disk_label, sizeof(disk_label), "%s #%u", disk_name, (unsigned)i + 1);
1349 disks[i].flabel = strdup(disk_label);
1350
1351 disks[i].internal_index = i;
1352 }
1353
1354 /* This is not an M3U file, so initial disk
1355 * image has not yet been set - attempt to
1356 * do so now */
8822aea7 1357 if ((disk_initial_index > 0) && (disk_initial_index < disk_count))
1358 {
cada0a36 1359 const char *fname = disks[disk_initial_index].fname;
1360
1361 if (fname && (*fname != '\0'))
1362 if (strcmp(disk_initial_path, fname) == 0)
1363 cd_index = disk_initial_index;
1364 }
1365
8822aea7 1366 if (cd_index > 0)
1367 {
1368 CdromId[0] = '\0';
cada0a36 1369 CdromLabel[0] = '\0';
1370
1371 cdrIsoMultidiskSelect = disks[cd_index].internal_index;
8822aea7 1372 disk_current_index = cd_index;
cada0a36 1373 set_cd_image(disks[cd_index].fname);
1374
8822aea7 1375 if (ReloadCdromPlugin() < 0)
1376 {
cada0a36 1377 log_cb(RETRO_LOG_INFO, "failed to reload cdr plugins\n");
1378 return false;
1379 }
8822aea7 1380 if (CDR_open() < 0)
1381 {
cada0a36 1382 log_cb(RETRO_LOG_INFO, "failed to open cdr plugin\n");
1383 return false;
1384 }
1385 }
1386 }
1387
1388 plugin_call_rearmed_cbs();
8b9b4c9f 1389 /* dfinput_activate(); */
cada0a36 1390
8822aea7 1391 if (CheckCdrom() == -1)
1392 {
cada0a36 1393 log_cb(RETRO_LOG_INFO, "unsupported/invalid CD image: %s\n", info->path);
1394 return false;
1395 }
1396
1397 SysReset();
1398
8822aea7 1399 if (LoadCdrom() == -1)
1400 {
cada0a36 1401 log_cb(RETRO_LOG_INFO, "could not load CD\n");
1402 return false;
1403 }
1404 emu_on_new_cd(0);
1405
1406 set_retro_memmap();
1407
1408 return true;
38c2028e 1409}
1410
38c2028e 1411unsigned retro_get_region(void)
1412{
cada0a36 1413 return is_pal_mode ? RETRO_REGION_PAL : RETRO_REGION_NTSC;
38c2028e 1414}
1415
1416void *retro_get_memory_data(unsigned id)
1417{
cada0a36 1418 if (id == RETRO_MEMORY_SAVE_RAM)
1419 return Mcd1Data;
1420 else if (id == RETRO_MEMORY_SYSTEM_RAM)
1421 return psxM;
1422 else
1423 return NULL;
38c2028e 1424}
1425
1426size_t retro_get_memory_size(unsigned id)
1427{
cada0a36 1428 if (id == RETRO_MEMORY_SAVE_RAM)
1429 return MCD_SIZE;
1430 else if (id == RETRO_MEMORY_SYSTEM_RAM)
1431 return 0x200000;
1432 else
1433 return 0;
38c2028e 1434}
1435
1436void retro_reset(void)
1437{
d9e77039 1438 //hack to prevent retroarch freezing when reseting in the menu but not while running with the hot key
1439 rebootemu = 1;
cada0a36 1440 //SysReset();
38c2028e 1441}
1442
1443static const unsigned short retro_psx_map[] = {
8822aea7 1444 [RETRO_DEVICE_ID_JOYPAD_B] = 1 << DKEY_CROSS,
1445 [RETRO_DEVICE_ID_JOYPAD_Y] = 1 << DKEY_SQUARE,
1446 [RETRO_DEVICE_ID_JOYPAD_SELECT] = 1 << DKEY_SELECT,
1447 [RETRO_DEVICE_ID_JOYPAD_START] = 1 << DKEY_START,
1448 [RETRO_DEVICE_ID_JOYPAD_UP] = 1 << DKEY_UP,
1449 [RETRO_DEVICE_ID_JOYPAD_DOWN] = 1 << DKEY_DOWN,
1450 [RETRO_DEVICE_ID_JOYPAD_LEFT] = 1 << DKEY_LEFT,
1451 [RETRO_DEVICE_ID_JOYPAD_RIGHT] = 1 << DKEY_RIGHT,
1452 [RETRO_DEVICE_ID_JOYPAD_A] = 1 << DKEY_CIRCLE,
1453 [RETRO_DEVICE_ID_JOYPAD_X] = 1 << DKEY_TRIANGLE,
1454 [RETRO_DEVICE_ID_JOYPAD_L] = 1 << DKEY_L1,
1455 [RETRO_DEVICE_ID_JOYPAD_R] = 1 << DKEY_R1,
1456 [RETRO_DEVICE_ID_JOYPAD_L2] = 1 << DKEY_L2,
1457 [RETRO_DEVICE_ID_JOYPAD_R2] = 1 << DKEY_R2,
1458 [RETRO_DEVICE_ID_JOYPAD_L3] = 1 << DKEY_L3,
1459 [RETRO_DEVICE_ID_JOYPAD_R3] = 1 << DKEY_R3,
38c2028e 1460};
1461#define RETRO_PSX_MAP_LEN (sizeof(retro_psx_map) / sizeof(retro_psx_map[0]))
1462
cada0a36 1463//Percentage distance of screen to adjust
e16ecc89 1464static int GunconAdjustX = 0;
1465static int GunconAdjustY = 0;
1466
1467//Used when out by a percentage
1468static float GunconAdjustRatioX = 1;
1469static float GunconAdjustRatioY = 1;
1470
805fe9bc 1471static void update_variables(bool in_flight)
e268a47e 1472{
e268a47e 1473 struct retro_variable var;
b41cca85 1474#ifdef GPU_PEOPS
c8108d88 1475 int gpu_peops_fix = 0;
b41cca85 1476#endif
ace14ab3 1477
e268a47e 1478 var.value = NULL;
4e477065 1479 var.key = "pcsx_rearmed_frameskip";
3abd263a 1480 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
7d68d030 1481 pl_rearmed_cbs.frameskip = atoi(var.value);
9f5a28d9 1482
1483 var.value = NULL;
4e477065 1484 var.key = "pcsx_rearmed_region";
3abd263a 1485 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
9f5a28d9 1486 {
1487 Config.PsxAuto = 0;
f4cceff6 1488 if (strcmp(var.value, "auto") == 0)
9f5a28d9 1489 Config.PsxAuto = 1;
1490 else if (strcmp(var.value, "NTSC") == 0)
1491 Config.PsxType = 0;
1492 else if (strcmp(var.value, "PAL") == 0)
1493 Config.PsxType = 1;
1494 }
4615b075 1495
30d43b8a 1496 update_multitap();
61c4962a 1497
e1442c48 1498 var.value = NULL;
1499 var.key = "pcsx_rearmed_negcon_deadzone";
1500 negcon_deadzone = 0;
3abd263a 1501 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
e1442c48 1502 {
1503 negcon_deadzone = (int)(atoi(var.value) * 0.01f * NEGCON_RANGE);
1504 }
1505
1506 var.value = NULL;
1507 var.key = "pcsx_rearmed_negcon_response";
1508 negcon_linearity = 1;
3abd263a 1509 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
e1442c48 1510 {
8822aea7 1511 if (strcmp(var.value, "quadratic") == 0)
1512 {
e1442c48 1513 negcon_linearity = 2;
8822aea7 1514 }
1515 else if (strcmp(var.value, "cubic") == 0)
1516 {
e1442c48 1517 negcon_linearity = 3;
1518 }
1519 }
1520
ace1989f
SK
1521 var.value = NULL;
1522 var.key = "pcsx_rearmed_analog_axis_modifier";
1523 axis_bounds_modifier = true;
3abd263a 1524 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
ace1989f 1525 {
8822aea7 1526 if (strcmp(var.value, "square") == 0)
1527 {
cada0a36 1528 axis_bounds_modifier = true;
8822aea7 1529 }
1530 else if (strcmp(var.value, "circle") == 0)
1531 {
cada0a36 1532 axis_bounds_modifier = false;
1533 }
ace1989f
SK
1534 }
1535
70fb8fe7 1536 var.value = NULL;
1537 var.key = "pcsx_rearmed_vibration";
1538
3abd263a 1539 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
70fb8fe7 1540 {
1541 if (strcmp(var.value, "disabled") == 0)
1542 in_enable_vibration = 0;
1543 else if (strcmp(var.value, "enabled") == 0)
1544 in_enable_vibration = 1;
1545 }
1546
5c1cbedc 1547 var.value = NULL;
1548 var.key = "pcsx_rearmed_dithering";
1549
3abd263a 1550 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
5c1cbedc 1551 {
8822aea7 1552 if (strcmp(var.value, "disabled") == 0)
1553 {
5c1cbedc 1554 pl_rearmed_cbs.gpu_peops.iUseDither = 0;
1555 pl_rearmed_cbs.gpu_peopsgl.bDrawDither = 0;
030d1121 1556 pl_rearmed_cbs.gpu_unai.dithering = 0;
5c1cbedc 1557#ifdef __ARM_NEON__
1558 pl_rearmed_cbs.gpu_neon.allow_dithering = 0;
1559#endif
1560 }
8822aea7 1561 else if (strcmp(var.value, "enabled") == 0)
1562 {
1563 pl_rearmed_cbs.gpu_peops.iUseDither = 1;
5c1cbedc 1564 pl_rearmed_cbs.gpu_peopsgl.bDrawDither = 1;
030d1121 1565 pl_rearmed_cbs.gpu_unai.dithering = 1;
5c1cbedc 1566#ifdef __ARM_NEON__
1567 pl_rearmed_cbs.gpu_neon.allow_dithering = 1;
1568#endif
1569 }
1570 }
1571
8ac2b9d2 1572#ifdef GPU_NEON
3abd263a 1573 var.value = NULL;
55e5626b 1574 var.key = "pcsx_rearmed_neon_interlace_enable";
9f5a28d9 1575
3abd263a 1576 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
9f5a28d9 1577 {
1578 if (strcmp(var.value, "disabled") == 0)
1579 pl_rearmed_cbs.gpu_neon.allow_interlace = 0;
1580 else if (strcmp(var.value, "enabled") == 0)
1581 pl_rearmed_cbs.gpu_neon.allow_interlace = 1;
1582 }
1583
7d68d030 1584 var.value = NULL;
55e5626b 1585 var.key = "pcsx_rearmed_neon_enhancement_enable";
7d68d030 1586
3abd263a 1587 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
7d68d030 1588 {
1589 if (strcmp(var.value, "disabled") == 0)
1590 pl_rearmed_cbs.gpu_neon.enhancement_enable = 0;
1591 else if (strcmp(var.value, "enabled") == 0)
1592 pl_rearmed_cbs.gpu_neon.enhancement_enable = 1;
1593 }
354329fa 1594
1595 var.value = NULL;
55e5626b 1596 var.key = "pcsx_rearmed_neon_enhancement_no_main";
354329fa 1597
3abd263a 1598 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
354329fa 1599 {
1600 if (strcmp(var.value, "disabled") == 0)
1601 pl_rearmed_cbs.gpu_neon.enhancement_no_main = 0;
1602 else if (strcmp(var.value, "enabled") == 0)
1603 pl_rearmed_cbs.gpu_neon.enhancement_no_main = 1;
1604 }
094ec204 1605#endif
0e5a7b7d 1606
3abd263a 1607 var.value = NULL;
0e5a7b7d 1608 var.key = "pcsx_rearmed_duping_enable";
1609
3abd263a 1610 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
0e5a7b7d 1611 {
0a6520c3 1612 if (strcmp(var.value, "disabled") == 0)
0e5a7b7d 1613 duping_enable = false;
0a6520c3 1614 else if (strcmp(var.value, "enabled") == 0)
0e5a7b7d 1615 duping_enable = true;
1616 }
1617
3abd263a 1618 var.value = NULL;
2df7fcac
BP
1619 var.key = "pcsx_rearmed_display_internal_fps";
1620
3abd263a 1621 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2df7fcac
BP
1622 {
1623 if (strcmp(var.value, "disabled") == 0)
1624 display_internal_fps = false;
1625 else if (strcmp(var.value, "enabled") == 0)
1626 display_internal_fps = true;
1627 }
1628
ec253988 1629#if defined(LIGHTREC) || defined(NEW_DYNAREC)
48f615ba 1630 var.value = NULL;
4e477065 1631 var.key = "pcsx_rearmed_drc";
48f615ba 1632
3abd263a 1633 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
48f615ba 1634 {
cada0a36 1635 R3000Acpu *prev_cpu = psxCpu;
44747c73
AM
1636#if defined(LIGHTREC)
1637 bool can_use_dynarec = found_bios;
1638#else
1639 bool can_use_dynarec = 1;
1640#endif
48f615ba 1641
fc99395c 1642#ifdef _3DS
8822aea7 1643 if (!__ctr_svchax)
fc99395c 1644 Config.Cpu = CPU_INTERPRETER;
1645 else
1646#endif
44747c73 1647 if (strcmp(var.value, "disabled") == 0 || !can_use_dynarec)
48f615ba 1648 Config.Cpu = CPU_INTERPRETER;
1649 else if (strcmp(var.value, "enabled") == 0)
1650 Config.Cpu = CPU_DYNAREC;
1651
1652 psxCpu = (Config.Cpu == CPU_INTERPRETER) ? &psxInt : &psxRec;
8822aea7 1653 if (psxCpu != prev_cpu)
1654 {
48f615ba 1655 prev_cpu->Shutdown();
1656 psxCpu->Init();
1657 psxCpu->Reset(); // not really a reset..
1658 }
1659 }
ec253988 1660#endif /* LIGHTREC || NEW_DYNAREC */
805fe9bc 1661
3abd263a 1662 var.value = NULL;
01394a7f 1663 var.key = "pcsx_rearmed_spu_reverb";
1664
3abd263a 1665 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
01394a7f 1666 {
0a6520c3 1667 if (strcmp(var.value, "disabled") == 0)
01394a7f 1668 spu_config.iUseReverb = false;
0a6520c3 1669 else if (strcmp(var.value, "enabled") == 0)
01394a7f 1670 spu_config.iUseReverb = true;
1671 }
1672
3abd263a 1673 var.value = NULL;
01394a7f 1674 var.key = "pcsx_rearmed_spu_interpolation";
1675
3abd263a 1676 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
01394a7f 1677 {
1678 if (strcmp(var.value, "simple") == 0)
1679 spu_config.iUseInterpolation = 1;
1680 else if (strcmp(var.value, "gaussian") == 0)
1681 spu_config.iUseInterpolation = 2;
1682 else if (strcmp(var.value, "cubic") == 0)
1683 spu_config.iUseInterpolation = 3;
1684 else if (strcmp(var.value, "off") == 0)
1685 spu_config.iUseInterpolation = 0;
1686 }
1687
3abd263a 1688 var.value = NULL;
b3480be8 1689 var.key = "pcsx_rearmed_pe2_fix";
1690
3abd263a 1691 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
b3480be8 1692 {
1693 if (strcmp(var.value, "disabled") == 0)
1694 Config.RCntFix = 0;
1695 else if (strcmp(var.value, "enabled") == 0)
1696 Config.RCntFix = 1;
1697 }
ace14ab3 1698
3abd263a 1699 var.value = NULL;
1d6abe26 1700 var.key = "pcsx_rearmed_idiablofix";
1701
3abd263a 1702 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1d6abe26 1703 {
1704 if (strcmp(var.value, "disabled") == 0)
1705 spu_config.idiablofix = 0;
1706 else if (strcmp(var.value, "enabled") == 0)
1707 spu_config.idiablofix = 1;
1708 }
1709
3abd263a 1710 var.value = NULL;
b3480be8 1711 var.key = "pcsx_rearmed_inuyasha_fix";
1712
3abd263a 1713 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
b3480be8 1714 {
1715 if (strcmp(var.value, "disabled") == 0)
1716 Config.VSyncWA = 0;
1717 else if (strcmp(var.value, "enabled") == 0)
1718 Config.VSyncWA = 1;
1719 }
1720
679b71e2
JW
1721#ifndef _WIN32
1722 var.value = NULL;
1723 var.key = "pcsx_rearmed_async_cd";
3abd263a 1724 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
679b71e2
JW
1725 {
1726 if (strcmp(var.value, "async") == 0)
1d2757f4 1727 {
cada0a36 1728 Config.AsyncCD = 1;
1d2757f4 1729 Config.CHD_Precache = 0;
1730 }
1731 else if (strcmp(var.value, "sync") == 0)
1732 {
cada0a36 1733 Config.AsyncCD = 0;
1d2757f4 1734 Config.CHD_Precache = 0;
1735 }
1736 else if (strcmp(var.value, "precache") == 0)
1737 {
1738 Config.AsyncCD = 0;
1739 Config.CHD_Precache = 1;
1740 }
679b71e2
JW
1741 }
1742#endif
1743
b12cce74 1744 var.value = NULL;
1745 var.key = "pcsx_rearmed_noxadecoding";
3abd263a 1746 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
b12cce74 1747 {
1748 if (strcmp(var.value, "disabled") == 0)
1749 Config.Xa = 1;
1750 else
1751 Config.Xa = 0;
1752 }
1753
1754 var.value = NULL;
1755 var.key = "pcsx_rearmed_nocdaudio";
3abd263a 1756 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
b12cce74 1757 {
1758 if (strcmp(var.value, "disabled") == 0)
1759 Config.Cdda = 1;
1760 else
1761 Config.Cdda = 0;
1762 }
1763
34af0fff 1764 var.value = NULL;
1765 var.key = "pcsx_rearmed_spuirq";
3abd263a 1766 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
34af0fff 1767 {
1768 if (strcmp(var.value, "disabled") == 0)
1769 Config.SpuIrq = 0;
1770 else
1771 Config.SpuIrq = 1;
1772 }
1773
c765eb86
JW
1774#ifdef THREAD_RENDERING
1775 var.key = "pcsx_rearmed_gpu_thread_rendering";
1776 var.value = NULL;
1777
1778 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1779 {
1780 if (strcmp(var.value, "disabled") == 0)
1781 pl_rearmed_cbs.thread_rendering = THREAD_RENDERING_OFF;
1782 else if (strcmp(var.value, "sync") == 0)
1783 pl_rearmed_cbs.thread_rendering = THREAD_RENDERING_SYNC;
1784 else if (strcmp(var.value, "async") == 0)
1785 pl_rearmed_cbs.thread_rendering = THREAD_RENDERING_ASYNC;
1786 }
1787#endif
1788
2d17de26 1789#ifdef GPU_PEOPS
3abd263a 1790 var.value = NULL;
6713b629 1791 var.key = "pcsx_rearmed_gpu_peops_odd_even_bit";
c8108d88 1792
1793 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1794 {
1795 if (strcmp(var.value, "enabled") == 0)
6713b629 1796 gpu_peops_fix |= GPU_PEOPS_ODD_EVEN_BIT;
c8108d88 1797 }
1798
3abd263a 1799 var.value = NULL;
6713b629 1800 var.key = "pcsx_rearmed_gpu_peops_expand_screen_width";
c8108d88 1801
1802 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1803 {
1804 if (strcmp(var.value, "enabled") == 0)
6713b629 1805 gpu_peops_fix |= GPU_PEOPS_EXPAND_SCREEN_WIDTH;
c8108d88 1806 }
1807
3abd263a 1808 var.value = NULL;
6713b629 1809 var.key = "pcsx_rearmed_gpu_peops_ignore_brightness";
c8108d88 1810
1811 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1812 {
1813 if (strcmp(var.value, "enabled") == 0)
6713b629 1814 gpu_peops_fix |= GPU_PEOPS_IGNORE_BRIGHTNESS;
c8108d88 1815 }
1816
3abd263a 1817 var.value = NULL;
6713b629 1818 var.key = "pcsx_rearmed_gpu_peops_disable_coord_check";
c8108d88 1819
1820 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1821 {
1822 if (strcmp(var.value, "enabled") == 0)
6713b629 1823 gpu_peops_fix |= GPU_PEOPS_DISABLE_COORD_CHECK;
c8108d88 1824 }
1825
3abd263a 1826 var.value = NULL;
6713b629 1827 var.key = "pcsx_rearmed_gpu_peops_lazy_screen_update";
c8108d88 1828
1829 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1830 {
1831 if (strcmp(var.value, "enabled") == 0)
6713b629 1832 gpu_peops_fix |= GPU_PEOPS_LAZY_SCREEN_UPDATE;
c8108d88 1833 }
1834
3abd263a 1835 var.value = NULL;
6713b629 1836 var.key = "pcsx_rearmed_gpu_peops_old_frame_skip";
c8108d88 1837
1838 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1839 {
1840 if (strcmp(var.value, "enabled") == 0)
6713b629 1841 gpu_peops_fix |= GPU_PEOPS_OLD_FRAME_SKIP;
c8108d88 1842 }
1843
3abd263a 1844 var.value = NULL;
6713b629 1845 var.key = "pcsx_rearmed_gpu_peops_repeated_triangles";
c8108d88 1846
1847 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1848 {
1849 if (strcmp(var.value, "enabled") == 0)
6713b629 1850 gpu_peops_fix |= GPU_PEOPS_REPEATED_TRIANGLES;
c8108d88 1851 }
1852
3abd263a 1853 var.value = NULL;
6713b629 1854 var.key = "pcsx_rearmed_gpu_peops_quads_with_triangles";
c8108d88 1855
1856 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1857 {
1858 if (strcmp(var.value, "enabled") == 0)
6713b629 1859 gpu_peops_fix |= GPU_PEOPS_QUADS_WITH_TRIANGLES;
c8108d88 1860 }
1861
3abd263a 1862 var.value = NULL;
6713b629 1863 var.key = "pcsx_rearmed_gpu_peops_fake_busy_state";
c8108d88 1864
1865 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1866 {
1867 if (strcmp(var.value, "enabled") == 0)
6713b629 1868 gpu_peops_fix |= GPU_PEOPS_FAKE_BUSY_STATE;
c8108d88 1869 }
1870
1871 if (pl_rearmed_cbs.gpu_peops.dwActFixes != gpu_peops_fix)
1872 pl_rearmed_cbs.gpu_peops.dwActFixes = gpu_peops_fix;
1873
6713b629 1874 /* Show/hide core options */
c8108d88 1875
1876 var.key = "pcsx_rearmed_show_gpu_peops_settings";
1877 var.value = NULL;
1878
1879 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1880 {
1881 int show_advanced_gpu_peops_settings_prev = show_advanced_gpu_peops_settings;
1882
1883 show_advanced_gpu_peops_settings = 1;
1884 if (strcmp(var.value, "disabled") == 0)
1885 show_advanced_gpu_peops_settings = 0;
1886
1887 if (show_advanced_gpu_peops_settings != show_advanced_gpu_peops_settings_prev)
1888 {
1889 unsigned i;
1890 struct retro_core_option_display option_display;
6713b629 1891 char gpu_peops_option[9][45] = {
1892 "pcsx_rearmed_gpu_peops_odd_even_bit",
1893 "pcsx_rearmed_gpu_peops_expand_screen_width",
1894 "pcsx_rearmed_gpu_peops_ignore_brightness",
1895 "pcsx_rearmed_gpu_peops_disable_coord_check",
1896 "pcsx_rearmed_gpu_peops_lazy_screen_update",
1897 "pcsx_rearmed_gpu_peops_old_frame_skip",
1898 "pcsx_rearmed_gpu_peops_repeated_triangles",
1899 "pcsx_rearmed_gpu_peops_quads_with_triangles",
cada0a36 1900 "pcsx_rearmed_gpu_peops_fake_busy_state"
c8108d88 1901 };
1902
1903 option_display.visible = show_advanced_gpu_peops_settings;
1904
1905 for (i = 0; i < 9; i++)
1906 {
1907 option_display.key = gpu_peops_option[i];
1908 environ_cb(RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY, &option_display);
1909 }
1910 }
1911 }
1912#endif
1913
030d1121 1914#ifdef GPU_UNAI
1915 var.key = "pcsx_rearmed_gpu_unai_ilace_force";
1916 var.value = NULL;
1917
3abd263a 1918 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
030d1121 1919 {
1920 if (strcmp(var.value, "disabled") == 0)
1921 pl_rearmed_cbs.gpu_unai.ilace_force = 0;
1922 else if (strcmp(var.value, "enabled") == 0)
1923 pl_rearmed_cbs.gpu_unai.ilace_force = 1;
1924 }
1925
1926 var.key = "pcsx_rearmed_gpu_unai_pixel_skip";
1927 var.value = NULL;
1928
3abd263a 1929 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
030d1121 1930 {
1931 if (strcmp(var.value, "disabled") == 0)
1932 pl_rearmed_cbs.gpu_unai.pixel_skip = 0;
1933 else if (strcmp(var.value, "enabled") == 0)
1934 pl_rearmed_cbs.gpu_unai.pixel_skip = 1;
1935 }
1936
1937 var.key = "pcsx_rearmed_gpu_unai_lighting";
1938 var.value = NULL;
1939
3abd263a 1940 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
030d1121 1941 {
1942 if (strcmp(var.value, "disabled") == 0)
1943 pl_rearmed_cbs.gpu_unai.lighting = 0;
1944 else if (strcmp(var.value, "enabled") == 0)
1945 pl_rearmed_cbs.gpu_unai.lighting = 1;
1946 }
1947
1948 var.key = "pcsx_rearmed_gpu_unai_fast_lighting";
1949 var.value = NULL;
1950
3abd263a 1951 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
030d1121 1952 {
1953 if (strcmp(var.value, "disabled") == 0)
1954 pl_rearmed_cbs.gpu_unai.fast_lighting = 0;
1955 else if (strcmp(var.value, "enabled") == 0)
1956 pl_rearmed_cbs.gpu_unai.fast_lighting = 1;
1957 }
1958
1959 var.key = "pcsx_rearmed_gpu_unai_blending";
1960 var.value = NULL;
1961
3abd263a 1962 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
030d1121 1963 {
1964 if (strcmp(var.value, "disabled") == 0)
1965 pl_rearmed_cbs.gpu_unai.blending = 0;
1966 else if (strcmp(var.value, "enabled") == 0)
1967 pl_rearmed_cbs.gpu_unai.blending = 1;
1968 }
1969
43047988
JW
1970 var.key = "pcsx_rearmed_gpu_unai_scale_hires";
1971 var.value = NULL;
1972
1973 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1974 {
1975 if (strcmp(var.value, "disabled") == 0)
1976 pl_rearmed_cbs.gpu_unai.scale_hires = 0;
1977 else if (strcmp(var.value, "enabled") == 0)
1978 pl_rearmed_cbs.gpu_unai.scale_hires = 1;
1979 }
1980
030d1121 1981 var.key = "pcsx_rearmed_show_gpu_unai_settings";
1982 var.value = NULL;
1983
1984 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
1985 {
1986 int show_advanced_gpu_unai_settings_prev = show_advanced_gpu_unai_settings;
1987
1988 show_advanced_gpu_unai_settings = 1;
1989 if (strcmp(var.value, "disabled") == 0)
1990 show_advanced_gpu_unai_settings = 0;
1991
1992 if (show_advanced_gpu_unai_settings != show_advanced_gpu_unai_settings_prev)
1993 {
1994 unsigned i;
1995 struct retro_core_option_display option_display;
43047988 1996 char gpu_unai_option[6][40] = {
030d1121 1997 "pcsx_rearmed_gpu_unai_blending",
1998 "pcsx_rearmed_gpu_unai_lighting",
1999 "pcsx_rearmed_gpu_unai_fast_lighting",
2000 "pcsx_rearmed_gpu_unai_ilace_force",
43047988 2001 "pcsx_rearmed_gpu_unai_pixel_skip",
c765eb86 2002 "pcsx_rearmed_gpu_unai_scale_hires",
030d1121 2003 };
2004
2005 option_display.visible = show_advanced_gpu_unai_settings;
2006
43047988 2007 for (i = 0; i < 6; i++)
030d1121 2008 {
2009 option_display.key = gpu_unai_option[i];
2010 environ_cb(RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY, &option_display);
2011 }
2012 }
2013 }
2014#endif // GPU_UNAI
2015
cada0a36 2016 //This adjustment process gives the user the ability to manually align the mouse up better
e16ecc89 2017 //with where the shots are in the emulator.
2018
2019 var.value = NULL;
2020 var.key = "pcsx_rearmed_gunconadjustx";
2021
2022 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2023 {
cada0a36 2024 GunconAdjustX = atoi(var.value);
e16ecc89 2025 }
2026
2027 var.value = NULL;
2028 var.key = "pcsx_rearmed_gunconadjusty";
2029
2030 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2031 {
cada0a36 2032 GunconAdjustY = atoi(var.value);
2033 }
e16ecc89 2034
2035 var.value = NULL;
2036 var.key = "pcsx_rearmed_gunconadjustratiox";
2037
2038 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2039 {
cada0a36 2040 GunconAdjustRatioX = atof(var.value);
2041 }
e16ecc89 2042
2043 var.value = NULL;
2044 var.key = "pcsx_rearmed_gunconadjustratioy";
2045
2046 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2047 {
cada0a36 2048 GunconAdjustRatioY = atof(var.value);
e16ecc89 2049 }
2050
ce239f4a 2051#ifdef NEW_DYNAREC
2052 var.value = NULL;
2053 var.key = "pcsx_rearmed_nosmccheck";
2054 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2055 {
2056 if (strcmp(var.value, "enabled") == 0)
2057 new_dynarec_hacks |= NDHACK_NO_SMC_CHECK;
2058 else
2059 new_dynarec_hacks &= ~NDHACK_NO_SMC_CHECK;
2060 }
2061
2062 var.value = NULL;
2063 var.key = "pcsx_rearmed_gteregsunneeded";
2064 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2065 {
2066 if (strcmp(var.value, "enabled") == 0)
2067 new_dynarec_hacks |= NDHACK_GTE_UNNEEDED;
2068 else
2069 new_dynarec_hacks &= ~NDHACK_GTE_UNNEEDED;
2070 }
2071
2072 var.value = NULL;
2073 var.key = "pcsx_rearmed_nogteflags";
2074 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2075 {
2076 if (strcmp(var.value, "enabled") == 0)
2077 new_dynarec_hacks |= NDHACK_GTE_NO_FLAGS;
2078 else
2079 new_dynarec_hacks &= ~NDHACK_GTE_NO_FLAGS;
2080 }
2081
2082 /* this probably is safe to change in real-time */
2083 var.value = NULL;
2084 var.key = "pcsx_rearmed_psxclock";
2085 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2086 {
2087 int psxclock = atoi(var.value);
2088 cycle_multiplier = 10000 / psxclock;
2089 }
2090#endif /* NEW_DYNAREC */
2091
399a33fe 2092 var.value = NULL;
2093 var.key = "pcsx_rearmed_input_sensitivity";
2094 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2095 {
2096 mouse_sensitivity = atof(var.value);
2097 }
2098
ce239f4a 2099 var.key = "pcsx_rearmed_show_other_input_settings";
2100 var.value = NULL;
2101
2102 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2103 {
2104 int previous_settings = show_other_input_settings;
2105
2106 show_other_input_settings = 1;
2107 if (strcmp(var.value, "disabled") == 0)
2108 show_other_input_settings = 0;
2109
2110 if (show_other_input_settings != previous_settings)
2111 {
2112 unsigned i;
2113 struct retro_core_option_display option_display;
2114 char gpu_peops_option[][50] = {
ce239f4a 2115 "pcsx_rearmed_negcon_deadzone",
2116 "pcsx_rearmed_negcon_response",
2117 "pcsx_rearmed_analog_axis_modifier",
2118 "pcsx_rearmed_gunconadjustx",
2119 "pcsx_rearmed_gunconadjusty",
2120 "pcsx_rearmed_gunconadjustratiox",
2121 "pcsx_rearmed_gunconadjustratioy"
2122 };
2123 #define INPUT_LIST (sizeof(gpu_peops_option) / sizeof(gpu_peops_option[0]))
2124
2125 option_display.visible = show_other_input_settings;
2126
2127 for (i = 0; i < INPUT_LIST; i++)
2128 {
2129 option_display.key = gpu_peops_option[i];
2130 environ_cb(RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY, &option_display);
2131 }
2132 }
2133 }
2134
8822aea7 2135 if (in_flight)
2136 {
2137 // inform core things about possible config changes
32ab9e53 2138 plugin_call_rearmed_cbs();
805fe9bc 2139
8822aea7 2140 if (GPU_open != NULL && GPU_close != NULL)
2141 {
32ab9e53
TJ
2142 GPU_close();
2143 GPU_open(&gpuDisp, "PCSX", NULL);
2144 }
805fe9bc 2145
8b9b4c9f 2146 /* dfinput_activate(); */
32ab9e53 2147 }
27cf7d31 2148 else
2149 {
b580cc4f 2150 //not yet running
5bf56268 2151
b580cc4f 2152 //bootlogo display hack
8822aea7 2153 if (found_bios)
2154 {
3abd263a 2155 var.value = NULL;
b580cc4f 2156 var.key = "pcsx_rearmed_show_bios_bootlogo";
3abd263a 2157 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
b580cc4f 2158 {
27cf7d31 2159 Config.SlowBoot = 0;
2160 rebootemu = 0;
0a6520c3 2161 if (strcmp(var.value, "enabled") == 0)
27cf7d31 2162 {
f422f444 2163 Config.SlowBoot = 1;
27cf7d31 2164 rebootemu = 1;
2165 }
b580cc4f 2166 }
2167 }
2168 }
e268a47e 2169}
2170
8741f7a2 2171// Taken from beetle-psx-libretro
6fbd15c8 2172static uint16_t get_analog_button(int16_t ret, retro_input_state_t input_state_cb, int player_index, int id)
8741f7a2 2173{
cada0a36 2174 // NOTE: Analog buttons were added Nov 2017. Not all front-ends support this
2175 // feature (or pre-date it) so we need to handle this in a graceful way.
8741f7a2 2176
cada0a36 2177 // First, try and get an analog value using the new libretro API constant
2178 uint16_t button = input_state_cb(player_index,
8822aea7 2179 RETRO_DEVICE_ANALOG,
2180 RETRO_DEVICE_INDEX_ANALOG_BUTTON,
2181 id);
cada0a36 2182 button = MIN(button / 128, 255);
8741f7a2 2183
cada0a36 2184 if (button == 0)
2185 {
2186 // If we got exactly zero, we're either not pressing the button, or the front-end
2187 // is not reporting analog values. We need to do a second check using the classic
2188 // digital API method, to at least get some response - better than nothing.
8741f7a2 2189
cada0a36 2190 // NOTE: If we're really just not holding the button, we're still going to get zero.
8741f7a2 2191
cada0a36 2192 button = (ret & (1 << id)) ? 255 : 0;
2193 }
8741f7a2 2194
cada0a36 2195 return button;
8741f7a2 2196}
2197
8822aea7 2198unsigned char axis_range_modifier(int16_t axis_value, bool is_square)
2199{
cada0a36 2200 float modifier_axis_range = 0;
2201
8822aea7 2202 if (is_square)
2203 {
cada0a36 2204 modifier_axis_range = round((axis_value >> 8) / 0.785) + 128;
8822aea7 2205 if (modifier_axis_range < 0)
2206 {
cada0a36 2207 modifier_axis_range = 0;
8822aea7 2208 }
2209 else if (modifier_axis_range > 255)
2210 {
cada0a36 2211 modifier_axis_range = 255;
2212 }
8822aea7 2213 }
2214 else
2215 {
cada0a36 2216 modifier_axis_range = MIN(((axis_value >> 8) + 128), 255);
2217 }
ace1989f 2218
cada0a36 2219 return modifier_axis_range;
ace1989f
SK
2220}
2221
34f7d033 2222static void update_input_guncon(int port, int ret)
38c2028e 2223{
34f7d033 2224 //ToDo move across to:
2225 //RETRO_DEVICE_ID_LIGHTGUN_SCREEN_X
2226 //RETRO_DEVICE_ID_LIGHTGUN_SCREEN_Y
2227 //RETRO_DEVICE_ID_LIGHTGUN_TRIGGER
2228 //RETRO_DEVICE_ID_LIGHTGUN_RELOAD
2229 //RETRO_DEVICE_ID_LIGHTGUN_AUX_A
2230 //RETRO_DEVICE_ID_LIGHTGUN_AUX_B
2231 //Though not sure these are hooked up properly on the Pi
2232
34f7d033 2233 //GUNCON has 3 controls, Trigger,A,B which equal Circle,Start,Cross
2234
2235 // Trigger
2236 //The 1 is hardcoded instead of port to prevent the overlay mouse button libretro crash bug
7c455640 2237 if (input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_LEFT))
8822aea7 2238 {
34f7d033 2239 in_keystate[port] |= (1 << DKEY_CIRCLE);
cada0a36 2240 }
2241
34f7d033 2242 // A
7c455640 2243 if (input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_RIGHT))
8822aea7 2244 {
34f7d033 2245 in_keystate[port] |= (1 << DKEY_START);
2246 }
cada0a36 2247
34f7d033 2248 // B
7c455640 2249 if (input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_MIDDLE))
34f7d033 2250 {
2251 in_keystate[port] |= (1 << DKEY_CROSS);
2252 }
cada0a36 2253
7c455640 2254 int gunx = input_state_cb(port, RETRO_DEVICE_POINTER, 0, RETRO_DEVICE_ID_POINTER_X);
2255 int guny = input_state_cb(port, RETRO_DEVICE_POINTER, 0, RETRO_DEVICE_ID_POINTER_Y);
cada0a36 2256
34f7d033 2257 //Mouse range is -32767 -> 32767
2258 //1% is about 655
2259 //Use the left analog stick field to store the absolute coordinates
7c455640 2260 in_analog_left[port][0] = (gunx * GunconAdjustRatioX) + (GunconAdjustX * 655);
2261 in_analog_left[port][1] = (guny * GunconAdjustRatioY) + (GunconAdjustY * 655);
34f7d033 2262}
cada0a36 2263
34f7d033 2264static void update_input_negcon(int port, int ret)
2265{
2266 int lsx;
2267 int rsy;
2268 int negcon_i_rs;
2269 int negcon_ii_rs;
2270 float negcon_twist_amplitude;
cada0a36 2271
34f7d033 2272 // Query digital inputs
2273 //
2274 // > Pad-Up
2275 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_UP))
2276 in_keystate[port] |= (1 << DKEY_UP);
2277 // > Pad-Right
2278 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_RIGHT))
2279 in_keystate[port] |= (1 << DKEY_RIGHT);
2280 // > Pad-Down
2281 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_DOWN))
2282 in_keystate[port] |= (1 << DKEY_DOWN);
2283 // > Pad-Left
2284 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_LEFT))
2285 in_keystate[port] |= (1 << DKEY_LEFT);
2286 // > Start
2287 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_START))
2288 in_keystate[port] |= (1 << DKEY_START);
2289 // > neGcon A
2290 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_A))
2291 in_keystate[port] |= (1 << DKEY_CIRCLE);
2292 // > neGcon B
2293 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_X))
2294 in_keystate[port] |= (1 << DKEY_TRIANGLE);
2295 // > neGcon R shoulder (digital)
2296 if (ret & (1 << RETRO_DEVICE_ID_JOYPAD_R))
2297 in_keystate[port] |= (1 << DKEY_R1);
2298 // Query analog inputs
2299 //
2300 // From studying 'libpcsxcore/plugins.c' and 'frontend/plugin.c':
2301 // >> pad->leftJoyX == in_analog_left[port][0] == NeGcon II
2302 // >> pad->leftJoyY == in_analog_left[port][1] == NeGcon L
2303 // >> pad->rightJoyX == in_analog_right[port][0] == NeGcon twist
2304 // >> pad->rightJoyY == in_analog_right[port][1] == NeGcon I
2305 // So we just have to map in_analog_left/right to more
2306 // appropriate inputs...
2307 //
2308 // > NeGcon twist
2309 // >> Get raw analog stick value and account for deadzone
2310 lsx = input_state_cb(port, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_LEFT, RETRO_DEVICE_ID_ANALOG_X);
2311 if (lsx > negcon_deadzone)
2312 lsx = lsx - negcon_deadzone;
2313 else if (lsx < -negcon_deadzone)
2314 lsx = lsx + negcon_deadzone;
2315 else
2316 lsx = 0;
2317 // >> Convert to an 'amplitude' [-1.0,1.0] and adjust response
2318 negcon_twist_amplitude = (float)lsx / (float)(NEGCON_RANGE - negcon_deadzone);
2319 if (negcon_linearity == 2)
2320 {
2321 if (negcon_twist_amplitude < 0.0)
2322 negcon_twist_amplitude = -(negcon_twist_amplitude * negcon_twist_amplitude);
2323 else
2324 negcon_twist_amplitude = negcon_twist_amplitude * negcon_twist_amplitude;
2325 }
2326 else if (negcon_linearity == 3)
2327 negcon_twist_amplitude = negcon_twist_amplitude * negcon_twist_amplitude * negcon_twist_amplitude;
2328 // >> Convert to final 'in_analog' integer value [0,255]
2329 in_analog_right[port][0] = MAX(MIN((int)(negcon_twist_amplitude * 128.0f) + 128, 255), 0);
2330 // > NeGcon I + II
2331 // >> Handle right analog stick vertical axis mapping...
2332 // - Up (-Y) == accelerate == neGcon I
2333 // - Down (+Y) == brake == neGcon II
2334 negcon_i_rs = 0;
2335 negcon_ii_rs = 0;
2336 rsy = input_state_cb(port, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_RIGHT, RETRO_DEVICE_ID_ANALOG_Y);
2337 if (rsy >= 0)
2338 {
2339 // Account for deadzone
2340 // (Note: have never encountered a gamepad with significant differences
2341 // in deadzone between left/right analog sticks, so use the regular 'twist'
2342 // deadzone here)
2343 if (rsy > negcon_deadzone)
2344 rsy = rsy - negcon_deadzone;
2345 else
2346 rsy = 0;
2347 // Convert to 'in_analog' integer value [0,255]
2348 negcon_ii_rs = MIN((int)(((float)rsy / (float)(NEGCON_RANGE - negcon_deadzone)) * 255.0f), 255);
cada0a36 2349 }
6fbd15c8 2350 else
34f7d033 2351 {
2352 if (rsy < -negcon_deadzone)
2353 rsy = -1 * (rsy + negcon_deadzone);
2354 else
2355 rsy = 0;
2356 negcon_i_rs = MIN((int)(((float)rsy / (float)(NEGCON_RANGE - negcon_deadzone)) * 255.0f), 255);
2357 }
2358 // >> NeGcon I
2359 in_analog_right[port][1] = MAX(
2360 MAX(
2361 get_analog_button(ret, input_state_cb, port, RETRO_DEVICE_ID_JOYPAD_R2),
2362 get_analog_button(ret, input_state_cb, port, RETRO_DEVICE_ID_JOYPAD_B)),
2363 negcon_i_rs);
2364 // >> NeGcon II
2365 in_analog_left[port][0] = MAX(
2366 MAX(
2367 get_analog_button(ret, input_state_cb, port, RETRO_DEVICE_ID_JOYPAD_L2),
2368 get_analog_button(ret, input_state_cb, port, RETRO_DEVICE_ID_JOYPAD_Y)),
2369 negcon_ii_rs);
2370 // > NeGcon L
2371 in_analog_left[port][1] = get_analog_button(ret, input_state_cb, port, RETRO_DEVICE_ID_JOYPAD_L);
2372}
e268a47e 2373
399a33fe 2374static void update_input_mouse(int port, int ret)
2375{
2376 float raw_x = input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_X);
2377 float raw_y = input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_Y);
2378
2379 int x = (int)roundf(raw_x * mouse_sensitivity);
2380 int y = (int)roundf(raw_y * mouse_sensitivity);
2381
2382 if (x > 127) x = 127;
2383 else if (x < -128) x = -128;
2384
2385 if (y > 127) y = 127;
2386 else if (y < -128) y = -128;
2387
2388 in_mouse[port][0] = x; /* -128..+128 left/right movement, 0 = no movement */
2389 in_mouse[port][1] = y; /* -128..+128 down/up movement, 0 = no movement */
2390
2391 /* left mouse button state */
2392 if (input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_LEFT))
2393 in_keystate[port] |= 1 << 11;
2394
2395 /* right mouse button state */
2396 if (input_state_cb(port, RETRO_DEVICE_MOUSE, 0, RETRO_DEVICE_ID_MOUSE_RIGHT))
2397 in_keystate[port] |= 1 << 10;
2398}
2399
34f7d033 2400static void update_input(void)
2401{
cada0a36 2402 // reset all keystate, query libretro for keystate
34f7d033 2403 int i;
cada0a36 2404 int j;
e268a47e 2405
8822aea7 2406 for (i = 0; i < PORTS_NUMBER; i++)
6fbd15c8 2407 {
8822aea7 2408 int16_t ret = 0;
34f7d033 2409 int type = in_type[i];
2410
cada0a36 2411 in_keystate[i] = 0;
3c0fb554 2412
34f7d033 2413 if (type == PSE_PAD_TYPE_NONE)
cada0a36 2414 continue;
c8108d88 2415
6fbd15c8 2416 if (libretro_supports_bitmasks)
2417 ret = input_state_cb(i, RETRO_DEVICE_JOYPAD, 0, RETRO_DEVICE_ID_JOYPAD_MASK);
2418 else
2419 {
8822aea7 2420 for (j = 0; j < (RETRO_DEVICE_ID_JOYPAD_R3 + 1); j++)
6fbd15c8 2421 {
a3c2efcd 2422 if (input_state_cb(i, RETRO_DEVICE_JOYPAD, 0, j))
8822aea7 2423 ret |= (1 << j);
6fbd15c8 2424 }
2425 }
3c0fb554 2426
34f7d033 2427 switch (type)
cada0a36 2428 {
34f7d033 2429 case PSE_PAD_TYPE_GUNCON:
2430 update_input_guncon(i, ret);
2431 break;
2432 case PSE_PAD_TYPE_NEGCON:
2433 update_input_negcon(i, ret);
2434 break;
7dea987c 2435 case PSE_PAD_TYPE_MOUSE:
399a33fe 2436 update_input_mouse(i, ret);
2437 break;
34f7d033 2438 default:
cada0a36 2439 // Query digital inputs
2440 for (j = 0; j < RETRO_PSX_MAP_LEN; j++)
2441 if (ret & (1 << j))
2442 in_keystate[i] |= retro_psx_map[j];
2443
2444 // Query analog inputs
34f7d033 2445 if (type == PSE_PAD_TYPE_ANALOGJOY || type == PSE_PAD_TYPE_ANALOGPAD)
cada0a36 2446 {
34f7d033 2447 in_analog_left[i][0] = axis_range_modifier(input_state_cb(i, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_LEFT, RETRO_DEVICE_ID_ANALOG_X), axis_bounds_modifier);
2448 in_analog_left[i][1] = axis_range_modifier(input_state_cb(i, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_LEFT, RETRO_DEVICE_ID_ANALOG_Y), axis_bounds_modifier);
cada0a36 2449 in_analog_right[i][0] = axis_range_modifier(input_state_cb(i, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_RIGHT, RETRO_DEVICE_ID_ANALOG_X), axis_bounds_modifier);
2450 in_analog_right[i][1] = axis_range_modifier(input_state_cb(i, RETRO_DEVICE_ANALOG, RETRO_DEVICE_INDEX_ANALOG_RIGHT, RETRO_DEVICE_ID_ANALOG_Y), axis_bounds_modifier);
2451 }
2452 }
2453 }
34f7d033 2454}
2455
2456static void print_internal_fps(void)
2457{
2458 if (display_internal_fps)
2459 {
2460 frame_count++;
2461
2462 if (frame_count % INTERNAL_FPS_SAMPLE_PERIOD == 0)
2463 {
2464 unsigned internal_fps = pl_rearmed_cbs.flip_cnt * (is_pal_mode ? 50 : 60) / INTERNAL_FPS_SAMPLE_PERIOD;
2465 char str[64];
2466 const char *strc = (const char *)str;
34f7d033 2467
2468 str[0] = '\0';
2469
2470 snprintf(str, sizeof(str), "Internal FPS: %2d", internal_fps);
2471
2472 pl_rearmed_cbs.flip_cnt = 0;
2473
8a60e610 2474 if (msg_interface_version >= 1)
2475 {
2476 struct retro_message_ext msg = {
2477 strc,
2478 3000,
2479 1,
2480 RETRO_LOG_INFO,
2481 RETRO_MESSAGE_TARGET_OSD,
2482 RETRO_MESSAGE_TYPE_STATUS,
2483 -1
2484 };
2485 environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE_EXT, &msg);
2486 }
2487 else
2488 {
2489 struct retro_message msg = {
2490 strc,
2491 180
2492 };
2493 environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE, &msg);
2494 }
34f7d033 2495 }
2496 }
2497 else
2498 frame_count = 0;
2499}
2500
2501void retro_run(void)
2502{
34f7d033 2503 //SysReset must be run while core is running,Not in menu (Locks up Retroarch)
2504 if (rebootemu != 0)
2505 {
2506 rebootemu = 0;
2507 SysReset();
2508 if (!Config.HLE && !Config.SlowBoot)
2509 {
2510 // skip BIOS logos
2511 psxRegs.pc = psxRegs.GPR.n.ra;
2512 }
82df580d 2513 return;
34f7d033 2514 }
2515
2516 print_internal_fps();
2517
2518 input_poll_cb();
2519
2520 update_input();
2521
2522 bool updated = false;
2523 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE_UPDATE, &updated) && updated)
2524 update_variables(true);
cada0a36 2525
2526 stop = 0;
2527 psxCpu->Execute();
2528
2529 video_cb((vout_fb_dirty || !vout_can_dupe || !duping_enable) ? vout_buf_ptr : NULL,
8822aea7 2530 vout_width, vout_height, vout_width * 2);
cada0a36 2531 vout_fb_dirty = 0;
2532
2533 set_vout_fb();
38c2028e 2534}
2535
74ebc05b 2536static bool try_use_bios(const char *path)
2537{
cada0a36 2538 long size;
2539 const char *name;
226a5691 2540 FILE *fp = fopen(path, "rb");
2541 if (fp == NULL)
cada0a36 2542 return false;
74ebc05b 2543
226a5691 2544 fseek(fp, 0, SEEK_END);
2545 size = ftell(fp);
2546 fclose(fp);
74ebc05b 2547
cada0a36 2548 if (size != 512 * 1024)
2549 return false;
74ebc05b 2550
cada0a36 2551 name = strrchr(path, SLASH);
2552 if (name++ == NULL)
2553 name = path;
2554 snprintf(Config.Bios, sizeof(Config.Bios), "%s", name);
2555 return true;
74ebc05b 2556}
2557
c4052f4d 2558#ifndef VITA
74ebc05b 2559#include <sys/types.h>
2560#include <dirent.h>
2561
2562static bool find_any_bios(const char *dirpath, char *path, size_t path_size)
2563{
cada0a36 2564 DIR *dir;
2565 struct dirent *ent;
2566 bool ret = false;
74ebc05b 2567
cada0a36 2568 dir = opendir(dirpath);
2569 if (dir == NULL)
2570 return false;
74ebc05b 2571
8822aea7 2572 while ((ent = readdir(dir)))
2573 {
cada0a36 2574 if ((strncasecmp(ent->d_name, "scph", 4) != 0) && (strncasecmp(ent->d_name, "psx", 3) != 0))
2575 continue;
74ebc05b 2576
cada0a36 2577 snprintf(path, path_size, "%s%c%s", dirpath, SLASH, ent->d_name);
2578 ret = try_use_bios(path);
2579 if (ret)
2580 break;
2581 }
2582 closedir(dir);
2583 return ret;
74ebc05b 2584}
2585#else
2586#define find_any_bios(...) false
2587#endif
2588
11813b9d 2589static void check_system_specs(void)
2590{
2591 unsigned level = 6;
2592 environ_cb(RETRO_ENVIRONMENT_SET_PERFORMANCE_LEVEL, &level);
2593}
2594
d382721e
MOB
2595static int init_memcards(void)
2596{
cada0a36 2597 int ret = 0;
2598 const char *dir;
8822aea7 2599 struct retro_variable var = { .key = "pcsx_rearmed_memcard2", .value = NULL };
cada0a36 2600 static const char CARD2_FILE[] = "pcsx-card2.mcd";
2601
2602 // Memcard2 will be handled and is re-enabled if needed using core
2603 // operations.
2604 // Memcard1 is handled by libretro, doing this will set core to
2605 // skip file io operations for memcard1 like SaveMcd
2606 snprintf(Config.Mcd1, sizeof(Config.Mcd1), "none");
2607 snprintf(Config.Mcd2, sizeof(Config.Mcd2), "none");
2608 init_memcard(Mcd1Data);
2609 // Memcard 2 is managed by the emulator on the filesystem,
2610 // There is no need to initialize Mcd2Data like Mcd1Data.
2611
8822aea7 2612 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2613 {
cada0a36 2614 SysPrintf("Memcard 2: %s\n", var.value);
8822aea7 2615 if (memcmp(var.value, "enabled", 7) == 0)
2616 {
2617 if (environ_cb(RETRO_ENVIRONMENT_GET_SAVE_DIRECTORY, &dir) && dir)
2618 {
2619 if (strlen(dir) + strlen(CARD2_FILE) + 2 > sizeof(Config.Mcd2))
2620 {
cada0a36 2621 SysPrintf("Path '%s' is too long. Cannot use memcard 2. Use a shorter path.\n", dir);
2622 ret = -1;
8822aea7 2623 }
2624 else
2625 {
cada0a36 2626 McdDisable[1] = 0;
2627 snprintf(Config.Mcd2, sizeof(Config.Mcd2), "%s/%s", dir, CARD2_FILE);
2628 SysPrintf("Use memcard 2: %s\n", Config.Mcd2);
2629 }
8822aea7 2630 }
2631 else
2632 {
cada0a36 2633 SysPrintf("Could not get save directory! Could not create memcard 2.");
2634 ret = -1;
2635 }
2636 }
2637 }
2638 return ret;
d382721e
MOB
2639}
2640
9e7bdf29 2641static void loadPSXBios(void)
38c2028e 2642{
cada0a36 2643 const char *dir;
2644 char path[PATH_MAX];
2645 unsigned useHLE = 0;
2646
2647 const char *bios[] = {
c5c20552 2648 "PS1_ROM", "ps1_rom",
cada0a36 2649 "PSXONPSP660", "psxonpsp660",
2650 "SCPH101", "scph101",
2651 "SCPH5501", "scph5501",
2652 "SCPH7001", "scph7001",
2653 "SCPH1001", "scph1001"
2654 };
2655
2656 struct retro_variable var = {
2657 .key = "pcsx_rearmed_bios",
2658 .value = NULL
2659 };
2660
2661 found_bios = 0;
2662
8822aea7 2663 if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
2664 {
cada0a36 2665 if (!strcmp(var.value, "HLE"))
2666 useHLE = 1;
2667 }
2668
2669 if (!useHLE)
2670 {
2671 if (environ_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &dir) && dir)
2672 {
2673 unsigned i;
2674 snprintf(Config.BiosDir, sizeof(Config.BiosDir), "%s", dir);
2675
8822aea7 2676 for (i = 0; i < sizeof(bios) / sizeof(bios[0]); i++)
2677 {
cada0a36 2678 snprintf(path, sizeof(path), "%s%c%s.bin", dir, SLASH, bios[i]);
2679 found_bios = try_use_bios(path);
2680 if (found_bios)
2681 break;
2682 }
2683
2684 if (!found_bios)
2685 found_bios = find_any_bios(dir, path, sizeof(path));
2686 }
8822aea7 2687 if (found_bios)
2688 {
cada0a36 2689 SysPrintf("found BIOS file: %s\n", Config.Bios);
2690 }
2691 }
2692
138b161a 2693 if (!found_bios)
cada0a36 2694 {
138b161a 2695 const char *msg_str;
2696 if (useHLE)
2697 {
2698 msg_str = "BIOS set to \'hle\' in core options - real BIOS will be ignored";
2699 SysPrintf("Using HLE BIOS.\n");
2700 }
2701 else
2702 {
2703 msg_str = "No PlayStation BIOS file found - add for better compatibility";
2704 SysPrintf("No BIOS files found.\n");
2705 }
8a60e610 2706
2707 if (msg_interface_version >= 1)
2708 {
2709 struct retro_message_ext msg = {
2710 msg_str,
2711 3000,
2712 3,
2713 RETRO_LOG_WARN,
2714 RETRO_MESSAGE_TARGET_ALL,
2715 RETRO_MESSAGE_TYPE_NOTIFICATION,
2716 -1
2717 };
2718 environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE_EXT, &msg);
2719 }
2720 else
2721 {
2722 struct retro_message msg = {
2723 msg_str,
2724 180
2725 };
2726 environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE, &msg);
2727 }
cada0a36 2728 }
9e7bdf29 2729}
2730
2731void retro_init(void)
2732{
cada0a36 2733 unsigned dci_version = 0;
2734 struct retro_rumble_interface rumble;
2735 int ret;
38c2028e 2736
8a60e610 2737 msg_interface_version = 0;
2738 environ_cb(RETRO_ENVIRONMENT_GET_MESSAGE_INTERFACE_VERSION, &msg_interface_version);
2739
0e1ccb3f 2740#if defined(__MACH__) && !defined(TVOS)
cada0a36 2741 // magic sauce to make the dynarec work on iOS
2742 syscall(SYS_ptrace, 0 /*PTRACE_TRACEME*/, 0, 0, 0);
d148d265 2743#endif
2744
fc99395c 2745#ifdef _3DS
fc99395c 2746 psxMapHook = pl_3ds_mmap;
2747 psxUnmapHook = pl_3ds_munmap;
1a5fd794 2748#endif
2749#ifdef VITA
8822aea7 2750 if (init_vita_mmap() < 0)
73081f23 2751 abort();
1a5fd794 2752 psxMapHook = pl_vita_mmap;
2753 psxUnmapHook = pl_vita_munmap;
fc99395c 2754#endif
cada0a36 2755 ret = emu_core_preinit();
5bf56268 2756#ifdef _3DS
e4d84733 2757 /* emu_core_preinit sets the cpu to dynarec */
8822aea7 2758 if (!__ctr_svchax)
e4d84733 2759 Config.Cpu = CPU_INTERPRETER;
2760#endif
cada0a36 2761 ret |= init_memcards();
73081f23 2762
cada0a36 2763 ret |= emu_core_init();
8822aea7 2764 if (ret != 0)
2765 {
cada0a36 2766 SysPrintf("PCSX init failed.\n");
2767 exit(1);
2768 }
38c2028e 2769
0b7f536b 2770#ifdef _3DS
2771 vout_buf = linearMemAlign(VOUT_MAX_WIDTH * VOUT_MAX_HEIGHT * 2, 0x80);
12367ad0 2772#elif defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200112L) && !defined(VITA) && !defined(__SWITCH__)
cada0a36 2773 posix_memalign(&vout_buf, 16, VOUT_MAX_WIDTH * VOUT_MAX_HEIGHT * 2);
29122437 2774#else
cada0a36 2775 vout_buf = malloc(VOUT_MAX_WIDTH * VOUT_MAX_HEIGHT * 2);
29122437 2776#endif
5bf56268 2777
cada0a36 2778 vout_buf_ptr = vout_buf;
74ebc05b 2779
cada0a36 2780 loadPSXBios();
38c2028e 2781
cada0a36 2782 environ_cb(RETRO_ENVIRONMENT_GET_CAN_DUPE, &vout_can_dupe);
144493e8 2783
8822aea7 2784 disk_initial_index = 0;
cada0a36 2785 disk_initial_path[0] = '\0';
2786 if (environ_cb(RETRO_ENVIRONMENT_GET_DISK_CONTROL_INTERFACE_VERSION, &dci_version) && (dci_version >= 1))
2787 environ_cb(RETRO_ENVIRONMENT_SET_DISK_CONTROL_EXT_INTERFACE, &disk_control_ext);
2788 else
2789 environ_cb(RETRO_ENVIRONMENT_SET_DISK_CONTROL_INTERFACE, &disk_control);
79f29e0a 2790
cada0a36 2791 rumble_cb = NULL;
2792 if (environ_cb(RETRO_ENVIRONMENT_GET_RUMBLE_INTERFACE, &rumble))
2793 rumble_cb = rumble.set_rumble_state;
1a6164a1 2794
cada0a36 2795 /* Set how much slower PSX CPU runs * 100 (so that 200 is 2 times)
2796 * we have to do this because cache misses and some IO penalties
2797 * are not emulated. Warning: changing this may break compatibility. */
2798 cycle_multiplier = 175;
44e8d7af 2799#if defined(HAVE_PRE_ARMV7) && !defined(_3DS)
cada0a36 2800 cycle_multiplier = 200;
5ca2ec64 2801#endif
cada0a36 2802 pl_rearmed_cbs.gpu_peops.iUseDither = 1;
2803 pl_rearmed_cbs.gpu_peops.dwActFixes = GPU_PEOPS_OLD_FRAME_SKIP;
2804 spu_config.iUseFixedUpdates = 1;
5ca2ec64 2805
cada0a36 2806 SaveFuncs.open = save_open;
2807 SaveFuncs.read = save_read;
2808 SaveFuncs.write = save_write;
2809 SaveFuncs.seek = save_seek;
2810 SaveFuncs.close = save_close;
e268a47e 2811
6fbd15c8 2812 if (environ_cb(RETRO_ENVIRONMENT_GET_INPUT_BITMASKS, NULL))
2813 libretro_supports_bitmasks = true;
2814
cada0a36 2815 check_system_specs();
38c2028e 2816}
2817
2818void retro_deinit(void)
2819{
8822aea7 2820 if (plugins_opened)
2821 {
cada0a36 2822 ClosePlugins();
2823 plugins_opened = 0;
2824 }
2825 SysClose();
0b7f536b 2826#ifdef _3DS
2827 linearFree(vout_buf);
2828#else
cada0a36 2829 free(vout_buf);
0b7f536b 2830#endif
cada0a36 2831 vout_buf = NULL;
d8f2e2d8
SL
2832
2833#ifdef VITA
cada0a36 2834 deinit_vita_mmap();
d8f2e2d8 2835#endif
6fbd15c8 2836 libretro_supports_bitmasks = false;
144493e8 2837
cada0a36 2838 /* Have to reset disks struct, otherwise
2839 * fnames/flabels will leak memory */
2840 disk_init();
38c2028e 2841}
c4052f4d 2842
2843#ifdef VITA
2844#include <psp2/kernel/threadmgr.h>
8822aea7 2845int usleep(unsigned long us)
c4052f4d 2846{
2847 sceKernelDelayThread(us);
2848}
2849#endif
130984f5 2850
8822aea7 2851void SysPrintf(const char *fmt, ...)
2852{
cada0a36 2853 va_list list;
2854 char msg[512];
130984f5 2855
cada0a36 2856 va_start(list, fmt);
2857 vsprintf(msg, fmt, list);
2858 va_end(list);
130984f5 2859
cada0a36 2860 if (log_cb)
2861 log_cb(RETRO_LOG_INFO, "%s", msg);
130984f5 2862}
d23e64c1 2863
2864/* Prints debug-level logs */
2865void SysDLog(const char *fmt, ...)
2866{
2867 va_list list;
2868 char msg[512];
2869
2870 va_start(list, fmt);
2871 vsprintf(msg, fmt, list);
2872 va_end(list);
2873
2874 if (log_cb)
2875 log_cb(RETRO_LOG_DEBUG, "%s", msg);
2876}