RetroArch/menu/menu_displaylist.h

146 lines
4.0 KiB
C
Raw Normal View History

2015-05-11 09:11:23 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* 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>
2015-05-12 08:20:31 +00:00
#include <retro_miscellaneous.h>
2015-05-13 14:18:43 +00:00
#include <file/file_list.h>
2015-06-02 18:26:27 +00:00
#include "menu_setting.h"
2015-05-11 09:11:23 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-07-25 22:40:24 +00:00
#ifndef COLLECTION_SIZE
#define COLLECTION_SIZE 99999
#endif
enum
{
PARSE_NONE = (1 << 0),
PARSE_GROUP = (1 << 1),
PARSE_ACTION = (1 << 2),
PARSE_ONLY_UINT = (1 << 3),
PARSE_ONLY_BOOL = (1 << 4),
PARSE_ONLY_FLOAT = (1 << 5),
PARSE_ONLY_GROUP = (1 << 6),
PARSE_ONLY_SUB_GROUP = (1 << 7),
PARSE_SUB_GROUP = (1 << 8)
};
2015-05-12 08:35:37 +00:00
enum
{
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,
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,
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,
2015-05-13 11:31:34 +00:00
DISPLAYLIST_SYSTEM_INFO,
DISPLAYLIST_DEBUG_INFO,
DISPLAYLIST_USER_BINDS_LIST,
DISPLAYLIST_ACCOUNTS_LIST,
DISPLAYLIST_INPUT_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_ARCHIVE_ACTION,
DISPLAYLIST_ARCHIVE_ACTION_DETECT_CORE,
DISPLAYLIST_CORE_CONTENT
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_push;
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];
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;
2015-05-12 10:37:42 +00:00
rarch_setting_t *setting;
2015-05-12 08:20:31 +00:00
} menu_displaylist_info_t;
int menu_displaylist_push_list(menu_displaylist_info_t *info, unsigned type);
2015-05-12 08:35:37 +00:00
void menu_displaylist_push_list_process(menu_displaylist_info_t *info);
2015-05-11 09:11:23 +00:00
int menu_displaylist_push(file_list_t *list, file_list_t *menu_list);
int menu_displaylist_parse_settings(void *data, menu_displaylist_info_t *info,
const char *info_label, unsigned parse_type, bool add_empty_entry);
2015-05-11 09:11:23 +00:00
#ifdef __cplusplus
}
#endif
#endif