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-05-28 18:22:57 +02: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-05-28 18:22:57 +02: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-05-28 18:22:57 +02: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-05-28 18:22:57 +02:00
* If not , see < http : //www.gnu.org/licenses/>.
*/
# ifndef __DRIVER__H
# define __DRIVER__H
2011-01-07 12:50:14 +01:00
# include <sys/types.h>
2011-12-24 13:46:12 +01:00
# include "boolean.h"
2012-07-28 03:21:37 +02:00
# include "libretro.h"
2010-05-28 18:22:57 +02:00
# include <stdlib.h>
# include <stdint.h>
2011-12-25 00:59:46 +01:00
# include "msvc/msvc_compat.h"
2012-10-20 01:12:02 +02:00
# include "gfx/scaler/scaler.h"
2012-12-20 15:33:54 +01:00
# include "input/overlay.h"
2010-05-28 18:22:57 +02:00
2012-05-27 14:12:29 +02:00
# ifdef HAVE_CONFIG_H
# include "config.h"
# endif
2012-07-24 02:47:28 +02:00
# ifdef HAVE_COMMAND
# include "command.h"
2012-05-27 14:12:29 +02:00
# endif
2012-10-28 12:51:02 +01:00
# define AUDIO_CHUNK_SIZE_BLOCKING 512
2011-12-24 13:46:12 +01:00
# define AUDIO_CHUNK_SIZE_NONBLOCKING 2048 // So we don't get complete line-noise when fast-forwarding audio.
# define AUDIO_MAX_RATIO 16
2013-01-11 16:23:04 +01:00
// Specialized _POINTER that targets the full screen regardless of viewport.
// Should not be used by a libretro implementation as coordinates returned make no sense.
// It is only used internally for overlays.
# define RARCH_DEVICE_POINTER_SCREEN (RETRO_DEVICE_POINTER | 0x10000)
2012-05-07 21:51:32 +02:00
// libretro has 16 buttons from 0-15 (libretro.h)
2012-06-28 17:57:50 +02:00
// Analog binds use RETRO_DEVICE_ANALOG, but we follow the same scheme internally
// in RetroArch for simplicity,
// so they are mapped into [16, 23].
2012-10-01 22:15:48 +02:00
# define RARCH_FIRST_CUSTOM_BIND 16
# define RARCH_FIRST_META_KEY RARCH_CUSTOM_BIND_LIST_END
2012-06-28 17:57:50 +02:00
enum // RetroArch specific bind IDs.
2011-01-08 18:37:45 +01:00
{
2012-10-01 22:15:48 +02:00
// Custom binds that extend the scope of RETRO_DEVICE_JOYPAD for RetroArch specifically.
// Turbo
RARCH_TURBO_ENABLE = RARCH_FIRST_CUSTOM_BIND ,
2012-06-28 17:57:50 +02:00
// Analogs (RETRO_DEVICE_ANALOG)
2012-10-01 22:15:48 +02:00
RARCH_ANALOG_LEFT_X_PLUS ,
2012-06-28 17:57:50 +02:00
RARCH_ANALOG_LEFT_X_MINUS ,
RARCH_ANALOG_LEFT_Y_PLUS ,
RARCH_ANALOG_LEFT_Y_MINUS ,
RARCH_ANALOG_RIGHT_X_PLUS ,
RARCH_ANALOG_RIGHT_X_MINUS ,
RARCH_ANALOG_RIGHT_Y_PLUS ,
RARCH_ANALOG_RIGHT_Y_MINUS ,
2012-12-14 17:42:01 +01:00
# ifdef RARCH_CONSOLE
RARCH_ANALOG_LEFT_X_DPAD_LEFT ,
RARCH_ANALOG_LEFT_X_DPAD_RIGHT ,
RARCH_ANALOG_LEFT_Y_DPAD_UP ,
RARCH_ANALOG_LEFT_Y_DPAD_DOWN ,
RARCH_ANALOG_RIGHT_X_DPAD_LEFT ,
RARCH_ANALOG_RIGHT_X_DPAD_RIGHT ,
RARCH_ANALOG_RIGHT_Y_DPAD_UP ,
RARCH_ANALOG_RIGHT_Y_DPAD_DOWN ,
# endif
2012-06-28 17:57:50 +02:00
2012-10-01 22:15:48 +02:00
RARCH_CUSTOM_BIND_LIST_END ,
2012-06-28 17:57:50 +02:00
2012-10-01 22:15:48 +02:00
// Command binds. Not related to game input, only usable for port 0.
RARCH_FAST_FORWARD_KEY = RARCH_FIRST_META_KEY ,
2012-04-21 23:25:32 +02:00
RARCH_FAST_FORWARD_HOLD_KEY ,
RARCH_LOAD_STATE_KEY ,
RARCH_SAVE_STATE_KEY ,
RARCH_FULLSCREEN_TOGGLE_KEY ,
RARCH_QUIT_KEY ,
RARCH_STATE_SLOT_PLUS ,
RARCH_STATE_SLOT_MINUS ,
RARCH_REWIND ,
RARCH_MOVIE_RECORD_TOGGLE ,
RARCH_PAUSE_TOGGLE ,
RARCH_FRAMEADVANCE ,
RARCH_RESET ,
RARCH_SHADER_NEXT ,
RARCH_SHADER_PREV ,
RARCH_CHEAT_INDEX_PLUS ,
RARCH_CHEAT_INDEX_MINUS ,
RARCH_CHEAT_TOGGLE ,
RARCH_SCREENSHOT ,
RARCH_DSP_CONFIG ,
RARCH_MUTE ,
RARCH_NETPLAY_FLIP ,
RARCH_SLOWMOTION ,
2012-11-02 23:24:53 +01:00
RARCH_ENABLE_HOTKEY ,
2012-11-03 14:15:03 +01:00
RARCH_VOLUME_UP ,
RARCH_VOLUME_DOWN ,
2012-12-22 15:33:28 +01:00
RARCH_OVERLAY_NEXT ,
2012-12-23 18:21:36 +01:00
2012-04-21 23:25:32 +02:00
# ifdef RARCH_CONSOLE
2012-12-23 18:21:36 +01:00
RARCH_CHEAT_INPUT ,
2012-04-21 23:25:32 +02:00
RARCH_SRAM_WRITE_PROTECT ,
2012-01-11 10:00:24 +01:00
# endif
2012-12-15 01:14:21 +01:00
# ifdef HAVE_RMENU
RARCH_RMENU_TOGGLE ,
RARCH_RMENU_QUICKMENU_TOGGLE ,
# endif
2011-09-06 19:53:22 +02:00
2012-05-09 23:24:50 +02:00
RARCH_BIND_LIST_END ,
RARCH_BIND_LIST_END_NULL
2011-01-08 18:37:45 +01:00
} ;
2010-08-16 18:40:17 +02:00
2012-07-07 17:19:32 +02:00
struct retro_keybind
2010-05-28 18:22:57 +02:00
{
2012-01-30 01:20:35 +01:00
bool valid ;
2010-05-28 18:22:57 +02:00
int id ;
2013-01-12 18:45:01 +01:00
const char * desc ;
2012-07-28 03:21:37 +02:00
enum retro_key key ;
2012-03-09 18:17:53 +01:00
// PC only uses lower 16-bits.
// Full 64-bit can be used for port-specific purposes, like simplifying multiple binds, etc.
uint64_t joykey ;
2010-12-24 00:58:42 +01:00
uint32_t joyaxis ;
2010-05-28 18:22:57 +02:00
} ;
2012-09-21 21:20:30 +02:00
enum rarch_shader_type
{
RARCH_SHADER_CG ,
2013-01-07 16:46:26 +01:00
RARCH_SHADER_HLSL ,
2013-01-07 17:03:10 +01:00
RARCH_SHADER_GLSL ,
2012-09-21 21:20:30 +02:00
RARCH_SHADER_AUTO ,
RARCH_SHADER_NONE
} ;
2013-01-08 03:46:18 +01:00
enum rarch_shader_index
2013-01-07 16:46:26 +01:00
{
2013-01-08 03:46:18 +01:00
RARCH_SHADER_INDEX_MULTIPASS = 0 ,
RARCH_SHADER_INDEX_PASS0 = 1 ,
RARCH_SHADER_INDEX_PASS1 = 2
2013-01-07 16:46:26 +01:00
} ;
2010-05-29 14:45:40 +02:00
typedef struct video_info
{
2011-05-05 20:23:08 +02:00
unsigned width ;
unsigned height ;
2010-05-29 14:45:40 +02:00
bool fullscreen ;
bool vsync ;
bool force_aspect ;
bool smooth ;
2012-04-21 23:25:32 +02:00
unsigned input_scale ; // Maximum input size: RARCH_SCALE_BASE * input_scale
2011-03-07 17:22:03 +01:00
bool rgb32 ; // Use 32-bit RGBA rather than native XBGR1555.
2010-05-29 14:45:40 +02:00
} video_info_t ;
2010-05-28 18:22:57 +02:00
typedef struct audio_driver
{
2011-11-01 20:27:59 +01:00
void * ( * init ) ( const char * device , unsigned rate , unsigned latency ) ;
ssize_t ( * write ) ( void * data , const void * buf , size_t size ) ;
bool ( * stop ) ( void * data ) ;
bool ( * start ) ( void * data ) ;
void ( * set_nonblock_state ) ( void * data , bool toggle ) ; // Should we care about blocking in audio thread? Fast forwarding.
void ( * free ) ( void * data ) ;
2011-01-15 20:37:42 +01:00
bool ( * use_float ) ( void * data ) ; // Defines if driver will take standard floating point samples, or int16_t samples.
2010-12-29 20:05:57 +01:00
const char * ident ;
2012-02-14 01:16:37 +01:00
size_t ( * write_avail ) ( void * data ) ; // Optional
size_t ( * buffer_size ) ( void * data ) ; // Optional
2010-05-28 18:22:57 +02:00
} audio_driver_t ;
2012-01-12 20:16:47 +01:00
# define AXIS_NEG(x) (((uint32_t)(x) << 16) | UINT16_C(0xFFFF))
# define AXIS_POS(x) ((uint32_t)(x) | UINT32_C(0xFFFF0000))
# define AXIS_NONE UINT32_C(0xFFFFFFFF)
2012-03-09 18:17:53 +01:00
# define AXIS_DIR_NONE UINT16_C(0xFFFF)
2011-01-08 22:15:02 +01:00
2012-01-12 20:16:47 +01:00
# define AXIS_NEG_GET(x) (((uint32_t)(x) >> 16) & UINT16_C(0xFFFF))
# define AXIS_POS_GET(x) ((uint32_t)(x) & UINT16_C(0xFFFF))
2011-01-08 22:15:02 +01:00
2012-03-09 18:17:53 +01:00
# define NO_BTN UINT16_C(0xFFFF) // I hope no joypad will ever have this many buttons ... ;)
2011-01-08 22:15:02 +01:00
2012-09-29 21:57:03 +02:00
# define HAT_UP_SHIFT 15
# define HAT_DOWN_SHIFT 14
# define HAT_LEFT_SHIFT 13
# define HAT_RIGHT_SHIFT 12
# define HAT_UP_MASK (1 << HAT_UP_SHIFT)
# define HAT_DOWN_MASK (1 << HAT_DOWN_SHIFT)
# define HAT_LEFT_MASK (1 << HAT_LEFT_SHIFT)
# define HAT_RIGHT_MASK (1 << HAT_RIGHT_SHIFT)
2011-01-08 22:15:02 +01:00
# define HAT_MAP(x, hat) ((x & ((1 << 12) - 1)) | hat)
# define HAT_MASK (HAT_UP_MASK | HAT_DOWN_MASK | HAT_LEFT_MASK | HAT_RIGHT_MASK)
# define GET_HAT_DIR(x) (x & HAT_MASK)
# define GET_HAT(x) (x & (~HAT_MASK))
2010-05-28 18:22:57 +02:00
typedef struct input_driver
{
2011-11-01 20:27:59 +01:00
void * ( * init ) ( void ) ;
void ( * poll ) ( void * data ) ;
2012-07-07 17:19:32 +02:00
int16_t ( * input_state ) ( void * data , const struct retro_keybind * * retro_keybinds , unsigned port , unsigned device , unsigned index , unsigned id ) ;
2011-11-01 20:27:59 +01:00
bool ( * key_pressed ) ( void * data , int key ) ;
void ( * free ) ( void * data ) ;
2012-07-25 21:02:01 +02:00
# ifdef RARCH_CONSOLE
2012-07-28 02:27:41 +02:00
void ( * set_default_keybind_lut ) ( unsigned device , unsigned port ) ;
2012-07-28 01:37:15 +02:00
void ( * set_analog_dpad_mapping ) ( unsigned device , unsigned map_dpad_enum , unsigned controller_id ) ;
2012-07-27 15:46:15 +02:00
void ( * post_init ) ( void ) ;
unsigned max_pads ;
2012-07-25 21:02:01 +02:00
# endif
2010-12-29 20:05:57 +01:00
const char * ident ;
2010-05-28 18:22:57 +02:00
} input_driver_t ;
2012-10-28 00:38:31 +02:00
struct rarch_viewport ;
2012-12-23 18:36:58 +01:00
# ifdef HAVE_OVERLAY
2012-12-20 11:16:22 +01:00
typedef struct video_overlay_interface
{
void ( * enable ) ( void * data , bool state ) ;
2012-12-20 12:24:49 +01:00
bool ( * load ) ( void * data , const uint32_t * image , unsigned width , unsigned height ) ;
2012-12-20 11:16:22 +01:00
void ( * tex_geom ) ( void * data , float x , float y , float w , float h ) ;
void ( * vertex_geom ) ( void * data , float x , float y , float w , float h ) ;
2013-01-11 16:23:04 +01:00
void ( * full_screen ) ( void * data , bool enable ) ;
2013-01-29 21:51:15 +01:00
void ( * set_alpha ) ( void * data , float mod ) ;
2012-12-20 11:16:22 +01:00
} video_overlay_interface_t ;
2012-12-23 18:36:58 +01:00
# endif
2012-12-20 11:16:22 +01:00
2010-05-28 18:22:57 +02:00
typedef struct video_driver
{
2011-11-01 20:27:59 +01:00
void * ( * init ) ( const video_info_t * video , const input_driver_t * * input , void * * input_data ) ;
2011-01-06 20:01:32 +01:00
// Should the video driver act as an input driver as well? :) The video init might preinitialize an input driver to override the settings in case the video driver relies on input driver for event handling, e.g.
2011-11-01 20:27:59 +01:00
bool ( * frame ) ( void * data , const void * frame , unsigned width , unsigned height , unsigned pitch , const char * msg ) ; // msg is for showing a message on the screen along with the video frame.
void ( * set_nonblock_state ) ( void * data , bool toggle ) ; // Should we care about syncing to vblank? Fast forwarding.
2011-01-06 20:01:32 +01:00
// Is the window still active?
bool ( * alive ) ( void * data ) ;
2011-02-05 21:45:44 +01:00
bool ( * focus ) ( void * data ) ; // Does the window have focus?
2013-01-08 03:46:18 +01:00
bool ( * set_shader ) ( void * data , enum rarch_shader_type type , const char * path , unsigned index ) ; // Sets shader. Might not be implemented.
2011-11-01 20:27:59 +01:00
void ( * free ) ( void * data ) ;
2010-12-29 20:05:57 +01:00
const char * ident ;
2012-02-13 19:17:13 +01:00
// Callbacks essentially useless on PC, but useful on consoles where the drivers are used for more stuff.
2012-12-14 01:29:01 +01:00
# if defined(HAVE_RMENU)
2012-05-27 19:25:29 +02:00
void ( * start ) ( void ) ;
void ( * stop ) ( void ) ;
void ( * restart ) ( void ) ;
2012-08-20 12:41:10 +02:00
void ( * apply_state_changes ) ( void ) ;
2012-09-30 17:51:48 +02:00
void ( * set_aspect_ratio ) ( void * data , unsigned aspectratio_index ) ;
2012-02-13 19:17:13 +01:00
# endif
2012-05-27 19:25:29 +02:00
2012-03-30 19:09:34 +02:00
void ( * set_rotation ) ( void * data , unsigned rotation ) ;
2012-10-28 00:38:31 +02:00
void ( * viewport_info ) ( void * data , struct rarch_viewport * vp ) ;
2012-06-08 22:39:18 +02:00
// Reads out in BGR byte order (24bpp).
bool ( * read_viewport ) ( void * data , uint8_t * buffer ) ;
2012-12-20 11:16:22 +01:00
2012-12-23 18:36:58 +01:00
# ifdef HAVE_OVERLAY
2012-12-20 11:16:22 +01:00
void ( * overlay_interface ) ( void * data , const video_overlay_interface_t * * iface ) ;
2012-12-23 18:36:58 +01:00
# endif
2010-05-28 18:22:57 +02:00
} video_driver_t ;
2012-09-28 22:38:42 +02:00
enum rarch_display_type
{
RARCH_DISPLAY_NONE = 0 , // Non-bindable types like consoles, KMS, VideoCore, etc.
RARCH_DISPLAY_X11 , // video_display => Display*, video_window => Window
RARCH_DISPLAY_WIN32 , // video_display => N/A, video_window => HWND
RARCH_DISPLAY_OSX // ?!
} ;
2010-05-28 18:22:57 +02:00
typedef struct driver
{
const audio_driver_t * audio ;
const video_driver_t * video ;
const input_driver_t * input ;
void * audio_data ;
void * video_data ;
void * input_data ;
2012-05-27 14:12:29 +02:00
2013-02-16 02:21:43 +01:00
bool threaded_video ;
2012-12-25 23:18:19 +01:00
// Set if the respective handles are owned by RetroArch driver core.
// Consoles upper logic will generally intialize the drivers before
// the driver core initializes. It will then be up to upper logic
// to finally free() up the driver handles.
// Driver core will still call init() and free(), but in this case
// these calls should be seen as "reinit() + ref_count++" and "ref_count--"
// respectively.
bool video_data_own ;
bool audio_data_own ;
bool input_data_own ;
2012-07-24 02:47:28 +02:00
# ifdef HAVE_COMMAND
rarch_cmd_t * command ;
2012-05-27 14:12:29 +02:00
# endif
2012-07-24 02:47:28 +02:00
bool stdin_claimed ;
2012-11-02 23:24:53 +01:00
bool block_hotkey ;
2012-09-28 22:38:42 +02:00
// Opaque handles to currently running window.
// Used by e.g. input drivers which bind to a window.
// Drivers are responsible for setting these if an input driver
// could potentially make use of this.
uintptr_t video_display ;
uintptr_t video_window ;
enum rarch_display_type display_type ;
2012-10-20 01:12:02 +02:00
2013-01-03 01:18:19 +01:00
// Used for 15-bit -> 16-bit conversions that take place before being passed to video driver.
2012-10-20 01:12:02 +02:00
struct scaler_ctx scaler ;
void * scaler_out ;
2012-12-20 15:33:54 +01:00
2013-01-03 01:18:19 +01:00
// Graphics driver requires RGBA byte order data (ABGR on little-endian) for 32-bit.
// This takes effect for overlay and shader cores that wants to load data into graphics driver.
// Kinda hackish to place it here, it is only used for GLES.
// TODO: Refactor this better.
bool gfx_use_rgba ;
2012-12-23 18:36:58 +01:00
# ifdef HAVE_OVERLAY
2012-12-20 15:33:54 +01:00
input_overlay_t * overlay ;
uint64_t overlay_state ;
2012-12-23 18:36:58 +01:00
# endif
2010-05-28 18:22:57 +02:00
} driver_t ;
2010-12-24 01:26:36 +01:00
void init_drivers ( void ) ;
2012-04-01 19:38:50 +02:00
void init_drivers_pre ( void ) ;
2010-12-24 01:26:36 +01:00
void uninit_drivers ( void ) ;
void init_video_input ( void ) ;
void uninit_video_input ( void ) ;
void init_audio ( void ) ;
void uninit_audio ( void ) ;
2012-12-23 19:01:48 +01:00
void driver_set_monitor_refresh_rate ( float hz ) ;
2010-12-24 01:26:36 +01:00
extern driver_t driver ;
//////////////////////////////////////////////// Backends
extern const audio_driver_t audio_rsound ;
extern const audio_driver_t audio_oss ;
extern const audio_driver_t audio_alsa ;
2013-01-04 14:58:34 -05:00
extern const audio_driver_t audio_alsathread ;
2010-12-24 01:26:36 +01:00
extern const audio_driver_t audio_roar ;
extern const audio_driver_t audio_openal ;
2012-10-18 05:45:21 +02:00
extern const audio_driver_t audio_opensl ;
2011-01-01 03:53:30 +01:00
extern const audio_driver_t audio_jack ;
2011-01-07 15:50:16 +01:00
extern const audio_driver_t audio_sdl ;
2011-01-27 01:46:00 +01:00
extern const audio_driver_t audio_xa ;
2011-01-29 01:15:09 +01:00
extern const audio_driver_t audio_pulse ;
2011-08-04 18:45:40 +02:00
extern const audio_driver_t audio_dsound ;
2011-08-08 17:27:52 +02:00
extern const audio_driver_t audio_coreaudio ;
2011-12-13 23:17:37 +01:00
extern const audio_driver_t audio_xenon360 ;
2011-11-30 17:11:42 +01:00
extern const audio_driver_t audio_ps3 ;
2012-08-09 03:54:27 +02:00
extern const audio_driver_t audio_gx ;
2012-06-20 00:43:41 +02:00
extern const audio_driver_t audio_null ;
2010-12-24 01:26:36 +01:00
extern const video_driver_t video_gl ;
2012-11-23 05:20:05 +01:00
extern const video_driver_t video_psp1 ;
2012-11-26 03:16:20 +01:00
extern const video_driver_t video_vita ;
2012-10-26 21:09:30 +02:00
extern const video_driver_t video_d3d9 ;
2012-08-09 03:54:27 +02:00
extern const video_driver_t video_gx ;
2011-12-15 13:54:22 +01:00
extern const video_driver_t video_xenon360 ;
2011-03-13 04:51:09 +01:00
extern const video_driver_t video_xvideo ;
2012-07-07 20:15:06 +03:00
extern const video_driver_t video_xdk_d3d ;
2011-04-21 03:23:44 +02:00
extern const video_driver_t video_sdl ;
2012-09-24 15:19:07 -04:00
extern const video_driver_t video_vg ;
2012-06-20 00:43:41 +02:00
extern const video_driver_t video_null ;
2012-10-16 19:46:31 +02:00
extern const input_driver_t input_android ;
2011-01-06 18:34:11 +01:00
extern const input_driver_t input_sdl ;
2012-09-30 11:26:26 +02:00
extern const input_driver_t input_dinput ;
2011-03-13 04:51:09 +01:00
extern const input_driver_t input_x ;
2011-12-02 02:22:29 +01:00
extern const input_driver_t input_ps3 ;
2012-11-23 02:40:03 +01:00
extern const input_driver_t input_psp ;
2011-12-14 01:35:17 +01:00
extern const input_driver_t input_xenon360 ;
2012-08-09 03:54:27 +02:00
extern const input_driver_t input_gx ;
2012-07-07 20:56:46 +03:00
extern const input_driver_t input_xinput ;
2012-05-25 15:44:39 -04:00
extern const input_driver_t input_linuxraw ;
2012-06-20 00:43:41 +02:00
extern const input_driver_t input_null ;
2012-11-26 21:23:31 +01:00
# include "driver_funcs.h"
2012-05-27 14:12:29 +02:00
2012-03-29 00:30:50 +02:00
# endif