mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
415 lines
9.2 KiB
C
415 lines
9.2 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
|
* 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 <lists/string_list.h>
|
|
#include <libretro.h>
|
|
|
|
#include "dynamic.h"
|
|
#include "core.h"
|
|
#include "general.h"
|
|
#include "msg_hash.h"
|
|
#include "managers/state_manager.h"
|
|
#include "system.h"
|
|
#include "gfx/video_driver.h"
|
|
#include "audio/audio_driver.h"
|
|
|
|
#ifdef HAVE_NETPLAY
|
|
#include "network/netplay/netplay.h"
|
|
#endif
|
|
|
|
static struct retro_core_t core;
|
|
static unsigned core_poll_type;
|
|
static bool core_input_polled;
|
|
static bool core_has_set_input_descriptors = false;
|
|
static struct retro_callbacks retro_ctx;
|
|
|
|
static void core_input_state_poll_maybe(void)
|
|
{
|
|
if (core_poll_type == POLL_TYPE_NORMAL)
|
|
input_poll();
|
|
}
|
|
|
|
static int16_t core_input_state_poll(unsigned port,
|
|
unsigned device, unsigned idx, unsigned id)
|
|
{
|
|
if (core_poll_type == POLL_TYPE_LATE)
|
|
{
|
|
if (!core_input_polled)
|
|
input_poll();
|
|
|
|
core_input_polled = true;
|
|
}
|
|
return input_state(port, device, idx, id);
|
|
}
|
|
|
|
void core_set_input_state(retro_ctx_input_state_info_t *info)
|
|
{
|
|
core.retro_set_input_state(info->cb);
|
|
}
|
|
|
|
/**
|
|
* core_init_libretro_cbs:
|
|
* @data : pointer to retro_callbacks object
|
|
*
|
|
* Initializes libretro callbacks, and binds the libretro callbacks
|
|
* to default callback functions.
|
|
**/
|
|
static bool core_init_libretro_cbs(void *data)
|
|
{
|
|
struct retro_callbacks *cbs = (struct retro_callbacks*)data;
|
|
#ifdef HAVE_NETPLAY
|
|
global_t *global = global_get_ptr();
|
|
#endif
|
|
|
|
if (!cbs)
|
|
return false;
|
|
|
|
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(core_input_state_poll);
|
|
core.retro_set_input_poll(core_input_state_poll_maybe);
|
|
|
|
core_set_default_callbacks(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;
|
|
|
|
if (global->netplay.is_spectate)
|
|
{
|
|
core.retro_set_input_state(
|
|
(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;
|
|
}
|
|
|
|
/**
|
|
* core_set_default_callbacks:
|
|
* @data : pointer to retro_callbacks object
|
|
*
|
|
* Binds the libretro callbacks to default callback functions.
|
|
**/
|
|
bool core_set_default_callbacks(void *data)
|
|
{
|
|
struct retro_callbacks *cbs = (struct retro_callbacks*)data;
|
|
|
|
if (!cbs)
|
|
return false;
|
|
|
|
cbs->frame_cb = video_driver_frame;
|
|
cbs->sample_cb = audio_driver_sample;
|
|
cbs->sample_batch_cb = audio_driver_sample_batch;
|
|
cbs->state_cb = core_input_state_poll;
|
|
cbs->poll_cb = input_poll;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool core_deinit(void *data)
|
|
{
|
|
struct retro_callbacks *cbs = (struct retro_callbacks*)data;
|
|
|
|
if (!cbs)
|
|
return false;
|
|
|
|
cbs->frame_cb = NULL;
|
|
cbs->sample_cb = NULL;
|
|
cbs->sample_batch_cb = NULL;
|
|
cbs->state_cb = NULL;
|
|
cbs->poll_cb = NULL;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool core_uninit_libretro_callbacks(void)
|
|
{
|
|
return core_deinit(&retro_ctx);
|
|
}
|
|
|
|
/**
|
|
* core_set_rewind_callbacks:
|
|
*
|
|
* Sets the audio sampling callbacks based on whether or not
|
|
* rewinding is currently activated.
|
|
**/
|
|
bool core_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);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool core_set_cheat(retro_ctx_cheat_info_t *info)
|
|
{
|
|
core.retro_cheat_set(info->index, info->enabled, info->code);
|
|
return true;
|
|
}
|
|
|
|
bool core_reset_cheat(void)
|
|
{
|
|
core.retro_cheat_reset();
|
|
return true;
|
|
}
|
|
|
|
bool core_api_version(retro_ctx_api_info_t *api)
|
|
{
|
|
if (!api)
|
|
return false;
|
|
api->version = core.retro_api_version();
|
|
return true;
|
|
}
|
|
|
|
bool core_set_poll_type(unsigned *type)
|
|
{
|
|
core_poll_type = *type;
|
|
return true;
|
|
}
|
|
|
|
void core_uninit_symbols(void)
|
|
{
|
|
uninit_libretro_sym(&core);
|
|
}
|
|
|
|
bool core_init_symbols(enum rarch_core_type *type)
|
|
{
|
|
if (!type)
|
|
return false;
|
|
init_libretro_sym(*type, &core);
|
|
return true;
|
|
}
|
|
|
|
bool core_set_controller_port_device(retro_ctx_controller_info_t *pad)
|
|
{
|
|
if (!pad)
|
|
return false;
|
|
core.retro_set_controller_port_device(pad->port, pad->device);
|
|
return true;
|
|
}
|
|
|
|
bool core_get_memory(retro_ctx_memory_info_t *info)
|
|
{
|
|
if (!info)
|
|
return false;
|
|
info->size = core.retro_get_memory_size(info->id);
|
|
info->data = core.retro_get_memory_data(info->id);
|
|
return true;
|
|
}
|
|
|
|
bool core_load_game(retro_ctx_load_content_info_t *load_info)
|
|
{
|
|
if (!load_info)
|
|
return false;
|
|
|
|
if (load_info->special)
|
|
return core.retro_load_game_special(load_info->special->id, load_info->info, load_info->content->size);
|
|
return core.retro_load_game(*load_info->content->elems[0].data ? load_info->info : NULL);
|
|
}
|
|
|
|
bool core_get_system_info(struct retro_system_info *system)
|
|
{
|
|
if (!system)
|
|
return false;
|
|
core.retro_get_system_info(system);
|
|
return true;
|
|
}
|
|
|
|
bool core_unserialize(retro_ctx_serialize_info_t *info)
|
|
{
|
|
if (!info)
|
|
return false;
|
|
if (!core.retro_unserialize(info->data_const, info->size))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool core_serialize(retro_ctx_serialize_info_t *info)
|
|
{
|
|
if (!info)
|
|
return false;
|
|
if (!core.retro_serialize(info->data, info->size))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool core_serialize_size(retro_ctx_size_info_t *info)
|
|
{
|
|
if (!info)
|
|
return false;
|
|
info->size = core.retro_serialize_size();
|
|
return true;
|
|
}
|
|
|
|
bool core_frame(retro_ctx_frame_info_t *info)
|
|
{
|
|
if (!info || !retro_ctx.frame_cb)
|
|
return false;
|
|
|
|
retro_ctx.frame_cb(
|
|
info->data, info->width, info->height, info->pitch);
|
|
return true;
|
|
}
|
|
|
|
bool core_poll(void)
|
|
{
|
|
if (!retro_ctx.poll_cb)
|
|
return false;
|
|
retro_ctx.poll_cb();
|
|
return true;
|
|
}
|
|
|
|
bool core_set_environment(retro_ctx_environ_info_t *info)
|
|
{
|
|
if (!info)
|
|
return false;
|
|
core.retro_set_environment(info->env);
|
|
return true;
|
|
}
|
|
|
|
bool core_get_system_av_info(struct retro_system_av_info *av_info)
|
|
{
|
|
if (!av_info)
|
|
return false;
|
|
core.retro_get_system_av_info(av_info);
|
|
return true;
|
|
}
|
|
|
|
bool core_reset(void)
|
|
{
|
|
core.retro_reset();
|
|
return true;
|
|
}
|
|
|
|
bool core_init(void)
|
|
{
|
|
core.retro_init();
|
|
return true;
|
|
}
|
|
|
|
bool core_unload(void)
|
|
{
|
|
core.retro_deinit();
|
|
return true;
|
|
}
|
|
|
|
|
|
bool core_unload_game(void)
|
|
{
|
|
video_driver_deinit_hw_context();
|
|
audio_driver_stop();
|
|
core.retro_unload_game();
|
|
return true;
|
|
}
|
|
|
|
bool core_run(void)
|
|
{
|
|
switch (core_poll_type)
|
|
{
|
|
case POLL_TYPE_EARLY:
|
|
input_poll();
|
|
break;
|
|
case POLL_TYPE_LATE:
|
|
core_input_polled = false;
|
|
break;
|
|
}
|
|
if (core.retro_run)
|
|
core.retro_run();
|
|
if (core_poll_type == POLL_TYPE_LATE && !core_input_polled)
|
|
input_poll();
|
|
return true;
|
|
}
|
|
|
|
bool core_load(void)
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
core_poll_type = settings->input.poll_type_behavior;
|
|
|
|
if (!core_verify_api_version())
|
|
return false;
|
|
if (!core_init_libretro_cbs(&retro_ctx))
|
|
return false;
|
|
|
|
core_get_system_av_info(video_viewport_get_system_av_info());
|
|
runloop_ctl(RUNLOOP_CTL_SET_FRAME_LIMIT, NULL);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool core_verify_api_version(void)
|
|
{
|
|
unsigned api_version = core.retro_api_version();
|
|
RARCH_LOG("%s: %u\n",
|
|
msg_hash_to_str(MSG_VERSION_OF_LIBRETRO_API),
|
|
api_version);
|
|
RARCH_LOG("%s: %u\n",
|
|
msg_hash_to_str(MSG_COMPILED_AGAINST_API),
|
|
RETRO_API_VERSION);
|
|
|
|
if (api_version != RETRO_API_VERSION)
|
|
{
|
|
RARCH_WARN("%s\n", msg_hash_to_str(MSG_LIBRETRO_ABI_BREAK));
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool core_has_set_input_descriptor(void)
|
|
{
|
|
return core_has_set_input_descriptors;
|
|
}
|
|
|
|
void core_set_input_descriptors(void)
|
|
{
|
|
core_has_set_input_descriptors = true;
|
|
}
|
|
|
|
void core_unset_input_descriptors(void)
|
|
{
|
|
core_has_set_input_descriptors = false;
|
|
}
|