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
|
2019-02-22 21:31:54 +00:00
|
|
|
* Copyright (C) 2016-2019 - 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>
|
2017-05-19 13:25:14 +00:00
|
|
|
#include <gfx/math/matrix_4x4.h>
|
2019-02-08 07:00:32 +00:00
|
|
|
#include <queues/task_queue.h>
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2019-01-31 19:36:39 +00:00
|
|
|
#include "menu_defines.h"
|
2016-09-14 22:20:43 +00:00
|
|
|
#include "menu_input.h"
|
2015-06-16 00:15:32 +00:00
|
|
|
#include "menu_entries.h"
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2019-01-31 19:36:39 +00:00
|
|
|
#include "widgets/menu_entry.h"
|
|
|
|
|
2018-05-02 21:42:39 +00:00
|
|
|
#include "../audio/audio_driver.h"
|
2017-05-19 13:25:14 +00:00
|
|
|
#include "../file_path_special.h"
|
|
|
|
#include "../gfx/font_driver.h"
|
|
|
|
#include "../gfx/video_coord_array.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
|
2018-10-11 01:26:58 +00:00
|
|
|
#define MAX_CHEAT_COUNTERS 6000
|
2015-12-06 16:55:27 +00:00
|
|
|
#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
|
|
|
|
2018-11-22 14:45:52 +00:00
|
|
|
#define COLOR_TEXT_ALPHA(color, alpha) (color & 0xFFFFFF00) | alpha
|
|
|
|
|
|
|
|
#define HEX_R(hex) ((hex >> 16) & 0xFF) * (1.0f / 255.0f)
|
|
|
|
#define HEX_G(hex) ((hex >> 8 ) & 0xFF) * (1.0f / 255.0f)
|
|
|
|
#define HEX_B(hex) ((hex >> 0 ) & 0xFF) * (1.0f / 255.0f)
|
|
|
|
|
|
|
|
#define COLOR_HEX_TO_FLOAT(hex, alpha) { \
|
|
|
|
HEX_R(hex), HEX_G(hex), HEX_B(hex), alpha, \
|
|
|
|
HEX_R(hex), HEX_G(hex), HEX_B(hex), alpha, \
|
|
|
|
HEX_R(hex), HEX_G(hex), HEX_B(hex), alpha, \
|
|
|
|
HEX_R(hex), HEX_G(hex), HEX_B(hex), alpha \
|
|
|
|
}
|
|
|
|
|
2018-11-13 18:34:21 +00:00
|
|
|
extern float osk_dark[16];
|
2018-11-13 14:48:16 +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,
|
2017-08-12 14:37:20 +00:00
|
|
|
MENU_FAVORITES_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,
|
2018-09-23 08:59:09 +00:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM,
|
2018-11-24 09:31:05 +00:00
|
|
|
MENU_SETTING_DROPDOWN_ITEM_RESOLUTION,
|
2018-09-23 16:36:48 +00:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_CORE_OPTIONS_ITEM,
|
2018-09-23 15:13:45 +00:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_STRING_OPTIONS_ITEM,
|
2018-09-24 12:34:43 +00:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM,
|
2018-09-23 12:34:51 +00:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_INT_ITEM,
|
2018-09-23 08:59:09 +00:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM,
|
2018-11-05 19:46:56 +00:00
|
|
|
MENU_SETTING_DROPDOWN_SETTING_CORE_OPTIONS_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_STRING_OPTIONS_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_FLOAT_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_INT_ITEM_SPECIAL,
|
|
|
|
MENU_SETTING_DROPDOWN_SETTING_UINT_ITEM_SPECIAL,
|
2016-06-20 13:42:05 +00:00
|
|
|
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,
|
2017-08-03 22:38:30 +00:00
|
|
|
MENU_SETTING_ACTION_CORE_DELETE,
|
2016-06-20 13:42:05 +00:00
|
|
|
MENU_SETTING_STRING_OPTIONS,
|
|
|
|
MENU_SETTING_GROUP,
|
|
|
|
MENU_SETTING_SUBGROUP,
|
|
|
|
MENU_SETTING_HORIZONTAL_MENU,
|
2018-04-30 21:23:31 +00:00
|
|
|
MENU_SETTING_ACTION_PAUSE_ACHIEVEMENTS,
|
|
|
|
MENU_SETTING_ACTION_RESUME_ACHIEVEMENTS,
|
2016-09-22 10:36:36 +00:00
|
|
|
MENU_WIFI,
|
2017-02-27 21:48:27 +00:00
|
|
|
MENU_ROOM,
|
2017-07-09 23:19:56 +00:00
|
|
|
MENU_ROOM_LAN,
|
2018-10-09 22:52:04 +00:00
|
|
|
MENU_ROOM_RELAY,
|
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,
|
|
|
|
|
2018-04-30 12:34:25 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 12:34:25 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 12:34:25 +00:00
|
|
|
|
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_STOP_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_STOP_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_STOP_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 12:34:25 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_REMOVE_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_REMOVE_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_REMOVE_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 13:04:29 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 13:04:29 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_LOOPED_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_LOOPED_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_LOOPED_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-05-02 19:43:16 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_SEQUENTIAL_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_SEQUENTIAL_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_PLAY_SEQUENTIAL_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2018-04-30 15:51:01 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_BEGIN,
|
2018-05-02 21:42:39 +00:00
|
|
|
MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_END = MENU_SETTINGS_AUDIO_MIXER_STREAM_ACTIONS_VOLUME_BEGIN + MENU_SETTINGS_AUDIO_MIXER_MAX_STREAMS,
|
2015-12-06 16:55:27 +00:00
|
|
|
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),
|
2018-11-12 03:30:09 +00:00
|
|
|
MENU_SETTINGS_INPUT_BEGIN,
|
2019-01-03 14:02:15 +00:00
|
|
|
MENU_SETTINGS_INPUT_END = MENU_SETTINGS_INPUT_BEGIN + RARCH_CUSTOM_BIND_LIST_END + 6,
|
2015-12-06 16:55:27 +00:00
|
|
|
MENU_SETTINGS_INPUT_DESC_BEGIN,
|
2018-04-02 01:57:33 +00:00
|
|
|
MENU_SETTINGS_INPUT_DESC_END = MENU_SETTINGS_INPUT_DESC_BEGIN + ((RARCH_FIRST_CUSTOM_BIND + 8) * MAX_USERS),
|
2017-09-10 05:04:18 +00:00
|
|
|
MENU_SETTINGS_INPUT_DESC_KBD_BEGIN,
|
2018-04-02 01:57:33 +00:00
|
|
|
MENU_SETTINGS_INPUT_DESC_KBD_END = MENU_SETTINGS_INPUT_DESC_KBD_BEGIN + (RARCH_MAX_KEYS * MAX_USERS),
|
2018-02-11 00:08:39 +00:00
|
|
|
|
2018-02-11 01:23:24 +00:00
|
|
|
MENU_SETTINGS_SUBSYSTEM_LOAD,
|
|
|
|
|
2018-02-11 00:08:39 +00:00
|
|
|
MENU_SETTINGS_SUBSYSTEM_ADD,
|
|
|
|
MENU_SETTINGS_SUBSYSTEM_LAST = MENU_SETTINGS_SUBSYSTEM_ADD + RARCH_MAX_SUBSYSTEMS,
|
2018-07-25 23:19:14 +00:00
|
|
|
MENU_SETTINGS_CHEAT_MATCH,
|
2018-10-06 12:52:44 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_LAKKA_SWITCH
|
|
|
|
MENU_SET_SWITCH_GPU_PROFILE,
|
|
|
|
MENU_SET_SWITCH_BRIGHTNESS,
|
2018-11-29 17:42:44 +00:00
|
|
|
#endif
|
2019-01-03 14:02:15 +00:00
|
|
|
#if defined(HAVE_LAKKA_SWITCH) || defined(HAVE_LIBNX)
|
2018-10-06 12:52:44 +00:00
|
|
|
MENU_SET_SWITCH_CPU_PROFILE,
|
|
|
|
#endif
|
|
|
|
|
2015-12-06 16:55:27 +00:00
|
|
|
MENU_SETTINGS_LAST
|
2016-02-25 18:50:45 +00:00
|
|
|
};
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2017-07-23 17:46:11 +00:00
|
|
|
typedef struct menu_display_ctx_driver
|
|
|
|
{
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Draw graphics to the screen. */
|
2018-05-13 12:15:04 +00:00
|
|
|
void (*draw)(menu_display_ctx_draw_t *draw, video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Draw one of the menu pipeline shaders. */
|
2018-05-13 12:15:04 +00:00
|
|
|
void (*draw_pipeline)(menu_display_ctx_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info);
|
|
|
|
void (*viewport)(menu_display_ctx_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Start blending operation. */
|
2018-02-16 16:19:55 +00:00
|
|
|
void (*blend_begin)(video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Finish blending operation. */
|
2018-02-16 16:19:55 +00:00
|
|
|
void (*blend_end)(video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Set the clear color back to its default values. */
|
2017-07-23 17:46:11 +00:00
|
|
|
void (*restore_clear_color)(void);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Set the color to be used when clearing the screen */
|
2018-02-16 18:25:19 +00:00
|
|
|
void (*clear_color)(menu_display_ctx_clearcolor_t *clearcolor,
|
|
|
|
video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Get the default Model-View-Projection matrix */
|
2018-02-16 18:42:13 +00:00
|
|
|
void *(*get_default_mvp)(video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Get the default vertices matrix */
|
2017-07-23 17:46:11 +00:00
|
|
|
const float *(*get_default_vertices)(void);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Get the default texture coordinates matrix */
|
2017-07-23 17:46:11 +00:00
|
|
|
const float *(*get_default_tex_coords)(void);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Initialize the first compatible font driver for this menu driver. */
|
2017-07-23 17:46:11 +00:00
|
|
|
bool (*font_init_first)(
|
|
|
|
void **font_handle, void *video_data,
|
|
|
|
const char *font_path, float font_size,
|
|
|
|
bool is_threaded);
|
|
|
|
enum menu_display_driver_type type;
|
|
|
|
const char *ident;
|
2018-02-28 03:52:47 +00:00
|
|
|
bool handles_transform;
|
2018-09-20 12:48:07 +00:00
|
|
|
/* Enables and disables scissoring */
|
|
|
|
void (*scissor_begin)(video_frame_info_t *video_info, int x, int y, unsigned width, unsigned height);
|
2018-09-28 20:52:00 +00:00
|
|
|
void (*scissor_end)(video_frame_info_t *video_info);
|
2017-07-23 17:46:11 +00:00
|
|
|
} menu_display_ctx_driver_t;
|
|
|
|
|
2014-06-17 14:49:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2018-03-25 15:02:30 +00:00
|
|
|
unsigned rpl_entry_selection_ptr;
|
2018-03-25 15:35:46 +00:00
|
|
|
size_t core_len;
|
2017-09-28 06:55:40 +00:00
|
|
|
uint64_t state;
|
|
|
|
|
2018-03-25 15:35:46 +00:00
|
|
|
char *core_buf;
|
2017-09-28 06:55:40 +00:00
|
|
|
char menu_state_msg[1024];
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Scratchpad variables. These are used for instance
|
|
|
|
* by the filebrowser when having to store intermediary
|
|
|
|
* paths (subdirs/previous dirs/current dir/path, etc).
|
|
|
|
*/
|
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];
|
2017-09-08 22:02:38 +00:00
|
|
|
char db_playlist_file[PATH_MAX_LENGTH];
|
2018-03-25 15:02:30 +00:00
|
|
|
char filebrowser_label[PATH_MAX_LENGTH];
|
|
|
|
char detect_content_path[PATH_MAX_LENGTH];
|
2018-04-30 13:24:40 +00:00
|
|
|
|
|
|
|
/* This is used for storing intermediary variables
|
|
|
|
* that get used later on during menu actions -
|
|
|
|
* for instance, selecting a shader pass for a shader
|
|
|
|
* slot */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
unsigned unsigned_var;
|
|
|
|
} scratchpad;
|
2014-06-17 14:49:13 +00:00
|
|
|
} menu_handle_t;
|
|
|
|
|
2018-05-13 22:29:20 +00:00
|
|
|
struct menu_display_ctx_draw
|
2017-05-19 13:25:14 +00:00
|
|
|
{
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float *color;
|
|
|
|
const float *vertex;
|
|
|
|
const float *tex_coord;
|
2017-09-08 22:02:38 +00:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
uintptr_t texture;
|
2017-05-19 13:25:14 +00:00
|
|
|
size_t vertex_count;
|
2017-09-08 22:02:38 +00:00
|
|
|
struct video_coords *coords;
|
|
|
|
void *matrix_data;
|
2017-09-08 23:10:00 +00:00
|
|
|
enum menu_display_prim_type prim_type;
|
2017-05-19 13:25:14 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
const void *backend_data;
|
|
|
|
size_t backend_data_size;
|
|
|
|
bool active;
|
|
|
|
} pipeline;
|
2018-01-25 00:34:53 +00:00
|
|
|
float rotation;
|
|
|
|
float scale_factor;
|
2018-05-13 22:29:20 +00:00
|
|
|
};
|
2017-05-19 13:25:14 +00:00
|
|
|
|
|
|
|
typedef struct menu_display_ctx_rotate_draw
|
|
|
|
{
|
2017-09-08 22:02:38 +00:00
|
|
|
bool scale_enable;
|
2017-05-19 13:25:14 +00:00
|
|
|
float rotation;
|
|
|
|
float scale_x;
|
|
|
|
float scale_y;
|
|
|
|
float scale_z;
|
2017-09-08 22:02:38 +00:00
|
|
|
math_matrix_4x4 *matrix;
|
2017-05-19 13:25:14 +00:00
|
|
|
} menu_display_ctx_rotate_draw_t;
|
|
|
|
|
|
|
|
typedef struct menu_display_ctx_coord_draw
|
|
|
|
{
|
|
|
|
const float *ptr;
|
|
|
|
} menu_display_ctx_coord_draw_t;
|
|
|
|
|
|
|
|
typedef struct menu_display_ctx_datetime
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
size_t len;
|
|
|
|
unsigned time_mode;
|
|
|
|
} menu_display_ctx_datetime_t;
|
|
|
|
|
2015-01-12 18:11:51 +00:00
|
|
|
typedef struct menu_ctx_driver
|
|
|
|
{
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Set a framebuffer texture. This is used for instance by RGUI. */
|
2015-02-13 18:00:34 +00:00
|
|
|
void (*set_texture)(void);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Render a messagebox to the screen. */
|
2015-12-10 13:40:56 +00:00
|
|
|
void (*render_messagebox)(void *data, const char *msg);
|
2018-09-26 14:16:17 +00:00
|
|
|
int (*iterate)(menu_handle_t *menu, void *userdata, enum menu_action action);
|
2017-05-13 19:06:06 +00:00
|
|
|
void (*render)(void *data, bool is_idle);
|
2017-01-18 20:23:18 +00:00
|
|
|
void (*frame)(void *data, video_frame_info_t *video_info);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Initializes the menu driver. (setup) */
|
2017-04-29 15:27:54 +00:00
|
|
|
void* (*init)(void**, bool);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Frees the menu driver. (teardown) */
|
2015-01-12 18:11:51 +00:00
|
|
|
void (*free)(void*);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will be invoked when we are running a hardware context
|
|
|
|
* and we have just flushed the state. For instance - we have
|
|
|
|
* just toggled fullscreen, the GL driver did a teardown/setup -
|
|
|
|
* we now need to rebuild all of our textures and state for the
|
|
|
|
* menu driver. */
|
2018-04-11 04:11:45 +00:00
|
|
|
void (*context_reset)(void *data, bool video_is_threaded);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will be invoked when we are running a hardware context
|
|
|
|
* and the context in question wants to tear itself down. All
|
|
|
|
* textures and related state on the menu driver will also
|
|
|
|
* be freed up then. */
|
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);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will clear the navigation position. */
|
2015-12-10 16:24:56 +00:00
|
|
|
void (*navigation_clear)(void *, bool);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will decrement the navigation position by one. */
|
2015-12-11 13:26:51 +00:00
|
|
|
void (*navigation_decrement)(void *data);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will increment the navigation position by one. */
|
2015-12-11 13:26:51 +00:00
|
|
|
void (*navigation_increment)(void *data);
|
|
|
|
void (*navigation_set)(void *data, bool);
|
|
|
|
void (*navigation_set_last)(void *data);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will descend the navigation position by one alphabet letter. */
|
2015-12-11 13:26:51 +00:00
|
|
|
void (*navigation_descend_alphabet)(void *, size_t *);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* This will ascend the navigation position by one alphabet letter. */
|
2015-12-11 13:26:51 +00:00
|
|
|
void (*navigation_ascend_alphabet)(void *, size_t *);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Initializes a new menu list. */
|
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-08-15 02:33:36 +00:00
|
|
|
file_list_t *list, const char *, const char *, const char *, size_t,
|
|
|
|
unsigned);
|
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);
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Load an image for use by the menu driver */
|
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);
|
2018-04-11 04:12:14 +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);
|
2018-03-25 15:27:17 +00:00
|
|
|
void (*update_thumbnail_path)(void *data, unsigned i, char pos);
|
2016-04-27 20:26:09 +00:00
|
|
|
void (*update_thumbnail_image)(void *data);
|
2017-05-17 07:32:17 +00:00
|
|
|
void (*set_thumbnail_system)(void *data, char* s, size_t len);
|
|
|
|
void (*set_thumbnail_content)(void *data, char* s, size_t len);
|
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);
|
2018-04-11 04:12:14 +00:00
|
|
|
int (*pointer_down)(void *data, unsigned x, unsigned y, unsigned ptr,
|
2017-03-04 14:11:29 +00:00
|
|
|
menu_file_list_cbs_t *cbs,
|
|
|
|
menu_entry_t *entry, unsigned action);
|
2018-04-11 04:12:14 +00:00
|
|
|
int (*pointer_up)(void *data, unsigned x, unsigned y, unsigned ptr,
|
2017-03-04 14:11:29 +00:00
|
|
|
menu_file_list_cbs_t *cbs,
|
|
|
|
menu_entry_t *entry, unsigned action);
|
2019-02-08 07:24:33 +00:00
|
|
|
bool (*get_load_content_animation_data)(void *userdata, menu_texture_item *icon, char **playlist_name);
|
2015-01-12 18:11:51 +00:00
|
|
|
} menu_ctx_driver_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;
|
|
|
|
unsigned action;
|
|
|
|
int retcode;
|
2017-09-08 22:02:38 +00:00
|
|
|
menu_file_list_cbs_t *cbs;
|
|
|
|
menu_entry_t *entry;
|
2016-02-10 23:47:00 +00:00
|
|
|
} menu_ctx_pointer_t;
|
|
|
|
|
2016-02-10 23:53:49 +00:00
|
|
|
typedef struct menu_ctx_bind
|
|
|
|
{
|
|
|
|
const char *path;
|
|
|
|
const char *label;
|
|
|
|
unsigned type;
|
2018-02-09 00:09:17 +00:00
|
|
|
uint32_t label_hash;
|
2017-09-08 22:02:38 +00:00
|
|
|
size_t idx;
|
2016-02-10 23:53:49 +00:00
|
|
|
int retcode;
|
2017-09-08 22:02:38 +00:00
|
|
|
menu_file_list_cbs_t *cbs;
|
2016-02-10 23:53:49 +00:00
|
|
|
} 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);
|
|
|
|
|
2016-07-09 14:45:36 +00:00
|
|
|
const char *menu_driver_ident(void);
|
|
|
|
|
2017-05-13 18:00:51 +00:00
|
|
|
bool menu_driver_render(bool is_idle, bool is_inited, bool is_dummy);
|
2017-01-22 16:19:10 +00:00
|
|
|
|
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);
|
|
|
|
|
2019-02-08 07:24:33 +00:00
|
|
|
bool menu_driver_get_load_content_animation_data(menu_texture_item *icon, char **playlist_name);
|
|
|
|
|
2017-07-31 15:30:30 +00:00
|
|
|
/* Is a background texture set for the current menu driver? Should
|
|
|
|
* return true for RGUI, for instance. */
|
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);
|
|
|
|
|
2018-09-26 12:22:22 +00:00
|
|
|
bool menu_driver_list_clear(file_list_t *list);
|
|
|
|
|
|
|
|
bool menu_driver_list_cache(menu_ctx_list_t *list);
|
2017-04-23 19:13:33 +00:00
|
|
|
|
2017-05-15 05:56:22 +00:00
|
|
|
void menu_driver_navigation_set(bool scroll);
|
|
|
|
|
2017-05-15 05:59:24 +00:00
|
|
|
void menu_driver_populate_entries(menu_displaylist_info_t *info);
|
|
|
|
|
2017-05-15 06:29:47 +00:00
|
|
|
bool menu_driver_push_list(menu_ctx_displaylist_t *disp_list);
|
|
|
|
|
2017-04-29 15:23:09 +00:00
|
|
|
bool menu_driver_init(bool video_is_threaded);
|
|
|
|
|
2018-12-10 02:12:57 +00:00
|
|
|
void menu_driver_free(void);
|
|
|
|
|
2017-05-17 07:32:17 +00:00
|
|
|
void menu_driver_set_thumbnail_system(char *s, size_t len);
|
|
|
|
|
|
|
|
void menu_driver_set_thumbnail_content(char *s, size_t len);
|
|
|
|
|
2018-09-26 12:25:28 +00:00
|
|
|
bool menu_driver_list_insert(menu_ctx_list_t *list);
|
|
|
|
|
2018-09-26 12:22:22 +00:00
|
|
|
bool menu_driver_list_set_selection(file_list_t *list);
|
|
|
|
|
|
|
|
bool menu_driver_list_get_selection(menu_ctx_list_t *list);
|
|
|
|
|
|
|
|
bool menu_driver_list_get_entry(menu_ctx_list_t *list);
|
|
|
|
|
|
|
|
bool menu_driver_list_get_size(menu_ctx_list_t *list);
|
|
|
|
|
2017-05-17 01:00:32 +00:00
|
|
|
size_t menu_navigation_get_selection(void);
|
|
|
|
|
|
|
|
void menu_navigation_set_selection(size_t val);
|
|
|
|
|
2017-05-19 13:25:14 +00:00
|
|
|
enum menu_toggle_reason menu_display_toggle_get_reason(void);
|
|
|
|
void menu_display_toggle_set_reason(enum menu_toggle_reason reason);
|
|
|
|
|
2018-02-16 16:19:55 +00:00
|
|
|
void menu_display_blend_begin(video_frame_info_t *video_info);
|
|
|
|
void menu_display_blend_end(video_frame_info_t *video_info);
|
2017-05-19 13:25:14 +00:00
|
|
|
|
2018-09-20 12:48:07 +00:00
|
|
|
void menu_display_scissor_begin(video_frame_info_t *video_info, int x, int y, unsigned width, unsigned height);
|
2018-09-28 20:52:00 +00:00
|
|
|
void menu_display_scissor_end(video_frame_info_t *video_info);
|
2018-09-20 12:48:07 +00:00
|
|
|
|
2017-05-19 13:25:14 +00:00
|
|
|
void menu_display_font_free(font_data_t *font);
|
|
|
|
|
|
|
|
void menu_display_coords_array_reset(void);
|
|
|
|
video_coord_array_t *menu_display_get_coords_array(void);
|
|
|
|
const uint8_t *menu_display_get_font_framebuffer(void);
|
|
|
|
void menu_display_set_font_framebuffer(const uint8_t *buffer);
|
|
|
|
bool menu_display_libretro(bool is_idle, bool is_inited, bool is_dummy);
|
2018-04-28 23:05:04 +00:00
|
|
|
bool menu_display_libretro_running(bool rarch_is_inited,
|
|
|
|
bool rarch_is_dummy_core);
|
2017-05-19 13:25:14 +00:00
|
|
|
|
|
|
|
void menu_display_set_width(unsigned width);
|
|
|
|
void menu_display_get_fb_size(unsigned *fb_width, unsigned *fb_height,
|
|
|
|
size_t *fb_pitch);
|
|
|
|
void menu_display_set_height(unsigned height);
|
|
|
|
void menu_display_set_header_height(unsigned height);
|
|
|
|
unsigned menu_display_get_header_height(void);
|
|
|
|
size_t menu_display_get_framebuffer_pitch(void);
|
|
|
|
void menu_display_set_framebuffer_pitch(size_t pitch);
|
|
|
|
|
|
|
|
bool menu_display_get_msg_force(void);
|
|
|
|
void menu_display_set_msg_force(bool state);
|
|
|
|
bool menu_display_get_font_data_init(void);
|
|
|
|
void menu_display_set_font_data_init(bool state);
|
|
|
|
bool menu_display_get_update_pending(void);
|
|
|
|
void menu_display_set_viewport(unsigned width, unsigned height);
|
|
|
|
void menu_display_unset_viewport(unsigned width, unsigned height);
|
|
|
|
bool menu_display_get_framebuffer_dirty_flag(void);
|
|
|
|
void menu_display_set_framebuffer_dirty_flag(void);
|
|
|
|
void menu_display_unset_framebuffer_dirty_flag(void);
|
|
|
|
float menu_display_get_dpi(void);
|
|
|
|
bool menu_display_init_first_driver(bool video_is_threaded);
|
|
|
|
bool menu_display_restore_clear_color(void);
|
2018-02-16 18:25:19 +00:00
|
|
|
void menu_display_clear_color(menu_display_ctx_clearcolor_t *color,
|
|
|
|
video_frame_info_t *video_info);
|
|
|
|
void menu_display_draw(menu_display_ctx_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info);
|
2018-04-23 09:42:55 +00:00
|
|
|
void menu_display_draw_keyboard(
|
|
|
|
uintptr_t hover_texture,
|
|
|
|
const font_data_t *font,
|
|
|
|
video_frame_info_t *video_info,
|
2018-11-09 15:51:34 +00:00
|
|
|
char *grid[], unsigned id,
|
|
|
|
unsigned text_color);
|
2017-05-19 13:25:14 +00:00
|
|
|
|
2018-02-16 18:08:16 +00:00
|
|
|
void menu_display_draw_pipeline(menu_display_ctx_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info);
|
2017-05-19 13:25:14 +00:00
|
|
|
void menu_display_draw_bg(
|
|
|
|
menu_display_ctx_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info,
|
2017-08-15 20:43:09 +00:00
|
|
|
bool add_opacity, float opacity_override);
|
2017-05-19 13:25:14 +00:00
|
|
|
void menu_display_draw_gradient(
|
|
|
|
menu_display_ctx_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info);
|
2018-02-16 16:19:55 +00:00
|
|
|
void menu_display_draw_quad(
|
|
|
|
video_frame_info_t *video_info,
|
|
|
|
int x, int y, unsigned w, unsigned h,
|
2017-05-19 13:25:14 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
float *color);
|
2018-04-08 11:58:11 +00:00
|
|
|
void menu_display_draw_polygon(
|
|
|
|
video_frame_info_t *video_info,
|
|
|
|
int x1, int y1,
|
|
|
|
int x2, int y2,
|
|
|
|
int x3, int y3,
|
|
|
|
int x4, int y4,
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
float *color);
|
2018-02-16 16:54:39 +00:00
|
|
|
void menu_display_draw_texture(
|
|
|
|
video_frame_info_t *video_info,
|
|
|
|
int x, int y, unsigned w, unsigned h,
|
2017-05-19 13:25:14 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
float *color, uintptr_t texture);
|
2018-02-16 16:54:39 +00:00
|
|
|
void menu_display_draw_texture_slice(
|
|
|
|
video_frame_info_t *video_info,
|
|
|
|
int x, int y, unsigned w, unsigned h,
|
2017-05-19 13:25:14 +00:00
|
|
|
unsigned new_w, unsigned new_h, unsigned width, unsigned height,
|
|
|
|
float *color, unsigned offset, float scale_factor, uintptr_t texture);
|
2018-02-16 18:42:13 +00:00
|
|
|
void menu_display_rotate_z(menu_display_ctx_rotate_draw_t *draw,
|
|
|
|
video_frame_info_t *video_info);
|
2017-05-19 13:25:14 +00:00
|
|
|
bool menu_display_get_tex_coords(menu_display_ctx_coord_draw_t *draw);
|
|
|
|
|
|
|
|
void menu_display_timedate(menu_display_ctx_datetime_t *datetime);
|
|
|
|
|
2019-02-08 07:00:32 +00:00
|
|
|
void menu_display_handle_wallpaper_upload(retro_task_t *task,
|
|
|
|
void *task_data,
|
2017-05-19 13:25:14 +00:00
|
|
|
void *user_data, const char *err);
|
|
|
|
|
2019-02-08 07:00:32 +00:00
|
|
|
void menu_display_handle_thumbnail_upload(retro_task_t *task,
|
|
|
|
void *task_data,
|
2017-05-19 13:25:14 +00:00
|
|
|
void *user_data, const char *err);
|
|
|
|
|
2019-02-08 07:00:32 +00:00
|
|
|
void menu_display_handle_left_thumbnail_upload(retro_task_t *task,
|
|
|
|
void *task_data,
|
2018-03-25 15:27:17 +00:00
|
|
|
void *user_data, const char *err);
|
|
|
|
|
2019-02-08 07:00:32 +00:00
|
|
|
void menu_display_handle_savestate_thumbnail_upload(retro_task_t *task,
|
|
|
|
void *task_data,
|
2017-05-19 13:25:14 +00:00
|
|
|
void *user_data, const char *err);
|
|
|
|
|
|
|
|
void menu_display_push_quad(
|
|
|
|
unsigned width, unsigned height,
|
|
|
|
const float *colors, int x1, int y1,
|
|
|
|
int x2, int y2);
|
|
|
|
|
|
|
|
void menu_display_snow(int width, int height);
|
|
|
|
|
|
|
|
void menu_display_allocate_white_texture(void);
|
|
|
|
|
|
|
|
void menu_display_draw_cursor(
|
2018-02-16 16:19:55 +00:00
|
|
|
video_frame_info_t *video_info,
|
2017-05-19 13:25:14 +00:00
|
|
|
float *color, float cursor_size, uintptr_t texture,
|
|
|
|
float x, float y, unsigned width, unsigned height);
|
|
|
|
|
|
|
|
void menu_display_draw_text(
|
|
|
|
const font_data_t *font, const char *text,
|
|
|
|
float x, float y, int width, int height,
|
|
|
|
uint32_t color, enum text_alignment text_align,
|
2018-11-14 13:18:01 +00:00
|
|
|
float scale_factor, bool shadows_enable, float shadow_offset,
|
|
|
|
bool draw_outside);
|
2017-05-19 13:25:14 +00:00
|
|
|
|
2017-05-27 14:52:52 +00:00
|
|
|
#define menu_display_set_alpha(color, alpha_value) (color[3] = color[7] = color[11] = color[15] = (alpha_value))
|
2017-05-19 13:25:14 +00:00
|
|
|
|
2018-04-23 09:58:18 +00:00
|
|
|
font_data_t *menu_display_font(
|
|
|
|
enum application_special_type type,
|
|
|
|
float font_size,
|
2017-05-19 13:25:14 +00:00
|
|
|
bool video_is_threaded);
|
|
|
|
|
2018-09-18 13:13:33 +00:00
|
|
|
font_data_t *menu_display_font_file(char* fontpath, float font_size, bool is_threaded);
|
|
|
|
|
2018-11-09 16:00:44 +00:00
|
|
|
bool menu_display_reset_textures_list(
|
2018-11-22 14:45:52 +00:00
|
|
|
const char *texture_path, const char *iconpath,
|
|
|
|
uintptr_t *item, enum texture_filter_type filter_type,
|
|
|
|
unsigned *width, unsigned *height);
|
2018-04-23 09:58:18 +00:00
|
|
|
|
|
|
|
/* Returns the OSK key at a given position */
|
|
|
|
int menu_display_osk_ptr_at_pos(void *data, int x, int y,
|
|
|
|
unsigned width, unsigned height);
|
2017-05-19 13:25:14 +00:00
|
|
|
|
2018-10-06 15:48:12 +00:00
|
|
|
bool menu_display_driver_exists(const char *s);
|
|
|
|
|
2017-05-28 13:09:17 +00:00
|
|
|
void menu_driver_destroy(void);
|
|
|
|
|
2018-09-18 13:13:33 +00:00
|
|
|
void hex32_to_rgba_normalized(uint32_t hex, float* rgba, float alpha);
|
|
|
|
|
2018-12-11 04:01:21 +00:00
|
|
|
void menu_subsystem_populate(const struct retro_subsystem_info* subsystem, menu_displaylist_info_t *info);
|
|
|
|
|
2017-05-19 13:25:14 +00:00
|
|
|
extern uintptr_t menu_display_white_texture;
|
|
|
|
|
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_gl;
|
2019-02-08 17:14:55 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_gl1;
|
2017-05-19 13:25:14 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_vulkan;
|
2018-06-21 04:29:53 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_metal;
|
2018-03-03 14:28:58 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d8;
|
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d9;
|
2018-04-21 01:30:34 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d10;
|
2018-01-24 23:20:06 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d11;
|
2018-02-07 23:17:09 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_d3d12;
|
2017-05-19 13:25:14 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_vita2d;
|
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_ctr;
|
2017-05-22 00:45:40 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_wiiu;
|
2017-05-19 13:25:14 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_caca;
|
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_gdi;
|
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_vga;
|
2018-09-12 18:01:56 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_switch;
|
2018-07-12 20:55:08 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_sixel;
|
2017-05-19 13:25:14 +00:00
|
|
|
extern menu_display_ctx_driver_t menu_display_ctx_null;
|
|
|
|
|
2018-09-18 13:13:33 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_ozone;
|
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;
|
2018-04-08 02:55:16 +00:00
|
|
|
extern menu_ctx_driver_t menu_ctx_stripes;
|
2016-02-10 19:13:12 +00:00
|
|
|
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
|