RetroArch/menu/menu_displaylist.h

175 lines
4.9 KiB
C
Raw Normal View History

2015-05-11 09:11:23 +00:00
/* RetroArch - A frontend for libretro.
2016-01-10 03:06:50 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2015-05-11 09:11:23 +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/>.
*/
#ifndef _MENU_DISPLAYLIST_H
#define _MENU_DISPLAYLIST_H
2015-05-12 08:20:31 +00:00
#include <stdint.h>
2015-05-13 14:18:43 +00:00
#include <boolean.h>
2016-06-03 03:49:46 +00:00
#include <retro_common_api.h>
#include <lists/file_list.h>
2015-05-13 14:18:43 +00:00
2016-06-14 23:44:30 +00:00
#include "menu_hash.h"
2015-07-25 22:40:24 +00:00
#ifndef COLLECTION_SIZE
#define COLLECTION_SIZE 99999
#endif
2016-06-03 03:49:46 +00:00
RETRO_BEGIN_DECLS
enum menu_displaylist_parse_type
{
2016-06-16 20:14:31 +00:00
PARSE_NONE = (1 << 0),
PARSE_GROUP = (1 << 1),
PARSE_ACTION = (1 << 2),
PARSE_ONLY_INT = (1 << 3),
PARSE_ONLY_UINT = (1 << 4),
PARSE_ONLY_BOOL = (1 << 5),
PARSE_ONLY_FLOAT = (1 << 6),
PARSE_ONLY_BIND = (1 << 7),
PARSE_ONLY_GROUP = (1 << 8),
PARSE_ONLY_STRING = (1 << 9),
PARSE_ONLY_PATH = (1 << 10),
PARSE_ONLY_STRING_OPTIONS = (1 << 11),
PARSE_SUB_GROUP = (1 << 12)
};
enum menu_displaylist_ctl_state
2015-05-12 08:35:37 +00:00
{
DISPLAYLIST_NONE = 0,
2015-05-31 20:40:26 +00:00
DISPLAYLIST_INFO,
2015-05-18 01:25:45 +00:00
DISPLAYLIST_HELP,
2015-07-17 18:33:09 +00:00
DISPLAYLIST_HELP_SCREEN_LIST,
2015-05-12 08:35:37 +00:00
DISPLAYLIST_MAIN_MENU,
2015-05-17 11:10:55 +00:00
DISPLAYLIST_GENERIC,
2016-06-14 23:44:30 +00:00
DISPLAYLIST_SETTING_ENUM,
DISPLAYLIST_SETTINGS,
2015-05-12 23:53:32 +00:00
DISPLAYLIST_SETTINGS_ALL,
2015-05-12 10:51:41 +00:00
DISPLAYLIST_HORIZONTAL,
DISPLAYLIST_HORIZONTAL_CONTENT_ACTIONS,
DISPLAYLIST_HISTORY,
DISPLAYLIST_PLAYLIST_COLLECTION,
2015-05-12 10:37:42 +00:00
DISPLAYLIST_DEFAULT,
2015-05-12 09:06:04 +00:00
DISPLAYLIST_CORES,
DISPLAYLIST_CORES_SUPPORTED,
2015-06-07 21:26:29 +00:00
DISPLAYLIST_CORES_COLLECTION_SUPPORTED,
2015-05-12 13:56:49 +00:00
DISPLAYLIST_CORES_UPDATER,
DISPLAYLIST_THUMBNAILS_UPDATER,
DISPLAYLIST_LAKKA,
2015-05-12 10:07:41 +00:00
DISPLAYLIST_CORES_DETECTED,
2015-05-12 14:24:10 +00:00
DISPLAYLIST_CORE_OPTIONS,
2015-05-12 23:31:58 +00:00
DISPLAYLIST_CORE_INFO,
DISPLAYLIST_PERFCOUNTERS_CORE,
DISPLAYLIST_PERFCOUNTERS_FRONTEND,
DISPLAYLIST_SHADER_PASS,
DISPLAYLIST_SHADER_PRESET,
DISPLAYLIST_DATABASES,
DISPLAYLIST_DATABASE_CURSORS,
DISPLAYLIST_DATABASE_PLAYLISTS,
2015-07-07 10:04:03 +00:00
DISPLAYLIST_DATABASE_PLAYLISTS_HORIZONTAL,
2015-05-12 13:04:20 +00:00
DISPLAYLIST_DATABASE_QUERY,
2015-05-13 11:45:53 +00:00
DISPLAYLIST_DATABASE_ENTRY,
2015-05-12 10:26:51 +00:00
DISPLAYLIST_AUDIO_FILTERS,
DISPLAYLIST_VIDEO_FILTERS,
DISPLAYLIST_CHEAT_FILES,
DISPLAYLIST_REMAP_FILES,
2015-05-12 10:32:24 +00:00
DISPLAYLIST_RECORD_CONFIG_FILES,
DISPLAYLIST_CONFIG_FILES,
DISPLAYLIST_CONTENT_HISTORY,
DISPLAYLIST_IMAGES,
2015-05-12 10:32:24 +00:00
DISPLAYLIST_FONTS,
DISPLAYLIST_OVERLAYS,
DISPLAYLIST_SHADER_PARAMETERS,
DISPLAYLIST_SHADER_PARAMETERS_PRESET,
2016-03-03 02:06:54 +00:00
DISPLAYLIST_NETWORK_INFO,
2015-05-13 11:31:34 +00:00
DISPLAYLIST_SYSTEM_INFO,
DISPLAYLIST_DEBUG_INFO,
2015-11-08 02:58:50 +00:00
DISPLAYLIST_ACHIEVEMENT_LIST,
DISPLAYLIST_USER_BINDS_LIST,
DISPLAYLIST_ACCOUNTS_LIST,
2016-06-16 19:40:13 +00:00
DISPLAYLIST_DRIVER_SETTINGS_LIST,
DISPLAYLIST_VIDEO_SETTINGS_LIST,
DISPLAYLIST_AUDIO_SETTINGS_LIST,
2016-06-18 20:17:39 +00:00
DISPLAYLIST_CORE_SETTINGS_LIST,
DISPLAYLIST_INPUT_SETTINGS_LIST,
DISPLAYLIST_INPUT_HOTKEY_BINDS_LIST,
2015-10-25 08:38:53 +00:00
DISPLAYLIST_PLAYLIST_SETTINGS_LIST,
2015-10-17 13:58:59 +00:00
DISPLAYLIST_ACCOUNTS_CHEEVOS_LIST,
2015-06-22 06:46:42 +00:00
DISPLAYLIST_LOAD_CONTENT_LIST,
2015-06-24 02:56:44 +00:00
DISPLAYLIST_INFORMATION_LIST,
2015-06-22 20:10:14 +00:00
DISPLAYLIST_CONTENT_SETTINGS,
2015-05-13 00:10:12 +00:00
DISPLAYLIST_OPTIONS,
2015-05-13 10:55:41 +00:00
DISPLAYLIST_OPTIONS_CHEATS,
2015-05-13 10:58:42 +00:00
DISPLAYLIST_OPTIONS_REMAPPINGS,
2015-05-13 00:14:06 +00:00
DISPLAYLIST_OPTIONS_MANAGEMENT,
2015-05-13 00:05:29 +00:00
DISPLAYLIST_OPTIONS_DISK,
2015-07-03 23:51:41 +00:00
DISPLAYLIST_OPTIONS_SHADERS,
DISPLAYLIST_ADD_CONTENT_LIST,
DISPLAYLIST_SCAN_DIRECTORY_LIST,
DISPLAYLIST_ARCHIVE_ACTION,
DISPLAYLIST_ARCHIVE_ACTION_DETECT_CORE,
2016-02-24 22:19:53 +00:00
DISPLAYLIST_CORE_CONTENT,
2016-02-24 22:31:37 +00:00
DISPLAYLIST_PROCESS,
DISPLAYLIST_PUSH_ONTO_STACK,
DISPLAYLIST_PENDING_CLEAR
2015-05-12 08:35:37 +00:00
};
2015-05-12 08:20:31 +00:00
typedef struct menu_displaylist_info
{
bool need_sort;
bool need_refresh;
bool need_entries_refresh;
bool need_push;
bool need_clear;
bool need_navigation_clear;
2015-05-12 08:20:31 +00:00
file_list_t *list;
file_list_t *menu_list;
2015-05-12 08:20:31 +00:00
char path[PATH_MAX_LENGTH];
2015-05-12 13:04:20 +00:00
char path_b[PATH_MAX_LENGTH];
char path_c[PATH_MAX_LENGTH];
2015-05-12 08:20:31 +00:00
char label[PATH_MAX_LENGTH];
uint32_t label_hash;
2015-05-12 09:06:04 +00:00
char exts[PATH_MAX_LENGTH];
2015-05-12 08:20:31 +00:00
unsigned type;
2015-05-12 09:06:04 +00:00
unsigned type_default;
2015-05-17 11:10:55 +00:00
size_t directory_ptr;
2015-05-12 08:20:31 +00:00
unsigned flags;
2016-06-17 18:53:59 +00:00
enum menu_hash_enums enum_idx;
2015-05-12 10:37:42 +00:00
rarch_setting_t *setting;
2015-05-12 08:20:31 +00:00
} menu_displaylist_info_t;
2016-03-04 06:24:30 +00:00
typedef struct menu_displaylist_ctx_parse_entry
{
void *data;
menu_displaylist_info_t *info;
const char *info_label;
2016-06-14 23:44:30 +00:00
enum menu_hash_enums enum_idx;
2016-03-04 06:24:30 +00:00
enum menu_displaylist_parse_type parse_type;
bool add_empty_entry;
} menu_displaylist_ctx_parse_entry_t;
2016-02-24 22:31:37 +00:00
typedef struct menu_displaylist_ctx_entry
{
file_list_t *stack;
file_list_t *list;
} menu_displaylist_ctx_entry_t;
2015-05-12 08:35:37 +00:00
2016-02-24 22:31:37 +00:00
bool menu_displaylist_ctl(enum menu_displaylist_ctl_state type, void *data);
2015-05-11 09:11:23 +00:00
2016-06-03 03:49:46 +00:00
RETRO_END_DECLS
2015-05-11 09:11:23 +00:00
#endif