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