2014-06-17 14:49:13 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2016-01-10 03:06:50 +00:00
|
|
|
* Copyright (C) 2011-2016 - 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 <stdint.h>
|
2015-12-06 16:55:27 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.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-12-06 16:55:27 +00:00
|
|
|
|
2015-06-16 00:15:32 +00:00
|
|
|
#include "menu_entries.h"
|
2015-06-03 09:24:53 +00:00
|
|
|
#include "menu_setting.h"
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2015-12-10 19:12:08 +00:00
|
|
|
#include "../gfx/video_shader_driver.h"
|
|
|
|
|
2015-12-06 16:55:27 +00:00
|
|
|
#include "../driver.h"
|
2015-06-09 01:07:19 +00:00
|
|
|
#include "../libretro.h"
|
2015-12-06 16:55:27 +00:00
|
|
|
#include "../dynamic.h"
|
2014-09-15 22:52:07 +00:00
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-12-06 16:55:27 +00:00
|
|
|
#ifndef MAX_COUNTERS
|
|
|
|
#define MAX_COUNTERS 64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX_CHEAT_COUNTERS
|
|
|
|
#define MAX_CHEAT_COUNTERS 100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MENU_SETTINGS_CORE_INFO_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CHEEVOS_NONE 0xffff
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_CREATE 0x05000
|
|
|
|
#define MENU_SETTINGS_CORE_OPTION_START 0x10000
|
|
|
|
#define MENU_SETTINGS_PLAYLIST_ASSOCIATION_START 0x20000
|
|
|
|
#define MENU_SETTINGS_CHEEVOS_START 0x40000
|
|
|
|
|
|
|
|
|
|
|
|
#define MENU_KEYBOARD_BIND_TIMEOUT_SECONDS 5
|
|
|
|
|
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-11-08 17:52:04 +00:00
|
|
|
MENU_HELP_CHEEVOS_DESCRIPTION,
|
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;
|
|
|
|
|
2016-02-10 19:29:17 +00:00
|
|
|
enum menu_state_changes
|
|
|
|
{
|
|
|
|
MENU_STATE_RENDER_FRAMEBUFFER = 0,
|
|
|
|
MENU_STATE_RENDER_MESSAGEBOX,
|
|
|
|
MENU_STATE_BLIT,
|
|
|
|
MENU_STATE_POP_STACK,
|
|
|
|
MENU_STATE_POST_ITERATE
|
|
|
|
};
|
|
|
|
|
2015-12-05 12:00:45 +00:00
|
|
|
enum rarch_menu_ctl_state
|
|
|
|
{
|
|
|
|
RARCH_MENU_CTL_NONE = 0,
|
2015-12-12 16:25:03 +00:00
|
|
|
RARCH_MENU_CTL_REFRESH,
|
2015-12-11 13:26:51 +00:00
|
|
|
RARCH_MENU_CTL_NAVIGATION_INCREMENT,
|
|
|
|
RARCH_MENU_CTL_NAVIGATION_DECREMENT,
|
|
|
|
RARCH_MENU_CTL_NAVIGATION_SET,
|
2015-12-12 22:40:25 +00:00
|
|
|
RARCH_MENU_CTL_NAVIGATION_CLEAR,
|
2015-12-11 13:26:51 +00:00
|
|
|
RARCH_MENU_CTL_NAVIGATION_SET_LAST,
|
|
|
|
RARCH_MENU_CTL_NAVIGATION_ASCEND_ALPHABET,
|
|
|
|
RARCH_MENU_CTL_NAVIGATION_DESCEND_ALPHABET,
|
2016-02-12 03:28:09 +00:00
|
|
|
RARCH_MENU_CTL_IS_PENDING_QUICK_MENU,
|
|
|
|
RARCH_MENU_CTL_SET_PENDING_QUICK_MENU,
|
|
|
|
RARCH_MENU_CTL_UNSET_PENDING_QUICK_MENU,
|
2016-02-10 18:19:30 +00:00
|
|
|
RARCH_MENU_CTL_IS_PENDING_QUIT,
|
|
|
|
RARCH_MENU_CTL_SET_PENDING_QUIT,
|
|
|
|
RARCH_MENU_CTL_UNSET_PENDING_QUIT,
|
2016-02-10 18:56:35 +00:00
|
|
|
RARCH_MENU_CTL_IS_PENDING_SHUTDOWN,
|
|
|
|
RARCH_MENU_CTL_SET_PENDING_SHUTDOWN,
|
|
|
|
RARCH_MENU_CTL_UNSET_PENDING_SHUTDOWN,
|
2015-12-05 12:04:21 +00:00
|
|
|
RARCH_MENU_CTL_DEINIT,
|
2016-02-09 15:45:28 +00:00
|
|
|
RARCH_MENU_CTL_INIT,
|
2015-12-10 19:09:15 +00:00
|
|
|
RARCH_MENU_CTL_SHADER_DEINIT,
|
2016-02-10 02:29:31 +00:00
|
|
|
RARCH_MENU_CTL_SHADER_INIT,
|
2015-12-10 18:56:08 +00:00
|
|
|
RARCH_MENU_CTL_SHADER_GET,
|
2015-12-11 14:28:16 +00:00
|
|
|
RARCH_MENU_CTL_BLIT_RENDER,
|
2015-12-10 18:43:25 +00:00
|
|
|
RARCH_MENU_CTL_RENDER,
|
2015-12-11 14:28:16 +00:00
|
|
|
RARCH_MENU_CTL_RENDER_MESSAGEBOX,
|
2015-12-06 17:28:37 +00:00
|
|
|
RARCH_MENU_CTL_FRAME,
|
2015-12-07 15:55:13 +00:00
|
|
|
RARCH_MENU_CTL_SET_PREVENT_POPULATE,
|
|
|
|
RARCH_MENU_CTL_UNSET_PREVENT_POPULATE,
|
|
|
|
RARCH_MENU_CTL_IS_PREVENT_POPULATE,
|
2015-12-06 17:30:45 +00:00
|
|
|
RARCH_MENU_CTL_SET_TEXTURE,
|
2015-12-06 16:41:00 +00:00
|
|
|
RARCH_MENU_CTL_SET_TOGGLE,
|
|
|
|
RARCH_MENU_CTL_UNSET_TOGGLE,
|
2015-12-05 12:49:22 +00:00
|
|
|
RARCH_MENU_CTL_SET_ALIVE,
|
|
|
|
RARCH_MENU_CTL_UNSET_ALIVE,
|
|
|
|
RARCH_MENU_CTL_IS_ALIVE,
|
2015-12-06 16:15:32 +00:00
|
|
|
RARCH_MENU_CTL_DESTROY,
|
2015-12-05 12:06:22 +00:00
|
|
|
RARCH_MENU_CTL_IS_SET_TEXTURE,
|
2015-12-05 12:00:45 +00:00
|
|
|
RARCH_MENU_CTL_SET_OWN_DRIVER,
|
|
|
|
RARCH_MENU_CTL_UNSET_OWN_DRIVER,
|
2015-12-07 14:54:06 +00:00
|
|
|
RARCH_MENU_CTL_OWNS_DRIVER,
|
2015-12-07 15:11:53 +00:00
|
|
|
RARCH_MENU_CTL_LOAD_NO_CONTENT_GET,
|
2015-12-07 15:00:48 +00:00
|
|
|
RARCH_MENU_CTL_HAS_LOAD_NO_CONTENT,
|
2015-12-07 14:54:06 +00:00
|
|
|
RARCH_MENU_CTL_SET_LOAD_NO_CONTENT,
|
2015-12-10 22:08:34 +00:00
|
|
|
RARCH_MENU_CTL_UNSET_LOAD_NO_CONTENT,
|
|
|
|
RARCH_MENU_CTL_SYSTEM_INFO_DEINIT,
|
2015-12-11 11:40:59 +00:00
|
|
|
RARCH_MENU_CTL_SYSTEM_INFO_GET,
|
2015-12-11 12:01:39 +00:00
|
|
|
RARCH_MENU_CTL_PLAYLIST_FREE,
|
2015-12-11 12:06:24 +00:00
|
|
|
RARCH_MENU_CTL_PLAYLIST_INIT,
|
2015-12-11 13:34:47 +00:00
|
|
|
RARCH_MENU_CTL_PLAYLIST_GET,
|
2015-12-11 14:39:19 +00:00
|
|
|
RARCH_MENU_CTL_TOGGLE,
|
2015-12-12 22:34:49 +00:00
|
|
|
RARCH_MENU_CTL_CONTEXT_RESET,
|
2015-12-12 22:36:43 +00:00
|
|
|
RARCH_MENU_CTL_CONTEXT_DESTROY,
|
2016-01-25 03:44:54 +00:00
|
|
|
RARCH_MENU_CTL_SHADER_MANAGER_INIT,
|
2016-02-09 15:49:23 +00:00
|
|
|
RARCH_MENU_CTL_POPULATE_ENTRIES,
|
2016-02-10 05:01:11 +00:00
|
|
|
RARCH_MENU_CTL_FIND_DRIVER,
|
2016-02-10 05:15:40 +00:00
|
|
|
RARCH_MENU_CTL_LOAD_IMAGE,
|
2016-02-10 20:21:19 +00:00
|
|
|
RARCH_MENU_CTL_LIST_FREE,
|
2016-02-10 19:36:13 +00:00
|
|
|
RARCH_MENU_CTL_LIST_CLEAR,
|
|
|
|
RARCH_MENU_CTL_LIST_SET_SELECTION,
|
2016-02-10 23:59:55 +00:00
|
|
|
RARCH_MENU_CTL_LIST_GET_SELECTION,
|
2016-02-11 00:07:30 +00:00
|
|
|
RARCH_MENU_CTL_LIST_GET_SIZE,
|
2016-02-11 00:12:19 +00:00
|
|
|
RARCH_MENU_CTL_LIST_GET_ENTRY,
|
2016-02-10 05:38:57 +00:00
|
|
|
RARCH_MENU_CTL_LIST_CACHE,
|
2016-02-10 19:13:12 +00:00
|
|
|
RARCH_MENU_CTL_LIST_INSERT,
|
2016-02-10 19:36:13 +00:00
|
|
|
RARCH_MENU_CTL_LIST_PUSH,
|
2016-02-10 19:19:21 +00:00
|
|
|
RARCH_MENU_CTL_ITERATE,
|
2016-02-10 20:15:23 +00:00
|
|
|
RARCH_MENU_CTL_ENVIRONMENT,
|
2016-02-10 23:47:00 +00:00
|
|
|
RARCH_MENU_CTL_DRIVER_DATA_GET,
|
2016-02-10 23:53:49 +00:00
|
|
|
RARCH_MENU_CTL_POINTER_TAP,
|
|
|
|
RARCH_MENU_CTL_BIND_INIT
|
2015-12-05 12:00:45 +00:00
|
|
|
};
|
|
|
|
|
2015-12-06 16:55:27 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MENU_FILE_NONE = 0,
|
|
|
|
MENU_FILE_PLAIN,
|
|
|
|
MENU_FILE_DIRECTORY,
|
|
|
|
MENU_FILE_PARENT_DIRECTORY,
|
|
|
|
MENU_FILE_PATH,
|
|
|
|
MENU_FILE_DEVICE,
|
|
|
|
MENU_FILE_CORE,
|
|
|
|
MENU_FILE_PLAYLIST_ENTRY,
|
|
|
|
MENU_FILE_CONTENTLIST_ENTRY,
|
|
|
|
MENU_FILE_SHADER_PRESET,
|
|
|
|
MENU_FILE_SHADER,
|
|
|
|
MENU_FILE_VIDEOFILTER,
|
|
|
|
MENU_FILE_AUDIOFILTER,
|
|
|
|
MENU_FILE_CHEAT,
|
|
|
|
MENU_FILE_OVERLAY,
|
|
|
|
MENU_FILE_FONT,
|
|
|
|
MENU_FILE_CONFIG,
|
|
|
|
MENU_FILE_USE_DIRECTORY,
|
|
|
|
MENU_FILE_SCAN_DIRECTORY,
|
|
|
|
MENU_FILE_CARCHIVE,
|
|
|
|
MENU_FILE_IN_CARCHIVE,
|
|
|
|
MENU_FILE_IMAGE,
|
|
|
|
MENU_FILE_IMAGEVIEWER,
|
|
|
|
MENU_FILE_REMAP,
|
|
|
|
MENU_FILE_DOWNLOAD_CORE,
|
|
|
|
MENU_FILE_DOWNLOAD_CORE_CONTENT,
|
|
|
|
MENU_FILE_DOWNLOAD_CORE_INFO,
|
2015-12-24 19:13:50 +00:00
|
|
|
MENU_FILE_DOWNLOAD_LAKKA,
|
2015-12-06 16:55:27 +00:00
|
|
|
MENU_FILE_RDB,
|
|
|
|
MENU_FILE_RDB_ENTRY,
|
|
|
|
MENU_FILE_RPL_ENTRY,
|
|
|
|
MENU_FILE_CURSOR,
|
|
|
|
MENU_FILE_RECORD_CONFIG,
|
|
|
|
MENU_FILE_PLAYLIST_COLLECTION,
|
|
|
|
MENU_FILE_PLAYLIST_ASSOCIATION,
|
|
|
|
MENU_FILE_MOVIE,
|
|
|
|
MENU_FILE_MUSIC,
|
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_SETTINGS_TAB,
|
|
|
|
MENU_HISTORY_TAB,
|
|
|
|
MENU_ADD_TAB,
|
|
|
|
MENU_PLAYLISTS_TAB,
|
|
|
|
MENU_SETTING_NO_ITEM,
|
|
|
|
MENU_SETTING_DRIVER,
|
|
|
|
MENU_SETTING_ACTION,
|
|
|
|
MENU_SETTING_ACTION_RUN,
|
|
|
|
MENU_SETTING_ACTION_CLOSE,
|
|
|
|
MENU_SETTING_ACTION_CORE_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_INPUT_REMAPPING_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_CHEAT_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_INFORMATION,
|
|
|
|
MENU_SETTING_ACTION_CORE_DISK_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_CORE_SHADER_OPTIONS,
|
|
|
|
MENU_SETTING_ACTION_SAVESTATE,
|
|
|
|
MENU_SETTING_ACTION_LOADSTATE,
|
|
|
|
MENU_SETTING_ACTION_SCREENSHOT,
|
|
|
|
MENU_SETTING_ACTION_RESET,
|
|
|
|
MENU_SETTING_STRING_OPTIONS,
|
|
|
|
MENU_SETTING_GROUP,
|
|
|
|
MENU_SETTING_SUBGROUP,
|
|
|
|
MENU_SETTING_HORIZONTAL_MENU,
|
|
|
|
MENU_INFO_MESSAGE,
|
|
|
|
MENU_FILE_TYPE_T_LAST
|
|
|
|
} menu_file_type_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MENU_SETTINGS_NONE = MENU_FILE_TYPE_T_LAST + 1,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PARAMETER_LAST = MENU_SETTINGS_SHADER_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PRESET_PARAMETER_LAST = MENU_SETTINGS_SHADER_PRESET_PARAMETER_0 + (GFX_MAX_PARAMETERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_LAST = MENU_SETTINGS_SHADER_PASS_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_FILTER_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_FILTER_LAST = MENU_SETTINGS_SHADER_PASS_FILTER_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
MENU_SETTINGS_SHADER_PASS_SCALE_0,
|
|
|
|
MENU_SETTINGS_SHADER_PASS_SCALE_LAST = MENU_SETTINGS_SHADER_PASS_SCALE_0 + (GFX_MAX_SHADERS - 1),
|
|
|
|
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_INDEX,
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_IMAGE_APPEND,
|
|
|
|
MENU_SETTINGS_CORE_DISK_OPTIONS_DISK_CYCLE_TRAY_STATUS,
|
|
|
|
|
|
|
|
MENU_SETTINGS_BIND_BEGIN,
|
|
|
|
MENU_SETTINGS_BIND_LAST = MENU_SETTINGS_BIND_BEGIN + RARCH_ANALOG_RIGHT_Y_MINUS,
|
|
|
|
MENU_SETTINGS_BIND_ALL_LAST = MENU_SETTINGS_BIND_BEGIN + RARCH_MENU_TOGGLE,
|
|
|
|
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_KEYBOARD,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_ALL,
|
|
|
|
MENU_SETTINGS_CUSTOM_BIND_DEFAULT_ALL,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_END = MENU_SETTINGS_LIBRETRO_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_BEGIN,
|
|
|
|
MENU_SETTINGS_PERF_COUNTERS_END = MENU_SETTINGS_PERF_COUNTERS_BEGIN + (MAX_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_CHEAT_BEGIN,
|
|
|
|
MENU_SETTINGS_CHEAT_END = MENU_SETTINGS_CHEAT_BEGIN + (MAX_CHEAT_COUNTERS - 1),
|
|
|
|
MENU_SETTINGS_INPUT_DESC_BEGIN,
|
|
|
|
MENU_SETTINGS_INPUT_DESC_END = MENU_SETTINGS_INPUT_DESC_BEGIN + (MAX_USERS * (RARCH_FIRST_CUSTOM_BIND + 4)),
|
|
|
|
MENU_SETTINGS_LAST
|
|
|
|
} menu_settings_t;
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-07-08 03:45:43 +00:00
|
|
|
bool push_help_screen;
|
2015-11-08 17:52:04 +00:00
|
|
|
unsigned help_screen_id;
|
2015-07-08 03:45:43 +00:00
|
|
|
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-09-24 23:59:20 +00:00
|
|
|
uint64_t state;
|
2015-08-18 01:51:44 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char msg[PATH_MAX_LENGTH];
|
2015-09-24 23:59:20 +00:00
|
|
|
} menu_state;
|
2015-08-18 01:51:44 +00:00
|
|
|
|
2015-06-15 00:08:25 +00:00
|
|
|
/* Menu shader */
|
|
|
|
char default_glslp[PATH_MAX_LENGTH];
|
|
|
|
char default_cgp[PATH_MAX_LENGTH];
|
2014-06-17 14:49:13 +00:00
|
|
|
|
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);
|
2015-12-10 13:40:56 +00:00
|
|
|
void (*render_messagebox)(void *data, const char *msg);
|
2015-12-10 18:38:46 +00:00
|
|
|
int (*iterate)(void *data, void *userdata, enum menu_action action);
|
2015-12-10 13:45:34 +00:00
|
|
|
void (*render)(void *data);
|
2015-12-10 14:44:26 +00:00
|
|
|
void (*frame)(void *data);
|
2015-12-11 14:14:39 +00:00
|
|
|
void* (*init)(void**);
|
2015-01-12 18:11:51 +00:00
|
|
|
void (*free)(void*);
|
2015-12-10 16:01:06 +00:00
|
|
|
void (*context_reset)(void *data);
|
2015-12-10 15:57:48 +00:00
|
|
|
void (*context_destroy)(void *data);
|
2015-12-10 15:45:38 +00:00
|
|
|
void (*populate_entries)(void *data,
|
|
|
|
const char *path, const char *label,
|
2015-09-21 19:32:31 +00:00
|
|
|
unsigned k);
|
2015-12-10 15:54:46 +00:00
|
|
|
void (*toggle)(void *userdata, bool);
|
2015-12-10 16:24:56 +00:00
|
|
|
void (*navigation_clear)(void *, bool);
|
2015-12-11 13:26:51 +00:00
|
|
|
void (*navigation_decrement)(void *data);
|
|
|
|
void (*navigation_increment)(void *data);
|
|
|
|
void (*navigation_set)(void *data, bool);
|
|
|
|
void (*navigation_set_last)(void *data);
|
|
|
|
void (*navigation_descend_alphabet)(void *, size_t *);
|
|
|
|
void (*navigation_ascend_alphabet)(void *, size_t *);
|
2015-10-03 02:32:38 +00:00
|
|
|
bool (*lists_init)(void*);
|
2015-12-10 18:08:28 +00:00
|
|
|
void (*list_insert)(void *userdata,
|
|
|
|
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-12-10 15:17:23 +00:00
|
|
|
void (*list_cache)(void *data, menu_list_type_t, unsigned);
|
2015-12-10 18:02:01 +00:00
|
|
|
int (*list_push)(void *data, void *userdata, menu_displaylist_info_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-12-11 13:26:51 +00:00
|
|
|
void (*list_set_selection)(void *data, 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-12-10 15:51:59 +00:00
|
|
|
bool (*load_image)(void *userdata, void *data, menu_image_type_t type);
|
2015-01-12 18:11:51 +00:00
|
|
|
const char *ident;
|
2015-12-10 15:23:32 +00:00
|
|
|
int (*environ_cb)(menu_environ_cb_t type, void *data, void *userdata);
|
2015-12-10 15:26:40 +00:00
|
|
|
int (*pointer_tap)(void *data, unsigned x, unsigned y, unsigned ptr,
|
2015-11-01 19:44:04 +00:00
|
|
|
menu_file_list_cbs_t *cbs,
|
2015-11-01 19:35:43 +00:00
|
|
|
menu_entry_t *entry, unsigned action);
|
2015-01-12 18:11:51 +00:00
|
|
|
} menu_ctx_driver_t;
|
|
|
|
|
2016-02-10 05:01:11 +00:00
|
|
|
typedef struct menu_ctx_load_image
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
menu_image_type_t type;
|
|
|
|
} menu_ctx_load_image_t;
|
|
|
|
|
2016-02-10 05:15:40 +00:00
|
|
|
typedef struct menu_ctx_list
|
|
|
|
{
|
2016-02-10 05:38:57 +00:00
|
|
|
file_list_t *list;
|
2016-02-10 20:21:19 +00:00
|
|
|
size_t list_size;
|
2016-02-10 05:38:57 +00:00
|
|
|
const char *path;
|
|
|
|
const char *label;
|
|
|
|
size_t idx;
|
2016-02-10 05:15:40 +00:00
|
|
|
menu_list_type_t type;
|
|
|
|
unsigned action;
|
2016-02-10 23:59:55 +00:00
|
|
|
size_t selection;
|
2016-02-11 00:07:30 +00:00
|
|
|
size_t size;
|
|
|
|
void *entry;
|
2016-02-10 05:15:40 +00:00
|
|
|
} menu_ctx_list_t;
|
|
|
|
|
2016-02-10 19:36:13 +00:00
|
|
|
typedef struct menu_ctx_displaylist
|
|
|
|
{
|
|
|
|
menu_displaylist_info_t *info;
|
|
|
|
unsigned type;
|
|
|
|
} menu_ctx_displaylist_t;
|
|
|
|
|
2016-02-10 19:13:12 +00:00
|
|
|
typedef struct menu_ctx_iterate
|
|
|
|
{
|
|
|
|
enum menu_action action;
|
|
|
|
} menu_ctx_iterate_t;
|
2015-01-12 20:22:50 +00:00
|
|
|
|
2016-02-10 19:19:21 +00:00
|
|
|
typedef struct menu_ctx_environment
|
|
|
|
{
|
|
|
|
menu_environ_cb_t type;
|
|
|
|
void *data;
|
|
|
|
} menu_ctx_environment_t;
|
|
|
|
|
2016-02-10 23:47:00 +00:00
|
|
|
typedef struct menu_ctx_pointer
|
|
|
|
{
|
|
|
|
unsigned x;
|
|
|
|
unsigned y;
|
|
|
|
unsigned ptr;
|
|
|
|
menu_file_list_cbs_t *cbs;
|
|
|
|
menu_entry_t *entry;
|
|
|
|
unsigned action;
|
|
|
|
int retcode;
|
|
|
|
} menu_ctx_pointer_t;
|
|
|
|
|
2016-02-10 23:53:49 +00:00
|
|
|
typedef struct menu_ctx_bind
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
int retcode;
|
|
|
|
} menu_ctx_bind_t;
|
|
|
|
|
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);
|
|
|
|
|
2015-06-08 12:53:50 +00:00
|
|
|
/* HACK */
|
|
|
|
extern unsigned int rdb_entry_start_game_selection_ptr;
|
|
|
|
|
2015-12-05 12:00:45 +00:00
|
|
|
bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data);
|
|
|
|
|
2016-02-10 19:13:12 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_xui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_rgui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_mui;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_xmb;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_zarch;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_null;
|
|
|
|
|
2014-06-17 15:12:07 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|