2014-06-17 14:49:13 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-06-17 14:49:13 +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/>.
|
|
|
|
*/
|
|
|
|
|
2015-01-12 20:22:50 +00:00
|
|
|
#ifndef __MENU_DRIVER_H__
|
|
|
|
#define __MENU_DRIVER_H__
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2015-01-12 19:00:43 +00:00
|
|
|
#include <retro_miscellaneous.h>
|
2015-02-01 21:52:06 +00:00
|
|
|
#include "menu_animation.h"
|
2015-06-13 21:07:27 +00:00
|
|
|
#include "menu_display.h"
|
2015-05-13 14:18:43 +00:00
|
|
|
#include "menu_displaylist.h"
|
2015-06-16 00:15:32 +00:00
|
|
|
#include "menu_entries.h"
|
2014-10-17 23:17:00 +00:00
|
|
|
#include "menu_list.h"
|
2015-06-13 20:57:55 +00:00
|
|
|
#include "menu_input.h"
|
2015-05-12 12:35:07 +00:00
|
|
|
#include "menu_navigation.h"
|
2015-06-03 09:24:53 +00:00
|
|
|
#include "menu_setting.h"
|
2015-06-09 01:07:19 +00:00
|
|
|
#include "../libretro.h"
|
|
|
|
#include "../playlist.h"
|
2014-09-15 22:52:07 +00:00
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-06-04 08:39:48 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MENU_IMAGE_NONE = 0,
|
|
|
|
MENU_IMAGE_WALLPAPER,
|
2015-06-26 13:53:18 +00:00
|
|
|
MENU_IMAGE_BOXART
|
2015-06-04 08:39:48 +00:00
|
|
|
} menu_image_type_t;
|
|
|
|
|
2015-07-07 22:37:44 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MENU_ENVIRON_NONE = 0,
|
|
|
|
MENU_ENVIRON_RESET_HORIZONTAL_LIST,
|
|
|
|
MENU_ENVIRON_LAST
|
|
|
|
} menu_environ_cb_t;
|
|
|
|
|
2015-07-08 03:45:43 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2015-07-17 13:03:17 +00:00
|
|
|
MENU_HELP_NONE = 0,
|
|
|
|
MENU_HELP_WELCOME,
|
2015-07-08 14:45:04 +00:00
|
|
|
MENU_HELP_EXTRACT,
|
2015-07-17 13:03:17 +00:00
|
|
|
MENU_HELP_CONTROLS,
|
2015-07-17 20:11:24 +00:00
|
|
|
MENU_HELP_LOADING_CONTENT,
|
2015-07-18 09:29:37 +00:00
|
|
|
MENU_HELP_WHAT_IS_A_CORE,
|
2015-07-18 12:01:37 +00:00
|
|
|
MENU_HELP_CHANGE_VIRTUAL_GAMEPAD,
|
2015-07-18 12:57:20 +00:00
|
|
|
MENU_HELP_AUDIO_VIDEO_TROUBLESHOOTING,
|
|
|
|
MENU_HELP_SCANNING_CONTENT,
|
2015-07-08 03:45:43 +00:00
|
|
|
MENU_HELP_LAST
|
|
|
|
} menu_help_type_t;
|
|
|
|
|
2015-08-17 03:05:29 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MENU_VIDEO_DRIVER_GENERIC = 0,
|
|
|
|
MENU_VIDEO_DRIVER_OPENGL,
|
|
|
|
MENU_VIDEO_DRIVER_DIRECT3D,
|
|
|
|
} menu_video_driver_type_t;
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2014-10-10 13:52:12 +00:00
|
|
|
void *userdata;
|
|
|
|
|
2015-04-20 14:22:55 +00:00
|
|
|
float scroll_y;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-07-08 03:45:43 +00:00
|
|
|
bool push_help_screen;
|
|
|
|
menu_help_type_t help_screen_type;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
bool defer_core;
|
2015-01-07 19:42:36 +00:00
|
|
|
char deferred_path[PATH_MAX_LENGTH];
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-07-14 10:49:54 +00:00
|
|
|
char scratch_buf[PATH_MAX_LENGTH];
|
|
|
|
char scratch2_buf[PATH_MAX_LENGTH];
|
|
|
|
|
2015-06-15 00:08:25 +00:00
|
|
|
/* Menu display */
|
2015-06-14 13:34:05 +00:00
|
|
|
menu_display_t display;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-06-16 00:15:32 +00:00
|
|
|
/* Menu entries */
|
|
|
|
menu_entries_t entries;
|
|
|
|
|
2014-07-28 17:37:25 +00:00
|
|
|
bool load_no_content;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-06-15 00:08:25 +00:00
|
|
|
/* Menu shader */
|
|
|
|
char default_glslp[PATH_MAX_LENGTH];
|
|
|
|
char default_cgp[PATH_MAX_LENGTH];
|
2015-01-19 20:24:08 +00:00
|
|
|
struct video_shader *shader;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-06-13 20:57:55 +00:00
|
|
|
menu_input_t input;
|
2014-06-17 14:49:13 +00:00
|
|
|
|
2015-05-26 02:27:21 +00:00
|
|
|
content_playlist_t *playlist;
|
2015-02-03 01:01:00 +00:00
|
|
|
char db_playlist_file[PATH_MAX_LENGTH];
|
2014-06-17 14:49:13 +00:00
|
|
|
} menu_handle_t;
|
|
|
|
|
2015-01-12 18:11:51 +00:00
|
|
|
typedef struct menu_ctx_driver
|
|
|
|
{
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*set_texture)(void);
|
|
|
|
void (*render_messagebox)(const char *msg);
|
|
|
|
void (*render)(void);
|
|
|
|
void (*frame)(void);
|
2015-01-12 18:11:51 +00:00
|
|
|
void* (*init)(void);
|
|
|
|
void (*free)(void*);
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*context_reset)(void);
|
|
|
|
void (*context_destroy)(void);
|
|
|
|
void (*populate_entries)(const char *path, const char *label,
|
2015-02-11 19:40:48 +00:00
|
|
|
unsigned k);
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*toggle)(bool);
|
|
|
|
void (*navigation_clear)(bool);
|
|
|
|
void (*navigation_decrement)(void);
|
|
|
|
void (*navigation_increment)(void);
|
|
|
|
void (*navigation_set)(bool);
|
|
|
|
void (*navigation_set_last)(void);
|
|
|
|
void (*navigation_descend_alphabet)(size_t *);
|
|
|
|
void (*navigation_ascend_alphabet)(size_t *);
|
|
|
|
void (*list_insert)(file_list_t *list, const char *, const char *, size_t);
|
2015-06-12 12:15:48 +00:00
|
|
|
void (*list_free)(file_list_t *list, size_t, size_t);
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*list_clear)(file_list_t *list);
|
2015-06-07 09:20:36 +00:00
|
|
|
void (*list_cache)(menu_list_type_t, unsigned);
|
2015-06-15 17:00:52 +00:00
|
|
|
size_t(*list_get_selection)(void *data);
|
2015-06-08 15:02:14 +00:00
|
|
|
size_t(*list_get_size)(void *data, menu_list_type_t type);
|
|
|
|
void *(*list_get_entry)(void *data, menu_list_type_t type, unsigned i);
|
2015-02-11 19:40:48 +00:00
|
|
|
void (*list_set_selection)(file_list_t *list);
|
2015-06-08 14:06:51 +00:00
|
|
|
int (*bind_init)(menu_file_list_cbs_t *cbs,
|
2015-06-08 14:01:57 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-06-04 08:39:48 +00:00
|
|
|
bool (*load_image)(void *data, menu_image_type_t type);
|
2015-01-12 18:11:51 +00:00
|
|
|
const char *ident;
|
2015-08-17 03:05:29 +00:00
|
|
|
menu_video_driver_type_t type;
|
2015-07-07 23:01:41 +00:00
|
|
|
int (*environ_cb)(menu_environ_cb_t type, void *data);
|
2015-01-12 18:11:51 +00:00
|
|
|
} menu_ctx_driver_t;
|
|
|
|
|
2015-01-12 20:22:50 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_rmenu;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_rmenu_xui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_rgui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_glui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_xmb;
|
2015-03-09 13:39:39 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_null;
|
2015-01-12 20:22:50 +00:00
|
|
|
|
2015-01-12 19:00:43 +00:00
|
|
|
/**
|
|
|
|
* menu_driver_find_handle:
|
|
|
|
* @index : index of driver to get handle to.
|
|
|
|
*
|
|
|
|
* Returns: handle to menu driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
|
|
|
const void *menu_driver_find_handle(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* menu_driver_find_ident:
|
|
|
|
* @index : index of driver to get handle to.
|
|
|
|
*
|
|
|
|
* Returns: Human-readable identifier of menu driver at index. Can be NULL
|
|
|
|
* if nothing found.
|
|
|
|
**/
|
|
|
|
const char *menu_driver_find_ident(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* config_get_menu_driver_options:
|
|
|
|
*
|
|
|
|
* Get an enumerated list of all menu driver names,
|
|
|
|
* separated by '|'.
|
|
|
|
*
|
|
|
|
* Returns: string listing of all menu driver names,
|
|
|
|
* separated by '|'.
|
|
|
|
**/
|
|
|
|
const char* config_get_menu_driver_options(void);
|
|
|
|
|
|
|
|
void find_menu_driver(void);
|
|
|
|
|
|
|
|
void init_menu(void);
|
|
|
|
|
2015-03-21 22:56:42 +00:00
|
|
|
menu_handle_t *menu_driver_get_ptr(void);
|
2015-02-13 18:00:34 +00:00
|
|
|
|
2015-03-22 04:21:14 +00:00
|
|
|
void menu_driver_set_texture(void);
|
|
|
|
|
2015-03-22 04:27:19 +00:00
|
|
|
void menu_driver_frame(void);
|
|
|
|
|
2015-03-22 04:21:14 +00:00
|
|
|
void menu_driver_context_reset(void);
|
|
|
|
|
2015-03-22 04:32:43 +00:00
|
|
|
void menu_driver_free(menu_handle_t *menu);
|
|
|
|
|
2015-03-22 05:02:02 +00:00
|
|
|
void menu_driver_toggle(bool latch);
|
|
|
|
|
2015-06-04 08:39:48 +00:00
|
|
|
bool menu_driver_load_image(void *data, menu_image_type_t type);
|
2015-03-22 05:48:03 +00:00
|
|
|
|
2015-06-07 09:20:36 +00:00
|
|
|
void menu_driver_list_cache(menu_list_type_t type, unsigned action);
|
2015-04-11 03:28:40 +00:00
|
|
|
|
2015-06-12 12:15:48 +00:00
|
|
|
void menu_driver_list_free(file_list_t *list, size_t i, size_t list_size);
|
2015-04-11 03:28:40 +00:00
|
|
|
|
|
|
|
void menu_driver_list_clear(file_list_t *list);
|
|
|
|
|
2015-06-07 13:43:03 +00:00
|
|
|
size_t menu_driver_list_get_size(menu_list_type_t type);
|
|
|
|
|
2015-04-11 03:28:40 +00:00
|
|
|
void menu_driver_list_set_selection(file_list_t *list);
|
|
|
|
|
2015-06-08 15:02:14 +00:00
|
|
|
void *menu_driver_list_get_entry(menu_list_type_t type, unsigned i);
|
|
|
|
|
2015-05-19 19:55:44 +00:00
|
|
|
const menu_ctx_driver_t *menu_ctx_driver_get_ptr(void);
|
|
|
|
|
2015-04-11 03:28:40 +00:00
|
|
|
void menu_driver_context_destroy(void);
|
|
|
|
|
2015-05-19 18:11:57 +00:00
|
|
|
bool menu_driver_alive(void);
|
|
|
|
|
|
|
|
void menu_driver_set_alive(void);
|
|
|
|
|
|
|
|
void menu_driver_unset_alive(void);
|
|
|
|
|
2015-06-15 17:00:52 +00:00
|
|
|
size_t menu_driver_list_get_selection(void);
|
2015-06-08 15:02:14 +00:00
|
|
|
|
2015-07-07 23:01:41 +00:00
|
|
|
bool menu_environment_cb(menu_environ_cb_t type, void *data);
|
|
|
|
|
2015-06-08 14:06:51 +00:00
|
|
|
int menu_driver_bind_init(menu_file_list_cbs_t *cbs,
|
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
|
|
|
|
2015-06-08 12:53:50 +00:00
|
|
|
/* HACK */
|
|
|
|
extern unsigned int rdb_entry_start_game_selection_ptr;
|
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|