2014-10-11 22:45:42 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2016-01-10 03:06:50 +00:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2014-10-11 22:45:42 +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-06-12 14:01:46 +00:00
|
|
|
#ifndef MENU_CBS_H__
|
|
|
|
#define MENU_CBS_H__
|
2014-10-11 22:45:42 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2015-12-06 16:55:27 +00:00
|
|
|
|
2015-02-26 15:50:30 +00:00
|
|
|
#include <boolean.h>
|
2014-10-11 22:45:42 +00:00
|
|
|
|
2015-12-06 16:55:27 +00:00
|
|
|
#include "menu_entries.h"
|
2015-06-05 11:47:17 +00:00
|
|
|
|
2015-09-07 00:43:52 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ACTION_OK_DL_DEFAULT = 0,
|
|
|
|
ACTION_OK_DL_OPEN_ARCHIVE,
|
|
|
|
ACTION_OK_DL_OPEN_ARCHIVE_DETECT_CORE,
|
|
|
|
ACTION_OK_DL_HELP,
|
|
|
|
ACTION_OK_DL_RPL_ENTRY,
|
|
|
|
ACTION_OK_DL_RDB_ENTRY,
|
|
|
|
ACTION_OK_DL_RDB_ENTRY_SUBMENU,
|
|
|
|
ACTION_OK_DL_AUDIO_DSP_PLUGIN,
|
|
|
|
ACTION_OK_DL_SHADER_PASS,
|
|
|
|
ACTION_OK_DL_SHADER_PARAMETERS,
|
|
|
|
ACTION_OK_DL_SHADER_PRESET,
|
|
|
|
ACTION_OK_DL_GENERIC,
|
|
|
|
ACTION_OK_DL_PUSH_DEFAULT,
|
|
|
|
ACTION_OK_DL_DOWNLOADS_DIR,
|
2015-10-24 08:31:11 +00:00
|
|
|
ACTION_OK_DL_INPUT_SETTINGS_LIST,
|
2016-06-16 19:40:13 +00:00
|
|
|
ACTION_OK_DL_DRIVER_SETTINGS_LIST,
|
2016-06-17 02:02:26 +00:00
|
|
|
ACTION_OK_DL_VIDEO_SETTINGS_LIST,
|
|
|
|
ACTION_OK_DL_AUDIO_SETTINGS_LIST,
|
2016-06-18 20:17:39 +00:00
|
|
|
ACTION_OK_DL_CORE_SETTINGS_LIST,
|
2015-10-25 09:41:53 +00:00
|
|
|
ACTION_OK_DL_INPUT_HOTKEY_BINDS_LIST,
|
2015-10-25 09:25:07 +00:00
|
|
|
ACTION_OK_DL_PLAYLIST_SETTINGS_LIST,
|
2015-10-17 13:28:16 +00:00
|
|
|
ACTION_OK_DL_ACCOUNTS_LIST,
|
2015-10-17 13:58:59 +00:00
|
|
|
ACTION_OK_DL_ACCOUNTS_CHEEVOS_LIST,
|
2015-10-23 04:54:33 +00:00
|
|
|
ACTION_OK_DL_USER_BINDS_LIST,
|
2015-09-07 00:43:52 +00:00
|
|
|
ACTION_OK_DL_CONTENT_LIST,
|
|
|
|
ACTION_OK_DL_REMAP_FILE,
|
|
|
|
ACTION_OK_DL_RECORD_CONFIGFILE,
|
|
|
|
ACTION_OK_DL_DISK_IMAGE_APPEND_LIST,
|
|
|
|
ACTION_OK_DL_PLAYLIST_COLLECTION,
|
|
|
|
ACTION_OK_DL_CONTENT_COLLECTION_LIST,
|
|
|
|
ACTION_OK_DL_CHEAT_FILE,
|
|
|
|
ACTION_OK_DL_CORE_LIST,
|
2015-12-24 19:13:50 +00:00
|
|
|
ACTION_OK_DL_LAKKA_LIST,
|
2015-09-07 00:43:52 +00:00
|
|
|
ACTION_OK_DL_CONFIGURATIONS_LIST,
|
|
|
|
ACTION_OK_DL_COMPRESSED_ARCHIVE_PUSH,
|
|
|
|
ACTION_OK_DL_COMPRESSED_ARCHIVE_PUSH_DETECT_CORE,
|
2015-10-25 07:31:55 +00:00
|
|
|
ACTION_OK_DL_PARENT_DIRECTORY_PUSH,
|
2015-09-07 00:43:52 +00:00
|
|
|
ACTION_OK_DL_DIRECTORY_PUSH,
|
|
|
|
ACTION_OK_DL_DATABASE_MANAGER_LIST,
|
|
|
|
ACTION_OK_DL_CURSOR_MANAGER_LIST,
|
|
|
|
ACTION_OK_DL_CORE_UPDATER_LIST,
|
2016-04-23 20:31:39 +00:00
|
|
|
ACTION_OK_DL_THUMBNAILS_UPDATER_LIST,
|
2015-09-07 00:43:52 +00:00
|
|
|
ACTION_OK_DL_CORE_CONTENT_LIST,
|
|
|
|
ACTION_OK_DL_DEFERRED_CORE_LIST,
|
|
|
|
ACTION_OK_DL_DEFERRED_CORE_LIST_SET,
|
|
|
|
ACTION_OK_DL_CONTENT_SETTINGS
|
|
|
|
};
|
|
|
|
|
2015-02-26 16:33:00 +00:00
|
|
|
/* FIXME - Externs, refactor */
|
|
|
|
extern size_t hack_shader_pass;
|
|
|
|
|
2015-06-06 18:35:39 +00:00
|
|
|
/* Function callbacks */
|
|
|
|
|
2015-09-12 06:05:09 +00:00
|
|
|
int action_refresh_default(file_list_t *list, file_list_t *menu_list);
|
|
|
|
|
2015-09-01 23:39:52 +00:00
|
|
|
int shader_action_parameter_right(unsigned type, const char *label, bool wraparound);
|
|
|
|
|
|
|
|
int shader_action_parameter_preset_right(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
|
|
|
|
2016-02-12 03:28:09 +00:00
|
|
|
int generic_action_ok_displaylist_push(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx, size_t entry_idx,
|
|
|
|
unsigned action_type);
|
|
|
|
|
2015-09-05 15:09:57 +00:00
|
|
|
int generic_action_cheat_toggle(size_t idx, unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
|
|
|
|
2015-08-05 08:16:46 +00:00
|
|
|
int action_ok_push_generic_list(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx, size_t entry_idx);
|
|
|
|
|
2015-08-05 07:41:02 +00:00
|
|
|
int action_ok_path_use_directory(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx, size_t entry_idx);
|
|
|
|
|
2015-08-05 03:55:04 +00:00
|
|
|
int action_ok_directory_push(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx, size_t entry_idx);
|
|
|
|
|
2015-06-06 18:35:39 +00:00
|
|
|
int core_setting_right(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
2015-06-06 18:40:17 +00:00
|
|
|
|
|
|
|
int action_right_input_desc(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
|
|
|
|
|
|
|
int action_right_cheat(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
2015-09-07 00:43:52 +00:00
|
|
|
|
2015-06-06 18:35:39 +00:00
|
|
|
/* End of function callbacks */
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_left(menu_file_list_cbs_t *cbs,
|
2015-05-18 13:56:32 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1, const char *menu_label,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-18 13:56:32 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_right(menu_file_list_cbs_t *cbs,
|
2015-05-12 11:03:29 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1, const char *menu_label,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-12 11:03:29 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_refresh(menu_file_list_cbs_t *cbs,
|
2015-02-27 02:25:28 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 02:25:28 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_get_string_representation(menu_file_list_cbs_t *cbs,
|
2015-02-27 01:50:19 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 01:50:19 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_up(menu_file_list_cbs_t *cbs,
|
2015-05-18 13:31:53 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-18 13:31:53 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_down(menu_file_list_cbs_t *cbs,
|
2015-02-27 02:21:49 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 02:21:49 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_info(menu_file_list_cbs_t *cbs,
|
2015-02-27 02:08:30 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 02:08:30 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_start(menu_file_list_cbs_t *cbs,
|
2015-02-26 17:28:48 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 17:28:48 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_content_list_switch(menu_file_list_cbs_t *cbs,
|
2015-02-27 02:28:50 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-27 02:28:50 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_cancel(menu_file_list_cbs_t *cbs,
|
2015-02-26 16:22:00 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 16:22:00 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_ok(menu_file_list_cbs_t *cbs,
|
2015-02-26 15:50:30 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1, const char *menu_label,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 15:50:30 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_deferred_push(menu_file_list_cbs_t *cbs,
|
2015-02-26 16:33:00 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-02-26 16:33:00 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_select(menu_file_list_cbs_t *cbs,
|
2015-06-01 07:10:43 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-06-01 07:10:43 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_scan(menu_file_list_cbs_t *cbs,
|
2015-05-27 04:57:01 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-05-27 04:57:01 +00:00
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
int menu_cbs_init_bind_title(menu_file_list_cbs_t *cbs,
|
2015-06-01 10:24:48 +00:00
|
|
|
const char *path, const char *label, unsigned type, size_t idx,
|
2015-06-05 11:17:44 +00:00
|
|
|
const char *elem0, const char *elem1,
|
|
|
|
uint32_t label_hash, uint32_t menu_label_hash);
|
2015-06-01 10:24:48 +00:00
|
|
|
|
2015-02-26 16:33:00 +00:00
|
|
|
int deferred_push_content_list(void *data, void *userdata,
|
|
|
|
const char *path, const char *label, unsigned type);
|
|
|
|
|
2015-11-24 00:14:23 +00:00
|
|
|
#ifdef HAVE_LIBRETRODB
|
2015-07-03 23:51:41 +00:00
|
|
|
int action_scan_directory(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx);
|
|
|
|
|
|
|
|
int action_scan_file(const char *path,
|
|
|
|
const char *label, unsigned type, size_t idx);
|
2015-11-24 00:14:23 +00:00
|
|
|
#endif
|
2015-07-03 23:51:41 +00:00
|
|
|
|
2015-10-28 14:56:45 +00:00
|
|
|
int bind_right_generic(unsigned type, const char *label,
|
|
|
|
bool wraparound);
|
|
|
|
|
2015-06-12 14:01:46 +00:00
|
|
|
void menu_cbs_init(void *data,
|
2015-10-18 18:34:34 +00:00
|
|
|
menu_file_list_cbs_t *cbs,
|
2014-10-11 22:45:42 +00:00
|
|
|
const char *path, const char *label,
|
2014-10-20 17:18:18 +00:00
|
|
|
unsigned type, size_t idx);
|
2014-10-11 22:45:42 +00:00
|
|
|
|
2015-10-31 16:18:37 +00:00
|
|
|
bool menu_playlist_find_associated_core(const char *path, char *s, size_t len);
|
|
|
|
|
2016-02-10 20:42:18 +00:00
|
|
|
int menu_cbs_exit(void);
|
|
|
|
|
2014-10-11 22:45:42 +00:00
|
|
|
#endif
|