2014-10-04 23:31:48 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-03-22 02:09:18 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2012-2015 - Michael Lelli
|
|
|
|
* Copyright (C) 2014-2015 - Jay McCarthy
|
2017-03-22 02:09:18 +00:00
|
|
|
* Copyright (C) 2016-2017 - Brad Parker
|
2014-10-04 23:31:48 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-11-28 23:19:01 +00:00
|
|
|
#include <stdarg.h>
|
2015-11-23 20:58:39 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2016-09-08 04:07:43 +00:00
|
|
|
#include <compat/strl.h>
|
2015-11-28 23:19:01 +00:00
|
|
|
#include <retro_assert.h>
|
2016-09-08 04:07:43 +00:00
|
|
|
#include <file/file_path.h>
|
2016-12-22 22:36:11 +00:00
|
|
|
#include <queues/message_queue.h>
|
2016-02-09 17:13:47 +00:00
|
|
|
#include <queues/task_queue.h>
|
2015-12-26 06:07:01 +00:00
|
|
|
#include <string/stdstring.h>
|
2016-05-10 18:31:27 +00:00
|
|
|
#include <features/features_cpu.h>
|
2015-06-13 17:12:10 +00:00
|
|
|
|
2016-09-08 04:07:43 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
#include <rthreads/rthreads.h>
|
|
|
|
#endif
|
2015-06-14 16:46:00 +00:00
|
|
|
|
2015-11-11 20:10:13 +00:00
|
|
|
#ifdef HAVE_CHEEVOS
|
2017-02-03 10:03:57 +00:00
|
|
|
#include "cheevos/cheevos.h"
|
2015-11-11 20:10:13 +00:00
|
|
|
#endif
|
2016-09-08 04:07:43 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "menu/menu_display.h"
|
|
|
|
#include "menu/menu_driver.h"
|
2016-09-16 14:39:30 +00:00
|
|
|
#include "menu/menu_event.h"
|
2016-09-15 13:57:25 +00:00
|
|
|
#include "menu/widgets/menu_dialog.h"
|
2016-09-08 04:07:43 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-29 19:07:10 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
2016-09-08 04:07:43 +00:00
|
|
|
#include "network/netplay/netplay.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_HTTPSERVER) && defined(HAVE_ZLIB)
|
2016-09-12 15:21:00 +00:00
|
|
|
#include "network/httpserver/httpserver.h"
|
2016-09-08 04:07:43 +00:00
|
|
|
#endif
|
|
|
|
|
2015-11-30 18:23:13 +00:00
|
|
|
#include "autosave.h"
|
2015-06-13 17:12:10 +00:00
|
|
|
#include "configuration.h"
|
2016-09-11 14:31:23 +00:00
|
|
|
#include "driver.h"
|
2015-12-01 00:47:26 +00:00
|
|
|
#include "movie.h"
|
2016-09-17 12:49:35 +00:00
|
|
|
#include "dirs.h"
|
2016-09-17 10:35:29 +00:00
|
|
|
#include "paths.h"
|
2015-01-09 16:40:47 +00:00
|
|
|
#include "retroarch.h"
|
2015-01-09 17:40:33 +00:00
|
|
|
#include "runloop.h"
|
2016-06-20 03:29:53 +00:00
|
|
|
#include "file_path_special.h"
|
2016-05-09 23:25:47 +00:00
|
|
|
#include "managers/core_option_manager.h"
|
2016-05-09 16:20:52 +00:00
|
|
|
#include "managers/cheat_manager.h"
|
|
|
|
#include "managers/state_manager.h"
|
2016-03-20 16:28:24 +00:00
|
|
|
#include "list_special.h"
|
2015-11-23 18:40:09 +00:00
|
|
|
#include "audio/audio_driver.h"
|
2015-12-05 14:55:26 +00:00
|
|
|
#include "camera/camera_driver.h"
|
2015-12-05 15:12:29 +00:00
|
|
|
#include "record/record_driver.h"
|
|
|
|
#include "input/input_driver.h"
|
|
|
|
#include "ui/ui_companion_driver.h"
|
2016-05-08 03:29:10 +00:00
|
|
|
#include "core.h"
|
2015-06-13 17:12:10 +00:00
|
|
|
|
2015-07-01 00:00:39 +00:00
|
|
|
#include "msg_hash.h"
|
|
|
|
|
2015-11-28 15:13:16 +00:00
|
|
|
#include "input/input_keyboard.h"
|
2016-05-16 11:43:14 +00:00
|
|
|
#include "tasks/tasks_internal.h"
|
2015-11-23 11:03:38 +00:00
|
|
|
#include "verbosity.h"
|
|
|
|
|
2016-09-06 06:38:26 +00:00
|
|
|
#ifdef HAVE_ZLIB
|
|
|
|
#define DEFAULT_EXT "zip"
|
|
|
|
#else
|
|
|
|
#define DEFAULT_EXT ""
|
|
|
|
#endif
|
|
|
|
|
2017-01-11 12:18:24 +00:00
|
|
|
#define runloop_cmd_triggered(trigger_input, id) (BIT64_GET(trigger_input, id))
|
|
|
|
#define runloop_cmd_pressed(old_input, id) (BIT64_GET(old_input, id))
|
|
|
|
|
2016-10-27 04:13:39 +00:00
|
|
|
enum runloop_state
|
|
|
|
{
|
|
|
|
RUNLOOP_STATE_NONE = 0,
|
|
|
|
RUNLOOP_STATE_ITERATE,
|
|
|
|
RUNLOOP_STATE_SLEEP,
|
|
|
|
RUNLOOP_STATE_MENU_ITERATE,
|
|
|
|
RUNLOOP_STATE_END,
|
|
|
|
RUNLOOP_STATE_QUIT
|
|
|
|
};
|
|
|
|
|
2016-12-22 22:36:11 +00:00
|
|
|
typedef struct runloop_ctx_msg_info
|
|
|
|
{
|
|
|
|
const char *msg;
|
|
|
|
unsigned prio;
|
|
|
|
unsigned duration;
|
|
|
|
bool flush;
|
|
|
|
} runloop_ctx_msg_info_t;
|
|
|
|
|
2016-09-06 06:38:26 +00:00
|
|
|
static rarch_system_info_t runloop_system;
|
2016-05-07 23:41:32 +00:00
|
|
|
static struct retro_frame_time_callback runloop_frame_time;
|
2016-09-16 10:49:26 +00:00
|
|
|
static retro_keyboard_event_t runloop_key_event = NULL;
|
|
|
|
static retro_keyboard_event_t runloop_frontend_key_event = NULL;
|
|
|
|
static core_option_manager_t *runloop_core_options = NULL;
|
2016-12-22 22:36:11 +00:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
static slock_t *_runloop_msg_queue_lock = NULL;
|
|
|
|
#endif
|
|
|
|
static msg_queue_t *runloop_msg_queue = NULL;
|
2016-09-16 10:49:26 +00:00
|
|
|
static unsigned runloop_pending_windowed_scale = 0;
|
|
|
|
static retro_usec_t runloop_frame_time_last = 0;
|
|
|
|
static unsigned runloop_max_frames = false;
|
|
|
|
static bool runloop_force_nonblock = false;
|
|
|
|
static bool runloop_paused = false;
|
|
|
|
static bool runloop_idle = false;
|
|
|
|
static bool runloop_exec = false;
|
|
|
|
static bool runloop_slowmotion = false;
|
|
|
|
static bool runloop_shutdown_initiated = false;
|
|
|
|
static bool runloop_core_shutdown_initiated = false;
|
|
|
|
static bool runloop_perfcnt_enable = false;
|
|
|
|
static bool runloop_overrides_active = false;
|
|
|
|
static bool runloop_game_options_active = false;
|
2016-11-28 00:25:38 +00:00
|
|
|
static bool runloop_missing_bios = false;
|
2016-12-06 07:22:52 +00:00
|
|
|
static retro_time_t frame_limit_minimum_time = 0.0;
|
|
|
|
static retro_time_t frame_limit_last_time = 0.0;
|
2016-03-04 16:54:54 +00:00
|
|
|
|
2015-12-04 06:18:39 +00:00
|
|
|
global_t *global_get_ptr(void)
|
|
|
|
{
|
|
|
|
static struct global g_extern;
|
|
|
|
return &g_extern;
|
|
|
|
}
|
|
|
|
|
2016-12-22 22:36:11 +00:00
|
|
|
void runloop_msg_queue_push(const char *msg,
|
|
|
|
unsigned prio, unsigned duration,
|
|
|
|
bool flush)
|
|
|
|
{
|
|
|
|
runloop_ctx_msg_info_t msg_info;
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_lock(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (flush)
|
|
|
|
msg_queue_clear(runloop_msg_queue);
|
|
|
|
|
|
|
|
msg_info.msg = msg;
|
|
|
|
msg_info.prio = prio;
|
|
|
|
msg_info.duration = duration;
|
|
|
|
msg_info.flush = flush;
|
|
|
|
|
|
|
|
if (runloop_msg_queue)
|
|
|
|
{
|
|
|
|
msg_queue_push(runloop_msg_queue, msg_info.msg,
|
|
|
|
msg_info.prio, msg_info.duration);
|
|
|
|
|
|
|
|
if (ui_companion_is_on_foreground())
|
|
|
|
{
|
|
|
|
const ui_companion_driver_t *ui = ui_companion_get_ptr();
|
|
|
|
if (ui->msg_queue_push)
|
|
|
|
ui->msg_queue_push(msg_info.msg,
|
|
|
|
msg_info.prio, msg_info.duration, msg_info.flush);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_unlock(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-12-07 13:16:34 +00:00
|
|
|
/**
|
|
|
|
* rarch_game_specific_options:
|
|
|
|
*
|
2016-09-05 15:35:27 +00:00
|
|
|
* Returns: true (1) if a game specific core
|
2016-01-26 01:24:59 +00:00
|
|
|
* options path has been found,
|
2015-12-07 13:16:34 +00:00
|
|
|
* otherwise false (0).
|
|
|
|
**/
|
|
|
|
static bool rarch_game_specific_options(char **output)
|
|
|
|
{
|
2017-04-15 00:38:22 +00:00
|
|
|
char game_path[8192];
|
2016-10-09 07:05:41 +00:00
|
|
|
|
|
|
|
game_path[0] ='\0';
|
2016-09-05 15:35:27 +00:00
|
|
|
|
2016-07-01 04:02:57 +00:00
|
|
|
if (!retroarch_validate_game_options(game_path,
|
|
|
|
sizeof(game_path), false))
|
2016-01-26 01:24:59 +00:00
|
|
|
return false;
|
2015-12-07 13:16:34 +00:00
|
|
|
|
2016-09-18 19:57:51 +00:00
|
|
|
if (!config_file_exists(game_path))
|
2015-12-07 13:16:34 +00:00
|
|
|
return false;
|
|
|
|
|
2016-07-01 04:02:57 +00:00
|
|
|
RARCH_LOG("%s %s\n",
|
|
|
|
msg_hash_to_str(MSG_GAME_SPECIFIC_CORE_OPTIONS_FOUND_AT),
|
|
|
|
game_path);
|
2015-12-07 13:16:34 +00:00
|
|
|
*output = strdup(game_path);
|
|
|
|
return true;
|
|
|
|
}
|
2015-09-26 13:00:29 +00:00
|
|
|
|
2017-01-22 15:22:20 +00:00
|
|
|
void runloop_get_status(bool *is_paused, bool *is_idle,
|
2017-01-25 15:57:22 +00:00
|
|
|
bool *is_slowmotion, bool *is_perfcnt_enable)
|
2017-01-22 15:22:20 +00:00
|
|
|
{
|
2017-01-25 15:57:22 +00:00
|
|
|
*is_paused = runloop_paused;
|
|
|
|
*is_idle = runloop_idle;
|
|
|
|
*is_slowmotion = runloop_slowmotion;
|
|
|
|
*is_perfcnt_enable = runloop_perfcnt_enable;
|
2017-01-22 15:22:20 +00:00
|
|
|
}
|
2016-04-10 13:40:46 +00:00
|
|
|
|
2017-01-23 12:56:05 +00:00
|
|
|
bool runloop_msg_queue_pull(const char **ret)
|
|
|
|
{
|
|
|
|
if (!ret)
|
|
|
|
return false;
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_lock(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
*ret = msg_queue_pull(runloop_msg_queue);
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_unlock(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-11-30 20:42:59 +00:00
|
|
|
bool runloop_ctl(enum runloop_ctl_state state, void *data)
|
2015-09-26 12:57:46 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
2016-05-12 07:37:21 +00:00
|
|
|
case RUNLOOP_CTL_SYSTEM_INFO_INIT:
|
2016-09-06 06:38:26 +00:00
|
|
|
core_get_system_info(&runloop_system.info);
|
|
|
|
|
|
|
|
if (!runloop_system.info.library_name)
|
|
|
|
runloop_system.info.library_name = msg_hash_to_str(MSG_UNKNOWN);
|
|
|
|
if (!runloop_system.info.library_version)
|
|
|
|
runloop_system.info.library_version = "v0";
|
|
|
|
|
2016-05-12 07:37:21 +00:00
|
|
|
video_driver_set_title_buf();
|
2016-09-06 06:38:26 +00:00
|
|
|
|
|
|
|
strlcpy(runloop_system.valid_extensions,
|
|
|
|
runloop_system.info.valid_extensions ?
|
|
|
|
runloop_system.info.valid_extensions : DEFAULT_EXT,
|
|
|
|
sizeof(runloop_system.valid_extensions));
|
2016-05-12 07:37:21 +00:00
|
|
|
break;
|
2015-12-09 08:37:54 +00:00
|
|
|
case RUNLOOP_CTL_GET_CORE_OPTION_SIZE:
|
|
|
|
{
|
|
|
|
unsigned *idx = (unsigned*)data;
|
|
|
|
if (!idx)
|
|
|
|
return false;
|
2017-02-26 09:33:03 +00:00
|
|
|
*idx = (unsigned)core_option_manager_size(runloop_core_options);
|
2015-12-09 08:37:54 +00:00
|
|
|
}
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-12-09 08:34:19 +00:00
|
|
|
case RUNLOOP_CTL_HAS_CORE_OPTIONS:
|
2016-04-06 00:30:20 +00:00
|
|
|
return runloop_core_options;
|
2016-05-15 08:09:41 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTIONS_LIST_GET:
|
2016-04-06 00:30:20 +00:00
|
|
|
{
|
|
|
|
core_option_manager_t **coreopts = (core_option_manager_t**)data;
|
|
|
|
if (!coreopts)
|
|
|
|
return false;
|
|
|
|
*coreopts = runloop_core_options;
|
|
|
|
}
|
|
|
|
break;
|
2016-09-06 06:38:26 +00:00
|
|
|
case RUNLOOP_CTL_SYSTEM_INFO_GET:
|
|
|
|
{
|
|
|
|
rarch_system_info_t **system = (rarch_system_info_t**)data;
|
|
|
|
if (!system)
|
|
|
|
return false;
|
|
|
|
*system = &runloop_system;
|
|
|
|
}
|
|
|
|
break;
|
2016-05-12 07:37:21 +00:00
|
|
|
case RUNLOOP_CTL_SYSTEM_INFO_FREE:
|
2016-09-06 06:38:26 +00:00
|
|
|
|
|
|
|
/* No longer valid. */
|
|
|
|
if (runloop_system.subsystem.data)
|
|
|
|
free(runloop_system.subsystem.data);
|
|
|
|
runloop_system.subsystem.data = NULL;
|
|
|
|
runloop_system.subsystem.size = 0;
|
|
|
|
|
|
|
|
if (runloop_system.ports.data)
|
|
|
|
free(runloop_system.ports.data);
|
|
|
|
runloop_system.ports.data = NULL;
|
|
|
|
runloop_system.ports.size = 0;
|
|
|
|
|
|
|
|
if (runloop_system.mmaps.descriptors)
|
|
|
|
free((void *)runloop_system.mmaps.descriptors);
|
|
|
|
runloop_system.mmaps.descriptors = NULL;
|
|
|
|
runloop_system.mmaps.num_descriptors = 0;
|
2016-09-05 15:35:27 +00:00
|
|
|
|
2016-05-12 07:37:21 +00:00
|
|
|
runloop_key_event = NULL;
|
|
|
|
runloop_frontend_key_event = NULL;
|
2016-09-06 06:38:26 +00:00
|
|
|
|
2016-05-12 07:37:21 +00:00
|
|
|
audio_driver_unset_callback();
|
2016-09-06 06:38:26 +00:00
|
|
|
memset(&runloop_system, 0, sizeof(rarch_system_info_t));
|
2016-05-12 07:37:21 +00:00
|
|
|
break;
|
2015-12-04 11:26:39 +00:00
|
|
|
case RUNLOOP_CTL_SET_FRAME_TIME_LAST:
|
2016-12-06 07:22:52 +00:00
|
|
|
runloop_frame_time_last = 0;
|
2015-12-04 11:26:39 +00:00
|
|
|
break;
|
2015-12-10 20:43:44 +00:00
|
|
|
case RUNLOOP_CTL_SET_OVERRIDES_ACTIVE:
|
|
|
|
runloop_overrides_active = true;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_UNSET_OVERRIDES_ACTIVE:
|
2016-09-05 15:35:27 +00:00
|
|
|
runloop_overrides_active = false;
|
2015-12-10 20:43:44 +00:00
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_IS_OVERRIDES_ACTIVE:
|
|
|
|
return runloop_overrides_active;
|
2016-11-28 00:25:38 +00:00
|
|
|
case RUNLOOP_CTL_SET_MISSING_BIOS:
|
|
|
|
runloop_missing_bios = true;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_UNSET_MISSING_BIOS:
|
|
|
|
runloop_missing_bios = false;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_IS_MISSING_BIOS:
|
|
|
|
return runloop_missing_bios;
|
2015-12-17 22:24:40 +00:00
|
|
|
case RUNLOOP_CTL_IS_GAME_OPTIONS_ACTIVE:
|
|
|
|
return runloop_game_options_active;
|
2015-12-04 08:54:12 +00:00
|
|
|
case RUNLOOP_CTL_SET_FRAME_LIMIT:
|
2016-12-06 07:22:52 +00:00
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
struct retro_system_av_info *av_info =
|
|
|
|
video_viewport_get_system_av_info();
|
|
|
|
float fastforward_ratio =
|
|
|
|
(settings->fastforward_ratio == 0.0f)
|
|
|
|
? 1.0f : settings->fastforward_ratio;
|
|
|
|
|
|
|
|
frame_limit_last_time = cpu_features_get_time_usec();
|
|
|
|
frame_limit_minimum_time = (retro_time_t)roundf(1000000.0f
|
|
|
|
/ (av_info->timing.fps * fastforward_ratio));
|
|
|
|
}
|
2015-12-04 08:54:12 +00:00
|
|
|
break;
|
2015-12-10 11:37:24 +00:00
|
|
|
case RUNLOOP_CTL_GET_PERFCNT:
|
2015-12-04 06:22:42 +00:00
|
|
|
{
|
2015-12-10 11:37:24 +00:00
|
|
|
bool **perfcnt = (bool**)data;
|
|
|
|
if (!perfcnt)
|
|
|
|
return false;
|
|
|
|
*perfcnt = &runloop_perfcnt_enable;
|
2015-12-04 06:22:42 +00:00
|
|
|
}
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-12-10 11:37:24 +00:00
|
|
|
case RUNLOOP_CTL_SET_PERFCNT_ENABLE:
|
|
|
|
runloop_perfcnt_enable = true;
|
2015-11-30 20:56:35 +00:00
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_UNSET_PERFCNT_ENABLE:
|
2015-12-10 11:37:24 +00:00
|
|
|
runloop_perfcnt_enable = false;
|
2015-11-30 20:56:35 +00:00
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_IS_PERFCNT_ENABLE:
|
2015-12-10 11:37:24 +00:00
|
|
|
return runloop_perfcnt_enable;
|
2016-03-04 18:20:00 +00:00
|
|
|
case RUNLOOP_CTL_SET_NONBLOCK_FORCED:
|
|
|
|
runloop_force_nonblock = true;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_UNSET_NONBLOCK_FORCED:
|
|
|
|
runloop_force_nonblock = false;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_IS_NONBLOCK_FORCED:
|
|
|
|
return runloop_force_nonblock;
|
2016-03-04 16:54:54 +00:00
|
|
|
case RUNLOOP_CTL_SET_FRAME_TIME:
|
|
|
|
{
|
|
|
|
const struct retro_frame_time_callback *info =
|
|
|
|
(const struct retro_frame_time_callback*)data;
|
2016-09-29 19:07:10 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
2016-03-04 16:54:54 +00:00
|
|
|
/* retro_run() will be called in very strange and
|
|
|
|
* mysterious ways, have to disable it. */
|
2016-10-03 02:13:34 +00:00
|
|
|
if (netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_ENABLED, NULL))
|
2016-03-04 16:54:54 +00:00
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
runloop_frame_time = *info;
|
|
|
|
}
|
|
|
|
break;
|
2015-12-01 02:46:56 +00:00
|
|
|
case RUNLOOP_CTL_GET_WINDOWED_SCALE:
|
|
|
|
{
|
|
|
|
unsigned **scale = (unsigned**)data;
|
|
|
|
if (!scale)
|
|
|
|
return false;
|
2015-12-01 02:51:34 +00:00
|
|
|
*scale = (unsigned*)&runloop_pending_windowed_scale;
|
2015-12-01 02:46:56 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_WINDOWED_SCALE:
|
2015-11-18 10:55:11 +00:00
|
|
|
{
|
|
|
|
unsigned *idx = (unsigned*)data;
|
|
|
|
if (!idx)
|
|
|
|
return false;
|
2015-12-01 02:51:34 +00:00
|
|
|
runloop_pending_windowed_scale = *idx;
|
2015-11-18 10:55:11 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_LIBRETRO_PATH:
|
2016-09-29 05:46:21 +00:00
|
|
|
return path_set(RARCH_PATH_CORE, (const char*)data);
|
2016-04-05 23:29:32 +00:00
|
|
|
case RUNLOOP_CTL_FRAME_TIME_FREE:
|
2016-09-17 12:25:29 +00:00
|
|
|
memset(&runloop_frame_time, 0,
|
|
|
|
sizeof(struct retro_frame_time_callback));
|
2016-04-05 23:29:32 +00:00
|
|
|
runloop_frame_time_last = 0;
|
|
|
|
runloop_max_frames = 0;
|
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_STATE_FREE:
|
2016-03-12 13:47:10 +00:00
|
|
|
runloop_perfcnt_enable = false;
|
|
|
|
runloop_idle = false;
|
|
|
|
runloop_paused = false;
|
|
|
|
runloop_slowmotion = false;
|
|
|
|
runloop_overrides_active = false;
|
2016-04-05 23:29:32 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_FRAME_TIME_FREE, NULL);
|
2015-09-26 19:32:41 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_GLOBAL_FREE:
|
2015-12-04 06:18:39 +00:00
|
|
|
{
|
2016-10-01 06:15:07 +00:00
|
|
|
global_t *global = NULL;
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_TEMPORARY_CONTENT_DEINIT, NULL);
|
2016-09-25 13:49:09 +00:00
|
|
|
|
|
|
|
path_deinit_subsystem();
|
2016-05-09 18:51:53 +00:00
|
|
|
command_event(CMD_EVENT_RECORD_DEINIT, NULL);
|
|
|
|
command_event(CMD_EVENT_LOG_FILE_DEINIT, NULL);
|
2015-12-04 06:18:39 +00:00
|
|
|
|
|
|
|
rarch_ctl(RARCH_CTL_UNSET_BLOCK_CONFIG_READ, NULL);
|
2016-09-28 05:27:39 +00:00
|
|
|
rarch_ctl(RARCH_CTL_UNSET_SRAM_LOAD_DISABLED, NULL);
|
|
|
|
rarch_ctl(RARCH_CTL_UNSET_SRAM_SAVE_DISABLED, NULL);
|
2016-09-28 05:17:14 +00:00
|
|
|
rarch_ctl(RARCH_CTL_UNSET_SRAM_ENABLE, NULL);
|
2016-09-29 03:46:31 +00:00
|
|
|
rarch_ctl(RARCH_CTL_UNSET_BPS_PREF, NULL);
|
|
|
|
rarch_ctl(RARCH_CTL_UNSET_IPS_PREF, NULL);
|
|
|
|
rarch_ctl(RARCH_CTL_UNSET_UPS_PREF, NULL);
|
|
|
|
rarch_ctl(RARCH_CTL_UNSET_PATCH_BLOCKED, NULL);
|
2015-12-10 20:43:44 +00:00
|
|
|
runloop_overrides_active = false;
|
2015-12-04 06:18:39 +00:00
|
|
|
|
2016-05-07 23:33:57 +00:00
|
|
|
core_unset_input_descriptors();
|
2016-04-05 22:20:14 +00:00
|
|
|
|
2016-10-01 06:15:07 +00:00
|
|
|
global = global_get_ptr();
|
2016-09-17 12:41:49 +00:00
|
|
|
path_clear_all();
|
2016-09-17 12:49:35 +00:00
|
|
|
dir_clear_all();
|
2016-10-01 06:15:07 +00:00
|
|
|
memset(global, 0, sizeof(struct global));
|
2016-08-01 18:41:42 +00:00
|
|
|
retroarch_override_setting_free_state();
|
2015-12-04 06:18:39 +00:00
|
|
|
}
|
2015-09-26 19:30:20 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_CLEAR_STATE:
|
2015-12-11 09:43:53 +00:00
|
|
|
driver_ctl(RARCH_DRIVER_CTL_DEINIT, NULL);
|
2015-11-30 20:42:59 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_STATE_FREE, NULL);
|
|
|
|
runloop_ctl(RUNLOOP_CTL_GLOBAL_FREE, NULL);
|
2015-09-26 13:35:01 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_MAX_FRAMES:
|
2015-09-26 12:57:46 +00:00
|
|
|
{
|
|
|
|
unsigned *ptr = (unsigned*)data;
|
|
|
|
if (!ptr)
|
|
|
|
return false;
|
2015-12-04 09:18:14 +00:00
|
|
|
runloop_max_frames = *ptr;
|
2015-09-26 12:57:46 +00:00
|
|
|
}
|
2015-09-26 13:35:01 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_IS_IDLE:
|
2015-12-04 02:07:05 +00:00
|
|
|
return runloop_idle;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_IDLE:
|
2015-09-26 12:57:46 +00:00
|
|
|
{
|
|
|
|
bool *ptr = (bool*)data;
|
|
|
|
if (!ptr)
|
|
|
|
return false;
|
2015-12-04 02:07:05 +00:00
|
|
|
runloop_idle = *ptr;
|
2015-09-26 12:57:46 +00:00
|
|
|
}
|
2015-09-26 13:35:01 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_SLOWMOTION:
|
2015-09-26 12:57:46 +00:00
|
|
|
{
|
|
|
|
bool *ptr = (bool*)data;
|
|
|
|
if (!ptr)
|
|
|
|
return false;
|
2015-12-04 06:42:37 +00:00
|
|
|
runloop_slowmotion = *ptr;
|
2015-09-26 12:57:46 +00:00
|
|
|
}
|
2015-09-26 13:35:01 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_PAUSED:
|
2015-09-26 12:57:46 +00:00
|
|
|
{
|
|
|
|
bool *ptr = (bool*)data;
|
|
|
|
if (!ptr)
|
|
|
|
return false;
|
2015-12-04 06:56:53 +00:00
|
|
|
runloop_paused = *ptr;
|
2015-09-26 12:57:46 +00:00
|
|
|
}
|
2015-09-26 13:35:01 +00:00
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_IS_PAUSED:
|
2015-12-04 06:56:53 +00:00
|
|
|
return runloop_paused;
|
2016-12-22 22:36:11 +00:00
|
|
|
case RUNLOOP_CTL_MSG_QUEUE_DEINIT:
|
|
|
|
if (!runloop_msg_queue)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_lock(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
msg_queue_free(runloop_msg_queue);
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_unlock(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
slock_free(_runloop_msg_queue_lock);
|
|
|
|
_runloop_msg_queue_lock = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
runloop_msg_queue = NULL;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_MSG_QUEUE_INIT:
|
|
|
|
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_DEINIT, NULL);
|
|
|
|
runloop_msg_queue = msg_queue_new(8);
|
|
|
|
retro_assert(runloop_msg_queue);
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
_runloop_msg_queue_lock = slock_new();
|
|
|
|
retro_assert(_runloop_msg_queue_lock);
|
|
|
|
#endif
|
|
|
|
break;
|
2016-02-09 16:41:19 +00:00
|
|
|
case RUNLOOP_CTL_TASK_INIT:
|
|
|
|
{
|
2016-02-09 17:38:57 +00:00
|
|
|
#ifdef HAVE_THREADS
|
2016-07-24 09:12:26 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
bool threaded_enable = settings->threaded_data_runloop_enable;
|
|
|
|
#else
|
|
|
|
bool threaded_enable = false;
|
2016-02-09 17:38:57 +00:00
|
|
|
#endif
|
2017-01-03 17:26:52 +00:00
|
|
|
task_queue_deinit();
|
|
|
|
task_queue_init(threaded_enable, runloop_msg_queue_push);
|
2016-02-09 16:41:19 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_CORE_SHUTDOWN:
|
2015-12-04 07:00:51 +00:00
|
|
|
runloop_core_shutdown_initiated = true;
|
2015-11-30 14:43:49 +00:00
|
|
|
break;
|
2015-12-04 11:44:12 +00:00
|
|
|
case RUNLOOP_CTL_SET_SHUTDOWN:
|
|
|
|
runloop_shutdown_initiated = true;
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_IS_SHUTDOWN:
|
|
|
|
return runloop_shutdown_initiated;
|
2015-11-30 20:35:50 +00:00
|
|
|
case RUNLOOP_CTL_SET_EXEC:
|
2015-12-04 02:01:48 +00:00
|
|
|
runloop_exec = true;
|
|
|
|
break;
|
2015-11-30 22:29:46 +00:00
|
|
|
case RUNLOOP_CTL_DATA_DEINIT:
|
2017-01-03 17:26:52 +00:00
|
|
|
task_queue_deinit();
|
2015-11-30 22:29:46 +00:00
|
|
|
break;
|
2015-12-07 13:13:07 +00:00
|
|
|
case RUNLOOP_CTL_IS_CORE_OPTION_UPDATED:
|
2016-04-06 00:30:20 +00:00
|
|
|
if (!runloop_core_options)
|
2016-01-23 18:42:05 +00:00
|
|
|
return false;
|
2016-05-09 23:21:55 +00:00
|
|
|
return core_option_manager_updated(runloop_core_options);
|
2015-12-09 08:21:49 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTION_PREV:
|
|
|
|
{
|
|
|
|
unsigned *idx = (unsigned*)data;
|
|
|
|
if (!idx)
|
|
|
|
return false;
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_prev(runloop_core_options, *idx);
|
2015-12-09 08:21:49 +00:00
|
|
|
if (ui_companion_is_on_foreground())
|
|
|
|
ui_companion_driver_notify_refresh();
|
|
|
|
}
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-12-09 08:21:49 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTION_NEXT:
|
|
|
|
{
|
|
|
|
unsigned *idx = (unsigned*)data;
|
|
|
|
if (!idx)
|
|
|
|
return false;
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_next(runloop_core_options, *idx);
|
2015-12-09 08:21:49 +00:00
|
|
|
if (ui_companion_is_on_foreground())
|
|
|
|
ui_companion_driver_notify_refresh();
|
|
|
|
}
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-12-07 13:13:07 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTIONS_GET:
|
|
|
|
{
|
|
|
|
struct retro_variable *var = (struct retro_variable*)data;
|
|
|
|
|
2016-04-06 00:30:20 +00:00
|
|
|
if (!runloop_core_options || !var)
|
2015-12-07 13:13:07 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
RARCH_LOG("Environ GET_VARIABLE %s:\n", var->key);
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_get(runloop_core_options, var);
|
2016-09-05 15:35:27 +00:00
|
|
|
RARCH_LOG("\t%s\n", var->value ? var->value :
|
2016-06-29 00:40:05 +00:00
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NOT_AVAILABLE));
|
2015-12-07 13:13:07 +00:00
|
|
|
}
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-12-07 13:16:34 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTIONS_INIT:
|
|
|
|
{
|
2016-09-28 06:08:35 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-12-07 13:16:34 +00:00
|
|
|
char *game_options_path = NULL;
|
|
|
|
bool ret = false;
|
2016-09-05 15:35:27 +00:00
|
|
|
const struct retro_variable *vars =
|
2016-01-26 04:44:21 +00:00
|
|
|
(const struct retro_variable*)data;
|
2015-12-07 13:16:34 +00:00
|
|
|
|
2016-09-25 03:00:54 +00:00
|
|
|
if (settings && settings->game_specific_options)
|
2015-12-07 13:16:34 +00:00
|
|
|
ret = rarch_game_specific_options(&game_options_path);
|
|
|
|
|
|
|
|
if(ret)
|
|
|
|
{
|
2016-12-22 18:21:42 +00:00
|
|
|
runloop_game_options_active = true;
|
|
|
|
runloop_core_options =
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_new(game_options_path, vars);
|
2015-12-07 13:16:34 +00:00
|
|
|
free(game_options_path);
|
|
|
|
}
|
|
|
|
else
|
2015-12-17 22:24:40 +00:00
|
|
|
{
|
2016-10-15 23:27:22 +00:00
|
|
|
char buf[PATH_MAX_LENGTH];
|
2016-09-28 06:08:35 +00:00
|
|
|
const char *options_path = NULL;
|
|
|
|
|
2016-10-15 23:27:22 +00:00
|
|
|
buf[0] = '\0';
|
|
|
|
|
2016-09-28 06:08:35 +00:00
|
|
|
if (settings)
|
|
|
|
options_path = settings->path.core_options;
|
|
|
|
|
2016-10-23 03:56:55 +00:00
|
|
|
if (string_is_empty(options_path) && !path_is_empty(RARCH_PATH_CONFIG))
|
2016-09-28 06:08:35 +00:00
|
|
|
{
|
2016-09-29 06:31:41 +00:00
|
|
|
fill_pathname_resolve_relative(buf, path_get(RARCH_PATH_CONFIG),
|
2016-09-28 06:08:35 +00:00
|
|
|
file_path_str(FILE_PATH_CORE_OPTIONS_CONFIG), sizeof(buf));
|
|
|
|
options_path = buf;
|
|
|
|
}
|
|
|
|
|
2016-12-22 18:21:42 +00:00
|
|
|
runloop_game_options_active = false;
|
2016-10-23 04:21:09 +00:00
|
|
|
|
|
|
|
if (!string_is_empty(options_path))
|
|
|
|
runloop_core_options =
|
|
|
|
core_option_manager_new(options_path, vars);
|
2015-12-17 22:24:40 +00:00
|
|
|
}
|
2015-12-07 13:16:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
2016-04-06 00:30:20 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTIONS_FREE:
|
|
|
|
if (runloop_core_options)
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_free(runloop_core_options);
|
2016-04-06 00:30:20 +00:00
|
|
|
runloop_core_options = NULL;
|
|
|
|
break;
|
2015-12-07 13:13:07 +00:00
|
|
|
case RUNLOOP_CTL_CORE_OPTIONS_DEINIT:
|
2016-01-31 06:54:12 +00:00
|
|
|
{
|
2016-04-06 00:30:20 +00:00
|
|
|
if (!runloop_core_options)
|
2016-03-02 04:29:12 +00:00
|
|
|
return false;
|
2016-01-31 06:54:12 +00:00
|
|
|
|
2016-03-02 04:29:12 +00:00
|
|
|
/* check if game options file was just created and flush
|
|
|
|
to that file instead */
|
2016-09-30 02:43:16 +00:00
|
|
|
if(!path_is_empty(RARCH_PATH_CORE_OPTIONS))
|
2016-03-02 04:29:12 +00:00
|
|
|
{
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_flush_game_specific(runloop_core_options,
|
2016-09-29 06:34:08 +00:00
|
|
|
path_get(RARCH_PATH_CORE_OPTIONS));
|
2016-09-30 02:31:19 +00:00
|
|
|
path_clear(RARCH_PATH_CORE_OPTIONS);
|
2016-03-02 04:29:12 +00:00
|
|
|
}
|
|
|
|
else
|
2016-05-09 23:21:55 +00:00
|
|
|
core_option_manager_flush(runloop_core_options);
|
2016-01-31 06:54:12 +00:00
|
|
|
|
2016-12-22 18:21:42 +00:00
|
|
|
if (runloop_game_options_active)
|
|
|
|
runloop_game_options_active = false;
|
2016-03-02 04:29:12 +00:00
|
|
|
|
2016-04-06 00:30:20 +00:00
|
|
|
runloop_ctl(RUNLOOP_CTL_CORE_OPTIONS_FREE, NULL);
|
2016-03-02 04:29:12 +00:00
|
|
|
}
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-12-13 13:31:06 +00:00
|
|
|
case RUNLOOP_CTL_KEY_EVENT_GET:
|
|
|
|
{
|
2016-09-05 15:35:27 +00:00
|
|
|
retro_keyboard_event_t **key_event =
|
2016-01-26 04:44:21 +00:00
|
|
|
(retro_keyboard_event_t**)data;
|
2015-12-13 13:31:06 +00:00
|
|
|
if (!key_event)
|
|
|
|
return false;
|
|
|
|
*key_event = &runloop_key_event;
|
|
|
|
}
|
|
|
|
break;
|
2016-01-21 00:52:02 +00:00
|
|
|
case RUNLOOP_CTL_FRONTEND_KEY_EVENT_GET:
|
|
|
|
{
|
2016-09-05 15:35:27 +00:00
|
|
|
retro_keyboard_event_t **key_event =
|
2016-01-26 04:44:21 +00:00
|
|
|
(retro_keyboard_event_t**)data;
|
2016-01-21 18:45:43 +00:00
|
|
|
if (!key_event)
|
2016-01-21 00:52:02 +00:00
|
|
|
return false;
|
|
|
|
*key_event = &runloop_frontend_key_event;
|
|
|
|
}
|
|
|
|
break;
|
2016-07-31 21:45:01 +00:00
|
|
|
case RUNLOOP_CTL_HTTPSERVER_INIT:
|
|
|
|
#if defined(HAVE_HTTPSERVER) && defined(HAVE_ZLIB)
|
|
|
|
httpserver_init(8888);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case RUNLOOP_CTL_HTTPSERVER_DESTROY:
|
|
|
|
#if defined(HAVE_HTTPSERVER) && defined(HAVE_ZLIB)
|
|
|
|
httpserver_destroy();
|
|
|
|
#endif
|
|
|
|
break;
|
2015-12-07 13:13:07 +00:00
|
|
|
case RUNLOOP_CTL_NONE:
|
2015-09-26 13:35:01 +00:00
|
|
|
default:
|
2016-02-11 00:47:24 +00:00
|
|
|
break;
|
2015-09-26 12:57:46 +00:00
|
|
|
}
|
|
|
|
|
2015-09-26 13:35:01 +00:00
|
|
|
return true;
|
2015-09-26 12:57:46 +00:00
|
|
|
}
|
|
|
|
|
2016-10-21 21:20:17 +00:00
|
|
|
/* Time to exit out of the main loop?
|
|
|
|
* Reasons for exiting:
|
|
|
|
* a) Shutdown environment callback was invoked.
|
|
|
|
* b) Quit key was pressed.
|
|
|
|
* c) Frame count exceeds or equals maximum amount of frames to run.
|
|
|
|
* d) Video driver no longer alive.
|
|
|
|
* e) End of BSV movie and BSV EOF exit is true. (TODO/FIXME - explain better)
|
|
|
|
*/
|
2017-01-25 03:39:21 +00:00
|
|
|
#define time_to_exit(quit_key_pressed) (runloop_shutdown_initiated || quit_key_pressed || !is_alive || bsv_movie_ctl(BSV_MOVIE_CTL_END_EOF, NULL) || (runloop_max_frames && (frame_count >= runloop_max_frames)) || runloop_exec)
|
2016-10-21 02:42:57 +00:00
|
|
|
|
2016-12-06 05:32:03 +00:00
|
|
|
#define runloop_check_cheevos() (settings->cheevos.enable && cheevos_loaded && (!cheats_are_enabled && !cheats_were_enabled))
|
|
|
|
|
2016-10-21 22:59:29 +00:00
|
|
|
static enum runloop_state runloop_check_state(
|
|
|
|
settings_t *settings,
|
2016-10-22 15:03:20 +00:00
|
|
|
uint64_t current_input,
|
|
|
|
uint64_t old_input,
|
2016-12-06 17:05:59 +00:00
|
|
|
uint64_t trigger_input,
|
2017-01-25 03:26:40 +00:00
|
|
|
bool input_driver_is_nonblock,
|
2016-10-22 15:03:20 +00:00
|
|
|
unsigned *sleep_ms)
|
2016-10-21 02:42:57 +00:00
|
|
|
{
|
2016-10-21 21:54:23 +00:00
|
|
|
static bool old_focus = true;
|
|
|
|
#ifdef HAVE_OVERLAY
|
|
|
|
static char prev_overlay_restore = false;
|
|
|
|
#endif
|
2016-10-26 04:04:42 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
2016-10-21 21:54:23 +00:00
|
|
|
bool tmp = false;
|
2016-10-26 04:04:42 +00:00
|
|
|
#endif
|
2017-01-25 03:42:19 +00:00
|
|
|
bool is_focused = false;
|
2017-01-25 03:39:21 +00:00
|
|
|
bool is_alive = false;
|
|
|
|
uint64_t frame_count = 0;
|
2016-10-21 21:54:23 +00:00
|
|
|
bool focused = true;
|
2016-10-22 15:03:20 +00:00
|
|
|
bool pause_pressed = runloop_cmd_triggered(trigger_input, RARCH_PAUSE_TOGGLE);
|
2016-10-21 21:54:23 +00:00
|
|
|
|
2017-01-25 03:42:19 +00:00
|
|
|
video_driver_get_status(&frame_count, &is_alive, &is_focused);
|
2017-01-25 03:39:21 +00:00
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_OVERLAY_NEXT))
|
2016-10-21 21:54:23 +00:00
|
|
|
command_event(CMD_EVENT_OVERLAY_NEXT, NULL);
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_FULLSCREEN_TOGGLE_KEY))
|
2016-10-21 21:54:23 +00:00
|
|
|
{
|
2017-02-04 08:20:41 +00:00
|
|
|
bool fullscreen_toggled = !runloop_paused
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
|| menu_driver_is_alive();
|
|
|
|
#endif
|
|
|
|
;
|
2016-10-21 21:54:23 +00:00
|
|
|
|
|
|
|
if (fullscreen_toggled)
|
|
|
|
command_event(CMD_EVENT_FULLSCREEN_TOGGLE, NULL);
|
|
|
|
}
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_GRAB_MOUSE_TOGGLE))
|
2016-10-21 21:54:23 +00:00
|
|
|
command_event(CMD_EVENT_GRAB_MOUSE_TOGGLE, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_OVERLAY
|
2016-11-27 01:46:09 +00:00
|
|
|
if (input_keyboard_ctl(
|
2016-10-21 21:54:23 +00:00
|
|
|
RARCH_INPUT_KEYBOARD_CTL_IS_LINEFEED_ENABLED, NULL))
|
|
|
|
{
|
|
|
|
prev_overlay_restore = false;
|
|
|
|
command_event(CMD_EVENT_OVERLAY_INIT, NULL);
|
|
|
|
}
|
|
|
|
else if (prev_overlay_restore)
|
|
|
|
{
|
|
|
|
if (!settings->input.overlay_hide_in_menu)
|
|
|
|
command_event(CMD_EVENT_OVERLAY_INIT, NULL);
|
|
|
|
prev_overlay_restore = false;
|
|
|
|
}
|
|
|
|
#endif
|
2016-10-21 21:20:17 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
if (time_to_exit(runloop_cmd_press(trigger_input, RARCH_QUIT_KEY)))
|
|
|
|
{
|
|
|
|
if (runloop_exec)
|
|
|
|
runloop_exec = false;
|
2016-10-21 21:20:17 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
if (runloop_core_shutdown_initiated && settings->load_dummy_on_core_shutdown)
|
|
|
|
{
|
|
|
|
content_ctx_info_t content_info = {0};
|
2017-02-21 15:50:39 +00:00
|
|
|
if (!task_push_start_dummy_core(&content_info))
|
2016-12-07 04:39:27 +00:00
|
|
|
return RUNLOOP_STATE_QUIT;
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
/* Loads dummy core instead of exiting RetroArch completely.
|
|
|
|
* Aborts core shutdown if invoked. */
|
|
|
|
runloop_shutdown_initiated = false;
|
|
|
|
runloop_core_shutdown_initiated = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return RUNLOOP_STATE_QUIT;
|
|
|
|
}
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
#ifdef HAVE_MENU
|
2017-01-22 23:37:39 +00:00
|
|
|
if (menu_driver_is_alive())
|
2016-12-05 07:16:47 +00:00
|
|
|
{
|
|
|
|
menu_ctx_iterate_t iter;
|
|
|
|
core_poll();
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
{
|
|
|
|
enum menu_action action = (enum menu_action)menu_event(current_input, trigger_input);
|
2017-01-25 03:42:19 +00:00
|
|
|
bool focused = settings->pause_nonactive ? is_focused : true;
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
focused = focused && !ui_companion_is_on_foreground();
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
iter.action = action;
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
if (!menu_driver_ctl(RARCH_MENU_CTL_ITERATE, &iter))
|
|
|
|
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-12-05 07:16:47 +00:00
|
|
|
if (focused || !runloop_idle)
|
2017-01-22 16:19:10 +00:00
|
|
|
menu_driver_render(runloop_idle);
|
2016-12-05 07:16:47 +00:00
|
|
|
|
|
|
|
if (!focused)
|
|
|
|
return RUNLOOP_STATE_SLEEP;
|
|
|
|
|
|
|
|
if (action == MENU_ACTION_QUIT && !menu_driver_is_binding_state())
|
|
|
|
return RUNLOOP_STATE_QUIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2016-11-06 19:30:21 +00:00
|
|
|
|
2016-10-26 22:14:01 +00:00
|
|
|
if (runloop_idle)
|
|
|
|
return RUNLOOP_STATE_SLEEP;
|
2016-10-21 21:45:56 +00:00
|
|
|
|
2016-12-06 05:32:28 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_GAME_FOCUS_TOGGLE))
|
2017-01-02 01:16:29 +00:00
|
|
|
command_event(CMD_EVENT_GAME_FOCUS_TOGGLE, (void*)(intptr_t)0);
|
2016-12-06 05:32:28 +00:00
|
|
|
|
2016-10-26 22:14:01 +00:00
|
|
|
#ifdef HAVE_MENU
|
2017-01-12 10:31:24 +00:00
|
|
|
if (menu_event_kb_is_set(RETROK_F1) == 1)
|
2016-10-26 22:14:01 +00:00
|
|
|
{
|
2017-01-22 23:37:39 +00:00
|
|
|
if (menu_driver_is_alive())
|
2016-10-26 22:14:01 +00:00
|
|
|
{
|
|
|
|
if (rarch_ctl(RARCH_CTL_IS_INITED, NULL) &&
|
|
|
|
!rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL))
|
2016-10-28 03:43:07 +00:00
|
|
|
{
|
2016-10-26 22:14:01 +00:00
|
|
|
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
|
2017-01-12 10:31:24 +00:00
|
|
|
menu_event_kb_set(false, RETROK_F1);
|
2016-10-28 03:43:07 +00:00
|
|
|
}
|
2016-10-26 22:14:01 +00:00
|
|
|
}
|
|
|
|
}
|
2017-01-12 10:31:24 +00:00
|
|
|
else if ((!menu_event_kb_is_set(RETROK_F1) &&
|
2017-01-11 12:14:44 +00:00
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_MENU_TOGGLE)) ||
|
2016-10-28 03:43:07 +00:00
|
|
|
rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL))
|
|
|
|
{
|
2017-01-22 23:37:39 +00:00
|
|
|
if (menu_driver_is_alive())
|
2016-10-28 03:56:55 +00:00
|
|
|
{
|
|
|
|
if (rarch_ctl(RARCH_CTL_IS_INITED, NULL) &&
|
|
|
|
!rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL))
|
|
|
|
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
menu_display_toggle_set_reason(MENU_TOGGLE_REASON_USER);
|
|
|
|
rarch_ctl(RARCH_CTL_MENU_RUNNING, NULL);
|
|
|
|
}
|
2016-10-28 03:43:07 +00:00
|
|
|
}
|
|
|
|
else
|
2017-01-12 10:31:24 +00:00
|
|
|
menu_event_kb_set(false, RETROK_F1);
|
2016-10-26 22:14:01 +00:00
|
|
|
|
2017-01-22 23:37:39 +00:00
|
|
|
if (menu_driver_is_alive())
|
2016-10-26 22:14:01 +00:00
|
|
|
{
|
2016-10-21 21:45:56 +00:00
|
|
|
if (!settings->menu.throttle_framerate && !settings->fastforward_ratio)
|
|
|
|
return RUNLOOP_STATE_MENU_ITERATE;
|
|
|
|
|
|
|
|
return RUNLOOP_STATE_END;
|
|
|
|
}
|
2016-10-21 21:20:17 +00:00
|
|
|
#endif
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
if (settings->pause_nonactive)
|
2017-01-25 03:42:19 +00:00
|
|
|
focused = is_focused;
|
2016-10-21 02:42:57 +00:00
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_SCREENSHOT))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_TAKE_SCREENSHOT, NULL);
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_MUTE))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_AUDIO_MUTE_TOGGLE, NULL);
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_OSK))
|
2015-02-21 07:42:19 +00:00
|
|
|
{
|
2016-10-21 02:42:57 +00:00
|
|
|
if (input_keyboard_ctl(
|
|
|
|
RARCH_INPUT_KEYBOARD_CTL_IS_LINEFEED_ENABLED, NULL))
|
|
|
|
input_keyboard_ctl(
|
|
|
|
RARCH_INPUT_KEYBOARD_CTL_UNSET_LINEFEED_ENABLED, NULL);
|
|
|
|
else
|
|
|
|
input_keyboard_ctl(
|
|
|
|
RARCH_INPUT_KEYBOARD_CTL_SET_LINEFEED_ENABLED, NULL);
|
2015-02-21 07:42:19 +00:00
|
|
|
}
|
2016-10-21 02:42:57 +00:00
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_press(current_input, RARCH_VOLUME_UP))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_VOLUME_UP, NULL);
|
2016-10-22 15:03:20 +00:00
|
|
|
else if (runloop_cmd_press(current_input, RARCH_VOLUME_DOWN))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_VOLUME_DOWN, NULL);
|
|
|
|
|
|
|
|
#ifdef HAVE_NETWORKING
|
2016-10-22 15:03:20 +00:00
|
|
|
tmp = runloop_cmd_triggered(trigger_input, RARCH_NETPLAY_FLIP);
|
2016-10-21 02:42:57 +00:00
|
|
|
netplay_driver_ctl(RARCH_NETPLAY_CTL_FLIP_PLAYERS, &tmp);
|
2016-12-12 22:22:35 +00:00
|
|
|
tmp = runloop_cmd_triggered(trigger_input, RARCH_NETPLAY_GAME_WATCH);
|
|
|
|
if (tmp)
|
|
|
|
netplay_driver_ctl(RARCH_NETPLAY_CTL_GAME_WATCH, NULL);
|
2016-10-22 15:03:20 +00:00
|
|
|
tmp = runloop_cmd_triggered(trigger_input, RARCH_FULLSCREEN_TOGGLE_KEY);
|
2016-10-21 02:42:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check if libretro pause key was pressed. If so, pause or
|
|
|
|
* unpause the libretro core. */
|
|
|
|
|
|
|
|
/* FRAMEADVANCE will set us into pause mode. */
|
2016-12-05 07:21:18 +00:00
|
|
|
pause_pressed |= !runloop_paused
|
|
|
|
&& runloop_cmd_triggered(trigger_input, RARCH_FRAMEADVANCE);
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
if (focused && pause_pressed)
|
|
|
|
command_event(CMD_EVENT_PAUSE_TOGGLE, NULL);
|
|
|
|
else if (focused && !old_focus)
|
|
|
|
command_event(CMD_EVENT_UNPAUSE, NULL);
|
|
|
|
else if (!focused && old_focus)
|
|
|
|
command_event(CMD_EVENT_PAUSE, NULL);
|
|
|
|
|
|
|
|
old_focus = focused;
|
|
|
|
|
|
|
|
if (!focused)
|
2016-10-21 21:47:37 +00:00
|
|
|
return RUNLOOP_STATE_SLEEP;
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
if (runloop_paused)
|
2015-02-21 07:47:03 +00:00
|
|
|
{
|
2016-10-21 02:42:57 +00:00
|
|
|
/* check pause state */
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
bool check_is_oneshot = runloop_cmd_triggered(trigger_input,
|
2016-10-21 02:42:57 +00:00
|
|
|
RARCH_FRAMEADVANCE)
|
2016-10-22 15:03:20 +00:00
|
|
|
|| runloop_cmd_press(current_input, RARCH_REWIND);
|
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_FULLSCREEN_TOGGLE_KEY))
|
2016-10-21 02:42:57 +00:00
|
|
|
{
|
|
|
|
command_event(CMD_EVENT_FULLSCREEN_TOGGLE, NULL);
|
2017-01-22 00:55:19 +00:00
|
|
|
if (!runloop_idle)
|
2016-10-24 22:42:14 +00:00
|
|
|
video_driver_cached_frame();
|
2016-10-21 02:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!check_is_oneshot)
|
2016-10-21 21:47:37 +00:00
|
|
|
return RUNLOOP_STATE_SLEEP;
|
2015-02-21 07:47:03 +00:00
|
|
|
}
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
/* To avoid continous switching if we hold the button down, we require
|
|
|
|
* that the button must go from pressed to unpressed back to pressed
|
|
|
|
* to be able to toggle between then.
|
|
|
|
*/
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_FAST_FORWARD_KEY))
|
2016-10-21 02:42:57 +00:00
|
|
|
{
|
2017-01-25 03:26:40 +00:00
|
|
|
if (input_driver_is_nonblock)
|
2016-10-21 02:42:57 +00:00
|
|
|
input_driver_unset_nonblock_state();
|
|
|
|
else
|
|
|
|
input_driver_set_nonblock_state();
|
2017-01-22 11:47:17 +00:00
|
|
|
driver_set_nonblock_state();
|
2016-10-21 02:42:57 +00:00
|
|
|
}
|
2016-10-22 15:03:20 +00:00
|
|
|
else if ((runloop_cmd_pressed(old_input, RARCH_FAST_FORWARD_HOLD_KEY)
|
|
|
|
!= runloop_cmd_press(current_input, RARCH_FAST_FORWARD_HOLD_KEY)))
|
2016-10-21 02:42:57 +00:00
|
|
|
{
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_press(current_input, RARCH_FAST_FORWARD_HOLD_KEY))
|
2016-10-21 02:42:57 +00:00
|
|
|
input_driver_set_nonblock_state();
|
|
|
|
else
|
|
|
|
input_driver_unset_nonblock_state();
|
2017-01-22 11:47:17 +00:00
|
|
|
driver_set_nonblock_state();
|
2016-10-21 02:42:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Checks if the state increase/decrease keys have been pressed
|
|
|
|
* for this frame. */
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_STATE_SLOT_PLUS))
|
2016-10-21 02:42:57 +00:00
|
|
|
{
|
|
|
|
char msg[128];
|
|
|
|
|
|
|
|
msg[0] = '\0';
|
|
|
|
|
|
|
|
settings->state_slot++;
|
|
|
|
|
|
|
|
snprintf(msg, sizeof(msg), "%s: %d",
|
|
|
|
msg_hash_to_str(MSG_STATE_SLOT),
|
|
|
|
settings->state_slot);
|
|
|
|
|
2016-12-22 22:36:11 +00:00
|
|
|
runloop_msg_queue_push(msg, 2, 180, true);
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
RARCH_LOG("%s\n", msg);
|
|
|
|
}
|
2016-10-22 15:03:20 +00:00
|
|
|
else if (runloop_cmd_triggered(trigger_input, RARCH_STATE_SLOT_MINUS))
|
2016-10-21 02:42:57 +00:00
|
|
|
{
|
|
|
|
char msg[128];
|
|
|
|
|
|
|
|
msg[0] = '\0';
|
|
|
|
|
|
|
|
if (settings->state_slot > 0)
|
|
|
|
settings->state_slot--;
|
|
|
|
|
|
|
|
snprintf(msg, sizeof(msg), "%s: %d",
|
|
|
|
msg_hash_to_str(MSG_STATE_SLOT),
|
|
|
|
settings->state_slot);
|
|
|
|
|
2016-12-22 22:36:11 +00:00
|
|
|
runloop_msg_queue_push(msg, 2, 180, true);
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
RARCH_LOG("%s\n", msg);
|
|
|
|
}
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_SAVE_STATE_KEY))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_SAVE_STATE, NULL);
|
2016-10-22 15:03:20 +00:00
|
|
|
else if (runloop_cmd_triggered(trigger_input, RARCH_LOAD_STATE_KEY))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_LOAD_STATE, NULL);
|
|
|
|
|
|
|
|
#ifdef HAVE_CHEEVOS
|
|
|
|
if (!settings->cheevos.hardcore_mode_enable)
|
2015-02-21 07:52:29 +00:00
|
|
|
#endif
|
2017-01-25 01:53:58 +00:00
|
|
|
{
|
|
|
|
char s[128];
|
|
|
|
unsigned t = 0;
|
|
|
|
|
|
|
|
s[0] = '\0';
|
|
|
|
|
|
|
|
if (state_manager_check_rewind(runloop_cmd_press(current_input, RARCH_REWIND),
|
|
|
|
settings->rewind_granularity, runloop_paused, s, sizeof(s), &t))
|
|
|
|
runloop_msg_queue_push(s, 0, t, true);
|
|
|
|
}
|
2015-02-21 07:42:19 +00:00
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
runloop_slowmotion = runloop_cmd_press(current_input, RARCH_SLOWMOTION);
|
2016-09-05 05:04:15 +00:00
|
|
|
|
2016-10-21 02:42:57 +00:00
|
|
|
if (runloop_slowmotion)
|
|
|
|
{
|
|
|
|
/* Checks if slowmotion toggle/hold was being pressed and/or held. */
|
|
|
|
if (settings->video.black_frame_insertion)
|
2016-10-24 22:42:14 +00:00
|
|
|
{
|
2017-01-22 00:55:19 +00:00
|
|
|
if (!runloop_idle)
|
2016-10-24 22:42:14 +00:00
|
|
|
video_driver_cached_frame();
|
|
|
|
}
|
2016-10-21 02:42:57 +00:00
|
|
|
|
|
|
|
if (state_manager_frame_is_reversed())
|
2016-12-22 22:36:11 +00:00
|
|
|
runloop_msg_queue_push(
|
2016-12-05 07:21:18 +00:00
|
|
|
msg_hash_to_str(MSG_SLOW_MOTION_REWIND), 2, 30, true);
|
2016-10-21 02:42:57 +00:00
|
|
|
else
|
2016-12-22 22:36:11 +00:00
|
|
|
runloop_msg_queue_push(
|
2016-12-05 07:21:18 +00:00
|
|
|
msg_hash_to_str(MSG_SLOW_MOTION), 2, 30, true);
|
2016-10-21 02:42:57 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_MOVIE_RECORD_TOGGLE))
|
2016-10-21 02:42:57 +00:00
|
|
|
bsv_movie_check();
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_SHADER_NEXT) ||
|
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_SHADER_PREV))
|
2016-10-21 02:42:57 +00:00
|
|
|
dir_check_shader(
|
2016-10-22 15:03:20 +00:00
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_SHADER_NEXT),
|
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_SHADER_PREV));
|
2016-10-21 02:42:57 +00:00
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_DISK_EJECT_TOGGLE))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_DISK_EJECT_TOGGLE, NULL);
|
2016-10-22 15:03:20 +00:00
|
|
|
else if (runloop_cmd_triggered(trigger_input, RARCH_DISK_NEXT))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_DISK_NEXT, NULL);
|
2016-10-22 15:03:20 +00:00
|
|
|
else if (runloop_cmd_triggered(trigger_input, RARCH_DISK_PREV))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_DISK_PREV, NULL);
|
|
|
|
|
2016-10-22 15:03:20 +00:00
|
|
|
if (runloop_cmd_triggered(trigger_input, RARCH_RESET))
|
2016-10-21 02:42:57 +00:00
|
|
|
command_event(CMD_EVENT_RESET, NULL);
|
|
|
|
|
|
|
|
cheat_manager_state_checks(
|
2016-10-22 15:03:20 +00:00
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_CHEAT_INDEX_PLUS),
|
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_CHEAT_INDEX_MINUS),
|
|
|
|
runloop_cmd_triggered(trigger_input, RARCH_CHEAT_TOGGLE));
|
2016-10-21 02:42:57 +00:00
|
|
|
|
2016-10-21 21:20:17 +00:00
|
|
|
return RUNLOOP_STATE_ITERATE;
|
2016-09-05 05:04:15 +00:00
|
|
|
}
|
|
|
|
|
2017-01-05 07:14:56 +00:00
|
|
|
#ifdef HAVE_NETWORKING
|
2017-01-22 00:58:08 +00:00
|
|
|
/* FIXME: This is an ugly way to tell Netplay this... */
|
|
|
|
#define runloop_netplay_pause() netplay_driver_ctl(RARCH_NETPLAY_CTL_PAUSE, NULL)
|
|
|
|
#else
|
|
|
|
#define runloop_netplay_pause() ((void)0)
|
2017-01-05 07:14:56 +00:00
|
|
|
#endif
|
|
|
|
|
2015-01-07 02:53:36 +00:00
|
|
|
/**
|
2015-12-07 14:22:36 +00:00
|
|
|
* runloop_iterate:
|
2014-10-04 23:31:48 +00:00
|
|
|
*
|
2015-01-09 21:24:38 +00:00
|
|
|
* Run Libretro core in RetroArch for one frame.
|
2015-01-07 02:53:36 +00:00
|
|
|
*
|
2016-09-05 15:35:27 +00:00
|
|
|
* Returns: 0 on success, 1 if we have to wait until
|
|
|
|
* button input in order to wake up the loop,
|
2016-01-26 04:44:21 +00:00
|
|
|
* -1 if we forcibly quit out of the RetroArch iteration loop.
|
2015-01-07 02:53:36 +00:00
|
|
|
**/
|
2016-10-22 14:39:55 +00:00
|
|
|
int runloop_iterate(unsigned *sleep_ms)
|
2014-10-04 23:31:48 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
2015-09-26 19:03:38 +00:00
|
|
|
retro_time_t current, target, to_sleep_ms;
|
2016-12-06 17:12:35 +00:00
|
|
|
uint64_t trigger_input = 0;
|
2016-10-22 19:32:07 +00:00
|
|
|
static uint64_t last_input = 0;
|
2017-01-25 03:31:55 +00:00
|
|
|
bool input_driver_is_nonblock = false;
|
2015-12-04 08:54:12 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2016-10-22 15:03:20 +00:00
|
|
|
uint64_t old_input = last_input;
|
2017-01-22 16:25:32 +00:00
|
|
|
#ifdef HAVE_MENU
|
2017-01-22 23:37:39 +00:00
|
|
|
bool menu_is_alive = menu_driver_is_alive();
|
2017-01-22 16:25:32 +00:00
|
|
|
#else
|
|
|
|
bool menu_is_alive = false;
|
|
|
|
#endif
|
2016-12-11 02:52:08 +00:00
|
|
|
uint64_t current_input =
|
2016-12-11 00:29:53 +00:00
|
|
|
|
2016-12-07 02:16:34 +00:00
|
|
|
#ifdef HAVE_MENU
|
2017-01-22 16:25:32 +00:00
|
|
|
menu_is_alive ?
|
2016-12-11 02:52:08 +00:00
|
|
|
input_menu_keys_pressed(old_input,
|
2017-01-25 03:31:55 +00:00
|
|
|
&last_input, &trigger_input, runloop_paused,
|
|
|
|
&input_driver_is_nonblock) :
|
2016-12-07 02:16:34 +00:00
|
|
|
#endif
|
2016-12-11 02:52:08 +00:00
|
|
|
input_keys_pressed(old_input, &last_input,
|
2017-01-25 03:31:55 +00:00
|
|
|
&trigger_input, runloop_paused,
|
|
|
|
&input_driver_is_nonblock);
|
2016-11-28 00:25:38 +00:00
|
|
|
|
2016-05-08 04:31:12 +00:00
|
|
|
if (runloop_frame_time.callback)
|
|
|
|
{
|
|
|
|
/* Updates frame timing if frame timing callback is in use by the core.
|
|
|
|
* Limits frame time if fast forward ratio throttle is enabled. */
|
|
|
|
|
2016-05-10 07:17:04 +00:00
|
|
|
retro_time_t current = cpu_features_get_time_usec();
|
2016-05-08 04:31:12 +00:00
|
|
|
retro_time_t delta = current - runloop_frame_time_last;
|
2016-10-20 04:07:57 +00:00
|
|
|
bool is_locked_fps = (runloop_paused ||
|
2017-01-25 03:26:40 +00:00
|
|
|
input_driver_is_nonblock) |
|
2016-12-05 01:29:37 +00:00
|
|
|
!!recording_data;
|
2016-05-08 04:31:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (!runloop_frame_time_last || is_locked_fps)
|
|
|
|
delta = runloop_frame_time.reference;
|
|
|
|
|
2016-10-20 04:07:57 +00:00
|
|
|
if (!is_locked_fps && runloop_slowmotion)
|
2016-07-25 10:30:41 +00:00
|
|
|
delta /= settings->slowmotion_ratio;
|
2016-05-08 04:31:12 +00:00
|
|
|
|
|
|
|
runloop_frame_time_last = current;
|
|
|
|
|
|
|
|
if (is_locked_fps)
|
|
|
|
runloop_frame_time_last = 0;
|
|
|
|
|
|
|
|
runloop_frame_time.callback(delta);
|
|
|
|
}
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2016-12-05 05:55:09 +00:00
|
|
|
switch ((enum runloop_state)
|
|
|
|
runloop_check_state(
|
2016-12-06 17:05:59 +00:00
|
|
|
settings,
|
|
|
|
current_input,
|
|
|
|
old_input,
|
|
|
|
trigger_input,
|
2017-01-25 03:26:40 +00:00
|
|
|
input_driver_is_nonblock,
|
2016-12-06 17:05:59 +00:00
|
|
|
sleep_ms))
|
2014-10-04 23:31:48 +00:00
|
|
|
{
|
2016-10-21 21:20:17 +00:00
|
|
|
case RUNLOOP_STATE_QUIT:
|
|
|
|
frame_limit_last_time = 0.0;
|
|
|
|
command_event(CMD_EVENT_QUIT, NULL);
|
|
|
|
return -1;
|
|
|
|
case RUNLOOP_STATE_SLEEP:
|
2016-12-05 05:55:09 +00:00
|
|
|
core_poll();
|
2017-01-05 07:14:56 +00:00
|
|
|
runloop_netplay_pause();
|
2016-12-05 05:55:09 +00:00
|
|
|
*sleep_ms = 10;
|
|
|
|
return 1;
|
2016-10-21 21:20:17 +00:00
|
|
|
case RUNLOOP_STATE_END:
|
2016-12-05 05:55:09 +00:00
|
|
|
core_poll();
|
2017-01-05 07:14:56 +00:00
|
|
|
runloop_netplay_pause();
|
2016-12-05 05:55:09 +00:00
|
|
|
goto end;
|
2016-10-21 21:20:17 +00:00
|
|
|
case RUNLOOP_STATE_MENU_ITERATE:
|
|
|
|
core_poll();
|
2017-01-05 07:14:56 +00:00
|
|
|
runloop_netplay_pause();
|
2016-12-05 05:55:09 +00:00
|
|
|
return 0;
|
2016-10-21 21:54:23 +00:00
|
|
|
case RUNLOOP_STATE_ITERATE:
|
2016-10-21 21:20:17 +00:00
|
|
|
case RUNLOOP_STATE_NONE:
|
|
|
|
break;
|
2014-10-04 23:31:48 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 06:17:35 +00:00
|
|
|
autosave_lock();
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2017-01-22 15:59:55 +00:00
|
|
|
bsv_movie_set_frame_start();
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2016-03-04 18:42:30 +00:00
|
|
|
camera_driver_ctl(RARCH_CAMERA_CTL_POLL, NULL);
|
2014-10-04 23:31:48 +00:00
|
|
|
|
|
|
|
/* Update binds for analog dpad modes. */
|
2015-03-20 18:48:23 +00:00
|
|
|
for (i = 0; i < settings->input.max_users; i++)
|
2014-10-04 23:31:48 +00:00
|
|
|
{
|
2016-12-04 19:20:35 +00:00
|
|
|
struct retro_keybind *general_binds = settings->input.binds[i];
|
|
|
|
struct retro_keybind *auto_binds = settings->input.autoconf_binds[i];
|
2016-12-07 05:16:12 +00:00
|
|
|
enum analog_dpad_mode dpad_mode = (enum analog_dpad_mode)settings->input.analog_dpad_mode[i];
|
2016-12-04 20:30:50 +00:00
|
|
|
|
|
|
|
if (dpad_mode == ANALOG_DPAD_NONE)
|
2014-10-04 23:31:48 +00:00
|
|
|
continue;
|
|
|
|
|
2016-12-04 20:30:50 +00:00
|
|
|
input_push_analog_dpad(general_binds, dpad_mode);
|
|
|
|
input_push_analog_dpad(auto_binds, dpad_mode);
|
2014-10-04 23:31:48 +00:00
|
|
|
}
|
|
|
|
|
2017-01-25 03:26:40 +00:00
|
|
|
if ((settings->video.frame_delay > 0) && !input_driver_is_nonblock)
|
2015-09-22 16:55:14 +00:00
|
|
|
retro_sleep(settings->video.frame_delay);
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2016-05-07 23:33:57 +00:00
|
|
|
core_run();
|
2015-10-16 16:04:59 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CHEEVOS
|
2016-12-06 05:32:03 +00:00
|
|
|
if (runloop_check_cheevos())
|
|
|
|
cheevos_test();
|
2015-10-16 16:04:59 +00:00
|
|
|
#endif
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2015-03-20 18:48:23 +00:00
|
|
|
for (i = 0; i < settings->input.max_users; i++)
|
2014-10-04 23:31:48 +00:00
|
|
|
{
|
2016-12-04 19:17:55 +00:00
|
|
|
struct retro_keybind *general_binds = settings->input.binds[i];
|
|
|
|
struct retro_keybind *auto_binds = settings->input.autoconf_binds[i];
|
2016-12-07 05:16:12 +00:00
|
|
|
enum analog_dpad_mode dpad_mode = (enum analog_dpad_mode)settings->input.analog_dpad_mode[i];
|
2016-12-05 05:51:53 +00:00
|
|
|
|
|
|
|
if (dpad_mode == ANALOG_DPAD_NONE)
|
2014-10-04 23:31:48 +00:00
|
|
|
continue;
|
|
|
|
|
2016-12-04 19:17:55 +00:00
|
|
|
input_pop_analog_dpad(general_binds);
|
|
|
|
input_pop_analog_dpad(auto_binds);
|
2014-10-04 23:31:48 +00:00
|
|
|
}
|
|
|
|
|
2017-01-22 15:59:55 +00:00
|
|
|
bsv_movie_set_frame_end();
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2016-05-09 06:17:35 +00:00
|
|
|
autosave_unlock();
|
2014-10-04 23:31:48 +00:00
|
|
|
|
2016-07-25 10:30:41 +00:00
|
|
|
if (!settings->fastforward_ratio)
|
2016-02-21 11:11:08 +00:00
|
|
|
return 0;
|
2016-10-21 21:54:23 +00:00
|
|
|
|
2015-09-26 19:03:38 +00:00
|
|
|
end:
|
|
|
|
|
2016-05-10 07:17:04 +00:00
|
|
|
current = cpu_features_get_time_usec();
|
2016-09-05 15:35:27 +00:00
|
|
|
target = frame_limit_last_time +
|
2016-01-26 04:44:21 +00:00
|
|
|
frame_limit_minimum_time;
|
2015-09-26 19:03:38 +00:00
|
|
|
to_sleep_ms = (target - current) / 1000;
|
|
|
|
|
|
|
|
if (to_sleep_ms > 0)
|
|
|
|
{
|
|
|
|
*sleep_ms = (unsigned)to_sleep_ms;
|
|
|
|
/* Combat jitter a bit. */
|
|
|
|
frame_limit_last_time += frame_limit_minimum_time;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-05-10 07:17:04 +00:00
|
|
|
frame_limit_last_time = cpu_features_get_time_usec();
|
2015-09-26 19:03:38 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-10-04 23:31:48 +00:00
|
|
|
}
|