2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2012-01-08 00:08:18 +00:00
|
|
|
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
|
2010-12-24 00:33:40 +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-12-24 00:33:40 +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-12-24 00:33:40 +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-12-24 00:33:40 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifndef __RARCH_GENERAL_H
|
|
|
|
#define __RARCH_GENERAL_H
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2011-12-24 12:46:12 +00:00
|
|
|
#include "boolean.h"
|
2010-12-29 18:43:17 +00:00
|
|
|
#include <stdio.h>
|
2011-10-17 18:46:38 +00:00
|
|
|
#include <time.h>
|
2012-01-02 12:32:25 +00:00
|
|
|
#include <limits.h>
|
2012-01-14 15:08:54 +00:00
|
|
|
#include <setjmp.h>
|
2011-10-17 18:46:38 +00:00
|
|
|
#include "driver.h"
|
2011-01-03 19:46:50 +00:00
|
|
|
#include "record/ffemu.h"
|
2011-01-23 01:23:20 +00:00
|
|
|
#include "message.h"
|
2011-01-31 15:48:42 +00:00
|
|
|
#include "rewind.h"
|
2011-02-02 11:10:27 +00:00
|
|
|
#include "movie.h"
|
2011-02-10 20:16:59 +00:00
|
|
|
#include "autosave.h"
|
2011-03-07 18:12:14 +00:00
|
|
|
#include "dynamic.h"
|
2011-04-17 11:30:59 +00:00
|
|
|
#include "cheats.h"
|
2012-04-21 21:25:32 +00:00
|
|
|
#include "audio/ext/rarch_dsp.h"
|
2012-03-16 22:26:57 +00:00
|
|
|
#include "compat/strl.h"
|
2011-01-07 16:59:53 +00:00
|
|
|
|
2012-07-01 11:33:30 +00:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 15:40:52 +00:00
|
|
|
#include <sys/timer.h>
|
2012-03-25 22:36:40 +00:00
|
|
|
#include "ps3/ps3_input.h"
|
2011-11-30 15:40:52 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-13 22:38:05 +00:00
|
|
|
#ifdef XENON
|
|
|
|
#include <time/time.h>
|
2012-01-10 21:08:24 +00:00
|
|
|
#endif
|
|
|
|
|
2012-06-24 19:25:11 +00:00
|
|
|
#if defined(XENON) || defined(__CELLOS_LV2__) || defined(_XBOX1)
|
2012-01-07 10:32:39 +00:00
|
|
|
#undef PATH_MAX
|
|
|
|
#define PATH_MAX 4096
|
2011-12-13 22:38:05 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-07 16:59:53 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-01-05 19:07:55 +00:00
|
|
|
#include "config.h"
|
2011-01-07 16:59:53 +00:00
|
|
|
#endif
|
|
|
|
|
2011-11-30 15:27:16 +00:00
|
|
|
#ifdef HAVE_NETPLAY
|
|
|
|
#include "netplay.h"
|
2012-05-27 22:27:53 +00:00
|
|
|
#endif
|
|
|
|
|
2012-07-24 00:47:28 +00:00
|
|
|
#ifdef HAVE_COMMAND
|
|
|
|
#include "command.h"
|
2011-11-30 15:27:16 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-23 22:19:23 +00:00
|
|
|
#include "audio/resampler.h"
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2012-01-05 12:30:13 +00:00
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
2011-10-18 12:05:30 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2012-06-24 21:22:46 +00:00
|
|
|
#elif defined(_XBOX)
|
2012-01-05 12:30:13 +00:00
|
|
|
#include <xtl.h>
|
2012-03-04 22:15:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include "msvc/msvc_compat.h"
|
2011-08-22 15:05:27 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-02 20:02:36 +00:00
|
|
|
#define MAX_PLAYERS 8
|
2011-02-18 22:51:51 +00:00
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
enum rarch_shader_type
|
2011-02-28 15:59:31 +00:00
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_SHADER_CG,
|
|
|
|
RARCH_SHADER_BSNES,
|
|
|
|
RARCH_SHADER_AUTO,
|
|
|
|
RARCH_SHADER_NONE
|
2011-02-28 15:59:31 +00:00
|
|
|
};
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// All config related settings go here.
|
2010-12-29 18:00:21 +00:00
|
|
|
struct settings
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2010-12-29 18:00:21 +00:00
|
|
|
float xscale;
|
|
|
|
float yscale;
|
2010-12-29 18:18:37 +00:00
|
|
|
bool fullscreen;
|
2010-12-29 18:00:21 +00:00
|
|
|
unsigned fullscreen_x;
|
|
|
|
unsigned fullscreen_y;
|
|
|
|
bool vsync;
|
|
|
|
bool smooth;
|
|
|
|
bool force_aspect;
|
2011-05-05 12:13:12 +00:00
|
|
|
bool crop_overscan;
|
2011-01-06 19:01:32 +00:00
|
|
|
float aspect_ratio;
|
2012-04-09 20:19:51 +00:00
|
|
|
bool aspect_ratio_auto;
|
2012-01-02 12:32:25 +00:00
|
|
|
char cg_shader_path[PATH_MAX];
|
|
|
|
char bsnes_shader_path[PATH_MAX];
|
|
|
|
char filter_path[PATH_MAX];
|
2012-04-21 21:25:32 +00:00
|
|
|
enum rarch_shader_type shader_type;
|
2011-11-18 14:14:56 +00:00
|
|
|
float refresh_rate;
|
2011-01-23 02:16:14 +00:00
|
|
|
|
2011-03-06 17:19:31 +00:00
|
|
|
bool render_to_texture;
|
2012-01-12 23:29:01 +00:00
|
|
|
float fbo_scale_x;
|
|
|
|
float fbo_scale_y;
|
2012-01-02 12:32:25 +00:00
|
|
|
char second_pass_shader[PATH_MAX];
|
2011-03-06 17:19:31 +00:00
|
|
|
bool second_pass_smooth;
|
2012-01-02 12:32:25 +00:00
|
|
|
char shader_dir[PATH_MAX];
|
2011-03-06 17:19:31 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char font_path[PATH_MAX];
|
2011-01-23 01:48:06 +00:00
|
|
|
unsigned font_size;
|
2011-11-09 23:15:41 +00:00
|
|
|
bool font_enable;
|
2012-01-11 21:52:25 +00:00
|
|
|
bool font_scale;
|
2011-01-23 01:59:44 +00:00
|
|
|
float msg_pos_x;
|
|
|
|
float msg_pos_y;
|
2011-09-05 15:00:28 +00:00
|
|
|
float msg_color_r;
|
|
|
|
float msg_color_g;
|
|
|
|
float msg_color_b;
|
2011-01-23 02:16:14 +00:00
|
|
|
|
2011-04-21 11:12:45 +00:00
|
|
|
bool force_16bit;
|
2011-08-07 13:00:34 +00:00
|
|
|
bool disable_composition;
|
2011-05-11 15:52:16 +00:00
|
|
|
|
2011-08-11 03:25:31 +00:00
|
|
|
bool hires_record;
|
2012-03-02 21:19:49 +00:00
|
|
|
bool h264_record;
|
2011-08-11 03:25:31 +00:00
|
|
|
bool post_filter_record;
|
|
|
|
|
2012-04-01 14:12:04 +00:00
|
|
|
bool allow_rotate;
|
2012-01-02 12:32:25 +00:00
|
|
|
char external_driver[PATH_MAX];
|
2010-12-29 18:00:21 +00:00
|
|
|
} video;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2010-12-29 18:00:21 +00:00
|
|
|
bool enable;
|
|
|
|
unsigned out_rate;
|
2011-01-29 17:42:21 +00:00
|
|
|
float in_rate;
|
|
|
|
float rate_step;
|
2012-01-02 12:32:25 +00:00
|
|
|
char device[PATH_MAX];
|
2010-12-29 18:00:21 +00:00
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
2011-05-13 19:05:28 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char dsp_plugin[PATH_MAX];
|
|
|
|
char external_driver[PATH_MAX];
|
2012-02-14 00:16:37 +00:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
float rate_control_delta;
|
2010-12-29 18:00:21 +00:00
|
|
|
} audio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2012-07-07 15:19:32 +00:00
|
|
|
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
|
2010-12-29 19:05:57 +00:00
|
|
|
float axis_threshold;
|
2012-01-30 00:20:35 +00:00
|
|
|
int joypad_map[MAX_PLAYERS];
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifdef RARCH_CONSOLE
|
2012-05-23 06:37:31 +00:00
|
|
|
unsigned currently_selected_controller_no;
|
2012-03-03 13:57:28 +00:00
|
|
|
unsigned dpad_emulation[MAX_PLAYERS];
|
2012-07-27 23:37:15 +00:00
|
|
|
unsigned device[MAX_PLAYERS];
|
2012-03-03 13:57:28 +00:00
|
|
|
#endif
|
2011-02-20 11:12:53 +00:00
|
|
|
bool netplay_client_swap_input;
|
2010-12-29 18:00:21 +00:00
|
|
|
} input;
|
2010-12-30 12:54:49 +00:00
|
|
|
|
2012-04-07 10:17:40 +00:00
|
|
|
char libretro[PATH_MAX];
|
2012-01-02 12:32:25 +00:00
|
|
|
char cheat_database[PATH_MAX];
|
|
|
|
char cheat_settings_path[PATH_MAX];
|
2011-01-31 17:06:57 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char screenshot_directory[PATH_MAX];
|
2012-06-11 22:28:34 +00:00
|
|
|
char system_directory[PATH_MAX];
|
2011-05-15 15:16:29 +00:00
|
|
|
|
2011-01-31 17:06:57 +00:00
|
|
|
bool rewind_enable;
|
2011-11-01 20:00:41 +00:00
|
|
|
size_t rewind_buffer_size;
|
2011-02-01 16:30:18 +00:00
|
|
|
unsigned rewind_granularity;
|
2011-02-05 20:45:44 +00:00
|
|
|
|
2012-03-04 11:01:07 +00:00
|
|
|
float slowmotion_ratio;
|
|
|
|
|
2011-02-05 20:45:44 +00:00
|
|
|
bool pause_nonactive;
|
2011-02-10 20:16:59 +00:00
|
|
|
unsigned autosave_interval;
|
2011-09-16 13:32:21 +00:00
|
|
|
|
|
|
|
bool block_sram_overwrite;
|
2011-09-27 13:31:25 +00:00
|
|
|
bool savestate_auto_index;
|
2012-06-02 19:33:37 +00:00
|
|
|
bool savestate_auto_save;
|
2012-05-27 12:12:29 +00:00
|
|
|
|
|
|
|
bool network_cmd_enable;
|
|
|
|
uint16_t network_cmd_port;
|
2012-07-24 00:47:28 +00:00
|
|
|
bool stdin_cmd_enable;
|
2010-12-29 18:00:21 +00:00
|
|
|
};
|
|
|
|
|
2012-01-12 21:53:14 +00:00
|
|
|
// Settings and/or global state that is specific to a console-style implementation.
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifdef RARCH_CONSOLE
|
2012-05-22 00:36:31 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uint32_t x;
|
|
|
|
uint32_t y;
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
2012-05-22 13:36:29 +00:00
|
|
|
} rarch_viewport_t;
|
2012-05-22 00:36:31 +00:00
|
|
|
|
2012-01-12 21:53:14 +00:00
|
|
|
struct console_settings
|
|
|
|
{
|
2012-03-03 16:23:00 +00:00
|
|
|
bool custom_bgm_enable;
|
2012-05-27 17:29:10 +00:00
|
|
|
bool check_available_resolutions;
|
2012-01-12 21:53:14 +00:00
|
|
|
bool block_config_read;
|
2012-01-30 16:18:31 +00:00
|
|
|
bool default_sram_dir_enable;
|
|
|
|
bool default_savestate_dir_enable;
|
2012-05-06 18:05:13 +00:00
|
|
|
bool fbo_enabled;
|
2012-08-05 16:42:54 +00:00
|
|
|
bool fps_info_msg_enable;
|
2012-02-11 18:22:51 +00:00
|
|
|
bool frame_advance_enable;
|
2012-05-28 21:19:40 +00:00
|
|
|
#ifdef _XBOX
|
|
|
|
bool menus_hd_enable;
|
|
|
|
#endif
|
2012-04-21 21:25:32 +00:00
|
|
|
bool initialize_rarch_enable;
|
2012-05-28 20:43:08 +00:00
|
|
|
bool info_msg_enable;
|
|
|
|
bool gamma_correction_enable;
|
2012-01-30 08:53:16 +00:00
|
|
|
bool ingame_menu_enable;
|
2012-02-02 15:59:06 +00:00
|
|
|
bool menu_enable;
|
2012-02-02 17:39:09 +00:00
|
|
|
bool overscan_enable;
|
2012-02-20 06:50:59 +00:00
|
|
|
bool return_to_launcher;
|
2012-01-28 10:38:24 +00:00
|
|
|
bool screenshots_enable;
|
2012-01-30 08:53:16 +00:00
|
|
|
bool throttle_enable;
|
|
|
|
bool triple_buffering_enable;
|
2012-02-02 17:39:09 +00:00
|
|
|
float overscan_amount;
|
2012-01-31 13:12:00 +00:00
|
|
|
uint32_t aspect_ratio_index;
|
2012-05-22 00:36:31 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-05-22 13:36:29 +00:00
|
|
|
rarch_viewport_t custom_vp;
|
2012-05-22 00:36:31 +00:00
|
|
|
} viewports;
|
2012-02-10 16:17:44 +00:00
|
|
|
uint32_t emulator_initialized;
|
2012-02-28 13:42:29 +00:00
|
|
|
uint32_t external_launcher_support;
|
2012-01-30 14:59:15 +00:00
|
|
|
uint32_t screen_orientation;
|
2012-01-17 22:59:23 +00:00
|
|
|
uint32_t current_resolution_index;
|
|
|
|
uint32_t current_resolution_id;
|
2012-02-13 13:33:24 +00:00
|
|
|
uint32_t ingame_menu_item;
|
2012-01-17 22:59:23 +00:00
|
|
|
uint32_t initial_resolution_id;
|
2012-03-03 13:57:28 +00:00
|
|
|
uint32_t map_dpad_to_stick;
|
2012-02-02 15:59:06 +00:00
|
|
|
uint32_t mode_switch;
|
2012-03-03 10:46:46 +00:00
|
|
|
uint32_t sound_mode;
|
2012-01-28 10:38:24 +00:00
|
|
|
uint32_t *supported_resolutions;
|
|
|
|
uint32_t supported_resolutions_count;
|
2012-02-20 21:34:11 +00:00
|
|
|
uint32_t control_timer_expiration_frame_count;
|
2012-02-11 14:31:11 +00:00
|
|
|
uint32_t timer_expiration_frame_count;
|
2012-05-22 00:19:40 +00:00
|
|
|
uint32_t input_loop;
|
2012-07-26 11:08:08 +00:00
|
|
|
#ifdef HAVE_ZLIB
|
|
|
|
uint32_t zip_extract_mode;
|
|
|
|
#endif
|
2012-07-07 17:56:46 +00:00
|
|
|
#ifdef _XBOX
|
2012-05-22 14:04:39 +00:00
|
|
|
uint32_t color_format;
|
2012-02-04 12:33:19 +00:00
|
|
|
DWORD volume_device_type;
|
|
|
|
#endif
|
2012-02-20 19:24:23 +00:00
|
|
|
char cgp_path[PATH_MAX];
|
2012-03-01 13:22:16 +00:00
|
|
|
char input_cfg_path[PATH_MAX];
|
2012-01-21 01:58:19 +00:00
|
|
|
char rom_path[PATH_MAX];
|
2012-01-30 14:16:29 +00:00
|
|
|
char default_rom_startup_dir[PATH_MAX];
|
|
|
|
char default_savestate_dir[PATH_MAX];
|
|
|
|
char default_sram_dir[PATH_MAX];
|
2012-02-28 13:42:29 +00:00
|
|
|
char launch_app_on_exit[PATH_MAX];
|
2012-01-31 17:51:45 +00:00
|
|
|
float menu_font_size;
|
2012-07-16 19:49:51 +00:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2012-03-01 13:22:16 +00:00
|
|
|
oskutil_params oskutil_handle;
|
|
|
|
#endif
|
2012-01-12 21:53:14 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
enum rarch_game_type
|
2011-01-12 17:05:57 +00:00
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
RARCH_CART_NORMAL = 0,
|
|
|
|
RARCH_CART_SGB,
|
|
|
|
RARCH_CART_BSX,
|
|
|
|
RARCH_CART_BSX_SLOTTED,
|
|
|
|
RARCH_CART_SUFAMI
|
2011-01-12 17:05:57 +00:00
|
|
|
};
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// All run-time- / command line flag-related globals go here.
|
2010-12-29 18:18:37 +00:00
|
|
|
struct global
|
|
|
|
{
|
|
|
|
bool verbose;
|
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2011-07-09 06:37:08 +00:00
|
|
|
bool force_fullscreen;
|
2010-12-29 18:43:17 +00:00
|
|
|
|
2011-01-10 13:29:00 +00:00
|
|
|
bool has_mouse[2];
|
|
|
|
bool has_scope[2];
|
2011-01-10 15:53:37 +00:00
|
|
|
bool has_justifier;
|
|
|
|
bool has_justifiers;
|
|
|
|
bool has_multitap;
|
2011-06-19 09:11:04 +00:00
|
|
|
bool disconnect_device[2];
|
2011-01-10 06:58:11 +00:00
|
|
|
|
2010-12-29 18:43:17 +00:00
|
|
|
FILE *rom_file;
|
2012-04-21 21:25:32 +00:00
|
|
|
enum rarch_game_type game_type;
|
2011-02-02 10:47:05 +00:00
|
|
|
uint32_t cart_crc;
|
2011-01-12 17:05:57 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char gb_rom_path[PATH_MAX];
|
|
|
|
char bsx_rom_path[PATH_MAX];
|
|
|
|
char sufami_rom_path[2][PATH_MAX];
|
2011-02-11 13:27:19 +00:00
|
|
|
bool has_set_save_path;
|
|
|
|
bool has_set_state_path;
|
2011-01-12 17:05:57 +00:00
|
|
|
|
2011-01-19 11:54:19 +00:00
|
|
|
#ifdef HAVE_CONFIGFILE
|
2012-01-02 12:32:25 +00:00
|
|
|
char config_path[PATH_MAX];
|
2011-01-19 11:54:19 +00:00
|
|
|
#endif
|
2011-01-23 01:48:06 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char basename[PATH_MAX];
|
2012-04-07 09:55:37 +00:00
|
|
|
char fullpath[PATH_MAX];
|
2012-01-02 12:32:25 +00: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-17 22:24:57 +00:00
|
|
|
|
2012-03-20 22:45:58 +00:00
|
|
|
bool block_patch;
|
2011-08-17 22:24:57 +00:00
|
|
|
bool ups_pref;
|
|
|
|
bool bps_pref;
|
2012-03-20 22:08:34 +00:00
|
|
|
bool ips_pref;
|
2012-01-02 12:32:25 +00:00
|
|
|
char ups_name[PATH_MAX];
|
|
|
|
char bps_name[PATH_MAX];
|
2012-03-20 22:08:34 +00:00
|
|
|
char ips_name[PATH_MAX];
|
2011-01-03 19:46:50 +00:00
|
|
|
|
2011-01-23 22:09:54 +00:00
|
|
|
unsigned state_slot;
|
|
|
|
|
2011-10-27 21:40:34 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 09:47:43 +00:00
|
|
|
struct retro_system_info info;
|
2012-04-07 09:55:37 +00:00
|
|
|
struct retro_system_av_info av_info;
|
2012-02-06 14:51:35 +00:00
|
|
|
|
|
|
|
char *environment;
|
|
|
|
char *environment_split;
|
2012-04-01 17:20:37 +00:00
|
|
|
|
|
|
|
unsigned rotation;
|
2012-05-22 18:14:07 +00:00
|
|
|
bool shutdown;
|
2012-06-01 14:50:38 +00:00
|
|
|
unsigned performance_level;
|
2012-06-16 13:07:31 +00:00
|
|
|
bool rgb32;
|
2011-10-27 21:40:34 +00:00
|
|
|
} system;
|
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
rarch_resampler_t *source;
|
2011-02-06 12:29:48 +00:00
|
|
|
|
2012-07-06 15:36:37 +00:00
|
|
|
#ifndef HAVE_FIXED_POINT
|
2011-01-14 14:34:38 +00:00
|
|
|
float *data;
|
2012-07-06 15:36:37 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
size_t data_ptr;
|
|
|
|
size_t chunk_size;
|
|
|
|
size_t nonblock_chunk_size;
|
|
|
|
size_t block_chunk_size;
|
|
|
|
|
2011-10-15 14:16:13 +00:00
|
|
|
double src_ratio;
|
|
|
|
|
2011-01-15 19:37:42 +00:00
|
|
|
bool use_float;
|
2011-11-26 14:54:58 +00:00
|
|
|
bool mute;
|
2011-01-15 19:37:42 +00:00
|
|
|
|
2012-07-06 15:36:37 +00:00
|
|
|
sample_t *outsamples;
|
2011-01-14 14:34:38 +00:00
|
|
|
int16_t *conv_outsamples;
|
2011-05-13 19:05:28 +00:00
|
|
|
|
2011-10-15 12:33:41 +00:00
|
|
|
int16_t *rewind_buf;
|
|
|
|
size_t rewind_ptr;
|
|
|
|
size_t rewind_size;
|
|
|
|
|
2011-05-13 19:05:28 +00:00
|
|
|
dylib_t dsp_lib;
|
2012-04-21 21:25:32 +00:00
|
|
|
const rarch_dsp_plugin_t *dsp_plugin;
|
2011-05-13 19:05:28 +00:00
|
|
|
void *dsp_handle;
|
2012-02-14 00:16:37 +00:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
double orig_src_ratio;
|
|
|
|
size_t driver_buffer_size;
|
2011-01-14 14:34:38 +00:00
|
|
|
} audio_data;
|
|
|
|
|
2011-03-07 18:12:14 +00: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);
|
|
|
|
} filter;
|
|
|
|
|
2011-01-23 01:23:20 +00:00
|
|
|
msg_queue_t *msg_queue;
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Rewind support.
|
2011-01-31 15:48:42 +00:00
|
|
|
state_manager_t *state_manager;
|
|
|
|
void *state_buf;
|
2011-12-27 17:19:45 +00:00
|
|
|
size_t state_size;
|
2011-01-31 16:24:31 +00:00
|
|
|
bool frame_is_reverse;
|
2011-01-31 15:48:42 +00:00
|
|
|
|
2012-03-25 22:04:12 +00:00
|
|
|
#ifdef HAVE_BSV_MOVIE
|
2011-11-20 19:19:05 +00:00
|
|
|
// Movie playback/recording support.
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bsv_movie_t *movie;
|
2012-01-02 12:32:25 +00:00
|
|
|
char movie_path[PATH_MAX];
|
2011-11-20 19:19:05 +00:00
|
|
|
bool movie_playback;
|
|
|
|
|
|
|
|
// Immediate playback/recording.
|
2012-01-02 12:32:25 +00:00
|
|
|
char movie_start_path[PATH_MAX];
|
2011-11-20 19:19:05 +00:00
|
|
|
bool movie_start_recording;
|
|
|
|
bool movie_start_playback;
|
|
|
|
bool movie_end;
|
|
|
|
} bsv;
|
2012-03-25 22:04:12 +00:00
|
|
|
#endif
|
2011-11-20 19:19:05 +00:00
|
|
|
|
|
|
|
bool sram_load_disable;
|
|
|
|
bool sram_save_disable;
|
2012-01-14 13:08:43 +00:00
|
|
|
bool use_sram;
|
2011-11-18 17:03:24 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Pausing support
|
2011-02-05 19:46:58 +00:00
|
|
|
bool is_paused;
|
2011-10-17 19:30:58 +00:00
|
|
|
bool is_oneshot;
|
2012-03-04 11:01:07 +00:00
|
|
|
bool is_slowmotion;
|
2011-02-05 19:46:58 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Autosave support.
|
2011-02-11 12:44:31 +00:00
|
|
|
autosave_t *autosave[2];
|
2011-02-10 20:16:59 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Netplay.
|
2011-11-30 15:41:00 +00:00
|
|
|
#ifdef HAVE_NETPLAY
|
2011-02-13 15:40:24 +00:00
|
|
|
netplay_t *netplay;
|
2012-01-02 12:32:25 +00:00
|
|
|
char netplay_server[PATH_MAX];
|
2011-02-13 15:40:24 +00:00
|
|
|
bool netplay_enable;
|
2011-02-13 16:45:14 +00:00
|
|
|
bool netplay_is_client;
|
2012-01-11 18:22:18 +00:00
|
|
|
bool netplay_is_spectate;
|
2011-02-15 14:32:26 +00:00
|
|
|
unsigned netplay_sync_frames;
|
2011-02-18 13:49:15 +00:00
|
|
|
uint16_t netplay_port;
|
2012-01-21 17:12:42 +00:00
|
|
|
char netplay_nick[32];
|
2011-11-30 15:41:00 +00:00
|
|
|
#endif
|
2011-02-13 15:40:24 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// FFmpeg record.
|
2011-01-05 19:07:55 +00:00
|
|
|
#ifdef HAVE_FFMPEG
|
2011-01-03 19:46:50 +00:00
|
|
|
ffemu_t *rec;
|
2012-01-02 12:32:25 +00:00
|
|
|
char record_path[PATH_MAX];
|
2011-01-05 19:07:55 +00:00
|
|
|
bool recording;
|
2011-10-06 21:43:48 +00:00
|
|
|
unsigned record_width;
|
|
|
|
unsigned record_height;
|
2011-01-05 19:07:55 +00:00
|
|
|
#endif
|
2011-03-17 00:25:44 +00:00
|
|
|
|
2011-10-18 15:26:15 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 09:47:43 +00:00
|
|
|
const void *data;
|
2011-10-18 15:26:15 +00:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2012-04-05 09:47:43 +00:00
|
|
|
size_t pitch;
|
2011-10-18 15:26:15 +00:00
|
|
|
} frame_cache;
|
|
|
|
|
2011-03-17 00:25:44 +00:00
|
|
|
char title_buf[64];
|
2011-03-29 16:04:41 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-06-23 13:31:22 +00:00
|
|
|
struct string_list *list;
|
2011-03-29 16:04:41 +00:00
|
|
|
size_t ptr;
|
|
|
|
} shader_dir;
|
2011-04-17 10:29:58 +00:00
|
|
|
|
2011-05-15 15:16:29 +00:00
|
|
|
char sha256[64 + 1];
|
|
|
|
|
2011-04-17 11:30:59 +00:00
|
|
|
#ifdef HAVE_XML
|
|
|
|
cheat_manager_t *cheat;
|
|
|
|
#endif
|
2012-01-14 15:08:54 +00:00
|
|
|
|
|
|
|
bool error_in_init;
|
|
|
|
char error_string[1024];
|
|
|
|
jmp_buf error_sjlj_context;
|
2010-12-29 18:18:37 +00:00
|
|
|
};
|
|
|
|
|
2012-02-13 19:57:32 +00:00
|
|
|
// Public functions
|
2012-01-28 14:47:02 +00:00
|
|
|
void config_load(void);
|
2012-01-12 21:53:14 +00:00
|
|
|
void config_set_defaults(void);
|
2012-05-07 21:20:13 +00:00
|
|
|
const char *config_get_default_video(void);
|
|
|
|
const char *config_get_default_audio(void);
|
|
|
|
const char *config_get_default_input(void);
|
2012-01-28 15:49:06 +00:00
|
|
|
|
2012-01-28 14:41:57 +00:00
|
|
|
#ifdef HAVE_CONFIGFILE
|
2012-02-13 18:20:24 +00:00
|
|
|
#include "conf/config_file.h"
|
2012-01-28 14:47:02 +00:00
|
|
|
bool config_load_file(const char *path);
|
2012-02-29 18:25:54 +00:00
|
|
|
bool config_read_keybinds(const char *path);
|
2012-02-29 18:07:25 +00:00
|
|
|
bool config_save_keybinds(const char *path);
|
2012-01-28 14:41:57 +00:00
|
|
|
#endif
|
2010-12-29 18:00:21 +00:00
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
void rarch_game_reset(void);
|
|
|
|
void rarch_main_clear_state(void);
|
|
|
|
int rarch_main_init(int argc, char *argv[]);
|
|
|
|
bool rarch_main_iterate(void);
|
|
|
|
void rarch_main_deinit(void);
|
|
|
|
void rarch_render_cached_frame(void);
|
2012-05-28 21:30:29 +00:00
|
|
|
void rarch_init_msg_queue(void);
|
2012-05-29 23:20:14 +00:00
|
|
|
void rarch_deinit_msg_queue(void);
|
2012-04-21 21:25:32 +00: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 19:57:32 +00:00
|
|
|
/////////
|
|
|
|
|
|
|
|
// Public data structures
|
2010-12-29 18:00:21 +00:00
|
|
|
extern struct settings g_settings;
|
2010-12-29 18:18:37 +00:00
|
|
|
extern struct global g_extern;
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifdef RARCH_CONSOLE
|
2012-01-12 21:53:14 +00:00
|
|
|
extern struct console_settings g_console;
|
|
|
|
#endif
|
2012-02-13 19:57:32 +00:00
|
|
|
/////////
|
2010-12-29 18:18:37 +00:00
|
|
|
|
2012-07-28 15:32:30 +00:00
|
|
|
#include "retroarch_logger.h"
|
2011-01-05 18:29:29 +00:00
|
|
|
|
2011-10-27 21:40:34 +00:00
|
|
|
#ifndef max
|
|
|
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef min
|
|
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
#define RARCH_SCALE_BASE 256
|
2011-10-27 21:40:34 +00:00
|
|
|
|
2011-03-07 18:12:14 +00: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;
|
|
|
|
}
|
|
|
|
|
2011-07-25 22:53:24 +00: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 21:48:27 +00: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-01-02 11:12:30 +00:00
|
|
|
#ifdef GEKKO
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
static inline void rarch_sleep(unsigned msec)
|
2011-10-17 18:46:38 +00:00
|
|
|
{
|
2012-07-01 11:33:30 +00:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 15:40:52 +00:00
|
|
|
sys_timer_usleep(1000 * msec);
|
2012-06-24 22:03:56 +00:00
|
|
|
#elif defined(_WIN32)
|
2011-11-30 15:26:23 +00:00
|
|
|
Sleep(msec);
|
2011-12-10 16:41:16 +00:00
|
|
|
#elif defined(XENON)
|
2011-12-13 22:38:05 +00:00
|
|
|
udelay(1000 * msec);
|
2011-12-14 11:49:13 +00:00
|
|
|
#elif defined(GEKKO)
|
|
|
|
usleep(1000 * msec);
|
2011-10-17 18:46:38 +00:00
|
|
|
#else
|
2011-12-24 12:46:12 +00:00
|
|
|
struct timespec tv = {0};
|
|
|
|
tv.tv_sec = msec / 1000;
|
|
|
|
tv.tv_nsec = (msec % 1000) * 1000000;
|
2011-10-17 18:46:38 +00:00
|
|
|
nanosleep(&tv, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
#define rarch_assert(cond) \
|
|
|
|
if (!(cond)) { RARCH_ERR("Assertion failed at %s:%d.\n", __FILE__, __LINE__); exit(2); }
|
2011-12-25 11:13:19 +00:00
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
static inline void rarch_fail(int error_code, const char *error)
|
2012-01-14 15:08:54 +00:00
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
// We cannot longjmp unless we're in rarch_main_init().
|
2012-01-14 15:08:54 +00:00
|
|
|
// If not, something went very wrong, and we should just exit right away.
|
2012-04-21 21:25:32 +00:00
|
|
|
rarch_assert(g_extern.error_in_init);
|
2012-01-14 15:08:54 +00:00
|
|
|
|
|
|
|
strlcpy(g_extern.error_string, error, sizeof(g_extern.error_string));
|
|
|
|
longjmp(g_extern.error_sjlj_context, error_code);
|
|
|
|
}
|
|
|
|
|
2010-12-24 00:26:36 +00:00
|
|
|
#endif
|
2011-03-07 18:12:14 +00:00
|
|
|
|
|
|
|
|