libretro: don't call dfinput_activate too early
[pcsx_rearmed.git] / frontend / libretro.c
1 /*
2  * (C) notaz, 2012
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
8 #define _GNU_SOURCE 1 // strcasestr
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <string.h>
12
13 #include "../libpcsxcore/misc.h"
14 #include "../libpcsxcore/psxcounters.h"
15 #include "../libpcsxcore/psxmem_map.h"
16 #include "../libpcsxcore/new_dynarec/new_dynarec.h"
17 #include "../libpcsxcore/cdrom.h"
18 #include "../libpcsxcore/cdriso.h"
19 #include "../libpcsxcore/cheat.h"
20 #include "../plugins/dfsound/out.h"
21 #include "../plugins/dfinput/externals.h"
22 #include "cspace.h"
23 #include "main.h"
24 #include "plugin.h"
25 #include "plugin_lib.h"
26 #include "revision.h"
27 #include "libretro.h"
28
29 static retro_video_refresh_t video_cb;
30 static retro_input_poll_t input_poll_cb;
31 static retro_input_state_t input_state_cb;
32 static retro_environment_t environ_cb;
33 static retro_audio_sample_batch_t audio_batch_cb;
34
35 static void *vout_buf;
36 static int vout_width, vout_height;
37 static int vout_doffs_old, vout_fb_dirty;
38 static bool vout_can_dupe;
39
40 static int samples_sent, samples_to_send;
41 static int plugins_opened;
42 static int is_pal_mode;
43
44 /* memory card data */
45 extern char Mcd1Data[MCD_SIZE];
46 extern char McdDisable[2];
47
48 /* PCSX ReARMed core calls and stuff */
49 int in_type1, in_type2;
50 int in_a1[2] = { 127, 127 }, in_a2[2] = { 127, 127 };
51 int in_keystate;
52 int in_enable_vibration;
53
54 /* PSX max resolution is 640x512, but with enhancement it's 1024x512 */
55 #define VOUT_MAX_WIDTH 1024
56 #define VOUT_MAX_HEIGHT 512
57
58 static void init_memcard(char *mcd_data)
59 {
60         unsigned off = 0;
61         unsigned i;
62
63         memset(mcd_data, 0, MCD_SIZE);
64
65         mcd_data[off++] = 'M';
66         mcd_data[off++] = 'C';
67         off += 0x7d;
68         mcd_data[off++] = 0x0e;
69
70         for (i = 0; i < 15; i++) {
71                 mcd_data[off++] = 0xa0;
72                 off += 0x07;
73                 mcd_data[off++] = 0xff;
74                 mcd_data[off++] = 0xff;
75                 off += 0x75;
76                 mcd_data[off++] = 0xa0;
77         }
78
79         for (i = 0; i < 20; i++) {
80                 mcd_data[off++] = 0xff;
81                 mcd_data[off++] = 0xff;
82                 mcd_data[off++] = 0xff;
83                 mcd_data[off++] = 0xff;
84                 off += 0x04;
85                 mcd_data[off++] = 0xff;
86                 mcd_data[off++] = 0xff;
87                 off += 0x76;
88         }
89 }
90
91 static int vout_open(void)
92 {
93         return 0;
94 }
95
96 static void vout_set_mode(int w, int h, int raw_w, int raw_h, int bpp)
97 {
98         vout_width = w;
99         vout_height = h;
100 }
101
102 #ifndef FRONTEND_SUPPORTS_RGB565
103 static void convert(void *buf, size_t bytes)
104 {
105         unsigned int i, v, *p = buf;
106
107         for (i = 0; i < bytes / 4; i++) {
108                 v = p[i];
109                 p[i] = (v & 0x001f001f) | ((v >> 1) & 0x7fe07fe0);
110         }
111 }
112 #endif
113
114 static void vout_flip(const void *vram, int stride, int bgr24, int w, int h)
115 {
116         unsigned short *dest = vout_buf;
117         const unsigned short *src = vram;
118         int dstride = vout_width, h1 = h;
119         int doffs;
120
121         if (vram == NULL) {
122                 // blanking
123                 memset(vout_buf, 0, dstride * h * 2);
124                 goto out;
125         }
126
127         doffs = (vout_height - h) * dstride;
128         doffs += (dstride - w) / 2 & ~1;
129         if (doffs != vout_doffs_old) {
130                 // clear borders
131                 memset(vout_buf, 0, dstride * h * 2);
132                 vout_doffs_old = doffs;
133         }
134         dest += doffs;
135
136         if (bgr24)
137         {
138                 // XXX: could we switch to RETRO_PIXEL_FORMAT_XRGB8888 here?
139                 for (; h1-- > 0; dest += dstride, src += stride)
140                 {
141                         bgr888_to_rgb565(dest, src, w * 3);
142                 }
143         }
144         else
145         {
146                 for (; h1-- > 0; dest += dstride, src += stride)
147                 {
148                         bgr555_to_rgb565(dest, src, w * 2);
149                 }
150         }
151
152 out:
153 #ifndef FRONTEND_SUPPORTS_RGB565
154         convert(vout_buf, vout_width * vout_height * 2);
155 #endif
156         vout_fb_dirty = 1;
157         pl_rearmed_cbs.flip_cnt++;
158 }
159
160 static void vout_close(void)
161 {
162 }
163
164 static void *pl_mmap(unsigned int size)
165 {
166         return psxMap(0, size, 0, MAP_TAG_VRAM);
167 }
168
169 static void pl_munmap(void *ptr, unsigned int size)
170 {
171         psxUnmap(ptr, size, MAP_TAG_VRAM);
172 }
173
174 struct rearmed_cbs pl_rearmed_cbs = {
175         .pl_vout_open = vout_open,
176         .pl_vout_set_mode = vout_set_mode,
177         .pl_vout_flip = vout_flip,
178         .pl_vout_close = vout_close,
179         .mmap = pl_mmap,
180         .munmap = pl_munmap,
181         /* from psxcounters */
182         .gpu_hcnt = &hSyncCount,
183         .gpu_frame_count = &frame_counter,
184 };
185
186 void pl_frame_limit(void)
187 {
188         /* called once per frame, make psxCpu->Execute() above return */
189         stop = 1;
190 }
191
192 void pl_timing_prepare(int is_pal)
193 {
194         is_pal_mode = is_pal;
195 }
196
197 void plat_trigger_vibrate(int is_strong)
198 {
199 }
200
201 void pl_update_gun(int *xn, int *yn, int *xres, int *yres, int *in)
202 {
203 }
204
205 /* sound calls */
206 static int snd_init(void)
207 {
208         return 0;
209 }
210
211 static void snd_finish(void)
212 {
213 }
214
215 static int snd_busy(void)
216 {
217         if (samples_to_send > samples_sent)
218                 return 0; /* give more samples */
219         else
220                 return 1;
221 }
222
223 static void snd_feed(void *buf, int bytes)
224 {
225         audio_batch_cb(buf, bytes / 4);
226         samples_sent += bytes / 4;
227 }
228
229 void out_register_libretro(struct out_driver *drv)
230 {
231         drv->name = "libretro";
232         drv->init = snd_init;
233         drv->finish = snd_finish;
234         drv->busy = snd_busy;
235         drv->feed = snd_feed;
236 }
237
238 /* libretro */
239 void retro_set_environment(retro_environment_t cb)
240 {
241    static const struct retro_variable vars[] = {
242       { "frameskip", "Frameskip; 0|1|2|3" },
243       { "region", "Region; Auto|NTSC|PAL" },
244 #ifdef __ARM_NEON__
245       { "neon_interlace_enable", "Enable interlacing mode(s); disabled|enabled" },
246 #if 0
247       { "neon_enhancement_enable", "Enhanced resolution (slow); disabled|enabled" },
248 #endif
249 #endif
250       { NULL, NULL },
251    };
252
253    environ_cb = cb;
254
255    cb(RETRO_ENVIRONMENT_SET_VARIABLES, (void*)vars);
256 }
257
258 void retro_set_video_refresh(retro_video_refresh_t cb) { video_cb = cb; }
259 void retro_set_audio_sample(retro_audio_sample_t cb) { (void)cb; }
260 void retro_set_audio_sample_batch(retro_audio_sample_batch_t cb) { audio_batch_cb = cb; }
261 void retro_set_input_poll(retro_input_poll_t cb) { input_poll_cb = cb; }
262 void retro_set_input_state(retro_input_state_t cb) { input_state_cb = cb; }
263
264 unsigned retro_api_version(void)
265 {
266         return RETRO_API_VERSION;
267 }
268
269 void retro_set_controller_port_device(unsigned port, unsigned device)
270 {
271 }
272
273 void retro_get_system_info(struct retro_system_info *info)
274 {
275         memset(info, 0, sizeof(*info));
276         info->library_name = "PCSX-ReARMed";
277         info->library_version = "r19";
278         info->valid_extensions = "bin|cue|img|mdf|pbp|toc|cbn|m3u";
279         info->need_fullpath = true;
280 }
281
282 void retro_get_system_av_info(struct retro_system_av_info *info)
283 {
284         memset(info, 0, sizeof(*info));
285         info->timing.fps            = is_pal_mode ? 50 : 60;
286         info->timing.sample_rate    = 44100;
287         info->geometry.base_width   = 320;
288         info->geometry.base_height  = 240;
289         info->geometry.max_width    = VOUT_MAX_WIDTH;
290         info->geometry.max_height   = VOUT_MAX_HEIGHT;
291         info->geometry.aspect_ratio = 4.0 / 3.0;
292 }
293
294 /* savestates */
295 size_t retro_serialize_size(void) 
296
297         // it's currently 4380651 bytes, but have some reserved for future
298         return 0x430000;
299 }
300
301 struct save_fp {
302         char *buf;
303         size_t pos;
304         int is_write;
305 };
306
307 static void *save_open(const char *name, const char *mode)
308 {
309         struct save_fp *fp;
310
311         if (name == NULL || mode == NULL)
312                 return NULL;
313
314         fp = malloc(sizeof(*fp));
315         if (fp == NULL)
316                 return NULL;
317
318         fp->buf = (char *)name;
319         fp->pos = 0;
320         fp->is_write = (mode[0] == 'w' || mode[1] == 'w');
321
322         return fp;
323 }
324
325 static int save_read(void *file, void *buf, u32 len)
326 {
327         struct save_fp *fp = file;
328         if (fp == NULL || buf == NULL)
329                 return -1;
330
331         memcpy(buf, fp->buf + fp->pos, len);
332         fp->pos += len;
333         return len;
334 }
335
336 static int save_write(void *file, const void *buf, u32 len)
337 {
338         struct save_fp *fp = file;
339         if (fp == NULL || buf == NULL)
340                 return -1;
341
342         memcpy(fp->buf + fp->pos, buf, len);
343         fp->pos += len;
344         return len;
345 }
346
347 static long save_seek(void *file, long offs, int whence)
348 {
349         struct save_fp *fp = file;
350         if (fp == NULL)
351                 return -1;
352
353         switch (whence) {
354         case SEEK_CUR:
355                 fp->pos += offs;
356                 return fp->pos;
357         case SEEK_SET:
358                 fp->pos = offs;
359                 return fp->pos;
360         default:
361                 return -1;
362         }
363 }
364
365 static void save_close(void *file)
366 {
367         struct save_fp *fp = file;
368         size_t r_size = retro_serialize_size();
369         if (fp == NULL)
370                 return;
371
372         if (fp->pos > r_size)
373                 SysPrintf("ERROR: save buffer overflow detected\n");
374         else if (fp->is_write && fp->pos < r_size)
375                 // make sure we don't save trash in leftover space
376                 memset(fp->buf + fp->pos, 0, r_size - fp->pos);
377         free(fp);
378 }
379
380 bool retro_serialize(void *data, size_t size)
381
382         int ret = SaveState(data);
383         return ret == 0 ? true : false;
384 }
385
386 bool retro_unserialize(const void *data, size_t size)
387 {
388         int ret = LoadState(data);
389         return ret == 0 ? true : false;
390 }
391
392 /* cheats */
393 void retro_cheat_reset(void)
394 {
395         ClearAllCheats();
396 }
397
398 void retro_cheat_set(unsigned index, bool enabled, const char *code)
399 {
400         char buf[256];
401         int ret;
402
403         // cheat funcs are destructive, need a copy..
404         strncpy(buf, code, sizeof(buf));
405         buf[sizeof(buf) - 1] = 0;
406
407         if (index < NumCheats)
408                 ret = EditCheat(index, "", buf);
409         else
410                 ret = AddCheat("", buf);
411
412         if (ret != 0)
413                 SysPrintf("Failed to set cheat %#u\n", index);
414         else if (index < NumCheats)
415                 Cheats[index].Enabled = enabled;
416 }
417
418 /* multidisk support */
419 static bool disk_ejected;
420 static unsigned int disk_current_index;
421 static unsigned int disk_count;
422 static struct disks_state {
423         char *fname;
424         int internal_index; // for multidisk eboots
425 } disks[8];
426
427 static bool disk_set_eject_state(bool ejected)
428 {
429         // weird PCSX API..
430         SetCdOpenCaseTime(ejected ? -1 : (time(NULL) + 2));
431         LidInterrupt();
432
433         disk_ejected = ejected;
434         return true;
435 }
436
437 static bool disk_get_eject_state(void)
438 {
439         /* can't be controlled by emulated software */
440         return disk_ejected;
441 }
442
443 static unsigned int disk_get_image_index(void)
444 {
445         return disk_current_index;
446 }
447
448 static bool disk_set_image_index(unsigned int index)
449 {
450         if (index >= sizeof(disks) / sizeof(disks[0]))
451                 return false;
452
453         CdromId[0] = '\0';
454         CdromLabel[0] = '\0';
455
456         if (disks[index].fname == NULL) {
457                 SysPrintf("missing disk #%u\n", index);
458                 CDR_shutdown();
459
460                 // RetroArch specifies "no disk" with index == count,
461                 // so don't fail here..
462                 disk_current_index = index;
463                 return true;
464         }
465
466         SysPrintf("switching to disk %u: \"%s\" #%d\n", index,
467                 disks[index].fname, disks[index].internal_index);
468
469         cdrIsoMultidiskSelect = disks[index].internal_index;
470         set_cd_image(disks[index].fname);
471         if (ReloadCdromPlugin() < 0) {
472                 SysPrintf("failed to load cdr plugin\n");
473                 return false;
474         }
475         if (CDR_open() < 0) {
476                 SysPrintf("failed to open cdr plugin\n");
477                 return false;
478         }
479
480         if (!disk_ejected) {
481                 SetCdOpenCaseTime(time(NULL) + 2);
482                 LidInterrupt();
483         }
484
485         disk_current_index = index;
486         return true;
487 }
488
489 static unsigned int disk_get_num_images(void)
490 {
491         return disk_count;
492 }
493
494 static bool disk_replace_image_index(unsigned index,
495         const struct retro_game_info *info)
496 {
497         char *old_fname;
498         bool ret = true;
499
500         if (index >= sizeof(disks) / sizeof(disks[0]))
501                 return false;
502
503         old_fname = disks[index].fname;
504         disks[index].fname = NULL;
505         disks[index].internal_index = 0;
506
507         if (info != NULL) {
508                 disks[index].fname = strdup(info->path);
509                 if (index == disk_current_index)
510                         ret = disk_set_image_index(index);
511         }
512
513         if (old_fname != NULL)
514                 free(old_fname);
515
516         return ret;
517 }
518
519 static bool disk_add_image_index(void)
520 {
521         if (disk_count >= 8)
522                 return false;
523
524         disk_count++;
525         return true;
526 }
527
528 static struct retro_disk_control_callback disk_control = {
529         .set_eject_state = disk_set_eject_state,
530         .get_eject_state = disk_get_eject_state,
531         .get_image_index = disk_get_image_index,
532         .set_image_index = disk_set_image_index,
533         .get_num_images = disk_get_num_images,
534         .replace_image_index = disk_replace_image_index,
535         .add_image_index = disk_add_image_index,
536 };
537
538 // just in case, maybe a win-rt port in the future?
539 #ifdef _WIN32
540 #define SLASH '\\'
541 #else
542 #define SLASH '/'
543 #endif
544
545 static char base_dir[PATH_MAX];
546
547 static bool read_m3u(const char *file)
548 {
549         char line[PATH_MAX];
550         char name[PATH_MAX];
551         FILE *f = fopen(file, "r");
552         if (!f)
553                 return false;
554
555         while (fgets(line, sizeof(line), f) && disk_count < sizeof(disks) / sizeof(disks[0])) {
556                 if (line[0] == '#')
557                         continue;
558                 char *carrige_return = strchr(line, '\r');
559                 if (carrige_return)
560                         *carrige_return = '\0';
561                 char *newline = strchr(line, '\n');
562                 if (newline)
563                         *newline = '\0';
564
565                 if (line[0] != '\0')
566                 {
567                         snprintf(name, sizeof(name), "%s%c%s", base_dir, SLASH, line);
568                         disks[disk_count++].fname = strdup(name);
569                 }
570         }
571
572         fclose(f);
573         return (disk_count != 0);
574 }
575
576 static void extract_directory(char *buf, const char *path, size_t size)
577 {
578    char *base;
579    strncpy(buf, path, size - 1);
580    buf[size - 1] = '\0';
581
582    base = strrchr(buf, '/');
583    if (!base)
584       base = strrchr(buf, '\\');
585
586    if (base)
587       *base = '\0';
588    else
589    {
590       buf[0] = '.';
591       buf[1] = '\0';
592    }
593 }
594
595 bool retro_load_game(const struct retro_game_info *info)
596 {
597         size_t i;
598         bool is_m3u = (strcasestr(info->path, ".m3u") != NULL);
599
600 #ifdef FRONTEND_SUPPORTS_RGB565
601         enum retro_pixel_format fmt = RETRO_PIXEL_FORMAT_RGB565;
602         if (environ_cb(RETRO_ENVIRONMENT_SET_PIXEL_FORMAT, &fmt)) {
603                 SysPrintf("RGB565 supported, using it\n");
604         }
605 #endif
606
607         if (info == NULL || info->path == NULL) {
608                 SysPrintf("info->path required\n");
609                 return false;
610         }
611
612         if (plugins_opened) {
613                 ClosePlugins();
614                 plugins_opened = 0;
615         }
616
617         for (i = 0; i < sizeof(disks) / sizeof(disks[0]); i++) {
618                 if (disks[i].fname != NULL) {
619                         free(disks[i].fname);
620                         disks[i].fname = NULL;
621                 }
622                 disks[i].internal_index = 0;
623         }
624
625         disk_current_index = 0;
626         extract_directory(base_dir, info->path, sizeof(base_dir));
627
628         if (is_m3u) {
629                 if (!read_m3u(info->path)) {
630                         SysPrintf("failed to read m3u file\n");
631                         return false;
632                 }
633         } else {
634                 disk_count = 1;
635                 disks[0].fname = strdup(info->path);
636         }
637
638         set_cd_image(disks[0].fname);
639
640         /* have to reload after set_cd_image for correct cdr plugin */
641         if (LoadPlugins() == -1) {
642                 SysPrintf("failed to load plugins\n");
643                 return false;
644         }
645
646         plugins_opened = 1;
647         NetOpened = 0;
648
649         if (OpenPlugins() == -1) {
650                 SysPrintf("failed to open plugins\n");
651                 return false;
652         }
653
654         plugin_call_rearmed_cbs();
655         dfinput_activate();
656
657         Config.PsxAuto = 1;
658         if (CheckCdrom() == -1) {
659                 SysPrintf("unsupported/invalid CD image: %s\n", info->path);
660                 return false;
661         }
662
663         SysReset();
664
665         if (LoadCdrom() == -1) {
666                 SysPrintf("could not load CD-ROM!\n");
667                 return false;
668         }
669         emu_on_new_cd(0);
670
671         // multidisk images
672         if (!is_m3u) {
673                 disk_count = cdrIsoMultidiskCount < 8 ? cdrIsoMultidiskCount : 8;
674                 for (i = 1; i < sizeof(disks) / sizeof(disks[0]) && i < cdrIsoMultidiskCount; i++) {
675                         disks[i].fname = strdup(info->path);
676                         disks[i].internal_index = i;
677                 }
678         }
679
680         return true;
681 }
682
683 bool retro_load_game_special(unsigned game_type, const struct retro_game_info *info, size_t num_info)
684 {
685         return false;
686 }
687
688 void retro_unload_game(void) 
689 {
690 }
691
692 unsigned retro_get_region(void)
693 {
694         return is_pal_mode ? RETRO_REGION_PAL : RETRO_REGION_NTSC;
695 }
696
697 void *retro_get_memory_data(unsigned id)
698 {
699         if (id == RETRO_MEMORY_SAVE_RAM)
700                 return Mcd1Data;
701         else
702                 return NULL;
703 }
704
705 size_t retro_get_memory_size(unsigned id)
706 {
707         if (id == RETRO_MEMORY_SAVE_RAM)
708                 return MCD_SIZE;
709         else
710                 return 0;
711 }
712
713 void retro_reset(void)
714 {
715         SysReset();
716 }
717
718 static const unsigned short retro_psx_map[] = {
719         [RETRO_DEVICE_ID_JOYPAD_B]      = 1 << DKEY_CROSS,
720         [RETRO_DEVICE_ID_JOYPAD_Y]      = 1 << DKEY_SQUARE,
721         [RETRO_DEVICE_ID_JOYPAD_SELECT] = 1 << DKEY_SELECT,
722         [RETRO_DEVICE_ID_JOYPAD_START]  = 1 << DKEY_START,
723         [RETRO_DEVICE_ID_JOYPAD_UP]     = 1 << DKEY_UP,
724         [RETRO_DEVICE_ID_JOYPAD_DOWN]   = 1 << DKEY_DOWN,
725         [RETRO_DEVICE_ID_JOYPAD_LEFT]   = 1 << DKEY_LEFT,
726         [RETRO_DEVICE_ID_JOYPAD_RIGHT]  = 1 << DKEY_RIGHT,
727         [RETRO_DEVICE_ID_JOYPAD_A]      = 1 << DKEY_CIRCLE,
728         [RETRO_DEVICE_ID_JOYPAD_X]      = 1 << DKEY_TRIANGLE,
729         [RETRO_DEVICE_ID_JOYPAD_L]      = 1 << DKEY_L1,
730         [RETRO_DEVICE_ID_JOYPAD_R]      = 1 << DKEY_R1,
731         [RETRO_DEVICE_ID_JOYPAD_L2]     = 1 << DKEY_L2,
732         [RETRO_DEVICE_ID_JOYPAD_R2]     = 1 << DKEY_R2,
733         [RETRO_DEVICE_ID_JOYPAD_L3]     = 1 << DKEY_L3,
734         [RETRO_DEVICE_ID_JOYPAD_R3]     = 1 << DKEY_R3,
735 };
736 #define RETRO_PSX_MAP_LEN (sizeof(retro_psx_map) / sizeof(retro_psx_map[0]))
737
738 static void update_variables(bool in_flight)
739 {
740    struct retro_variable var;
741    
742    var.value = NULL;
743    var.key = "frameskip";
744
745    if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value)
746       pl_rearmed_cbs.frameskip = atoi(var.value);
747
748    var.value = NULL;
749    var.key = "region";
750
751    if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value)
752    {
753       Config.PsxAuto = 0;
754       if (strcmp(var.value, "Automatic") == 0)
755          Config.PsxAuto = 1;
756       else if (strcmp(var.value, "NTSC") == 0)
757          Config.PsxType = 0;
758       else if (strcmp(var.value, "PAL") == 0)
759          Config.PsxType = 1;
760    }
761 #ifdef __ARM_NEON__
762    var.value = "NULL";
763    var.key = "neon_interlace_enable";
764
765    if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value)
766    {
767       if (strcmp(var.value, "disabled") == 0)
768          pl_rearmed_cbs.gpu_neon.allow_interlace = 0;
769       else if (strcmp(var.value, "enabled") == 0)
770          pl_rearmed_cbs.gpu_neon.allow_interlace = 1;
771    }
772
773 #if 0
774    var.value = NULL;
775    var.key = "neon_enhancement_enable";
776
777    if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value)
778    {
779       if (strcmp(var.value, "disabled") == 0)
780          pl_rearmed_cbs.gpu_neon.enhancement_enable = 0;
781       else if (strcmp(var.value, "enabled") == 0)
782          pl_rearmed_cbs.gpu_neon.enhancement_enable = 1;
783    }
784 #endif
785 #endif
786
787         if (in_flight) {
788                 // inform core things about possible config changes
789                 plugin_call_rearmed_cbs();
790
791                 if (GPU_open != NULL && GPU_close != NULL) {
792                         GPU_close();
793                         GPU_open(&gpuDisp, "PCSX", NULL);
794                 }
795
796                 dfinput_activate();
797         }
798 }
799
800 void retro_run(void) 
801 {
802         int i;
803
804         input_poll_cb();
805
806         bool updated = false;
807         if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE_UPDATE, &updated) && updated)
808                 update_variables(true);
809
810         in_keystate = 0;
811         for (i = 0; i < RETRO_PSX_MAP_LEN; i++)
812                 if (input_state_cb(1, RETRO_DEVICE_JOYPAD, 0, i))
813                         in_keystate |= retro_psx_map[i];
814         in_keystate <<= 16;
815         for (i = 0; i < RETRO_PSX_MAP_LEN; i++)
816                 if (input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, i))
817                         in_keystate |= retro_psx_map[i];
818
819         stop = 0;
820         psxCpu->Execute();
821
822         samples_to_send += is_pal_mode ? 44100 / 50 : 44100 / 60;
823
824         video_cb((vout_fb_dirty || !vout_can_dupe) ? vout_buf : NULL,
825                 vout_width, vout_height, vout_width * 2);
826         vout_fb_dirty = 0;
827 }
828
829 void retro_init(void)
830 {
831         const char *bios[] = { "scph1001", "scph5501", "scph7001" };
832         const char *dir;
833         char path[256];
834         FILE *f = NULL;
835         int i, ret, level;
836
837         ret = emu_core_preinit();
838         ret |= emu_core_init();
839         if (ret != 0) {
840                 SysPrintf("PCSX init failed.\n");
841                 exit(1);
842         }
843
844         vout_buf = malloc(VOUT_MAX_WIDTH * VOUT_MAX_HEIGHT * 2);
845
846         if (environ_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &dir) && dir)
847         {
848                 snprintf(Config.BiosDir, sizeof(Config.BiosDir), "%s/", dir);
849
850                 for (i = 0; i < sizeof(bios) / sizeof(bios[0]); i++) {
851                         snprintf(path, sizeof(path), "%s/%s.bin", dir, bios[i]);
852                         f = fopen(path, "r");
853                         if (f != NULL) {
854                                 snprintf(Config.Bios, sizeof(Config.Bios), "%s.bin", bios[i]);
855                                 break;
856                         }
857                 }
858         }
859         if (f != NULL) {
860                 SysPrintf("found BIOS file: %s\n", Config.Bios);
861                 fclose(f);
862         }
863         else
864    {
865                 SysPrintf("no BIOS files found.\n");
866       struct retro_message msg = 
867       {
868          "no BIOS found, expect bugs!",
869          180
870       };
871       environ_cb(RETRO_ENVIRONMENT_SET_MESSAGE, (void*)&msg);
872    }
873
874         level = 1;
875         environ_cb(RETRO_ENVIRONMENT_SET_PERFORMANCE_LEVEL, &level);
876
877         environ_cb(RETRO_ENVIRONMENT_GET_CAN_DUPE, &vout_can_dupe);
878         environ_cb(RETRO_ENVIRONMENT_SET_DISK_CONTROL_INTERFACE, &disk_control);
879
880         /* Set how much slower PSX CPU runs * 100 (so that 200 is 2 times)
881          * we have to do this because cache misses and some IO penalties
882          * are not emulated. Warning: changing this may break compatibility. */
883 #ifdef __ARM_ARCH_7A__
884         cycle_multiplier = 175;
885 #else
886         cycle_multiplier = 200;
887 #endif
888
889         McdDisable[0] = 0;
890         McdDisable[1] = 1;
891         init_memcard(Mcd1Data);
892
893         SaveFuncs.open = save_open;
894         SaveFuncs.read = save_read;
895         SaveFuncs.write = save_write;
896         SaveFuncs.seek = save_seek;
897         SaveFuncs.close = save_close;
898
899         update_variables(false);
900 }
901
902 void retro_deinit(void)
903 {
904         SysClose();
905         free(vout_buf);
906         vout_buf = NULL;
907 }