RetroArch/libretro_version_1.c

237 lines
6.2 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-01-07 16:46:50 +00:00
* Copyright (C) 2012-2015 - Michael Lelli
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <retro_inline.h>
#include <boolean.h>
#include "libretro.h"
2015-12-24 20:17:44 +00:00
#include "libretro_version_1.h"
#include "general.h"
#include "rewind.h"
2015-11-24 00:26:59 +00:00
#include "gfx/video_driver.h"
2015-11-23 18:40:09 +00:00
#include "audio/audio_driver.h"
#ifdef HAVE_NETPLAY
2015-12-23 20:25:28 +00:00
#include "netplay/netplay.h"
#endif
2015-12-05 15:54:03 +00:00
struct retro_callbacks retro_ctx;
static bool input_polled;
static int16_t input_state_poll(unsigned port,
unsigned device, unsigned idx, unsigned id)
{
if (core.poll_type == POLL_TYPE_LATE)
{
if (!input_polled)
input_poll();
input_polled = true;
}
return input_state(port, device, idx, id);
}
2015-01-08 17:39:17 +00:00
/**
* retro_set_default_callbacks:
* @data : pointer to retro_callbacks object
*
* Binds the libretro callbacks to default callback functions.
**/
2016-01-27 02:17:05 +00:00
static bool retro_set_default_callbacks(void *data)
{
2014-09-23 02:42:49 +00:00
struct retro_callbacks *cbs = (struct retro_callbacks*)data;
if (!cbs)
2016-01-27 02:17:05 +00:00
return false;
2014-09-23 02:42:49 +00:00
cbs->frame_cb = video_driver_frame;
cbs->sample_cb = audio_driver_sample;
cbs->sample_batch_cb = audio_driver_sample_batch;
cbs->state_cb = input_state_poll;
cbs->poll_cb = input_poll;
2016-01-27 02:17:05 +00:00
return true;
}
static bool retro_uninit_libretro_cbs(void)
2015-12-05 15:54:03 +00:00
{
struct retro_callbacks *cbs = (struct retro_callbacks*)&retro_ctx;
if (!cbs)
return false;
2015-12-05 15:54:03 +00:00
cbs->frame_cb = NULL;
cbs->sample_cb = NULL;
cbs->sample_batch_cb = NULL;
cbs->state_cb = NULL;
cbs->poll_cb = NULL;
return true;
2015-12-05 15:54:03 +00:00
}
static void input_poll_maybe(void)
{
if (core.poll_type == POLL_TYPE_NORMAL)
input_poll();
}
2015-01-08 17:39:17 +00:00
/**
2015-01-08 17:42:27 +00:00
* retro_init_libretro_cbs:
2015-01-08 17:39:17 +00:00
* @data : pointer to retro_callbacks object
*
* Initializes libretro callbacks, and binds the libretro callbacks
* to default callback functions.
**/
static bool retro_init_libretro_cbs(void *data)
{
2014-09-23 02:42:49 +00:00
struct retro_callbacks *cbs = (struct retro_callbacks*)data;
2016-01-24 00:59:43 +00:00
#ifdef HAVE_NETPLAY
2015-07-08 15:22:35 +00:00
global_t *global = global_get_ptr();
2016-01-24 00:59:43 +00:00
#endif
2014-09-23 02:42:49 +00:00
if (!cbs)
return false;
2014-09-23 02:42:49 +00:00
core.retro_set_video_refresh(video_driver_frame);
core.retro_set_audio_sample(audio_driver_sample);
core.retro_set_audio_sample_batch(audio_driver_sample_batch);
core.retro_set_input_state(input_state_poll);
core.retro_set_input_poll(input_poll_maybe);
2016-01-27 02:17:05 +00:00
core_ctl(CORE_CTL_SET_CBS, cbs);
#ifdef HAVE_NETPLAY
if (!netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_DATA_INITED, NULL))
return true;
/* Force normal poll type for netplay. */
core.poll_type = POLL_TYPE_NORMAL;
2015-07-27 15:18:10 +00:00
if (global->netplay.is_spectate)
{
core.retro_set_input_state(
2015-07-27 15:18:10 +00:00
(global->netplay.is_client ?
input_state_spectate_client : input_state_spectate)
);
}
else
{
core.retro_set_video_refresh(video_frame_net);
core.retro_set_audio_sample(audio_sample_net);
core.retro_set_audio_sample_batch(audio_sample_batch_net);
core.retro_set_input_state(input_state_net);
}
#endif
return true;
}
2015-01-08 17:39:17 +00:00
/**
* retro_set_rewind_callbacks:
*
* Sets the audio sampling callbacks based on whether or not
* rewinding is currently activated.
**/
2016-01-27 02:18:18 +00:00
static void retro_set_rewind_callbacks(void)
{
if (state_manager_frame_is_reversed())
{
core.retro_set_audio_sample(audio_driver_sample_rewind);
core.retro_set_audio_sample_batch(audio_driver_sample_batch_rewind);
}
else
{
core.retro_set_audio_sample(audio_driver_sample);
core.retro_set_audio_sample_batch(audio_driver_sample_batch);
}
}
2016-01-27 02:08:49 +00:00
bool core_ctl(enum core_ctl_state state, void *data)
{
switch (state)
{
case CORE_CTL_RETRO_CTX_FRAME_CB:
{
retro_ctx_frame_info_t *info = (retro_ctx_frame_info_t*)data;
if (!info || !retro_ctx.frame_cb)
return false;
retro_ctx.frame_cb(
info->data, info->width, info->height, info->pitch);
}
break;
case CORE_CTL_RETRO_CTX_POLL_CB:
if (!retro_ctx.poll_cb)
return false;
retro_ctx.poll_cb();
break;
case CORE_CTL_RETRO_GET_SYSTEM_AV_INFO:
{
struct retro_system_av_info *av_info = (struct retro_system_av_info*)data;
if (!av_info)
return false;
core.retro_get_system_av_info(av_info);
}
break;
case CORE_CTL_RETRO_RESET:
core.retro_reset();
break;
case CORE_CTL_RETRO_INIT:
core.retro_init();
break;
case CORE_CTL_RETRO_DEINIT:
core.retro_deinit();
break;
case CORE_CTL_RETRO_UNLOAD_GAME:
core.retro_unload_game();
break;
case CORE_CTL_RETRO_RUN:
2016-01-27 02:21:36 +00:00
switch (core.poll_type)
{
case POLL_TYPE_EARLY:
input_poll();
break;
case POLL_TYPE_LATE:
input_polled = false;
break;
}
core.retro_run();
break;
2016-01-27 02:17:05 +00:00
case CORE_CTL_SET_CBS:
return retro_set_default_callbacks(data);
2016-01-27 02:18:18 +00:00
case CORE_CTL_SET_CBS_REWIND:
retro_set_rewind_callbacks();
break;
case CORE_CTL_INIT:
return retro_init_libretro_cbs(data);
case CORE_CTL_DEINIT:
return retro_uninit_libretro_cbs();
2016-01-27 02:08:49 +00:00
case CORE_CTL_NONE:
default:
break;
}
return true;
}