2012-06-03 15:48:14 +00:00
|
|
|
#include "mednafen/mednafen.h"
|
2012-11-29 22:21:44 +00:00
|
|
|
#include "mednafen/mempatcher.h"
|
2012-06-03 15:48:14 +00:00
|
|
|
#include "mednafen/git.h"
|
|
|
|
#include "mednafen/general.h"
|
2013-04-27 14:40:24 +00:00
|
|
|
#include "mednafen/md5.h"
|
2012-06-03 15:48:14 +00:00
|
|
|
#include "libretro.h"
|
2014-06-18 20:10:07 +00:00
|
|
|
#include "thread.h"
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
static MDFNGI *game;
|
2014-04-21 22:25:50 +00:00
|
|
|
|
|
|
|
struct retro_perf_callback perf_cb;
|
|
|
|
retro_get_cpu_features_t perf_get_cpu_features_cb = NULL;
|
2014-04-20 14:32:46 +00:00
|
|
|
retro_log_printf_t log_cb;
|
2012-06-03 15:48:14 +00:00
|
|
|
static retro_video_refresh_t video_cb;
|
|
|
|
static retro_audio_sample_t audio_cb;
|
|
|
|
static retro_audio_sample_batch_t audio_batch_cb;
|
|
|
|
static retro_environment_t environ_cb;
|
|
|
|
static retro_input_poll_t input_poll_cb;
|
|
|
|
static retro_input_state_t input_state_cb;
|
|
|
|
|
2013-09-26 11:42:08 +00:00
|
|
|
static retro_rumble_interface rumble;
|
|
|
|
|
2013-02-25 19:39:39 +00:00
|
|
|
static bool overscan;
|
2012-11-16 14:12:25 +00:00
|
|
|
static double last_sound_rate;
|
|
|
|
static MDFN_PixelFormat last_pixel_format;
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
static MDFN_Surface *surf;
|
|
|
|
|
2012-06-15 23:00:17 +00:00
|
|
|
static bool failed_init;
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2014-01-20 23:19:08 +00:00
|
|
|
static void hookup_ports(bool force);
|
|
|
|
|
|
|
|
static bool initial_ports_hookup = false;
|
|
|
|
|
2012-10-13 13:31:49 +00:00
|
|
|
std::string retro_base_directory;
|
|
|
|
std::string retro_base_name;
|
2014-02-07 07:16:01 +00:00
|
|
|
std::string retro_save_directory;
|
2012-10-13 13:31:49 +00:00
|
|
|
|
2013-04-27 14:40:24 +00:00
|
|
|
static void set_basename(const char *path)
|
|
|
|
{
|
|
|
|
const char *base = strrchr(path, '/');
|
|
|
|
if (!base)
|
|
|
|
base = strrchr(path, '\\');
|
|
|
|
|
|
|
|
if (base)
|
|
|
|
retro_base_name = base + 1;
|
|
|
|
else
|
|
|
|
retro_base_name = path;
|
|
|
|
|
|
|
|
retro_base_name = retro_base_name.substr(0, retro_base_name.find_last_of('.'));
|
|
|
|
}
|
|
|
|
|
2014-06-18 20:01:17 +00:00
|
|
|
#include "mednafen/pce_fast/pcecd.h"
|
2014-06-18 19:55:15 +00:00
|
|
|
|
2012-10-20 23:47:02 +00:00
|
|
|
#define MEDNAFEN_CORE_NAME_MODULE "pce_fast"
|
2012-10-20 21:32:28 +00:00
|
|
|
#define MEDNAFEN_CORE_NAME "Mednafen PCE Fast"
|
2014-04-20 21:05:37 +00:00
|
|
|
#define MEDNAFEN_CORE_VERSION "v0.9.33.3"
|
2014-04-20 22:24:36 +00:00
|
|
|
#define MEDNAFEN_CORE_EXTENSIONS "pce|sgx|cue|ccd"
|
2012-10-20 23:47:02 +00:00
|
|
|
#define MEDNAFEN_CORE_TIMING_FPS 59.82
|
|
|
|
#define MEDNAFEN_CORE_GEOMETRY_BASE_W (game->nominal_width)
|
|
|
|
#define MEDNAFEN_CORE_GEOMETRY_BASE_H (game->nominal_height)
|
|
|
|
#define MEDNAFEN_CORE_GEOMETRY_MAX_W 512
|
|
|
|
#define MEDNAFEN_CORE_GEOMETRY_MAX_H 242
|
|
|
|
#define MEDNAFEN_CORE_GEOMETRY_ASPECT_RATIO (4.0 / 3.0)
|
|
|
|
#define FB_WIDTH 512
|
|
|
|
#define FB_HEIGHT 242
|
2012-10-22 12:34:14 +00:00
|
|
|
|
2013-10-01 12:28:59 +00:00
|
|
|
#define FB_MAX_HEIGHT FB_HEIGHT
|
|
|
|
|
|
|
|
// Wastes a little space for NTSC PSX, but better than dynamically allocating.
|
2012-10-22 15:00:42 +00:00
|
|
|
#ifdef WANT_16BPP
|
2013-10-01 12:28:59 +00:00
|
|
|
static uint16_t mednafen_buf[FB_WIDTH * FB_MAX_HEIGHT];
|
2012-10-22 15:00:42 +00:00
|
|
|
#else
|
2013-10-01 12:28:59 +00:00
|
|
|
static uint32_t mednafen_buf[FB_WIDTH * FB_MAX_HEIGHT];
|
2012-10-20 21:32:28 +00:00
|
|
|
#endif
|
2012-10-20 21:56:43 +00:00
|
|
|
const char *mednafen_core_str = MEDNAFEN_CORE_NAME;
|
2012-10-20 21:32:28 +00:00
|
|
|
|
|
|
|
static void check_system_specs(void)
|
|
|
|
{
|
2012-10-22 12:34:14 +00:00
|
|
|
unsigned level = 0;
|
|
|
|
environ_cb(RETRO_ENVIRONMENT_SET_PERFORMANCE_LEVEL, &level);
|
2012-10-20 21:32:28 +00:00
|
|
|
}
|
|
|
|
|
2014-04-21 22:25:50 +00:00
|
|
|
void retro_init(void)
|
2012-06-03 15:48:14 +00:00
|
|
|
{
|
2014-01-02 01:50:09 +00:00
|
|
|
struct retro_log_callback log;
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_LOG_INTERFACE, &log))
|
|
|
|
log_cb = log.log;
|
|
|
|
else
|
|
|
|
log_cb = NULL;
|
|
|
|
|
2012-11-29 22:21:44 +00:00
|
|
|
MDFNI_InitializeModule();
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2012-06-11 23:03:09 +00:00
|
|
|
const char *dir = NULL;
|
2012-06-15 23:00:17 +00:00
|
|
|
|
2012-06-11 23:03:09 +00:00
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &dir) && dir)
|
|
|
|
{
|
2012-10-13 13:31:49 +00:00
|
|
|
retro_base_directory = dir;
|
2012-11-10 01:20:13 +00:00
|
|
|
// Make sure that we don't have any lingering slashes, etc, as they break Windows.
|
2012-11-10 11:59:05 +00:00
|
|
|
size_t last = retro_base_directory.find_last_not_of("/\\");
|
|
|
|
if (last != std::string::npos)
|
|
|
|
last++;
|
|
|
|
|
|
|
|
retro_base_directory = retro_base_directory.substr(0, last);
|
2012-11-10 01:20:13 +00:00
|
|
|
|
|
|
|
MDFNI_Initialize(retro_base_directory.c_str());
|
2012-06-11 23:03:09 +00:00
|
|
|
}
|
2012-06-15 23:00:17 +00:00
|
|
|
else
|
2012-06-11 23:03:09 +00:00
|
|
|
{
|
2013-12-17 01:24:08 +00:00
|
|
|
/* TODO: Add proper fallback */
|
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_WARN, "System directory is not defined. Fallback on using same dir as ROM for system directory later ...\n");
|
2012-06-15 23:00:17 +00:00
|
|
|
failed_init = true;
|
2012-06-11 23:03:09 +00:00
|
|
|
}
|
2014-02-07 07:07:58 +00:00
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_SAVE_DIRECTORY, &dir) && dir)
|
|
|
|
{
|
2014-02-07 22:34:14 +00:00
|
|
|
// If save directory is defined use it, otherwise use system directory
|
|
|
|
retro_save_directory = *dir ? dir : retro_base_directory;
|
2014-02-07 07:07:58 +00:00
|
|
|
// Make sure that we don't have any lingering slashes, etc, as they break Windows.
|
|
|
|
size_t last = retro_save_directory.find_last_not_of("/\\");
|
|
|
|
if (last != std::string::npos)
|
|
|
|
last++;
|
|
|
|
|
|
|
|
retro_save_directory = retro_save_directory.substr(0, last);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* TODO: Add proper fallback */
|
|
|
|
if (log_cb)
|
2014-02-07 22:34:14 +00:00
|
|
|
log_cb(RETRO_LOG_WARN, "Save directory is not defined. Fallback on using SYSTEM directory ...\n");
|
2014-02-07 07:07:58 +00:00
|
|
|
retro_save_directory = retro_base_directory;
|
|
|
|
}
|
2012-06-09 22:46:41 +00:00
|
|
|
|
2012-10-22 12:34:14 +00:00
|
|
|
#if defined(WANT_16BPP) && defined(FRONTEND_SUPPORTS_RGB565)
|
|
|
|
enum retro_pixel_format rgb565 = RETRO_PIXEL_FORMAT_RGB565;
|
2013-12-17 01:24:08 +00:00
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_SET_PIXEL_FORMAT, &rgb565) && log_cb)
|
|
|
|
log_cb(RETRO_LOG_INFO, "Frontend supports RGB565 - will use that instead of XRGB1555.\n");
|
2012-10-22 12:34:14 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-21 22:25:50 +00:00
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_PERF_INTERFACE, &perf_cb))
|
|
|
|
perf_get_cpu_features_cb = perf_cb.get_cpu_features;
|
|
|
|
else
|
|
|
|
perf_get_cpu_features_cb = NULL;
|
|
|
|
|
2012-10-20 21:32:28 +00:00
|
|
|
check_system_specs();
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 14:32:46 +00:00
|
|
|
void retro_reset(void)
|
2012-06-03 15:48:14 +00:00
|
|
|
{
|
2012-11-16 14:12:25 +00:00
|
|
|
game->DoSimpleCommand(MDFN_MSC_RESET);
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool retro_load_game_special(unsigned, const struct retro_game_info *, size_t)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-05-24 15:26:57 +00:00
|
|
|
static void set_volume (uint32_t *ptr, unsigned number)
|
|
|
|
{
|
|
|
|
switch(number)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
*ptr = number;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-09 02:05:18 +00:00
|
|
|
static void check_variables(void)
|
|
|
|
{
|
|
|
|
struct retro_variable var = {0};
|
|
|
|
|
|
|
|
var.key = "pce_nospritelimit";
|
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var))
|
|
|
|
{
|
|
|
|
if (strcmp(var.value, "disabled") == 0)
|
|
|
|
setting_pce_fast_nospritelimit = 0;
|
|
|
|
else if (strcmp(var.value, "enabled") == 0)
|
|
|
|
setting_pce_fast_nospritelimit = 1;
|
|
|
|
}
|
2013-05-24 15:26:57 +00:00
|
|
|
|
2013-05-24 15:37:36 +00:00
|
|
|
var.key = "pce_keepaspect";
|
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var))
|
|
|
|
{
|
|
|
|
if (strcmp(var.value, "disabled") == 0)
|
|
|
|
{
|
|
|
|
setting_pce_keepaspect = 0;
|
|
|
|
game->fb_width = 512;
|
|
|
|
game->nominal_width = 341;
|
|
|
|
game->lcm_width = 341;
|
|
|
|
}
|
|
|
|
else if (strcmp(var.value, "enabled") == 0)
|
|
|
|
{
|
|
|
|
setting_pce_keepaspect = 1;
|
|
|
|
game->fb_width = 682;
|
|
|
|
game->nominal_width = 288;
|
|
|
|
game->lcm_width = 1024;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 15:26:57 +00:00
|
|
|
bool do_cdsettings = false;
|
|
|
|
var.key = "pce_cddavolume";
|
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var))
|
|
|
|
{
|
|
|
|
do_cdsettings = true;
|
|
|
|
setting_pce_fast_cddavolume = atoi(var.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
var.key = "pce_adpcmvolume";
|
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var))
|
|
|
|
{
|
|
|
|
do_cdsettings = true;
|
|
|
|
setting_pce_fast_adpcmvolume = atoi(var.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
var.key = "pce_cdpsgvolume";
|
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var))
|
|
|
|
{
|
|
|
|
do_cdsettings = true;
|
|
|
|
setting_pce_fast_cdpsgvolume = atoi(var.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
var.key = "pce_cdspeed";
|
|
|
|
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var))
|
|
|
|
{
|
|
|
|
do_cdsettings = true;
|
|
|
|
setting_pce_fast_cdspeed = atoi(var.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_cdsettings)
|
|
|
|
{
|
2014-04-21 22:31:36 +00:00
|
|
|
PCE_Fast::PCECD_Settings settings = {0};
|
2014-06-05 16:06:15 +00:00
|
|
|
settings.CDDA_Volume = (double)setting_pce_fast_cddavolume / 100;
|
2013-05-24 15:26:57 +00:00
|
|
|
settings.CD_Speed = setting_pce_fast_cdspeed;
|
2014-06-05 16:06:15 +00:00
|
|
|
settings.ADPCM_Volume = (double)setting_pce_fast_adpcmvolume / 100;
|
2013-05-24 15:26:57 +00:00
|
|
|
|
2013-12-17 01:24:08 +00:00
|
|
|
if (PCECD_SetSettings(&settings) && log_cb)
|
|
|
|
log_cb(RETRO_LOG_INFO, "PCE CD Audio settings changed.\n");
|
2013-05-24 15:26:57 +00:00
|
|
|
}
|
2013-04-09 02:05:18 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 03:23:42 +00:00
|
|
|
#define MAX_PLAYERS 5
|
|
|
|
#define MAX_BUTTONS 13
|
|
|
|
static uint8_t input_buf[MAX_PLAYERS][2] = {0};
|
|
|
|
|
|
|
|
static void hookup_ports(bool force)
|
|
|
|
{
|
|
|
|
MDFNGI *currgame = game;
|
|
|
|
|
|
|
|
if (initial_ports_hookup && !force)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Possible endian bug ...
|
|
|
|
for (unsigned i = 0; i < MAX_PLAYERS; i++)
|
|
|
|
currgame->SetInput(i, "gamepad", &input_buf[i][0]);
|
|
|
|
|
|
|
|
initial_ports_hookup = true;
|
|
|
|
}
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
bool retro_load_game(const struct retro_game_info *info)
|
|
|
|
{
|
2012-06-15 23:00:17 +00:00
|
|
|
if (failed_init)
|
|
|
|
return false;
|
|
|
|
|
2012-10-20 23:47:02 +00:00
|
|
|
#ifdef WANT_32BPP
|
2012-06-16 13:07:18 +00:00
|
|
|
enum retro_pixel_format fmt = RETRO_PIXEL_FORMAT_XRGB8888;
|
2013-12-17 10:08:34 +00:00
|
|
|
if (!environ_cb(RETRO_ENVIRONMENT_SET_PIXEL_FORMAT, &fmt))
|
2012-10-21 00:37:11 +00:00
|
|
|
{
|
2013-12-17 01:24:08 +00:00
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_ERROR, "Pixel format XRGB8888 not supported by platform, cannot use %s.\n", MEDNAFEN_CORE_NAME);
|
2012-10-21 00:37:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-20 23:47:02 +00:00
|
|
|
#endif
|
2012-06-16 13:07:18 +00:00
|
|
|
|
2013-02-25 19:39:39 +00:00
|
|
|
overscan = false;
|
|
|
|
environ_cb(RETRO_ENVIRONMENT_GET_OVERSCAN, &overscan);
|
|
|
|
|
2013-04-27 14:40:24 +00:00
|
|
|
set_basename(info->path);
|
2012-10-13 13:31:49 +00:00
|
|
|
|
2012-10-20 23:47:02 +00:00
|
|
|
game = MDFNI_LoadGame(MEDNAFEN_CORE_NAME_MODULE, info->path);
|
2012-09-23 09:52:47 +00:00
|
|
|
if (!game)
|
|
|
|
return false;
|
|
|
|
|
2012-08-22 19:38:30 +00:00
|
|
|
MDFN_PixelFormat pix_fmt(MDFN_COLORSPACE_RGB, 16, 8, 0, 24);
|
2012-11-16 14:12:25 +00:00
|
|
|
memset(&last_pixel_format, 0, sizeof(MDFN_PixelFormat));
|
2013-10-01 12:28:59 +00:00
|
|
|
|
2012-10-22 15:00:42 +00:00
|
|
|
surf = new MDFN_Surface(mednafen_buf, FB_WIDTH, FB_HEIGHT, FB_WIDTH, pix_fmt);
|
2012-10-13 13:31:49 +00:00
|
|
|
|
2013-09-17 00:03:54 +00:00
|
|
|
check_variables();
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
return game;
|
|
|
|
}
|
|
|
|
|
|
|
|
void retro_unload_game()
|
|
|
|
{
|
2013-01-19 09:22:57 +00:00
|
|
|
if (!game)
|
|
|
|
return;
|
2012-11-29 22:21:44 +00:00
|
|
|
|
2014-04-20 19:44:56 +00:00
|
|
|
MDFNI_CloseGame();
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2013-04-09 03:23:42 +00:00
|
|
|
|
2012-07-25 01:17:14 +00:00
|
|
|
|
2012-06-03 16:58:46 +00:00
|
|
|
// Hardcoded for PSX. No reason to parse lots of structures ...
|
|
|
|
// See mednafen/psx/input/gamepad.cpp
|
2012-10-20 21:32:28 +00:00
|
|
|
static void update_input(void)
|
2012-06-03 16:58:46 +00:00
|
|
|
{
|
2014-04-20 19:44:56 +00:00
|
|
|
MDFNGI *currgame = (MDFNGI*)game;
|
2012-10-20 23:47:02 +00:00
|
|
|
|
|
|
|
static unsigned map[] = {
|
2012-11-22 20:03:38 +00:00
|
|
|
RETRO_DEVICE_ID_JOYPAD_A,
|
2012-10-20 23:47:02 +00:00
|
|
|
RETRO_DEVICE_ID_JOYPAD_B,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_SELECT,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_START,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_UP,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_RIGHT,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_DOWN,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_LEFT,
|
2012-11-22 20:03:38 +00:00
|
|
|
RETRO_DEVICE_ID_JOYPAD_Y,
|
2012-10-20 23:47:02 +00:00
|
|
|
RETRO_DEVICE_ID_JOYPAD_X,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_L,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_R,
|
|
|
|
RETRO_DEVICE_ID_JOYPAD_L2
|
|
|
|
};
|
|
|
|
|
2013-04-09 03:23:42 +00:00
|
|
|
for (unsigned j = 0; j < MAX_PLAYERS; j++)
|
2012-10-20 23:47:02 +00:00
|
|
|
{
|
2013-04-09 03:23:42 +00:00
|
|
|
uint16_t input_state = 0;
|
|
|
|
for (unsigned i = 0; i < MAX_BUTTONS; i++)
|
|
|
|
input_state |= input_state_cb(j, RETRO_DEVICE_JOYPAD, 0, map[i]) ? (1 << i) : 0;
|
2012-10-20 23:47:02 +00:00
|
|
|
|
2013-04-09 03:23:42 +00:00
|
|
|
// Input data must be little endian.
|
|
|
|
input_buf[j][0] = (input_state >> 0) & 0xff;
|
|
|
|
input_buf[j][1] = (input_state >> 8) & 0xff;
|
2012-10-20 23:47:02 +00:00
|
|
|
}
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2012-09-20 19:38:19 +00:00
|
|
|
static uint64_t video_frames, audio_frames;
|
|
|
|
|
2014-06-18 19:55:15 +00:00
|
|
|
void retro_run(void)
|
2012-06-03 15:48:14 +00:00
|
|
|
{
|
2014-06-18 19:55:15 +00:00
|
|
|
MDFNGI *curgame = (MDFNGI*)game;
|
2012-11-29 22:21:44 +00:00
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
input_poll_cb();
|
|
|
|
|
2012-06-03 16:58:46 +00:00
|
|
|
update_input();
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
static int16_t sound_buf[0x10000];
|
2013-10-01 12:28:59 +00:00
|
|
|
static MDFN_Rect rects[FB_MAX_HEIGHT];
|
2012-06-16 13:07:18 +00:00
|
|
|
rects[0].w = ~0;
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2012-07-25 01:17:14 +00:00
|
|
|
EmulateSpecStruct spec = {0};
|
2012-06-03 15:48:14 +00:00
|
|
|
spec.surface = surf;
|
|
|
|
spec.SoundRate = 44100;
|
|
|
|
spec.SoundBuf = sound_buf;
|
|
|
|
spec.LineWidths = rects;
|
|
|
|
spec.SoundBufMaxSize = sizeof(sound_buf) / 2;
|
|
|
|
spec.SoundVolume = 1.0;
|
|
|
|
spec.soundmultiplier = 1.0;
|
2012-11-16 14:12:25 +00:00
|
|
|
spec.SoundBufSize = 0;
|
|
|
|
spec.VideoFormatChanged = false;
|
|
|
|
spec.SoundFormatChanged = false;
|
|
|
|
|
2013-01-19 09:22:57 +00:00
|
|
|
if (memcmp(&last_pixel_format, &spec.surface->format, sizeof(MDFN_PixelFormat)))
|
2012-11-16 14:12:25 +00:00
|
|
|
{
|
|
|
|
spec.VideoFormatChanged = TRUE;
|
|
|
|
|
|
|
|
last_pixel_format = spec.surface->format;
|
|
|
|
}
|
|
|
|
|
2013-01-19 09:22:57 +00:00
|
|
|
if (spec.SoundRate != last_sound_rate)
|
2012-11-16 14:12:25 +00:00
|
|
|
{
|
|
|
|
spec.SoundFormatChanged = true;
|
|
|
|
last_sound_rate = spec.SoundRate;
|
|
|
|
}
|
|
|
|
|
2012-11-29 22:21:44 +00:00
|
|
|
curgame->Emulate(&spec);
|
2012-11-16 14:12:25 +00:00
|
|
|
|
2012-11-29 22:21:44 +00:00
|
|
|
int16 *const SoundBuf = spec.SoundBuf + spec.SoundBufSizeALMS * curgame->soundchan;
|
2012-11-16 14:12:25 +00:00
|
|
|
int32 SoundBufSize = spec.SoundBufSize - spec.SoundBufSizeALMS;
|
|
|
|
const int32 SoundBufMaxSize = spec.SoundBufMaxSize - spec.SoundBufSizeALMS;
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2012-11-16 14:12:25 +00:00
|
|
|
spec.SoundBufSize = spec.SoundBufSizeALMS + SoundBufSize;
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2012-11-21 01:27:23 +00:00
|
|
|
unsigned width = spec.DisplayRect.w;
|
|
|
|
unsigned height = spec.DisplayRect.h;
|
2012-10-20 21:56:43 +00:00
|
|
|
|
2013-02-23 23:45:47 +00:00
|
|
|
#if defined(WANT_32BPP)
|
2012-11-21 01:28:26 +00:00
|
|
|
const uint32_t *pix = surf->pixels;
|
2012-11-21 01:27:23 +00:00
|
|
|
video_cb(pix, width, height, FB_WIDTH << 2);
|
2012-10-22 12:34:14 +00:00
|
|
|
#elif defined(WANT_16BPP)
|
2012-10-20 23:47:02 +00:00
|
|
|
const uint16_t *pix = surf->pixels16;
|
|
|
|
video_cb(pix, width, height, FB_WIDTH << 1);
|
2012-10-20 21:56:43 +00:00
|
|
|
#endif
|
2012-06-03 15:48:14 +00:00
|
|
|
|
2012-09-20 19:38:19 +00:00
|
|
|
video_frames++;
|
|
|
|
audio_frames += spec.SoundBufSize;
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
audio_batch_cb(spec.SoundBuf, spec.SoundBufSize);
|
2013-04-09 02:05:18 +00:00
|
|
|
|
|
|
|
bool updated = false;
|
|
|
|
if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE_UPDATE, &updated) && updated)
|
|
|
|
check_variables();
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void retro_get_system_info(struct retro_system_info *info)
|
|
|
|
{
|
|
|
|
memset(info, 0, sizeof(*info));
|
2012-10-20 21:32:28 +00:00
|
|
|
info->library_name = MEDNAFEN_CORE_NAME;
|
2012-10-22 12:34:14 +00:00
|
|
|
info->library_version = MEDNAFEN_CORE_VERSION;
|
2012-06-03 15:48:14 +00:00
|
|
|
info->need_fullpath = true;
|
2012-10-20 21:56:43 +00:00
|
|
|
info->valid_extensions = MEDNAFEN_CORE_EXTENSIONS;
|
2012-10-20 23:47:02 +00:00
|
|
|
info->block_extract = false;
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void retro_get_system_av_info(struct retro_system_av_info *info)
|
|
|
|
{
|
|
|
|
memset(info, 0, sizeof(*info));
|
2013-10-01 12:28:59 +00:00
|
|
|
info->timing.fps = MEDNAFEN_CORE_TIMING_FPS;
|
2012-06-03 15:48:14 +00:00
|
|
|
info->timing.sample_rate = 44100;
|
2012-10-20 21:56:43 +00:00
|
|
|
info->geometry.base_width = MEDNAFEN_CORE_GEOMETRY_BASE_W;
|
|
|
|
info->geometry.base_height = MEDNAFEN_CORE_GEOMETRY_BASE_H;
|
|
|
|
info->geometry.max_width = MEDNAFEN_CORE_GEOMETRY_MAX_W;
|
|
|
|
info->geometry.max_height = MEDNAFEN_CORE_GEOMETRY_MAX_H;
|
|
|
|
info->geometry.aspect_ratio = MEDNAFEN_CORE_GEOMETRY_ASPECT_RATIO;
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2012-09-20 19:38:19 +00:00
|
|
|
void retro_deinit()
|
|
|
|
{
|
|
|
|
delete surf;
|
|
|
|
surf = NULL;
|
|
|
|
|
2013-12-17 01:24:08 +00:00
|
|
|
if (log_cb)
|
|
|
|
{
|
|
|
|
log_cb(RETRO_LOG_INFO, "[%s]: Samples / Frame: %.5f\n",
|
|
|
|
mednafen_core_str, (double)audio_frames / video_frames);
|
|
|
|
log_cb(RETRO_LOG_INFO, "[%s]: Estimated FPS: %.5f\n",
|
|
|
|
mednafen_core_str, (double)video_frames * 44100 / audio_frames);
|
|
|
|
}
|
2012-09-20 19:38:19 +00:00
|
|
|
}
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
unsigned retro_get_region(void)
|
|
|
|
{
|
2013-10-01 12:28:59 +00:00
|
|
|
return RETRO_REGION_NTSC; // FIXME: Regions for other cores.
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned retro_api_version(void)
|
|
|
|
{
|
|
|
|
return RETRO_API_VERSION;
|
|
|
|
}
|
|
|
|
|
2012-07-25 01:17:14 +00:00
|
|
|
void retro_set_controller_port_device(unsigned in_port, unsigned device)
|
|
|
|
{
|
2014-05-01 00:17:23 +00:00
|
|
|
MDFNGI *currgame = (MDFNGI*)game;
|
|
|
|
|
|
|
|
if (!currgame)
|
2012-08-17 21:01:08 +00:00
|
|
|
return;
|
|
|
|
|
2014-05-01 00:32:39 +00:00
|
|
|
switch(device)
|
|
|
|
{
|
|
|
|
case RETRO_DEVICE_JOYPAD:
|
|
|
|
if (currgame->SetInput)
|
|
|
|
currgame->SetInput(in_port, "gamepad", &input_buf[in_port][0]);
|
|
|
|
break;
|
|
|
|
case RETRO_DEVICE_MOUSE:
|
|
|
|
if (currgame->SetInput)
|
|
|
|
currgame->SetInput(in_port, "mouse", &input_buf[in_port][0]);
|
|
|
|
break;
|
|
|
|
}
|
2012-07-25 01:17:14 +00:00
|
|
|
}
|
2012-06-03 15:48:14 +00:00
|
|
|
|
|
|
|
void retro_set_environment(retro_environment_t cb)
|
|
|
|
{
|
|
|
|
environ_cb = cb;
|
2013-04-09 02:05:18 +00:00
|
|
|
|
|
|
|
static const struct retro_variable vars[] = {
|
|
|
|
{ "pce_nospritelimit", "No Sprite Limit; disabled|enabled" },
|
2013-05-24 15:37:36 +00:00
|
|
|
{ "pce_keepaspect", "Keep Aspect; enabled|disabled" },
|
2014-06-05 16:06:15 +00:00
|
|
|
{ "pce_cddavolume", "(CD) CDDA Volume; 0|10|20|30|40|50|60|70|80|90|100" },
|
|
|
|
{ "pce_adpcmvolume", "(CD) ADPCM Volume; 0|10|20|30|40|50|60|70|80|90|100" },
|
|
|
|
{ "pce_cdpsgvolume", "(CD) CD PSG Volume; 0|10|20|30|40|50|60|70|80|90|100" },
|
2013-05-24 15:26:57 +00:00
|
|
|
{ "pce_cdspeed", "(CD) CD Speed; 1|2|4|8" },
|
2013-04-09 02:05:18 +00:00
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
2014-05-01 00:43:04 +00:00
|
|
|
|
|
|
|
static const struct retro_controller_description pads[] = {
|
|
|
|
{ "PCE Joypad", RETRO_DEVICE_JOYPAD },
|
|
|
|
{ "Mouse", RETRO_DEVICE_MOUSE },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct retro_controller_info ports[] = {
|
|
|
|
{ pads, 2 },
|
|
|
|
{ pads, 2 },
|
|
|
|
{ 0 },
|
|
|
|
};
|
|
|
|
|
2013-05-19 17:55:15 +00:00
|
|
|
cb(RETRO_ENVIRONMENT_SET_VARIABLES, (void*)vars);
|
2014-05-01 00:43:04 +00:00
|
|
|
environ_cb(RETRO_ENVIRONMENT_SET_CONTROLLER_INFO, (void*)ports);
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void retro_set_audio_sample(retro_audio_sample_t cb)
|
|
|
|
{
|
|
|
|
audio_cb = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void retro_set_audio_sample_batch(retro_audio_sample_batch_t cb)
|
|
|
|
{
|
|
|
|
audio_batch_cb = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void retro_set_input_poll(retro_input_poll_t cb)
|
|
|
|
{
|
|
|
|
input_poll_cb = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void retro_set_input_state(retro_input_state_t cb)
|
|
|
|
{
|
|
|
|
input_state_cb = cb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void retro_set_video_refresh(retro_video_refresh_t cb)
|
|
|
|
{
|
|
|
|
video_cb = cb;
|
|
|
|
}
|
|
|
|
|
2012-10-20 23:47:02 +00:00
|
|
|
static size_t serialize_size;
|
|
|
|
|
2012-06-03 15:48:14 +00:00
|
|
|
size_t retro_serialize_size(void)
|
|
|
|
{
|
2014-04-20 19:44:56 +00:00
|
|
|
MDFNGI *curgame = (MDFNGI*)game;
|
2012-10-21 01:46:12 +00:00
|
|
|
//if (serialize_size)
|
|
|
|
// return serialize_size;
|
|
|
|
|
2012-11-29 22:21:44 +00:00
|
|
|
if (!curgame->StateAction)
|
2012-10-21 01:46:12 +00:00
|
|
|
{
|
2013-12-17 01:24:08 +00:00
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_WARN, "[mednafen]: Module %s doesn't support save states.\n", curgame->shortname);
|
2012-10-21 01:46:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
StateMem st;
|
|
|
|
memset(&st, 0, sizeof(st));
|
|
|
|
|
2012-11-14 00:41:02 +00:00
|
|
|
if (!MDFNSS_SaveSM(&st, 0, 0, NULL, NULL, NULL))
|
2012-10-21 01:46:12 +00:00
|
|
|
{
|
2013-12-17 01:24:08 +00:00
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_WARN, "[mednafen]: Module %s doesn't support save states.\n", curgame->shortname);
|
2012-10-21 01:46:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(st.data);
|
|
|
|
return serialize_size = st.len;
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2012-10-21 01:46:12 +00:00
|
|
|
bool retro_serialize(void *data, size_t size)
|
2012-06-03 15:48:14 +00:00
|
|
|
{
|
2012-10-21 01:46:12 +00:00
|
|
|
StateMem st;
|
|
|
|
memset(&st, 0, sizeof(st));
|
|
|
|
st.data = (uint8_t*)data;
|
|
|
|
st.malloced = size;
|
|
|
|
|
2012-11-14 00:41:02 +00:00
|
|
|
return MDFNSS_SaveSM(&st, 0, 0, NULL, NULL, NULL);
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
2012-10-21 01:46:12 +00:00
|
|
|
bool retro_unserialize(const void *data, size_t size)
|
2012-06-03 15:48:14 +00:00
|
|
|
{
|
2012-10-21 01:46:12 +00:00
|
|
|
StateMem st;
|
|
|
|
memset(&st, 0, sizeof(st));
|
|
|
|
st.data = (uint8_t*)data;
|
|
|
|
st.len = size;
|
|
|
|
|
2012-11-14 00:41:02 +00:00
|
|
|
return MDFNSS_LoadSM(&st, 0, 0);
|
2012-06-03 15:48:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *retro_get_memory_data(unsigned)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t retro_get_memory_size(unsigned)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void retro_cheat_reset(void)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void retro_cheat_set(unsigned, bool, const char *)
|
|
|
|
{}
|
2014-06-18 20:10:07 +00:00
|
|
|
|
|
|
|
MDFN_Thread *MDFND_CreateThread(int (*fn)(void *), void *data)
|
|
|
|
{
|
|
|
|
return (MDFN_Thread*)sthread_create((void (*)(void*))fn, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_WaitThread(MDFN_Thread *thr, int *val)
|
|
|
|
{
|
|
|
|
sthread_join((sthread_t*)thr);
|
|
|
|
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
*val = 0;
|
|
|
|
fprintf(stderr, "WaitThread relies on return value.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_KillThread(MDFN_Thread *)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Killing a thread is a BAD IDEA!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
MDFN_Mutex *MDFND_CreateMutex()
|
|
|
|
{
|
|
|
|
return (MDFN_Mutex*)slock_new();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_DestroyMutex(MDFN_Mutex *lock)
|
|
|
|
{
|
|
|
|
slock_free((slock_t*)lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
int MDFND_LockMutex(MDFN_Mutex *lock)
|
|
|
|
{
|
|
|
|
slock_lock((slock_t*)lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MDFND_UnlockMutex(MDFN_Mutex *lock)
|
|
|
|
{
|
|
|
|
slock_unlock((slock_t*)lock);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
static void sanitize_path(std::string &path)
|
|
|
|
{
|
|
|
|
size_t size = path.size();
|
|
|
|
for (size_t i = 0; i < size; i++)
|
|
|
|
if (path[i] == '/')
|
|
|
|
path[i] = '\\';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Use a simpler approach to make sure that things go right for libretro.
|
|
|
|
std::string MDFN_MakeFName(MakeFName_Type type, int id1, const char *cd1)
|
|
|
|
{
|
|
|
|
char slash;
|
|
|
|
#ifdef _WIN32
|
|
|
|
slash = '\\';
|
|
|
|
#else
|
|
|
|
slash = '/';
|
|
|
|
#endif
|
|
|
|
std::string ret;
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case MDFNMKF_SAV:
|
|
|
|
ret = retro_save_directory +slash + retro_base_name +
|
|
|
|
std::string(".") +
|
|
|
|
#ifndef _XBOX
|
|
|
|
md5_context::asciistr(MDFNGameInfo->MD5, 0) + std::string(".") +
|
|
|
|
#endif
|
|
|
|
std::string(cd1);
|
|
|
|
break;
|
|
|
|
case MDFNMKF_FIRMWARE:
|
|
|
|
ret = retro_base_directory + slash + std::string(cd1);
|
|
|
|
#ifdef _WIN32
|
|
|
|
sanitize_path(ret); // Because Windows path handling is mongoloid.
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_INFO, "MDFN_MakeFName: %s\n", ret.c_str());
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_DispMessage(unsigned char *str)
|
|
|
|
{
|
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_INFO, "%s\n", str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_Message(const char *str)
|
|
|
|
{
|
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_INFO, "%s\n", str);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_MidSync(const EmulateSpecStruct *)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void MDFN_MidLineUpdate(EmulateSpecStruct *espec, int y)
|
|
|
|
{
|
|
|
|
//MDFND_MidLineUpdate(espec, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_PrintError(const char* err)
|
|
|
|
{
|
|
|
|
if (log_cb)
|
|
|
|
log_cb(RETRO_LOG_ERROR, "%s\n", err);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MDFND_Sleep(unsigned int time)
|
|
|
|
{
|
|
|
|
retro_sleep(time);
|
|
|
|
}
|