2013-07-26 20:58:47 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-01-22 13:40:32 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2015-08-30 19:46:19 +02:00
|
|
|
*
|
2013-07-26 20:58:47 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
2015-01-12 21:21:08 +01:00
|
|
|
#ifndef __FRONTEND_DRIVER_H
|
|
|
|
#define __FRONTEND_DRIVER_H
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2016-06-12 02:33:07 +02:00
|
|
|
#include <stdint.h>
|
2014-06-05 06:12:41 +02:00
|
|
|
#include <stddef.h>
|
2015-12-05 07:57:45 +01:00
|
|
|
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2016-06-03 06:02:49 +02:00
|
|
|
#include <retro_common_api.h>
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2016-06-03 06:02:49 +02:00
|
|
|
RETRO_BEGIN_DECLS
|
2014-06-01 05:35:28 +02:00
|
|
|
|
2015-04-18 13:56:26 +02:00
|
|
|
enum frontend_powerstate
|
|
|
|
{
|
|
|
|
FRONTEND_POWERSTATE_NONE = 0,
|
|
|
|
FRONTEND_POWERSTATE_NO_SOURCE,
|
|
|
|
FRONTEND_POWERSTATE_CHARGING,
|
|
|
|
FRONTEND_POWERSTATE_CHARGED,
|
2015-06-26 15:53:18 +02:00
|
|
|
FRONTEND_POWERSTATE_ON_POWER_SOURCE
|
2015-04-18 13:56:26 +02:00
|
|
|
};
|
|
|
|
|
2016-02-04 17:46:50 +01:00
|
|
|
enum frontend_fork
|
|
|
|
{
|
|
|
|
FRONTEND_FORK_NONE = 0,
|
|
|
|
FRONTEND_FORK_CORE,
|
|
|
|
FRONTEND_FORK_CORE_WITH_ARGS,
|
2016-02-05 18:57:44 +01:00
|
|
|
FRONTEND_FORK_RESTART
|
2016-02-04 17:46:50 +01:00
|
|
|
};
|
|
|
|
|
2015-04-18 20:03:59 +02:00
|
|
|
enum frontend_architecture
|
|
|
|
{
|
|
|
|
FRONTEND_ARCH_NONE = 0,
|
|
|
|
FRONTEND_ARCH_X86,
|
|
|
|
FRONTEND_ARCH_X86_64,
|
|
|
|
FRONTEND_ARCH_PPC,
|
|
|
|
FRONTEND_ARCH_ARM,
|
2016-05-18 22:09:01 +02:00
|
|
|
FRONTEND_ARCH_ARMV7,
|
2016-10-18 16:35:15 +02:00
|
|
|
FRONTEND_ARCH_ARMV8,
|
2015-04-18 20:03:59 +02:00
|
|
|
FRONTEND_ARCH_MIPS,
|
2015-06-26 15:53:18 +02:00
|
|
|
FRONTEND_ARCH_TILE
|
2015-04-18 20:03:59 +02:00
|
|
|
};
|
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
typedef void (*environment_get_t)(int *argc, char *argv[], void *args,
|
|
|
|
void *params_data);
|
|
|
|
typedef void (*process_args_t)(int *argc, char *argv[]);
|
|
|
|
|
2013-07-26 20:58:47 +02:00
|
|
|
typedef struct frontend_ctx_driver
|
|
|
|
{
|
2014-07-28 00:18:05 +02:00
|
|
|
environment_get_t environment_get;
|
2013-11-03 16:38:56 +01:00
|
|
|
void (*init)(void *data);
|
|
|
|
void (*deinit)(void *data);
|
2015-06-02 18:28:51 +02:00
|
|
|
void (*exitspawn)(char *s, size_t len);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2014-07-28 00:18:05 +02:00
|
|
|
process_args_t process_args;
|
2013-07-27 03:59:01 +02:00
|
|
|
void (*exec)(const char *, bool);
|
2016-02-04 17:46:50 +01:00
|
|
|
bool (*set_fork)(enum frontend_fork fork_mode);
|
2013-07-27 16:36:55 +02:00
|
|
|
void (*shutdown)(bool);
|
2014-06-12 22:31:25 +02:00
|
|
|
void (*get_name)(char *, size_t);
|
2015-04-07 23:28:45 +02:00
|
|
|
void (*get_os)(char *, size_t, int *major, int *minor);
|
2014-10-17 03:55:16 +02:00
|
|
|
int (*get_rating)(void);
|
|
|
|
void (*content_loaded)(void);
|
2015-04-18 20:03:59 +02:00
|
|
|
enum frontend_architecture (*get_architecture)(void);
|
2015-04-18 13:56:26 +02:00
|
|
|
enum frontend_powerstate (*get_powerstate)(int *seconds, int *percent);
|
2015-06-15 22:45:02 +02:00
|
|
|
int (*parse_drive_list)(void*);
|
2016-06-12 13:20:54 +02:00
|
|
|
uint64_t (*get_total_mem)(void);
|
2016-06-12 20:50:03 +02:00
|
|
|
uint64_t (*get_used_mem)(void);
|
2016-07-08 02:10:40 +02:00
|
|
|
void (*install_signal_handler)(void);
|
2016-07-08 02:20:42 +02:00
|
|
|
int (*get_signal_handler_state)(void);
|
2016-07-08 12:48:01 +02:00
|
|
|
void (*set_signal_handler_state)(int value);
|
2016-07-08 02:24:56 +02:00
|
|
|
void (*destroy_signal_handler_state)(void);
|
2016-10-09 17:15:50 +02:00
|
|
|
void (*attach_console)(void);
|
|
|
|
void (*detach_console)(void);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
|
|
|
const char *ident;
|
2014-09-15 16:48:04 -03:00
|
|
|
|
2014-09-16 18:01:24 -03:00
|
|
|
const struct video_driver *(*get_video_driver)(void);
|
2013-07-26 20:58:47 +02:00
|
|
|
} frontend_ctx_driver_t;
|
|
|
|
|
2015-07-27 03:44:28 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_gx;
|
2016-10-27 15:33:40 +01:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_wiiu;
|
2015-07-27 03:44:28 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_ps3;
|
|
|
|
extern frontend_ctx_driver_t frontend_ctx_xdk;
|
|
|
|
extern frontend_ctx_driver_t frontend_ctx_qnx;
|
|
|
|
extern frontend_ctx_driver_t frontend_ctx_darwin;
|
|
|
|
extern frontend_ctx_driver_t frontend_ctx_linux;
|
2016-07-08 02:13:19 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_bsd;
|
2015-07-27 03:44:28 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_psp;
|
|
|
|
extern frontend_ctx_driver_t frontend_ctx_ctr;
|
|
|
|
extern frontend_ctx_driver_t frontend_ctx_win32;
|
2015-09-04 20:45:02 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_xenon;
|
2016-08-10 23:03:51 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_emscripten;
|
2017-01-24 00:55:55 -05:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_dos;
|
2015-07-27 03:44:28 +02:00
|
|
|
extern frontend_ctx_driver_t frontend_ctx_null;
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2015-01-09 18:11:33 +01:00
|
|
|
/**
|
|
|
|
* frontend_ctx_find_driver:
|
|
|
|
* @ident : Identifier name of driver to find.
|
|
|
|
*
|
|
|
|
* Finds driver with @ident. Does not initialize.
|
|
|
|
*
|
|
|
|
* Returns: pointer to driver if successful, otherwise NULL.
|
|
|
|
**/
|
2015-07-27 03:44:28 +02:00
|
|
|
frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident);
|
2014-09-09 18:31:44 +02:00
|
|
|
|
2015-07-27 03:44:28 +02:00
|
|
|
frontend_ctx_driver_t *frontend_get_ptr(void);
|
2015-04-08 00:08:53 +02:00
|
|
|
|
2015-01-09 18:11:33 +01:00
|
|
|
/**
|
|
|
|
* frontend_ctx_init_first:
|
|
|
|
*
|
|
|
|
* Finds first suitable driver and initialize.
|
|
|
|
*
|
2015-08-30 19:46:19 +02:00
|
|
|
* Returns: pointer to first suitable driver, otherwise NULL.
|
2015-01-09 18:11:33 +01:00
|
|
|
**/
|
2015-07-27 03:44:28 +02:00
|
|
|
frontend_ctx_driver_t *frontend_ctx_init_first(void);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2015-06-15 22:45:02 +02:00
|
|
|
int frontend_driver_parse_drive_list(void *data);
|
|
|
|
|
2015-12-05 07:53:02 +01:00
|
|
|
void frontend_driver_content_loaded(void);
|
|
|
|
|
2016-02-04 17:46:50 +01:00
|
|
|
bool frontend_driver_set_fork(enum frontend_fork fork_mode);
|
2015-12-05 07:57:45 +01:00
|
|
|
|
2015-12-05 08:10:01 +01:00
|
|
|
void frontend_driver_process_args(int *argc, char *argv[]);
|
|
|
|
|
2015-12-05 08:36:16 +01:00
|
|
|
bool frontend_driver_is_inited(void);
|
|
|
|
|
|
|
|
void frontend_driver_init_first(void *args);
|
|
|
|
|
2015-12-05 09:06:43 +01:00
|
|
|
void frontend_driver_free(void);
|
|
|
|
|
2016-05-18 15:34:03 +02:00
|
|
|
enum frontend_architecture frontend_driver_get_cpu_architecture(void);
|
|
|
|
|
2015-12-05 08:36:16 +01:00
|
|
|
environment_get_t frontend_driver_environment_get_ptr(void);
|
|
|
|
|
2015-12-05 08:52:01 +01:00
|
|
|
bool frontend_driver_has_get_video_driver_func(void);
|
|
|
|
|
|
|
|
const struct video_driver *frontend_driver_get_video_driver(void);
|
2015-12-05 09:06:43 +01:00
|
|
|
|
|
|
|
void frontend_driver_shutdown(bool a);
|
|
|
|
|
|
|
|
void frontend_driver_deinit(void *args);
|
|
|
|
|
|
|
|
void frontend_driver_exitspawn(char *s, size_t len);
|
2016-02-03 11:56:01 +01:00
|
|
|
|
|
|
|
bool frontend_driver_has_fork(void);
|
|
|
|
|
2016-02-03 14:36:34 +01:00
|
|
|
bool frontend_driver_get_core_extension(char *s, size_t len);
|
|
|
|
|
2016-02-03 13:36:00 +01:00
|
|
|
bool frontend_driver_get_salamander_basename(char *s, size_t len);
|
|
|
|
|
2016-06-12 13:20:54 +02:00
|
|
|
uint64_t frontend_driver_get_total_memory(void);
|
2016-06-12 02:33:07 +02:00
|
|
|
|
2016-06-12 20:50:03 +02:00
|
|
|
uint64_t frontend_driver_get_used_memory(void);
|
2016-06-12 12:45:13 +02:00
|
|
|
|
2016-07-08 02:24:56 +02:00
|
|
|
void frontend_driver_install_signal_handler(void);
|
|
|
|
|
|
|
|
int frontend_driver_get_signal_handler_state(void);
|
|
|
|
|
2016-07-08 12:48:01 +02:00
|
|
|
void frontend_driver_set_signal_handler_state(int value);
|
|
|
|
|
2016-07-08 02:24:56 +02:00
|
|
|
void frontend_driver_destroy_signal_handler_state(void);
|
2016-07-08 02:10:40 +02:00
|
|
|
|
2016-10-09 17:15:50 +02:00
|
|
|
void frontend_driver_attach_console(void);
|
|
|
|
|
|
|
|
void frontend_driver_detach_console(void);
|
|
|
|
|
2016-06-03 06:02:49 +02:00
|
|
|
RETRO_END_DECLS
|
2014-06-01 05:35:28 +02:00
|
|
|
|
2013-07-26 20:58:47 +02:00
|
|
|
#endif
|