RetroArch/driver.h

170 lines
5.4 KiB
C
Raw Normal View History

2011-01-17 20:54:58 +01:00
/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes.
2011-01-23 20:29:28 +01:00
* Copyright (C) 2010-2011 - Hans-Kristian Arntzen
2010-05-28 18:22:57 +02:00
*
* Some code herein may be based on code found in BSNES.
*
* SSNES is free software: you can redistribute it and/or modify it under the terms
* 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.
*
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with SSNES.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __DRIVER__H
#define __DRIVER__H
#include <sys/types.h>
2010-05-28 18:22:57 +02:00
#include <stdbool.h>
#include <stdlib.h>
#include <stdint.h>
2010-06-27 14:40:06 +02:00
#include <unistd.h>
2010-05-28 18:22:57 +02:00
enum
{
SSNES_FAST_FORWARD_KEY = 0x666, // Hurr, durr
SSNES_FAST_FORWARD_HOLD_KEY,
SSNES_LOAD_STATE_KEY,
SSNES_SAVE_STATE_KEY,
SSNES_FULLSCREEN_TOGGLE_KEY,
SSNES_QUIT_KEY,
2011-01-23 23:09:54 +01:00
SSNES_STATE_SLOT_PLUS,
SSNES_STATE_SLOT_MINUS,
SSNES_AUDIO_INPUT_RATE_PLUS,
SSNES_AUDIO_INPUT_RATE_MINUS,
2011-01-31 16:48:42 +01:00
SSNES_REWIND,
2011-02-02 12:45:56 +01:00
SSNES_MOVIE_RECORD_TOGGLE,
2011-02-05 20:46:58 +01:00
SSNES_PAUSE_TOGGLE,
SSNES_RESET,
SSNES_SHADER_NEXT,
SSNES_SHADER_PREV,
2011-04-17 13:30:59 +02:00
SSNES_CHEAT_INDEX_PLUS,
SSNES_CHEAT_INDEX_MINUS,
2011-05-15 17:16:29 +02:00
SSNES_CHEAT_TOGGLE,
SSNES_SCREENSHOT,
SSNES_DSP_CONFIG
};
2010-08-16 18:40:17 +02:00
2010-05-28 18:22:57 +02:00
struct snes_keybind
{
int id;
uint16_t key;
uint16_t joykey;
uint32_t joyaxis;
2010-05-28 18:22:57 +02: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;
2010-05-29 16:59:57 +02:00
int input_scale; // HQ2X => 2, HQ4X => 4, None => 1
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-05-15 15:57:47 +02:00
void* (*init)(const char* device, unsigned rate, unsigned latency);
2010-05-28 18:22:57 +02:00
ssize_t (*write)(void* data, const void* buf, size_t size);
bool (*stop)(void* data);
bool (*start)(void* data);
2010-08-16 18:40:17 +02:00
void (*set_nonblock_state)(void* data, bool toggle); // Should we care about blocking in audio thread? Fast forwarding.
2010-05-28 18:22:57 +02:00
void (*free)(void* data);
bool (*use_float)(void *data); // Defines if driver will take standard floating point samples, or int16_t samples.
const char *ident;
2010-05-28 18:22:57 +02:00
} audio_driver_t;
2011-02-04 06:46:51 -06:00
#define AXIS_NEG(x) (((uint32_t)(x) << 16) | 0xFFFFU)
2011-01-08 22:15:02 +01:00
#define AXIS_POS(x) ((uint32_t)(x) | 0xFFFF0000U)
2011-02-04 06:46:51 -06:00
#define AXIS_NONE (0xFFFFFFFFU)
2011-01-08 22:15:02 +01:00
2011-02-04 06:46:51 -06:00
#define AXIS_NEG_GET(x) (((uint32_t)(x) >> 16) & 0xFFFFU)
#define AXIS_POS_GET(x) ((uint32_t)(x) & 0xFFFFU)
2011-01-08 22:15:02 +01:00
2011-02-04 06:46:51 -06:00
#define NO_BTN ((uint16_t)0xFFFFU) // I hope no joypad will ever have this many buttons ... ;)
2011-01-08 22:15:02 +01:00
#define HAT_UP_MASK (1 << 15)
#define HAT_DOWN_MASK (1 << 14)
#define HAT_LEFT_MASK (1 << 13)
#define HAT_RIGHT_MASK (1 << 12)
#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
{
void* (*init)(void);
void (*poll)(void* data);
2010-10-01 20:15:45 +02:00
int16_t (*input_state)(void* data, const struct snes_keybind **snes_keybinds, bool port, unsigned device, unsigned index, unsigned id);
bool (*key_pressed)(void* data, int key);
2010-05-28 18:22:57 +02:00
void (*free)(void* data);
const char *ident;
2010-05-28 18:22:57 +02:00
} input_driver_t;
typedef struct video_driver
{
2011-04-21 03:23:44 +02: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.
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.
2010-08-16 18:40:17 +02:00
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?
bool (*xml_shader)(void *data, const char *path); // Sets XML-shader. Might not be implemented.
2010-05-28 18:22:57 +02:00
void (*free)(void* data);
const char *ident;
2010-05-28 18:22:57 +02:00
} video_driver_t;
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;
} driver_t;
void init_drivers(void);
void uninit_drivers(void);
void init_video_input(void);
void uninit_video_input(void);
void init_audio(void);
void uninit_audio(void);
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;
extern const audio_driver_t audio_roar;
extern const audio_driver_t audio_openal;
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;
extern const audio_driver_t audio_xa;
2011-01-29 01:15:09 +01:00
extern const audio_driver_t audio_pulse;
2011-05-15 01:46:11 +02:00
extern const audio_driver_t audio_ext;
extern const video_driver_t video_gl;
2011-03-13 04:51:09 +01:00
extern const video_driver_t video_xvideo;
2011-04-21 03:23:44 +02:00
extern const video_driver_t video_sdl;
2011-05-11 17:57:31 +02:00
extern const video_driver_t video_ext;
extern const input_driver_t input_sdl;
2011-03-13 04:51:09 +01:00
extern const input_driver_t input_x;
////////////////////////////////////////////////
2010-05-28 18:22:57 +02:00
#endif