RetroArch/runloop.c

1257 lines
38 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 16:46:50 +00:00
* Copyright (C) 2011-2015 - Daniel De Matteis
* Copyright (C) 2012-2015 - Michael Lelli
* Copyright (C) 2014-2015 - Jay McCarthy
*
* 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>
2014-10-21 22:23:06 +00:00
#include <file/file_path.h>
2015-03-15 03:30:46 +00:00
#include <retro_inline.h>
2015-11-28 23:19:01 +00:00
#include <retro_assert.h>
#include <queues/message_queue.h>
#ifdef HAVE_THREADS
#include <rthreads/rthreads.h>
#endif
2015-06-13 17:12:10 +00:00
2015-06-22 09:45:00 +00:00
#include <compat/strl.h>
2015-06-14 16:46:00 +00:00
2015-11-11 20:10:13 +00:00
#ifdef HAVE_CHEEVOS
#include "cheevos.h"
2015-11-11 20:10:13 +00:00
#endif
2015-11-30 18:23:13 +00:00
#include "autosave.h"
2015-12-01 02:33:50 +00:00
#include "cheats.h"
2015-06-13 17:12:10 +00:00
#include "configuration.h"
#include "performance.h"
2015-12-01 00:47:26 +00:00
#include "movie.h"
2015-01-09 16:40:47 +00:00
#include "retroarch.h"
2015-01-09 17:40:33 +00:00
#include "runloop.h"
2015-11-30 21:30:13 +00:00
#include "rewind.h"
2015-12-01 02:55:31 +00:00
#include "dir_list_special.h"
2015-11-23 18:40:09 +00:00
#include "audio/audio_driver.h"
#include "camera/camera_driver.h"
#include "record/record_driver.h"
#include "input/input_driver.h"
#include "ui/ui_companion_driver.h"
2015-12-05 15:54:03 +00:00
#include "libretro_version_1.h"
2015-06-13 17:12:10 +00:00
#include "msg_hash.h"
2015-11-30 14:35:57 +00:00
#include "tasks/tasks.h"
2015-11-28 15:13:16 +00:00
#include "input/input_keyboard.h"
#ifdef HAVE_MENU
2015-01-10 03:53:37 +00:00
#include "menu/menu.h"
#endif
#ifdef HAVE_NETPLAY
#include "netplay.h"
#endif
2015-11-23 11:03:38 +00:00
#include "verbosity.h"
typedef struct event_cmd_state
{
bool fullscreen_toggle;
bool overlay_next_pressed;
bool grab_mouse_pressed;
bool menu_pressed;
bool quit_key_pressed;
bool screenshot_pressed;
bool mute_pressed;
bool osk_pressed;
bool volume_up_pressed;
bool volume_down_pressed;
bool reset_pressed;
bool disk_prev_pressed;
bool disk_next_pressed;
bool disk_eject_pressed;
bool movie_record;
bool save_state_pressed;
bool load_state_pressed;
bool slowmotion_pressed;
bool shader_next_pressed;
bool shader_prev_pressed;
bool fastforward_pressed;
bool hold_pressed;
bool old_hold_pressed;
bool state_slot_increase;
bool state_slot_decrease;
bool pause_pressed;
bool frameadvance_pressed;
bool rewind_pressed;
bool netplay_flip_pressed;
bool cheat_index_plus_pressed;
bool cheat_index_minus_pressed;
bool cheat_toggle_pressed;
} event_cmd_state_t;
2015-12-01 03:00:09 +00:00
static rarch_dir_list_t runloop_shader_dir;
2015-12-01 02:51:34 +00:00
static unsigned runloop_pending_windowed_scale;
2015-11-28 23:19:01 +00:00
static msg_queue_t *g_msg_queue;
global_t *global_get_ptr(void)
{
static struct global g_extern;
return &g_extern;
}
2015-11-28 23:19:01 +00:00
const char *rarch_main_msg_queue_pull(void)
{
const char *ret = NULL;
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_LOCK, NULL);
2015-11-28 23:19:01 +00:00
ret = msg_queue_pull(g_msg_queue);
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_UNLOCK, NULL);
2015-11-28 23:19:01 +00:00
return ret;
}
void rarch_main_msg_queue_push_new(uint32_t hash, unsigned prio, unsigned duration,
bool flush)
{
const char *msg = msg_hash_to_str(hash);
if (!msg)
return;
rarch_main_msg_queue_push(msg, prio, duration, flush);
}
void rarch_main_msg_queue_push(const char *msg, unsigned prio, unsigned duration,
bool flush)
{
2015-11-29 23:13:51 +00:00
settings_t *settings = config_get_ptr();
if(!settings->video.font_enable || !g_msg_queue)
2015-11-28 23:19:01 +00:00
return;
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_LOCK, NULL);
2015-11-28 23:19:01 +00:00
if (flush)
msg_queue_clear(g_msg_queue);
msg_queue_push(g_msg_queue, msg, prio, duration);
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_UNLOCK, NULL);
2015-11-28 23:19:01 +00:00
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, prio, duration, flush);
}
}
2015-01-07 02:53:36 +00:00
/**
* check_pause:
* @pressed : was libretro pause key pressed?
* @frameadvance_pressed : was frameadvance key pressed?
*
* Check if libretro pause key was pressed. If so, pause or
2015-01-07 02:53:36 +00:00
* unpause the libretro core.
*
* Returns: true if libretro pause key was toggled, otherwise false.
**/
2015-11-23 14:01:49 +00:00
static bool check_pause(settings_t *settings,
bool focus, bool pause_pressed,
bool frameadvance_pressed)
{
static bool old_focus = true;
2015-04-20 18:00:39 +00:00
enum event_command cmd = EVENT_CMD_NONE;
bool old_is_paused = runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL);
/* FRAMEADVANCE will set us into pause mode. */
pause_pressed |= !old_is_paused && frameadvance_pressed;
if (focus && pause_pressed)
2015-04-13 08:29:15 +00:00
cmd = EVENT_CMD_PAUSE_TOGGLE;
else if (focus && !old_focus)
2015-04-13 08:29:15 +00:00
cmd = EVENT_CMD_UNPAUSE;
else if (!focus && old_focus)
2015-04-13 08:29:15 +00:00
cmd = EVENT_CMD_PAUSE;
2014-10-05 02:10:00 +00:00
old_focus = focus;
2015-04-13 08:29:15 +00:00
if (cmd != EVENT_CMD_NONE)
event_command(cmd);
if (runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL) == old_is_paused)
2014-10-08 14:12:00 +00:00
return false;
2014-10-08 14:12:00 +00:00
return true;
}
/**
* check_fast_forward_button:
* @fastforward_pressed : is fastforward key pressed?
* @hold_pressed : is fastforward key pressed and held?
* @old_hold_pressed : was fastforward key pressed and held the last frame?
*
* Checks if the fast forward key has been pressed for this frame.
*
**/
static void check_fast_forward_button(bool fastforward_pressed,
bool hold_pressed, bool old_hold_pressed)
{
2015-01-07 02:53:36 +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
2015-01-07 02:53:36 +00:00
* to be able to toggle between then.
*/
if (fastforward_pressed)
{
if (input_driver_ctl(RARCH_INPUT_CTL_IS_NONBLOCK_STATE, NULL))
input_driver_ctl(RARCH_INPUT_CTL_UNSET_NONBLOCK_STATE, NULL);
else
input_driver_ctl(RARCH_INPUT_CTL_SET_NONBLOCK_STATE, NULL);
}
else if (old_hold_pressed != hold_pressed)
{
if (hold_pressed)
input_driver_ctl(RARCH_INPUT_CTL_SET_NONBLOCK_STATE, NULL);
else
input_driver_ctl(RARCH_INPUT_CTL_UNSET_NONBLOCK_STATE, NULL);
}
else
return;
2015-11-29 16:45:07 +00:00
driver_set_nonblock_state();
}
/**
* check_stateslots:
* @pressed_increase : is state slot increase key pressed?
* @pressed_decrease : is state slot decrease key pressed?
*
* Checks if the state increase/decrease keys have been pressed
* for this frame.
**/
2015-07-12 17:06:24 +00:00
static void check_stateslots(settings_t *settings,
bool pressed_increase, bool pressed_decrease)
{
2015-12-04 09:23:39 +00:00
char msg[128];
/* Save state slots */
if (pressed_increase)
2015-03-20 18:48:23 +00:00
settings->state_slot++;
else if (pressed_decrease)
{
2015-03-20 18:48:23 +00:00
if (settings->state_slot > 0)
settings->state_slot--;
2014-10-04 23:59:15 +00:00
}
else
return;
2014-10-04 23:59:15 +00:00
2015-07-01 17:30:34 +00:00
snprintf(msg, sizeof(msg), "%s: %d",
msg_hash_to_str(MSG_STATE_SLOT),
2015-03-20 18:48:23 +00:00
settings->state_slot);
2014-10-04 23:59:15 +00:00
rarch_main_msg_queue_push(msg, 1, 180, true);
2014-10-04 23:59:15 +00:00
RARCH_LOG("%s\n", msg);
}
2015-06-14 16:46:00 +00:00
#define SHADER_EXT_GLSL 0x7c976537U
#define SHADER_EXT_GLSLP 0x0f840c87U
#define SHADER_EXT_CG 0x0059776fU
#define SHADER_EXT_CGP 0x0b8865bfU
2015-12-01 02:55:31 +00:00
void shader_dir_free(void)
{
2015-12-01 03:00:09 +00:00
dir_list_free(runloop_shader_dir.list);
runloop_shader_dir.list = NULL;
runloop_shader_dir.ptr = 0;
2015-12-01 02:55:31 +00:00
}
bool shader_dir_init(void)
{
unsigned i;
settings_t *settings = config_get_ptr();
if (!*settings->video.shader_dir)
return false;
2015-12-01 03:00:09 +00:00
runloop_shader_dir.list = dir_list_new_special(NULL, DIR_LIST_SHADERS, NULL);
2015-12-01 02:55:31 +00:00
2015-12-01 03:00:09 +00:00
if (!runloop_shader_dir.list || runloop_shader_dir.list->size == 0)
2015-12-01 02:55:31 +00:00
{
event_command(EVENT_CMD_SHADER_DIR_DEINIT);
return false;
}
2015-12-01 03:00:09 +00:00
runloop_shader_dir.ptr = 0;
dir_list_sort(runloop_shader_dir.list, false);
2015-12-01 02:55:31 +00:00
2015-12-01 03:00:09 +00:00
for (i = 0; i < runloop_shader_dir.list->size; i++)
2015-12-01 02:55:31 +00:00
RARCH_LOG("%s \"%s\"\n",
msg_hash_to_str(MSG_FOUND_SHADER),
2015-12-01 03:00:09 +00:00
runloop_shader_dir.list->elems[i].data);
2015-12-01 02:55:31 +00:00
return true;
}
2015-01-10 20:47:30 +00:00
/**
* check_shader_dir:
* @pressed_next : was next shader key pressed?
* @pressed_previous : was previous shader key pressed?
*
* Checks if any one of the shader keys has been pressed for this frame:
2015-01-10 20:47:30 +00:00
* a) Next shader index.
* b) Previous shader index.
*
* Will also immediately apply the shader.
**/
2015-12-01 02:51:34 +00:00
static void check_shader_dir(bool pressed_next, bool pressed_prev)
{
2015-06-14 16:46:00 +00:00
uint32_t ext_hash;
2015-08-06 00:56:44 +00:00
char msg[PATH_MAX_LENGTH];
2015-06-12 15:00:37 +00:00
const char *shader = NULL;
const char *ext = NULL;
enum rarch_shader_type type = RARCH_SHADER_NONE;
2015-12-01 03:00:09 +00:00
if (!runloop_shader_dir.list)
return;
if (pressed_next)
{
2015-12-01 03:00:09 +00:00
runloop_shader_dir.ptr = (runloop_shader_dir.ptr + 1) %
runloop_shader_dir.list->size;
}
else if (pressed_prev)
{
2015-12-01 03:00:09 +00:00
if (runloop_shader_dir.ptr == 0)
runloop_shader_dir.ptr = runloop_shader_dir.list->size - 1;
else
2015-12-01 03:00:09 +00:00
runloop_shader_dir.ptr--;
}
2014-10-05 03:46:27 +00:00
else
return;
2015-12-01 03:00:09 +00:00
shader = runloop_shader_dir.list->elems[runloop_shader_dir.ptr].data;
2015-06-14 16:46:00 +00:00
ext = path_get_extension(shader);
2015-07-01 22:56:51 +00:00
ext_hash = msg_hash_calculate(ext);
2015-06-14 16:46:00 +00:00
switch (ext_hash)
{
case SHADER_EXT_GLSL:
case SHADER_EXT_GLSLP:
type = RARCH_SHADER_GLSL;
break;
case SHADER_EXT_CG:
case SHADER_EXT_CGP:
type = RARCH_SHADER_CG;
break;
default:
return;
}
2015-07-01 17:30:34 +00:00
snprintf(msg, sizeof(msg), "%s #%u: \"%s\".",
msg_hash_to_str(MSG_SHADER),
2015-12-01 03:00:09 +00:00
(unsigned)runloop_shader_dir.ptr, shader);
rarch_main_msg_queue_push(msg, 1, 120, true);
2015-07-01 17:30:34 +00:00
RARCH_LOG("%s \"%s\".\n",
msg_hash_to_str(MSG_APPLYING_SHADER),
shader);
2015-02-10 16:20:02 +00:00
if (!video_driver_set_shader(type, shader))
2015-08-29 13:05:40 +00:00
RARCH_WARN("%s\n", msg_hash_to_str(MSG_FAILED_TO_APPLY_SHADER));
}
2015-09-26 13:00:29 +00:00
2015-11-30 22:29:46 +00:00
static void rarch_main_data_clear_state(void)
{
runloop_ctl(RUNLOOP_CTL_DATA_DEINIT, NULL);
rarch_task_init();
}
bool *runloop_perfcnt_enabled(void)
{
static bool runloop_perfcnt_enable;
return &runloop_perfcnt_enable;
}
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
{
2015-12-04 07:43:05 +00:00
static char runloop_fullpath[PATH_MAX_LENGTH];
static unsigned runloop_max_frames = false;
static bool runloop_frame_time_last = false;
static bool runloop_set_frame_limit = 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;
#ifdef HAVE_THREADS
static slock_t *runloop_msg_queue_lock = NULL;
#endif
settings_t *settings = config_get_ptr();
2015-09-26 12:57:46 +00:00
switch (state)
{
case RUNLOOP_CTL_IS_FRAME_COUNT_END:
{
uint64_t *frame_count = NULL;
video_driver_ctl(RARCH_DISPLAY_CTL_GET_FRAME_COUNT, &frame_count);
return runloop_max_frames && (*frame_count >= runloop_max_frames);
}
break;
case RUNLOOP_CTL_SET_FRAME_TIME_LAST:
runloop_frame_time_last = true;
break;
case RUNLOOP_CTL_UNSET_FRAME_TIME_LAST:
runloop_frame_time_last = false;
break;
case RUNLOOP_CTL_IS_FRAME_TIME_LAST:
return runloop_frame_time_last;
case RUNLOOP_CTL_SET_FRAME_LIMIT:
runloop_set_frame_limit = true;
break;
case RUNLOOP_CTL_UNSET_FRAME_LIMIT:
runloop_set_frame_limit = false;
break;
case RUNLOOP_CTL_SHOULD_SET_FRAME_LIMIT:
return runloop_set_frame_limit;
2015-11-30 20:56:35 +00:00
case RUNLOOP_CTL_SET_PERFCNT_ENABLE:
{
bool *perfcnt_enable = runloop_perfcnt_enabled();
*perfcnt_enable = true;
}
2015-11-30 20:56:35 +00:00
break;
case RUNLOOP_CTL_UNSET_PERFCNT_ENABLE:
{
bool *perfcnt_enable = runloop_perfcnt_enabled();
*perfcnt_enable = false;
}
2015-11-30 20:56:35 +00:00
break;
case RUNLOOP_CTL_IS_PERFCNT_ENABLE:
{
bool *perfcnt_enable = runloop_perfcnt_enabled();
return *perfcnt_enable;
}
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:
{
unsigned *idx = (unsigned*)data;
if (!idx)
return false;
2015-12-01 02:51:34 +00:00
runloop_pending_windowed_scale = *idx;
}
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_SET_LIBRETRO_PATH:
{
const char *fullpath = (const char*)data;
if (!fullpath)
return false;
strlcpy(settings->libretro, fullpath, sizeof(settings->libretro));
}
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CLEAR_CONTENT_PATH:
*runloop_fullpath = '\0';
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_GET_CONTENT_PATH:
{
char **fullpath = (char**)data;
if (!fullpath)
return false;
*fullpath = (char*)runloop_fullpath;
}
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_SET_CONTENT_PATH:
{
const char *fullpath = (const char*)data;
if (!fullpath)
return false;
strlcpy(runloop_fullpath, fullpath, sizeof(runloop_fullpath));
}
break;
case RUNLOOP_CTL_CHECK_FOCUS:
if (settings->pause_nonactive)
return video_driver_ctl(RARCH_DISPLAY_CTL_IS_FOCUSED, NULL);
return true;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_IDLE_STATE:
2015-11-27 19:13:52 +00:00
{
event_cmd_state_t *cmd = (event_cmd_state_t*)data;
bool focused = runloop_ctl(RUNLOOP_CTL_CHECK_FOCUS, NULL);
2015-11-27 19:13:52 +00:00
check_pause(settings, focused,
cmd->pause_pressed, cmd->frameadvance_pressed);
if (!runloop_ctl(RUNLOOP_CTL_CHECK_PAUSE_STATE, cmd) || !focused)
2015-11-27 19:13:52 +00:00
return false;
break;
}
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_STATE:
2015-09-26 13:24:05 +00:00
{
event_cmd_state_t *cmd = (event_cmd_state_t*)data;
if (!cmd || runloop_idle)
2015-09-26 13:24:05 +00:00
return false;
if (cmd->screenshot_pressed)
event_command(EVENT_CMD_TAKE_SCREENSHOT);
if (cmd->mute_pressed)
event_command(EVENT_CMD_AUDIO_MUTE_TOGGLE);
if (cmd->osk_pressed)
{
if (input_driver_ctl(RARCH_INPUT_CTL_IS_KEYBOARD_LINEFEED_ENABLED, NULL))
input_driver_ctl(RARCH_INPUT_CTL_UNSET_KEYBOARD_LINEFEED_ENABLED, NULL);
else
input_driver_ctl(RARCH_INPUT_CTL_SET_KEYBOARD_LINEFEED_ENABLED, NULL);
}
2015-09-26 13:24:05 +00:00
if (cmd->volume_up_pressed)
event_command(EVENT_CMD_VOLUME_UP);
else if (cmd->volume_down_pressed)
event_command(EVENT_CMD_VOLUME_DOWN);
#ifdef HAVE_NETPLAY
2015-12-05 15:24:31 +00:00
netplay_driver_ctl(RARCH_NETPLAY_CTL_FLIP_PLAYERS, &cmd->netplay_flip_pressed);
netplay_driver_ctl(RARCH_NETPLAY_CTL_FULLSCREEN_TOGGLE, &cmd->fullscreen_toggle);
2015-09-26 13:24:05 +00:00
#endif
2015-11-30 20:42:59 +00:00
if (!runloop_ctl(RUNLOOP_CTL_CHECK_IDLE_STATE, data))
return false;
2015-09-26 13:24:05 +00:00
check_fast_forward_button(
2015-09-26 13:24:05 +00:00
cmd->fastforward_pressed,
cmd->hold_pressed, cmd->old_hold_pressed);
check_stateslots(settings, cmd->state_slot_increase,
cmd->state_slot_decrease);
if (cmd->save_state_pressed)
event_command(EVENT_CMD_SAVE_STATE);
else if (cmd->load_state_pressed)
event_command(EVENT_CMD_LOAD_STATE);
2015-11-30 21:25:13 +00:00
state_manager_check_rewind(cmd->rewind_pressed);
2015-09-26 13:24:05 +00:00
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_CHECK_SLOWMOTION, &cmd->slowmotion_pressed);
2015-09-26 13:24:05 +00:00
if (cmd->movie_record)
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_CHECK_MOVIE, NULL);
2015-09-26 13:24:05 +00:00
2015-12-01 02:51:34 +00:00
check_shader_dir(cmd->shader_next_pressed,
2015-09-26 13:24:05 +00:00
cmd->shader_prev_pressed);
if (cmd->disk_eject_pressed)
event_command(EVENT_CMD_DISK_EJECT_TOGGLE);
else if (cmd->disk_next_pressed)
event_command(EVENT_CMD_DISK_NEXT);
else if (cmd->disk_prev_pressed)
event_command(EVENT_CMD_DISK_PREV);
2015-09-26 13:24:05 +00:00
if (cmd->reset_pressed)
event_command(EVENT_CMD_RESET);
cheat_manager_state_checks(
cmd->cheat_index_plus_pressed,
cmd->cheat_index_minus_pressed,
cmd->cheat_toggle_pressed);
2015-09-26 13:24:05 +00:00
}
2015-09-26 13:35:01 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_PAUSE_STATE:
2015-09-26 13:16:28 +00:00
{
bool check_is_oneshot;
event_cmd_state_t *cmd = (event_cmd_state_t*)data;
if (!cmd)
return false;
check_is_oneshot = cmd->frameadvance_pressed || cmd->rewind_pressed;
if (!runloop_paused)
2015-09-26 13:16:28 +00:00
return true;
if (cmd->fullscreen_toggle)
{
event_command(EVENT_CMD_FULLSCREEN_TOGGLE);
video_driver_ctl(RARCH_DISPLAY_CTL_CACHED_FRAME_RENDER, NULL);
2015-09-26 13:16:28 +00:00
}
if (!check_is_oneshot)
return false;
}
2015-09-26 13:35:01 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_SLOWMOTION:
2015-09-26 12:57:46 +00:00
{
bool *ptr = (bool*)data;
if (!ptr)
return false;
runloop_slowmotion = *ptr;
2015-09-26 12:57:46 +00:00
if (!runloop_slowmotion)
2015-09-26 12:57:46 +00:00
return false;
if (settings->video.black_frame_insertion)
video_driver_ctl(RARCH_DISPLAY_CTL_CACHED_FRAME_RENDER, NULL);
2015-09-26 12:57:46 +00:00
if (state_manager_frame_is_reversed())
rarch_main_msg_queue_push_new(MSG_SLOW_MOTION_REWIND, 0, 30, true);
else
rarch_main_msg_queue_push_new(MSG_SLOW_MOTION, 0, 30, true);
}
2015-09-26 13:35:01 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_MOVIE:
2015-11-30 23:08:02 +00:00
if (bsv_movie_ctl(BSV_MOVIE_CTL_PLAYBACK_ON, NULL))
2015-11-30 20:42:59 +00:00
return runloop_ctl(RUNLOOP_CTL_CHECK_MOVIE_PLAYBACK, NULL);
2015-11-30 23:04:04 +00:00
if (!bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-11-30 20:42:59 +00:00
return runloop_ctl(RUNLOOP_CTL_CHECK_MOVIE_INIT, NULL);
return runloop_ctl(RUNLOOP_CTL_CHECK_MOVIE_RECORD, NULL);
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_MOVIE_RECORD:
2015-11-30 23:04:04 +00:00
if (!bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-09-26 12:57:46 +00:00
return false;
rarch_main_msg_queue_push_new(
MSG_MOVIE_RECORD_STOPPED, 2, 180, true);
RARCH_LOG("%s\n", msg_hash_to_str(MSG_MOVIE_RECORD_STOPPED));
event_command(EVENT_CMD_BSV_MOVIE_DEINIT);
2015-09-26 13:35:01 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_MOVIE_INIT:
2015-11-30 23:04:04 +00:00
if (bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-09-26 12:57:46 +00:00
return false;
{
char path[PATH_MAX_LENGTH], msg[PATH_MAX_LENGTH];
settings->rewind_granularity = 1;
if (settings->state_slot > 0)
snprintf(path, sizeof(path), "%s%d",
bsv_movie_get_path(), settings->state_slot);
2015-09-26 12:57:46 +00:00
else
strlcpy(path, bsv_movie_get_path(), sizeof(path));
2015-09-26 12:57:46 +00:00
strlcat(path, ".bsv", sizeof(path));
snprintf(msg, sizeof(msg), "%s \"%s\".",
msg_hash_to_str(MSG_STARTING_MOVIE_RECORD_TO),
path);
bsv_movie_init_handle(path, RARCH_MOVIE_RECORD);
2015-09-26 12:57:46 +00:00
2015-11-30 23:04:04 +00:00
if (!bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-09-26 13:35:01 +00:00
return false;
2015-11-30 23:04:04 +00:00
else if (bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-09-26 12:57:46 +00:00
{
rarch_main_msg_queue_push(msg, 1, 180, true);
RARCH_LOG("%s \"%s\".\n",
msg_hash_to_str(MSG_STARTING_MOVIE_RECORD_TO),
path);
}
else
{
rarch_main_msg_queue_push_new(
MSG_FAILED_TO_START_MOVIE_RECORD,
1, 180, true);
RARCH_ERR("%s\n", msg_hash_to_str(MSG_FAILED_TO_START_MOVIE_RECORD));
}
}
2015-09-26 13:35:01 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CHECK_MOVIE_PLAYBACK:
2015-12-01 00:29:16 +00:00
if (!bsv_movie_ctl(BSV_MOVIE_CTL_END, NULL))
2015-09-26 12:57:46 +00:00
return false;
rarch_main_msg_queue_push_new(
MSG_MOVIE_PLAYBACK_ENDED, 1, 180, false);
RARCH_LOG("%s\n", msg_hash_to_str(MSG_MOVIE_PLAYBACK_ENDED));
event_command(EVENT_CMD_BSV_MOVIE_DEINIT);
2015-11-30 23:16:48 +00:00
bsv_movie_ctl(BSV_MOVIE_CTL_UNSET_END, NULL);
bsv_movie_ctl(BSV_MOVIE_CTL_UNSET_PLAYBACK, NULL);
2015-09-26 13:35:01 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_STATE_FREE:
runloop_idle = false;
runloop_paused = false;
runloop_slowmotion = false;
runloop_max_frames = 0;
2015-09-26 19:32:41 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_GLOBAL_FREE:
{
global_t *global;
event_command(EVENT_CMD_TEMPORARY_CONTENT_DEINIT);
event_command(EVENT_CMD_SUBSYSTEM_FULLPATHS_DEINIT);
event_command(EVENT_CMD_RECORD_DEINIT);
event_command(EVENT_CMD_LOG_FILE_DEINIT);
rarch_ctl(RARCH_CTL_UNSET_BLOCK_CONFIG_READ, NULL);
runloop_ctl(RUNLOOP_CTL_CLEAR_CONTENT_PATH, NULL);
global = global_get_ptr();
memset(global, 0, sizeof(struct global));
}
2015-09-26 19:30:20 +00:00
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_CLEAR_STATE:
2015-12-05 20:14:44 +00:00
driver_free();
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;
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:
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;
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_IS_SLOWMOTION:
2015-09-26 12:57:46 +00:00
{
bool *ptr = (bool*)data;
if (!ptr)
return false;
*ptr = runloop_slowmotion;
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;
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;
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:
return runloop_paused;
case RUNLOOP_CTL_MSG_QUEUE_FREE:
#ifdef HAVE_THREADS
slock_free(runloop_msg_queue_lock);
#endif
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_MSG_QUEUE_DEINIT:
2015-12-04 09:23:39 +00:00
if (!g_msg_queue)
return true;
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_LOCK, NULL);
msg_queue_free(g_msg_queue);
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_UNLOCK, NULL);
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_FREE, NULL);
g_msg_queue = NULL;
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_MSG_QUEUE_INIT:
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_MSG_QUEUE_DEINIT, NULL);
if (g_msg_queue)
return true;
g_msg_queue = msg_queue_new(8);
retro_assert(g_msg_queue);
#ifdef HAVE_THREADS
runloop_msg_queue_lock = slock_new();
retro_assert(runloop_msg_queue_lock);
#endif
break;
case RUNLOOP_CTL_MSG_QUEUE_LOCK:
#ifdef HAVE_THREADS
slock_lock(runloop_msg_queue_lock);
#endif
break;
case RUNLOOP_CTL_MSG_QUEUE_UNLOCK:
#ifdef HAVE_THREADS
slock_unlock(runloop_msg_queue_lock);
#endif
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_PREPARE_DUMMY:
{
#ifdef HAVE_MENU
menu_handle_t *menu = menu_driver_get_ptr();
if (menu)
menu->load_no_content = false;
#endif
rarch_main_data_clear_state();
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_CLEAR_CONTENT_PATH, NULL);
rarch_ctl(RARCH_CTL_LOAD_CONTENT, NULL);
}
break;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_SET_CORE_SHUTDOWN:
runloop_core_shutdown_initiated = true;
break;
case RUNLOOP_CTL_UNSET_CORE_SHUTDOWN:
runloop_core_shutdown_initiated = false;
break;
case RUNLOOP_CTL_IS_CORE_SHUTDOWN:
return runloop_core_shutdown_initiated;
case RUNLOOP_CTL_SET_SHUTDOWN:
runloop_shutdown_initiated = true;
break;
case RUNLOOP_CTL_UNSET_SHUTDOWN:
runloop_shutdown_initiated = false;
break;
case RUNLOOP_CTL_IS_SHUTDOWN:
return runloop_shutdown_initiated;
2015-11-30 20:35:50 +00:00
case RUNLOOP_CTL_SET_EXEC:
runloop_exec = true;
break;
case RUNLOOP_CTL_UNSET_EXEC:
runloop_exec = false;
break;
case RUNLOOP_CTL_IS_EXEC:
return runloop_exec;
2015-11-30 22:29:46 +00:00
case RUNLOOP_CTL_DATA_DEINIT:
rarch_task_deinit();
break;
2015-09-26 13:35:01 +00:00
default:
return false;
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
}
#ifdef HAVE_OVERLAY
static void rarch_main_iterate_linefeed_overlay(settings_t *settings)
{
static char prev_overlay_restore = false;
bool osk_enable = input_driver_ctl(RARCH_INPUT_CTL_IS_OSK_ENABLED, NULL);
if (osk_enable && !input_driver_ctl(RARCH_INPUT_CTL_IS_KEYBOARD_LINEFEED_ENABLED, NULL))
{
input_driver_ctl(RARCH_INPUT_CTL_UNSET_OSK_ENABLED, NULL);
prev_overlay_restore = true;
event_command(EVENT_CMD_OVERLAY_DEINIT);
}
else if (!osk_enable && input_driver_ctl(RARCH_INPUT_CTL_IS_KEYBOARD_LINEFEED_ENABLED, NULL))
{
input_driver_ctl(RARCH_INPUT_CTL_SET_OSK_ENABLED, NULL);
prev_overlay_restore = false;
event_command(EVENT_CMD_OVERLAY_INIT);
}
else if (prev_overlay_restore)
{
2015-07-09 02:05:59 +00:00
if (!settings->input.overlay_hide_in_menu)
event_command(EVENT_CMD_OVERLAY_INIT);
prev_overlay_restore = false;
}
}
#endif
2015-10-27 23:55:11 +00:00
#ifdef HAVE_MENU
2015-07-09 04:27:17 +00:00
static bool rarch_main_cmd_get_state_menu_toggle_button_combo(
2015-11-29 16:23:30 +00:00
settings_t *settings,
2015-07-09 04:27:17 +00:00
retro_input_t input, retro_input_t old_input,
retro_input_t trigger_input)
{
switch (settings->input.menu_toggle_gamepad_combo)
{
case 0:
return false;
case 1:
if (!BIT64_GET(input, RETRO_DEVICE_ID_JOYPAD_DOWN))
return false;
if (!BIT64_GET(input, RETRO_DEVICE_ID_JOYPAD_Y))
return false;
if (!BIT64_GET(input, RETRO_DEVICE_ID_JOYPAD_L))
return false;
if (!BIT64_GET(input, RETRO_DEVICE_ID_JOYPAD_R))
return false;
break;
case 2:
if (!BIT64_GET(input, RETRO_DEVICE_ID_JOYPAD_L3))
return false;
if (!BIT64_GET(input, RETRO_DEVICE_ID_JOYPAD_R3))
return false;
break;
}
2015-11-29 16:23:30 +00:00
input_driver_ctl(RARCH_INPUT_CTL_SET_FLUSHING_INPUT, NULL);
2015-07-09 04:27:17 +00:00
return true;
}
2015-10-27 23:55:11 +00:00
#endif
2015-07-09 04:27:17 +00:00
static void rarch_main_cmd_get_state(
2015-08-03 21:48:58 +00:00
settings_t *settings, event_cmd_state_t *cmd,
2015-03-24 09:01:17 +00:00
retro_input_t input, retro_input_t old_input,
retro_input_t trigger_input)
{
if (!cmd)
return;
cmd->overlay_next_pressed = BIT64_GET(trigger_input, RARCH_OVERLAY_NEXT);
cmd->grab_mouse_pressed = BIT64_GET(trigger_input, RARCH_GRAB_MOUSE_TOGGLE);
#ifdef HAVE_MENU
2015-07-09 04:27:17 +00:00
cmd->menu_pressed = BIT64_GET(trigger_input, RARCH_MENU_TOGGLE) ||
2015-11-29 16:23:30 +00:00
rarch_main_cmd_get_state_menu_toggle_button_combo(
2015-08-03 21:48:58 +00:00
settings, input,
2015-07-09 04:27:17 +00:00
old_input, trigger_input);
2015-03-24 09:01:17 +00:00
#endif
cmd->quit_key_pressed = BIT64_GET(input, RARCH_QUIT_KEY);
cmd->screenshot_pressed = BIT64_GET(trigger_input, RARCH_SCREENSHOT);
cmd->mute_pressed = BIT64_GET(trigger_input, RARCH_MUTE);
2015-04-27 03:36:41 +00:00
cmd->osk_pressed = BIT64_GET(trigger_input, RARCH_OSK);
2015-03-24 09:01:17 +00:00
cmd->volume_up_pressed = BIT64_GET(input, RARCH_VOLUME_UP);
cmd->volume_down_pressed = BIT64_GET(input, RARCH_VOLUME_DOWN);
cmd->reset_pressed = BIT64_GET(trigger_input, RARCH_RESET);
cmd->disk_prev_pressed = BIT64_GET(trigger_input, RARCH_DISK_PREV);
cmd->disk_next_pressed = BIT64_GET(trigger_input, RARCH_DISK_NEXT);
cmd->disk_eject_pressed = BIT64_GET(trigger_input, RARCH_DISK_EJECT_TOGGLE);
cmd->movie_record = BIT64_GET(trigger_input, RARCH_MOVIE_RECORD_TOGGLE);
cmd->save_state_pressed = BIT64_GET(trigger_input, RARCH_SAVE_STATE_KEY);
cmd->load_state_pressed = BIT64_GET(trigger_input, RARCH_LOAD_STATE_KEY);
cmd->slowmotion_pressed = BIT64_GET(input, RARCH_SLOWMOTION);
cmd->shader_next_pressed = BIT64_GET(trigger_input, RARCH_SHADER_NEXT);
cmd->shader_prev_pressed = BIT64_GET(trigger_input, RARCH_SHADER_PREV);
cmd->fastforward_pressed = BIT64_GET(trigger_input, RARCH_FAST_FORWARD_KEY);
cmd->hold_pressed = BIT64_GET(input, RARCH_FAST_FORWARD_HOLD_KEY);
cmd->old_hold_pressed = BIT64_GET(old_input, RARCH_FAST_FORWARD_HOLD_KEY);
cmd->state_slot_increase = BIT64_GET(trigger_input, RARCH_STATE_SLOT_PLUS);
cmd->state_slot_decrease = BIT64_GET(trigger_input, RARCH_STATE_SLOT_MINUS);
cmd->pause_pressed = BIT64_GET(trigger_input, RARCH_PAUSE_TOGGLE);
cmd->frameadvance_pressed = BIT64_GET(trigger_input, RARCH_FRAMEADVANCE);
2015-04-05 19:34:53 +00:00
cmd->rewind_pressed = BIT64_GET(input, RARCH_REWIND);
2015-03-24 09:01:17 +00:00
cmd->netplay_flip_pressed = BIT64_GET(trigger_input, RARCH_NETPLAY_FLIP);
cmd->fullscreen_toggle = BIT64_GET(trigger_input, RARCH_FULLSCREEN_TOGGLE_KEY);
cmd->cheat_index_plus_pressed = BIT64_GET(trigger_input,
RARCH_CHEAT_INDEX_PLUS);
cmd->cheat_index_minus_pressed = BIT64_GET(trigger_input,
RARCH_CHEAT_INDEX_MINUS);
cmd->cheat_toggle_pressed = BIT64_GET(trigger_input,
RARCH_CHEAT_TOGGLE);
}
/* Time to exit out of the main loop?
2015-09-30 17:09:05 +00:00
* 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)
*/
static INLINE int rarch_main_iterate_time_to_exit(bool quit_key_pressed)
2015-09-30 17:09:05 +00:00
{
bool time_to_exit = runloop_ctl(RUNLOOP_CTL_IS_SHUTDOWN, NULL) || quit_key_pressed;
time_to_exit = time_to_exit || (video_driver_ctl(RARCH_DISPLAY_CTL_IS_ALIVE, NULL) == false);
time_to_exit = time_to_exit || bsv_movie_ctl(BSV_MOVIE_CTL_END_EOF, NULL);
time_to_exit = time_to_exit || runloop_ctl(RUNLOOP_CTL_IS_FRAME_COUNT_END, NULL);
time_to_exit = time_to_exit || runloop_ctl(RUNLOOP_CTL_IS_EXEC, NULL);
if (!time_to_exit)
return 1;
if (runloop_ctl(RUNLOOP_CTL_IS_EXEC, NULL))
runloop_ctl(RUNLOOP_CTL_UNSET_EXEC, NULL);
if (runloop_ctl(RUNLOOP_CTL_IS_CORE_SHUTDOWN, NULL))
2015-09-30 17:09:05 +00:00
{
/* Quits out of RetroArch main loop.
* On special case, loads dummy core
* instead of exiting RetroArch completely.
* Aborts core shutdown if invoked.
*/
settings_t *settings = config_get_ptr();
if (!settings->load_dummy_on_core_shutdown)
return -1;
if (!runloop_ctl(RUNLOOP_CTL_PREPARE_DUMMY, NULL))
return -1;
2015-09-30 17:09:05 +00:00
runloop_ctl(RUNLOOP_CTL_UNSET_SHUTDOWN, NULL);
runloop_ctl(RUNLOOP_CTL_UNSET_CORE_SHUTDOWN, NULL);
2015-09-30 17:09:05 +00:00
return 0;
2015-09-30 17:09:05 +00:00
}
return -1;
2015-09-30 17:09:05 +00:00
}
2015-01-07 02:53:36 +00:00
/**
* rarch_main_iterate:
*
2015-01-09 21:24:38 +00:00
* Run Libretro core in RetroArch for one frame.
2015-01-07 02:53:36 +00:00
*
2015-01-11 16:33:05 +00:00
* Returns: 0 on success, 1 if we have to wait until button input in order
* to wake up the loop, -1 if we forcibly quit out of the RetroArch iteration loop.
2015-01-07 02:53:36 +00:00
**/
int rarch_main_iterate(unsigned *sleep_ms)
{
unsigned i;
2015-08-05 13:54:21 +00:00
retro_input_t trigger_input;
event_cmd_state_t cmd;
2015-09-26 19:03:38 +00:00
retro_time_t current, target, to_sleep_ms;
2015-12-04 11:27:37 +00:00
static retro_usec_t frame_time_last = 0;
static retro_time_t frame_limit_minimum_time = 0.0;
static retro_time_t frame_limit_last_time = 0.0;
static retro_input_t last_input = 0;
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
retro_input_t input = input_keys_pressed();
rarch_system_info_t *system = rarch_system_info_get_ptr();
retro_input_t old_input = last_input;
last_input = input;
if (runloop_ctl(RUNLOOP_CTL_IS_FRAME_TIME_LAST, NULL))
{
frame_time_last = 0;
runloop_ctl(RUNLOOP_CTL_UNSET_FRAME_TIME_LAST, NULL);
}
if (runloop_ctl(RUNLOOP_CTL_SHOULD_SET_FRAME_LIMIT, NULL))
{
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 = retro_get_time_usec();
frame_limit_minimum_time = (retro_time_t)roundf(1000000.0f
/ (av_info->timing.fps * fastforward_ratio));
runloop_ctl(RUNLOOP_CTL_UNSET_FRAME_LIMIT, NULL);
}
2015-06-26 17:37:03 +00:00
2015-11-29 16:23:30 +00:00
if (input_driver_ctl(RARCH_INPUT_CTL_IS_FLUSHING_INPUT, NULL))
2015-08-06 01:17:56 +00:00
{
2015-11-29 16:23:30 +00:00
input_driver_ctl(RARCH_INPUT_CTL_UNSET_FLUSHING_INPUT, NULL);
2015-08-06 01:17:56 +00:00
if (input)
{
2015-08-06 01:20:15 +00:00
input = 0;
2015-11-28 02:22:20 +00:00
2015-08-06 01:20:15 +00:00
/* If core was paused before entering menu, evoke
* pause toggle to wake it up. */
if (runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL))
2015-08-06 01:20:15 +00:00
BIT64_SET(input, RARCH_PAUSE_TOGGLE);
2015-11-29 16:23:30 +00:00
input_driver_ctl(RARCH_INPUT_CTL_SET_FLUSHING_INPUT, NULL);
2015-08-06 01:17:56 +00:00
}
}
if (system->frame_time.callback)
2015-09-26 19:06:27 +00:00
{
/* Updates frame timing if frame timing callback is in use by the core.
* Limits frame time if fast forward ratio throttle is enabled. */
bool is_slowmotion;
2015-09-26 19:06:27 +00:00
retro_time_t current = retro_get_time_usec();
retro_time_t delta = current - frame_time_last;
bool is_locked_fps = (runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL) ||
input_driver_ctl(RARCH_INPUT_CTL_IS_NONBLOCK_STATE, NULL)) |
!!recording_driver_get_data_ptr();
2015-09-26 19:06:27 +00:00
runloop_ctl(RUNLOOP_CTL_IS_SLOWMOTION, &is_slowmotion);
if (!frame_time_last || is_locked_fps)
2015-09-26 19:06:27 +00:00
delta = system->frame_time.reference;
if (!is_locked_fps && is_slowmotion)
2015-09-26 19:06:27 +00:00
delta /= settings->slowmotion_ratio;
frame_time_last = current;
2015-09-26 19:06:27 +00:00
if (is_locked_fps)
frame_time_last = 0;
2015-09-26 19:06:27 +00:00
system->frame_time.callback(delta);
}
2015-10-22 16:29:35 +00:00
trigger_input = input & ~old_input;
rarch_main_cmd_get_state(settings, &cmd, input, old_input, trigger_input);
2015-10-22 16:29:35 +00:00
2015-09-26 13:08:52 +00:00
if (cmd.overlay_next_pressed)
event_command(EVENT_CMD_OVERLAY_NEXT);
2015-12-04 10:21:06 +00:00
if (cmd.fullscreen_toggle)
{
bool fullscreen_toggled = !runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL);
2015-10-27 23:55:11 +00:00
#ifdef HAVE_MENU
2015-12-05 12:49:22 +00:00
fullscreen_toggled = fullscreen_toggled || menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL);
2015-10-27 23:55:11 +00:00
#endif
2015-12-04 09:49:09 +00:00
2015-12-04 10:21:06 +00:00
if (fullscreen_toggled)
event_command(EVENT_CMD_FULLSCREEN_TOGGLE);
}
2015-09-26 13:08:52 +00:00
if (cmd.grab_mouse_pressed)
event_command(EVENT_CMD_GRAB_MOUSE_TOGGLE);
#ifdef HAVE_MENU
2015-12-04 10:34:06 +00:00
if (cmd.menu_pressed || (global->inited.core.type == CORE_TYPE_DUMMY))
2015-09-26 19:03:38 +00:00
{
2015-12-05 12:49:22 +00:00
if (menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL))
2015-09-26 19:03:38 +00:00
{
if (global->inited.main && (global->inited.core.type != CORE_TYPE_DUMMY))
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
2015-09-26 19:03:38 +00:00
}
else
rarch_ctl(RARCH_CTL_MENU_RUNNING, NULL);
2015-09-26 19:03:38 +00:00
}
2015-09-26 13:08:52 +00:00
#endif
#ifdef HAVE_OVERLAY
rarch_main_iterate_linefeed_overlay(settings);
#endif
if (rarch_main_iterate_time_to_exit(cmd.quit_key_pressed) != 1)
{
frame_limit_last_time = 0.0;
2015-09-30 17:09:05 +00:00
return -1;
}
2015-08-27 10:43:35 +00:00
2015-08-27 10:48:35 +00:00
#ifdef HAVE_MENU
2015-12-05 12:49:22 +00:00
if (menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL))
2015-08-27 10:48:35 +00:00
{
bool focused = runloop_ctl(RUNLOOP_CTL_CHECK_FOCUS, NULL) && !ui_companion_is_on_foreground();
2015-11-30 20:42:59 +00:00
bool is_idle = runloop_ctl(RUNLOOP_CTL_IS_IDLE, NULL);
2015-11-28 14:03:59 +00:00
2015-11-07 19:44:40 +00:00
if (menu_driver_iterate((enum menu_action)menu_input_frame_retropad(input, trigger_input)) == -1)
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
2015-11-28 02:22:20 +00:00
if (focused || !is_idle)
2015-11-28 02:22:20 +00:00
menu_iterate_render();
2015-11-28 14:03:59 +00:00
if (!focused || is_idle)
{
*sleep_ms = 10;
return 1;
}
2015-11-28 02:22:20 +00:00
2015-09-26 19:03:38 +00:00
goto end;
2015-08-27 10:48:35 +00:00
}
#endif
2015-11-30 20:42:59 +00:00
if (!runloop_ctl(RUNLOOP_CTL_CHECK_STATE, &cmd))
{
/* RetroArch has been paused. */
2015-12-05 15:54:03 +00:00
retro_ctx.poll_cb();
*sleep_ms = 10;
return 1;
}
#if defined(HAVE_THREADS)
lock_autosave();
#endif
#ifdef HAVE_NETPLAY
netplay_driver_ctl(RARCH_NETPLAY_CTL_PRE_FRAME, NULL);
#endif
2015-11-30 23:04:04 +00:00
if (bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-11-30 23:16:48 +00:00
bsv_movie_ctl(BSV_MOVIE_CTL_SET_FRAME_START, NULL);
if (system->camera_callback.caps)
driver_camera_poll();
/* Update binds for analog dpad modes. */
2015-03-20 18:48:23 +00:00
for (i = 0; i < settings->input.max_users; i++)
{
2015-03-20 18:48:23 +00:00
if (!settings->input.analog_dpad_mode[i])
continue;
2015-03-20 18:48:23 +00:00
input_push_analog_dpad(settings->input.binds[i],
settings->input.analog_dpad_mode[i]);
input_push_analog_dpad(settings->input.autoconf_binds[i],
settings->input.analog_dpad_mode[i]);
}
if ((settings->video.frame_delay > 0) &&
!input_driver_ctl(RARCH_INPUT_CTL_IS_NONBLOCK_STATE, NULL))
2015-09-22 16:55:14 +00:00
retro_sleep(settings->video.frame_delay);
/* Run libretro for one frame. */
core.retro_run();
#ifdef HAVE_CHEEVOS
/* Test the achievements. */
cheevos_test();
#endif
2015-03-20 18:48:23 +00:00
for (i = 0; i < settings->input.max_users; i++)
{
2015-03-20 18:48:23 +00:00
if (!settings->input.analog_dpad_mode[i])
continue;
2015-03-20 18:48:23 +00:00
input_pop_analog_dpad(settings->input.binds[i]);
input_pop_analog_dpad(settings->input.autoconf_binds[i]);
}
2015-11-30 23:04:04 +00:00
if (bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-11-30 23:16:48 +00:00
bsv_movie_ctl(BSV_MOVIE_CTL_SET_FRAME_END, NULL);
#ifdef HAVE_NETPLAY
netplay_driver_ctl(RARCH_NETPLAY_CTL_POST_FRAME, NULL);
#endif
#if defined(HAVE_THREADS)
unlock_autosave();
#endif
#ifdef HAVE_MENU
2015-09-26 19:03:38 +00:00
end:
#endif
2015-09-26 19:03:38 +00:00
if (!settings->fastforward_ratio)
return 0;
current = retro_get_time_usec();
target = frame_limit_last_time + frame_limit_minimum_time;
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;
}
frame_limit_last_time = retro_get_time_usec();
return 0;
}
2015-11-30 14:35:57 +00:00
void rarch_main_data_iterate(void)
{
rarch_task_check();
}
void data_runloop_osd_msg(const char *msg, size_t len)
{
rarch_main_msg_queue_push(msg, 1, 10, true);
}
2015-11-30 20:56:35 +00:00