2012-04-21 23:13:50 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 01:37:37 +01:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
2010-12-24 01:33:40 +01:00
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2010-12-24 01:33:40 +01: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 23:13:50 +02:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2010-12-24 01:33:40 +01: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 23:31:57 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2010-12-24 01:33:40 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
#ifndef __RARCH_GENERAL_H
|
|
|
|
#define __RARCH_GENERAL_H
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2011-12-24 13:46:12 +01:00
|
|
|
#include "boolean.h"
|
2010-12-29 19:43:17 +01:00
|
|
|
#include <stdio.h>
|
2011-10-17 20:46:38 +02:00
|
|
|
#include <time.h>
|
2012-01-02 13:32:25 +01:00
|
|
|
#include <limits.h>
|
2012-01-14 16:08:54 +01:00
|
|
|
#include <setjmp.h>
|
2011-10-17 20:46:38 +02:00
|
|
|
#include "driver.h"
|
2011-01-03 20:46:50 +01:00
|
|
|
#include "record/ffemu.h"
|
2011-01-23 02:23:20 +01:00
|
|
|
#include "message.h"
|
2011-01-31 16:48:42 +01:00
|
|
|
#include "rewind.h"
|
2011-02-02 12:10:27 +01:00
|
|
|
#include "movie.h"
|
2011-02-10 21:16:59 +01:00
|
|
|
#include "autosave.h"
|
2011-03-07 19:12:14 +01:00
|
|
|
#include "dynamic.h"
|
2011-04-17 13:30:59 +02:00
|
|
|
#include "cheats.h"
|
2012-04-21 23:25:32 +02:00
|
|
|
#include "audio/ext/rarch_dsp.h"
|
2012-03-16 23:26:57 +01:00
|
|
|
#include "compat/strl.h"
|
2013-02-05 09:41:10 +01:00
|
|
|
#include "performance.h"
|
2013-04-04 13:58:30 +02:00
|
|
|
#include "core_options.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-04 15:01:38 +02:00
|
|
|
#ifndef PACKAGE_VERSION
|
2013-07-06 19:18:41 +02:00
|
|
|
#ifdef __QNX__
|
|
|
|
/* FIXME - avoid too many decimal points in number error */
|
2013-08-16 03:57:09 +02:00
|
|
|
#define PACKAGE_VERSION "0996"
|
2013-07-06 19:18:41 +02:00
|
|
|
#else
|
2013-08-16 03:57:09 +02:00
|
|
|
#define PACKAGE_VERSION "0.9.9.6"
|
2013-07-04 15:01:38 +02:00
|
|
|
#endif
|
2013-07-06 19:18:41 +02:00
|
|
|
#endif
|
2013-07-04 15:01:38 +02:00
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// Platform-specific headers
|
|
|
|
// PS3
|
2012-07-01 13:33:30 +02:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 16:40:52 +01:00
|
|
|
#include <sys/timer.h>
|
2012-03-26 00:36:40 +02:00
|
|
|
#include "ps3/ps3_input.h"
|
2011-11-30 16:40:52 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// libxenon
|
2011-12-13 23:38:05 +01:00
|
|
|
#ifdef XENON
|
|
|
|
#include <time/time.h>
|
2012-01-10 22:08:24 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// Windows
|
2013-04-11 22:35:15 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef _XBOX
|
|
|
|
#include <xtl.h>
|
|
|
|
#else
|
2012-11-23 10:34:40 +01:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#include "msvc/msvc_compat.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-10 09:33:26 +01:00
|
|
|
// Wii and PSL1GHT - for usleep (among others)
|
2013-05-25 18:07:30 +02:00
|
|
|
#if defined(GEKKO) || defined(__PSL1GHT__) || defined(__QNX__)
|
2012-11-23 20:45:15 +01:00
|
|
|
#include <unistd.h>
|
2011-12-13 23:38:05 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// PSP
|
|
|
|
#if defined(PSP)
|
|
|
|
#include <pspthreadman.h>
|
|
|
|
#endif
|
|
|
|
//////////////
|
|
|
|
|
|
|
|
// Some platforms do not set this value.
|
|
|
|
// Just assume a value. It's usually 4KiB.
|
|
|
|
// Platforms with a known value (like Win32)
|
|
|
|
// set this value explicitly in platform specific headers.
|
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 4096
|
2011-01-07 17:59:53 +01:00
|
|
|
#endif
|
|
|
|
|
2011-11-30 16:27:16 +01:00
|
|
|
#ifdef HAVE_NETPLAY
|
|
|
|
#include "netplay.h"
|
2012-05-28 00:27:53 +02:00
|
|
|
#endif
|
|
|
|
|
2012-07-24 02:47:28 +02:00
|
|
|
#ifdef HAVE_COMMAND
|
|
|
|
#include "command.h"
|
2011-11-30 16:27:16 +01:00
|
|
|
#endif
|
|
|
|
|
2012-02-23 23:19:23 +01:00
|
|
|
#include "audio/resampler.h"
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2013-02-09 10:36:39 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-02-02 21:02:36 +01:00
|
|
|
#define MAX_PLAYERS 8
|
2011-02-18 23:51:51 +01:00
|
|
|
|
2013-01-11 04:39:24 +01:00
|
|
|
enum menu_enums
|
|
|
|
{
|
2013-01-13 03:34:55 +01:00
|
|
|
MODE_GAME = 0,
|
2013-01-11 04:39:24 +01:00
|
|
|
MODE_LOAD_GAME,
|
|
|
|
MODE_MENU,
|
2013-01-11 18:14:16 +01:00
|
|
|
MODE_MENU_WIDESCREEN,
|
|
|
|
MODE_MENU_HD,
|
2013-01-11 04:39:24 +01:00
|
|
|
MODE_MENU_PREINIT,
|
2013-01-12 04:44:11 +01:00
|
|
|
MODE_MENU_INGAME_EXIT,
|
2013-01-11 07:49:32 +01:00
|
|
|
MODE_INFO_DRAW,
|
2013-01-11 06:56:05 +01:00
|
|
|
MODE_FPS_DRAW,
|
2013-01-11 08:15:23 +01:00
|
|
|
MODE_EXTLAUNCH_MULTIMAN,
|
|
|
|
MODE_EXITSPAWN,
|
2013-04-29 03:05:46 +02:00
|
|
|
MODE_EXITSPAWN_START_GAME,
|
2013-03-23 05:17:39 +01:00
|
|
|
MODE_EXITSPAWN_MULTIMAN,
|
2013-03-02 11:27:24 +01:00
|
|
|
MODE_INPUT_XPERIA_PLAY_HACK,
|
2013-01-11 19:44:13 +01:00
|
|
|
MODE_VIDEO_TRIPLE_BUFFERING_ENABLE,
|
|
|
|
MODE_VIDEO_FLICKER_FILTER_ENABLE,
|
|
|
|
MODE_VIDEO_SOFT_FILTER_ENABLE,
|
2013-01-17 12:17:02 +01:00
|
|
|
MODE_VIDEO_PAL_ENABLE,
|
|
|
|
MODE_VIDEO_PAL_TEMPORAL_ENABLE,
|
2013-01-11 19:44:13 +01:00
|
|
|
MODE_AUDIO_CUSTOM_BGM_ENABLE,
|
2013-01-17 10:40:35 +01:00
|
|
|
MODE_OSK_ENTRY_SUCCESS,
|
|
|
|
MODE_OSK_ENTRY_FAIL,
|
2013-01-11 04:39:24 +01:00
|
|
|
};
|
|
|
|
|
2013-03-17 18:16:34 +01:00
|
|
|
enum sound_mode_enums
|
|
|
|
{
|
|
|
|
SOUND_MODE_NORMAL = 0,
|
|
|
|
#ifdef HAVE_RSOUND
|
|
|
|
SOUND_MODE_RSOUND,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_HEADSET
|
|
|
|
SOUND_MODE_HEADSET,
|
|
|
|
#endif
|
|
|
|
SOUND_MODE_LAST
|
|
|
|
};
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// All config related settings go here.
|
2010-12-29 19:00:21 +01:00
|
|
|
struct settings
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2013-02-23 14:49:49 +01:00
|
|
|
char gl_context[32];
|
2010-12-29 19:00:21 +01:00
|
|
|
float xscale;
|
|
|
|
float yscale;
|
2010-12-29 19:18:37 +01:00
|
|
|
bool fullscreen;
|
2012-10-05 14:15:54 +02:00
|
|
|
bool windowed_fullscreen;
|
2012-10-12 21:15:58 +02:00
|
|
|
unsigned monitor_index;
|
2010-12-29 19:00:21 +01:00
|
|
|
unsigned fullscreen_x;
|
|
|
|
unsigned fullscreen_y;
|
|
|
|
bool vsync;
|
2013-05-03 14:04:29 +02:00
|
|
|
bool hard_sync;
|
2013-05-26 13:43:24 +02:00
|
|
|
unsigned hard_sync_frames;
|
2010-12-29 19:00:21 +01:00
|
|
|
bool smooth;
|
|
|
|
bool force_aspect;
|
2011-05-05 14:13:12 +02:00
|
|
|
bool crop_overscan;
|
2011-01-06 20:01:32 +01:00
|
|
|
float aspect_ratio;
|
2012-04-09 22:19:51 +02:00
|
|
|
bool aspect_ratio_auto;
|
2013-01-29 19:28:33 +01:00
|
|
|
bool scale_integer;
|
2012-10-15 06:24:39 +02:00
|
|
|
unsigned aspect_ratio_idx;
|
2013-04-07 01:38:11 +02:00
|
|
|
|
|
|
|
char shader_path[PATH_MAX];
|
|
|
|
bool shader_enable;
|
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char filter_path[PATH_MAX];
|
2011-11-18 15:14:56 +01:00
|
|
|
float refresh_rate;
|
2013-02-16 02:21:43 +01:00
|
|
|
bool threaded;
|
2011-01-23 03:16:14 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char shader_dir[PATH_MAX];
|
2011-03-06 18:19:31 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char font_path[PATH_MAX];
|
2013-01-11 21:04:51 +01:00
|
|
|
float font_size;
|
2011-11-10 00:15:41 +01:00
|
|
|
bool font_enable;
|
2012-01-11 22:52:25 +01:00
|
|
|
bool font_scale;
|
2011-01-23 02:59:44 +01:00
|
|
|
float msg_pos_x;
|
|
|
|
float msg_pos_y;
|
2011-09-05 17:00:28 +02:00
|
|
|
float msg_color_r;
|
|
|
|
float msg_color_g;
|
|
|
|
float msg_color_b;
|
2011-01-23 03:16:14 +01:00
|
|
|
|
2011-08-07 15:00:34 +02:00
|
|
|
bool disable_composition;
|
2011-05-11 17:52:16 +02:00
|
|
|
|
2011-08-11 05:25:31 +02:00
|
|
|
bool post_filter_record;
|
2012-08-25 22:38:49 +02:00
|
|
|
bool gpu_record;
|
2012-08-26 21:18:00 +02:00
|
|
|
bool gpu_screenshot;
|
2011-08-11 05:25:31 +02:00
|
|
|
|
2012-04-01 16:12:04 +02:00
|
|
|
bool allow_rotate;
|
2010-12-29 19:00:21 +01:00
|
|
|
} video;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2010-12-29 19:00:21 +01:00
|
|
|
bool enable;
|
|
|
|
unsigned out_rate;
|
2013-08-24 12:04:47 +02:00
|
|
|
unsigned block_frames;
|
2011-01-29 18:42:21 +01:00
|
|
|
float in_rate;
|
2012-01-02 13:32:25 +01:00
|
|
|
char device[PATH_MAX];
|
2010-12-29 19:00:21 +01:00
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
2011-05-13 21:05:28 +02:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char dsp_plugin[PATH_MAX];
|
2012-02-14 01:16:37 +01:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
float rate_control_delta;
|
2012-11-03 14:15:03 +01:00
|
|
|
float volume; // dB scale
|
2013-02-08 11:49:51 +01:00
|
|
|
char resampler[32];
|
2010-12-29 19:00:21 +01:00
|
|
|
} audio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2013-05-04 10:22:31 +02:00
|
|
|
char joypad_driver[32];
|
2012-07-07 17:19:32 +02:00
|
|
|
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
|
2013-04-26 14:36:36 +02:00
|
|
|
|
|
|
|
// Set by autoconfiguration in joypad_autoconfig_dir. Does not override main binds.
|
|
|
|
struct retro_keybind autoconf_binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
|
2013-04-26 15:02:18 +02:00
|
|
|
bool autoconfigured[MAX_PLAYERS];
|
2013-04-26 14:36:36 +02:00
|
|
|
|
2010-12-29 20:05:57 +01:00
|
|
|
float axis_threshold;
|
2012-01-30 01:20:35 +01:00
|
|
|
int joypad_map[MAX_PLAYERS];
|
2013-03-13 16:06:13 +01:00
|
|
|
unsigned device[MAX_PLAYERS];
|
2013-03-15 01:22:52 +01:00
|
|
|
char device_names[MAX_PLAYERS][64];
|
2013-01-02 17:23:31 +01:00
|
|
|
unsigned dpad_emulation[MAX_PLAYERS];
|
2013-01-05 17:09:13 +01:00
|
|
|
bool debug_enable;
|
2013-01-05 04:58:30 +01:00
|
|
|
bool autodetect_enable;
|
2013-03-15 01:22:52 +01:00
|
|
|
#ifdef ANDROID
|
2013-03-07 15:21:17 +01:00
|
|
|
unsigned back_behavior;
|
2013-02-09 11:44:32 +01:00
|
|
|
unsigned icade_profile[MAX_PLAYERS];
|
|
|
|
unsigned icade_count;
|
2012-03-03 14:57:28 +01:00
|
|
|
#endif
|
2011-02-20 12:12:53 +01:00
|
|
|
bool netplay_client_swap_input;
|
2012-10-01 22:15:48 +02:00
|
|
|
|
|
|
|
unsigned turbo_period;
|
|
|
|
unsigned turbo_duty_cycle;
|
2012-12-20 20:23:53 +01:00
|
|
|
|
|
|
|
char overlay[PATH_MAX];
|
2013-02-01 20:29:33 -05:00
|
|
|
float overlay_opacity;
|
2013-05-17 23:37:48 +02:00
|
|
|
float overlay_scale;
|
2013-04-26 14:36:36 +02:00
|
|
|
|
|
|
|
char autoconfig_dir[PATH_MAX];
|
2010-12-29 19:00:21 +01:00
|
|
|
} input;
|
2010-12-30 13:54:49 +01:00
|
|
|
|
2013-04-04 13:58:30 +02:00
|
|
|
char core_options_path[PATH_MAX];
|
2013-06-09 21:59:48 +02:00
|
|
|
char game_history_path[PATH_MAX];
|
|
|
|
unsigned game_history_size;
|
2013-04-04 13:58:30 +02:00
|
|
|
|
2012-04-07 12:17:40 +02:00
|
|
|
char libretro[PATH_MAX];
|
2012-01-02 13:32:25 +01:00
|
|
|
char cheat_database[PATH_MAX];
|
|
|
|
char cheat_settings_path[PATH_MAX];
|
2011-01-31 18:06:57 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char screenshot_directory[PATH_MAX];
|
2012-06-12 00:28:34 +02:00
|
|
|
char system_directory[PATH_MAX];
|
2011-05-15 17:16:29 +02:00
|
|
|
|
2011-01-31 18:06:57 +01:00
|
|
|
bool rewind_enable;
|
2011-11-01 21:00:41 +01:00
|
|
|
size_t rewind_buffer_size;
|
2011-02-01 17:30:18 +01:00
|
|
|
unsigned rewind_granularity;
|
2011-02-05 21:45:44 +01:00
|
|
|
|
2012-03-04 12:01:07 +01:00
|
|
|
float slowmotion_ratio;
|
2013-08-07 22:24:12 +02:00
|
|
|
float fastforward_ratio;
|
2012-03-04 12:01:07 +01:00
|
|
|
|
2011-02-05 21:45:44 +01:00
|
|
|
bool pause_nonactive;
|
2011-02-10 21:16:59 +01:00
|
|
|
unsigned autosave_interval;
|
2011-09-16 15:32:21 +02:00
|
|
|
|
|
|
|
bool block_sram_overwrite;
|
2011-09-27 15:31:25 +02:00
|
|
|
bool savestate_auto_index;
|
2012-06-02 21:33:37 +02:00
|
|
|
bool savestate_auto_save;
|
2013-01-24 19:24:40 +01:00
|
|
|
bool savestate_auto_load;
|
2012-05-27 14:12:29 +02:00
|
|
|
|
|
|
|
bool network_cmd_enable;
|
|
|
|
uint16_t network_cmd_port;
|
2012-07-24 02:47:28 +02:00
|
|
|
bool stdin_cmd_enable;
|
2013-03-17 21:37:41 +01:00
|
|
|
|
2013-04-18 18:33:03 +02:00
|
|
|
#if defined(HAVE_RGUI) || defined(HAVE_RMENU)
|
2013-03-17 21:37:41 +01:00
|
|
|
char rgui_browser_directory[PATH_MAX];
|
|
|
|
#endif
|
2010-12-29 19:00:21 +01:00
|
|
|
};
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
enum rarch_game_type
|
2011-01-12 18:05:57 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_CART_NORMAL = 0,
|
|
|
|
RARCH_CART_SGB,
|
|
|
|
RARCH_CART_BSX,
|
|
|
|
RARCH_CART_BSX_SLOTTED,
|
|
|
|
RARCH_CART_SUFAMI
|
2011-01-12 18:05:57 +01:00
|
|
|
};
|
|
|
|
|
2012-10-28 00:38:31 +02:00
|
|
|
typedef struct rarch_resolution
|
2012-10-15 06:24:39 +02:00
|
|
|
{
|
|
|
|
unsigned idx;
|
|
|
|
unsigned id;
|
|
|
|
} rarch_resolution_t;
|
|
|
|
|
2012-10-28 00:38:31 +02:00
|
|
|
typedef struct rarch_viewport
|
2012-10-15 06:24:39 +02:00
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2013-01-11 16:23:04 +01:00
|
|
|
unsigned full_width;
|
|
|
|
unsigned full_height;
|
2012-10-15 06:24:39 +02:00
|
|
|
} rarch_viewport_t;
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// All run-time- / command line flag-related globals go here.
|
2010-12-29 19:18:37 +01:00
|
|
|
struct global
|
|
|
|
{
|
|
|
|
bool verbose;
|
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2011-07-09 08:37:08 +02:00
|
|
|
bool force_fullscreen;
|
2010-12-29 19:43:17 +01:00
|
|
|
|
2013-04-27 12:32:03 +02:00
|
|
|
unsigned libretro_device[MAX_PLAYERS];
|
2011-01-10 07:58:11 +01:00
|
|
|
|
2013-01-21 23:51:56 +01:00
|
|
|
bool rom_file_temporary;
|
2013-01-21 20:18:11 -05:00
|
|
|
char last_rom[PATH_MAX];
|
2012-04-21 23:25:32 +02:00
|
|
|
enum rarch_game_type game_type;
|
2011-02-02 11:47:05 +01:00
|
|
|
uint32_t cart_crc;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char gb_rom_path[PATH_MAX];
|
|
|
|
char bsx_rom_path[PATH_MAX];
|
|
|
|
char sufami_rom_path[2][PATH_MAX];
|
2011-02-11 14:27:19 +01:00
|
|
|
bool has_set_save_path;
|
|
|
|
bool has_set_state_path;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2013-04-10 04:26:18 +02:00
|
|
|
#ifdef HAVE_RMENU
|
|
|
|
char menu_texture_path[PATH_MAX];
|
|
|
|
#endif
|
2012-01-02 13:32:25 +01:00
|
|
|
char config_path[PATH_MAX];
|
2012-09-11 00:10:44 +02:00
|
|
|
char append_config_path[PATH_MAX];
|
2013-05-05 16:29:32 +02:00
|
|
|
char input_config_path[PATH_MAX];
|
2012-11-26 02:46:40 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_FILE_LOGGER
|
|
|
|
char default_log_file[PATH_MAX];
|
|
|
|
#endif
|
2011-01-23 02:48:06 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char basename[PATH_MAX];
|
2012-04-07 11:55:37 +02:00
|
|
|
char fullpath[PATH_MAX];
|
2012-01-02 13:32:25 +01:00
|
|
|
char savefile_name_srm[PATH_MAX];
|
|
|
|
char savefile_name_rtc[PATH_MAX]; // Make sure that fill_pathname has space.
|
|
|
|
char savefile_name_psrm[PATH_MAX];
|
|
|
|
char savefile_name_asrm[PATH_MAX];
|
|
|
|
char savefile_name_bsrm[PATH_MAX];
|
|
|
|
char savestate_name[PATH_MAX];
|
|
|
|
char xml_name[PATH_MAX];
|
2011-08-18 00:24:57 +02:00
|
|
|
|
2013-04-16 12:22:27 +02:00
|
|
|
// Used on reentrancy to use a savestate dir.
|
|
|
|
char savefile_dir[PATH_MAX];
|
|
|
|
char savestate_dir[PATH_MAX];
|
|
|
|
|
2013-05-22 22:31:16 +02:00
|
|
|
#ifdef HAVE_OVERLAY
|
|
|
|
char overlay_dir[PATH_MAX];
|
|
|
|
#endif
|
|
|
|
|
2012-03-20 23:45:58 +01:00
|
|
|
bool block_patch;
|
2011-08-18 00:24:57 +02:00
|
|
|
bool ups_pref;
|
|
|
|
bool bps_pref;
|
2012-03-20 23:08:34 +01:00
|
|
|
bool ips_pref;
|
2012-01-02 13:32:25 +01:00
|
|
|
char ups_name[PATH_MAX];
|
|
|
|
char bps_name[PATH_MAX];
|
2012-03-20 23:08:34 +01:00
|
|
|
char ips_name[PATH_MAX];
|
2011-01-03 20:46:50 +01:00
|
|
|
|
2011-01-23 23:09:54 +01:00
|
|
|
unsigned state_slot;
|
|
|
|
|
2013-08-07 22:24:12 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_time_t minimum_frame_time;
|
|
|
|
rarch_time_t last_frame_time;
|
|
|
|
} frame_limit;
|
|
|
|
|
2011-10-27 23:40:34 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 11:47:43 +02:00
|
|
|
struct retro_system_info info;
|
2012-04-07 11:55:37 +02:00
|
|
|
struct retro_system_av_info av_info;
|
2013-03-17 22:05:15 +01:00
|
|
|
float aspect_ratio;
|
2012-02-06 15:51:35 +01:00
|
|
|
|
2012-04-01 19:20:37 +02:00
|
|
|
unsigned rotation;
|
2012-05-22 20:14:07 +02:00
|
|
|
bool shutdown;
|
2012-06-01 16:50:38 +02:00
|
|
|
unsigned performance_level;
|
2012-10-20 01:12:02 +02:00
|
|
|
enum retro_pixel_format pix_fmt;
|
2012-08-15 20:43:26 +02:00
|
|
|
|
2013-01-10 08:46:46 +01:00
|
|
|
bool block_extract;
|
2012-08-15 20:43:26 +02:00
|
|
|
bool force_nonblock;
|
2013-05-01 00:56:13 +02:00
|
|
|
bool no_game;
|
2012-09-09 23:35:23 +02:00
|
|
|
|
2012-10-01 22:15:48 +02:00
|
|
|
const char *input_desc_btn[MAX_PLAYERS][RARCH_FIRST_CUSTOM_BIND];
|
2013-01-09 07:07:46 +01:00
|
|
|
char valid_extensions[PATH_MAX];
|
2012-11-25 20:23:31 -05:00
|
|
|
|
|
|
|
retro_keyboard_event_t key_event;
|
2013-07-14 13:09:53 +02:00
|
|
|
retro_audio_callback_t audio_callback;
|
|
|
|
|
2013-02-21 23:44:07 +01:00
|
|
|
struct retro_disk_control_callback disk_control;
|
2013-03-27 16:15:15 +01:00
|
|
|
struct retro_hw_render_callback hw_render_callback;
|
2013-04-04 13:58:30 +02:00
|
|
|
|
2013-07-14 13:43:01 +02:00
|
|
|
struct retro_frame_time_callback frame_time;
|
|
|
|
retro_usec_t frame_time_last;
|
|
|
|
|
2013-04-04 13:58:30 +02:00
|
|
|
core_option_manager_t *core_options;
|
2011-10-27 23:40:34 +02:00
|
|
|
} system;
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
struct
|
|
|
|
{
|
2013-02-08 11:49:51 +01:00
|
|
|
void *resampler_data;
|
|
|
|
const rarch_resampler_t *resampler;
|
2011-02-06 13:29:48 +01:00
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
float *data;
|
2012-07-06 17:36:37 +02:00
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
size_t data_ptr;
|
|
|
|
size_t chunk_size;
|
|
|
|
size_t nonblock_chunk_size;
|
|
|
|
size_t block_chunk_size;
|
|
|
|
|
2011-10-15 16:16:13 +02:00
|
|
|
double src_ratio;
|
|
|
|
|
2011-01-15 20:37:42 +01:00
|
|
|
bool use_float;
|
2011-11-26 15:54:58 +01:00
|
|
|
bool mute;
|
2011-01-15 20:37:42 +01:00
|
|
|
|
2013-02-16 12:30:26 +01:00
|
|
|
float *outsamples;
|
2011-01-14 15:34:38 +01:00
|
|
|
int16_t *conv_outsamples;
|
2011-05-13 21:05:28 +02:00
|
|
|
|
2011-10-15 14:33:41 +02:00
|
|
|
int16_t *rewind_buf;
|
|
|
|
size_t rewind_ptr;
|
|
|
|
size_t rewind_size;
|
|
|
|
|
2011-05-13 21:05:28 +02:00
|
|
|
dylib_t dsp_lib;
|
2012-04-21 23:25:32 +02:00
|
|
|
const rarch_dsp_plugin_t *dsp_plugin;
|
2011-05-13 21:05:28 +02:00
|
|
|
void *dsp_handle;
|
2012-02-14 01:16:37 +01:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
double orig_src_ratio;
|
|
|
|
size_t driver_buffer_size;
|
2012-11-03 14:15:03 +01:00
|
|
|
|
|
|
|
float volume_db;
|
|
|
|
float volume_gain;
|
2013-02-04 21:46:56 +01:00
|
|
|
} audio_data;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2013-01-18 10:38:43 +01:00
|
|
|
#define AUDIO_BUFFER_FREE_SAMPLES_COUNT (8 * 1024)
|
|
|
|
unsigned buffer_free_samples[AUDIO_BUFFER_FREE_SAMPLES_COUNT];
|
|
|
|
uint64_t buffer_free_samples_count;
|
2013-02-04 21:46:56 +01:00
|
|
|
|
2013-02-10 01:42:56 +01:00
|
|
|
#define MEASURE_FRAME_TIME_SAMPLES_COUNT (2 * 1024)
|
2013-02-05 09:41:10 +01:00
|
|
|
rarch_time_t frame_time_samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];
|
|
|
|
uint64_t frame_time_samples_count;
|
2013-02-04 21:46:56 +01:00
|
|
|
} measure_data;
|
2011-01-14 15:34:38 +01:00
|
|
|
|
2011-03-07 19:12:14 +01:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool active;
|
|
|
|
uint32_t *buffer;
|
|
|
|
uint32_t *colormap;
|
|
|
|
unsigned pitch;
|
|
|
|
dylib_t lib;
|
|
|
|
unsigned scale;
|
|
|
|
|
|
|
|
void (*psize)(unsigned *width, unsigned *height);
|
|
|
|
void (*prender)(uint32_t *colormap, uint32_t *output, unsigned outpitch,
|
|
|
|
const uint16_t *input, unsigned pitch, unsigned width, unsigned height);
|
2012-10-21 22:58:33 +02:00
|
|
|
|
|
|
|
// CPU filters only work on *XRGB1555*. We have to convert to XRGB1555 first.
|
|
|
|
struct scaler_ctx scaler;
|
2012-10-21 23:24:25 +02:00
|
|
|
uint16_t *scaler_out;
|
2011-03-07 19:12:14 +01:00
|
|
|
} filter;
|
|
|
|
|
2011-01-23 02:23:20 +01:00
|
|
|
msg_queue_t *msg_queue;
|
|
|
|
|
2013-08-25 15:51:42 +02:00
|
|
|
bool exec;
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Rewind support.
|
2011-01-31 16:48:42 +01:00
|
|
|
state_manager_t *state_manager;
|
|
|
|
void *state_buf;
|
2011-12-27 18:19:45 +01:00
|
|
|
size_t state_size;
|
2011-01-31 17:24:31 +01:00
|
|
|
bool frame_is_reverse;
|
2011-01-31 16:48:42 +01:00
|
|
|
|
2012-03-26 00:04:12 +02:00
|
|
|
#ifdef HAVE_BSV_MOVIE
|
2011-11-20 20:19:05 +01:00
|
|
|
// Movie playback/recording support.
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bsv_movie_t *movie;
|
2012-01-02 13:32:25 +01:00
|
|
|
char movie_path[PATH_MAX];
|
2011-11-20 20:19:05 +01:00
|
|
|
bool movie_playback;
|
|
|
|
|
|
|
|
// Immediate playback/recording.
|
2012-01-02 13:32:25 +01:00
|
|
|
char movie_start_path[PATH_MAX];
|
2011-11-20 20:19:05 +01:00
|
|
|
bool movie_start_recording;
|
|
|
|
bool movie_start_playback;
|
|
|
|
bool movie_end;
|
|
|
|
} bsv;
|
2012-03-26 00:04:12 +02:00
|
|
|
#endif
|
2011-11-20 20:19:05 +01:00
|
|
|
|
|
|
|
bool sram_load_disable;
|
|
|
|
bool sram_save_disable;
|
2012-01-14 14:08:43 +01:00
|
|
|
bool use_sram;
|
2011-11-18 18:03:24 +01:00
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Pausing support
|
2011-02-05 20:46:58 +01:00
|
|
|
bool is_paused;
|
2011-10-17 21:30:58 +02:00
|
|
|
bool is_oneshot;
|
2012-03-04 12:01:07 +01:00
|
|
|
bool is_slowmotion;
|
2011-02-05 20:46:58 +01:00
|
|
|
|
2012-10-01 22:15:48 +02:00
|
|
|
// Turbo support
|
|
|
|
bool turbo_frame_enable[MAX_PLAYERS];
|
|
|
|
uint16_t turbo_enable[MAX_PLAYERS];
|
|
|
|
unsigned turbo_count;
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Autosave support.
|
2011-02-11 13:44:31 +01:00
|
|
|
autosave_t *autosave[2];
|
2011-02-10 21:16:59 +01:00
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Netplay.
|
2011-11-30 16:41:00 +01:00
|
|
|
#ifdef HAVE_NETPLAY
|
2011-02-13 16:40:24 +01:00
|
|
|
netplay_t *netplay;
|
2012-01-02 13:32:25 +01:00
|
|
|
char netplay_server[PATH_MAX];
|
2011-02-13 16:40:24 +01:00
|
|
|
bool netplay_enable;
|
2011-02-13 17:45:14 +01:00
|
|
|
bool netplay_is_client;
|
2012-01-11 19:22:18 +01:00
|
|
|
bool netplay_is_spectate;
|
2011-02-15 15:32:26 +01:00
|
|
|
unsigned netplay_sync_frames;
|
2011-02-18 14:49:15 +01:00
|
|
|
uint16_t netplay_port;
|
2012-01-21 18:12:42 +01:00
|
|
|
char netplay_nick[32];
|
2011-11-30 16:41:00 +01:00
|
|
|
#endif
|
2011-02-13 16:40:24 +01:00
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// FFmpeg record.
|
2011-01-05 20:07:55 +01:00
|
|
|
#ifdef HAVE_FFMPEG
|
2011-01-03 20:46:50 +01:00
|
|
|
ffemu_t *rec;
|
2012-01-02 13:32:25 +01:00
|
|
|
char record_path[PATH_MAX];
|
2012-11-23 22:46:21 +01:00
|
|
|
char record_config[PATH_MAX];
|
2011-01-05 20:07:55 +01:00
|
|
|
bool recording;
|
2011-10-06 23:43:48 +02:00
|
|
|
unsigned record_width;
|
|
|
|
unsigned record_height;
|
2012-08-25 22:38:49 +02:00
|
|
|
|
|
|
|
uint8_t *record_gpu_buffer;
|
|
|
|
size_t record_gpu_width;
|
|
|
|
size_t record_gpu_height;
|
2011-01-05 20:07:55 +01:00
|
|
|
#endif
|
2011-03-17 01:25:44 +01:00
|
|
|
|
2011-10-18 17:26:15 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 11:47:43 +02:00
|
|
|
const void *data;
|
2011-10-18 17:26:15 +02:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2012-04-05 11:47:43 +02:00
|
|
|
size_t pitch;
|
2011-10-18 17:26:15 +02:00
|
|
|
} frame_cache;
|
|
|
|
|
2012-12-14 20:33:07 +01:00
|
|
|
unsigned frame_count;
|
2011-03-17 01:25:44 +01:00
|
|
|
char title_buf[64];
|
2011-03-29 18:04:41 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-06-23 15:31:22 +02:00
|
|
|
struct string_list *list;
|
2011-03-29 18:04:41 +02:00
|
|
|
size_t ptr;
|
|
|
|
} shader_dir;
|
2011-04-17 12:29:58 +02:00
|
|
|
|
2011-05-15 17:16:29 +02:00
|
|
|
char sha256[64 + 1];
|
|
|
|
|
2012-10-15 09:57:08 +02:00
|
|
|
cheat_manager_t *cheat;
|
2012-10-14 20:34:16 +02:00
|
|
|
|
2013-01-10 06:45:44 +01:00
|
|
|
bool block_config_read;
|
|
|
|
|
2012-10-15 09:57:08 +02:00
|
|
|
// Settings and/or global state that is specific to a console-style implementation.
|
2012-10-14 20:34:16 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-10-15 06:24:39 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
2012-10-15 09:57:08 +02:00
|
|
|
{
|
2012-10-15 06:24:39 +02:00
|
|
|
rarch_resolution_t current;
|
|
|
|
rarch_resolution_t initial;
|
2012-10-15 09:57:08 +02:00
|
|
|
uint32_t *list;
|
|
|
|
unsigned count;
|
|
|
|
bool check;
|
|
|
|
} resolutions;
|
2012-10-15 06:24:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_viewport_t custom_vp;
|
|
|
|
} viewports;
|
|
|
|
|
|
|
|
unsigned orientation;
|
|
|
|
unsigned gamma_correction;
|
2013-01-11 19:44:13 +01:00
|
|
|
unsigned char flicker_filter_index;
|
|
|
|
unsigned char soft_filter_index;
|
2013-04-06 17:44:07 +02:00
|
|
|
bool pal_enable;
|
2012-10-15 06:24:39 +02:00
|
|
|
} screen;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-10-15 09:57:08 +02:00
|
|
|
unsigned mode;
|
2012-10-15 06:24:39 +02:00
|
|
|
#ifdef _XBOX1
|
2012-10-15 09:57:08 +02:00
|
|
|
unsigned volume_level;
|
2012-10-15 06:24:39 +02:00
|
|
|
#endif
|
|
|
|
} sound;
|
2012-10-14 20:34:16 +02:00
|
|
|
} console;
|
|
|
|
|
2012-12-14 02:06:14 +01:00
|
|
|
uint64_t lifecycle_state;
|
2013-01-12 03:13:03 +01:00
|
|
|
uint64_t lifecycle_mode_state;
|
2012-12-14 02:06:14 +01:00
|
|
|
|
2012-10-14 20:34:16 +02:00
|
|
|
|
2012-11-26 16:59:00 +01:00
|
|
|
// If this is non-NULL. RARCH_LOG and friends will write to this file.
|
|
|
|
FILE *log_file;
|
|
|
|
|
2013-01-05 23:44:49 +01:00
|
|
|
bool main_is_init;
|
2012-01-14 16:08:54 +01:00
|
|
|
bool error_in_init;
|
2013-05-22 15:35:28 +02:00
|
|
|
bool config_save_on_exit;
|
2012-01-14 16:08:54 +01:00
|
|
|
char error_string[1024];
|
|
|
|
jmp_buf error_sjlj_context;
|
2013-03-30 07:19:42 +01:00
|
|
|
unsigned menu_toggle_behavior;
|
2013-04-14 16:24:19 +02:00
|
|
|
|
2013-05-01 00:56:13 +02:00
|
|
|
bool libretro_no_rom;
|
2013-04-14 16:24:19 +02:00
|
|
|
bool libretro_dummy;
|
2010-12-29 19:18:37 +01:00
|
|
|
};
|
|
|
|
|
2013-01-06 03:06:47 +01:00
|
|
|
struct rarch_main_wrap
|
|
|
|
{
|
|
|
|
const char *rom_path;
|
|
|
|
const char *sram_path;
|
|
|
|
const char *state_path;
|
|
|
|
const char *config_path;
|
|
|
|
const char *libretro_path;
|
|
|
|
bool verbose;
|
2013-05-02 14:42:58 +02:00
|
|
|
bool no_rom;
|
2013-01-06 03:06:47 +01:00
|
|
|
};
|
|
|
|
|
2013-03-23 17:21:42 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
S_ASPECT_RATIO_DECREMENT = 0,
|
|
|
|
S_ASPECT_RATIO_INCREMENT,
|
2013-04-20 11:48:26 +02:00
|
|
|
S_SCALE_INTEGER_TOGGLE,
|
2013-03-23 17:21:42 +01:00
|
|
|
S_AUDIO_MUTE,
|
|
|
|
S_AUDIO_CONTROL_RATE_DECREMENT,
|
|
|
|
S_AUDIO_CONTROL_RATE_INCREMENT,
|
|
|
|
S_FRAME_ADVANCE,
|
|
|
|
S_HW_TEXTURE_FILTER,
|
|
|
|
S_RESOLUTION_PREVIOUS,
|
|
|
|
S_RESOLUTION_NEXT,
|
|
|
|
S_ROTATION_DECREMENT,
|
|
|
|
S_ROTATION_INCREMENT,
|
|
|
|
S_REWIND,
|
|
|
|
S_SAVESTATE_DECREMENT,
|
|
|
|
S_SAVESTATE_INCREMENT,
|
|
|
|
S_TRIPLE_BUFFERING,
|
|
|
|
S_REFRESH_RATE_DECREMENT,
|
|
|
|
S_REFRESH_RATE_INCREMENT,
|
|
|
|
S_INFO_DEBUG_MSG_TOGGLE,
|
|
|
|
S_INFO_MSG_TOGGLE,
|
|
|
|
S_DEF_ASPECT_RATIO,
|
2013-04-20 11:48:26 +02:00
|
|
|
S_DEF_SCALE_INTEGER,
|
2013-03-23 17:21:42 +01:00
|
|
|
S_DEF_AUDIO_MUTE,
|
|
|
|
S_DEF_AUDIO_CONTROL_RATE,
|
|
|
|
S_DEF_HW_TEXTURE_FILTER,
|
|
|
|
S_DEF_ROTATION,
|
|
|
|
S_DEF_TRIPLE_BUFFERING,
|
|
|
|
S_DEF_SAVE_STATE,
|
|
|
|
S_DEF_REFRESH_RATE,
|
|
|
|
S_DEF_INFO_DEBUG_MSG,
|
|
|
|
S_DEF_INFO_MSG,
|
|
|
|
};
|
|
|
|
|
2012-02-13 20:57:32 +01:00
|
|
|
// Public functions
|
2012-01-28 15:47:02 +01:00
|
|
|
void config_load(void);
|
2012-01-12 22:53:14 +01:00
|
|
|
void config_set_defaults(void);
|
2012-05-07 23:20:13 +02:00
|
|
|
const char *config_get_default_video(void);
|
|
|
|
const char *config_get_default_audio(void);
|
|
|
|
const char *config_get_default_input(void);
|
2013-03-23 17:21:42 +01:00
|
|
|
void settings_set(uint64_t settings);
|
2012-01-28 16:49:06 +01:00
|
|
|
|
2012-02-13 19:20:24 +01:00
|
|
|
#include "conf/config_file.h"
|
2012-01-28 15:47:02 +01:00
|
|
|
bool config_load_file(const char *path);
|
2013-01-05 22:18:59 +01:00
|
|
|
bool config_save_file(const char *path);
|
2012-02-29 19:25:54 +01:00
|
|
|
bool config_read_keybinds(const char *path);
|
2012-02-29 19:07:25 +01:00
|
|
|
bool config_save_keybinds(const char *path);
|
2010-12-29 19:00:21 +01:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
void rarch_game_reset(void);
|
|
|
|
void rarch_main_clear_state(void);
|
2013-01-08 22:52:56 +01:00
|
|
|
void rarch_init_system_info(void);
|
2012-10-15 21:49:35 +02:00
|
|
|
int rarch_main(int argc, char *argv[]);
|
2013-01-06 03:06:47 +01:00
|
|
|
int rarch_main_init_wrap(const struct rarch_main_wrap *args);
|
2012-04-21 23:25:32 +02:00
|
|
|
int rarch_main_init(int argc, char *argv[]);
|
2013-02-25 07:01:16 +01:00
|
|
|
bool rarch_main_idle_iterate(void);
|
2012-04-21 23:25:32 +02:00
|
|
|
bool rarch_main_iterate(void);
|
|
|
|
void rarch_main_deinit(void);
|
|
|
|
void rarch_render_cached_frame(void);
|
2012-05-28 23:30:29 +02:00
|
|
|
void rarch_init_msg_queue(void);
|
2012-05-30 01:20:14 +02:00
|
|
|
void rarch_deinit_msg_queue(void);
|
2013-03-16 10:35:22 +01:00
|
|
|
void rarch_input_poll(void);
|
2013-04-04 23:10:38 +02:00
|
|
|
void rarch_check_overlay(void);
|
2013-03-16 14:28:10 +01:00
|
|
|
void rarch_init_rewind(void);
|
|
|
|
void rarch_deinit_rewind(void);
|
2013-04-21 00:01:49 +02:00
|
|
|
void rarch_set_fullscreen(bool fullscreen);
|
2013-04-27 12:01:34 +02:00
|
|
|
void rarch_disk_control_set_eject(bool state, bool log);
|
|
|
|
void rarch_disk_control_set_index(unsigned index);
|
2013-04-27 15:14:59 +02:00
|
|
|
void rarch_disk_control_append_image(const char *path);
|
2013-04-29 15:56:49 +02:00
|
|
|
void rarch_init_autosave(void);
|
|
|
|
void rarch_deinit_autosave(void);
|
2013-06-16 13:44:07 +02:00
|
|
|
void rarch_take_screenshot(void);
|
2012-04-21 23:25:32 +02:00
|
|
|
|
|
|
|
void rarch_load_state(void);
|
|
|
|
void rarch_save_state(void);
|
|
|
|
void rarch_state_slot_increase(void);
|
|
|
|
void rarch_state_slot_decrease(void);
|
2012-02-13 20:57:32 +01:00
|
|
|
/////////
|
|
|
|
|
|
|
|
// Public data structures
|
2010-12-29 19:00:21 +01:00
|
|
|
extern struct settings g_settings;
|
2010-12-29 19:18:37 +01:00
|
|
|
extern struct global g_extern;
|
2012-02-13 20:57:32 +01:00
|
|
|
/////////
|
2010-12-29 19:18:37 +01:00
|
|
|
|
2013-02-09 10:36:39 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-07-28 17:32:30 +02:00
|
|
|
#include "retroarch_logger.h"
|
2011-01-05 19:29:29 +01:00
|
|
|
|
2011-10-27 23:40:34 +02:00
|
|
|
#ifndef max
|
|
|
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef min
|
|
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2012-10-26 23:15:34 +02:00
|
|
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
|
2012-04-21 23:25:32 +02:00
|
|
|
#define RARCH_SCALE_BASE 256
|
2011-10-27 23:40:34 +02:00
|
|
|
|
2011-03-07 19:12:14 +01:00
|
|
|
static inline uint32_t next_pow2(uint32_t v)
|
|
|
|
{
|
|
|
|
v--;
|
|
|
|
v |= v >> 1;
|
|
|
|
v |= v >> 2;
|
|
|
|
v |= v >> 4;
|
|
|
|
v |= v >> 8;
|
|
|
|
v |= v >> 16;
|
|
|
|
v++;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2012-11-21 20:47:20 +01:00
|
|
|
static inline uint32_t prev_pow2(uint32_t v)
|
|
|
|
{
|
|
|
|
v |= v >> 1;
|
|
|
|
v |= v >> 2;
|
|
|
|
v |= v >> 4;
|
|
|
|
v |= v >> 8;
|
|
|
|
v |= v >> 16;
|
|
|
|
return v - (v >> 1);
|
|
|
|
}
|
|
|
|
|
2011-07-26 00:53:24 +02:00
|
|
|
static inline uint8_t is_little_endian(void)
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
uint16_t x;
|
|
|
|
uint8_t y[2];
|
|
|
|
} u;
|
|
|
|
|
|
|
|
u.x = 1;
|
|
|
|
return u.y[0];
|
|
|
|
}
|
|
|
|
|
2012-03-25 23:48:27 +02:00
|
|
|
static inline uint32_t swap_if_big32(uint32_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian()) // Little-endian
|
|
|
|
return val;
|
|
|
|
else
|
|
|
|
return (val >> 24) | ((val >> 8) & 0xFF00) | ((val << 8) & 0xFF0000) | (val << 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t swap_if_little32(uint32_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian())
|
|
|
|
return (val >> 24) | ((val >> 8) & 0xFF00) | ((val << 8) & 0xFF0000) | (val << 24);
|
|
|
|
else
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t swap_if_big16(uint16_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian())
|
|
|
|
return val;
|
|
|
|
else
|
|
|
|
return (val >> 8) | (val << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t swap_if_little16(uint16_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian())
|
|
|
|
return (val >> 8) | (val << 8);
|
|
|
|
else
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2012-11-03 14:15:03 +01:00
|
|
|
static inline float db_to_gain(float db)
|
|
|
|
{
|
|
|
|
return powf(10.0f, db / 20.0f);
|
|
|
|
}
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
static inline void rarch_sleep(unsigned msec)
|
2011-10-17 20:46:38 +02:00
|
|
|
{
|
2012-07-01 13:33:30 +02:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 16:40:52 +01:00
|
|
|
sys_timer_usleep(1000 * msec);
|
2012-11-23 18:51:26 +01:00
|
|
|
#elif defined(PSP)
|
|
|
|
sceKernelDelayThread(1000 * msec);
|
2012-06-25 00:03:56 +02:00
|
|
|
#elif defined(_WIN32)
|
2011-11-30 16:26:23 +01:00
|
|
|
Sleep(msec);
|
2011-12-10 17:41:16 +01:00
|
|
|
#elif defined(XENON)
|
2011-12-13 23:38:05 +01:00
|
|
|
udelay(1000 * msec);
|
2013-05-25 18:07:30 +02:00
|
|
|
#elif defined(GEKKO) || defined(__PSL1GHT__) || defined(__QNX__)
|
2011-12-14 12:49:13 +01:00
|
|
|
usleep(1000 * msec);
|
2011-10-17 20:46:38 +02:00
|
|
|
#else
|
2011-12-24 13:46:12 +01:00
|
|
|
struct timespec tv = {0};
|
|
|
|
tv.tv_sec = msec / 1000;
|
|
|
|
tv.tv_nsec = (msec % 1000) * 1000000;
|
2011-10-17 20:46:38 +02:00
|
|
|
nanosleep(&tv, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-11-18 17:08:28 +01:00
|
|
|
#define rarch_assert(cond) do { \
|
|
|
|
if (!(cond)) { RARCH_ERR("Assertion failed at %s:%d.\n", __FILE__, __LINE__); exit(2); } \
|
|
|
|
} while(0)
|
2011-12-25 12:13:19 +01:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
static inline void rarch_fail(int error_code, const char *error)
|
2012-01-14 16:08:54 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
// We cannot longjmp unless we're in rarch_main_init().
|
2012-01-14 16:08:54 +01:00
|
|
|
// If not, something went very wrong, and we should just exit right away.
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_assert(g_extern.error_in_init);
|
2012-01-14 16:08:54 +01:00
|
|
|
|
|
|
|
strlcpy(g_extern.error_string, error, sizeof(g_extern.error_string));
|
|
|
|
longjmp(g_extern.error_sjlj_context, error_code);
|
|
|
|
}
|
|
|
|
|
2013-03-10 01:43:19 +01:00
|
|
|
// Helper macros and struct to keep track of many booleans.
|
|
|
|
// To check for multiple bits, use &&, not &.
|
|
|
|
// For OR, | can be used.
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t data[8];
|
|
|
|
} rarch_bits_t;
|
|
|
|
#define BIT_SET(a, bit) ((a).data[(bit) >> 5] |= 1 << ((bit) & 31))
|
|
|
|
#define BIT_CLEAR(a, bit) ((a).data[(bit) >> 5] &= ~(1 << ((bit) & 31)))
|
|
|
|
#define BIT_GET(a, bit) ((a).data[(bit) >> 5] & (1 << ((bit) & 31)))
|
|
|
|
#define BIT_CLEAR_ALL(a) memset(&(a), 0, sizeof(a));
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#endif
|
2011-03-07 19:12:14 +01:00
|
|
|
|
|
|
|
|