RetroArch/retroarch.h

220 lines
7.1 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
*
2015-01-09 16:40:47 +00:00
* 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-06-02 15:17:46 +00:00
#include <retro_miscellaneous.h>
2015-02-14 04:52:05 +00:00
#include "core_info.h"
#include "command_event.h"
2015-01-09 16:40:47 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-06-28 15:02:01 +00:00
#define MENU_VALUE_FILE_WEBM 0x7ca00b50U
#define MENU_VALUE_FILE_F4F 0x0b886be5U
#define MENU_VALUE_FILE_F4V 0x0b886bf5U
#define MENU_VALUE_FILE_OGM 0x0b8898c8U
#define MENU_VALUE_FILE_MKV 0x0b8890d3U
#define MENU_VALUE_FILE_AVI 0x0b885f25U
#define MENU_VALUE_FILE_M4A 0x0b8889a7U
#define MENU_VALUE_FILE_3GP 0x0b87998fU
#define MENU_VALUE_FILE_MP4 0x0b889136U
#define MENU_VALUE_FILE_MP3 0x0b889135U
#define MENU_VALUE_FILE_FLAC 0x7c96d67bU
#define MENU_VALUE_FILE_OGG 0x0b8898c2U
#define MENU_VALUE_FILE_FLV 0x0b88732dU
#define MENU_VALUE_FILE_WAV 0x0b88ba13U
#define MENU_VALUE_FILE_MOV 0x0b889157U
#define MENU_VALUE_FILE_WMV 0x0b88bb9fU
#define MENU_VALUE_FILE_JPG 0x0b8884a6U
#define MENU_VALUE_FILE_JPEG 0x7c99198bU
#define MENU_VALUE_FILE_JPG_CAPS 0x0b87f846U
#define MENU_VALUE_FILE_JPEG_CAPS 0x7c87010bU
2015-06-28 15:02:01 +00:00
#define MENU_VALUE_FILE_PNG 0x0b889deaU
#define MENU_VALUE_FILE_PNG_CAPS 0x0b88118aU
2015-06-28 15:02:01 +00:00
#define MENU_VALUE_FILE_TGA 0x0b88ae01U
#define MENU_VALUE_FILE_BMP 0x0b886244U
enum rarch_ctl_state
{
RARCH_ACTION_STATE_NONE = 0,
2015-09-27 00:16:24 +00:00
RARCH_ACTION_STATE_LOAD_CONTENT,
2015-09-27 00:16:24 +00:00
#ifdef HAVE_FFMPEG
RARCH_ACTION_STATE_LOAD_CONTENT_FFMPEG,
#endif
2015-09-27 00:16:24 +00:00
RARCH_ACTION_STATE_LOAD_CONTENT_IMAGEVIEWER,
2015-09-27 00:16:24 +00:00
RARCH_ACTION_STATE_MENU_RUNNING,
2015-09-27 00:16:24 +00:00
RARCH_ACTION_STATE_MENU_RUNNING_FINISHED,
2015-09-27 00:16:24 +00:00
2015-09-27 00:04:53 +00:00
/* Replaces currently loaded configuration file with
* another one. Will load a dummy core to flush state
* properly. */
RARCH_ACTION_STATE_REPLACE_CONFIG,
2015-09-27 00:16:24 +00:00
RARCH_ACTION_STATE_QUIT,
2015-09-27 00:16:24 +00:00
RARCH_ACTION_STATE_FORCE_QUIT,
2015-09-27 00:16:24 +00:00
/* Compare libretro core API version against API version
* used by RetroArch.
*
* TODO - when libretro v2 gets added, allow for switching
* between libretro version backend dynamically.
*/
RARCH_ACTION_STATE_VERIFY_API_VERSION,
/* Validates CPU features for given processor architecture.
*
* Make sure we haven't compiled for something we cannot run.
* Ideally, code would get swapped out depending on CPU support,
2015-09-27 00:16:24 +00:00
* but this will do for now. */
2015-09-27 00:18:45 +00:00
RARCH_ACTION_STATE_VALIDATE_CPU_FEATURES,
RARCH_ACTION_STATE_FILL_PATHNAMES
};
2015-06-23 05:25:48 +00:00
enum rarch_content_type
{
RARCH_CONTENT_NONE = 0,
RARCH_CONTENT_MOVIE,
2015-06-28 15:02:01 +00:00
RARCH_CONTENT_MUSIC,
RARCH_CONTENT_IMAGE
2015-06-23 05:25:48 +00:00
};
2015-05-13 11:21:43 +00:00
enum rarch_capabilities
{
RARCH_CAPABILITIES_NONE = 0,
RARCH_CAPABILITIES_CPU,
2015-06-26 14:04:42 +00:00
RARCH_CAPABILITIES_COMPILER
2015-05-13 11:21:43 +00:00
};
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;
};
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
2015-09-27 00:04:53 +00:00
bool rarch_ctl(enum rarch_ctl_state state, void *data);
2015-01-09 16:40:47 +00:00
2015-01-11 01:21:18 +00:00
/**
* rarch_main_init:
* @argc : Count of (commandline) arguments.
* @argv : (Commandline) arguments.
2015-01-11 01:21:18 +00:00
*
* 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-11 01:21:18 +00:00
/**
* rarch_playlist_load_content:
* @playlist : Playlist handle.
* @path : Path to associated core (optional).
2015-01-11 01:21:18 +00:00
* @idx : Index in playlist.
*
* Initializes core and loads content based on playlist entry.
**/
void rarch_playlist_load_content(void *data, const char *core_path, 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.
2015-06-02 16:28:51 +00:00
* @s : Deferred core path. Will be filled in
2015-01-11 01:21:18 +00:00
* by function.
2015-06-02 16:28:51 +00:00
* @len : Size of @s.
2015-01-11 01:21:18 +00:00
*
* Gets deferred core.
*
* Returns: 0 if there are multiple deferred cores and a
2015-01-11 01:21:18 +00:00
* selection needs to be made from a list, otherwise
2015-06-02 16:28:51 +00:00
* returns -1 and fills in @s with path to core.
2015-01-11 01:21:18 +00:00
**/
int rarch_defer_core(core_info_list_t *data,
const char *dir, const char *path, const char *menu_label,
2015-06-02 16:28:51 +00:00
char *s, size_t len);
2015-04-13 09:15:40 +00:00
/**
* rarch_init_system_av_info:
*
* Initialize system A/V information by calling the libretro core's
* get_system_av_info function.
**/
void rarch_init_system_av_info(void);
void rarch_set_paths(const char *path);
void set_paths_redirect(const char *path);
2015-05-13 11:21:43 +00:00
int rarch_info_get_capabilities(enum rarch_capabilities type, char *s, size_t len);
2015-04-16 18:17:05 +00:00
2015-06-28 15:02:01 +00:00
enum rarch_content_type rarch_path_is_media_type(const char *path);
2015-06-23 05:25:48 +00:00
extern char current_savestate_dir[PATH_MAX_LENGTH];
extern char current_savefile_dir[PATH_MAX_LENGTH];
extern bool orig_system_dir_empty;
2015-01-09 16:40:47 +00:00
#ifdef __cplusplus
}
#endif
#endif