RetroArch/retroarch.c

3137 lines
91 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* 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
2014-04-12 11:25:48 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2010-05-28 16:21:33 +00:00
* 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.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2010-05-28 16:21:33 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2010-05-28 16:21:33 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2010-05-26 19:27:37 +00:00
#include <stdlib.h>
#include <stdint.h>
2010-05-26 19:27:37 +00:00
#include <string.h>
2011-09-27 13:31:25 +00:00
#include <ctype.h>
2011-10-06 21:43:48 +00:00
#include <errno.h>
#include <boolean.h>
2015-01-13 01:29:08 +00:00
#include "libretro_version_1.h"
#include "dynamic.h"
#include "content.h"
2014-10-21 22:23:06 +00:00
#include <file/file_path.h>
2014-10-21 23:13:05 +00:00
#include <file/dir_list.h>
#include "general.h"
2015-01-09 16:40:47 +00:00
#include "retroarch.h"
2015-03-15 01:00:11 +00:00
#include "runloop.h"
2015-03-24 12:45:53 +00:00
#include "runloop_data.h"
2014-10-21 05:58:58 +00:00
#include <compat/strl.h>
2011-05-15 15:16:29 +00:00
#include "screenshot.h"
2014-10-12 17:45:38 +00:00
#include "performance.h"
2011-04-17 11:30:59 +00:00
#include "cheats.h"
2014-10-21 05:58:58 +00:00
#include <compat/getopt.h>
#include <compat/posix_string.h>
2015-01-24 22:42:31 +00:00
#include "input/keyboard_line.h"
2015-01-24 22:42:31 +00:00
#include "input/input_remapping.h"
#include "record/record_driver.h"
#include "git_version.h"
#include "intl/intl.h"
2014-07-22 01:12:56 +00:00
#ifdef HAVE_MENU
2015-01-10 03:53:37 +00:00
#include "menu/menu.h"
2014-10-28 18:54:23 +00:00
#include "menu/menu_shader.h"
#include "menu/menu_input.h"
2014-07-22 01:12:56 +00:00
#endif
#ifdef HAVE_NETWORKING
#include <net/net_compat.h>
#endif
#ifdef HAVE_NETPLAY
#include "netplay.h"
#endif
2013-04-11 20:35:15 +00:00
#ifdef _WIN32
#ifdef _XBOX
#include <xtl.h>
#else
2011-02-05 19:46:58 +00:00
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
2012-03-04 22:15:25 +00:00
#endif
2011-02-05 19:46:58 +00:00
#endif
2015-01-10 22:23:01 +00:00
/**
* rarch_render_cached_frame:
*
* Renders the current video frame.
**/
2012-04-21 21:25:32 +00:00
void rarch_render_cached_frame(void)
{
driver_t *driver = driver_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-18 05:47:22 +00:00
runloop_t *runloop = rarch_main_get_ptr();
2015-03-22 07:39:26 +00:00
void *recording = driver ? driver->recording_data : NULL;
2015-03-18 05:47:22 +00:00
if (runloop->is_idle)
return;
/* Cannot allow recording when pushing duped frames. */
driver->recording_data = NULL;
/* Not 100% safe, since the library might have
* freed the memory, but no known implementations do this.
* It would be really stupid at any rate ...
*/
if (driver->retro_ctx.frame_cb)
driver->retro_ctx.frame_cb(
2015-03-21 03:43:18 +00:00
(global->frame_cache.data == RETRO_HW_FRAME_BUFFER_VALID)
? NULL : global->frame_cache.data,
global->frame_cache.width,
global->frame_cache.height,
global->frame_cache.pitch);
driver->recording_data = recording;
2010-05-26 19:27:37 +00:00
}
#include "config.features.h"
#define _PSUPP(var, name, desc) printf("\t%s:\n\t\t%s: %s\n", name, desc, _##var##_supp ? "yes" : "no")
static void print_features(void)
{
puts("");
puts("Features:");
_PSUPP(sdl, "SDL", "SDL drivers");
2014-08-10 22:13:49 +00:00
_PSUPP(sdl2, "SDL2", "SDL2 drivers");
_PSUPP(x11, "X11", "X11 drivers");
_PSUPP(wayland, "wayland", "Wayland drivers");
2011-11-30 16:46:58 +00:00
_PSUPP(thread, "Threads", "Threading support");
2011-11-01 17:45:50 +00:00
_PSUPP(opengl, "OpenGL", "OpenGL driver");
2012-09-25 10:58:45 +00:00
_PSUPP(kms, "KMS", "KMS/EGL context support");
2013-12-08 15:07:14 +00:00
_PSUPP(udev, "UDEV", "UDEV/EVDEV input driver support");
2012-09-25 10:58:45 +00:00
_PSUPP(egl, "EGL", "EGL context support");
_PSUPP(vg, "OpenVG", "OpenVG output support");
2011-06-25 16:11:04 +00:00
_PSUPP(xvideo, "XVideo", "XVideo output");
_PSUPP(alsa, "ALSA", "audio driver");
_PSUPP(oss, "OSS", "audio driver");
_PSUPP(jack, "Jack", "audio driver");
_PSUPP(rsound, "RSound", "audio driver");
_PSUPP(roar, "RoarAudio", "audio driver");
_PSUPP(pulse, "PulseAudio", "audio driver");
2011-12-25 00:59:30 +00:00
_PSUPP(dsound, "DirectSound", "audio driver");
_PSUPP(xaudio, "XAudio2", "audio driver");
2013-01-21 22:51:56 +00:00
_PSUPP(zlib, "zlib", "PNG encode/decode and .zip extraction");
_PSUPP(al, "OpenAL", "audio driver");
_PSUPP(dylib, "External", "External filter and plugin support");
_PSUPP(cg, "Cg", "Cg pixel shaders");
_PSUPP(libxml2, "libxml2", "libxml2 XML parsing");
_PSUPP(sdl_image, "SDL_image", "SDL_image image loading");
2011-03-23 22:48:13 +00:00
_PSUPP(fbo, "FBO", "OpenGL render-to-texture (multi-pass shaders)");
_PSUPP(dynamic, "Dynamic", "Dynamic run-time loading of libretro library");
_PSUPP(ffmpeg, "FFmpeg", "On-the-fly recording of gameplay with libavcodec");
_PSUPP(freetype, "FreeType", "TTF font rendering with FreeType");
2011-03-19 19:41:07 +00:00
_PSUPP(netplay, "Netplay", "Peer-to-peer netplay");
2011-06-06 18:21:26 +00:00
_PSUPP(python, "Python", "Script support in shaders");
}
#undef _PSUPP
2015-01-11 01:21:18 +00:00
/**
* print_compiler:
*
* Prints compiler that was used for compiling RetroArch.
**/
2011-12-25 20:39:58 +00:00
static void print_compiler(FILE *file)
2011-12-25 20:16:48 +00:00
{
2011-12-25 20:39:58 +00:00
fprintf(file, "\nCompiler: ");
2011-12-25 20:16:48 +00:00
#if defined(_MSC_VER)
fprintf(file, "MSVC (%d) %u-bit\n", _MSC_VER, (unsigned)
(CHAR_BIT * sizeof(size_t)));
2012-01-11 21:55:07 +00:00
#elif defined(__SNC__)
fprintf(file, "SNC (%d) %u-bit\n",
__SN_VER__, (unsigned)(CHAR_BIT * sizeof(size_t)));
2011-12-25 20:16:48 +00:00
#elif defined(_WIN32) && defined(__GNUC__)
2011-12-25 20:39:58 +00:00
fprintf(file, "MinGW (%d.%d.%d) %u-bit\n",
__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__, (unsigned)
(CHAR_BIT * sizeof(size_t)));
2011-12-25 20:16:48 +00:00
#elif defined(__clang__)
2011-12-25 20:39:58 +00:00
fprintf(file, "Clang/LLVM (%s) %u-bit\n",
__clang_version__, (unsigned)(CHAR_BIT * sizeof(size_t)));
2011-12-25 20:16:48 +00:00
#elif defined(__GNUC__)
2011-12-25 20:39:58 +00:00
fprintf(file, "GCC (%d.%d.%d) %u-bit\n",
__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__, (unsigned)
(CHAR_BIT * sizeof(size_t)));
2011-12-25 20:16:48 +00:00
#else
2011-12-25 20:39:58 +00:00
fprintf(file, "Unknown compiler %u-bit\n",
2011-12-25 20:16:48 +00:00
(unsigned)(CHAR_BIT * sizeof(size_t)));
#endif
2011-12-25 20:39:58 +00:00
fprintf(file, "Built: %s\n", __DATE__);
2011-12-25 20:16:48 +00:00
}
2015-01-11 01:21:18 +00:00
/**
* print_help:
*
* Prints help message explaining RetroArch's commandline switches.
**/
2010-10-01 19:39:15 +00:00
static void print_help(void)
{
2011-02-15 15:42:55 +00:00
puts("===================================================================");
#ifdef HAVE_GIT_VERSION
printf(RETRO_FRONTEND ": Frontend for libretro -- v" PACKAGE_VERSION " -- %s --\n", rarch_git_version);
#else
puts(RETRO_FRONTEND ": Frontend for libretro -- v" PACKAGE_VERSION " --");
#endif
2011-12-25 20:39:58 +00:00
print_compiler(stdout);
2011-02-15 15:42:55 +00:00
puts("===================================================================");
puts("Usage: retroarch [content file] [options...]");
2011-06-21 20:37:48 +00:00
puts("\t-h/--help: Show this help message.");
2014-05-26 01:11:39 +00:00
puts("\t--menu: Do not require content or libretro core to be loaded, starts directly in menu.");
puts("\t\tIf no arguments are passed to " RETRO_FRONTEND ", it is equivalent to using --menu as only argument.");
puts("\t--features: Prints available features compiled into " RETRO_FRONTEND ".");
puts("\t-s/--save: Path for save file (*.srm).");
puts("\t-f/--fullscreen: Start " RETRO_FRONTEND " in fullscreen regardless of config settings.");
puts("\t-S/--savestate: Path to use for save states. If not selected, *.state will be assumed.");
2012-04-21 21:25:32 +00:00
puts("\t-c/--config: Path for config file." RARCH_DEFAULT_CONF_PATH_STR);
2012-09-10 22:10:44 +00:00
puts("\t--appendconfig: Extra config files are loaded in, and take priority over config selected in -c (or default).");
puts("\t\tMultiple configs are delimited by ','.");
2011-11-15 20:15:12 +00:00
#ifdef HAVE_DYNAMIC
puts("\t-L/--libretro: Path to libretro implementation. Overrides any config setting.");
#endif
2014-07-28 18:01:27 +00:00
puts("\t--subsystem: Use a subsystem of the libretro core. Multiple content files are loaded as multiple arguments.");
2014-07-28 18:08:37 +00:00
puts("\t\tIf a content file is skipped, use a blank (\"\") command line argument");
2014-07-28 18:01:27 +00:00
puts("\t\tContent must be loaded in an order which depends on the particular subsystem used.");
puts("\t\tSee verbose log output to learn how a particular subsystem wants content to be loaded.");
2012-08-16 19:20:38 +00:00
2015-01-05 00:58:00 +00:00
printf("\t-N/--nodevice: Disconnects controller device connected to port (1 to %d).\n", MAX_USERS);
printf("\t-A/--dualanalog: Connect a DualAnalog controller to port (1 to %d).\n", MAX_USERS);
printf("\t-d/--device: Connect a generic device into port of the device (1 to %d).\n", MAX_USERS);
puts("\t\tFormat is port:ID, where ID is an unsigned number corresponding to the particular device.\n");
2012-08-16 19:20:38 +00:00
2011-02-02 11:10:27 +00:00
puts("\t-P/--bsvplay: Playback a BSV movie file.");
2011-11-18 17:03:24 +00:00
puts("\t-R/--bsvrecord: Start recording a BSV movie file from the beginning.");
2014-10-01 14:33:00 +00:00
puts("\t--eof-exit: Exit upon reaching the end of the BSV movie file.");
2011-11-20 19:19:05 +00:00
puts("\t-M/--sram-mode: Takes an argument telling how SRAM should be handled in the session.");
2011-11-18 17:03:24 +00:00
puts("\t\t{no,}load-{no,}save describes if SRAM should be loaded, and if SRAM should be saved.");
2011-11-20 19:19:05 +00:00
puts("\t\tDo note that noload-save implies that save files will be deleted and overwritten.");
2011-03-19 19:41:07 +00:00
#ifdef HAVE_NETPLAY
2014-12-05 12:48:54 +00:00
puts("\t-H/--host: Host netplay as user 1.");
puts("\t-C/--connect: Connect to netplay as user 2.");
2011-02-18 13:49:15 +00:00
puts("\t--port: Port used to netplay. Default is 55435.");
2011-02-15 14:32:26 +00:00
puts("\t-F/--frames: Sync frames when using netplay.");
2012-03-05 16:37:18 +00:00
puts("\t--spectate: Netplay will become spectating mode.");
2014-12-05 12:48:54 +00:00
puts("\t\tHost can live stream the game content to users that connect.");
2012-01-11 18:22:18 +00:00
puts("\t\tHowever, the client will not be able to play. Multiple clients can connect to the host.");
2011-03-19 19:41:07 +00:00
#endif
puts("\t--nick: Picks a username (for use with netplay). Not mandatory.");
#if defined(HAVE_NETWORK_CMD) && defined(HAVE_NETPLAY)
puts("\t--command: Sends a command over UDP to an already running " RETRO_FRONTEND " process.");
puts("\t\tAvailable commands are listed if command is invalid.");
#endif
2011-01-07 16:59:53 +00:00
2011-10-30 10:24:16 +00:00
puts("\t-r/--record: Path to record video file.\n\t\tUsing .mkv extension is recommended.");
puts("\t--recordconfig: Path to settings used during recording.");
puts("\t--size: Overrides output video size when recording (format: WIDTHxHEIGHT).");
2011-06-21 20:37:48 +00:00
puts("\t-v/--verbose: Verbose logging.");
2014-07-28 18:08:37 +00:00
puts("\t-U/--ups: Specifies path for UPS patch that will be applied to content.");
puts("\t--bps: Specifies path for BPS patch that will be applied to content.");
puts("\t--ips: Specifies path for IPS patch that will be applied to content.");
puts("\t--no-patch: Disables all forms of content patching.");
2014-10-01 13:22:22 +00:00
puts("\t-D/--detach: Detach " RETRO_FRONTEND " from the running console. Not relevant for all platforms.");
puts("\t--max-frames: Runs for the specified number of frames, then exits.\n");
2010-10-01 19:39:15 +00:00
}
static void set_basename(const char *path)
{
2015-03-22 06:28:45 +00:00
char *dst = NULL;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-21 03:43:18 +00:00
strlcpy(global->fullpath, path, sizeof(global->fullpath));
strlcpy(global->basename, path, sizeof(global->basename));
#ifdef HAVE_COMPRESSION
/* Removing extension is a bit tricky for compressed files.
* Basename means:
* /file/to/path/game.extension should be:
* /file/to/path/game
*
* Two things to consider here are: /file/to/path/ is expected
* to be a directory and "game" is a single file. This is used for
* states and srm default paths.
*
* For compressed files we have:
*
* /file/to/path/comp.7z#game.extension and
* /file/to/path/comp.7z#folder/game.extension
*
* The choice I take here is:
* /file/to/path/game as basename. We might end up in a writable
* directory then and the name of srm and states are meaningful.
*
*/
2015-03-21 03:43:18 +00:00
path_basedir(global->basename);
fill_pathname_dir(global->basename, path, "", sizeof(global->basename));
#endif
2014-08-02 09:48:42 +00:00
2015-03-21 03:43:18 +00:00
if ((dst = strrchr(global->basename, '.')))
*dst = '\0';
}
2014-07-28 17:47:12 +00:00
static void set_special_paths(char **argv, unsigned num_content)
2014-04-04 12:58:42 +00:00
{
unsigned i;
2014-08-02 09:48:42 +00:00
union string_list_elem_attr attr;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2014-04-04 12:58:42 +00:00
/* First content file is the significant one. */
2014-04-04 12:58:42 +00:00
set_basename(argv[0]);
2015-03-21 03:43:18 +00:00
global->subsystem_fullpaths = string_list_new();
rarch_assert(global->subsystem_fullpaths);
2014-04-04 12:58:42 +00:00
attr.i = 0;
2014-07-28 17:47:12 +00:00
for (i = 0; i < num_content; i++)
2015-03-21 03:43:18 +00:00
string_list_append(global->subsystem_fullpaths, argv[i], attr);
2014-04-04 12:58:42 +00:00
/* We defer SRAM path updates until we can resolve it.
* It is more complicated for special content types. */
2014-04-04 12:58:42 +00:00
2015-03-21 03:43:18 +00:00
if (!global->has_set_state_path)
fill_pathname_noext(global->savestate_name, global->basename,
".state", sizeof(global->savestate_name));
2014-04-04 12:58:42 +00:00
2015-03-21 03:43:18 +00:00
if (path_is_directory(global->savestate_name))
2014-04-04 12:58:42 +00:00
{
2015-03-21 03:43:18 +00:00
fill_pathname_dir(global->savestate_name, global->basename,
".state", sizeof(global->savestate_name));
RARCH_LOG("Redirecting save state to \"%s\".\n",
2015-03-21 03:43:18 +00:00
global->savestate_name);
2014-04-04 12:58:42 +00:00
}
/* If this is already set,
* do not overwrite it as this was initialized before in
2014-09-02 00:55:43 +00:00
* a menu or otherwise. */
2015-03-20 19:20:33 +00:00
if (!*settings->system_directory)
fill_pathname_basedir(settings->system_directory, argv[0],
sizeof(settings->system_directory));
2014-04-04 12:58:42 +00:00
}
2014-12-15 20:55:51 +00:00
static void set_paths_redirect(const char *path)
2011-08-24 13:47:39 +00:00
{
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
if (path_is_directory(global->savefile_name))
2011-08-24 13:47:39 +00:00
{
2015-03-21 03:43:18 +00:00
fill_pathname_dir(global->savefile_name, global->basename,
".srm", sizeof(global->savefile_name));
RARCH_LOG("Redirecting save file to \"%s\".\n", global->savefile_name);
2011-08-24 13:47:39 +00:00
}
2014-12-15 20:55:51 +00:00
2015-03-21 03:43:18 +00:00
if (path_is_directory(global->savestate_name))
2011-08-24 13:47:39 +00:00
{
2015-03-21 03:43:18 +00:00
fill_pathname_dir(global->savestate_name, global->basename,
".state", sizeof(global->savestate_name));
RARCH_LOG("Redirecting save state to \"%s\".\n", global->savestate_name);
2011-08-24 13:47:39 +00:00
}
2011-10-28 15:10:58 +00:00
2015-03-21 03:43:18 +00:00
if (path_is_directory(global->cheatfile_name))
2014-12-15 20:55:51 +00:00
{
2015-03-21 03:43:18 +00:00
fill_pathname_dir(global->cheatfile_name, global->basename,
".state", sizeof(global->cheatfile_name));
RARCH_LOG("Redirecting cheat file to \"%s\".\n", global->cheatfile_name);
2014-12-15 20:55:51 +00:00
}
}
static void set_paths(const char *path)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
2014-12-15 20:55:51 +00:00
set_basename(path);
2015-03-21 03:43:18 +00:00
if (!global->has_set_save_path)
fill_pathname_noext(global->savefile_name, global->basename,
".srm", sizeof(global->savefile_name));
if (!global->has_set_state_path)
fill_pathname_noext(global->savestate_name, global->basename,
".state", sizeof(global->savestate_name));
fill_pathname_noext(global->cheatfile_name, global->basename,
".cht", sizeof(global->cheatfile_name));
2014-12-15 20:55:51 +00:00
set_paths_redirect(path);
/* If this is already set, do not overwrite it
* as this was initialized before in a menu or otherwise. */
2015-03-20 19:20:33 +00:00
if (*settings->system_directory)
2015-01-14 21:19:15 +00:00
return;
2015-03-20 19:20:33 +00:00
fill_pathname_basedir(settings->system_directory, path,
sizeof(settings->system_directory));
2011-08-24 13:47:39 +00:00
}
2015-01-11 01:21:18 +00:00
/**
* parse_input:
* @argc : Count of (commandline) arguments.
* @argv : (Commandline) arguments.
*
* Parses (commandline) arguments passed to RetroArch.
*
**/
2010-10-01 19:39:15 +00:00
static void parse_input(int argc, char *argv[])
2010-05-26 19:27:37 +00:00
{
2015-03-18 05:47:22 +00:00
runloop_t *runloop = rarch_main_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
global->libretro_no_content = false;
global->libretro_dummy = false;
global->has_set_save_path = false;
global->has_set_state_path = false;
global->has_set_libretro = false;
global->has_set_libretro_directory = false;
global->has_set_verbosity = false;
global->has_set_netplay_mode = false;
global->has_set_username = false;
global->has_set_netplay_ip_address = false;
global->has_set_netplay_delay_frames = false;
global->has_set_netplay_ip_port = false;
global->has_set_ups_pref = false;
global->has_set_bps_pref = false;
global->has_set_ips_pref = false;
global->ups_pref = false;
global->bps_pref = false;
global->ips_pref = false;
*global->ups_name = '\0';
*global->bps_name = '\0';
*global->ips_name = '\0';
*global->subsystem = '\0';
2013-04-16 07:41:02 +00:00
2010-10-01 19:39:15 +00:00
if (argc < 2)
2010-05-26 19:27:37 +00:00
{
2015-03-21 03:43:18 +00:00
global->libretro_dummy = true;
2013-04-14 17:23:10 +00:00
return;
2010-05-26 19:27:37 +00:00
}
2010-05-29 13:21:30 +00:00
/* Make sure we can call parse_input several times ... */
optind = 0;
2011-02-18 13:49:15 +00:00
int val = 0;
2012-01-05 20:43:55 +00:00
const struct option opts[] = {
2011-11-15 20:15:12 +00:00
#ifdef HAVE_DYNAMIC
{ "libretro", 1, NULL, 'L' },
2011-11-15 20:15:12 +00:00
#endif
2013-04-14 14:24:19 +00:00
{ "menu", 0, &val, 'M' },
2010-10-01 19:39:15 +00:00
{ "help", 0, NULL, 'h' },
{ "save", 1, NULL, 's' },
{ "fullscreen", 0, NULL, 'f' },
{ "record", 1, NULL, 'r' },
{ "recordconfig", 1, &val, 'R' },
2011-10-06 21:43:48 +00:00
{ "size", 1, &val, 's' },
2010-10-01 20:10:28 +00:00
{ "verbose", 0, NULL, 'v' },
2012-09-09 07:26:54 +00:00
{ "config", 1, NULL, 'c' },
2012-09-10 22:10:44 +00:00
{ "appendconfig", 1, &val, 'C' },
2011-06-19 09:11:04 +00:00
{ "nodevice", 1, NULL, 'N' },
2012-08-16 19:20:38 +00:00
{ "dualanalog", 1, NULL, 'A' },
{ "device", 1, NULL, 'd' },
{ "savestate", 1, NULL, 'S' },
2011-02-02 11:10:27 +00:00
{ "bsvplay", 1, NULL, 'P' },
2011-11-18 17:03:24 +00:00
{ "bsvrecord", 1, NULL, 'R' },
2011-11-20 19:19:05 +00:00
{ "sram-mode", 1, NULL, 'M' },
#ifdef HAVE_NETPLAY
2011-02-13 15:40:24 +00:00
{ "host", 0, NULL, 'H' },
{ "connect", 1, NULL, 'C' },
2011-02-15 14:32:26 +00:00
{ "frames", 1, NULL, 'F' },
2011-02-18 13:49:15 +00:00
{ "port", 1, &val, 'p' },
2012-01-11 18:22:18 +00:00
{ "spectate", 0, &val, 'S' },
#endif
{ "nick", 1, &val, 'N' },
#if defined(HAVE_NETWORK_CMD) && defined(HAVE_NETPLAY)
{ "command", 1, &val, 'c' },
#endif
{ "ups", 1, NULL, 'U' },
2011-08-17 22:24:57 +00:00
{ "bps", 1, &val, 'B' },
2012-03-20 22:08:34 +00:00
{ "ips", 1, &val, 'I' },
{ "no-patch", 0, &val, 'n' },
2011-04-23 12:47:50 +00:00
{ "detach", 0, NULL, 'D' },
{ "features", 0, &val, 'f' },
2014-04-04 12:58:42 +00:00
{ "subsystem", 1, NULL, 'Z' },
2014-10-01 13:22:22 +00:00
{ "max-frames", 1, NULL, 'm' },
2014-10-01 14:33:00 +00:00
{ "eof-exit", 0, &val, 'e' },
2010-10-01 19:39:15 +00:00
{ NULL, 0, NULL, 0 }
};
#define FFMPEG_RECORD_ARG "r:"
2011-11-15 20:15:12 +00:00
#ifdef HAVE_DYNAMIC
#define DYNAMIC_ARG "L:"
#else
#define DYNAMIC_ARG
#endif
#ifdef HAVE_NETPLAY
#define NETPLAY_ARG "HC:F:"
#else
#define NETPLAY_ARG
#endif
2014-09-02 15:05:15 +00:00
2012-03-25 22:04:12 +00:00
#define BSV_MOVIE_ARG "P:R:M:"
const char *optstring = "hs:fvS:A:c:U:DN:d:" BSV_MOVIE_ARG NETPLAY_ARG DYNAMIC_ARG FFMPEG_RECORD_ARG;
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2011-10-15 10:56:48 +00:00
for (;;)
2010-05-29 13:21:30 +00:00
{
2015-03-20 19:20:33 +00:00
int port;
2015-03-22 07:39:26 +00:00
val = 0;
2011-11-30 10:48:53 +00:00
int c = getopt_long(argc, argv, optstring, opts, NULL);
2010-10-01 19:39:15 +00:00
if (c == -1)
break;
switch (c)
{
case 'h':
print_help();
exit(0);
case 'Z':
2015-03-21 03:43:18 +00:00
strlcpy(global->subsystem, optarg, sizeof(global->subsystem));
break;
case 'd':
{
unsigned id = 0;
struct string_list *list = string_split(optarg, ":");
2015-03-22 07:39:26 +00:00
port = 0;
if (list && list->size == 2)
{
port = strtol(list->elems[0].data, NULL, 0);
id = strtoul(list->elems[1].data, NULL, 0);
}
string_list_free(list);
2015-01-05 00:58:00 +00:00
if (port < 1 || port > MAX_USERS)
{
RARCH_ERR("Connect device to a valid port.\n");
print_help();
rarch_fail(1, "parse_input()");
}
2015-03-20 19:20:33 +00:00
settings->input.libretro_device[port - 1] = id;
2015-03-21 03:43:18 +00:00
global->has_set_libretro_device[port - 1] = true;
2014-04-04 12:58:42 +00:00
break;
}
2014-04-04 12:58:42 +00:00
2012-08-16 19:20:38 +00:00
case 'A':
port = strtol(optarg, NULL, 0);
2015-01-05 00:58:00 +00:00
if (port < 1 || port > MAX_USERS)
2012-08-16 19:20:38 +00:00
{
RARCH_ERR("Connect dualanalog to a valid port.\n");
print_help();
rarch_fail(1, "parse_input()");
}
2015-03-20 19:20:33 +00:00
settings->input.libretro_device[port - 1] = RETRO_DEVICE_ANALOG;
2015-03-21 03:43:18 +00:00
global->has_set_libretro_device[port - 1] = true;
2012-08-16 19:20:38 +00:00
break;
2010-10-01 19:39:15 +00:00
case 's':
2015-03-21 03:43:18 +00:00
strlcpy(global->savefile_name, optarg,
sizeof(global->savefile_name));
global->has_set_save_path = true;
break;
case 'f':
2015-03-21 03:43:18 +00:00
global->force_fullscreen = true;
break;
case 'S':
2015-03-21 03:43:18 +00:00
strlcpy(global->savestate_name, optarg,
sizeof(global->savestate_name));
global->has_set_state_path = true;
2010-10-01 19:39:15 +00:00
break;
2010-10-01 20:10:28 +00:00
case 'v':
2015-03-21 03:43:18 +00:00
global->verbosity = true;
global->has_set_verbosity = true;
2010-10-01 20:10:28 +00:00
break;
2011-06-19 09:11:04 +00:00
case 'N':
port = strtol(optarg, NULL, 0);
2015-01-05 00:58:00 +00:00
if (port < 1 || port > MAX_USERS)
2011-06-19 09:11:04 +00:00
{
2012-08-16 19:20:38 +00:00
RARCH_ERR("Disconnect device from a valid port.\n");
2011-06-19 09:11:04 +00:00
print_help();
2012-04-21 21:25:32 +00:00
rarch_fail(1, "parse_input()");
2011-06-19 09:11:04 +00:00
}
2015-03-20 19:20:33 +00:00
settings->input.libretro_device[port - 1] = RETRO_DEVICE_NONE;
2015-03-21 03:43:18 +00:00
global->has_set_libretro_device[port - 1] = true;
2011-06-19 09:11:04 +00:00
break;
2010-12-29 20:12:56 +00:00
case 'c':
2015-03-21 03:43:18 +00:00
strlcpy(global->config_path, optarg,
sizeof(global->config_path));
2010-12-29 20:12:56 +00:00
break;
case 'r':
2015-03-21 03:43:18 +00:00
strlcpy(global->record.path, optarg,
sizeof(global->record.path));
global->record.enable = true;
break;
2011-11-15 20:15:12 +00:00
#ifdef HAVE_DYNAMIC
case 'L':
if (path_is_directory(optarg))
{
2015-03-20 19:20:33 +00:00
*settings->libretro = '\0';
strlcpy(settings->libretro_directory, optarg,
sizeof(settings->libretro_directory));
2015-03-21 03:43:18 +00:00
global->has_set_libretro = true;
global->has_set_libretro_directory = true;
RARCH_WARN("Using old --libretro behavior. Setting libretro_directory to \"%s\" instead.\n", optarg);
}
else
{
2015-03-20 19:20:33 +00:00
strlcpy(settings->libretro, optarg,
sizeof(settings->libretro));
2015-03-21 03:43:18 +00:00
global->has_set_libretro = true;
}
2011-11-15 20:15:12 +00:00
break;
2014-09-02 15:05:15 +00:00
#endif
2011-02-02 11:10:27 +00:00
case 'P':
2011-11-20 19:19:05 +00:00
case 'R':
2015-03-21 03:43:18 +00:00
strlcpy(global->bsv.movie_start_path, optarg,
sizeof(global->bsv.movie_start_path));
global->bsv.movie_start_playback = (c == 'P');
global->bsv.movie_start_recording = (c == 'R');
2011-11-18 17:03:24 +00:00
break;
2011-11-20 19:19:05 +00:00
case 'M':
2011-11-18 17:03:24 +00:00
if (strcmp(optarg, "noload-nosave") == 0)
{
2015-03-21 03:43:18 +00:00
global->sram_load_disable = true;
global->sram_save_disable = true;
2011-11-18 17:03:24 +00:00
}
else if (strcmp(optarg, "noload-save") == 0)
2015-03-21 03:43:18 +00:00
global->sram_load_disable = true;
2011-11-18 17:03:24 +00:00
else if (strcmp(optarg, "load-nosave") == 0)
2015-03-21 03:43:18 +00:00
global->sram_save_disable = true;
2011-11-20 19:19:05 +00:00
else if (strcmp(optarg, "load-save") != 0)
2011-11-18 17:03:24 +00:00
{
2012-04-21 21:25:32 +00:00
RARCH_ERR("Invalid argument in --sram-mode.\n");
2011-11-18 17:03:24 +00:00
print_help();
2012-04-21 21:25:32 +00:00
rarch_fail(1, "parse_input()");
2011-11-18 17:03:24 +00:00
}
2011-02-02 11:10:27 +00:00
break;
#ifdef HAVE_NETPLAY
2011-02-13 15:40:24 +00:00
case 'H':
2015-03-21 03:43:18 +00:00
global->has_set_netplay_ip_address = true;
global->netplay_enable = true;
*global->netplay_server = '\0';
2011-02-13 15:40:24 +00:00
break;
case 'C':
2015-03-21 03:43:18 +00:00
global->has_set_netplay_ip_address = true;
global->netplay_enable = true;
strlcpy(global->netplay_server, optarg,
sizeof(global->netplay_server));
2011-02-13 15:40:24 +00:00
break;
2011-02-15 14:32:26 +00:00
case 'F':
2015-03-21 03:43:18 +00:00
global->netplay_sync_frames = strtol(optarg, NULL, 0);
global->has_set_netplay_delay_frames = true;
2011-02-15 14:32:26 +00:00
break;
#endif
2011-02-15 14:32:26 +00:00
case 'U':
2015-03-21 03:43:18 +00:00
strlcpy(global->ups_name, optarg,
sizeof(global->ups_name));
global->ups_pref = true;
global->has_set_ups_pref = true;
break;
2011-04-23 12:47:50 +00:00
case 'D':
#if defined(_WIN32) && !defined(_XBOX)
2011-04-23 12:47:50 +00:00
FreeConsole();
#endif
break;
2014-10-01 13:22:22 +00:00
case 'm':
2015-03-18 05:47:22 +00:00
runloop->frames.video.max = strtoul(optarg, NULL, 10);
2014-10-01 13:22:22 +00:00
break;
2011-02-18 13:49:15 +00:00
case 0:
switch (val)
{
2013-04-14 14:24:19 +00:00
case 'M':
2015-03-21 03:43:18 +00:00
global->libretro_dummy = true;
2013-04-14 14:24:19 +00:00
break;
#ifdef HAVE_NETPLAY
2011-02-18 13:49:15 +00:00
case 'p':
2015-03-21 03:43:18 +00:00
global->has_set_netplay_ip_port = true;
global->netplay_port = strtoul(optarg, NULL, 0);
2011-02-18 13:49:15 +00:00
break;
2012-01-11 18:22:18 +00:00
case 'S':
2015-03-21 03:43:18 +00:00
global->has_set_netplay_mode = true;
global->netplay_is_spectate = true;
2012-01-11 18:22:18 +00:00
break;
2012-01-21 17:12:42 +00:00
#endif
2012-01-21 17:12:42 +00:00
case 'N':
2015-03-21 03:43:18 +00:00
global->has_set_username = true;
2015-03-20 19:20:33 +00:00
strlcpy(settings->username, optarg,
sizeof(settings->username));
2012-01-21 17:12:42 +00:00
break;
2011-10-06 21:43:48 +00:00
#if defined(HAVE_NETWORK_CMD) && defined(HAVE_NETPLAY)
case 'c':
if (network_cmd_send(optarg))
exit(0);
else
rarch_fail(1, "network_cmd_send()");
break;
#endif
2012-09-10 22:10:44 +00:00
case 'C':
2015-03-21 03:43:18 +00:00
strlcpy(global->append_config_path, optarg,
sizeof(global->append_config_path));
2012-09-10 22:10:44 +00:00
break;
2011-08-17 22:24:57 +00:00
case 'B':
2015-03-21 03:43:18 +00:00
strlcpy(global->bps_name, optarg,
sizeof(global->bps_name));
global->bps_pref = true;
global->has_set_bps_pref = true;
2011-08-17 22:24:57 +00:00
break;
2011-10-06 21:43:48 +00:00
2012-03-20 22:08:34 +00:00
case 'I':
2015-03-21 03:43:18 +00:00
strlcpy(global->ips_name, optarg,
sizeof(global->ips_name));
global->ips_pref = true;
global->has_set_ips_pref = true;
2012-03-20 22:08:34 +00:00
break;
case 'n':
2015-03-21 03:43:18 +00:00
global->block_patch = true;
break;
2011-10-06 21:43:48 +00:00
case 's':
{
2015-03-21 03:43:18 +00:00
if (sscanf(optarg, "%ux%u", &global->record.width,
&global->record.height) != 2)
2011-10-06 21:43:48 +00:00
{
2012-04-21 21:25:32 +00:00
RARCH_ERR("Wrong format for --size.\n");
2011-10-06 21:43:48 +00:00
print_help();
2012-04-21 21:25:32 +00:00
rarch_fail(1, "parse_input()");
2011-10-06 21:43:48 +00:00
}
break;
}
case 'R':
2015-03-21 03:43:18 +00:00
strlcpy(global->record.config, optarg,
sizeof(global->record.config));
break;
case 'f':
print_features();
exit(0);
2011-10-06 21:43:48 +00:00
2014-10-01 14:33:00 +00:00
case 'e':
2015-03-21 03:43:18 +00:00
global->bsv.eof_exit = true;
2014-10-01 14:33:00 +00:00
break;
2011-02-18 13:49:15 +00:00
default:
break;
}
break;
2010-10-01 19:39:15 +00:00
case '?':
print_help();
2012-04-21 21:25:32 +00:00
rarch_fail(1, "parse_input()");
2010-10-01 19:39:15 +00:00
default:
2012-04-21 21:25:32 +00:00
RARCH_ERR("Error parsing arguments.\n");
rarch_fail(1, "parse_input()");
2010-10-01 19:39:15 +00:00
}
2010-05-29 13:21:30 +00:00
}
2015-03-21 03:43:18 +00:00
if (global->libretro_dummy)
2013-04-14 14:24:19 +00:00
{
if (optind < argc)
{
2014-05-26 01:11:39 +00:00
RARCH_ERR("--menu was used, but content file was passed as well.\n");
2013-04-14 14:24:19 +00:00
rarch_fail(1, "parse_input()");
}
}
2015-03-21 03:43:18 +00:00
else if (!*global->subsystem && optind < argc)
2011-08-24 13:47:39 +00:00
set_paths(argv[optind]);
2015-03-21 03:43:18 +00:00
else if (*global->subsystem && optind < argc)
2014-04-04 12:58:42 +00:00
set_special_paths(argv + optind, argc - optind);
2011-08-24 13:47:39 +00:00
else
2015-03-21 03:43:18 +00:00
global->libretro_no_content = true;
2013-04-16 10:22:27 +00:00
/* Copy SRM/state dirs used, so they can be reused on reentrancy. */
2015-03-21 03:43:18 +00:00
if (global->has_set_save_path &&
path_is_directory(global->savefile_name))
strlcpy(global->savefile_dir, global->savefile_name,
sizeof(global->savefile_dir));
if (global->has_set_state_path &&
path_is_directory(global->savestate_name))
strlcpy(global->savestate_dir, global->savestate_name,
sizeof(global->savestate_dir));
2010-10-01 19:39:15 +00:00
}
2010-08-15 08:02:04 +00:00
2015-01-11 01:21:18 +00:00
/**
* init_controllers:
*
* Initialize libretro controllers.
**/
2011-01-10 13:29:00 +00:00
static void init_controllers(void)
{
unsigned i;
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-01-05 00:58:00 +00:00
for (i = 0; i < MAX_USERS; i++)
2012-08-16 19:20:38 +00:00
{
const char *ident = NULL;
2015-03-20 19:20:33 +00:00
const struct retro_controller_description *desc = NULL;
unsigned device = settings->input.libretro_device[i];
2015-03-21 03:43:18 +00:00
if (i < global->system.num_ports)
2014-09-02 00:02:25 +00:00
desc = libretro_find_controller_description(
2015-03-21 03:43:18 +00:00
&global->system.ports[i], device);
2012-08-16 19:20:38 +00:00
if (desc)
ident = desc->desc;
if (!ident)
{
/* If we're trying to connect a completely unknown device,
* revert back to JOYPAD. */
2015-01-14 21:19:15 +00:00
if (device != RETRO_DEVICE_JOYPAD && device != RETRO_DEVICE_NONE)
{
2015-03-20 19:20:33 +00:00
/* Do not fix settings->input.libretro_device[i],
* because any use of dummy core will reset this,
2014-09-02 01:21:33 +00:00
* which is not a good idea. */
RARCH_WARN("Input device ID %u is unknown to this libretro implementation. Using RETRO_DEVICE_JOYPAD.\n", device);
device = RETRO_DEVICE_JOYPAD;
}
ident = "Joypad";
}
2015-01-14 21:19:15 +00:00
switch (device)
{
2015-01-14 21:19:15 +00:00
case RETRO_DEVICE_NONE:
RARCH_LOG("Disconnecting device from port %u.\n", i + 1);
pretro_set_controller_port_device(i, device);
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);
pretro_set_controller_port_device(i, device);
break;
}
2011-01-10 13:29:00 +00:00
}
}
2014-10-03 10:07:15 +00:00
static bool load_save_files(void)
2011-01-12 18:09:24 +00:00
{
2014-04-04 12:58:42 +00:00
unsigned i;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-21 03:43:18 +00:00
if (!global->savefiles || global->sram_load_disable)
2014-08-02 03:08:52 +00:00
return false;
2015-03-21 03:43:18 +00:00
for (i = 0; i < global->savefiles->size; i++)
load_ram_file(global->savefiles->elems[i].data,
global->savefiles->elems[i].attr.i);
2014-08-02 03:08:52 +00:00
return true;
2011-01-12 18:09:24 +00:00
}
2014-10-03 10:07:15 +00:00
static void save_files(void)
2011-01-12 18:09:24 +00:00
{
2014-04-04 12:58:42 +00:00
unsigned i;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-21 03:43:18 +00:00
if (!global->savefiles || !global->use_sram)
2014-10-03 10:07:15 +00:00
return;
2011-01-12 18:09:24 +00:00
2015-03-21 03:43:18 +00:00
for (i = 0; i < global->savefiles->size; i++)
2014-04-04 12:58:42 +00:00
{
2015-03-21 03:43:18 +00:00
unsigned type = global->savefiles->elems[i].attr.i;
const char *path = global->savefiles->elems[i].data;
2014-04-04 12:58:42 +00:00
RARCH_LOG("Saving RAM type #%u to \"%s\".\n", type, path);
save_ram_file(path, type);
}
}
2015-01-24 22:42:31 +00:00
static void init_remapping(void)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
if (!settings->input.remap_binds_enable)
2015-01-24 22:42:31 +00:00
return;
2015-03-20 19:20:33 +00:00
input_remapping_load_file(settings->input.remapping_path);
2015-01-24 22:42:31 +00:00
}
2011-04-17 11:30:59 +00:00
static void init_cheats(void)
{
2014-08-01 16:26:12 +00:00
bool allow_cheats = true;
2015-03-22 06:28:45 +00:00
driver_t *driver = driver_get_ptr();
global_t *global = global_get_ptr();
2015-03-18 19:31:01 +00:00
(void)driver;
2014-08-01 16:26:12 +00:00
#ifdef HAVE_NETPLAY
allow_cheats &= !driver->netplay_data;
2014-08-01 16:26:12 +00:00
#endif
2015-03-21 03:43:18 +00:00
allow_cheats &= !global->bsv.movie;
2014-08-01 16:26:12 +00:00
if (!allow_cheats)
return;
/* TODO/FIXME - add some stuff here. */
2011-04-17 11:30:59 +00:00
}
static void init_rewind(void)
2011-01-31 15:48:42 +00:00
{
2015-03-22 06:28:45 +00:00
void *state = NULL;
2015-03-21 03:43:18 +00:00
driver_t *driver = driver_get_ptr();
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-18 19:31:01 +00:00
(void)driver;
#ifdef HAVE_NETPLAY
if (driver->netplay_data)
return;
#endif
2015-03-21 03:43:18 +00:00
if (!settings->rewind_enable || global->rewind.state)
return;
2015-03-21 03:43:18 +00:00
if (global->system.audio_callback.callback)
{
2014-09-02 04:20:31 +00:00
RARCH_ERR(RETRO_LOG_REWIND_INIT_FAILED_THREADED_AUDIO);
return;
}
2015-03-21 03:43:18 +00:00
global->rewind.size = pretro_serialize_size();
2015-03-21 03:43:18 +00:00
if (!global->rewind.size)
{
2014-09-02 04:20:31 +00:00
RARCH_ERR(RETRO_LOG_REWIND_INIT_FAILED_NO_SAVESTATES);
return;
}
2014-09-02 04:20:31 +00:00
RARCH_LOG(RETRO_MSG_REWIND_INIT "%u MB\n",
2015-03-20 19:20:33 +00:00
(unsigned)(settings->rewind_buffer_size / 1000000));
2015-03-21 03:43:18 +00:00
global->rewind.state = state_manager_new(global->rewind.size,
2015-03-20 19:20:33 +00:00
settings->rewind_buffer_size);
2015-03-21 03:43:18 +00:00
if (!global->rewind.state)
2014-09-02 04:20:31 +00:00
RARCH_WARN(RETRO_LOG_REWIND_INIT_FAILED);
2015-03-21 03:43:18 +00:00
state_manager_push_where(global->rewind.state, &state);
pretro_serialize(state, global->rewind.size);
state_manager_push_do(global->rewind.state);
2011-01-31 15:48:42 +00:00
}
2011-02-02 11:10:27 +00:00
static void init_movie(void)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
2015-03-21 03:43:18 +00:00
if (global->bsv.movie_start_playback)
2011-02-02 11:45:56 +00:00
{
2015-03-21 03:43:18 +00:00
if (!(global->bsv.movie = bsv_movie_init(global->bsv.movie_start_path,
RARCH_MOVIE_PLAYBACK)))
2011-02-02 11:45:56 +00:00
{
RARCH_ERR("Failed to load movie file: \"%s\".\n",
2015-03-21 03:43:18 +00:00
global->bsv.movie_start_path);
2012-04-21 21:25:32 +00:00
rarch_fail(1, "init_movie()");
2011-02-02 11:45:56 +00:00
}
2015-03-21 03:43:18 +00:00
global->bsv.movie_playback = true;
rarch_main_msg_queue_push("Starting movie playback.", 2, 180, false);
2012-04-21 21:25:32 +00:00
RARCH_LOG("Starting movie playback.\n");
2015-03-20 19:20:33 +00:00
settings->rewind_granularity = 1;
2011-02-02 11:45:56 +00:00
}
2015-03-21 03:43:18 +00:00
else if (global->bsv.movie_start_recording)
2011-11-18 17:03:24 +00:00
{
char msg[PATH_MAX_LENGTH];
snprintf(msg, sizeof(msg), "Starting movie record to \"%s\".",
2015-03-21 03:43:18 +00:00
global->bsv.movie_start_path);
2011-11-19 00:33:21 +00:00
2015-03-21 03:43:18 +00:00
if (!(global->bsv.movie = bsv_movie_init(global->bsv.movie_start_path,
RARCH_MOVIE_RECORD)))
{
rarch_main_msg_queue_push("Failed to start movie record.", 1, 180, true);
2012-04-21 21:25:32 +00:00
RARCH_ERR("Failed to start movie record.\n");
2015-01-14 21:19:15 +00:00
return;
}
2015-01-14 21:19:15 +00:00
rarch_main_msg_queue_push(msg, 1, 180, true);
2015-01-14 21:19:15 +00:00
RARCH_LOG("Starting movie record to \"%s\".\n",
2015-03-21 03:43:18 +00:00
global->bsv.movie_start_path);
2015-03-20 19:20:33 +00:00
settings->rewind_granularity = 1;
2011-11-18 17:03:24 +00:00
}
2011-02-02 11:10:27 +00:00
}
2012-04-21 21:25:32 +00:00
#define RARCH_DEFAULT_PORT 55435
2011-02-18 13:49:15 +00:00
2011-03-19 19:41:07 +00:00
#ifdef HAVE_NETPLAY
2015-01-11 01:21:18 +00:00
/**
* init_netplay:
*
* Initializes netplay.
*
* If netplay is already initialized, will return false (0).
*
* Returns: true (1) if successful, otherwise false (0).
**/
static bool init_netplay(void)
2011-02-13 15:40:24 +00:00
{
2014-08-02 09:48:42 +00:00
struct retro_callbacks cbs = {0};
2015-03-20 19:20:33 +00:00
driver_t *driver = driver_get_ptr();
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
2015-03-21 03:43:18 +00:00
if (!global->netplay_enable)
2015-01-11 01:21:18 +00:00
return false;
2011-11-03 20:05:12 +00:00
2015-03-21 03:43:18 +00:00
if (global->bsv.movie_start_playback)
{
2014-09-02 00:02:25 +00:00
RARCH_WARN(RETRO_LOG_MOVIE_STARTED_INIT_NETPLAY_FAILED);
2015-01-11 01:21:18 +00:00
return false;
}
retro_set_default_callbacks(&cbs);
2011-11-03 20:05:12 +00:00
2015-03-21 03:43:18 +00:00
if (*global->netplay_server)
2011-02-13 15:40:24 +00:00
{
2012-04-21 21:25:32 +00:00
RARCH_LOG("Connecting to netplay host...\n");
2015-03-21 03:43:18 +00:00
global->netplay_is_client = true;
2011-11-03 20:05:12 +00:00
}
else
2012-04-21 21:25:32 +00:00
RARCH_LOG("Waiting for client...\n");
2011-02-13 16:45:14 +00:00
driver->netplay_data = (netplay_t*)netplay_new(
2015-03-21 03:43:18 +00:00
global->netplay_is_client ? global->netplay_server : NULL,
global->netplay_port ? global->netplay_port : RARCH_DEFAULT_PORT,
global->netplay_sync_frames, &cbs, global->netplay_is_spectate,
2015-03-20 19:20:33 +00:00
settings->username);
2011-11-03 20:05:12 +00:00
if (driver->netplay_data)
2015-01-11 01:21:18 +00:00
return true;
2011-02-13 16:45:14 +00:00
2015-03-21 03:43:18 +00:00
global->netplay_is_client = false;
2015-01-11 01:21:18 +00:00
RARCH_WARN(RETRO_LOG_INIT_NETPLAY_FAILED);
rarch_main_msg_queue_push(
RETRO_MSG_INIT_NETPLAY_FAILED,
0, 180, false);
2015-01-11 01:21:18 +00:00
return false;
2011-02-13 15:40:24 +00:00
}
2012-05-27 12:23:30 +00:00
#endif
2012-07-24 00:47:28 +00:00
#ifdef HAVE_COMMAND
static void init_command(void)
{
2015-03-20 19:20:33 +00:00
driver_t *driver = driver_get_ptr();
settings_t *settings = config_get_ptr();
2015-03-20 19:20:33 +00:00
if (!settings->stdin_cmd_enable && !settings->network_cmd_enable)
return;
2015-03-20 19:20:33 +00:00
if (settings->stdin_cmd_enable && driver->stdin_claimed)
2012-07-24 00:47:28 +00:00
{
RARCH_WARN("stdin command interface is desired, but input driver has already claimed stdin.\n"
2012-07-24 00:47:28 +00:00
"Cannot use this command interface.\n");
}
2015-03-20 19:20:33 +00:00
if (!(driver->command = rarch_cmd_new(settings->stdin_cmd_enable
&& !driver->stdin_claimed,
2015-03-20 19:20:33 +00:00
settings->network_cmd_enable, settings->network_cmd_port)))
2012-07-24 00:47:28 +00:00
RARCH_ERR("Failed to initialize command interface.\n");
}
#endif
#if defined(HAVE_THREADS)
static void init_autosave(void)
2011-02-10 20:16:59 +00:00
{
unsigned i;
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-21 03:43:18 +00:00
if (settings->autosave_interval < 1 || !global->savefiles)
2014-04-04 12:58:42 +00:00
return;
2011-02-11 12:44:31 +00:00
2015-03-21 03:43:18 +00:00
if (!(global->autosave = (autosave_t**)calloc(global->savefiles->size,
sizeof(*global->autosave))))
2014-04-04 12:58:42 +00:00
return;
2011-02-11 12:44:31 +00:00
2015-03-21 03:43:18 +00:00
global->num_autosave = global->savefiles->size;
2011-02-11 12:44:31 +00:00
2015-03-21 03:43:18 +00:00
for (i = 0; i < global->savefiles->size; i++)
2011-02-10 20:16:59 +00:00
{
2015-03-21 03:43:18 +00:00
const char *path = global->savefiles->elems[i].data;
unsigned type = global->savefiles->elems[i].attr.i;
2014-04-04 12:58:42 +00:00
2015-01-14 21:19:15 +00:00
if (pretro_get_memory_size(type) <= 0)
continue;
2015-03-21 03:43:18 +00:00
global->autosave[i] = autosave_new(path,
2015-01-14 21:19:15 +00:00
pretro_get_memory_data(type),
pretro_get_memory_size(type),
2015-03-20 19:20:33 +00:00
settings->autosave_interval);
2015-03-21 03:43:18 +00:00
if (!global->autosave[i])
2015-01-14 21:19:15 +00:00
RARCH_WARN(RETRO_LOG_INIT_AUTOSAVE_FAILED);
2011-02-10 20:16:59 +00:00
}
}
static void deinit_autosave(void)
2011-02-10 20:16:59 +00:00
{
unsigned i;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-01-11 01:21:18 +00:00
2015-03-21 03:43:18 +00:00
for (i = 0; i < global->num_autosave; i++)
autosave_free(global->autosave[i]);
2015-03-21 03:43:18 +00:00
if (global->autosave)
free(global->autosave);
global->autosave = NULL;
2015-03-21 03:43:18 +00:00
global->num_autosave = 0;
2011-02-11 12:44:31 +00:00
}
#endif
2011-02-11 12:44:31 +00:00
2011-09-27 13:31:25 +00:00
static void set_savestate_auto_index(void)
{
char state_dir[PATH_MAX_LENGTH], state_base[PATH_MAX_LENGTH];
size_t i;
struct string_list *dir_list = NULL;
2015-03-22 06:28:45 +00:00
unsigned max_idx = 0;
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2014-08-01 15:49:02 +00:00
2015-03-20 19:20:33 +00:00
if (!settings->savestate_auto_index)
2011-09-27 13:31:25 +00:00
return;
2015-03-21 03:43:18 +00:00
/* 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.
*/
2011-09-27 13:31:25 +00:00
2015-03-21 03:43:18 +00:00
fill_pathname_basedir(state_dir, global->savestate_name,
sizeof(state_dir));
2015-03-21 03:43:18 +00:00
fill_pathname_base(state_base, global->savestate_name,
sizeof(state_base));
2011-09-27 13:31:25 +00:00
2014-08-02 11:55:05 +00:00
if (!(dir_list = dir_list_new(state_dir, NULL, false)))
2011-09-27 13:31:25 +00:00
return;
for (i = 0; i < dir_list->size; i++)
2011-09-27 13:31:25 +00:00
{
2015-01-11 01:21:18 +00:00
unsigned idx;
char elem_base[PATH_MAX_LENGTH];
2015-03-22 06:28:45 +00:00
const char *end = NULL;
const char *dir_elem = dir_list->elems[i].data;
2012-10-11 20:54:07 +00:00
fill_pathname_base(elem_base, dir_elem, sizeof(elem_base));
if (strstr(elem_base, state_base) != elem_base)
2011-09-27 13:31:25 +00:00
continue;
2015-01-11 01:21:18 +00:00
end = dir_elem + strlen(dir_elem);
while ((end > dir_elem) && isdigit(end[-1]))
end--;
2011-09-27 13:31:25 +00:00
2015-01-11 01:21:18 +00:00
idx = strtoul(end, NULL, 0);
2014-10-20 18:18:04 +00:00
if (idx > max_idx)
max_idx = idx;
2011-09-27 13:31:25 +00:00
}
dir_list_free(dir_list);
2015-03-20 19:20:33 +00:00
settings->state_slot = max_idx;
RARCH_LOG("Found last state slot: #%d\n", settings->state_slot);
2011-09-27 13:31:25 +00:00
}
static void rarch_init_savefile_paths(void)
{
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
rarch_main_command(RARCH_CMD_SAVEFILES_DEINIT);
2015-03-21 03:43:18 +00:00
global->savefiles = string_list_new();
rarch_assert(global->savefiles);
2014-04-04 12:58:42 +00:00
2015-03-21 03:43:18 +00:00
if (*global->subsystem)
{
2014-09-02 01:21:33 +00:00
/* For subsystems, we know exactly which RAM types are supported. */
2014-08-02 09:48:42 +00:00
unsigned i, j;
const struct retro_subsystem_info *info =
2014-12-15 17:50:04 +00:00
libretro_find_subsystem_info(
2015-03-21 03:43:18 +00:00
global->system.special, global->system.num_special,
global->subsystem);
2012-01-06 19:32:30 +00:00
/* We'll handle this error gracefully later. */
unsigned num_content = min(info ? info->num_roms : 0,
2015-03-21 03:43:18 +00:00
global->subsystem_fullpaths ?
global->subsystem_fullpaths->size : 0);
2015-03-21 03:43:18 +00:00
bool use_sram_dir = path_is_directory(global->savefile_name);
2012-01-06 19:32:30 +00:00
2014-07-28 17:47:12 +00:00
for (i = 0; i < num_content; i++)
2014-04-04 12:58:42 +00:00
{
for (j = 0; j < info->roms[i].num_memory; j++)
2012-01-06 19:32:30 +00:00
{
2014-04-04 12:58:42 +00:00
union string_list_elem_attr attr;
char path[PATH_MAX_LENGTH], ext[32];
const struct retro_subsystem_memory_info *mem =
(const struct retro_subsystem_memory_info*)
&info->roms[i].memory[j];
2012-01-06 19:32:30 +00:00
2014-04-04 12:58:42 +00:00
snprintf(ext, sizeof(ext), ".%s", mem->extension);
2012-01-06 19:32:30 +00:00
2014-04-04 12:58:42 +00:00
if (use_sram_dir)
{
/* Redirect content fullpath to save directory. */
2015-03-21 03:43:18 +00:00
strlcpy(path, global->savefile_name, sizeof(path));
fill_pathname_dir(path,
2015-03-21 03:43:18 +00:00
global->subsystem_fullpaths->elems[i].data, ext,
2014-04-04 12:58:42 +00:00
sizeof(path));
}
else
{
2015-03-21 03:43:18 +00:00
fill_pathname(path, global->subsystem_fullpaths->elems[i].data,
2014-04-04 12:58:42 +00:00
ext, sizeof(path));
}
2012-01-06 19:32:30 +00:00
2014-04-04 12:58:42 +00:00
attr.i = mem->type;
2015-03-21 03:43:18 +00:00
string_list_append(global->savefiles, path, attr);
2012-01-06 19:32:30 +00:00
}
2014-04-04 12:58:42 +00:00
}
2012-01-06 19:32:30 +00:00
/* Let other relevant paths be inferred from the main SRAM location. */
2015-03-21 03:43:18 +00:00
if (!global->has_set_save_path)
fill_pathname_noext(global->savefile_name, global->basename, ".srm",
sizeof(global->savefile_name));
if (path_is_directory(global->savefile_name))
2014-04-04 12:58:42 +00:00
{
2015-03-21 03:43:18 +00:00
fill_pathname_dir(global->savefile_name, global->basename, ".srm",
sizeof(global->savefile_name));
RARCH_LOG("Redirecting save file to \"%s\".\n",
2015-03-21 03:43:18 +00:00
global->savefile_name);
2014-04-04 12:58:42 +00:00
}
}
else
{
char savefile_name_rtc[PATH_MAX_LENGTH];
2014-04-04 12:58:42 +00:00
union string_list_elem_attr attr;
2014-04-04 12:58:42 +00:00
attr.i = RETRO_MEMORY_SAVE_RAM;
2015-03-21 03:43:18 +00:00
string_list_append(global->savefiles, global->savefile_name, attr);
/* Infer .rtc save path from save ram path. */
2014-04-04 12:58:42 +00:00
attr.i = RETRO_MEMORY_RTC;
fill_pathname(savefile_name_rtc,
2015-03-21 03:43:18 +00:00
global->savefile_name, ".rtc", sizeof(savefile_name_rtc));
string_list_append(global->savefiles, savefile_name_rtc, attr);
}
}
static void fill_pathnames(void)
{
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
rarch_init_savefile_paths();
2015-03-21 03:43:18 +00:00
fill_pathname(global->bsv.movie_path, global->savefile_name, "",
sizeof(global->bsv.movie_path));
2015-03-21 03:43:18 +00:00
if (!*global->basename)
2015-01-14 21:19:15 +00:00
return;
2015-03-21 03:43:18 +00:00
if (!*global->ups_name)
fill_pathname_noext(global->ups_name, global->basename, ".ups",
sizeof(global->ups_name));
if (!*global->bps_name)
fill_pathname_noext(global->bps_name, global->basename, ".bps",
sizeof(global->bps_name));
if (!*global->ips_name)
fill_pathname_noext(global->ips_name, global->basename, ".ips",
sizeof(global->ips_name));
}
2012-04-01 14:57:39 +00:00
static void load_auto_state(void)
{
2015-03-22 07:39:26 +00:00
bool ret;
2015-01-14 21:19:15 +00:00
char msg[PATH_MAX_LENGTH];
char savestate_name_auto[PATH_MAX_LENGTH];
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
#ifdef HAVE_NETPLAY
2015-03-21 03:43:18 +00:00
if (global->netplay_enable && !global->netplay_is_spectate)
return;
#endif
2015-03-20 19:20:33 +00:00
if (!settings->savestate_auto_load)
2013-01-24 18:24:40 +00:00
return;
2015-03-21 03:43:18 +00:00
fill_pathname_noext(savestate_name_auto, global->savestate_name,
2012-04-01 14:57:39 +00:00
".auto", sizeof(savestate_name_auto));
2015-01-14 21:19:15 +00:00
if (!path_file_exists(savestate_name_auto))
return;
2012-04-01 14:57:39 +00:00
2015-01-14 21:19:15 +00:00
ret = load_state(savestate_name_auto);
2014-08-02 09:48:42 +00:00
2015-01-14 21:19:15 +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");
rarch_main_msg_queue_push(msg, 1, 180, false);
2015-01-14 21:19:15 +00:00
RARCH_LOG("%s\n", msg);
2012-04-01 14:57:39 +00:00
}
2014-08-02 03:13:10 +00:00
static bool save_auto_state(void)
2012-06-02 19:33:37 +00:00
{
2015-01-14 21:19:15 +00:00
bool ret;
char savestate_name_auto[PATH_MAX_LENGTH];
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
2015-03-21 03:43:18 +00:00
if (!settings->savestate_auto_save || global->libretro_dummy ||
global->libretro_no_content)
2014-08-02 03:13:10 +00:00
return false;
2015-03-21 03:43:18 +00:00
fill_pathname_noext(savestate_name_auto, global->savestate_name,
2012-06-02 19:33:37 +00:00
".auto", sizeof(savestate_name_auto));
2015-01-14 21:19:15 +00:00
ret = save_state(savestate_name_auto);
RARCH_LOG("Auto save state to \"%s\" %s.\n", savestate_name_auto, ret ?
"succeeded" : "failed");
2014-08-02 03:13:10 +00:00
return true;
2012-06-02 19:33:37 +00:00
}
2015-01-14 02:21:04 +00:00
/**
* rarch_load_state
* @path : Path to state.
* @msg : Message.
* @sizeof_msg : Size of @msg.
*
* Loads a state with path being @path.
**/
static void rarch_load_state(const char *path,
char *msg, size_t sizeof_msg)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-01-14 02:21:04 +00:00
if (!load_state(path))
{
2015-01-14 02:21:04 +00:00
snprintf(msg, sizeof_msg,
"Failed to load state from \"%s\".", path);
return;
}
2015-01-14 02:21:04 +00:00
2015-03-20 19:20:33 +00:00
if (settings->state_slot < 0)
2015-01-14 02:21:04 +00:00
snprintf(msg, sizeof_msg,
"Loaded state from slot #-1 (auto).");
else
snprintf(msg, sizeof_msg,
2015-03-20 19:20:33 +00:00
"Loaded state from slot #%d.", settings->state_slot);
}
2015-01-14 02:21:04 +00:00
/**
* rarch_save_state
* @path : Path to state.
* @msg : Message.
* @sizeof_msg : Size of @msg.
*
* Saves a state with path being @path.
**/
static void rarch_save_state(const char *path,
char *msg, size_t sizeof_msg)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-01-14 02:21:04 +00:00
if (!save_state(path))
{
2015-01-14 02:21:04 +00:00
snprintf(msg, sizeof_msg,
"Failed to save state to \"%s\".", path);
return;
}
2015-01-14 02:21:04 +00:00
2015-03-20 19:20:33 +00:00
if (settings->state_slot < 0)
2015-01-14 02:21:04 +00:00
snprintf(msg, sizeof_msg,
"Saved state to slot #-1 (auto).");
else
snprintf(msg, sizeof_msg,
2015-03-20 19:20:33 +00:00
"Saved state to slot #%d.", settings->state_slot);
}
static void main_state(unsigned cmd)
{
char path[PATH_MAX_LENGTH], msg[PATH_MAX_LENGTH];
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-20 19:20:33 +00:00
if (settings->state_slot > 0)
snprintf(path, sizeof(path), "%s%d",
2015-03-21 03:43:18 +00:00
global->savestate_name, settings->state_slot);
2015-03-20 19:20:33 +00:00
else if (settings->state_slot < 0)
snprintf(path, sizeof(path), "%s.auto",
2015-03-21 03:43:18 +00:00
global->savestate_name);
else
2015-03-21 03:43:18 +00:00
strlcpy(path, global->savestate_name, sizeof(path));
2014-08-01 22:32:56 +00:00
if (pretro_serialize_size())
{
if (cmd == RARCH_CMD_SAVE_STATE)
rarch_save_state(path, msg, sizeof(msg));
else if (cmd == RARCH_CMD_LOAD_STATE)
rarch_load_state(path, msg, sizeof(msg));
}
else
strlcpy(msg, "Core does not support save states.", sizeof(msg));
rarch_main_msg_queue_push(msg, 2, 180, true);
RARCH_LOG("%s\n", msg);
}
2015-01-10 22:23:01 +00:00
/**
* rarch_disk_control_append_image:
* @path : Path to disk image.
*
* Appends disk image to disk image list.
**/
2013-04-27 13:14:59 +00:00
void rarch_disk_control_append_image(const char *path)
{
char msg[PATH_MAX_LENGTH];
2014-10-20 18:18:04 +00:00
unsigned new_idx;
2015-03-22 06:28:45 +00:00
struct retro_game_info info = {0};
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
const struct retro_disk_control_callback *control =
2015-03-21 03:43:18 +00:00
(const struct retro_disk_control_callback*)&global->system.disk_control;
2015-03-22 06:28:45 +00:00
2013-04-27 13:14:59 +00:00
rarch_disk_control_set_eject(true, false);
control->add_image_index();
2014-10-20 18:18:04 +00:00
new_idx = control->get_num_images();
if (!new_idx)
2013-04-27 13:14:59 +00:00
return;
2014-10-20 18:18:04 +00:00
new_idx--;
2013-04-27 13:14:59 +00:00
info.path = path;
2014-10-20 18:18:04 +00:00
control->replace_image_index(new_idx, &info);
2013-04-27 13:14:59 +00:00
snprintf(msg, sizeof(msg), "Appended disk: %s", path);
RARCH_LOG("%s\n", msg);
rarch_main_msg_queue_push(msg, 0, 180, true);
2013-04-27 13:14:59 +00:00
rarch_main_command(RARCH_CMD_AUTOSAVE_DEINIT);
2013-04-27 13:14:59 +00:00
/* TODO: Need to figure out what to do with subsystems case. */
2015-03-21 03:43:18 +00:00
if (!*global->subsystem)
2014-04-04 12:58:42 +00:00
{
/* Update paths for our new image.
2014-09-02 00:02:25 +00:00
* 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. */
2014-04-04 12:58:42 +00:00
set_paths(path);
fill_pathnames();
2014-04-04 12:58:42 +00:00
}
2013-04-27 13:14:59 +00:00
rarch_main_command(RARCH_CMD_AUTOSAVE_INIT);
2013-04-27 13:14:59 +00:00
rarch_disk_control_set_eject(false, false);
}
2015-01-10 22:23:01 +00:00
/**
* rarch_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.
**/
void rarch_disk_control_set_eject(bool new_state, bool print_log)
{
char msg[PATH_MAX_LENGTH];
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
const struct retro_disk_control_callback *control =
2015-03-21 03:43:18 +00:00
(const struct retro_disk_control_callback*)&global->system.disk_control;
2014-08-02 09:48:42 +00:00
bool error = false;
if (!control->get_num_images)
return;
*msg = '\0';
2013-04-27 10:01:34 +00:00
if (control->set_eject_state(new_state))
snprintf(msg, sizeof(msg), "%s virtual disk tray.",
new_state ? "Ejected" : "Closed");
2013-04-27 10:01:34 +00:00
else
{
2013-04-27 10:01:34 +00:00
error = true;
snprintf(msg, sizeof(msg), "Failed to %s virtual disk tray.",
new_state ? "eject" : "close");
2013-04-27 10:01:34 +00:00
}
if (*msg)
{
if (error)
RARCH_ERR("%s\n", msg);
else
2013-04-27 10:01:34 +00:00
RARCH_LOG("%s\n", msg);
/* Only noise in menu. */
if (print_log)
rarch_main_msg_queue_push(msg, 1, 180, true);
}
2013-04-27 10:01:34 +00:00
}
2015-01-10 22:23:01 +00:00
/**
* rarch_disk_control_set_index:
* @idx : Index of disk to set as current.
2015-01-10 22:23:01 +00:00
*
* Sets current disk to @index.
**/
void rarch_disk_control_set_index(unsigned idx)
2013-04-27 10:01:34 +00:00
{
char msg[PATH_MAX_LENGTH];
2014-08-02 09:48:42 +00:00
unsigned num_disks;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
const struct retro_disk_control_callback *control =
2015-03-21 03:43:18 +00:00
(const struct retro_disk_control_callback*)&global->system.disk_control;
2014-08-02 09:48:42 +00:00
bool error = false;
2013-04-27 10:01:34 +00:00
if (!control->get_num_images)
return;
*msg = '\0';
2014-08-02 09:48:42 +00:00
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
strlcpy(msg, "Removed disk from tray.", sizeof(msg));
2013-04-27 10:01:34 +00:00
}
else
{
if (idx < num_disks)
snprintf(msg, sizeof(msg), "Failed to set disk %u of %u.",
idx + 1, num_disks);
2013-04-27 10:01:34 +00:00
else
strlcpy(msg, "Failed to remove disk from tray.", sizeof(msg));
2013-04-27 10:01:34 +00:00
error = true;
}
if (*msg)
{
if (error)
RARCH_ERR("%s\n", msg);
else
RARCH_LOG("%s\n", msg);
rarch_main_msg_queue_push(msg, 1, 180, true);
}
2013-04-27 10:01:34 +00:00
}
2015-01-14 02:17:55 +00:00
/**
* check_disk_eject:
* @control : Handle to disk control handle.
*
* Perform disk eject (Core Disk Options).
**/
static void check_disk_eject(
const struct retro_disk_control_callback *control)
2013-03-29 17:53:07 +00:00
{
bool new_state = !control->get_eject_state();
rarch_disk_control_set_eject(new_state, true);
}
2013-03-29 17:53:07 +00:00
2015-01-14 02:17:55 +00:00
/**
* check_disk_next:
* @control : Handle to disk control handle.
*
* Perform disk cycle to next index action (Core Disk Options).
**/
static void check_disk_next(
const struct retro_disk_control_callback *control)
{
unsigned num_disks = control->get_num_images();
unsigned current = control->get_image_index();
bool disk_next_enable = num_disks && num_disks != UINT_MAX;
if (!disk_next_enable)
2013-03-29 17:53:07 +00:00
{
RARCH_ERR("Got invalid disk index from libretro.\n");
2015-01-14 21:19:15 +00:00
return;
}
if (current < num_disks - 1)
current++;
rarch_disk_control_set_index(current);
}
2015-01-14 02:17:55 +00:00
/**
* check_disk_prev:
* @control : Handle to disk control handle.
*
* Perform disk cycle to previous index action (Core Disk Options).
**/
static void check_disk_prev(
const struct retro_disk_control_callback *control)
{
unsigned num_disks = control->get_num_images();
unsigned current = control->get_image_index();
bool disk_prev_enable = num_disks && num_disks != UINT_MAX;
2015-01-14 21:19:15 +00:00
if (!disk_prev_enable)
{
RARCH_ERR("Got invalid disk index from libretro.\n");
2015-01-14 21:19:15 +00:00
return;
}
if (current > 0)
current--;
rarch_disk_control_set_index(current);
2013-03-29 17:53:07 +00:00
}
2015-03-22 06:28:45 +00:00
static bool init_state(void)
2011-08-26 15:32:04 +00:00
{
2015-03-22 06:28:45 +00:00
driver_t *driver = driver_get_ptr();
if (!driver)
return false;
driver->video_active = true;
driver->audio_active = true;
2015-03-22 06:28:45 +00:00
return true;
}
2015-01-14 02:04:44 +00:00
/**
* free_temporary_content:
*
* Frees temporary content handle.
**/
static void free_temporary_content(void)
2010-10-01 19:39:15 +00:00
{
2014-08-01 21:59:05 +00:00
unsigned i;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
for (i = 0; i < global->temporary_content->size; i++)
{
2015-03-21 03:43:18 +00:00
const char *path = global->temporary_content->elems[i].data;
2014-08-01 21:59:05 +00:00
RARCH_LOG("Removing temporary content file: %s.\n", path);
if (remove(path) < 0)
RARCH_ERR("Failed to remove temporary file: %s.\n", path);
}
2015-03-21 03:43:18 +00:00
string_list_free(global->temporary_content);
}
static void main_clear_state_drivers(void)
{
global_t *global = global_get_ptr();
2015-03-21 23:29:30 +00:00
bool inited = false;
if (!global)
return;
inited = global->main_is_init;
if (!inited)
return;
2015-03-18 04:35:05 +00:00
rarch_main_command(RARCH_CMD_DRIVERS_DEINIT);
rarch_main_command(RARCH_CMD_DRIVERS_INIT);
}
static void main_init_state_config(void)
{
unsigned i;
settings_t *settings = config_get_ptr();
if (!settings)
return;
for (i = 0; i < MAX_USERS; i++)
settings->input.libretro_device[i] = RETRO_DEVICE_JOYPAD;
}
2015-03-22 02:32:28 +00:00
void rarch_main_alloc(void)
{
settings_t *settings = config_get_ptr();
2015-03-21 00:47:06 +00:00
if (settings)
config_free();
settings = config_init();
if (!settings)
return;
rarch_main_command(RARCH_CMD_HISTORY_DEINIT);
2014-08-01 21:59:05 +00:00
rarch_main_clear_state();
rarch_main_data_clear_state();
}
2015-03-21 18:43:46 +00:00
/**
2015-03-22 02:32:28 +00:00
* rarch_main_new:
2015-03-21 18:43:46 +00:00
*
* Will teardown drivers and clears all
* internal state of RetroArch.
* If @inited is true, will initialize all
* drivers again after teardown.
**/
2015-03-22 02:32:28 +00:00
void rarch_main_new(void)
{
main_clear_state_drivers();
2015-03-21 18:43:46 +00:00
init_state();
main_init_state_config();
2015-03-21 03:43:18 +00:00
2014-10-03 09:59:24 +00:00
rarch_main_command(RARCH_CMD_MSG_QUEUE_INIT);
}
2011-08-26 15:32:04 +00:00
2015-03-22 02:32:28 +00:00
void rarch_main_free(void)
{
2014-10-03 09:59:24 +00:00
rarch_main_command(RARCH_CMD_MSG_QUEUE_DEINIT);
rarch_main_command(RARCH_CMD_LOG_FILE_DEINIT);
rarch_main_command(RARCH_CMD_DRIVERS_DEINIT);
2015-03-22 02:41:20 +00:00
rarch_main_state_free();
rarch_main_global_free();
2015-03-21 18:43:46 +00:00
config_free();
}
#ifdef HAVE_ZLIB
#define DEFAULT_EXT "zip"
#else
#define DEFAULT_EXT ""
#endif
2014-09-02 00:55:43 +00:00
static void init_system_info(void)
2012-04-07 09:55:37 +00:00
{
2015-03-22 06:28:45 +00:00
global_t *global = global_get_ptr();
struct retro_system_info *info = (struct retro_system_info*)
2015-03-22 06:28:45 +00:00
global ? &global->system.info : NULL;
2015-01-11 01:21:18 +00:00
2012-04-07 10:17:40 +00:00
pretro_get_system_info(info);
2012-04-07 09:55:37 +00:00
if (!info->library_name)
info->library_name = "Unknown";
if (!info->library_version)
info->library_version = "v0";
#ifdef RARCH_CONSOLE
2015-03-21 03:43:18 +00:00
snprintf(global->title_buf, sizeof(global->title_buf), "%s %s",
info->library_name, info->library_version);
#else
2015-03-21 03:43:18 +00:00
snprintf(global->title_buf, sizeof(global->title_buf),
RETRO_FRONTEND " : %s %s",
2012-04-07 09:55:37 +00:00
info->library_name, info->library_version);
#endif
2015-03-21 03:43:18 +00:00
strlcpy(global->system.valid_extensions, info->valid_extensions ?
info->valid_extensions : DEFAULT_EXT,
2015-03-21 03:43:18 +00:00
sizeof(global->system.valid_extensions));
global->system.block_extract = info->block_extract;
2012-04-07 09:55:37 +00:00
}
2015-01-14 02:04:44 +00:00
/*
* verify_api_version:
*
* Compare libretro core API version against API version
* used by RetroArch.
*
* TODO - when libretro v2 gets added, allow for switching
* between libretro version backend dynamically.
**/
2012-04-07 09:55:37 +00:00
static void verify_api_version(void)
{
2015-01-11 01:21:18 +00:00
2012-04-21 21:25:32 +00:00
RARCH_LOG("Version of libretro API: %u\n", pretro_api_version());
RARCH_LOG("Compiled against API: %u\n", RETRO_API_VERSION);
2015-01-11 01:21:18 +00:00
2012-04-07 09:55:37 +00:00
if (pretro_api_version() != RETRO_API_VERSION)
2014-09-02 00:02:25 +00:00
RARCH_WARN(RETRO_LOG_LIBRETRO_ABI_BREAK);
2012-04-07 09:55:37 +00:00
}
2015-01-11 01:21:18 +00:00
#define FAIL_CPU(simd_type) do { \
RARCH_ERR(simd_type " code is compiled in, but CPU does not support this feature. Cannot continue.\n"); \
rarch_fail(1, "validate_cpu_features()"); \
} while(0)
2015-01-14 02:04:44 +00:00
/* validate_cpu_features:
*
* Validates CPU features for given processor architecture.
*
* Make sure we haven't compiled for something we cannot run.
2014-09-19 05:53:03 +00:00
* Ideally, code would get swapped out depending on CPU support,
* but this will do for now.
*/
2012-11-01 21:31:24 +00:00
static void validate_cpu_features(void)
{
uint64_t cpu = rarch_get_cpu_features();
2013-12-19 02:45:17 +00:00
(void)cpu;
2012-11-01 21:31:24 +00:00
2012-11-02 20:25:54 +00:00
#ifdef __SSE__
if (!(cpu & RETRO_SIMD_SSE))
2012-11-02 20:25:54 +00:00
FAIL_CPU("SSE");
#endif
2012-11-01 21:31:24 +00:00
#ifdef __SSE2__
if (!(cpu & RETRO_SIMD_SSE2))
2012-11-02 20:25:54 +00:00
FAIL_CPU("SSE2");
2012-11-01 21:31:24 +00:00
#endif
#ifdef __AVX__
if (!(cpu & RETRO_SIMD_AVX))
2012-11-02 20:25:54 +00:00
FAIL_CPU("AVX");
2012-11-01 21:31:24 +00:00
#endif
}
2015-01-14 02:04:44 +00:00
/**
* init_system_av_info:
*
* Initialize system A/V information by calling the libretro core's
* get_system_av_info function.
**/
static void init_system_av_info(void)
{
2015-03-18 05:47:22 +00:00
runloop_t *runloop = rarch_main_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-18 05:47:22 +00:00
2015-03-21 03:43:18 +00:00
pretro_get_system_av_info(&global->system.av_info);
2015-03-18 05:47:22 +00:00
runloop->frames.limit.last_time = rarch_get_time_usec();
}
2015-03-24 13:32:42 +00:00
static void deinit_core(bool reinit)
2014-08-02 12:26:11 +00:00
{
pretro_unload_game();
pretro_deinit();
2015-03-24 13:32:42 +00:00
if (reinit)
rarch_main_command(RARCH_CMD_DRIVERS_DEINIT);
2014-08-02 12:26:11 +00:00
uninit_libretro_sym();
}
2015-01-13 02:26:40 +00:00
static bool init_content(void)
{
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-01-13 02:26:40 +00:00
/* No content to be loaded for dummy core,
* just successfully exit. */
2015-03-21 03:43:18 +00:00
if (global->libretro_dummy)
2015-01-13 02:26:40 +00:00
return true;
2015-03-21 03:43:18 +00:00
if (!global->libretro_no_content)
2015-01-13 02:26:40 +00:00
fill_pathnames();
2015-01-13 02:26:40 +00:00
if (!init_content_file())
return false;
2015-03-21 03:43:18 +00:00
if (global->libretro_no_content)
2015-01-14 21:19:15 +00:00
return true;
2015-01-14 21:19:15 +00:00
set_savestate_auto_index();
2015-01-14 21:19:15 +00:00
if (load_save_files())
RARCH_LOG("Skipping SRAM load.\n");
2015-01-14 21:19:15 +00:00
load_auto_state();
rarch_main_command(RARCH_CMD_BSV_MOVIE_INIT);
rarch_main_command(RARCH_CMD_NETPLAY_INIT);
2015-01-13 02:26:40 +00:00
return true;
}
2015-01-13 02:26:40 +00:00
static bool init_core(void)
{
driver_t *driver = driver_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-01-13 02:26:40 +00:00
verify_api_version();
pretro_init();
2015-03-21 03:43:18 +00:00
global->use_sram = !global->libretro_dummy &&
!global->libretro_no_content;
2015-01-13 02:26:40 +00:00
if (!init_content())
return false;
retro_init_libretro_cbs(&driver->retro_ctx);
init_system_av_info();
return true;
}
2015-01-11 01:21:18 +00:00
/**
* rarch_main_init:
* @argc : Count of (commandline) arguments.
* @argv : (Commandline) arguments.
*
* Initializes RetroArch.
*
* Returns: 0 on success, otherwise 1 if there was an error.
**/
2012-04-21 21:25:32 +00:00
int rarch_main_init(int argc, char *argv[])
{
2014-08-02 09:48:42 +00:00
int sjlj_ret;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2014-08-02 09:48:42 +00:00
init_state();
2011-12-25 20:39:58 +00:00
2015-03-21 03:43:18 +00:00
if ((sjlj_ret = setjmp(global->error_sjlj_context)) > 0)
{
2015-03-21 03:43:18 +00:00
RARCH_ERR("Fatal error received in: \"%s\"\n", global->error_string);
return sjlj_ret;
}
2015-03-21 03:43:18 +00:00
global->error_in_init = true;
2012-05-03 22:14:42 +00:00
parse_input(argc, argv);
2015-03-21 03:43:18 +00:00
if (global->verbosity)
2011-12-25 20:39:58 +00:00
{
RARCH_LOG_OUTPUT("=== Build =======================================");
2011-12-25 20:39:58 +00:00
print_compiler(stderr);
RARCH_LOG_OUTPUT("Version: %s\n", PACKAGE_VERSION);
#ifdef HAVE_GIT_VERSION
RARCH_LOG_OUTPUT("Git: %s\n", rarch_git_version);
#endif
RARCH_LOG_OUTPUT("=================================================\n");
2011-12-25 20:39:58 +00:00
}
2012-11-01 21:31:24 +00:00
validate_cpu_features();
2012-01-28 14:47:02 +00:00
config_load();
2010-12-30 12:54:49 +00:00
2015-03-21 03:43:18 +00:00
init_libretro_sym(global->libretro_dummy);
2014-09-02 00:55:43 +00:00
init_system_info();
2012-04-07 09:55:37 +00:00
init_drivers_pre();
if (!rarch_main_command(RARCH_CMD_CORE_INIT))
goto error;
2010-10-01 19:39:15 +00:00
rarch_main_command(RARCH_CMD_DRIVERS_INIT);
rarch_main_command(RARCH_CMD_COMMAND_INIT);
rarch_main_command(RARCH_CMD_REWIND_INIT);
2014-10-03 09:59:24 +00:00
rarch_main_command(RARCH_CMD_CONTROLLERS_INIT);
2014-10-03 09:33:58 +00:00
rarch_main_command(RARCH_CMD_RECORD_INIT);
2014-10-03 09:59:24 +00:00
rarch_main_command(RARCH_CMD_CHEATS_INIT);
2015-01-24 22:42:31 +00:00
rarch_main_command(RARCH_CMD_REMAPPING_INIT);
rarch_main_command(RARCH_CMD_SAVEFILES_INIT);
#if defined(GEKKO) && defined(HW_RVL)
{
2015-03-21 00:04:58 +00:00
settings_t *settings = config_get_ptr();
if (settings)
{
rarch_main_command(RARCH_CMD_VIDEO_SET_ASPECT_RATIO);
video_driver_set_aspect_ratio(settings->video.aspect_ratio_idx);
}
}
#endif
2015-03-21 03:43:18 +00:00
global->error_in_init = false;
global->main_is_init = true;
return 0;
2011-08-13 02:09:08 +00:00
error:
rarch_main_command(RARCH_CMD_CORE_DEINIT);
2010-05-26 19:27:37 +00:00
2015-03-21 03:43:18 +00:00
global->main_is_init = false;
return 1;
}
2015-01-11 01:21:18 +00:00
/**
* rarch_main_init_wrap:
* @args : Input arguments.
* @argc : Count of arguments.
* @argv : Arguments.
*
* Generates an @argc and @argv pair based on @args
* of type rarch_main_wrap.
**/
void rarch_main_init_wrap(const struct rarch_main_wrap *args,
int *argc, char **argv)
{
*argc = 0;
argv[(*argc)++] = strdup("retroarch");
if (!args->no_content)
{
if (args->content_path)
{
RARCH_LOG("Using content: %s.\n", args->content_path);
argv[(*argc)++] = strdup(args->content_path);
}
else
{
RARCH_LOG("No content, starting dummy core.\n");
argv[(*argc)++] = strdup("--menu");
}
}
if (args->sram_path)
{
argv[(*argc)++] = strdup("-s");
argv[(*argc)++] = strdup(args->sram_path);
}
if (args->state_path)
{
argv[(*argc)++] = strdup("-S");
argv[(*argc)++] = strdup(args->state_path);
}
if (args->config_path)
{
argv[(*argc)++] = strdup("-c");
argv[(*argc)++] = strdup(args->config_path);
}
#ifdef HAVE_DYNAMIC
if (args->libretro_path)
{
argv[(*argc)++] = strdup("-L");
argv[(*argc)++] = strdup(args->libretro_path);
}
#endif
if (args->verbose)
argv[(*argc)++] = strdup("-v");
#ifdef HAVE_FILE_LOGGER
for (i = 0; i < *argc; i++)
RARCH_LOG("arg #%d: %s\n", i, argv[i]);
#endif
}
void rarch_main_set_state(unsigned cmd)
{
2015-03-20 19:20:33 +00:00
runloop_t *runloop = rarch_main_get_ptr();
driver_t *driver = driver_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-18 05:47:22 +00:00
switch (cmd)
{
case RARCH_ACTION_STATE_MENU_RUNNING:
#ifdef HAVE_MENU
2015-02-13 22:30:10 +00:00
{
menu_handle_t *menu = menu_driver_get_ptr();
2015-02-13 22:30:10 +00:00
if (!menu)
return;
2015-03-22 05:02:02 +00:00
menu_driver_toggle(true);
2015-02-13 22:30:10 +00:00
/* Menu should always run with vsync on. */
rarch_main_command(RARCH_CMD_VIDEO_SET_BLOCKING_STATE);
/* Stop all rumbling before entering the menu. */
rarch_main_command(RARCH_CMD_RUMBLE_STOP);
2014-09-21 04:33:49 +00:00
2015-03-20 19:20:33 +00:00
if (settings->menu.pause_libretro)
2015-02-13 22:30:10 +00:00
rarch_main_command(RARCH_CMD_AUDIO_STOP);
2014-09-21 04:33:49 +00:00
2015-02-13 22:30:10 +00:00
/* Override keyboard callback to redirect to menu instead.
* We'll use this later for something ...
* FIXME: This should probably be moved to menu_common somehow. */
2015-03-21 03:43:18 +00:00
global->frontend_key_event = global->system.key_event;
global->system.key_event = menu_input_key_event;
2014-09-21 04:33:49 +00:00
2015-02-13 22:30:10 +00:00
menu->need_refresh = true;
2015-03-21 03:43:18 +00:00
global->system.frame_time_last = 0;
2015-03-18 05:47:22 +00:00
runloop->is_menu = true;
2015-02-13 22:30:10 +00:00
}
#endif
break;
case RARCH_ACTION_STATE_LOAD_CONTENT:
2014-09-21 04:50:10 +00:00
#ifdef HAVE_MENU
/* If content loading fails, we go back to menu. */
2015-01-10 05:09:30 +00:00
if (!menu_load_content())
rarch_main_set_state(RARCH_ACTION_STATE_MENU_RUNNING);
2014-09-21 04:50:10 +00:00
#endif
if (driver->frontend_ctx && driver->frontend_ctx->content_loaded)
driver->frontend_ctx->content_loaded();
break;
case RARCH_ACTION_STATE_MENU_RUNNING_FINISHED:
#ifdef HAVE_MENU
2015-01-10 05:37:27 +00:00
menu_apply_deferred_settings();
2015-03-22 05:02:02 +00:00
menu_driver_toggle(false);
2015-03-18 05:47:22 +00:00
runloop->is_menu = false;
driver_set_nonblock_state(driver->nonblock_state);
if (settings && settings->menu.pause_libretro)
rarch_main_command(RARCH_CMD_AUDIO_START);
/* Prevent stray input from going to libretro core */
driver->flushing_input = true;
/* Restore libretro keyboard callback. */
2015-03-21 03:43:18 +00:00
global->system.key_event = global->frontend_key_event;
#endif
video_driver_set_texture_enable(false, false);
break;
case RARCH_ACTION_STATE_QUIT:
2015-03-21 03:43:18 +00:00
global->system.shutdown = true;
2014-09-03 16:46:17 +00:00
rarch_main_set_state(RARCH_ACTION_STATE_MENU_RUNNING_FINISHED);
break;
2014-09-12 03:14:43 +00:00
case RARCH_ACTION_STATE_FORCE_QUIT:
2015-03-21 03:43:18 +00:00
global->lifecycle_state = 0;
2014-09-12 03:14:43 +00:00
rarch_main_set_state(RARCH_ACTION_STATE_QUIT);
break;
case RARCH_ACTION_STATE_NONE:
default:
break;
}
}
2015-01-11 01:21:18 +00:00
/**
* 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 save_core_config(void)
{
char config_dir[PATH_MAX_LENGTH], config_name[PATH_MAX_LENGTH],
config_path[PATH_MAX_LENGTH], msg[PATH_MAX_LENGTH];
2015-03-22 06:28:45 +00:00
bool ret = false;
bool found_path = false;
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
*config_dir = '\0';
2015-03-20 19:20:33 +00:00
if (*settings->menu_config_directory)
strlcpy(config_dir, settings->menu_config_directory,
sizeof(config_dir));
2015-03-21 03:43:18 +00:00
else if (*global->config_path) /* Fallback */
fill_pathname_basedir(config_dir, global->config_path,
sizeof(config_dir));
else
{
const char *message = "Config directory not set. Cannot save new config.";
rarch_main_msg_queue_push(message, 1, 180, true);
RARCH_ERR("%s\n", message);
return false;
}
/* Infer file name based on libretro core. */
2015-03-20 19:20:33 +00:00
if (*settings->libretro && path_file_exists(settings->libretro))
{
unsigned i;
/* In case of collision, find an alternative name. */
for (i = 0; i < 16; i++)
{
char tmp[64];
2015-01-11 01:21:18 +00:00
2015-03-20 19:20:33 +00:00
fill_pathname_base(config_name, settings->libretro,
sizeof(config_name));
path_remove_extension(config_name);
fill_pathname_join(config_path, config_dir, config_name,
sizeof(config_path));
*tmp = '\0';
if (i)
snprintf(tmp, sizeof(tmp), "-%u.cfg", i);
else
strlcpy(tmp, ".cfg", sizeof(tmp));
strlcat(config_path, tmp, sizeof(config_path));
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));
}
if ((ret = config_save_file(config_path)))
{
2015-03-21 03:43:18 +00:00
strlcpy(global->config_path, config_path,
sizeof(global->config_path));
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);
}
rarch_main_msg_queue_push(msg, 1, 180, true);
return ret;
}
2015-03-07 13:48:18 +00:00
static bool rarch_update_system_info(struct retro_system_info *_info,
bool *load_no_content)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
2015-03-07 13:48:18 +00:00
#if defined(HAVE_DYNAMIC)
2015-03-20 19:20:33 +00:00
if (!(*settings->libretro))
2015-03-07 13:48:18 +00:00
return false;
2015-03-20 19:20:33 +00:00
libretro_get_system_info(settings->libretro, _info,
2015-03-07 13:48:18 +00:00
load_no_content);
#endif
2015-03-21 03:43:18 +00:00
if (!global->core_info)
2015-03-07 13:48:18 +00:00
return false;
2015-03-21 03:43:18 +00:00
if (!core_info_list_get_info(global->core_info,
global->core_info_current, settings->libretro))
2015-03-07 13:48:18 +00:00
return false;
return true;
}
/**
* set_volume:
* @gain : amount of gain to be applied to current volume level.
*
* Adjusts the current audio volume level.
*
**/
static void set_volume(float gain)
{
char msg[PATH_MAX_LENGTH];
2015-03-22 06:28:45 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
settings->audio.volume += gain;
2015-03-22 06:28:45 +00:00
settings->audio.volume = max(settings->audio.volume, -80.0f);
settings->audio.volume = min(settings->audio.volume, 12.0f);
snprintf(msg, sizeof(msg), "Volume: %.1f dB", settings->audio.volume);
rarch_main_msg_queue_push(msg, 1, 180, true);
RARCH_LOG("%s\n", msg);
global->audio_data.volume_gain = db_to_gain(settings->audio.volume);
}
2015-01-11 01:21:18 +00:00
/**
* rarch_main_command:
* @cmd : Command index.
*
* Performs RetroArch command with index @cmd.
*
* Returns: true (1) on success, otherwise false (0).
**/
bool rarch_main_command(unsigned cmd)
{
2015-03-22 07:39:26 +00:00
unsigned i = 0;
bool boolean = false;
2015-03-20 19:20:33 +00:00
runloop_t *runloop = rarch_main_get_ptr();
driver_t *driver = driver_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-01-10 01:06:51 +00:00
(void)i;
switch (cmd)
{
case RARCH_CMD_LOAD_CONTENT_PERSIST:
#ifdef HAVE_DYNAMIC
rarch_main_command(RARCH_CMD_LOAD_CORE);
#endif
rarch_main_set_state(RARCH_ACTION_STATE_LOAD_CONTENT);
break;
case RARCH_CMD_LOAD_CONTENT:
#ifdef HAVE_DYNAMIC
rarch_main_command(RARCH_CMD_LOAD_CONTENT_PERSIST);
#else
rarch_environment_cb(RETRO_ENVIRONMENT_SET_LIBRETRO_PATH,
2015-03-20 19:20:33 +00:00
(void*)settings->libretro);
rarch_environment_cb(RETRO_ENVIRONMENT_EXEC,
2015-03-21 03:43:18 +00:00
(void*)global->fullpath);
rarch_main_command(RARCH_CMD_QUIT);
2015-03-07 13:54:04 +00:00
#endif
break;
case RARCH_CMD_LOAD_CORE_DEINIT:
#ifdef HAVE_DYNAMIC
2015-03-21 03:43:18 +00:00
libretro_free_system_info(&global->menu.info);
2014-07-22 01:34:28 +00:00
#endif
break;
2015-03-07 13:45:16 +00:00
case RARCH_CMD_LOAD_CORE_PERSIST:
2015-03-07 13:54:04 +00:00
rarch_main_command(RARCH_CMD_LOAD_CORE_DEINIT);
2015-02-13 22:30:10 +00:00
{
2014-07-22 01:34:28 +00:00
#ifdef HAVE_MENU
menu_handle_t *menu = menu_driver_get_ptr();
2015-02-13 22:30:10 +00:00
if (menu)
2015-03-21 03:43:18 +00:00
rarch_update_system_info(&global->menu.info,
2015-02-13 22:30:10 +00:00
&menu->load_no_content);
#endif
2015-03-07 13:45:16 +00:00
}
break;
case RARCH_CMD_LOAD_CORE:
rarch_main_command(RARCH_CMD_LOAD_CORE_PERSIST);
#ifndef HAVE_DYNAMIC
2015-03-07 13:45:16 +00:00
rarch_main_command(RARCH_CMD_QUIT);
2014-07-22 01:12:56 +00:00
#endif
break;
case RARCH_CMD_LOAD_STATE:
/* Immutable - disallow savestate load when
* we absolutely cannot change game state. */
2015-03-21 03:43:18 +00:00
if (global->bsv.movie)
return false;
#ifdef HAVE_NETPLAY
if (driver->netplay_data)
return false;
#endif
main_state(cmd);
break;
2014-10-29 05:26:08 +00:00
case RARCH_CMD_RESIZE_WINDOWED_SCALE:
2015-03-21 03:43:18 +00:00
if (global->pending.windowed_scale == 0)
2015-01-10 01:06:51 +00:00
return false;
2014-10-29 05:26:08 +00:00
2015-03-21 03:43:18 +00:00
settings->video.scale = global->pending.windowed_scale;
2014-10-29 05:26:08 +00:00
2015-03-20 19:20:33 +00:00
if (!settings->video.fullscreen)
2015-01-10 01:06:51 +00:00
rarch_main_command(RARCH_CMD_REINIT);
2015-03-21 03:43:18 +00:00
global->pending.windowed_scale = 0;
2014-10-29 05:26:08 +00:00
break;
2014-10-29 05:00:14 +00:00
case RARCH_CMD_MENU_TOGGLE:
2015-03-18 05:47:22 +00:00
if (runloop->is_menu)
2014-10-29 05:00:14 +00:00
rarch_main_set_state(RARCH_ACTION_STATE_MENU_RUNNING_FINISHED);
else
rarch_main_set_state(RARCH_ACTION_STATE_MENU_RUNNING);
break;
2014-10-03 09:59:24 +00:00
case RARCH_CMD_CONTROLLERS_INIT:
init_controllers();
break;
2014-07-22 01:12:56 +00:00
case RARCH_CMD_RESET:
2014-09-02 00:02:25 +00:00
RARCH_LOG(RETRO_LOG_RESETTING_CONTENT);
rarch_main_msg_queue_push("Reset.", 1, 120, true);
pretro_reset();
2014-10-03 09:59:24 +00:00
/* bSNES since v073r01 resets controllers to JOYPAD
* after a reset, so just enforce it here. */
2014-10-03 09:59:24 +00:00
rarch_main_command(RARCH_CMD_CONTROLLERS_INIT);
2014-07-22 01:12:56 +00:00
break;
case RARCH_CMD_SAVE_STATE:
2015-03-20 19:20:33 +00:00
if (settings->savestate_auto_index)
settings->state_slot++;
main_state(cmd);
break;
case RARCH_CMD_TAKE_SCREENSHOT:
2015-01-11 01:21:18 +00:00
if (!take_screenshot())
return false;
break;
case RARCH_CMD_PREPARE_DUMMY:
2015-02-13 22:30:10 +00:00
{
#ifdef HAVE_MENU
menu_handle_t *menu = menu_driver_get_ptr();
2015-02-13 22:30:10 +00:00
if (menu)
menu->load_no_content = false;
#endif
rarch_main_data_deinit();
*global->fullpath = '\0';
2015-02-13 22:30:10 +00:00
rarch_main_set_state(RARCH_ACTION_STATE_LOAD_CONTENT);
2015-03-21 03:43:18 +00:00
global->system.shutdown = false;
2015-02-13 22:30:10 +00:00
}
break;
2015-03-24 13:32:42 +00:00
case RARCH_CMD_UNLOAD_CORE:
rarch_main_command(RARCH_CMD_PREPARE_DUMMY);
#ifdef HAVE_DYNAMIC
libretro_free_system_info(&global->menu.info);
#endif
2015-03-24 13:32:42 +00:00
break;
case RARCH_CMD_QUIT:
2014-10-16 21:59:49 +00:00
rarch_main_set_state(RARCH_ACTION_STATE_QUIT);
break;
case RARCH_CMD_REINIT:
driver->video_cache_context =
2015-03-21 03:43:18 +00:00
global->system.hw_render_callback.cache_context;
driver->video_cache_context_ack = false;
rarch_main_command(RARCH_CMD_RESET_CONTEXT);
driver->video_cache_context = false;
/* Poll input to avoid possibly stale data to corrupt things. */
2015-03-23 02:17:43 +00:00
input_driver_poll();
#ifdef HAVE_MENU
2015-03-18 05:47:22 +00:00
runloop->frames.video.current.menu.framebuf.dirty = true;
if (runloop->is_menu)
rarch_main_command(RARCH_CMD_VIDEO_SET_BLOCKING_STATE);
#endif
break;
2014-10-03 09:59:24 +00:00
case RARCH_CMD_CHEATS_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->cheat)
cheat_manager_free(global->cheat);
global->cheat = NULL;
2014-10-03 09:59:24 +00:00
break;
case RARCH_CMD_CHEATS_INIT:
rarch_main_command(RARCH_CMD_CHEATS_DEINIT);
init_cheats();
break;
2015-01-24 22:42:31 +00:00
case RARCH_CMD_REMAPPING_DEINIT:
break;
case RARCH_CMD_REMAPPING_INIT:
rarch_main_command(RARCH_CMD_REMAPPING_DEINIT);
init_remapping();
break;
case RARCH_CMD_REWIND_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2014-10-03 10:07:15 +00:00
#ifdef HAVE_NETPLAY
if (driver->netplay_data)
return false;
2014-10-03 10:07:15 +00:00
#endif
2015-03-21 03:43:18 +00:00
if (global->rewind.state)
state_manager_free(global->rewind.state);
global->rewind.state = NULL;
break;
case RARCH_CMD_REWIND_INIT:
init_rewind();
break;
case RARCH_CMD_REWIND_TOGGLE:
2015-03-20 19:20:33 +00:00
if (settings->rewind_enable)
rarch_main_command(RARCH_CMD_REWIND_INIT);
else
rarch_main_command(RARCH_CMD_REWIND_DEINIT);
break;
case RARCH_CMD_AUTOSAVE_DEINIT:
#ifdef HAVE_THREADS
deinit_autosave();
#endif
break;
case RARCH_CMD_AUTOSAVE_INIT:
rarch_main_command(RARCH_CMD_AUTOSAVE_DEINIT);
#ifdef HAVE_THREADS
2014-08-02 02:13:34 +00:00
init_autosave();
#endif
break;
2014-10-05 13:36:57 +00:00
case RARCH_CMD_AUTOSAVE_STATE:
save_auto_state();
break;
2014-08-02 10:08:53 +00:00
case RARCH_CMD_AUDIO_STOP:
if (!driver->audio_data)
return false;
2015-03-23 01:36:13 +00:00
if (!audio_driver_alive())
return false;
2015-03-23 01:44:49 +00:00
if (!audio_driver_stop())
return false;
2014-08-02 10:08:53 +00:00
break;
case RARCH_CMD_AUDIO_START:
2015-03-23 01:36:13 +00:00
if (!driver->audio_data || audio_driver_alive())
return false;
2015-03-23 01:44:49 +00:00
if (!settings->audio.mute_enable && !audio_driver_start())
2014-08-02 10:08:53 +00:00
{
RARCH_ERR("Failed to start audio driver. Will continue without audio.\n");
driver->audio_active = false;
2014-08-02 10:08:53 +00:00
}
break;
2014-10-08 14:07:19 +00:00
case RARCH_CMD_AUDIO_MUTE_TOGGLE:
{
2015-03-20 19:20:33 +00:00
const char *msg = !settings->audio.mute_enable ?
2014-10-08 14:07:19 +00:00
"Audio muted." : "Audio unmuted.";
2015-02-10 20:16:26 +00:00
if (!audio_driver_mute_toggle())
2014-10-08 14:07:19 +00:00
{
RARCH_ERR("Failed to unmute audio.\n");
2015-02-10 20:16:26 +00:00
return false;
2014-10-08 14:07:19 +00:00
}
rarch_main_msg_queue_push(msg, 1, 180, true);
2014-10-08 14:07:19 +00:00
RARCH_LOG("%s\n", msg);
}
break;
case RARCH_CMD_OVERLAY_DEINIT:
#ifdef HAVE_OVERLAY
if (driver->overlay)
input_overlay_free(driver->overlay);
driver->overlay = NULL;
memset(&driver->overlay_state, 0, sizeof(driver->overlay_state));
#endif
break;
2014-08-02 10:36:48 +00:00
case RARCH_CMD_OVERLAY_INIT:
2014-10-05 18:25:54 +00:00
rarch_main_command(RARCH_CMD_OVERLAY_DEINIT);
2014-08-02 10:36:48 +00:00
#ifdef HAVE_OVERLAY
if (driver->osk_enable)
2015-01-29 21:54:42 +00:00
{
2015-03-20 19:20:33 +00:00
if (!*settings->osk.overlay)
2015-01-29 21:54:42 +00:00
break;
}
else
{
2015-03-20 19:20:33 +00:00
if (!*settings->input.overlay)
2015-01-29 21:54:42 +00:00
break;
}
2014-08-02 13:16:56 +00:00
2015-03-20 19:20:33 +00:00
driver->overlay = input_overlay_new(driver->osk_enable ? settings->osk.overlay : settings->input.overlay,
driver->osk_enable ? settings->osk.enable : settings->input.overlay_enable,
settings->input.overlay_opacity, settings->input.overlay_scale);
if (!driver->overlay)
2014-08-02 13:16:56 +00:00
RARCH_ERR("Failed to load overlay.\n");
2014-10-08 16:26:46 +00:00
#endif
break;
case RARCH_CMD_OVERLAY_NEXT:
#ifdef HAVE_OVERLAY
2015-03-20 19:20:33 +00:00
input_overlay_next(driver->overlay, settings->input.overlay_opacity);
2014-08-02 10:36:48 +00:00
#endif
break;
case RARCH_CMD_DSP_FILTER_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->audio_data.dsp)
rarch_dsp_filter_free(global->audio_data.dsp);
global->audio_data.dsp = NULL;
break;
2014-08-02 11:40:38 +00:00
case RARCH_CMD_DSP_FILTER_INIT:
rarch_main_command(RARCH_CMD_DSP_FILTER_DEINIT);
2015-03-20 19:20:33 +00:00
if (!*settings->audio.dsp_plugin)
2014-08-02 11:40:38 +00:00
break;
2015-03-21 03:43:18 +00:00
global->audio_data.dsp = rarch_dsp_filter_new(
settings->audio.dsp_plugin, global->audio_data.in_rate);
if (!global->audio_data.dsp)
RARCH_ERR("[DSP]: Failed to initialize DSP filter \"%s\".\n",
2015-03-20 19:20:33 +00:00
settings->audio.dsp_plugin);
2014-08-02 11:40:38 +00:00
break;
2014-10-03 09:33:58 +00:00
case RARCH_CMD_GPU_RECORD_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->record.gpu_buffer)
free(global->record.gpu_buffer);
global->record.gpu_buffer = NULL;
2014-10-03 09:33:58 +00:00
break;
2014-08-02 12:17:20 +00:00
case RARCH_CMD_RECORD_DEINIT:
if (!recording_deinit())
return false;
2014-08-02 12:17:20 +00:00
break;
case RARCH_CMD_RECORD_INIT:
rarch_main_command(RARCH_CMD_HISTORY_DEINIT);
if (!recording_init())
2015-01-11 01:21:18 +00:00
return false;
break;
2014-10-03 09:59:24 +00:00
case RARCH_CMD_HISTORY_DEINIT:
if (g_defaults.history)
content_playlist_free(g_defaults.history);
g_defaults.history = NULL;
2014-10-03 09:59:24 +00:00
break;
2014-08-02 15:42:01 +00:00
case RARCH_CMD_HISTORY_INIT:
2014-10-03 09:59:24 +00:00
rarch_main_command(RARCH_CMD_HISTORY_DEINIT);
2015-03-20 19:20:33 +00:00
if (!settings->history_list_enable)
return false;
2015-03-20 19:20:33 +00:00
RARCH_LOG("Loading history file: [%s].\n", settings->content_history_path);
g_defaults.history = content_playlist_init(
2015-03-20 19:20:33 +00:00
settings->content_history_path,
settings->content_history_size);
2014-08-02 15:42:01 +00:00
break;
2014-10-03 10:37:55 +00:00
case RARCH_CMD_CORE_INFO_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->core_info)
core_info_list_free(global->core_info);
global->core_info = NULL;
2014-10-03 10:37:55 +00:00
break;
case RARCH_CMD_DATA_RUNLOOP_FREE:
rarch_main_data_free();
break;
2014-10-03 10:37:55 +00:00
case RARCH_CMD_CORE_INFO_INIT:
rarch_main_command(RARCH_CMD_CORE_INFO_DEINIT);
2015-03-20 19:20:33 +00:00
if (*settings->libretro_directory)
2015-03-21 03:43:18 +00:00
global->core_info = core_info_list_new(settings->libretro_directory);
2014-08-16 04:23:51 +00:00
break;
case RARCH_CMD_CORE_DEINIT:
2015-03-24 13:32:42 +00:00
deinit_core(true);
break;
case RARCH_CMD_CORE_INIT:
if (!init_core())
return false;
break;
case RARCH_CMD_VIDEO_APPLY_STATE_CHANGES:
video_driver_apply_state_changes();
break;
case RARCH_CMD_VIDEO_SET_NONBLOCKING_STATE:
boolean = true; /* fall-through */
case RARCH_CMD_VIDEO_SET_BLOCKING_STATE:
2015-03-22 09:25:51 +00:00
video_driver_set_nonblock_state(boolean);
break;
case RARCH_CMD_VIDEO_SET_ASPECT_RATIO:
video_driver_set_aspect_ratio(settings->video.aspect_ratio_idx);
break;
case RARCH_CMD_AUDIO_SET_NONBLOCKING_STATE:
boolean = true; /* fall-through */
case RARCH_CMD_AUDIO_SET_BLOCKING_STATE:
2015-03-23 01:44:49 +00:00
audio_driver_set_nonblock_state(boolean);
break;
2014-08-16 17:16:11 +00:00
case RARCH_CMD_OVERLAY_SET_SCALE_FACTOR:
#ifdef HAVE_OVERLAY
input_overlay_set_scale_factor(driver->overlay,
2015-03-20 19:20:33 +00:00
settings->input.overlay_scale);
2014-08-16 17:16:11 +00:00
#endif
break;
case RARCH_CMD_OVERLAY_SET_ALPHA_MOD:
#ifdef HAVE_OVERLAY
input_overlay_set_alpha_mod(driver->overlay,
2015-03-20 19:20:33 +00:00
settings->input.overlay_opacity);
2014-08-16 17:16:11 +00:00
#endif
break;
case RARCH_CMD_DRIVERS_DEINIT:
uninit_drivers(DRIVERS_CMD_ALL);
break;
case RARCH_CMD_DRIVERS_INIT:
init_drivers(DRIVERS_CMD_ALL);
2014-08-20 21:11:14 +00:00
break;
case RARCH_CMD_AUDIO_REINIT:
uninit_drivers(DRIVER_AUDIO);
init_drivers(DRIVER_AUDIO);
break;
case RARCH_CMD_RESET_CONTEXT:
rarch_main_command(RARCH_CMD_DRIVERS_DEINIT);
rarch_main_command(RARCH_CMD_DRIVERS_INIT);
break;
case RARCH_CMD_QUIT_RETROARCH:
2014-09-12 03:14:43 +00:00
rarch_main_set_state(RARCH_ACTION_STATE_FORCE_QUIT);
break;
case RARCH_CMD_RESUME:
rarch_main_set_state(RARCH_ACTION_STATE_MENU_RUNNING_FINISHED);
break;
case RARCH_CMD_RESTART_RETROARCH:
#if defined(GEKKO) && defined(HW_RVL)
2015-03-21 03:43:18 +00:00
fill_pathname_join(global->fullpath, g_defaults.core_dir,
SALAMANDER_FILE,
2015-03-21 03:43:18 +00:00
sizeof(global->fullpath));
#endif
if (driver->frontend_ctx && driver->frontend_ctx->set_fork)
driver->frontend_ctx->set_fork(true, false);
break;
case RARCH_CMD_MENU_SAVE_CONFIG:
if (!save_core_config())
return false;
break;
case RARCH_CMD_SHADERS_APPLY_CHANGES:
#ifdef HAVE_MENU
menu_shader_manager_apply_changes();
#endif
break;
case RARCH_CMD_PAUSE_CHECKS:
2015-03-18 05:47:22 +00:00
if (runloop->is_paused)
2014-10-08 14:12:00 +00:00
{
RARCH_LOG("Paused.\n");
rarch_main_command(RARCH_CMD_AUDIO_STOP);
2015-03-20 19:20:33 +00:00
if (settings->video.black_frame_insertion)
2014-10-08 14:12:00 +00:00
rarch_render_cached_frame();
}
else
{
RARCH_LOG("Unpaused.\n");
rarch_main_command(RARCH_CMD_AUDIO_START);
}
break;
case RARCH_CMD_PAUSE_TOGGLE:
2015-03-18 05:47:22 +00:00
runloop->is_paused = !runloop->is_paused;
rarch_main_command(RARCH_CMD_PAUSE_CHECKS);
break;
case RARCH_CMD_UNPAUSE:
2015-03-18 05:47:22 +00:00
runloop->is_paused = false;
rarch_main_command(RARCH_CMD_PAUSE_CHECKS);
break;
case RARCH_CMD_PAUSE:
2015-03-18 05:47:22 +00:00
runloop->is_paused = true;
rarch_main_command(RARCH_CMD_PAUSE_CHECKS);
break;
case RARCH_CMD_MENU_PAUSE_LIBRETRO:
2015-03-18 05:47:22 +00:00
if (runloop->is_menu)
{
2015-03-20 19:20:33 +00:00
if (settings->menu.pause_libretro)
rarch_main_command(RARCH_CMD_AUDIO_STOP);
else
rarch_main_command(RARCH_CMD_AUDIO_START);
}
else
{
2015-03-20 19:20:33 +00:00
if (settings->menu.pause_libretro)
rarch_main_command(RARCH_CMD_AUDIO_START);
}
break;
case RARCH_CMD_SHADER_DIR_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
dir_list_free(global->shader_dir.list);
global->shader_dir.list = NULL;
global->shader_dir.ptr = 0;
break;
case RARCH_CMD_SHADER_DIR_INIT:
rarch_main_command(RARCH_CMD_SHADER_DIR_DEINIT);
2015-03-20 19:20:33 +00:00
if (!*settings->video.shader_dir)
2015-01-10 01:06:51 +00:00
return false;
2015-03-21 03:43:18 +00:00
global->shader_dir.list = dir_list_new(settings->video.shader_dir,
2015-01-10 01:06:51 +00:00
"cg|cgp|glsl|glslp", false);
2015-03-21 03:43:18 +00:00
if (!global->shader_dir.list || global->shader_dir.list->size == 0)
2015-01-10 01:06:51 +00:00
{
rarch_main_command(RARCH_CMD_SHADER_DIR_DEINIT);
return false;
}
2015-01-10 01:06:51 +00:00
2015-03-21 03:43:18 +00:00
global->shader_dir.ptr = 0;
dir_list_sort(global->shader_dir.list, false);
2015-01-10 01:06:51 +00:00
2015-03-21 03:43:18 +00:00
for (i = 0; i < global->shader_dir.list->size; i++)
2015-01-10 01:06:51 +00:00
RARCH_LOG("Found shader \"%s\"\n",
2015-03-21 03:43:18 +00:00
global->shader_dir.list->elems[i].data);
break;
case RARCH_CMD_SAVEFILES:
save_files();
break;
case RARCH_CMD_SAVEFILES_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->savefiles)
string_list_free(global->savefiles);
global->savefiles = NULL;
break;
2014-10-03 09:59:24 +00:00
case RARCH_CMD_SAVEFILES_INIT:
2015-03-21 03:43:18 +00:00
global->use_sram = global->use_sram && !global->sram_save_disable
#ifdef HAVE_NETPLAY
2015-03-21 03:43:18 +00:00
&& (!driver->netplay_data || !global->netplay_is_client)
#endif
;
2015-03-21 03:43:18 +00:00
if (!global->use_sram)
RARCH_LOG("SRAM will not be saved.\n");
2015-03-21 03:43:18 +00:00
if (global->use_sram)
rarch_main_command(RARCH_CMD_AUTOSAVE_INIT);
2014-10-03 09:59:24 +00:00
break;
case RARCH_CMD_MSG_QUEUE_DEINIT:
rarch_main_msg_queue_free();
2014-10-03 09:59:24 +00:00
break;
case RARCH_CMD_MSG_QUEUE_INIT:
rarch_main_command(RARCH_CMD_MSG_QUEUE_DEINIT);
rarch_main_msg_queue_init();
2015-03-15 01:00:11 +00:00
rarch_main_data_init_queues();
2014-10-03 09:59:24 +00:00
break;
case RARCH_CMD_BSV_MOVIE_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->bsv.movie)
bsv_movie_free(global->bsv.movie);
global->bsv.movie = NULL;
break;
case RARCH_CMD_BSV_MOVIE_INIT:
rarch_main_command(RARCH_CMD_BSV_MOVIE_DEINIT);
init_movie();
break;
case RARCH_CMD_NETPLAY_DEINIT:
#ifdef HAVE_NETPLAY
{
netplay_t *netplay = (netplay_t*)driver->netplay_data;
if (netplay)
netplay_free(netplay);
driver->netplay_data = NULL;
}
#endif
break;
case RARCH_CMD_NETWORK_DEINIT:
#ifdef HAVE_NETWORKING
network_deinit();
#endif
break;
case RARCH_CMD_NETWORK_INIT:
#ifdef HAVE_NETWORKING
network_init();
#endif
break;
case RARCH_CMD_NETPLAY_INIT:
rarch_main_command(RARCH_CMD_NETPLAY_DEINIT);
#ifdef HAVE_NETPLAY
2015-01-11 14:55:02 +00:00
if (!init_netplay())
return false;
#endif
break;
case RARCH_CMD_NETPLAY_FLIP_PLAYERS:
2014-10-09 02:04:56 +00:00
#ifdef HAVE_NETPLAY
{
netplay_t *netplay = (netplay_t*)driver->netplay_data;
if (!netplay)
return false;
netplay_flip_users(netplay);
}
2014-10-09 02:04:56 +00:00
#endif
break;
case RARCH_CMD_FULLSCREEN_TOGGLE:
2015-03-22 06:20:55 +00:00
if (!video_driver_has_windowed())
return false;
/* If we go fullscreen we drop all drivers and
* reinitialize to be safe. */
2015-03-20 19:20:33 +00:00
settings->video.fullscreen = !settings->video.fullscreen;
rarch_main_command(RARCH_CMD_REINIT);
break;
case RARCH_CMD_COMMAND_DEINIT:
#ifdef HAVE_COMMAND
if (driver->command)
rarch_cmd_free(driver->command);
driver->command = NULL;
#endif
break;
case RARCH_CMD_COMMAND_INIT:
rarch_main_command(RARCH_CMD_COMMAND_DEINIT);
#ifdef HAVE_COMMAND
init_command();
#endif
break;
case RARCH_CMD_TEMPORARY_CONTENT_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->temporary_content)
free_temporary_content();
2015-03-21 03:43:18 +00:00
global->temporary_content = NULL;
break;
case RARCH_CMD_SUBSYSTEM_FULLPATHS_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->subsystem_fullpaths)
string_list_free(global->subsystem_fullpaths);
global->subsystem_fullpaths = NULL;
break;
case RARCH_CMD_LOG_FILE_DEINIT:
2015-03-21 05:17:03 +00:00
if (!global)
break;
2015-03-21 03:43:18 +00:00
if (global->log_file)
fclose(global->log_file);
global->log_file = NULL;
break;
case RARCH_CMD_DISK_EJECT_TOGGLE:
2015-03-21 03:43:18 +00:00
if (global->system.disk_control.get_num_images)
{
const struct retro_disk_control_callback *control =
(const struct retro_disk_control_callback*)
2015-03-21 03:43:18 +00:00
&global->system.disk_control;
if (control)
check_disk_eject(control);
}
else
rarch_main_msg_queue_push("Core does not support Disk Options.", 1, 120, true);
break;
case RARCH_CMD_DISK_NEXT:
2015-03-21 03:43:18 +00:00
if (global->system.disk_control.get_num_images)
{
const struct retro_disk_control_callback *control =
(const struct retro_disk_control_callback*)
2015-03-21 03:43:18 +00:00
&global->system.disk_control;
if (!control)
return false;
if (!control->get_eject_state())
return false;
check_disk_next(control);
}
else
rarch_main_msg_queue_push("Core does not support Disk Options.", 1, 120, true);
2014-10-03 17:16:33 +00:00
break;
case RARCH_CMD_DISK_PREV:
2015-03-21 03:43:18 +00:00
if (global->system.disk_control.get_num_images)
{
const struct retro_disk_control_callback *control =
(const struct retro_disk_control_callback*)
2015-03-21 03:43:18 +00:00
&global->system.disk_control;
if (!control)
return false;
if (!control->get_eject_state())
return false;
check_disk_prev(control);
}
else
rarch_main_msg_queue_push("Core does not support Disk Options.", 1, 120, true);
break;
2014-10-03 17:16:33 +00:00
case RARCH_CMD_RUMBLE_STOP:
2015-01-10 01:06:51 +00:00
for (i = 0; i < MAX_USERS; i++)
2014-10-03 17:16:33 +00:00
{
input_driver_set_rumble_state(i, RETRO_RUMBLE_STRONG, 0);
input_driver_set_rumble_state(i, RETRO_RUMBLE_WEAK, 0);
2014-10-03 17:16:33 +00:00
}
break;
2014-10-08 14:18:18 +00:00
case RARCH_CMD_GRAB_MOUSE_TOGGLE:
{
static bool grab_mouse_state = false;
2015-03-23 03:31:11 +00:00
grab_mouse_state = !grab_mouse_state;
if (!driver->input || !input_driver_grab_mouse(grab_mouse_state))
2014-10-08 14:18:18 +00:00
return false;
RARCH_LOG("Grab mouse state: %s.\n",
grab_mouse_state ? "yes" : "no");
2015-03-22 17:48:24 +00:00
video_driver_show_mouse(!grab_mouse_state);
2014-10-08 14:18:18 +00:00
}
break;
case RARCH_CMD_PERFCNT_REPORT_FRONTEND_LOG:
rarch_perf_log();
break;
case RARCH_CMD_VOLUME_UP:
set_volume(0.5f);
break;
case RARCH_CMD_VOLUME_DOWN:
set_volume(-0.5f);
break;
}
return true;
}
2015-01-11 01:21:18 +00:00
/**
* rarch_main_deinit:
*
* Deinitializes RetroArch.
**/
2012-04-21 21:25:32 +00:00
void rarch_main_deinit(void)
{
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
rarch_main_command(RARCH_CMD_NETPLAY_DEINIT);
rarch_main_command(RARCH_CMD_COMMAND_DEINIT);
2011-02-13 16:45:14 +00:00
2015-03-21 03:43:18 +00:00
if (global->use_sram)
rarch_main_command(RARCH_CMD_AUTOSAVE_DEINIT);
rarch_main_command(RARCH_CMD_RECORD_DEINIT);
rarch_main_command(RARCH_CMD_SAVEFILES);
2011-02-25 10:47:27 +00:00
rarch_main_command(RARCH_CMD_REWIND_DEINIT);
rarch_main_command(RARCH_CMD_CHEATS_DEINIT);
rarch_main_command(RARCH_CMD_BSV_MOVIE_DEINIT);
2014-10-05 13:36:57 +00:00
rarch_main_command(RARCH_CMD_AUTOSAVE_STATE);
2012-06-02 19:33:37 +00:00
rarch_main_command(RARCH_CMD_CORE_DEINIT);
2013-01-05 22:44:49 +00:00
rarch_main_command(RARCH_CMD_TEMPORARY_CONTENT_DEINIT);
rarch_main_command(RARCH_CMD_SUBSYSTEM_FULLPATHS_DEINIT);
rarch_main_command(RARCH_CMD_SAVEFILES_DEINIT);
2013-01-21 22:51:56 +00:00
2015-03-21 03:43:18 +00:00
global->main_is_init = false;
}
2015-01-11 01:21:18 +00:00
/**
* rarch_playlist_load_content:
* @playlist : Playlist handle.
* @idx : Index in playlist.
*
* Initializes core and loads content based on playlist entry.
**/
void rarch_playlist_load_content(content_playlist_t *playlist,
unsigned idx)
{
const char *path = NULL;
const char *core_path = NULL;
menu_handle_t *menu = menu_driver_get_ptr();
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
content_playlist_get_index(playlist,
idx, &path, &core_path, NULL);
2015-03-20 19:20:33 +00:00
strlcpy(settings->libretro, core_path, sizeof(settings->libretro));
2015-02-13 22:30:10 +00:00
if (menu)
menu->load_no_content = (path) ? false : true;
rarch_environment_cb(RETRO_ENVIRONMENT_EXEC, (void*)path);
rarch_main_command(RARCH_CMD_LOAD_CORE);
}
2015-01-11 01:21:18 +00:00
/**
* rarch_defer_core:
* @core_info : Core info list handle.
* @dir : Directory. Gets joined with @path.
* @path : Path. Gets joined with @dir.
* @menu_label : Label identifier of menu setting.
* @deferred_path : Deferred core path. Will be filled in
* by function.
* @sizeof_deferred_path : Size of @deferred_path.
*
* Gets deferred core.
*
* Returns: 0 if there are multiple deferred cores and a
* selection needs to be made from a list, otherwise
* returns -1 and fills in @deferred_path with path to core.
**/
int rarch_defer_core(core_info_list_t *core_info, const char *dir,
const char *path, const char *menu_label,
char *deferred_path, size_t sizeof_deferred_path)
{
char new_core_path[PATH_MAX_LENGTH];
const core_info_t *info = NULL;
2015-03-22 07:39:26 +00:00
size_t supported = 0;
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
fill_pathname_join(deferred_path, dir, path, sizeof_deferred_path);
#ifdef HAVE_COMPRESSION
if (path_is_compressed_file(dir))
{
/* In case of a compressed archive, we have to join with a hash */
/* We are going to write at the position of dir: */
rarch_assert(strlen(dir) < strlen(deferred_path));
deferred_path[strlen(dir)] = '#';
}
#endif
if (core_info)
core_info_list_get_supported_cores(core_info, deferred_path, &info,
&supported);
if (!strcmp(menu_label, "load_content"))
{
2015-03-21 03:43:18 +00:00
info = (const core_info_t*)&global->core_info_current;
if (info)
{
strlcpy(new_core_path, info->path, sizeof(new_core_path));
supported = 1;
}
}
else
strlcpy(new_core_path, info->path, sizeof(new_core_path));
2015-01-11 01:21:18 +00:00
/* There are multiple deferred cores and a
* selection needs to be made from a list, return 0. */
if (supported != 1)
return 0;
2015-03-21 03:43:18 +00:00
strlcpy(global->fullpath, deferred_path, sizeof(global->fullpath));
2015-01-11 01:21:18 +00:00
if (path_file_exists(new_core_path))
2015-03-20 19:20:33 +00:00
strlcpy(settings->libretro, new_core_path,
sizeof(settings->libretro));
2015-01-11 01:21:18 +00:00
return -1;
}
2015-01-10 22:23:01 +00:00
/**
* rarch_replace_config:
* @path : Path to config file to replace
* current config file with.
*
* Replaces currently loaded configuration file with
* another one. Will load a dummy core to flush state
* properly.
*
* Quite intrusive and error prone.
* Likely to have lots of small bugs.
* Cleanly exit the main loop to ensure that all the tiny details
* get set properly.
*
2015-01-10 22:23:01 +00:00
* This should mitigate most of the smaller bugs.
*
* Returns: true (1) if successful, false (0) if @path was the
* same as the current config file.
**/
bool rarch_replace_config(const char *path)
{
2015-03-20 19:20:33 +00:00
settings_t *settings = config_get_ptr();
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
2015-03-20 19:20:33 +00:00
/* If config file to be replaced is the same as the
* current config file, exit. */
2015-03-21 03:43:18 +00:00
if (!strcmp(path, global->config_path))
return false;
2015-03-21 03:43:18 +00:00
if (settings->config_save_on_exit && *global->config_path)
config_save_file(global->config_path);
2015-03-21 03:43:18 +00:00
strlcpy(global->config_path, path, sizeof(global->config_path));
global->block_config_read = false;
2015-03-20 19:20:33 +00:00
*settings->libretro = '\0'; /* Load core in new config. */
rarch_main_command(RARCH_CMD_PREPARE_DUMMY);
return true;
}