RetroArch/retroarch.h

397 lines
11 KiB
C
Raw Normal View History

2015-01-09 16:40:47 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* RetroArch 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.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __RETROARCH_H
#define __RETROARCH_H
#include <boolean.h>
2015-02-14 04:52:05 +00:00
#include "core_info.h"
2015-01-09 16:40:47 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-04-13 08:29:15 +00:00
enum event_command
2015-01-11 00:34:08 +00:00
{
2015-04-13 08:29:15 +00:00
EVENT_CMD_NONE = 0,
2015-01-11 01:21:18 +00:00
/* Resets RetroArch. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RESET,
2015-01-11 01:21:18 +00:00
/* Loads content file. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_LOAD_CONTENT,
EVENT_CMD_LOAD_CONTENT_PERSIST,
2015-01-11 06:48:02 +00:00
/* Loads core. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_LOAD_CORE_DEINIT,
EVENT_CMD_LOAD_CORE,
EVENT_CMD_LOAD_CORE_PERSIST,
EVENT_CMD_UNLOAD_CORE,
EVENT_CMD_LOAD_STATE,
EVENT_CMD_SAVE_STATE,
2015-01-11 01:21:18 +00:00
/* Takes screenshot. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_TAKE_SCREENSHOT,
2015-01-11 01:21:18 +00:00
/* Initializes dummy core. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_PREPARE_DUMMY,
2015-01-11 01:21:18 +00:00
/* Quits RetroArch. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_QUIT,
2015-01-11 01:21:18 +00:00
/* Reinitialize all drivers. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_REINIT,
2015-01-11 01:21:18 +00:00
/* Deinitialize rewind. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_REWIND_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes rewind. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_REWIND_INIT,
2015-01-11 01:21:18 +00:00
/* Toggles rewind. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_REWIND_TOGGLE,
2015-01-11 01:21:18 +00:00
/* Deinitializes autosave. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUTOSAVE_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes autosave. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUTOSAVE_INIT,
EVENT_CMD_AUTOSAVE_STATE,
2015-01-11 01:21:18 +00:00
/* Stops audio. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUDIO_STOP,
2015-01-11 01:21:18 +00:00
/* Starts audio. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUDIO_START,
2015-01-11 01:21:18 +00:00
/* Mutes audio. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUDIO_MUTE_TOGGLE,
2015-01-11 01:21:18 +00:00
/* Initializes overlay. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_OVERLAY_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes overlay. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_OVERLAY_DEINIT,
2015-01-11 06:48:02 +00:00
/* Sets current scale factor for overlay. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_OVERLAY_SET_SCALE_FACTOR,
2015-01-11 06:48:02 +00:00
/* Sets current alpha modulation for overlay. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_OVERLAY_SET_ALPHA_MOD,
2015-01-11 01:21:18 +00:00
/* Cycle to next overlay. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_OVERLAY_NEXT,
/* Deinitializes overlay. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DSP_FILTER_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes graphics filter. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DSP_FILTER_DEINIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes GPU recoring. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_GPU_RECORD_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes recording system. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RECORD_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes recording system. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RECORD_DEINIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes history playlist. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_HISTORY_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes history playlist. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_HISTORY_INIT,
2015-01-11 06:48:02 +00:00
/* Deinitializes core information. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CORE_INFO_DEINIT,
2015-01-11 06:48:02 +00:00
/* Initializes core information. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CORE_INFO_INIT,
2015-01-11 06:48:02 +00:00
/* Deinitializes core. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CORE_DEINIT,
2015-01-11 06:48:02 +00:00
/* Initializes core. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CORE_INIT,
2015-01-11 06:48:02 +00:00
/* Set audio blocking state. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUDIO_SET_BLOCKING_STATE,
2015-01-11 06:48:02 +00:00
/* Set audio nonblocking state. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUDIO_SET_NONBLOCKING_STATE,
2015-01-11 06:48:02 +00:00
/* Apply video state changes. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_VIDEO_APPLY_STATE_CHANGES,
2015-01-11 06:48:02 +00:00
/* Set video blocking state. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_VIDEO_SET_BLOCKING_STATE,
2015-01-11 06:48:02 +00:00
/* Set video nonblocking state. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_VIDEO_SET_NONBLOCKING_STATE,
2015-01-11 01:21:18 +00:00
/* Sets current aspect ratio index. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_VIDEO_SET_ASPECT_RATIO,
EVENT_CMD_RESET_CONTEXT,
2015-01-11 01:21:18 +00:00
/* Restarts RetroArch. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RESTART_RETROARCH,
2015-01-11 01:21:18 +00:00
/* Force-quit RetroArch. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_QUIT_RETROARCH,
2015-01-11 01:21:18 +00:00
/* Resume RetroArch when in menu. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RESUME,
2015-01-11 01:21:18 +00:00
/* Toggles pause. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_PAUSE_TOGGLE,
2015-01-11 01:21:18 +00:00
/* Pauses RetroArch. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_UNPAUSE,
2015-01-11 01:21:18 +00:00
/* Unpauses retroArch. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_PAUSE,
EVENT_CMD_PAUSE_CHECKS,
EVENT_CMD_MENU_SAVE_CONFIG,
EVENT_CMD_MENU_PAUSE_LIBRETRO,
2015-01-11 01:21:18 +00:00
/* Toggles menu on/off. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_MENU_TOGGLE,
2015-01-11 01:21:18 +00:00
/* Applies shader changes. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_SHADERS_APPLY_CHANGES,
2015-01-11 01:21:18 +00:00
/* Initializes shader directory. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_SHADER_DIR_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes shader directory. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_SHADER_DIR_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes controllers. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CONTROLLERS_INIT,
EVENT_CMD_SAVEFILES,
2015-01-11 06:48:02 +00:00
/* Initializes savefiles. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_SAVEFILES_INIT,
2015-01-11 06:48:02 +00:00
/* Deinitializes savefiles. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_SAVEFILES_DEINIT,
2015-01-11 06:48:02 +00:00
/* Initializes message queue. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_MSG_QUEUE_INIT,
2015-01-11 06:48:02 +00:00
/* Deinitializes message queue. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_MSG_QUEUE_DEINIT,
2015-01-11 06:48:02 +00:00
/* Initializes cheats. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CHEATS_INIT,
2015-01-11 06:48:02 +00:00
/* Deinitializes cheats. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_CHEATS_DEINIT,
/* Deinitializes network system. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_NETWORK_DEINIT,
/* Initializes network system. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_NETWORK_INIT,
2015-01-11 01:21:18 +00:00
/* Initializes netplay system. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_NETPLAY_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes netplay system. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_NETPLAY_DEINIT,
2015-01-11 01:21:18 +00:00
/* Flip netplay players. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_NETPLAY_FLIP_PLAYERS,
2015-01-11 01:21:18 +00:00
/* Initializes BSV movie. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_BSV_MOVIE_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes BSV movie. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_BSV_MOVIE_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes command interface. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_COMMAND_INIT,
2015-01-11 01:21:18 +00:00
/* Deinitialize command interface. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_COMMAND_DEINIT,
2015-01-11 01:21:18 +00:00
/* Deinitializes drivers. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DRIVERS_DEINIT,
2015-01-11 01:21:18 +00:00
/* Initializes drivers. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DRIVERS_INIT,
2015-01-11 01:21:18 +00:00
/* Reinitializes audio driver. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_AUDIO_REINIT,
2015-01-11 01:21:18 +00:00
/* Resizes windowed scale. Will reinitialize video driver. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RESIZE_WINDOWED_SCALE,
2015-01-11 01:21:18 +00:00
/* Deinitializes temporary content. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_TEMPORARY_CONTENT_DEINIT,
EVENT_CMD_SUBSYSTEM_FULLPATHS_DEINIT,
EVENT_CMD_LOG_FILE_DEINIT,
2015-01-11 01:21:18 +00:00
/* Toggles disk eject. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DISK_EJECT_TOGGLE,
2015-01-11 01:21:18 +00:00
/* Cycle to next disk. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DISK_NEXT,
2015-01-11 01:21:18 +00:00
/* Cycle to previous disk. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_DISK_PREV,
2015-01-11 01:21:18 +00:00
/* Stops rumbling. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_RUMBLE_STOP,
2015-01-11 01:21:18 +00:00
/* Toggles mouse grab. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_GRAB_MOUSE_TOGGLE,
2015-01-11 01:21:18 +00:00
/* Toggles fullscreen mode. */
2015-04-13 08:29:15 +00:00
EVENT_CMD_FULLSCREEN_TOGGLE,
EVENT_CMD_PERFCNT_REPORT_FRONTEND_LOG,
EVENT_CMD_REMAPPING_INIT,
EVENT_CMD_REMAPPING_DEINIT,
EVENT_CMD_VOLUME_UP,
EVENT_CMD_VOLUME_DOWN,
EVENT_CMD_DATA_RUNLOOP_FREE,
2015-01-11 00:34:08 +00:00
};
enum action_state
{
RARCH_ACTION_STATE_NONE = 0,
RARCH_ACTION_STATE_LOAD_CONTENT,
RARCH_ACTION_STATE_MENU_RUNNING,
RARCH_ACTION_STATE_MENU_RUNNING_FINISHED,
RARCH_ACTION_STATE_QUIT,
RARCH_ACTION_STATE_FORCE_QUIT,
};
struct rarch_main_wrap
{
const char *content_path;
const char *sram_path;
const char *state_path;
const char *config_path;
const char *libretro_path;
bool verbose;
bool no_content;
bool touched;
};
typedef struct rarch_cmd_state
{
bool fullscreen_toggle;
bool overlay_next_pressed;
bool grab_mouse_pressed;
bool menu_pressed;
bool quit_key_pressed;
bool screenshot_pressed;
bool mute_pressed;
2015-03-26 03:24:12 +00:00
bool osk_pressed;
bool volume_up_pressed;
bool volume_down_pressed;
bool reset_pressed;
bool disk_prev_pressed;
bool disk_next_pressed;
bool disk_eject_pressed;
bool movie_record;
bool save_state_pressed;
bool load_state_pressed;
bool slowmotion_pressed;
bool shader_next_pressed;
bool shader_prev_pressed;
bool fastforward_pressed;
bool hold_pressed;
bool old_hold_pressed;
bool state_slot_increase;
bool state_slot_decrease;
bool pause_pressed;
bool frameadvance_pressed;
bool rewind_pressed;
bool netplay_flip_pressed;
bool cheat_index_plus_pressed;
bool cheat_index_minus_pressed;
bool cheat_toggle_pressed;
} rarch_cmd_state_t;
2015-03-22 02:32:28 +00:00
void rarch_main_alloc(void);
2015-03-22 02:32:28 +00:00
void rarch_main_new(void);
2015-01-09 16:40:47 +00:00
2015-03-22 02:32:28 +00:00
void rarch_main_free(void);
2015-01-09 16:40:47 +00:00
void rarch_main_set_state(unsigned action);
2015-01-11 01:21:18 +00:00
/**
* rarch_main_command:
* @cmd : Command index.
*
* Performs RetroArch command with index @cmd.
*
* Returns: true (1) on success, otherwise false (0).
**/
2015-01-09 16:40:47 +00:00
bool rarch_main_command(unsigned action);
2015-01-11 01:21:18 +00:00
/**
* rarch_main_init:
* @argc : Count of (commandline) arguments.
* @argv : (Commandline) arguments.
*
* Initializes RetroArch.
*
* Returns: 0 on success, otherwise 1 if there was an error.
**/
int rarch_main_init(int argc, char *argv[]);
2015-01-11 01:21:18 +00:00
/**
* rarch_main_init_wrap:
* @args : Input arguments.
* @argc : Count of arguments.
* @argv : Arguments.
*
* Generates an @argc and @argv pair based on @args
* of type rarch_main_wrap.
**/
void rarch_main_init_wrap(const struct rarch_main_wrap *args,
int *argc, char **argv);
2015-01-11 01:21:18 +00:00
/**
* rarch_main_deinit:
*
* Deinitializes RetroArch.
**/
2015-01-09 16:40:47 +00:00
void rarch_main_deinit(void);
2015-01-10 22:23:01 +00:00
/**
* rarch_render_cached_frame:
*
* Renders the current video frame.
**/
2015-01-09 16:40:47 +00:00
void rarch_render_cached_frame(void);
2015-01-10 22:23:01 +00:00
/**
* rarch_disk_control_set_eject:
* @new_state : Eject or close the virtual drive tray.
* false (0) : Close
* true (1) : Eject
* @print_log : Show message onscreen.
*
* Ejects/closes of the virtual drive tray.
**/
2015-01-09 16:40:47 +00:00
void rarch_disk_control_set_eject(bool state, bool log);
2015-01-10 22:23:01 +00:00
/**
* rarch_disk_control_set_index:
* @index : Index of disk to set as current.
*
* Sets current disk to @index.
**/
2015-01-09 16:40:47 +00:00
void rarch_disk_control_set_index(unsigned index);
2015-01-10 22:23:01 +00:00
/**
* rarch_disk_control_append_image:
* @path : Path to disk image.
*
* Appends disk image to disk image list.
**/
2015-01-09 16:40:47 +00:00
void rarch_disk_control_append_image(const char *path);
2015-01-10 22:23:01 +00:00
/**
* rarch_replace_config:
* @path : Path to config file to replace
* current config file with.
*
* Replaces currently loaded configuration file with
* another one. Will load a dummy core to flush state
* properly.
*
* Quite intrusive and error prone.
* Likely to have lots of small bugs.
* Cleanly exit the main loop to ensure that all the tiny details
* get set properly.
*
* This should mitigate most of the smaller bugs.
*
* Returns: true (1) if successful, false (0) if @path was the
* same as the current config file.
**/
bool rarch_replace_config(const char *path);
2015-01-11 01:21:18 +00:00
/**
* rarch_playlist_load_content:
* @playlist : Playlist handle.
* @idx : Index in playlist.
*
* Initializes core and loads content based on playlist entry.
**/
void rarch_playlist_load_content(content_playlist_t *playlist,
unsigned index);
2015-01-11 01:21:18 +00:00
/**
* rarch_defer_core:
* @core_info : Core info list handle.
* @dir : Directory. Gets joined with @path.
* @path : Path. Gets joined with @dir.
* @menu_label : Label identifier of menu setting.
* @deferred_path : Deferred core path. Will be filled in
* by function.
* @sizeof_deferred_path : Size of @deferred_path.
*
* Gets deferred core.
*
* Returns: 0 if there are multiple deferred cores and a
* selection needs to be made from a list, otherwise
* returns -1 and fills in @deferred_path with path to core.
**/
int rarch_defer_core(core_info_list_t *data,
const char *dir, const char *path, const char *menu_label,
char *deferred_path, size_t sizeof_deferred_path);
2015-01-09 16:40:47 +00:00
#ifdef __cplusplus
}
#endif
#endif