2014-06-17 14:49:13 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2017-01-22 12:40:32 +00:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2016-2017 - Brad Parker
|
2016-09-05 15:35:27 +00:00
|
|
|
*
|
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>
|
2016-06-03 03:49:46 +00:00
|
|
|
#include <retro_common_api.h>
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2016-09-14 22:20:43 +00:00
|
|
|
#include "widgets/menu_entry.h"
|
|
|
|
#include "menu_input.h"
|
2015-06-16 00:15:32 +00:00
|
|
|
#include "menu_entries.h"
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2015-12-10 19:12:08 +00:00
|
|
|
#include "../gfx/video_shader_driver.h"
|
2014-09-15 22:52:07 +00:00
|
|
|
|
2016-06-03 03:49:46 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
2014-06-17 15:12:07 +00:00
|
|
|
|
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
|
2017-01-19 23:11:02 +00:00
|
|
|
#define MENU_SETTINGS_NETPLAY_ROOMS_START 0x80000
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2016-02-25 18:30:14 +00:00
|
|
|
enum menu_image_type
|
2015-06-04 08:39:48 +00:00
|
|
|
{
|
|
|
|
MENU_IMAGE_NONE = 0,
|
|
|
|
MENU_IMAGE_WALLPAPER,
|
2016-12-01 01:43:53 +00:00
|
|
|
MENU_IMAGE_THUMBNAIL,
|
|
|
|
MENU_IMAGE_SAVESTATE_THUMBNAIL
|
2016-02-25 18:30:14 +00:00
|
|
|
};
|
2015-06-04 08:39:48 +00:00
|
|
|
|
2016-02-25 18:30:14 +00:00
|
|
|
enum menu_environ_cb
|
2015-07-07 22:37:44 +00:00
|
|
|
{
|
|
|
|
MENU_ENVIRON_NONE = 0,
|
|
|
|
MENU_ENVIRON_RESET_HORIZONTAL_LIST,
|
2016-12-23 21:12:30 +00:00
|
|
|
MENU_ENVIRON_ENABLE_MOUSE_CURSOR,
|
|
|
|
MENU_ENVIRON_DISABLE_MOUSE_CURSOR,
|
2015-07-07 22:37:44 +00:00
|
|
|
MENU_ENVIRON_LAST
|
2016-02-25 18:30:14 +00:00
|
|
|
};
|
2015-07-07 22:37:44 +00:00
|
|
|
|
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
|
2016-09-05 15:35:27 +00:00
|
|
|
};
|
2016-02-10 19:29:17 +00:00
|
|
|
|
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_SET_PENDING_QUICK_MENU,
|
2016-02-10 18:19:30 +00:00
|
|
|
RARCH_MENU_CTL_SET_PENDING_QUIT,
|
2016-02-10 18:56:35 +00:00
|
|
|
RARCH_MENU_CTL_SET_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-07 15:55:13 +00:00
|
|
|
RARCH_MENU_CTL_SET_PREVENT_POPULATE,
|
|
|
|
RARCH_MENU_CTL_UNSET_PREVENT_POPULATE,
|
|
|
|
RARCH_MENU_CTL_IS_PREVENT_POPULATE,
|
2016-09-05 15:35:27 +00:00
|
|
|
RARCH_MENU_CTL_IS_TOGGLE,
|
2015-12-06 16:41:00 +00:00
|
|
|
RARCH_MENU_CTL_SET_TOGGLE,
|
|
|
|
RARCH_MENU_CTL_UNSET_TOGGLE,
|
2015-12-06 16:15:32 +00:00
|
|
|
RARCH_MENU_CTL_DESTROY,
|
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-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_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 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,
|
2017-03-04 14:11:29 +00:00
|
|
|
RARCH_MENU_CTL_POINTER_DOWN,
|
|
|
|
RARCH_MENU_CTL_POINTER_UP,
|
2016-10-30 10:48:35 +00:00
|
|
|
RARCH_MENU_CTL_OSK_PTR_AT_POS,
|
2016-04-27 20:26:09 +00:00
|
|
|
RARCH_MENU_CTL_BIND_INIT,
|
|
|
|
RARCH_MENU_CTL_UPDATE_THUMBNAIL_PATH,
|
2016-12-01 01:43:53 +00:00
|
|
|
RARCH_MENU_CTL_UPDATE_THUMBNAIL_IMAGE,
|
|
|
|
RARCH_MENU_CTL_UPDATE_SAVESTATE_THUMBNAIL_PATH,
|
|
|
|
RARCH_MENU_CTL_UPDATE_SAVESTATE_THUMBNAIL_IMAGE
|
2015-12-05 12:00:45 +00:00
|
|
|
};
|
|
|
|
|
2016-02-25 18:50:45 +00:00
|
|
|
enum menu_settings_type
|
2015-12-06 16:55:27 +00:00
|
|
|
{
|
2016-06-20 13:50:37 +00:00
|
|
|
MENU_SETTINGS_NONE = FILE_TYPE_LAST + 1,
|
2016-06-20 13:42:05 +00:00
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_SETTINGS_TAB,
|
|
|
|
MENU_HISTORY_TAB,
|
2016-07-30 17:29:10 +00:00
|
|
|
MENU_MUSIC_TAB,
|
|
|
|
MENU_VIDEO_TAB,
|
|
|
|
MENU_IMAGES_TAB,
|
2017-01-19 03:46:48 +00:00
|
|
|
MENU_NETPLAY_TAB,
|
2016-06-20 13:42:05 +00:00
|
|
|
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,
|
2016-08-28 22:54:51 +00:00
|
|
|
MENU_SETTING_ACTION_DELETE_ENTRY,
|
2016-06-20 13:42:05 +00:00
|
|
|
MENU_SETTING_ACTION_RESET,
|
|
|
|
MENU_SETTING_STRING_OPTIONS,
|
|
|
|
MENU_SETTING_GROUP,
|
|
|
|
MENU_SETTING_SUBGROUP,
|
|
|
|
MENU_SETTING_HORIZONTAL_MENU,
|
2016-09-22 10:36:36 +00:00
|
|
|
MENU_WIFI,
|
2017-02-27 21:48:27 +00:00
|
|
|
MENU_ROOM,
|
2016-12-02 23:56:29 +00:00
|
|
|
MENU_NETPLAY_LAN_SCAN,
|
2016-06-20 13:42:05 +00:00
|
|
|
MENU_INFO_MESSAGE,
|
2015-12-06 16:55:27 +00:00
|
|
|
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
|
2016-02-25 18:50:45 +00:00
|
|
|
};
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2015-01-07 19:42:36 +00:00
|
|
|
char deferred_path[PATH_MAX_LENGTH];
|
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
|
|
|
|
{
|
2016-10-29 06:38:14 +00:00
|
|
|
char msg[1024];
|
2015-09-24 23:59:20 +00:00
|
|
|
} menu_state;
|
2015-08-18 01:51:44 +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);
|
2017-01-18 20:23:18 +00:00
|
|
|
void (*frame)(void *data, video_frame_info_t *video_info);
|
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,
|
2017-01-07 17:32:40 +00:00
|
|
|
file_list_t *list, const char *, const char *, const char *, size_t);
|
2016-04-11 16:31:49 +00:00
|
|
|
int (*list_prepend)(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);
|
2016-02-25 18:27:06 +00:00
|
|
|
void (*list_cache)(void *data, enum menu_list_type, 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);
|
2016-02-25 18:27:06 +00:00
|
|
|
size_t(*list_get_size)(void *data, enum menu_list_type type);
|
|
|
|
void *(*list_get_entry)(void *data, enum menu_list_type 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,
|
2016-07-01 18:59:51 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx);
|
2016-02-25 18:30:14 +00:00
|
|
|
bool (*load_image)(void *userdata, void *data, enum menu_image_type type);
|
2015-01-12 18:11:51 +00:00
|
|
|
const char *ident;
|
2016-02-25 18:30:14 +00:00
|
|
|
int (*environ_cb)(enum menu_environ_cb 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);
|
2016-04-27 20:26:09 +00:00
|
|
|
void (*update_thumbnail_path)(void *data, unsigned i);
|
|
|
|
void (*update_thumbnail_image)(void *data);
|
2017-01-19 00:33:47 +00:00
|
|
|
int (*osk_ptr_at_pos)(void *data, int x, int y, unsigned width, unsigned height);
|
2016-12-01 01:43:53 +00:00
|
|
|
void (*update_savestate_thumbnail_path)(void *data, unsigned i);
|
|
|
|
void (*update_savestate_thumbnail_image)(void *data);
|
2017-03-04 14:11:29 +00:00
|
|
|
int (*pointer_down)(void *data, unsigned x, unsigned y, unsigned ptr,
|
|
|
|
menu_file_list_cbs_t *cbs,
|
|
|
|
menu_entry_t *entry, unsigned action);
|
|
|
|
int (*pointer_up)(void *data, unsigned x, unsigned y, unsigned ptr,
|
|
|
|
menu_file_list_cbs_t *cbs,
|
|
|
|
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;
|
2016-02-25 18:30:14 +00:00
|
|
|
enum menu_image_type type;
|
2016-02-10 05:01:11 +00:00
|
|
|
} menu_ctx_load_image_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;
|
2016-02-26 16:40:24 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
|
|
|
bool touch;
|
|
|
|
} pointer;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool left;
|
|
|
|
bool right;
|
|
|
|
} buttons;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool up;
|
|
|
|
bool down;
|
|
|
|
} wheel;
|
|
|
|
} mouse;
|
2016-02-10 19:13:12 +00:00
|
|
|
} 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
|
|
|
|
{
|
2016-02-25 18:30:14 +00:00
|
|
|
enum menu_environ_cb type;
|
2016-02-10 19:19:21 +00:00
|
|
|
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;
|
|
|
|
uint32_t 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;
|
|
|
|
|
2016-07-09 14:45:36 +00:00
|
|
|
const char *menu_driver_ident(void);
|
|
|
|
|
2017-01-22 16:19:10 +00:00
|
|
|
bool menu_driver_render(bool is_idle);
|
|
|
|
|
2015-12-05 12:00:45 +00:00
|
|
|
bool menu_driver_ctl(enum rarch_menu_ctl_state state, void *data);
|
|
|
|
|
2016-11-20 13:42:20 +00:00
|
|
|
bool menu_driver_is_binding_state(void);
|
|
|
|
|
2016-10-30 01:58:22 +00:00
|
|
|
void menu_driver_set_binding_state(bool on);
|
|
|
|
|
2017-01-18 20:23:18 +00:00
|
|
|
void menu_driver_frame(video_frame_info_t *video_info);
|
|
|
|
|
2017-04-23 18:16:14 +00:00
|
|
|
bool menu_driver_is_texture_set(void);
|
|
|
|
|
2017-01-22 23:37:39 +00:00
|
|
|
bool menu_driver_is_alive(void);
|
|
|
|
|
2017-04-23 18:22:41 +00:00
|
|
|
bool menu_driver_iterate(menu_ctx_iterate_t *iterate);
|
|
|
|
|
2017-04-23 19:13:33 +00:00
|
|
|
bool menu_driver_list_clear(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;
|
2016-04-25 12:58:47 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_nuklear;
|
2016-02-10 19:13:12 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_xmb;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_zarch;
|
|
|
|
extern menu_ctx_driver_t menu_ctx_null;
|
|
|
|
|
2016-06-03 03:49:46 +00:00
|
|
|
RETRO_END_DECLS
|
2014-06-17 14:49:13 +00:00
|
|
|
|
|
|
|
#endif
|