2015-06-12 14:07:12 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2014-2015 - Jay McCarthy
|
2016-01-10 03:06:50 +00:00
|
|
|
* Copyright (C) 2011-2016 - Daniel De Matteis
|
2015-06-12 14:07:12 +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-10-17 17:38:33 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <retro_inline.h>
|
2016-09-01 15:49:28 +00:00
|
|
|
#include <compat/strl.h>
|
2015-12-26 06:37:44 +00:00
|
|
|
#include <string/stdstring.h>
|
2015-12-06 16:55:27 +00:00
|
|
|
|
|
|
|
#include "menu_driver.h"
|
2015-10-17 17:38:33 +00:00
|
|
|
#include "menu_cbs.h"
|
2015-12-09 08:53:43 +00:00
|
|
|
#include "menu_navigation.h"
|
2015-06-16 00:15:32 +00:00
|
|
|
|
2016-09-14 22:10:37 +00:00
|
|
|
#include "widgets/menu_list.h"
|
|
|
|
|
2016-09-06 04:11:44 +00:00
|
|
|
#include "../core.h"
|
2016-09-01 15:49:28 +00:00
|
|
|
#include "../configuration.h"
|
|
|
|
#include "../runloop.h"
|
|
|
|
#include "../version.h"
|
2015-06-12 14:07:12 +00:00
|
|
|
|
2015-10-18 19:54:20 +00:00
|
|
|
void menu_entries_get_at_offset(const file_list_t *list, size_t idx,
|
2015-10-17 17:38:33 +00:00
|
|
|
const char **path, const char **label, unsigned *file_type,
|
2015-10-18 19:54:20 +00:00
|
|
|
size_t *entry_idx, const char **alt)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
file_list_get_at_offset(list, idx, path, label, file_type, entry_idx);
|
2015-10-18 19:54:20 +00:00
|
|
|
file_list_get_alt_at_offset(list, idx, alt);
|
2015-10-17 17:38:33 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 04:47:45 +00:00
|
|
|
void menu_entries_get_last(const file_list_t *list,
|
2015-10-17 17:38:33 +00:00
|
|
|
const char **path, const char **label,
|
|
|
|
unsigned *file_type, size_t *entry_idx)
|
|
|
|
{
|
|
|
|
if (list)
|
|
|
|
file_list_get_last(list, path, label, file_type, entry_idx);
|
|
|
|
}
|
|
|
|
|
2015-10-19 14:32:51 +00:00
|
|
|
void *menu_entries_get_userdata_at_offset(const file_list_t *list, size_t idx)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
if (!list)
|
|
|
|
return NULL;
|
2015-10-19 15:41:38 +00:00
|
|
|
return file_list_get_userdata_at_offset(list, idx);
|
2015-10-17 17:38:33 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 14:32:51 +00:00
|
|
|
menu_file_list_cbs_t *menu_entries_get_actiondata_at_offset(
|
2015-10-17 17:38:33 +00:00
|
|
|
const file_list_t *list, size_t idx)
|
|
|
|
{
|
|
|
|
if (!list)
|
|
|
|
return NULL;
|
|
|
|
return (menu_file_list_cbs_t*)
|
|
|
|
file_list_get_actiondata_at_offset(list, idx);
|
|
|
|
}
|
|
|
|
|
2016-02-24 21:45:21 +00:00
|
|
|
static bool menu_entries_clear(file_list_t *list)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
2016-02-24 21:45:21 +00:00
|
|
|
if (!list)
|
|
|
|
return false;
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2015-12-11 14:28:16 +00:00
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_LIST_CLEAR, list);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
for (i = 0; i < list->size; i++)
|
|
|
|
file_list_free_actiondata(list, i);
|
|
|
|
|
|
|
|
if (list)
|
|
|
|
file_list_clear(list);
|
2016-02-24 21:45:21 +00:00
|
|
|
|
|
|
|
return true;
|
2015-10-17 17:38:33 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 15:12:03 +00:00
|
|
|
void menu_entries_set_alt_at_offset(file_list_t *list, size_t idx,
|
2015-10-17 17:38:33 +00:00
|
|
|
const char *alt)
|
|
|
|
{
|
|
|
|
file_list_set_alt_at_offset(list, idx, alt);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-10-19 14:43:07 +00:00
|
|
|
* menu_entries_elem_is_dir:
|
2015-10-17 17:38:33 +00:00
|
|
|
* @list : File list handle.
|
|
|
|
* @offset : Offset index of element.
|
|
|
|
*
|
|
|
|
* Is the current entry at offset @offset a directory?
|
|
|
|
*
|
|
|
|
* Returns: true (1) if entry is a directory, otherwise false (0).
|
|
|
|
**/
|
2015-10-19 14:43:07 +00:00
|
|
|
static bool menu_entries_elem_is_dir(file_list_t *list,
|
2015-10-17 17:38:33 +00:00
|
|
|
unsigned offset)
|
|
|
|
{
|
|
|
|
unsigned type = 0;
|
|
|
|
|
2015-10-18 19:54:20 +00:00
|
|
|
menu_entries_get_at_offset(list, offset, NULL, NULL, &type, NULL, NULL);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2016-06-20 13:50:37 +00:00
|
|
|
return type == FILE_TYPE_DIRECTORY;
|
2015-10-17 17:38:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-10-19 14:43:07 +00:00
|
|
|
* menu_entries_elem_get_first_char:
|
2015-10-17 17:38:33 +00:00
|
|
|
* @list : File list handle.
|
|
|
|
* @offset : Offset index of element.
|
|
|
|
*
|
|
|
|
* Gets the first character of an element in the
|
|
|
|
* file list.
|
|
|
|
*
|
|
|
|
* Returns: first character of element in file list.
|
|
|
|
**/
|
2015-10-19 14:43:07 +00:00
|
|
|
static int menu_entries_elem_get_first_char(
|
2015-10-17 17:38:33 +00:00
|
|
|
file_list_t *list, unsigned offset)
|
|
|
|
{
|
2016-05-26 16:09:46 +00:00
|
|
|
int ret = 0;
|
2015-10-17 17:38:33 +00:00
|
|
|
const char *path = NULL;
|
|
|
|
|
2015-10-18 19:55:19 +00:00
|
|
|
menu_entries_get_at_offset(list, offset,
|
|
|
|
NULL, NULL, NULL, NULL, &path);
|
|
|
|
|
2016-05-26 16:09:46 +00:00
|
|
|
if (path != NULL)
|
|
|
|
ret = tolower((int)*path);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
/* "Normalize" non-alphabetical entries so they
|
|
|
|
* are lumped together for purposes of jumping. */
|
|
|
|
if (ret < 'a')
|
|
|
|
ret = 'a' - 1;
|
|
|
|
else if (ret > 'z')
|
|
|
|
ret = 'z' + 1;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-18 19:58:13 +00:00
|
|
|
static void menu_entries_build_scroll_indices(file_list_t *list)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
int current;
|
|
|
|
bool current_is_dir;
|
|
|
|
size_t i, scroll_value = 0;
|
|
|
|
|
|
|
|
if (!list || !list->size)
|
|
|
|
return;
|
|
|
|
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_CLEAR_SCROLL_INDICES, NULL);
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_ADD_SCROLL_INDEX, &scroll_value);
|
|
|
|
|
2015-10-19 14:43:07 +00:00
|
|
|
current = menu_entries_elem_get_first_char(list, 0);
|
|
|
|
current_is_dir = menu_entries_elem_is_dir(list, 0);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
for (i = 1; i < list->size; i++)
|
|
|
|
{
|
2015-10-19 14:43:07 +00:00
|
|
|
int first = menu_entries_elem_get_first_char(list, i);
|
|
|
|
bool is_dir = menu_entries_elem_is_dir(list, i);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
if ((current_is_dir && !is_dir) || (first > current))
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_ADD_SCROLL_INDEX, &i);
|
|
|
|
|
|
|
|
current = first;
|
|
|
|
current_is_dir = is_dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
scroll_value = list->size - 1;
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_ADD_SCROLL_INDEX, &scroll_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Before a refresh, we could have deleted a
|
|
|
|
* file on disk, causing selection_ptr to
|
|
|
|
* suddendly be out of range.
|
|
|
|
*
|
|
|
|
* Ensure it doesn't overflow.
|
|
|
|
**/
|
2016-02-04 20:13:38 +00:00
|
|
|
static bool menu_entries_refresh(void *data)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
size_t list_size, selection;
|
2016-02-04 20:13:38 +00:00
|
|
|
file_list_t *list = (file_list_t*)data;
|
|
|
|
|
2015-10-19 14:32:51 +00:00
|
|
|
if (!list)
|
2016-02-04 20:13:38 +00:00
|
|
|
return false;
|
2015-10-17 17:38:33 +00:00
|
|
|
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection))
|
2016-02-04 20:13:38 +00:00
|
|
|
return false;
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2015-10-18 19:58:13 +00:00
|
|
|
menu_entries_build_scroll_indices(list);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2015-10-19 14:32:51 +00:00
|
|
|
list_size = menu_entries_get_size();
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
if ((selection >= list_size) && list_size)
|
|
|
|
{
|
|
|
|
size_t idx = list_size - 1;
|
|
|
|
bool scroll = true;
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &idx);
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET, &scroll);
|
|
|
|
}
|
|
|
|
else if (!list_size)
|
|
|
|
{
|
|
|
|
bool pending_push = true;
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_CLEAR, &pending_push);
|
|
|
|
}
|
2016-02-04 20:13:38 +00:00
|
|
|
|
|
|
|
return true;
|
2015-10-17 17:38:33 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 14:07:12 +00:00
|
|
|
/* Returns the last index (+1) of the menu entry list. */
|
|
|
|
size_t menu_entries_get_end(void)
|
|
|
|
{
|
2015-10-17 17:21:18 +00:00
|
|
|
return menu_entries_get_size();
|
2015-06-12 14:07:12 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 22:38:16 +00:00
|
|
|
/* Get an entry from the top of the menu stack */
|
2016-09-14 22:20:43 +00:00
|
|
|
void menu_entries_get(size_t i, void *entry_data)
|
2015-07-13 22:38:16 +00:00
|
|
|
{
|
2016-06-17 14:08:47 +00:00
|
|
|
const char *label = NULL;
|
|
|
|
const char *path = NULL;
|
|
|
|
const char *entry_label = NULL;
|
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
2016-06-19 22:31:13 +00:00
|
|
|
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
|
2016-09-14 22:20:43 +00:00
|
|
|
menu_entry_t *entry = (menu_entry_t*)entry_data;
|
|
|
|
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
2016-06-17 14:08:47 +00:00
|
|
|
menu_entries_get_last_stack(NULL, &label, NULL, &enum_idx, NULL);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
2015-12-26 06:37:44 +00:00
|
|
|
entry->path[0] = entry->value[0] = string_is_empty(entry->label);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
2015-10-18 19:54:20 +00:00
|
|
|
menu_entries_get_at_offset(selection_buf, i,
|
|
|
|
&path, &entry_label, &entry->type, &entry->entry_idx, NULL);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
2015-10-19 14:32:51 +00:00
|
|
|
cbs = menu_entries_get_actiondata_at_offset(selection_buf, i);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
|
|
|
if (cbs && cbs->action_get_value)
|
2015-10-17 17:41:33 +00:00
|
|
|
cbs->action_get_value(selection_buf,
|
2015-07-13 22:38:16 +00:00
|
|
|
&entry->spacing, entry->type, i, label,
|
|
|
|
entry->value, sizeof(entry->value),
|
|
|
|
entry_label, path,
|
|
|
|
entry->path, sizeof(entry->path));
|
|
|
|
|
|
|
|
entry->idx = i;
|
|
|
|
|
|
|
|
if (entry_label)
|
|
|
|
strlcpy(entry->label, entry_label, sizeof(entry->label));
|
|
|
|
}
|
2015-06-12 14:07:12 +00:00
|
|
|
|
|
|
|
/* Sets title to what the name of the current menu should be. */
|
|
|
|
int menu_entries_get_title(char *s, size_t len)
|
|
|
|
{
|
2016-06-17 14:08:47 +00:00
|
|
|
unsigned menu_type = 0;
|
|
|
|
const char *path = NULL;
|
|
|
|
const char *label = NULL;
|
2016-06-19 22:31:13 +00:00
|
|
|
enum msg_hash_enums enum_idx = MSG_UNKNOWN;
|
2015-10-17 16:57:47 +00:00
|
|
|
menu_file_list_cbs_t *cbs = menu_entries_get_last_stack_actiondata();
|
2015-06-12 14:07:12 +00:00
|
|
|
|
2015-10-17 16:57:47 +00:00
|
|
|
if (!cbs)
|
2015-06-12 14:07:12 +00:00
|
|
|
return -1;
|
|
|
|
|
2016-06-17 14:08:47 +00:00
|
|
|
menu_entries_get_last_stack(&path, &label, &menu_type, &enum_idx, NULL);
|
2015-06-12 14:07:12 +00:00
|
|
|
|
|
|
|
if (cbs && cbs->action_get_title)
|
|
|
|
return cbs->action_get_title(path, label, menu_type, s, len);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Sets 's' to the name of the current core
|
|
|
|
* (shown at the top of the UI). */
|
2015-08-17 16:14:51 +00:00
|
|
|
int menu_entries_get_core_title(char *s, size_t len)
|
2015-06-12 14:07:12 +00:00
|
|
|
{
|
2016-09-06 06:38:26 +00:00
|
|
|
struct retro_system_info *system = NULL;
|
|
|
|
rarch_system_info_t *info = NULL;
|
|
|
|
settings_t *settings = config_get_ptr();
|
2015-12-10 22:08:34 +00:00
|
|
|
const char *core_name = NULL;
|
|
|
|
const char *core_version = NULL;
|
|
|
|
|
2016-09-06 06:38:26 +00:00
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_SYSTEM_INFO_GET,
|
|
|
|
&system);
|
|
|
|
|
|
|
|
core_name = system->library_name;
|
|
|
|
core_version = system->library_version;
|
|
|
|
|
|
|
|
runloop_ctl(RUNLOOP_CTL_SYSTEM_INFO_GET, &info);
|
2015-12-10 21:30:25 +00:00
|
|
|
|
2015-08-17 16:14:51 +00:00
|
|
|
if (!settings->menu.core_enable)
|
|
|
|
return -1;
|
|
|
|
|
2016-06-01 02:05:14 +00:00
|
|
|
if (string_is_empty(core_name) && info)
|
2015-06-25 10:36:55 +00:00
|
|
|
core_name = info->info.library_name;
|
2015-12-26 06:37:44 +00:00
|
|
|
if (string_is_empty(core_name))
|
2016-06-19 22:31:13 +00:00
|
|
|
core_name = msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_CORE);
|
2015-06-12 14:07:12 +00:00
|
|
|
|
2016-06-01 02:05:14 +00:00
|
|
|
if (!core_version && info)
|
2015-06-25 10:36:55 +00:00
|
|
|
core_version = info->info.library_version;
|
2015-06-12 14:07:12 +00:00
|
|
|
if (!core_version)
|
|
|
|
core_version = "";
|
|
|
|
|
|
|
|
snprintf(s, len, "%s - %s %s", PACKAGE_VERSION,
|
|
|
|
core_name, core_version);
|
2015-08-17 16:14:51 +00:00
|
|
|
|
|
|
|
return 0;
|
2015-06-12 14:07:12 +00:00
|
|
|
}
|
2015-06-16 01:03:20 +00:00
|
|
|
|
2015-10-27 09:33:19 +00:00
|
|
|
file_list_t *menu_entries_get_menu_stack_ptr(size_t idx)
|
2015-10-17 15:44:57 +00:00
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 15:44:57 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return NULL;
|
2016-09-14 22:10:37 +00:00
|
|
|
return menu_list_get(menu_list, idx);
|
2015-10-17 15:44:57 +00:00
|
|
|
}
|
|
|
|
|
2015-10-27 09:33:19 +00:00
|
|
|
file_list_t *menu_entries_get_selection_buf_ptr(size_t idx)
|
2015-10-17 15:44:57 +00:00
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 15:44:57 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return NULL;
|
2016-09-14 22:10:37 +00:00
|
|
|
return menu_list_get_selection(menu_list, idx);
|
2015-10-17 15:44:57 +00:00
|
|
|
}
|
|
|
|
|
2015-12-11 20:41:59 +00:00
|
|
|
static bool menu_entries_init(void)
|
2015-08-21 19:19:29 +00:00
|
|
|
{
|
2015-12-12 13:55:17 +00:00
|
|
|
if (!menu_entries_ctl(MENU_ENTRIES_CTL_LIST_INIT, NULL))
|
2015-09-06 00:56:57 +00:00
|
|
|
goto error;
|
2015-08-21 19:19:29 +00:00
|
|
|
|
2015-12-12 13:49:02 +00:00
|
|
|
if (!menu_entries_ctl(MENU_ENTRIES_CTL_SETTINGS_INIT, NULL))
|
2015-12-11 17:56:00 +00:00
|
|
|
goto error;
|
|
|
|
|
2015-08-21 19:19:29 +00:00
|
|
|
return true;
|
2015-09-06 00:56:57 +00:00
|
|
|
|
|
|
|
error:
|
2015-12-12 13:55:17 +00:00
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_DEINIT, NULL);
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_SETTINGS_DEINIT, NULL);
|
|
|
|
|
2015-09-06 00:56:57 +00:00
|
|
|
return false;
|
2015-08-21 19:19:29 +00:00
|
|
|
}
|
|
|
|
|
2016-07-12 23:13:20 +00:00
|
|
|
void menu_entries_append(file_list_t *list, const char *path, const char *label,
|
2015-10-17 15:10:29 +00:00
|
|
|
unsigned type, size_t directory_ptr, size_t entry_idx)
|
|
|
|
{
|
2016-02-10 05:38:57 +00:00
|
|
|
menu_ctx_list_t list_info;
|
2015-10-18 19:41:08 +00:00
|
|
|
size_t idx;
|
2017-01-07 17:32:40 +00:00
|
|
|
const char *menu_path = NULL;
|
2015-10-18 19:41:08 +00:00
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
|
|
|
if (!list || !label)
|
|
|
|
return;
|
|
|
|
|
2016-03-21 19:20:24 +00:00
|
|
|
file_list_append(list, path, label, type, directory_ptr, entry_idx);
|
2015-10-18 19:41:08 +00:00
|
|
|
|
2017-01-08 01:44:40 +00:00
|
|
|
menu_entries_get_last_stack(&menu_path, NULL, NULL, NULL, NULL);
|
2016-02-10 05:38:57 +00:00
|
|
|
|
2017-01-07 17:32:40 +00:00
|
|
|
idx = list->size - 1;
|
|
|
|
|
|
|
|
list_info.list = list;
|
|
|
|
list_info.path = path;
|
|
|
|
list_info.fullpath = NULL;
|
|
|
|
|
|
|
|
if (!string_is_empty(menu_path))
|
|
|
|
list_info.fullpath = strdup(menu_path);
|
|
|
|
|
|
|
|
list_info.label = label;
|
|
|
|
list_info.idx = idx;
|
2015-10-18 19:41:08 +00:00
|
|
|
|
2016-02-10 05:38:57 +00:00
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_LIST_INSERT, &list_info);
|
2015-10-18 19:41:08 +00:00
|
|
|
|
2017-01-07 17:32:40 +00:00
|
|
|
if (list_info.fullpath)
|
|
|
|
free(list_info.fullpath);
|
|
|
|
|
2015-10-18 19:41:08 +00:00
|
|
|
file_list_free_actiondata(list, idx);
|
|
|
|
cbs = (menu_file_list_cbs_t*)
|
|
|
|
calloc(1, sizeof(menu_file_list_cbs_t));
|
|
|
|
|
|
|
|
if (!cbs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
file_list_set_actiondata(list, idx, cbs);
|
|
|
|
|
2016-06-19 22:31:13 +00:00
|
|
|
cbs->enum_idx = MSG_UNKNOWN;
|
2016-06-16 15:41:57 +00:00
|
|
|
cbs->setting = menu_setting_find(label);
|
2015-10-18 19:41:08 +00:00
|
|
|
|
|
|
|
menu_cbs_init(list, cbs, path, label, type, idx);
|
2015-10-17 15:10:29 +00:00
|
|
|
}
|
2015-10-17 16:31:16 +00:00
|
|
|
|
2016-07-12 23:17:09 +00:00
|
|
|
void menu_entries_append_enum(file_list_t *list, const char *path, const char *label,
|
2016-06-19 22:31:13 +00:00
|
|
|
enum msg_hash_enums enum_idx,
|
2016-06-14 23:15:37 +00:00
|
|
|
unsigned type, size_t directory_ptr, size_t entry_idx)
|
|
|
|
{
|
|
|
|
menu_ctx_list_t list_info;
|
|
|
|
size_t idx;
|
2017-01-07 17:32:40 +00:00
|
|
|
const char *menu_path = NULL;
|
2016-06-14 23:15:37 +00:00
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
|
|
|
if (!list || !label)
|
|
|
|
return;
|
|
|
|
|
|
|
|
file_list_append(list, path, label, type, directory_ptr, entry_idx);
|
|
|
|
|
2017-01-08 01:44:40 +00:00
|
|
|
menu_entries_get_last_stack(&menu_path, NULL, NULL, NULL, NULL);
|
2016-06-14 23:15:37 +00:00
|
|
|
|
2017-01-07 17:32:40 +00:00
|
|
|
idx = list->size - 1;
|
|
|
|
|
|
|
|
list_info.fullpath = NULL;
|
|
|
|
|
|
|
|
if (!string_is_empty(menu_path))
|
|
|
|
list_info.fullpath = strdup(menu_path);
|
|
|
|
list_info.list = list;
|
|
|
|
list_info.path = path;
|
|
|
|
list_info.label = label;
|
|
|
|
list_info.idx = idx;
|
2016-06-14 23:15:37 +00:00
|
|
|
|
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_LIST_INSERT, &list_info);
|
|
|
|
|
2017-01-07 17:32:40 +00:00
|
|
|
if (list_info.fullpath)
|
|
|
|
free(list_info.fullpath);
|
|
|
|
|
2016-06-14 23:15:37 +00:00
|
|
|
file_list_free_actiondata(list, idx);
|
|
|
|
cbs = (menu_file_list_cbs_t*)
|
|
|
|
calloc(1, sizeof(menu_file_list_cbs_t));
|
|
|
|
|
|
|
|
if (!cbs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
file_list_set_actiondata(list, idx, cbs);
|
|
|
|
|
2016-06-27 19:34:05 +00:00
|
|
|
cbs->enum_idx = enum_idx;
|
2016-06-15 14:43:02 +00:00
|
|
|
cbs->setting = menu_setting_find_enum(enum_idx);
|
2016-06-14 23:15:37 +00:00
|
|
|
|
|
|
|
menu_cbs_init(list, cbs, path, label, type, idx);
|
|
|
|
}
|
|
|
|
|
2016-04-11 16:18:16 +00:00
|
|
|
void menu_entries_prepend(file_list_t *list, const char *path, const char *label,
|
2016-06-19 22:31:13 +00:00
|
|
|
enum msg_hash_enums enum_idx,
|
2016-04-11 16:02:50 +00:00
|
|
|
unsigned type, size_t directory_ptr, size_t entry_idx)
|
|
|
|
{
|
|
|
|
menu_ctx_list_t list_info;
|
|
|
|
size_t idx;
|
2017-01-08 01:33:06 +00:00
|
|
|
const char *menu_path = NULL;
|
2016-04-11 16:02:50 +00:00
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
|
|
|
if (!list || !label)
|
|
|
|
return;
|
|
|
|
|
2016-04-11 18:40:48 +00:00
|
|
|
file_list_prepend(list, path, label, type, directory_ptr, entry_idx);
|
2016-04-11 16:02:50 +00:00
|
|
|
|
2017-01-08 01:44:40 +00:00
|
|
|
menu_entries_get_last_stack(&menu_path, NULL, NULL, NULL, NULL);
|
2017-01-08 01:33:06 +00:00
|
|
|
|
2016-04-11 16:02:50 +00:00
|
|
|
idx = 0;
|
|
|
|
|
2017-01-10 14:49:39 +00:00
|
|
|
list_info.fullpath = NULL;
|
|
|
|
|
2017-01-08 01:33:06 +00:00
|
|
|
if (!string_is_empty(menu_path))
|
|
|
|
list_info.fullpath = strdup(menu_path);
|
|
|
|
list_info.list = list;
|
|
|
|
list_info.path = path;
|
|
|
|
list_info.label = label;
|
|
|
|
list_info.idx = idx;
|
2016-04-11 16:02:50 +00:00
|
|
|
|
|
|
|
menu_driver_ctl(RARCH_MENU_CTL_LIST_INSERT, &list_info);
|
|
|
|
|
2017-01-08 01:33:06 +00:00
|
|
|
if (list_info.fullpath)
|
|
|
|
free(list_info.fullpath);
|
|
|
|
|
2016-04-11 16:02:50 +00:00
|
|
|
file_list_free_actiondata(list, idx);
|
|
|
|
cbs = (menu_file_list_cbs_t*)
|
|
|
|
calloc(1, sizeof(menu_file_list_cbs_t));
|
|
|
|
|
|
|
|
if (!cbs)
|
|
|
|
return;
|
|
|
|
|
|
|
|
file_list_set_actiondata(list, idx, cbs);
|
|
|
|
|
2016-06-17 12:54:29 +00:00
|
|
|
cbs->enum_idx = enum_idx;
|
|
|
|
cbs->setting = menu_setting_find_enum(cbs->enum_idx);
|
2016-04-11 16:02:50 +00:00
|
|
|
|
|
|
|
menu_cbs_init(list, cbs, path, label, type, idx);
|
|
|
|
}
|
|
|
|
|
2015-10-17 16:57:47 +00:00
|
|
|
menu_file_list_cbs_t *menu_entries_get_last_stack_actiondata(void)
|
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 16:57:47 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return NULL;
|
2016-02-14 16:29:03 +00:00
|
|
|
return (menu_file_list_cbs_t*)file_list_get_last_actiondata(
|
2016-09-14 22:10:37 +00:00
|
|
|
menu_list_get(menu_list, 0));
|
2015-10-17 16:57:47 +00:00
|
|
|
}
|
|
|
|
|
2015-10-17 16:31:16 +00:00
|
|
|
void menu_entries_get_last_stack(const char **path, const char **label,
|
2016-06-19 22:31:13 +00:00
|
|
|
unsigned *file_type, enum msg_hash_enums *enum_idx, size_t *entry_idx)
|
2015-10-17 16:31:16 +00:00
|
|
|
{
|
2016-06-17 14:08:47 +00:00
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2016-06-17 14:08:47 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return;
|
|
|
|
|
2016-09-14 22:10:37 +00:00
|
|
|
menu_entries_get_last(menu_list_get(menu_list, 0),
|
2016-06-17 14:08:47 +00:00
|
|
|
path, label, file_type, entry_idx);
|
|
|
|
cbs = menu_entries_get_last_stack_actiondata();
|
2016-12-22 19:40:35 +00:00
|
|
|
if (cbs && enum_idx)
|
2016-06-17 14:08:47 +00:00
|
|
|
*enum_idx = cbs->enum_idx;
|
2015-10-17 16:31:16 +00:00
|
|
|
}
|
2015-10-17 16:38:14 +00:00
|
|
|
|
2015-10-17 17:10:37 +00:00
|
|
|
void menu_entries_flush_stack(const char *needle, unsigned final_type)
|
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 17:10:37 +00:00
|
|
|
if (menu_list)
|
2015-10-27 09:29:50 +00:00
|
|
|
menu_list_flush_stack(menu_list, 0, needle, final_type);
|
2015-10-17 17:10:37 +00:00
|
|
|
}
|
|
|
|
|
2016-04-25 17:19:23 +00:00
|
|
|
void menu_entries_pop_stack(size_t *ptr, size_t idx, bool animate)
|
2015-10-17 16:38:14 +00:00
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 16:38:14 +00:00
|
|
|
if (menu_list)
|
2016-04-25 17:19:23 +00:00
|
|
|
menu_list_pop_stack(menu_list, idx, ptr, animate);
|
2015-10-17 16:38:14 +00:00
|
|
|
}
|
2015-10-17 17:14:49 +00:00
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
size_t menu_entries_get_stack_size(size_t idx)
|
2015-10-17 17:14:49 +00:00
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 17:14:49 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return 0;
|
2015-10-27 09:29:50 +00:00
|
|
|
return menu_list_get_stack_size(menu_list, idx);
|
2015-10-17 17:14:49 +00:00
|
|
|
}
|
2015-10-17 17:21:18 +00:00
|
|
|
|
|
|
|
size_t menu_entries_get_size(void)
|
|
|
|
{
|
2015-12-11 21:05:54 +00:00
|
|
|
menu_list_t *menu_list = NULL;
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_GET, &menu_list);
|
2015-10-17 17:21:18 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return 0;
|
2016-09-14 22:10:37 +00:00
|
|
|
return file_list_get_size(menu_list_get_selection(menu_list, 0));
|
2015-10-17 17:21:18 +00:00
|
|
|
}
|
2015-10-18 18:21:12 +00:00
|
|
|
|
|
|
|
rarch_setting_t *menu_entries_get_setting(uint32_t i)
|
|
|
|
{
|
2015-10-27 09:10:33 +00:00
|
|
|
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
|
2016-02-14 16:29:03 +00:00
|
|
|
menu_file_list_cbs_t *cbs =
|
|
|
|
menu_entries_get_actiondata_at_offset(selection_buf, i);
|
2015-10-18 18:21:12 +00:00
|
|
|
|
|
|
|
if (!cbs)
|
|
|
|
return NULL;
|
|
|
|
return cbs->setting;
|
|
|
|
}
|
2015-12-11 20:32:00 +00:00
|
|
|
|
|
|
|
bool menu_entries_ctl(enum menu_entries_ctl_state state, void *data)
|
|
|
|
{
|
2015-12-12 01:17:39 +00:00
|
|
|
/* Flagged when menu entries need to be refreshed */
|
2015-12-12 13:49:02 +00:00
|
|
|
static bool menu_entries_need_refresh = false;
|
|
|
|
static bool menu_entries_nonblocking_refresh = false;
|
|
|
|
static size_t menu_entries_begin = 0;
|
|
|
|
static rarch_setting_t *menu_entries_list_settings = NULL;
|
2015-12-12 13:55:17 +00:00
|
|
|
static menu_list_t *menu_entries_list = NULL;
|
2015-12-12 01:17:39 +00:00
|
|
|
|
2015-12-11 20:32:00 +00:00
|
|
|
switch (state)
|
|
|
|
{
|
2015-12-11 20:37:11 +00:00
|
|
|
case MENU_ENTRIES_CTL_DEINIT:
|
2015-12-12 13:55:17 +00:00
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_SETTINGS_DEINIT, NULL);
|
|
|
|
menu_entries_ctl(MENU_ENTRIES_CTL_LIST_DEINIT, NULL);
|
2015-12-11 20:37:11 +00:00
|
|
|
|
2016-02-25 23:49:23 +00:00
|
|
|
menu_entries_need_refresh = false;
|
|
|
|
menu_entries_nonblocking_refresh = false;
|
2015-12-12 13:39:35 +00:00
|
|
|
menu_entries_begin = 0;
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-11 20:41:59 +00:00
|
|
|
case MENU_ENTRIES_CTL_NEEDS_REFRESH:
|
2015-12-12 13:55:17 +00:00
|
|
|
if (menu_entries_nonblocking_refresh)
|
2015-12-11 20:41:59 +00:00
|
|
|
return false;
|
2015-12-12 01:17:39 +00:00
|
|
|
if (!menu_entries_need_refresh)
|
2015-12-11 20:41:59 +00:00
|
|
|
return false;
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-11 21:05:54 +00:00
|
|
|
case MENU_ENTRIES_CTL_LIST_GET:
|
|
|
|
{
|
|
|
|
menu_list_t **list = (menu_list_t**)data;
|
2015-12-12 13:55:17 +00:00
|
|
|
if (!list)
|
2015-12-11 21:05:54 +00:00
|
|
|
return false;
|
2015-12-12 13:55:17 +00:00
|
|
|
*list = menu_entries_list;
|
2015-12-11 21:05:54 +00:00
|
|
|
}
|
|
|
|
return true;
|
2015-12-12 13:55:17 +00:00
|
|
|
case MENU_ENTRIES_CTL_LIST_DEINIT:
|
|
|
|
if (menu_entries_list)
|
|
|
|
menu_list_free(menu_entries_list);
|
|
|
|
menu_entries_list = NULL;
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-12 13:55:17 +00:00
|
|
|
case MENU_ENTRIES_CTL_LIST_INIT:
|
|
|
|
if (!(menu_entries_list = (menu_list_t*)menu_list_new()))
|
|
|
|
return false;
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-11 21:30:19 +00:00
|
|
|
case MENU_ENTRIES_CTL_SETTINGS_GET:
|
|
|
|
{
|
|
|
|
rarch_setting_t **settings = (rarch_setting_t**)data;
|
2015-12-12 13:55:17 +00:00
|
|
|
if (!settings)
|
2015-12-11 21:30:19 +00:00
|
|
|
return false;
|
2015-12-12 13:49:02 +00:00
|
|
|
*settings = menu_entries_list_settings;
|
2015-12-11 21:30:19 +00:00
|
|
|
}
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-12 13:49:02 +00:00
|
|
|
case MENU_ENTRIES_CTL_SETTINGS_DEINIT:
|
2016-06-16 23:07:52 +00:00
|
|
|
menu_setting_free(menu_entries_list_settings);
|
2015-12-12 13:49:02 +00:00
|
|
|
menu_entries_list_settings = NULL;
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-12 13:49:02 +00:00
|
|
|
case MENU_ENTRIES_CTL_SETTINGS_INIT:
|
2016-03-18 21:31:14 +00:00
|
|
|
menu_setting_ctl(MENU_SETTING_CTL_NEW, &menu_entries_list_settings);
|
2015-12-12 13:49:02 +00:00
|
|
|
|
|
|
|
if (!menu_entries_list_settings)
|
|
|
|
return false;
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-12 01:14:50 +00:00
|
|
|
case MENU_ENTRIES_CTL_SET_REFRESH:
|
|
|
|
{
|
|
|
|
bool *nonblocking = (bool*)data;
|
|
|
|
|
|
|
|
if (*nonblocking)
|
2015-12-12 01:17:39 +00:00
|
|
|
menu_entries_nonblocking_refresh = true;
|
2015-12-12 01:14:50 +00:00
|
|
|
else
|
2015-12-12 01:17:39 +00:00
|
|
|
menu_entries_need_refresh = true;
|
2015-12-12 01:14:50 +00:00
|
|
|
}
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-12 01:14:50 +00:00
|
|
|
case MENU_ENTRIES_CTL_UNSET_REFRESH:
|
|
|
|
{
|
|
|
|
bool *nonblocking = (bool*)data;
|
|
|
|
|
|
|
|
if (*nonblocking)
|
2015-12-12 01:17:39 +00:00
|
|
|
menu_entries_nonblocking_refresh = false;
|
2015-12-12 01:14:50 +00:00
|
|
|
else
|
2015-12-12 01:17:39 +00:00
|
|
|
menu_entries_need_refresh = false;
|
2015-12-12 01:14:50 +00:00
|
|
|
}
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2015-12-12 13:39:35 +00:00
|
|
|
case MENU_ENTRIES_CTL_SET_START:
|
|
|
|
{
|
|
|
|
size_t *idx = (size_t*)data;
|
|
|
|
if (idx)
|
|
|
|
menu_entries_begin = *idx;
|
|
|
|
}
|
|
|
|
case MENU_ENTRIES_CTL_START_GET:
|
|
|
|
{
|
|
|
|
size_t *idx = (size_t*)data;
|
|
|
|
if (!idx)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*idx = menu_entries_begin;
|
|
|
|
}
|
2016-02-10 03:15:18 +00:00
|
|
|
break;
|
2016-02-04 20:13:38 +00:00
|
|
|
case MENU_ENTRIES_CTL_REFRESH:
|
|
|
|
return menu_entries_refresh(data);
|
2016-02-24 21:45:21 +00:00
|
|
|
case MENU_ENTRIES_CTL_CLEAR:
|
|
|
|
return menu_entries_clear((file_list_t*)data);
|
2015-12-11 20:41:59 +00:00
|
|
|
case MENU_ENTRIES_CTL_INIT:
|
|
|
|
return menu_entries_init();
|
2015-12-11 20:34:27 +00:00
|
|
|
case MENU_ENTRIES_CTL_SHOW_BACK:
|
2015-12-11 20:37:11 +00:00
|
|
|
/* Returns true if a Back button should be shown
|
|
|
|
* (i.e. we are at least
|
|
|
|
* one level deep in the menu hierarchy). */
|
2015-12-11 20:34:27 +00:00
|
|
|
return (menu_entries_get_stack_size(0) > 1);
|
2015-12-11 20:32:00 +00:00
|
|
|
case MENU_ENTRIES_CTL_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-02-10 03:15:18 +00:00
|
|
|
return true;
|
2015-12-11 20:32:00 +00:00
|
|
|
}
|