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