RetroArch/general.h

746 lines
16 KiB
C
Raw Normal View History

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
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>
#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"
#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
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
// Platform-specific headers
// PS3
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
2011-11-30 15:40:52 +00:00
#include <sys/timer.h>
#include "ps3/ps3_input.h"
2011-11-30 15:40:52 +00:00
#endif
// libxenon
2011-12-13 22:38:05 +00:00
#ifdef XENON
#include <time/time.h>
#endif
// Windows
2012-11-23 09:34:40 +00:00
#if defined(_WIN32) && !defined(_XBOX)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "msvc/msvc_compat.h"
2012-11-23 09:34:40 +00:00
#endif
// XBox
#if defined(_XBOX)
#include <xtl.h>
2012-11-23 09:34:40 +00:00
#include "msvc/msvc_compat.h"
#endif
// Wii
#if defined(GEKKO)
#include <unistd.h>
2011-12-13 22:38:05 +00:00
#endif
// 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 16:59:53 +00:00
#endif
#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"
#endif
#include "audio/resampler.h"
#define MAX_PLAYERS 8
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
{
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;
2012-10-05 12:15:54 +00:00
bool windowed_fullscreen;
2012-10-12 19:15:58 +00:00
unsigned monitor_index;
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;
bool aspect_ratio_auto;
unsigned aspect_ratio_idx;
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;
float refresh_rate;
2011-01-23 02:16:14 +00:00
2011-03-06 17:19:31 +00:00
bool render_to_texture;
struct
{
float scale_x;
float scale_y;
} fbo;
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
bool disable_composition;
2011-05-11 15:52:16 +00:00
2011-08-11 03:25:31 +00:00
bool post_filter_record;
2012-08-25 20:38:49 +00:00
bool gpu_record;
bool gpu_screenshot;
2011-08-11 03:25:31 +00:00
2012-04-01 14:12:04 +00:00
bool allow_rotate;
2010-12-29 18:00:21 +00:00
} video;
struct
{
char driver[32];
2010-12-29 18:00:21 +00:00
bool enable;
unsigned out_rate;
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];
2012-02-14 00:16:37 +00:00
bool rate_control;
float rate_control_delta;
float volume; // dB scale
2010-12-29 18:00:21 +00:00
} audio;
struct
{
char driver[32];
2012-07-07 15:19:32 +00:00
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
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
unsigned currently_selected_controller_no;
unsigned dpad_emulation[MAX_PLAYERS];
unsigned map_dpad_to_stick;
unsigned device[MAX_PLAYERS];
#endif
2011-02-20 11:12:53 +00:00
bool netplay_client_swap_input;
2012-10-01 20:15:48 +00:00
unsigned turbo_period;
unsigned turbo_duty_cycle;
2012-12-20 19:23:53 +00:00
char overlay[PATH_MAX];
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];
char system_directory[PATH_MAX];
2011-05-15 15:16:29 +00:00
2011-01-31 17:06:57 +00:00
bool rewind_enable;
size_t rewind_buffer_size;
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;
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;
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-04-21 21:25:32 +00:00
enum rarch_game_type
{
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
};
typedef struct rarch_boolean_state
{
bool enable;
unsigned value;
} rarch_boolean_state_t;
typedef struct rarch_frame_count
{
unsigned expire_frame;
} rarch_frame_count_t;
typedef struct rarch_resolution
{
unsigned idx;
unsigned id;
} rarch_resolution_t;
typedef struct rarch_viewport
{
int x;
int y;
unsigned width;
unsigned height;
} rarch_viewport_t;
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;
bool force_fullscreen;
2010-12-29 18:43:17 +00:00
2012-08-16 19:20:38 +00:00
bool disconnect_device[MAX_PLAYERS];
bool has_mouse[MAX_PLAYERS];
bool has_dualanalog[MAX_PLAYERS];
bool has_scope;
bool has_justifier;
bool has_justifiers;
bool has_multitap;
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;
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];
bool has_set_save_path;
bool has_set_state_path;
2012-01-02 12:32:25 +00:00
char config_path[PATH_MAX];
2012-09-10 22:10:44 +00:00
char append_config_path[PATH_MAX];
#ifdef HAVE_FILE_LOGGER
char default_log_file[PATH_MAX];
#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
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;
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;
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;
unsigned performance_level;
enum retro_pixel_format pix_fmt;
bool force_nonblock;
2012-10-01 20:15:48 +00:00
const char *input_desc_btn[MAX_PLAYERS][RARCH_FIRST_CUSTOM_BIND];
retro_keyboard_event_t key_event;
} system;
struct
{
2012-04-21 21:25:32 +00:00
rarch_resampler_t *source;
float *data;
2012-07-06 15:36:37 +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;
bool use_float;
2011-11-26 14:54:58 +00:00
bool mute;
2012-07-06 15:36:37 +00:00
sample_t *outsamples;
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;
float volume_db;
float volume_gain;
} 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);
2012-10-21 20:58:33 +00:00
// CPU filters only work on *XRGB1555*. We have to convert to XRGB1555 first.
struct scaler_ctx scaler;
2012-10-21 21:24:25 +00:00
uint16_t *scaler_out;
2011-03-07 18:12:14 +00:00
} filter;
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;
size_t state_size;
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;
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
2012-10-01 20:15:48 +00:00
// Turbo support
bool turbo_frame_enable[MAX_PLAYERS];
uint16_t turbo_enable[MAX_PLAYERS];
unsigned turbo_count;
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.
#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];
#endif
2011-02-13 15:40:24 +00:00
2011-02-18 22:51:51 +00:00
// FFmpeg record.
#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];
char record_config[PATH_MAX];
bool recording;
2011-10-06 21:43:48 +00:00
unsigned record_width;
unsigned record_height;
2012-08-25 20:38:49 +00:00
uint8_t *record_gpu_buffer;
size_t record_gpu_width;
size_t record_gpu_height;
#endif
2011-03-17 00:25:44 +00:00
struct
{
2012-04-05 09:47:43 +00:00
const void *data;
unsigned width;
unsigned height;
2012-04-05 09:47:43 +00:00
size_t pitch;
} frame_cache;
unsigned frame_count;
2011-03-17 00:25:44 +00:00
char title_buf[64];
struct
{
struct string_list *list;
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];
2012-10-15 07:57:08 +00:00
#ifdef HAVE_XML
cheat_manager_t *cheat;
#endif
2012-10-15 07:57:08 +00:00
// Settings and/or global state that is specific to a console-style implementation.
struct
{
bool block_config_read;
bool initialize_rarch_enable;
unsigned emulator_initialized;
rarch_frame_count_t general_timers[2];
struct
{
struct
2012-10-15 07:57:08 +00:00
{
unsigned idx;
2012-10-15 07:57:08 +00:00
} ingame_menu;
2012-10-15 07:57:08 +00:00
unsigned mode;
unsigned input_loop;
2012-10-15 07:57:08 +00:00
float font_size;
struct
{
rarch_boolean_state_t msg_fps;
rarch_boolean_state_t msg_info;
rarch_boolean_state_t ingame_menu;
rarch_boolean_state_t rmenu;
2012-11-20 05:08:58 +00:00
rarch_boolean_state_t rmenu_widescreen;
rarch_boolean_state_t rmenu_hd;
} state;
} rmenu;
struct
{
bool enable;
char launch_app[PATH_MAX];
unsigned support;
} external_launch;
struct
{
struct
2012-10-15 07:57:08 +00:00
{
rarch_resolution_t current;
rarch_resolution_t initial;
2012-10-15 07:57:08 +00:00
uint32_t *list;
unsigned count;
bool check;
} resolutions;
struct
{
rarch_viewport_t custom_vp;
} viewports;
unsigned orientation;
float overscan_amount;
unsigned gamma_correction;
struct
{
rarch_boolean_state_t triple_buffering;
rarch_boolean_state_t overscan;
rarch_boolean_state_t flicker_filter;
rarch_boolean_state_t soft_filter;
rarch_boolean_state_t screenshots;
rarch_boolean_state_t throttle;
} state;
} screen;
struct
{
2012-10-15 07:57:08 +00:00
rarch_boolean_state_t custom_bgm;
unsigned mode;
#ifdef _XBOX1
2012-10-15 07:57:08 +00:00
unsigned volume_level;
#endif
} sound;
struct
{
struct
{
char default_rom_startup_dir[PATH_MAX];
2012-10-15 07:57:08 +00:00
char default_savestate_dir[PATH_MAX];
char default_sram_dir[PATH_MAX];
} paths;
struct
{
rarch_boolean_state_t default_sram_dir;
rarch_boolean_state_t default_savestate_dir;
} state;
} main_wrap;
#ifdef HAVE_OSKUTIL
struct
{
oskutil_params oskutil_handle;
} misc;
#endif
} console;
bool draw_menu;
uint64_t lifecycle_state;
struct
{
char rom_path[PATH_MAX];
char cgp_path[PATH_MAX];
char input_cfg_path[PATH_MAX];
#ifdef HAVE_ZLIB
unsigned zip_extract_mode;
#endif
#ifdef _XBOX
DWORD volume_device_type;
#endif
} file_state;
// If this is non-NULL. RARCH_LOG and friends will write to this file.
FILE *log_file;
bool error_in_init;
char error_string[1024];
jmp_buf error_sjlj_context;
2010-12-29 18:18:37 +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-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);
bool config_save_keybinds(const char *path);
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(int argc, char *argv[]);
2012-04-21 21:25:32 +00:00
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);
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);
/////////
// 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;
/////////
2010-12-29 18:18:37 +00:00
#include "retroarch_logger.h"
#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 21:15:34 +00:00
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
2012-04-21 21:25:32 +00:00
#define RARCH_SCALE_BASE 256
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;
}
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-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];
}
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;
}
static inline float db_to_gain(float db)
{
return powf(10.0f, db / 20.0f);
}
2012-04-21 21:25:32 +00:00
static inline void rarch_sleep(unsigned msec)
2011-10-17 18:46:38 +00:00
{
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
2011-11-30 15:40:52 +00:00
sys_timer_usleep(1000 * msec);
2012-11-23 17:51:26 +00:00
#elif defined(PSP)
sceKernelDelayThread(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
}
#define rarch_assert(cond) do { \
if (!(cond)) { RARCH_ERR("Assertion failed at %s:%d.\n", __FILE__, __LINE__); exit(2); } \
} while(0)
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-04-21 21:25:32 +00:00
// We cannot longjmp unless we're in rarch_main_init().
// 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);
strlcpy(g_extern.error_string, error, sizeof(g_extern.error_string));
longjmp(g_extern.error_sjlj_context, error_code);
}
#endif
2011-03-07 18:12:14 +00:00