RetroArch/command_event.c

1717 lines
49 KiB
C
Raw Normal View History

2015-04-13 09:15:40 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
*
2015-04-13 09:15:40 +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-10-27 23:55:11 +00:00
#include <ctype.h>
2015-06-13 17:12:10 +00:00
#include <compat/strl.h>
2016-02-07 00:50:08 +00:00
#include <file/file_path.h>
#include <lists/dir_list.h>
2016-01-27 19:04:34 +00:00
#include <string/stdstring.h>
2015-06-13 17:12:10 +00:00
2015-04-13 09:15:40 +00:00
#include "command_event.h"
2015-06-13 17:12:10 +00:00
2016-03-22 02:13:33 +00:00
#include "defaults.h"
#include "frontend/frontend_driver.h"
2015-11-23 18:40:09 +00:00
#include "audio/audio_driver.h"
#include "record/record_driver.h"
2015-11-30 18:23:13 +00:00
#include "autosave.h"
#include "core_info.h"
2016-05-08 02:16:11 +00:00
#include "core_type.h"
2015-12-01 02:33:50 +00:00
#include "cheats.h"
2015-04-13 09:15:40 +00:00
#include "performance.h"
#include "dynamic.h"
#include "content.h"
2015-12-01 00:47:26 +00:00
#include "movie.h"
2015-04-13 09:15:40 +00:00
#include "screenshot.h"
2015-07-01 20:14:37 +00:00
#include "msg_hash.h"
2015-04-13 09:15:40 +00:00
#include "retroarch.h"
2016-05-09 05:14:10 +00:00
#include "state_manager.h"
#include "system.h"
#include "ui/ui_companion_driver.h"
2016-03-20 16:28:24 +00:00
#include "list_special.h"
2015-04-13 09:15:40 +00:00
#ifdef HAVE_CHEEVOS
#include "cheevos.h"
#endif
2016-05-08 03:29:10 +00:00
#include "core.h"
2015-11-23 11:03:38 +00:00
#include "verbosity.h"
2015-11-30 14:35:57 +00:00
#include "runloop.h"
2015-06-13 17:12:10 +00:00
#include "configuration.h"
2015-04-13 09:15:40 +00:00
#include "input/input_remapping.h"
#ifdef HAVE_MENU
#include "menu/menu_driver.h"
#include "menu/menu_display.h"
2015-04-13 09:15:40 +00:00
#include "menu/menu_shader.h"
#endif
#ifdef HAVE_NETPLAY
2015-12-23 20:25:28 +00:00
#include "netplay/netplay.h"
2015-04-13 09:15:40 +00:00
#endif
#ifdef HAVE_NETWORKING
#include <net/net_compat.h>
#endif
/**
* event_disk_control_set_eject:
* @new_state : Eject or close the virtual drive tray.
* false (0) : Close
* true (1) : Eject
* @print_log : Show message onscreen.
*
* Ejects/closes of the virtual drive tray.
**/
static void event_disk_control_set_eject(bool new_state, bool print_log)
{
2015-12-10 21:30:25 +00:00
char msg[128] = {0};
bool error = false;
rarch_system_info_t *info = NULL;
const struct retro_disk_control_callback *control = NULL;
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &info);
if (info)
2016-03-04 19:00:49 +00:00
control = (const struct retro_disk_control_callback*)&info->disk_control_cb;
if (!control || !control->get_num_images)
return;
if (control->set_eject_state(new_state))
2015-07-01 20:40:10 +00:00
snprintf(msg, sizeof(msg), "%s %s",
new_state ? "Ejected" : "Closed",
msg_hash_to_str(MSG_VIRTUAL_DISK_TRAY));
else
{
error = true;
2015-07-01 20:40:10 +00:00
snprintf(msg, sizeof(msg), "%s %s %s",
msg_hash_to_str(MSG_FAILED_TO),
new_state ? "eject" : "close",
msg_hash_to_str(MSG_VIRTUAL_DISK_TRAY));
}
if (*msg)
{
if (error)
RARCH_ERR("%s\n", msg);
else
RARCH_LOG("%s\n", msg);
/* Only noise in menu. */
if (print_log)
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 180, true);
}
}
/**
* event_disk_control_set_index:
* @idx : Index of disk to set as current.
*
* Sets current disk to @index.
**/
static void event_disk_control_set_index(unsigned idx)
{
unsigned num_disks;
bool error = false;
char msg[128] = {0};
2015-12-10 21:30:25 +00:00
rarch_system_info_t *info = NULL;
const struct retro_disk_control_callback *control = NULL;
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &info);
if (info)
2016-03-04 19:00:49 +00:00
control = (const struct retro_disk_control_callback*)&info->disk_control_cb;
if (!control || !control->get_num_images)
return;
num_disks = control->get_num_images();
if (control->set_image_index(idx))
{
if (idx < num_disks)
snprintf(msg, sizeof(msg), "Setting disk %u of %u in tray.",
idx + 1, num_disks);
else
2015-07-01 21:00:23 +00:00
strlcpy(msg,
msg_hash_to_str(MSG_REMOVED_DISK_FROM_TRAY),
sizeof(msg));
}
else
{
if (idx < num_disks)
snprintf(msg, sizeof(msg), "Failed to set disk %u of %u.",
idx + 1, num_disks);
else
2015-07-01 21:00:23 +00:00
strlcpy(msg,
msg_hash_to_str(MSG_FAILED_TO_REMOVE_DISK_FROM_TRAY),
sizeof(msg));
error = true;
}
if (*msg)
{
if (error)
RARCH_ERR("%s\n", msg);
else
RARCH_LOG("%s\n", msg);
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 180, true);
}
2015-04-13 09:15:40 +00:00
}
/**
* event_disk_control_append_image:
* @path : Path to disk image.
*
* Appends disk image to disk image list.
**/
2016-01-27 19:04:34 +00:00
static bool event_disk_control_append_image(const char *path)
{
unsigned new_idx;
2015-12-10 21:30:25 +00:00
char msg[128] = {0};
struct retro_game_info info = {0};
global_t *global = global_get_ptr();
const struct retro_disk_control_callback *control = NULL;
rarch_system_info_t *sysinfo = NULL;
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &sysinfo);
if (sysinfo)
2016-01-26 04:52:43 +00:00
control = (const struct retro_disk_control_callback*)
2016-03-04 19:00:49 +00:00
&sysinfo->disk_control_cb;
if (!control)
2016-01-27 19:04:34 +00:00
return false;
event_disk_control_set_eject(true, false);
control->add_image_index();
new_idx = control->get_num_images();
if (!new_idx)
2016-01-27 19:04:34 +00:00
return false;
new_idx--;
info.path = path;
control->replace_image_index(new_idx, &info);
snprintf(msg, sizeof(msg), "%s: ", msg_hash_to_str(MSG_APPENDED_DISK));
strlcat(msg, path, sizeof(msg));
RARCH_LOG("%s\n", msg);
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 0, 180, true);
event_cmd_ctl(EVENT_CMD_AUTOSAVE_DEINIT, NULL);
/* TODO: Need to figure out what to do with subsystems case. */
if (!*global->subsystem)
{
/* Update paths for our new image.
* If we actually use append_image, we assume that we
* started out in a single disk case, and that this way
* of doing it makes the most sense. */
2016-01-29 10:00:01 +00:00
rarch_ctl(RARCH_CTL_SET_PATHS, (void*)path);
rarch_ctl(RARCH_CTL_FILL_PATHNAMES, NULL);
}
event_cmd_ctl(EVENT_CMD_AUTOSAVE_INIT, NULL);
event_disk_control_set_index(new_idx);
event_disk_control_set_eject(false, false);
2016-01-27 19:04:34 +00:00
return true;
}
2015-04-13 09:15:40 +00:00
/**
* event_check_disk_prev:
* @control : Handle to disk control handle.
*
* Perform disk cycle to previous index action (Core Disk Options).
**/
static void event_check_disk_prev(
const struct retro_disk_control_callback *control)
{
unsigned num_disks = 0;
unsigned current = 0;
bool disk_prev_enable = false;
2015-12-09 09:59:27 +00:00
if (!control || !control->get_num_images)
return;
if (!control->get_image_index)
return;
num_disks = control->get_num_images();
current = control->get_image_index();
disk_prev_enable = num_disks && num_disks != UINT_MAX;
2015-04-13 09:15:40 +00:00
if (!disk_prev_enable)
{
2015-07-01 21:00:23 +00:00
RARCH_ERR("%s.\n", msg_hash_to_str(MSG_GOT_INVALID_DISK_INDEX));
2015-04-13 09:15:40 +00:00
return;
}
if (current > 0)
current--;
event_disk_control_set_index(current);
2015-04-13 09:15:40 +00:00
}
/**
* event_check_disk_next:
* @control : Handle to disk control handle.
*
* Perform disk cycle to next index action (Core Disk Options).
**/
static void event_check_disk_next(
const struct retro_disk_control_callback *control)
{
unsigned num_disks = 0;
unsigned current = 0;
bool disk_next_enable = false;
2015-12-09 09:59:27 +00:00
if (!control || !control->get_num_images)
return;
if (!control->get_image_index)
return;
num_disks = control->get_num_images();
current = control->get_image_index();
disk_next_enable = num_disks && num_disks != UINT_MAX;
2015-04-13 09:15:40 +00:00
if (!disk_next_enable)
{
2015-07-01 21:00:23 +00:00
RARCH_ERR("%s.\n", msg_hash_to_str(MSG_GOT_INVALID_DISK_INDEX));
2015-04-13 09:15:40 +00:00
return;
}
if (current < num_disks - 1)
current++;
event_disk_control_set_index(current);
2015-04-13 09:15:40 +00:00
}
/**
* event_set_volume:
* @gain : amount of gain to be applied to current volume level.
*
* Adjusts the current audio volume level.
*
**/
static void event_set_volume(float gain)
{
2015-12-09 09:59:27 +00:00
char msg[128];
2015-06-12 15:10:16 +00:00
settings_t *settings = config_get_ptr();
2015-04-13 09:15:40 +00:00
settings->audio.volume += gain;
2016-03-01 23:07:31 +00:00
settings->audio.volume = MAX(settings->audio.volume, -80.0f);
settings->audio.volume = MIN(settings->audio.volume, 12.0f);
2015-04-13 09:15:40 +00:00
snprintf(msg, sizeof(msg), "Volume: %.1f dB", settings->audio.volume);
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 180, true);
2015-04-13 09:15:40 +00:00
RARCH_LOG("%s\n", msg);
audio_driver_set_volume_gain(db_to_gain(settings->audio.volume));
2015-04-13 09:15:40 +00:00
}
/**
* event_init_controllers:
*
* Initialize libretro controllers.
**/
static void event_init_controllers(void)
{
unsigned i;
2015-12-09 09:59:27 +00:00
settings_t *settings = config_get_ptr();
2015-12-10 21:30:25 +00:00
rarch_system_info_t *info = NULL;
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &info);
2015-04-13 09:15:40 +00:00
for (i = 0; i < MAX_USERS; i++)
{
retro_ctx_controller_info_t pad;
2016-01-27 18:07:58 +00:00
const char *ident = NULL;
bool set_controller = false;
2015-04-13 09:15:40 +00:00
const struct retro_controller_description *desc = NULL;
unsigned device = settings->input.libretro_device[i];
2016-03-04 18:29:22 +00:00
if (i < info->ports.size)
2015-04-13 09:15:40 +00:00
desc = libretro_find_controller_description(
2016-03-04 18:29:22 +00:00
&info->ports.data[i], device);
2015-04-13 09:15:40 +00:00
if (desc)
ident = desc->desc;
if (!ident)
{
/* If we're trying to connect a completely unknown device,
* revert back to JOYPAD. */
2015-04-13 09:15:40 +00:00
if (device != RETRO_DEVICE_JOYPAD && device != RETRO_DEVICE_NONE)
{
/* Do not fix settings->input.libretro_device[i],
* because any use of dummy core will reset this,
* which is not a good idea. */
2016-01-26 04:52:43 +00:00
RARCH_WARN("Input device ID %u is unknown to this "
"libretro implementation. Using RETRO_DEVICE_JOYPAD.\n",
device);
2015-04-13 09:15:40 +00:00
device = RETRO_DEVICE_JOYPAD;
}
ident = "Joypad";
}
switch (device)
{
case RETRO_DEVICE_NONE:
RARCH_LOG("Disconnecting device from port %u.\n", i + 1);
2016-01-27 18:07:58 +00:00
set_controller = true;
2015-04-13 09:15:40 +00:00
break;
case RETRO_DEVICE_JOYPAD:
break;
default:
/* Some cores do not properly range check port argument.
* This is broken behavior of course, but avoid breaking
* cores needlessly. */
RARCH_LOG("Connecting %s (ID: %u) to port %u.\n", ident,
device, i + 1);
2016-01-27 18:07:58 +00:00
set_controller = true;
2015-04-13 09:15:40 +00:00
break;
}
2016-01-27 18:07:58 +00:00
if (set_controller)
{
pad.device = device;
2016-02-15 04:23:29 +00:00
pad.port = i;
2016-05-07 23:33:57 +00:00
core_set_controller_port_device(&pad);
}
2015-04-13 09:15:40 +00:00
}
}
static void event_deinit_core(bool reinit)
{
#ifdef HAVE_CHEEVOS
cheevos_unload();
#endif
2016-05-07 23:33:57 +00:00
core_unload_game();
core_unload();
2015-04-13 09:15:40 +00:00
if (reinit)
2016-02-10 03:30:33 +00:00
{
int flags = DRIVERS_CMD_ALL;
driver_ctl(RARCH_DRIVER_CTL_UNINIT, &flags);
}
/* auto overrides: reload the original config */
if (runloop_ctl(RUNLOOP_CTL_IS_OVERRIDES_ACTIVE, NULL))
2015-04-13 09:15:40 +00:00
{
config_unload_override();
runloop_ctl(RUNLOOP_CTL_UNSET_OVERRIDES_ACTIVE, NULL);
2015-04-13 09:15:40 +00:00
}
}
static void event_init_cheats(void)
{
bool allow_cheats = true;
2015-11-30 23:04:04 +00:00
#ifdef HAVE_NETPLAY
2016-01-26 04:52:43 +00:00
allow_cheats &= !netplay_driver_ctl(
RARCH_NETPLAY_CTL_IS_DATA_INITED, NULL);
2015-04-13 09:15:40 +00:00
#endif
2015-11-30 23:04:04 +00:00
allow_cheats &= !bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL);
2015-04-13 09:15:40 +00:00
if (!allow_cheats)
return;
/* TODO/FIXME - add some stuff here. */
}
static bool event_load_save_files(void)
{
unsigned i;
global_t *global = global_get_ptr();
2015-06-25 14:17:46 +00:00
if (!global)
return false;
2015-07-27 15:18:10 +00:00
if (!global->savefiles || global->sram.load_disable)
2015-04-13 09:15:40 +00:00
return false;
for (i = 0; i < global->savefiles->size; i++)
{
ram_type_t ram;
ram.path = global->savefiles->elems[i].data;
ram.type = global->savefiles->elems[i].attr.i;
2016-05-08 02:31:56 +00:00
content_load_ram_file(&ram);
}
2015-04-13 09:15:40 +00:00
return true;
}
static void event_load_auto_state(void)
{
bool ret;
char msg[128] = {0};
2015-06-12 15:10:16 +00:00
char savestate_name_auto[PATH_MAX_LENGTH] = {0};
2015-04-13 09:15:40 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
#ifdef HAVE_NETPLAY
if (global->netplay.enable && !global->netplay.is_spectate)
2015-04-13 09:15:40 +00:00
return;
#endif
#ifdef HAVE_CHEEVOS
if (settings->cheevos.hardcore_mode_enable)
return;
#endif
2015-04-13 09:15:40 +00:00
if (!settings->savestate_auto_load)
return;
2015-07-27 15:18:10 +00:00
fill_pathname_noext(savestate_name_auto, global->name.savestate,
2015-04-13 09:15:40 +00:00
".auto", sizeof(savestate_name_auto));
if (!path_file_exists(savestate_name_auto))
return;
2016-05-08 02:31:56 +00:00
ret = content_load_state(savestate_name_auto);
2015-04-13 09:15:40 +00:00
RARCH_LOG("Found auto savestate in: %s\n", savestate_name_auto);
snprintf(msg, sizeof(msg), "Auto-loading savestate from \"%s\" %s.",
savestate_name_auto, ret ? "succeeded" : "failed");
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 180, false);
2015-04-13 09:15:40 +00:00
RARCH_LOG("%s\n", msg);
}
static void event_set_savestate_auto_index(void)
{
size_t i;
2015-06-12 15:10:16 +00:00
char state_dir[PATH_MAX_LENGTH] = {0};
char state_base[PATH_MAX_LENGTH] = {0};
struct string_list *dir_list = NULL;
unsigned max_idx = 0;
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2015-04-13 09:15:40 +00:00
if (!settings->savestate_auto_index)
return;
/* Find the file in the same directory as global->savestate_name
* with the largest numeral suffix.
*
* E.g. /foo/path/content.state, will try to find
* /foo/path/content.state%d, where %d is the largest number available.
*/
2015-07-27 15:18:10 +00:00
fill_pathname_basedir(state_dir, global->name.savestate,
2015-04-13 09:15:40 +00:00
sizeof(state_dir));
2015-07-27 15:18:10 +00:00
fill_pathname_base(state_base, global->name.savestate,
2015-04-13 09:15:40 +00:00
sizeof(state_base));
2015-10-26 20:30:58 +00:00
if (!(dir_list = dir_list_new_special(state_dir, DIR_LIST_PLAIN, NULL)))
2015-04-13 09:15:40 +00:00
return;
for (i = 0; i < dir_list->size; i++)
{
unsigned idx;
char elem_base[128] = {0};
2015-06-12 15:10:16 +00:00
const char *end = NULL;
const char *dir_elem = dir_list->elems[i].data;
2015-04-13 09:15:40 +00:00
fill_pathname_base(elem_base, dir_elem, sizeof(elem_base));
if (strstr(elem_base, state_base) != elem_base)
continue;
end = dir_elem + strlen(dir_elem);
while ((end > dir_elem) && isdigit((int)end[-1]))
2015-04-13 09:15:40 +00:00
end--;
idx = strtoul(end, NULL, 0);
if (idx > max_idx)
max_idx = idx;
}
dir_list_free(dir_list);
settings->state_slot = max_idx;
RARCH_LOG("Found last state slot: #%d\n", settings->state_slot);
}
static bool event_init_content(void)
{
2016-01-27 18:53:07 +00:00
rarch_ctl(RARCH_CTL_SET_SRAM_ENABLE, NULL);
2015-04-13 09:15:40 +00:00
/* No content to be loaded for dummy core,
* just successfully exit. */
2016-01-19 22:44:32 +00:00
if (rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL))
2015-04-22 21:15:19 +00:00
return true;
2015-04-13 09:15:40 +00:00
2016-05-08 03:17:31 +00:00
if (!content_does_not_need_content())
rarch_ctl(RARCH_CTL_FILL_PATHNAMES, NULL);
2015-04-13 09:15:40 +00:00
2016-05-08 03:17:31 +00:00
if (!content_init())
2015-04-13 09:15:40 +00:00
return false;
2016-05-08 03:17:31 +00:00
if (content_does_not_need_content())
2015-04-13 09:15:40 +00:00
return true;
event_set_savestate_auto_index();
if (event_load_save_files())
2015-07-01 20:14:37 +00:00
RARCH_LOG("%s.\n",
msg_hash_to_str(MSG_SKIPPING_SRAM_LOAD));
2015-04-13 09:15:40 +00:00
event_load_auto_state();
event_cmd_ctl(EVENT_CMD_BSV_MOVIE_INIT, NULL);
event_cmd_ctl(EVENT_CMD_NETPLAY_INIT, NULL);
2015-04-13 09:15:40 +00:00
return true;
}
2016-05-08 02:16:11 +00:00
static bool event_init_core(enum rarch_core_type *data)
2015-04-13 09:15:40 +00:00
{
2016-01-27 04:19:15 +00:00
retro_ctx_environ_info_t info;
2016-01-27 18:45:54 +00:00
settings_t *settings = config_get_ptr();
2016-05-08 02:16:11 +00:00
if (!core_init_symbols(data))
2016-01-27 18:45:54 +00:00
return false;
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_INIT, NULL);
/* auto overrides: apply overrides */
if(settings->auto_overrides_enable)
{
if (config_load_override())
runloop_ctl(RUNLOOP_CTL_SET_OVERRIDES_ACTIVE, NULL);
else
runloop_ctl(RUNLOOP_CTL_UNSET_OVERRIDES_ACTIVE, NULL);
}
2015-04-13 09:15:40 +00:00
/* reset video format to libretro's default */
video_driver_set_pixel_format(RETRO_PIXEL_FORMAT_0RGB1555);
2016-01-27 04:19:15 +00:00
info.env = rarch_environment_cb;
2016-05-07 23:33:57 +00:00
core_set_environment(&info);
2016-01-27 18:56:14 +00:00
/* Auto-remap: apply remap files */
if(settings->auto_remaps_enable)
config_load_remap();
2015-04-13 09:15:40 +00:00
2016-01-27 18:56:14 +00:00
/* Per-core saves: reset redirection paths */
rarch_ctl(RARCH_CTL_SET_PATHS_REDIRECT, NULL);
2016-05-07 23:33:57 +00:00
if (!core_init())
2016-01-27 07:17:12 +00:00
return false;
2015-04-13 09:15:40 +00:00
if (!event_init_content())
return false;
2016-05-07 23:33:57 +00:00
if (!core_load())
return false;
2015-04-22 21:15:19 +00:00
2015-04-13 09:15:40 +00:00
return true;
}
static bool event_save_auto_state(void)
{
bool ret;
2015-06-12 15:10:16 +00:00
char savestate_name_auto[PATH_MAX_LENGTH] = {0};
2015-04-13 09:15:40 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
if (!settings->savestate_auto_save)
return false;
2016-01-19 22:44:32 +00:00
if (rarch_ctl(RARCH_CTL_IS_DUMMY_CORE, NULL))
return false;
2016-05-08 03:17:31 +00:00
if (content_does_not_need_content())
return false;
2015-04-13 09:15:40 +00:00
#ifdef HAVE_CHEEVOS
if (settings->cheevos.hardcore_mode_enable)
return false;
#endif
2015-07-27 15:18:10 +00:00
fill_pathname_noext(savestate_name_auto, global->name.savestate,
2015-04-13 09:15:40 +00:00
".auto", sizeof(savestate_name_auto));
2016-05-08 02:31:56 +00:00
ret = content_save_state((const char*)savestate_name_auto);
2015-04-13 09:15:40 +00:00
RARCH_LOG("Auto save state to \"%s\" %s.\n", savestate_name_auto, ret ?
"succeeded" : "failed");
2015-04-13 09:15:40 +00:00
return true;
}
/**
* event_save_core_config:
*
* Saves a new (core) configuration to a file. Filename is based
* on heuristics to avoid typing.
*
* Returns: true (1) on success, otherwise false (0).
**/
static bool event_save_core_config(void)
{
2015-06-12 15:10:16 +00:00
char config_dir[PATH_MAX_LENGTH] = {0};
char config_name[PATH_MAX_LENGTH] = {0};
char config_path[PATH_MAX_LENGTH] = {0};
char msg[128] = {0};
2015-06-12 15:10:16 +00:00
bool ret = false;
bool found_path = false;
bool overrides_active = false;
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2015-04-13 09:15:40 +00:00
*config_dir = '\0';
2016-04-28 17:26:02 +00:00
if (!string_is_empty(settings->directory.menu_config))
strlcpy(config_dir, settings->directory.menu_config,
2015-04-13 09:15:40 +00:00
sizeof(config_dir));
2016-03-19 01:03:59 +00:00
else if (!string_is_empty(global->path.config)) /* Fallback */
2015-07-27 15:18:10 +00:00
fill_pathname_basedir(config_dir, global->path.config,
2015-04-13 09:15:40 +00:00
sizeof(config_dir));
else
{
runloop_msg_queue_push(msg_hash_to_str(MSG_CONFIG_DIRECTORY_NOT_SET), 1, 180, true);
2015-07-01 20:14:37 +00:00
RARCH_ERR("%s\n", msg_hash_to_str(MSG_CONFIG_DIRECTORY_NOT_SET));
2015-04-13 09:15:40 +00:00
return false;
}
2016-04-28 18:49:13 +00:00
2015-04-13 09:15:40 +00:00
/* Infer file name based on libretro core. */
2016-04-28 18:49:13 +00:00
if (!string_is_empty(settings->path.libretro)
&& path_file_exists(settings->path.libretro))
2015-04-13 09:15:40 +00:00
{
unsigned i;
2016-03-19 01:03:59 +00:00
RARCH_LOG("Using core name for new config\n");
2015-04-13 09:15:40 +00:00
/* In case of collision, find an alternative name. */
for (i = 0; i < 16; i++)
{
2016-01-27 18:58:11 +00:00
char tmp[64];
2015-04-13 09:15:40 +00:00
2016-04-28 18:49:13 +00:00
fill_pathname_base(
config_name,
settings->path.libretro,
2015-04-13 09:15:40 +00:00
sizeof(config_name));
2016-04-28 18:49:13 +00:00
2015-04-13 09:15:40 +00:00
path_remove_extension(config_name);
fill_pathname_join(config_path, config_dir, config_name,
sizeof(config_path));
if (i)
snprintf(tmp, sizeof(tmp), "-%u.cfg", i);
else
strlcpy(tmp, ".cfg", sizeof(tmp));
strlcat(config_path, tmp, sizeof(config_path));
2015-04-13 09:15:40 +00:00
if (!path_file_exists(config_path))
{
found_path = true;
break;
}
}
}
/* Fallback to system time... */
if (!found_path)
{
RARCH_WARN("Cannot infer new config path. Use current time.\n");
fill_dated_filename(config_name, "cfg", sizeof(config_name));
fill_pathname_join(config_path, config_dir, config_name,
sizeof(config_path));
}
2016-01-26 04:52:43 +00:00
/* Overrides block config file saving, make it appear as overrides
* weren't enabled for a manual save */
if (runloop_ctl(RUNLOOP_CTL_IS_OVERRIDES_ACTIVE, NULL))
{
runloop_ctl(RUNLOOP_CTL_UNSET_OVERRIDES_ACTIVE, NULL);
overrides_active = true;
}
2015-04-13 09:15:40 +00:00
if ((ret = config_save_file(config_path)))
{
2015-07-27 15:18:10 +00:00
strlcpy(global->path.config, config_path,
sizeof(global->path.config));
2015-04-13 09:15:40 +00:00
snprintf(msg, sizeof(msg), "Saved new config to \"%s\".",
config_path);
RARCH_LOG("%s\n", msg);
}
else
{
snprintf(msg, sizeof(msg), "Failed saving config to \"%s\".",
config_path);
RARCH_ERR("%s\n", msg);
}
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 180, true);
if (overrides_active)
runloop_ctl(RUNLOOP_CTL_SET_OVERRIDES_ACTIVE, NULL);
else
runloop_ctl(RUNLOOP_CTL_UNSET_OVERRIDES_ACTIVE, NULL);
2015-04-13 09:15:40 +00:00
return ret;
}
2015-11-11 01:57:20 +00:00
/**
* event_save_current_config:
*
* Saves current configuration file to disk, and (optionally)
* autosave state.
**/
void event_save_current_config(void)
{
2016-02-21 18:05:58 +00:00
char msg[128];
2015-11-11 01:57:20 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2016-02-21 18:05:58 +00:00
bool ret = false;
2015-11-11 01:57:20 +00:00
2016-03-18 00:06:19 +00:00
if (settings->config_save_on_exit && !string_is_empty(global->path.config))
2015-11-11 01:57:20 +00:00
{
/* Save last core-specific config to the default config location,
* needed on consoles for core switching and reusing last good
* config for new cores.
*/
/* Flush out the core specific config. */
if (*global->path.core_specific_config &&
settings->core_specific_config)
2016-02-21 17:37:11 +00:00
ret = config_save_file(global->path.core_specific_config);
else
ret = config_save_file(global->path.config);
2016-03-18 00:06:19 +00:00
if (ret)
{
snprintf(msg, sizeof(msg), "Saved new config to \"%s\".",
global->path.config);
RARCH_LOG("%s\n", msg);
}
else
{
snprintf(msg, sizeof(msg), "Failed saving config to \"%s\".",
global->path.config);
RARCH_ERR("%s\n", msg);
}
2016-02-21 17:37:11 +00:00
2016-03-18 00:06:19 +00:00
runloop_msg_queue_push(msg, 1, 180, true);
2016-02-21 17:37:11 +00:00
}
2015-11-11 01:57:20 +00:00
}
2015-04-13 09:15:40 +00:00
/**
* event_save_state
* @path : Path to state.
2015-06-02 16:28:51 +00:00
* @s : Message.
* @len : Size of @s.
2015-04-13 09:15:40 +00:00
*
* Saves a state with path being @path.
**/
static void event_save_state(const char *path,
2015-06-02 16:28:51 +00:00
char *s, size_t len)
2015-04-13 09:15:40 +00:00
{
settings_t *settings = config_get_ptr();
2016-05-08 02:31:56 +00:00
if (!content_save_state(path))
2015-04-13 09:15:40 +00:00
{
2015-07-02 22:16:46 +00:00
snprintf(s, len, "%s \"%s\".",
msg_hash_to_str(MSG_FAILED_TO_SAVE_STATE_TO),
path);
2015-04-13 09:15:40 +00:00
return;
}
if (settings->state_slot < 0)
2016-01-26 04:52:43 +00:00
snprintf(s, len, "%s #-1 (auto).",
msg_hash_to_str(MSG_SAVED_STATE_TO_SLOT));
2015-04-13 09:15:40 +00:00
else
2015-07-01 20:14:37 +00:00
snprintf(s, len, "%s #%d.", msg_hash_to_str(MSG_SAVED_STATE_TO_SLOT),
settings->state_slot);
2015-04-13 09:15:40 +00:00
}
/**
* event_load_state
* @path : Path to state.
2015-06-02 16:28:51 +00:00
* @s : Message.
* @len : Size of @s.
2015-04-13 09:15:40 +00:00
*
* Loads a state with path being @path.
**/
2015-06-02 16:28:51 +00:00
static void event_load_state(const char *path, char *s, size_t len)
2015-04-13 09:15:40 +00:00
{
settings_t *settings = config_get_ptr();
2016-05-08 02:31:56 +00:00
if (!content_load_state(path))
2015-04-13 09:15:40 +00:00
{
2015-07-01 20:14:37 +00:00
snprintf(s, len, "%s \"%s\".",
msg_hash_to_str(MSG_FAILED_TO_LOAD_STATE),
path);
2015-04-13 09:15:40 +00:00
return;
}
if (settings->state_slot < 0)
2016-01-26 04:52:43 +00:00
snprintf(s, len, "%s #-1 (auto).",
msg_hash_to_str(MSG_LOADED_STATE_FROM_SLOT));
2015-04-13 09:15:40 +00:00
else
2015-07-01 20:14:37 +00:00
snprintf(s, len, "%s #%d.", msg_hash_to_str(MSG_LOADED_STATE_FROM_SLOT),
settings->state_slot);
2015-04-13 09:15:40 +00:00
}
static void event_main_state(unsigned cmd)
{
retro_ctx_size_info_t info;
2015-06-12 15:10:16 +00:00
char path[PATH_MAX_LENGTH] = {0};
char msg[128] = {0};
2015-06-12 15:10:16 +00:00
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
2015-04-13 09:15:40 +00:00
if (settings->state_slot > 0)
snprintf(path, sizeof(path), "%s%d",
2015-07-27 15:18:10 +00:00
global->name.savestate, settings->state_slot);
2015-04-13 09:15:40 +00:00
else if (settings->state_slot < 0)
2015-07-01 20:14:37 +00:00
fill_pathname_join_delim(path,
2015-07-27 15:18:10 +00:00
global->name.savestate, "auto", '.', sizeof(path));
2015-04-13 09:15:40 +00:00
else
2015-07-27 15:18:10 +00:00
strlcpy(path, global->name.savestate, sizeof(path));
2015-04-13 09:15:40 +00:00
2016-05-07 23:33:57 +00:00
core_serialize_size(&info);
if (info.size)
2015-04-13 09:15:40 +00:00
{
2015-07-01 20:14:37 +00:00
switch (cmd)
{
case EVENT_CMD_SAVE_STATE:
event_save_state(path, msg, sizeof(msg));
break;
case EVENT_CMD_LOAD_STATE:
event_load_state(path, msg, sizeof(msg));
break;
}
2015-04-13 09:15:40 +00:00
}
else
2016-01-26 04:52:43 +00:00
strlcpy(msg, msg_hash_to_str(
MSG_CORE_DOES_NOT_SUPPORT_SAVESTATES), sizeof(msg));
2015-04-13 09:15:40 +00:00
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 2, 180, true);
2015-04-13 09:15:40 +00:00
RARCH_LOG("%s\n", msg);
}
2016-02-13 04:30:57 +00:00
static bool event_cmd_exec(void *data)
{
char *fullpath = NULL;
runloop_ctl(RUNLOOP_CTL_GET_CONTENT_PATH, &fullpath);
if (fullpath != data)
{
runloop_ctl(RUNLOOP_CTL_CLEAR_CONTENT_PATH, NULL);
if (data)
runloop_ctl(RUNLOOP_CTL_SET_CONTENT_PATH, data);
}
#if defined(HAVE_DYNAMIC)
if (!rarch_ctl(RARCH_CTL_LOAD_CONTENT, NULL))
return false;
#else
2016-02-04 16:46:50 +00:00
frontend_driver_set_fork(FRONTEND_FORK_CORE_WITH_ARGS);
#endif
return true;
}
2015-04-13 09:15:40 +00:00
/**
* event_cmd_ctl:
2015-04-13 09:15:40 +00:00
* @cmd : Event command index.
*
* Performs program event command with index @cmd.
2015-04-13 09:15:40 +00:00
*
* Returns: true (1) on success, otherwise false (0).
**/
bool event_cmd_ctl(enum event_command cmd, void *data)
2015-04-13 09:15:40 +00:00
{
2015-12-10 21:30:25 +00:00
unsigned i = 0;
bool boolean = false;
settings_t *settings = config_get_ptr();
rarch_system_info_t *info = NULL;
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &info);
2015-04-13 09:15:40 +00:00
(void)i;
switch (cmd)
{
2015-12-12 16:25:03 +00:00
case EVENT_CMD_MENU_REFRESH:
#ifdef HAVE_MENU
menu_driver_ctl(RARCH_MENU_CTL_REFRESH, NULL);
#endif
break;
case EVENT_CMD_SET_PER_GAME_RESOLUTION:
#if defined(GEKKO)
{
unsigned width = 0, height = 0;
event_cmd_ctl(EVENT_CMD_VIDEO_SET_ASPECT_RATIO, NULL);
if (video_driver_get_video_output_size(&width, &height))
{
char msg[128] = {0};
video_driver_set_video_mode(width, height, true);
if (width == 0 || height == 0)
strlcpy(msg, "Resolution: DEFAULT", sizeof(msg));
else
snprintf(msg, sizeof(msg),"Resolution: %dx%d",width, height);
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 100, true);
}
}
#endif
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_LOAD_CONTENT_PERSIST:
#ifdef HAVE_DYNAMIC
event_cmd_ctl(EVENT_CMD_LOAD_CORE, NULL);
2015-04-13 09:15:40 +00:00
#endif
rarch_ctl(RARCH_CTL_LOAD_CONTENT, NULL);
2015-04-13 09:15:40 +00:00
break;
#ifdef HAVE_FFMPEG
case EVENT_CMD_LOAD_CONTENT_FFMPEG:
rarch_ctl(RARCH_CTL_LOAD_CONTENT_FFMPEG, NULL);
break;
#endif
2015-06-28 15:21:32 +00:00
case EVENT_CMD_LOAD_CONTENT_IMAGEVIEWER:
rarch_ctl(RARCH_CTL_LOAD_CONTENT_IMAGEVIEWER, NULL);
2015-06-28 15:21:32 +00:00
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_LOAD_CONTENT:
{
2015-04-13 09:15:40 +00:00
#ifdef HAVE_DYNAMIC
event_cmd_ctl(EVENT_CMD_LOAD_CONTENT_PERSIST, NULL);
2015-04-13 09:15:40 +00:00
#else
char *fullpath = NULL;
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_GET_CONTENT_PATH, &fullpath);
2016-04-28 18:49:13 +00:00
runloop_ctl(RUNLOOP_CTL_SET_LIBRETRO_PATH, settings->path.libretro);
2016-02-13 04:30:57 +00:00
event_cmd_ctl(EVENT_CMD_EXEC, (void*)fullpath);
event_cmd_ctl(EVENT_CMD_QUIT, NULL);
2015-04-13 09:15:40 +00:00
#endif
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_LOAD_CORE_DEINIT:
2015-10-27 23:55:11 +00:00
#ifdef HAVE_MENU
2015-12-10 22:08:34 +00:00
menu_driver_ctl(RARCH_MENU_CTL_SYSTEM_INFO_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_LOAD_CORE_PERSIST:
event_cmd_ctl(EVENT_CMD_LOAD_CORE_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
{
#ifdef HAVE_MENU
bool *ptr = NULL;
2015-12-10 22:08:34 +00:00
struct retro_system_info *system = NULL;
menu_driver_ctl(RARCH_MENU_CTL_SYSTEM_INFO_GET, &system);
if (menu_driver_ctl(RARCH_MENU_CTL_LOAD_NO_CONTENT_GET, &ptr))
2016-02-07 16:19:18 +00:00
{
2016-02-07 16:26:10 +00:00
core_info_ctx_find_t info_find;
2016-02-07 16:19:18 +00:00
#if defined(HAVE_DYNAMIC)
2016-04-28 18:49:13 +00:00
if (!(*settings->path.libretro))
2016-02-07 16:19:18 +00:00
return false;
2016-04-28 18:49:13 +00:00
libretro_get_system_info(
settings->path.libretro,
system,
2016-02-07 16:19:18 +00:00
ptr);
#else
libretro_get_system_info_static(system, ptr);
2016-02-07 16:19:18 +00:00
#endif
2016-04-28 18:49:13 +00:00
info_find.path = settings->path.libretro;
2016-02-07 16:19:18 +00:00
2016-02-07 16:26:10 +00:00
if (!core_info_ctl(CORE_INFO_CTL_LOAD, &info_find))
2016-02-07 16:19:18 +00:00
return false;
}
2015-04-13 09:15:40 +00:00
#endif
}
break;
case EVENT_CMD_LOAD_CORE:
event_cmd_ctl(EVENT_CMD_LOAD_CORE_PERSIST, NULL);
2015-04-13 09:15:40 +00:00
#ifndef HAVE_DYNAMIC
event_cmd_ctl(EVENT_CMD_QUIT, NULL);
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_LOAD_STATE:
/* Immutable - disallow savestate load when
2015-04-13 09:15:40 +00:00
* we absolutely cannot change game state. */
2015-11-30 23:04:04 +00:00
if (bsv_movie_ctl(BSV_MOVIE_CTL_IS_INITED, NULL))
2015-04-13 09:15:40 +00:00
return false;
#ifdef HAVE_NETPLAY
if (netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_DATA_INITED, NULL))
2015-04-13 09:15:40 +00:00
return false;
#endif
#ifdef HAVE_CHEEVOS
if (settings->cheevos.hardcore_mode_enable)
return false;
#endif
2015-04-13 09:15:40 +00:00
event_main_state(cmd);
break;
case EVENT_CMD_RESIZE_WINDOWED_SCALE:
{
unsigned idx = 0;
2015-12-01 02:46:56 +00:00
unsigned *window_scale = NULL;
runloop_ctl(RUNLOOP_CTL_GET_WINDOWED_SCALE, &window_scale);
if (*window_scale == 0)
return false;
2015-04-13 09:15:40 +00:00
2015-12-01 02:46:56 +00:00
settings->video.scale = *window_scale;
2015-04-13 09:15:40 +00:00
if (!settings->video.fullscreen)
event_cmd_ctl(EVENT_CMD_REINIT, NULL);
2015-04-13 09:15:40 +00:00
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_SET_WINDOWED_SCALE, &idx);
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_MENU_TOGGLE:
2015-10-09 18:40:05 +00:00
#ifdef HAVE_MENU
2015-12-05 12:49:22 +00:00
if (menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL))
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
2015-04-13 09:15:40 +00:00
else
rarch_ctl(RARCH_CTL_MENU_RUNNING, NULL);
2015-10-09 18:40:05 +00:00
#endif
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_CONTROLLERS_INIT:
event_init_controllers();
break;
case EVENT_CMD_RESET:
2015-07-02 16:27:20 +00:00
RARCH_LOG("%s.\n", msg_hash_to_str(MSG_RESET));
runloop_msg_queue_push(msg_hash_to_str(MSG_RESET), 1, 120, true);
2015-10-30 01:25:41 +00:00
#ifdef HAVE_CHEEVOS
cheevos_set_cheats();
#endif
2016-05-07 23:33:57 +00:00
core_reset();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_SAVE_STATE:
#ifdef HAVE_CHEEVOS
if (settings->cheevos.hardcore_mode_enable)
return false;
#endif
2015-04-13 09:15:40 +00:00
if (settings->savestate_auto_index)
settings->state_slot++;
event_main_state(cmd);
break;
case EVENT_CMD_SAVE_STATE_DECREMENT:
/* Slot -1 is (auto) slot. */
if (settings->state_slot >= 0)
settings->state_slot--;
break;
case EVENT_CMD_SAVE_STATE_INCREMENT:
settings->state_slot++;
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_TAKE_SCREENSHOT:
if (!take_screenshot())
return false;
break;
case EVENT_CMD_UNLOAD_CORE:
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_PREPARE_DUMMY, NULL);
event_cmd_ctl(EVENT_CMD_LOAD_CORE_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_QUIT:
rarch_ctl(RARCH_CTL_QUIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_CHEEVOS_HARDCORE_MODE_TOGGLE:
#ifdef HAVE_CHEEVOS
cheevos_toggle_hardcore_mode();
#endif
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_REINIT:
{
2016-05-08 12:00:51 +00:00
struct retro_hw_render_callback *hwr =
video_driver_get_hw_context();
if (hwr->cache_context)
2016-05-08 12:00:51 +00:00
video_driver_set_video_cache_context();
else
2016-05-08 12:00:51 +00:00
video_driver_unset_video_cache_context();
2016-05-08 12:00:51 +00:00
video_driver_unset_video_cache_context_ack();
event_cmd_ctl(EVENT_CMD_RESET_CONTEXT, NULL);
2016-05-08 12:00:51 +00:00
video_driver_unset_video_cache_context();
2015-04-13 09:15:40 +00:00
/* Poll input to avoid possibly stale data to corrupt things. */
2016-05-08 21:12:04 +00:00
input_driver_poll();
2015-04-13 09:15:40 +00:00
#ifdef HAVE_MENU
menu_display_set_framebuffer_dirty_flag();
2015-12-05 12:49:22 +00:00
if (menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL))
event_cmd_ctl(EVENT_CMD_VIDEO_SET_BLOCKING_STATE, NULL);
2015-04-13 09:15:40 +00:00
#endif
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_CHEATS_DEINIT:
cheat_manager_state_free();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_CHEATS_INIT:
event_cmd_ctl(EVENT_CMD_CHEATS_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
event_init_cheats();
break;
2015-09-01 23:10:44 +00:00
case EVENT_CMD_CHEATS_APPLY:
cheat_manager_apply_cheats();
2015-09-01 23:10:44 +00:00
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_REWIND_DEINIT:
#ifdef HAVE_NETPLAY
if (netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_DATA_INITED, NULL))
2015-04-13 09:15:40 +00:00
return false;
#endif
#ifdef HAVE_CHEEVOS
if (settings->cheevos.hardcore_mode_enable)
return false;
#endif
2015-11-30 21:25:13 +00:00
state_manager_event_deinit();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_REWIND_INIT:
#ifdef HAVE_CHEEVOS
if (settings->cheevos.hardcore_mode_enable)
return false;
#endif
2015-12-05 15:51:02 +00:00
#ifdef HAVE_NETPLAY
if (!netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_DATA_INITED, NULL))
2015-12-05 15:51:02 +00:00
#endif
2016-05-09 05:14:10 +00:00
state_manager_event_init();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_REWIND_TOGGLE:
if (settings->rewind_enable)
event_cmd_ctl(EVENT_CMD_REWIND_INIT, NULL);
2015-04-13 09:15:40 +00:00
else
event_cmd_ctl(EVENT_CMD_REWIND_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_AUTOSAVE_DEINIT:
#ifdef HAVE_THREADS
2016-04-10 13:52:06 +00:00
{
global_t *global = global_get_ptr();
if (!global->sram.use)
return false;
autosave_event_deinit();
}
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_AUTOSAVE_INIT:
event_cmd_ctl(EVENT_CMD_AUTOSAVE_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
#ifdef HAVE_THREADS
2015-11-30 18:23:13 +00:00
autosave_event_init();
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_AUTOSAVE_STATE:
event_save_auto_state();
break;
case EVENT_CMD_AUDIO_STOP:
2016-05-08 16:03:09 +00:00
if (!audio_driver_alive())
2015-04-13 09:15:40 +00:00
return false;
2016-05-08 16:00:32 +00:00
if (!audio_driver_stop())
2015-04-13 09:15:40 +00:00
return false;
break;
case EVENT_CMD_AUDIO_START:
2016-05-08 19:30:06 +00:00
if (audio_driver_alive())
2015-04-13 09:15:40 +00:00
return false;
2016-05-08 16:00:32 +00:00
if (!settings->audio.mute_enable && !audio_driver_start())
2015-04-13 09:15:40 +00:00
{
2016-01-26 04:52:43 +00:00
RARCH_ERR("Failed to start audio driver. "
"Will continue without audio.\n");
2016-05-08 16:24:25 +00:00
audio_driver_unset_active();
2015-04-13 09:15:40 +00:00
}
break;
case EVENT_CMD_AUDIO_MUTE_TOGGLE:
{
const char *msg = !settings->audio.mute_enable ?
2015-07-01 20:14:37 +00:00
msg_hash_to_str(MSG_AUDIO_MUTED):
msg_hash_to_str(MSG_AUDIO_UNMUTED);
2015-04-13 09:15:40 +00:00
2016-05-08 15:42:20 +00:00
if (!audio_driver_toggle_mute())
2015-04-13 09:15:40 +00:00
{
2015-07-01 20:14:37 +00:00
RARCH_ERR("%s.\n",
msg_hash_to_str(MSG_FAILED_TO_UNMUTE_AUDIO));
2015-04-13 09:15:40 +00:00
return false;
}
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push(msg, 1, 180, true);
2015-04-13 09:15:40 +00:00
RARCH_LOG("%s\n", msg);
}
break;
case EVENT_CMD_OVERLAY_DEINIT:
#ifdef HAVE_OVERLAY
2015-11-23 17:15:19 +00:00
input_overlay_free();
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_OVERLAY_INIT:
event_cmd_ctl(EVENT_CMD_OVERLAY_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
#ifdef HAVE_OVERLAY
2015-11-23 17:15:19 +00:00
input_overlay_init();
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_OVERLAY_NEXT:
#ifdef HAVE_OVERLAY
input_overlay_next(settings->input.overlay_opacity);
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_DSP_FILTER_DEINIT:
audio_driver_dsp_filter_free();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_DSP_FILTER_INIT:
event_cmd_ctl(EVENT_CMD_DSP_FILTER_DEINIT, NULL);
2016-04-28 18:49:13 +00:00
if (!*settings->path.audio_dsp_plugin)
2015-04-13 09:15:40 +00:00
break;
2016-04-28 18:49:13 +00:00
audio_driver_dsp_filter_init(settings->path.audio_dsp_plugin);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_GPU_RECORD_DEINIT:
2016-05-08 12:00:51 +00:00
video_driver_gpu_record_deinit();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_RECORD_DEINIT:
if (!recording_deinit())
return false;
break;
case EVENT_CMD_RECORD_INIT:
event_cmd_ctl(EVENT_CMD_HISTORY_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
if (!recording_init())
return false;
break;
case EVENT_CMD_HISTORY_DEINIT:
if (g_defaults.history)
2015-06-09 20:44:03 +00:00
{
content_playlist_write_file(g_defaults.history);
2015-04-13 09:15:40 +00:00
content_playlist_free(g_defaults.history);
2015-06-09 20:44:03 +00:00
}
2015-04-13 09:15:40 +00:00
g_defaults.history = NULL;
break;
case EVENT_CMD_HISTORY_INIT:
event_cmd_ctl(EVENT_CMD_HISTORY_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
if (!settings->history_list_enable)
return false;
2015-07-02 22:16:46 +00:00
RARCH_LOG("%s: [%s].\n",
msg_hash_to_str(MSG_LOADING_HISTORY_FILE),
2016-04-28 17:52:25 +00:00
settings->path.content_history);
2015-04-13 09:15:40 +00:00
g_defaults.history = content_playlist_init(
2016-04-28 17:52:25 +00:00
settings->path.content_history,
2015-04-13 09:15:40 +00:00
settings->content_history_size);
break;
case EVENT_CMD_CORE_INFO_DEINIT:
2016-02-07 01:37:57 +00:00
core_info_ctl(CORE_INFO_CTL_LIST_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_CORE_INFO_INIT:
event_cmd_ctl(EVENT_CMD_CORE_INFO_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
2016-04-28 17:26:02 +00:00
if (*settings->directory.libretro)
2016-02-07 01:37:57 +00:00
core_info_ctl(CORE_INFO_CTL_LIST_INIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_CORE_DEINIT:
2015-07-01 20:14:37 +00:00
{
2016-05-08 12:00:51 +00:00
struct retro_hw_render_callback *hwr =
2016-05-09 03:48:47 +00:00
video_driver_get_hw_context();
2015-07-01 20:14:37 +00:00
event_deinit_core(true);
if (hwr)
memset(hwr, 0, sizeof(*hwr));
2015-07-01 20:14:37 +00:00
break;
}
2015-04-13 09:15:40 +00:00
case EVENT_CMD_CORE_INIT:
2016-05-08 02:16:11 +00:00
if (!event_init_core((enum rarch_core_type*)data))
2015-04-13 09:15:40 +00:00
return false;
break;
case EVENT_CMD_VIDEO_APPLY_STATE_CHANGES:
2016-05-08 12:00:51 +00:00
video_driver_apply_state_changes();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_VIDEO_SET_NONBLOCKING_STATE:
boolean = true; /* fall-through */
case EVENT_CMD_VIDEO_SET_BLOCKING_STATE:
2016-05-08 12:00:51 +00:00
video_driver_set_nonblock_state(boolean);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_VIDEO_SET_ASPECT_RATIO:
2016-05-08 12:00:51 +00:00
video_driver_set_aspect_ratio();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_AUDIO_SET_NONBLOCKING_STATE:
boolean = true; /* fall-through */
case EVENT_CMD_AUDIO_SET_BLOCKING_STATE:
2015-11-22 14:16:03 +00:00
audio_driver_set_nonblocking_state(boolean);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_OVERLAY_SET_SCALE_FACTOR:
#ifdef HAVE_OVERLAY
input_overlay_set_scale_factor(settings->input.overlay_scale);
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_OVERLAY_SET_ALPHA_MOD:
#ifdef HAVE_OVERLAY
input_overlay_set_alpha_mod(settings->input.overlay_opacity);
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_AUDIO_REINIT:
2015-12-11 10:21:17 +00:00
{
int flags = DRIVER_AUDIO;
2015-12-11 10:23:32 +00:00
driver_ctl(RARCH_DRIVER_CTL_UNINIT, &flags);
2015-12-11 10:21:17 +00:00
driver_ctl(RARCH_DRIVER_CTL_INIT, &flags);
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_RESET_CONTEXT:
{
2016-02-10 03:30:33 +00:00
/* RARCH_DRIVER_CTL_UNINIT clears the callback struct so we
2016-01-26 05:01:00 +00:00
* need to make sure to keep a copy */
struct retro_hw_render_callback *hwr = NULL;
struct retro_hw_render_callback hwr_copy;
2016-02-10 03:30:33 +00:00
int flags = DRIVERS_CMD_ALL;
2016-05-08 12:00:51 +00:00
hwr = video_driver_get_hw_context();
memcpy(&hwr_copy, hwr, sizeof(hwr_copy));
2016-02-10 03:30:33 +00:00
driver_ctl(RARCH_DRIVER_CTL_UNINIT, &flags);
memcpy(hwr, &hwr_copy, sizeof(*hwr));
2016-02-10 03:30:33 +00:00
driver_ctl(RARCH_DRIVER_CTL_INIT, &flags);
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_QUIT_RETROARCH:
rarch_ctl(RARCH_CTL_FORCE_QUIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_SHUTDOWN:
2015-11-01 10:18:28 +00:00
#if defined(__linux__) && !defined(ANDROID)
2015-12-07 14:32:14 +00:00
runloop_msg_queue_push("Shutting down...", 1, 180, true);
rarch_ctl(RARCH_CTL_FORCE_QUIT, NULL);
system("shutdown -P now");
2015-11-01 10:18:28 +00:00
#endif
break;
2016-01-18 19:31:38 +00:00
case EVENT_CMD_REBOOT:
2016-01-19 08:43:33 +00:00
#if defined(__linux__) && !defined(ANDROID)
2016-01-18 19:31:38 +00:00
runloop_msg_queue_push("Rebooting...", 1, 180, true);
rarch_ctl(RARCH_CTL_FORCE_QUIT, NULL);
system("shutdown -r now");
2015-11-01 10:18:28 +00:00
#endif
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_RESUME:
rarch_ctl(RARCH_CTL_MENU_RUNNING_FINISHED, NULL);
if (ui_companion_is_on_foreground())
ui_companion_driver_toggle();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_RESTART_RETROARCH:
if (!frontend_driver_set_fork(FRONTEND_FORK_RESTART))
return false;
2015-04-13 09:15:40 +00:00
break;
2015-11-11 01:57:20 +00:00
case EVENT_CMD_MENU_SAVE_CURRENT_CONFIG:
event_save_current_config();
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_MENU_SAVE_CONFIG:
if (!event_save_core_config())
return false;
break;
case EVENT_CMD_SHADERS_APPLY_CHANGES:
#ifdef HAVE_MENU
menu_shader_manager_apply_changes();
#endif
break;
case EVENT_CMD_PAUSE_CHECKS:
2015-11-30 21:25:13 +00:00
if (runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL))
2015-04-13 09:15:40 +00:00
{
2015-07-01 20:14:37 +00:00
RARCH_LOG("%s\n", msg_hash_to_str(MSG_PAUSED));
event_cmd_ctl(EVENT_CMD_AUDIO_STOP, NULL);
2015-04-13 09:15:40 +00:00
if (settings->video.black_frame_insertion)
2016-05-08 12:00:51 +00:00
video_driver_cached_frame_render();
2015-04-13 09:15:40 +00:00
}
else
{
2015-07-01 20:14:37 +00:00
RARCH_LOG("%s\n", msg_hash_to_str(MSG_UNPAUSED));
event_cmd_ctl(EVENT_CMD_AUDIO_START, NULL);
2015-04-13 09:15:40 +00:00
}
break;
case EVENT_CMD_PAUSE_TOGGLE:
2015-11-30 21:25:13 +00:00
boolean = runloop_ctl(RUNLOOP_CTL_IS_PAUSED, NULL);
2015-09-26 11:12:26 +00:00
boolean = !boolean;
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_SET_PAUSED, &boolean);
event_cmd_ctl(EVENT_CMD_PAUSE_CHECKS, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_UNPAUSE:
2015-09-26 11:12:26 +00:00
boolean = false;
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_SET_PAUSED, &boolean);
event_cmd_ctl(EVENT_CMD_PAUSE_CHECKS, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_PAUSE:
2015-09-26 11:12:26 +00:00
boolean = true;
2015-11-30 20:42:59 +00:00
runloop_ctl(RUNLOOP_CTL_SET_PAUSED, &boolean);
event_cmd_ctl(EVENT_CMD_PAUSE_CHECKS, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_MENU_PAUSE_LIBRETRO:
2015-10-09 18:40:05 +00:00
#ifdef HAVE_MENU
2015-12-05 12:49:22 +00:00
if (menu_driver_ctl(RARCH_MENU_CTL_IS_ALIVE, NULL))
2015-04-13 09:15:40 +00:00
{
if (settings->menu.pause_libretro)
event_cmd_ctl(EVENT_CMD_AUDIO_STOP, NULL);
2015-04-13 09:15:40 +00:00
else
event_cmd_ctl(EVENT_CMD_AUDIO_START, NULL);
2015-04-13 09:15:40 +00:00
}
else
{
if (settings->menu.pause_libretro)
event_cmd_ctl(EVENT_CMD_AUDIO_START, NULL);
2015-04-13 09:15:40 +00:00
}
2015-10-09 18:40:05 +00:00
#endif
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_SHADER_DIR_DEINIT:
runloop_ctl(RUNLOOP_CTL_SHADER_DIR_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_SHADER_DIR_INIT:
event_cmd_ctl(EVENT_CMD_SHADER_DIR_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
if (!runloop_ctl(RUNLOOP_CTL_SHADER_DIR_INIT, NULL))
2015-04-13 09:15:40 +00:00
return false;
break;
case EVENT_CMD_SAVEFILES:
2015-12-09 09:59:27 +00:00
{
global_t *global = global_get_ptr();
if (!global->savefiles || !global->sram.use)
return false;
for (i = 0; i < global->savefiles->size; i++)
{
ram_type_t ram;
ram.type = global->savefiles->elems[i].attr.i;
ram.path = global->savefiles->elems[i].data;
RARCH_LOG("%s #%u %s \"%s\".\n",
msg_hash_to_str(MSG_SAVING_RAM_TYPE),
ram.type,
msg_hash_to_str(MSG_TO),
ram.path);
2016-05-08 02:31:56 +00:00
content_save_ram_file(&ram);
}
2015-12-09 09:59:27 +00:00
}
return true;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_SAVEFILES_DEINIT:
{
global_t *global = global_get_ptr();
if (!global)
break;
2015-04-13 09:15:40 +00:00
if (global->savefiles)
string_list_free(global->savefiles);
global->savefiles = NULL;
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_SAVEFILES_INIT:
{
global_t *global = global_get_ptr();
2016-01-26 04:52:43 +00:00
global->sram.use = global->sram.use && !global->sram.save_disable;
2015-04-13 09:15:40 +00:00
#ifdef HAVE_NETPLAY
2016-01-26 04:52:43 +00:00
global->sram.use = global->sram.use &&
(!netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_DATA_INITED, NULL)
|| !global->netplay.is_client);
2015-04-13 09:15:40 +00:00
#endif
if (!global->sram.use)
RARCH_LOG("%s\n",
msg_hash_to_str(MSG_SRAM_WILL_NOT_BE_SAVED));
2015-04-13 09:15:40 +00:00
if (global->sram.use)
event_cmd_ctl(EVENT_CMD_AUTOSAVE_INIT, NULL);
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_BSV_MOVIE_DEINIT:
2015-11-30 23:04:04 +00:00
bsv_movie_ctl(BSV_MOVIE_CTL_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_BSV_MOVIE_INIT:
event_cmd_ctl(EVENT_CMD_BSV_MOVIE_DEINIT, NULL);
2015-11-30 23:04:04 +00:00
bsv_movie_ctl(BSV_MOVIE_CTL_INIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_NETPLAY_DEINIT:
#ifdef HAVE_NETPLAY
deinit_netplay();
#endif
break;
case EVENT_CMD_NETWORK_DEINIT:
#ifdef HAVE_NETWORKING
network_deinit();
#endif
break;
case EVENT_CMD_NETWORK_INIT:
#ifdef HAVE_NETWORKING
network_init();
#endif
break;
case EVENT_CMD_NETPLAY_INIT:
event_cmd_ctl(EVENT_CMD_NETPLAY_DEINIT, NULL);
2015-04-13 09:15:40 +00:00
#ifdef HAVE_NETPLAY
if (!init_netplay())
return false;
#endif
break;
case EVENT_CMD_NETPLAY_FLIP_PLAYERS:
#ifdef HAVE_NETPLAY
netplay_driver_ctl(RARCH_NETPLAY_CTL_FLIP_PLAYERS, NULL);
2015-04-13 09:15:40 +00:00
#endif
break;
case EVENT_CMD_FULLSCREEN_TOGGLE:
2016-05-08 12:00:51 +00:00
if (!video_driver_has_windowed())
2015-04-13 09:15:40 +00:00
return false;
/* If we go fullscreen we drop all drivers and
2015-04-13 09:15:40 +00:00
* reinitialize to be safe. */
settings->video.fullscreen = !settings->video.fullscreen;
event_cmd_ctl(EVENT_CMD_REINIT, NULL);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_COMMAND_DEINIT:
2016-05-08 21:12:04 +00:00
input_driver_deinit_command();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_COMMAND_INIT:
event_cmd_ctl(EVENT_CMD_COMMAND_DEINIT, NULL);
2016-05-08 21:12:04 +00:00
input_driver_init_command();
2015-04-13 09:15:40 +00:00
break;
2015-11-30 21:56:41 +00:00
case EVENT_CMD_REMOTE_DEINIT:
2016-05-08 21:12:04 +00:00
input_driver_deinit_remote();
2015-11-30 21:56:41 +00:00
break;
case EVENT_CMD_REMOTE_INIT:
event_cmd_ctl(EVENT_CMD_REMOTE_DEINIT, NULL);
2016-05-08 21:12:04 +00:00
input_driver_init_remote();
2015-11-30 21:56:41 +00:00
break;
2015-04-13 09:15:40 +00:00
case EVENT_CMD_TEMPORARY_CONTENT_DEINIT:
2016-05-08 03:17:31 +00:00
content_deinit();
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_SUBSYSTEM_FULLPATHS_DEINIT:
{
global_t *global = global_get_ptr();
if (!global)
break;
2015-04-13 09:15:40 +00:00
if (global->subsystem_fullpaths)
string_list_free(global->subsystem_fullpaths);
global->subsystem_fullpaths = NULL;
}
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_LOG_FILE_DEINIT:
2015-11-23 14:45:02 +00:00
retro_main_log_file_deinit();
2015-04-13 09:15:40 +00:00
break;
2016-01-27 19:04:34 +00:00
case EVENT_CMD_DISK_APPEND_IMAGE:
{
const char *path = (const char*)data;
if (string_is_empty(path))
return false;
return event_disk_control_append_image(path);
}
2015-04-13 09:15:40 +00:00
case EVENT_CMD_DISK_EJECT_TOGGLE:
2016-03-04 19:00:49 +00:00
if (info && info->disk_control_cb.get_num_images)
2015-04-13 09:15:40 +00:00
{
const struct retro_disk_control_callback *control =
2015-04-13 09:15:40 +00:00
(const struct retro_disk_control_callback*)
2016-03-04 19:00:49 +00:00
&info->disk_control_cb;
2015-04-13 09:15:40 +00:00
if (control)
2015-12-09 09:59:27 +00:00
{
bool new_state = !control->get_eject_state();
event_disk_control_set_eject(new_state, true);
}
2015-04-13 09:15:40 +00:00
}
else
runloop_msg_queue_push(
msg_hash_to_str(MSG_CORE_DOES_NOT_SUPPORT_DISK_OPTIONS),
2015-07-01 20:14:37 +00:00
1, 120, true);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_DISK_NEXT:
2016-03-04 19:00:49 +00:00
if (info && info->disk_control_cb.get_num_images)
2015-04-13 09:15:40 +00:00
{
const struct retro_disk_control_callback *control =
2015-04-13 09:15:40 +00:00
(const struct retro_disk_control_callback*)
2016-03-04 19:00:49 +00:00
&info->disk_control_cb;
2015-04-13 09:15:40 +00:00
if (!control)
return false;
if (!control->get_eject_state())
return false;
event_check_disk_next(control);
}
else
runloop_msg_queue_push(
msg_hash_to_str(MSG_CORE_DOES_NOT_SUPPORT_DISK_OPTIONS),
2015-07-01 20:14:37 +00:00
1, 120, true);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_DISK_PREV:
2016-03-04 19:00:49 +00:00
if (info && info->disk_control_cb.get_num_images)
2015-04-13 09:15:40 +00:00
{
const struct retro_disk_control_callback *control =
2015-04-13 09:15:40 +00:00
(const struct retro_disk_control_callback*)
2016-03-04 19:00:49 +00:00
&info->disk_control_cb;
2015-04-13 09:15:40 +00:00
if (!control)
return false;
if (!control->get_eject_state())
return false;
event_check_disk_prev(control);
}
else
runloop_msg_queue_push(
msg_hash_to_str(MSG_CORE_DOES_NOT_SUPPORT_DISK_OPTIONS),
2015-07-01 20:14:37 +00:00
1, 120, true);
2015-04-13 09:15:40 +00:00
break;
case EVENT_CMD_RUMBLE_STOP:
for (i = 0; i < MAX_USERS; i++)
{
input_driver_set_rumble_state(i, RETRO_RUMBLE_STRONG, 0);
input_driver_set_rumble_state(i, RETRO_RUMBLE_WEAK, 0);
}
break;
case EVENT_CMD_GRAB_MOUSE_TOGGLE:
{
bool ret = false;
2015-04-13 09:15:40 +00:00
static bool grab_mouse_state = false;
grab_mouse_state = !grab_mouse_state;
if (grab_mouse_state)
2016-05-08 21:12:04 +00:00
ret = input_driver_grab_mouse();
else
2016-05-08 21:12:04 +00:00
ret = input_driver_ungrab_mouse();
if (!ret)
return false;
2015-04-13 09:15:40 +00:00
2015-07-01 20:14:37 +00:00
RARCH_LOG("%s: %s.\n",
msg_hash_to_str(MSG_GRAB_MOUSE_STATE),
2015-04-13 09:15:40 +00:00
grab_mouse_state ? "yes" : "no");
if (grab_mouse_state)
2016-05-08 12:00:51 +00:00
video_driver_hide_mouse();
else
2016-05-08 12:00:51 +00:00
video_driver_show_mouse();
2015-04-13 09:15:40 +00:00
}
break;
case EVENT_CMD_PERFCNT_REPORT_FRONTEND_LOG:
rarch_perf_log();
break;
case EVENT_CMD_VOLUME_UP:
event_set_volume(0.5f);
break;
case EVENT_CMD_VOLUME_DOWN:
event_set_volume(-0.5f);
break;
2015-08-27 12:25:57 +00:00
case EVENT_CMD_SET_FRAME_LIMIT:
runloop_ctl(RUNLOOP_CTL_SET_FRAME_LIMIT, NULL);
2015-08-27 12:25:57 +00:00
break;
2016-02-13 04:30:57 +00:00
case EVENT_CMD_EXEC:
return event_cmd_exec(data);
2015-04-20 16:40:46 +00:00
case EVENT_CMD_NONE:
default:
2015-07-01 20:14:37 +00:00
return false;
2015-04-13 09:15:40 +00:00
}
return true;
}