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