RetroArch/frontend/frontend_driver.h

116 lines
3.4 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 16:46:50 +00:00
* 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 __FRONTEND_DRIVER_H
#define __FRONTEND_DRIVER_H
#include <stddef.h>
#include <boolean.h>
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif
2014-06-01 03:35:28 +00:00
#ifdef __cplusplus
extern "C" {
#endif
enum frontend_powerstate
{
FRONTEND_POWERSTATE_NONE = 0,
FRONTEND_POWERSTATE_NO_SOURCE,
FRONTEND_POWERSTATE_CHARGING,
FRONTEND_POWERSTATE_CHARGED,
FRONTEND_POWERSTATE_ON_POWER_SOURCE,
};
enum frontend_architecture
{
FRONTEND_ARCH_NONE = 0,
FRONTEND_ARCH_X86,
FRONTEND_ARCH_X86_64,
FRONTEND_ARCH_PPC,
FRONTEND_ARCH_ARM,
FRONTEND_ARCH_MIPS,
FRONTEND_ARCH_TILE,
};
typedef void (*environment_get_t)(int *argc, char *argv[], void *args,
void *params_data);
typedef void (*process_args_t)(int *argc, char *argv[]);
typedef struct frontend_ctx_driver
{
environment_get_t environment_get;
2013-11-03 15:38:56 +00:00
void (*init)(void *data);
void (*deinit)(void *data);
2015-06-02 16:28:51 +00:00
void (*exitspawn)(char *s, size_t len);
process_args_t process_args;
void (*exec)(const char *, bool);
void (*set_fork)(bool exitspawn, bool start_game);
void (*shutdown)(bool);
2014-06-12 20:31:25 +00:00
void (*get_name)(char *, size_t);
void (*get_os)(char *, size_t, int *major, int *minor);
int (*get_rating)(void);
void (*content_loaded)(void);
enum frontend_architecture (*get_architecture)(void);
enum frontend_powerstate (*get_powerstate)(int *seconds, int *percent);
const char *ident;
2014-09-16 21:01:24 +00:00
const struct video_driver *(*get_video_driver)(void);
} 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 15:16:46 +00:00
extern const frontend_ctx_driver_t frontend_ctx_qnx;
extern const frontend_ctx_driver_t frontend_ctx_darwin;
2013-11-03 15:38:56 +00:00
extern const frontend_ctx_driver_t frontend_ctx_android;
extern const frontend_ctx_driver_t frontend_ctx_linux;
2014-02-12 17:24:34 +00:00
extern const frontend_ctx_driver_t frontend_ctx_psp;
2015-04-01 21:14:13 +00:00
extern const frontend_ctx_driver_t frontend_ctx_ctr;
extern const frontend_ctx_driver_t frontend_ctx_win32;
extern const frontend_ctx_driver_t frontend_ctx_null;
/**
* 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 16:31:44 +00:00
const frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident);
2015-04-07 22:08:53 +00:00
const frontend_ctx_driver_t *frontend_get_ptr(void);
/**
* frontend_ctx_init_first:
*
* Finds first suitable driver and initialize.
*
* Returns: pointer to first suitable driver, otherwise NULL.
**/
2014-09-09 16:31:44 +00:00
const frontend_ctx_driver_t *frontend_ctx_init_first(void);
2014-06-01 03:35:28 +00:00
#ifdef __cplusplus
}
#endif
#endif