2015-01-09 17:40:47 +01:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2016-01-10 04:06:50 +01:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2015-10-19 19:43:21 -05:00
|
|
|
*
|
2015-01-09 17:40:47 +01: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
|
|
|
|
|
2015-01-09 18:53:16 +01:00
|
|
|
#include <boolean.h>
|
2015-06-02 17:17:46 +02:00
|
|
|
|
2015-01-09 17:40:47 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-02-07 01:44:54 +01: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
|
2015-06-28 17:02:01 +02:00
|
|
|
|
2016-02-07 01:44:54 +01:00
|
|
|
#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
|
|
|
|
#define MENU_VALUE_FILE_PNG 0x0b889deaU
|
|
|
|
#define MENU_VALUE_FILE_PNG_CAPS 0x0b88118aU
|
|
|
|
#define MENU_VALUE_FILE_TGA 0x0b88ae01U
|
|
|
|
#define MENU_VALUE_FILE_BMP 0x0b886244U
|
2015-06-28 17:02:01 +02:00
|
|
|
|
2015-09-27 01:58:24 +02:00
|
|
|
enum rarch_ctl_state
|
|
|
|
{
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_NONE = 0,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-12-07 14:59:09 +01:00
|
|
|
/* Will teardown drivers and clears all
|
|
|
|
* internal state of the program. */
|
|
|
|
RARCH_CTL_DEINIT,
|
|
|
|
|
|
|
|
/* Initialize all drivers. */
|
|
|
|
RARCH_CTL_INIT,
|
|
|
|
|
2016-01-30 05:03:15 +01:00
|
|
|
/* Initializes RetroArch. */
|
|
|
|
RARCH_CTL_MAIN_INIT,
|
|
|
|
|
|
|
|
/* Deinitializes RetroArch. */
|
|
|
|
RARCH_CTL_MAIN_DEINIT,
|
|
|
|
|
2016-01-19 23:26:47 +01:00
|
|
|
RARCH_CTL_UNSET_INITED,
|
|
|
|
|
|
|
|
RARCH_CTL_SET_INITED,
|
|
|
|
|
|
|
|
RARCH_CTL_IS_INITED,
|
|
|
|
|
2016-01-20 03:10:52 +01:00
|
|
|
RARCH_CTL_IS_PLAIN_CORE,
|
|
|
|
|
2016-01-19 23:44:32 +01:00
|
|
|
RARCH_CTL_IS_DUMMY_CORE,
|
|
|
|
|
2015-12-07 15:01:53 +01:00
|
|
|
RARCH_CTL_PREINIT,
|
|
|
|
|
2015-12-07 15:03:54 +01:00
|
|
|
RARCH_CTL_DESTROY,
|
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_LOAD_CONTENT,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_LOAD_CONTENT_FFMPEG,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_LOAD_CONTENT_IMAGEVIEWER,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_MENU_RUNNING,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_MENU_RUNNING_FINISHED,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-09-27 02:04:53 +02:00
|
|
|
/* Replaces currently loaded configuration file with
|
|
|
|
* another one. Will load a dummy core to flush state
|
|
|
|
* properly. */
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_REPLACE_CONFIG,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_QUIT,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_FORCE_QUIT,
|
2015-09-27 02:16:24 +02:00
|
|
|
|
2016-01-22 15:43:40 +01:00
|
|
|
/* 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,
|
|
|
|
* but this will do for now. */
|
2015-11-30 21:28:55 +01:00
|
|
|
RARCH_CTL_VALIDATE_CPU_FEATURES,
|
2015-09-27 02:18:45 +02:00
|
|
|
|
2015-11-30 22:02:54 +01:00
|
|
|
RARCH_CTL_FILL_PATHNAMES,
|
|
|
|
|
2015-12-07 14:30:36 +01:00
|
|
|
RARCH_CTL_SET_PATHS_REDIRECT,
|
|
|
|
|
2016-01-27 19:53:07 +01:00
|
|
|
RARCH_CTL_SET_SRAM_ENABLE,
|
|
|
|
|
2016-01-29 11:00:01 +01:00
|
|
|
RARCH_CTL_SET_PATHS,
|
|
|
|
|
2015-11-30 22:02:54 +01:00
|
|
|
RARCH_CTL_SET_FORCE_FULLSCREEN,
|
|
|
|
|
2015-12-04 03:20:33 +01:00
|
|
|
RARCH_CTL_UNSET_FORCE_FULLSCREEN,
|
|
|
|
|
2015-11-30 22:09:28 +01:00
|
|
|
RARCH_CTL_IS_FORCE_FULLSCREEN,
|
|
|
|
|
|
|
|
RARCH_CTL_SET_BLOCK_CONFIG_READ,
|
|
|
|
|
|
|
|
RARCH_CTL_UNSET_BLOCK_CONFIG_READ,
|
|
|
|
|
2015-12-04 09:06:47 +01:00
|
|
|
RARCH_CTL_IS_BLOCK_CONFIG_READ,
|
|
|
|
|
|
|
|
RARCH_CTL_SET_ERROR_ON_INIT,
|
|
|
|
|
|
|
|
RARCH_CTL_UNSET_ERROR_ON_INIT,
|
|
|
|
|
2016-04-06 00:30:21 +02:00
|
|
|
RARCH_CTL_HAS_SET_USERNAME,
|
|
|
|
|
|
|
|
RARCH_CTL_USERNAME_SET,
|
|
|
|
|
|
|
|
RARCH_CTL_USERNAME_UNSET,
|
|
|
|
|
2015-12-04 09:06:47 +01:00
|
|
|
RARCH_CTL_IS_ERROR_ON_INIT
|
2015-09-27 01:58:24 +02:00
|
|
|
};
|
|
|
|
|
2015-06-23 07:25:48 +02:00
|
|
|
enum rarch_content_type
|
|
|
|
{
|
|
|
|
RARCH_CONTENT_NONE = 0,
|
|
|
|
RARCH_CONTENT_MOVIE,
|
2015-06-28 17:02:01 +02:00
|
|
|
RARCH_CONTENT_MUSIC,
|
|
|
|
RARCH_CONTENT_IMAGE
|
2015-06-23 07:25:48 +02:00
|
|
|
};
|
|
|
|
|
2015-05-13 13:21:43 +02:00
|
|
|
enum rarch_capabilities
|
|
|
|
{
|
|
|
|
RARCH_CAPABILITIES_NONE = 0,
|
|
|
|
RARCH_CAPABILITIES_CPU,
|
2015-06-26 16:04:42 +02:00
|
|
|
RARCH_CAPABILITIES_COMPILER
|
2015-05-13 13:21:43 +02:00
|
|
|
};
|
|
|
|
|
2015-01-09 18:53:16 +01:00
|
|
|
struct rarch_main_wrap
|
|
|
|
{
|
2016-01-30 05:03:15 +01:00
|
|
|
int argc;
|
|
|
|
char **argv;
|
2015-01-09 18:53:16 +01:00
|
|
|
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-09-27 02:04:53 +02:00
|
|
|
bool rarch_ctl(enum rarch_ctl_state state, void *data);
|
2015-01-09 17:40:47 +01:00
|
|
|
|
2016-01-26 05:56:53 +01:00
|
|
|
int rarch_info_get_capabilities(enum rarch_capabilities type,
|
|
|
|
char *s, size_t len);
|
2015-04-16 20:17:05 +02:00
|
|
|
|
2015-06-28 17:02:01 +02:00
|
|
|
enum rarch_content_type rarch_path_is_media_type(const char *path);
|
2015-06-23 07:25:48 +02:00
|
|
|
|
2015-11-30 04:10:15 +01:00
|
|
|
const char *rarch_get_current_savefile_dir(void);
|
2015-05-07 19:59:06 -05:00
|
|
|
|
2016-02-08 00:07:41 -05:00
|
|
|
bool rarch_game_options_validate(char *s, size_t len, bool mkdir);
|
2016-01-26 02:24:59 +01:00
|
|
|
|
2016-03-22 02:45:25 +01:00
|
|
|
/**
|
|
|
|
* retro_fail:
|
|
|
|
* @error_code : Error code.
|
|
|
|
* @error : Error message to show.
|
|
|
|
*
|
|
|
|
* Sanely kills the program.
|
|
|
|
**/
|
|
|
|
void retro_fail(int error_code, const char *error);
|
|
|
|
|
2015-01-09 17:40:47 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|