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
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
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
|
|
|
|
2014-06-05 06:12:41 +02:00
|
|
|
#include <stddef.h>
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2013-07-26 20:58:47 +02:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-06-01 05:35:28 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
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,
|
|
|
|
FRONTEND_POWERSTATE_ON_POWER_SOURCE,
|
|
|
|
};
|
|
|
|
|
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,
|
|
|
|
FRONTEND_ARCH_MIPS,
|
2015-04-18 20:16:59 +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);
|
2014-10-02 21:39:29 +02:00
|
|
|
void (*set_fork)(bool exitspawn, bool start_game);
|
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);
|
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;
|
|
|
|
|
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_gx;
|
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_ps3;
|
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_xdk;
|
2013-07-27 17:16:46 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_qnx;
|
2015-04-20 17:19:51 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_darwin;
|
2013-11-03 16:38:56 +01:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_android;
|
2015-04-18 19:12:14 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_linux;
|
2014-02-12 18:24:34 +01:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_psp;
|
2015-04-01 22:14:13 +01:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_ctr;
|
2015-04-07 22:11:28 +02:00
|
|
|
extern const frontend_ctx_driver_t frontend_ctx_win32;
|
2014-05-09 06:12:53 +02:00
|
|
|
extern const 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.
|
|
|
|
**/
|
2014-09-09 18:31:44 +02:00
|
|
|
const frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident);
|
|
|
|
|
2015-04-08 00:08:53 +02:00
|
|
|
const frontend_ctx_driver_t *frontend_get_ptr(void);
|
|
|
|
|
2015-01-09 18:11:33 +01:00
|
|
|
/**
|
|
|
|
* frontend_ctx_init_first:
|
|
|
|
*
|
|
|
|
* Finds first suitable driver and initialize.
|
|
|
|
*
|
|
|
|
* Returns: pointer to first suitable driver, otherwise NULL.
|
|
|
|
**/
|
2014-09-09 18:31:44 +02:00
|
|
|
const frontend_ctx_driver_t *frontend_ctx_init_first(void);
|
2013-07-26 20:58:47 +02:00
|
|
|
|
2014-06-01 05:35:28 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-26 20:58:47 +02:00
|
|
|
#endif
|