2015-06-12 14:07:12 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
|
|
|
* Copyright (C) 2014-2015 - Jay McCarthy
|
|
|
|
*
|
|
|
|
* 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>
|
2015-06-12 14:07:12 +00:00
|
|
|
#include "menu.h"
|
2015-10-17 17:38:33 +00:00
|
|
|
#include "menu_cbs.h"
|
2015-06-19 04:08:08 +00:00
|
|
|
#include "menu_hash.h"
|
2015-06-16 00:15:32 +00:00
|
|
|
|
2015-06-13 17:12:10 +00:00
|
|
|
#include "../general.h"
|
2015-06-12 14:07:12 +00:00
|
|
|
|
2015-10-17 17:38:33 +00:00
|
|
|
struct menu_list
|
|
|
|
{
|
2015-10-27 08:58:01 +00:00
|
|
|
file_list_t **menu_stack;
|
|
|
|
size_t menu_stack_size;
|
|
|
|
file_list_t **selection_buf;
|
|
|
|
size_t selection_buf_size;
|
2015-10-17 17:38:33 +00:00
|
|
|
};
|
|
|
|
|
2015-09-06 02:18:26 +00:00
|
|
|
struct menu_entries
|
2015-09-06 00:56:57 +00:00
|
|
|
{
|
|
|
|
/* Flagged when menu entries need to be refreshed */
|
|
|
|
bool need_refresh;
|
2015-10-22 01:54:34 +00:00
|
|
|
bool nonblocking_refresh;
|
2015-09-06 00:56:57 +00:00
|
|
|
|
|
|
|
size_t begin;
|
|
|
|
menu_list_t *menu_list;
|
|
|
|
rarch_setting_t *list_settings;
|
2015-09-06 02:18:26 +00:00
|
|
|
};
|
2015-09-06 00:56:57 +00:00
|
|
|
|
2015-10-17 17:38:33 +00:00
|
|
|
static void menu_list_free_list(file_list_t *list)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; i < list->size; i++)
|
|
|
|
menu_driver_list_free(list, i, list->size);
|
|
|
|
|
|
|
|
if (list)
|
|
|
|
file_list_free(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_list_free(menu_list_t *menu_list)
|
|
|
|
{
|
2015-10-27 08:58:01 +00:00
|
|
|
unsigned i;
|
2015-10-17 17:38:33 +00:00
|
|
|
if (!menu_list)
|
|
|
|
return;
|
|
|
|
|
2015-10-27 08:58:01 +00:00
|
|
|
for (i = 0; i < menu_list->menu_stack_size; i++)
|
|
|
|
{
|
|
|
|
menu_list_free_list(menu_list->menu_stack[i]);
|
|
|
|
menu_list->menu_stack[i] = NULL;
|
|
|
|
}
|
|
|
|
for (i = 0; i < menu_list->selection_buf_size; i++)
|
|
|
|
{
|
|
|
|
menu_list_free_list(menu_list->selection_buf[i]);
|
|
|
|
menu_list->selection_buf[i] = NULL;
|
|
|
|
}
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2015-10-27 08:58:01 +00:00
|
|
|
free(menu_list->menu_stack);
|
|
|
|
free(menu_list->selection_buf);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
free(menu_list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static menu_list_t *menu_list_new(void)
|
|
|
|
{
|
2015-10-27 08:58:01 +00:00
|
|
|
unsigned i;
|
|
|
|
menu_list_t *list = (menu_list_t*)calloc(1, sizeof(*list));
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
if (!list)
|
|
|
|
return NULL;
|
|
|
|
|
2015-10-27 08:58:01 +00:00
|
|
|
list->menu_stack = (file_list_t**)calloc(1, sizeof(*list->menu_stack));
|
|
|
|
|
|
|
|
if (!list->menu_stack)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
list->selection_buf = (file_list_t**)calloc(1, sizeof(*list->selection_buf));
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2015-10-27 08:58:01 +00:00
|
|
|
if (!list->selection_buf)
|
2015-10-17 17:38:33 +00:00
|
|
|
goto error;
|
|
|
|
|
2015-10-27 08:58:01 +00:00
|
|
|
list->menu_stack_size = 1;
|
|
|
|
list->selection_buf_size = 1;
|
|
|
|
|
2015-10-27 09:15:39 +00:00
|
|
|
for (i = 0; i < list->menu_stack_size; i++)
|
|
|
|
list->menu_stack[i] = calloc(1, sizeof(*list->menu_stack[i]));
|
2015-10-27 09:51:33 +00:00
|
|
|
|
|
|
|
for (i = 0; i < list->selection_buf_size; i++)
|
2015-10-27 09:15:39 +00:00
|
|
|
list->selection_buf[i] = calloc(1, sizeof(*list->selection_buf[i]));
|
2015-10-27 08:58:01 +00:00
|
|
|
|
2015-10-17 17:38:33 +00:00
|
|
|
return list;
|
|
|
|
|
|
|
|
error:
|
|
|
|
menu_list_free(list);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
static size_t menu_list_get_stack_size(menu_list_t *list, size_t idx)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
if (!list)
|
|
|
|
return 0;
|
2015-10-27 09:29:50 +00:00
|
|
|
return file_list_get_size(list->menu_stack[idx]);
|
2015-10-17 17:38:33 +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);
|
|
|
|
}
|
|
|
|
|
2015-10-19 14:40:56 +00:00
|
|
|
static INLINE int menu_entries_flush_stack_type(
|
2015-10-17 17:38:33 +00:00
|
|
|
const char *needle, const char *label,
|
|
|
|
unsigned type, unsigned final_type)
|
|
|
|
{
|
|
|
|
return needle ? strcmp(needle, label) : (type != final_type);
|
|
|
|
}
|
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
static bool menu_list_pop_stack(menu_list_t *list, size_t idx, size_t *directory_ptr)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
2015-10-19 14:40:56 +00:00
|
|
|
file_list_t *menu_list = NULL;
|
2015-10-17 17:38:33 +00:00
|
|
|
if (!list)
|
|
|
|
return false;
|
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
menu_list = list->menu_stack[idx];
|
2015-10-19 14:40:56 +00:00
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
if (menu_list_get_stack_size(list, idx) <= 1)
|
2015-10-17 17:38:33 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
menu_driver_list_cache(MENU_LIST_PLAIN, 0);
|
|
|
|
|
2015-10-19 14:40:56 +00:00
|
|
|
if (menu_list->size != 0)
|
|
|
|
menu_driver_list_free(menu_list, menu_list->size - 1, menu_list->size - 1);
|
|
|
|
|
|
|
|
file_list_pop(menu_list, directory_ptr);
|
|
|
|
menu_driver_list_set_selection(menu_list);
|
|
|
|
|
2015-10-22 01:54:34 +00:00
|
|
|
menu_entries_set_refresh(false);
|
2015-10-17 17:38:33 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_list_flush_stack(menu_list_t *list,
|
2015-10-27 09:29:50 +00:00
|
|
|
size_t idx, const char *needle, unsigned final_type)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
const char *path = NULL;
|
|
|
|
const char *label = NULL;
|
|
|
|
unsigned type = 0;
|
|
|
|
size_t entry_idx = 0;
|
|
|
|
if (!list)
|
|
|
|
return;
|
|
|
|
|
2015-10-22 01:54:34 +00:00
|
|
|
menu_entries_set_refresh(false);
|
2015-10-27 09:29:50 +00:00
|
|
|
menu_entries_get_last(list->menu_stack[idx],
|
2015-10-17 17:38:33 +00:00
|
|
|
&path, &label, &type, &entry_idx);
|
|
|
|
|
2015-10-19 14:40:56 +00:00
|
|
|
while (menu_entries_flush_stack_type(
|
2015-10-17 17:38:33 +00:00
|
|
|
needle, label, type, final_type) != 0)
|
|
|
|
{
|
|
|
|
size_t new_selection_ptr;
|
|
|
|
|
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &new_selection_ptr);
|
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
if (!menu_list_pop_stack(list, idx, &new_selection_ptr))
|
2015-10-18 02:20:32 +00:00
|
|
|
break;
|
2015-10-17 17:38:33 +00:00
|
|
|
|
2015-10-18 02:20:32 +00:00
|
|
|
menu_navigation_ctl(MENU_NAVIGATION_CTL_SET_SELECTION, &new_selection_ptr);
|
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
menu_entries_get_last(list->menu_stack[idx],
|
2015-10-18 02:20:32 +00:00
|
|
|
&path, &label, &type, &entry_idx);
|
2015-10-17 17:38:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-18 19:44:44 +00:00
|
|
|
void menu_entries_clear(file_list_t *list)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
const menu_ctx_driver_t *driver = menu_ctx_driver_get_ptr();
|
|
|
|
|
|
|
|
if (driver->list_clear)
|
|
|
|
driver->list_clear(list);
|
|
|
|
|
|
|
|
for (i = 0; i < list->size; i++)
|
|
|
|
file_list_free_actiondata(list, i);
|
|
|
|
|
|
|
|
if (list)
|
|
|
|
file_list_clear(list);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
return type == MENU_FILE_DIRECTORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
const char *path = NULL;
|
|
|
|
|
2015-10-18 19:55:19 +00:00
|
|
|
menu_entries_get_at_offset(list, offset,
|
|
|
|
NULL, NULL, NULL, NULL, &path);
|
|
|
|
|
2015-10-17 17:38:33 +00:00
|
|
|
ret = tolower((int)*path);
|
|
|
|
|
|
|
|
/* "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.
|
|
|
|
**/
|
2015-10-18 19:58:13 +00:00
|
|
|
void menu_entries_refresh(file_list_t *list)
|
2015-10-17 17:38:33 +00:00
|
|
|
{
|
|
|
|
size_t list_size, selection;
|
2015-10-19 14:32:51 +00:00
|
|
|
if (!list)
|
2015-10-17 17:38:33 +00:00
|
|
|
return;
|
|
|
|
if (!menu_navigation_ctl(MENU_NAVIGATION_CTL_GET_SELECTION, &selection))
|
|
|
|
return;
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-06 03:04:16 +00:00
|
|
|
static menu_entries_t *menu_entries_get_ptr(void)
|
2015-06-16 00:15:32 +00:00
|
|
|
{
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
if (!menu)
|
|
|
|
return NULL;
|
|
|
|
|
2015-09-06 03:04:16 +00:00
|
|
|
return menu->entries;
|
2015-06-16 00:15:32 +00:00
|
|
|
}
|
|
|
|
|
2015-08-21 19:19:29 +00:00
|
|
|
rarch_setting_t *menu_setting_get_ptr(void)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-08-21 19:19:29 +00:00
|
|
|
|
|
|
|
if (!entries)
|
|
|
|
return NULL;
|
|
|
|
return entries->list_settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
menu_list_t *menu_list_get_ptr(void)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-08-21 19:19:29 +00:00
|
|
|
if (!entries)
|
|
|
|
return NULL;
|
|
|
|
return entries->menu_list;
|
|
|
|
}
|
|
|
|
|
2015-06-15 23:59:26 +00:00
|
|
|
/* Sets the starting index of the menu entry list. */
|
|
|
|
void menu_entries_set_start(size_t i)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-06-15 23:59:26 +00:00
|
|
|
|
2015-08-17 13:39:24 +00:00
|
|
|
if (entries)
|
|
|
|
entries->begin = i;
|
2015-06-15 23:59:26 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 14:07:12 +00:00
|
|
|
/* Returns the starting index of the menu entry list. */
|
|
|
|
size_t menu_entries_get_start(void)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-06-12 14:07:12 +00:00
|
|
|
|
2015-06-16 00:17:52 +00:00
|
|
|
if (!entries)
|
2015-06-12 14:07:12 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-06-16 00:17:52 +00:00
|
|
|
return entries->begin;
|
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 */
|
|
|
|
void menu_entries_get(size_t i, menu_entry_t *entry)
|
|
|
|
{
|
2015-10-27 08:58:01 +00:00
|
|
|
const char *label = NULL;
|
|
|
|
const char *path = NULL;
|
|
|
|
const char *entry_label = NULL;
|
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
2015-10-27 09:10:33 +00:00
|
|
|
file_list_t *selection_buf = menu_entries_get_selection_buf_ptr(0);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
2015-10-17 16:44:17 +00:00
|
|
|
menu_entries_get_last_stack(NULL, &label, NULL, NULL);
|
2015-07-13 22:38:16 +00:00
|
|
|
|
|
|
|
entry->path[0] = entry->value[0] = entry->label[0] = '\0';
|
|
|
|
|
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)
|
|
|
|
{
|
2015-10-17 16:44:17 +00:00
|
|
|
unsigned menu_type = 0;
|
2015-06-12 14:07:12 +00:00
|
|
|
const char *path = NULL;
|
|
|
|
const char *label = NULL;
|
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;
|
|
|
|
|
2015-10-17 16:44:17 +00:00
|
|
|
menu_entries_get_last_stack(&path, &label, &menu_type, 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns true if a Back button should be shown (i.e. we are at least
|
|
|
|
* one level deep in the menu hierarchy). */
|
|
|
|
bool menu_entries_show_back(void)
|
|
|
|
{
|
2015-10-27 09:29:50 +00:00
|
|
|
return (menu_entries_get_stack_size(0) > 1);
|
2015-06-12 14:07:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
{
|
2015-08-17 16:14:51 +00:00
|
|
|
const char *core_name = NULL;
|
|
|
|
const char *core_version = NULL;
|
2015-06-25 09:12:07 +00:00
|
|
|
global_t *global = global_get_ptr();
|
2015-08-17 16:14:51 +00:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-06-25 10:36:55 +00:00
|
|
|
rarch_system_info_t *info = rarch_system_info_get_ptr();
|
2015-06-12 14:07:12 +00:00
|
|
|
|
2015-08-17 16:14:51 +00:00
|
|
|
if (!settings->menu.core_enable)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (global)
|
|
|
|
{
|
|
|
|
core_name = global->menu.info.library_name;
|
|
|
|
core_version = global->menu.info.library_version;
|
|
|
|
}
|
|
|
|
|
2015-06-24 14:16:56 +00:00
|
|
|
if (!core_name || core_name[0] == '\0')
|
2015-06-25 10:36:55 +00:00
|
|
|
core_name = info->info.library_name;
|
2015-06-24 14:16:56 +00:00
|
|
|
if (!core_name || core_name[0] == '\0')
|
2015-06-19 04:08:08 +00:00
|
|
|
core_name = menu_hash_to_str(MENU_VALUE_NO_CORE);
|
2015-06-12 14:07:12 +00:00
|
|
|
|
|
|
|
if (!core_version)
|
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
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
if (!menu_list)
|
|
|
|
return NULL;
|
2015-10-27 09:33:19 +00:00
|
|
|
return menu_list->menu_stack[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
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
if (!menu_list)
|
|
|
|
return NULL;
|
2015-10-27 09:33:19 +00:00
|
|
|
return menu_list->selection_buf[idx];
|
2015-10-17 15:44:57 +00:00
|
|
|
}
|
|
|
|
|
2015-06-16 01:03:20 +00:00
|
|
|
bool menu_entries_needs_refresh(void)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-06-16 01:03:20 +00:00
|
|
|
|
2015-10-22 01:54:34 +00:00
|
|
|
if (!entries || entries->nonblocking_refresh)
|
2015-08-21 16:44:14 +00:00
|
|
|
return false;
|
|
|
|
if (entries->need_refresh)
|
|
|
|
return true;
|
|
|
|
return false;
|
2015-06-16 01:07:44 +00:00
|
|
|
}
|
|
|
|
|
2015-10-22 01:54:34 +00:00
|
|
|
void menu_entries_set_refresh(bool nonblocking)
|
2015-06-16 01:03:20 +00:00
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-08-17 13:39:24 +00:00
|
|
|
if (entries)
|
2015-10-22 01:54:34 +00:00
|
|
|
{
|
|
|
|
if (nonblocking)
|
|
|
|
entries->nonblocking_refresh = true;
|
|
|
|
else
|
|
|
|
entries->need_refresh = true;
|
|
|
|
}
|
2015-06-16 01:03:20 +00:00
|
|
|
}
|
|
|
|
|
2015-10-22 01:54:34 +00:00
|
|
|
void menu_entries_unset_refresh(bool nonblocking)
|
2015-06-16 01:03:20 +00:00
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-08-17 13:39:24 +00:00
|
|
|
if (entries)
|
2015-10-22 01:54:34 +00:00
|
|
|
{
|
|
|
|
if (nonblocking)
|
|
|
|
entries->nonblocking_refresh = false;
|
|
|
|
else
|
|
|
|
entries->need_refresh = false;
|
|
|
|
}
|
2015-06-16 01:03:20 +00:00
|
|
|
}
|
2015-08-21 19:19:29 +00:00
|
|
|
|
|
|
|
bool menu_entries_init(void *data)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = NULL;
|
2015-08-21 19:19:29 +00:00
|
|
|
menu_handle_t *menu = (menu_handle_t*)data;
|
|
|
|
if (!menu)
|
2015-09-06 00:56:57 +00:00
|
|
|
goto error;
|
|
|
|
|
2015-09-06 03:04:16 +00:00
|
|
|
entries = (menu_entries_t*)calloc(1, sizeof(*entries));
|
2015-08-21 19:19:29 +00:00
|
|
|
|
2015-09-06 00:56:57 +00:00
|
|
|
if (!entries)
|
|
|
|
goto error;
|
|
|
|
|
2015-09-06 02:18:26 +00:00
|
|
|
menu->entries = (struct menu_entries*)entries;
|
2015-08-21 19:19:29 +00:00
|
|
|
|
|
|
|
if (!(entries->menu_list = (menu_list_t*)menu_list_new()))
|
2015-09-06 00:56:57 +00:00
|
|
|
goto error;
|
2015-08-21 19:19:29 +00:00
|
|
|
|
2015-10-19 01:28:00 +00:00
|
|
|
entries->list_settings = menu_setting_new();
|
|
|
|
|
2015-08-21 19:19:29 +00:00
|
|
|
return true;
|
2015-09-06 00:56:57 +00:00
|
|
|
|
|
|
|
error:
|
|
|
|
if (entries)
|
|
|
|
free(entries);
|
|
|
|
if (menu)
|
|
|
|
menu->entries = NULL;
|
|
|
|
return false;
|
2015-08-21 19:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void menu_entries_free(void)
|
|
|
|
{
|
2015-09-06 03:04:16 +00:00
|
|
|
menu_entries_t *entries = menu_entries_get_ptr();
|
2015-08-21 19:19:29 +00:00
|
|
|
|
|
|
|
if (!entries)
|
|
|
|
return;
|
|
|
|
|
2015-10-19 01:28:00 +00:00
|
|
|
if (entries->list_settings)
|
|
|
|
menu_setting_free(entries->list_settings);
|
2015-08-21 19:19:29 +00:00
|
|
|
entries->list_settings = NULL;
|
|
|
|
|
|
|
|
menu_list_free(entries->menu_list);
|
|
|
|
entries->menu_list = NULL;
|
|
|
|
}
|
2015-09-06 00:56:57 +00:00
|
|
|
|
2015-10-17 15:10:29 +00:00
|
|
|
void menu_entries_push(file_list_t *list, const char *path, const char *label,
|
|
|
|
unsigned type, size_t directory_ptr, size_t entry_idx)
|
|
|
|
{
|
2015-10-18 19:41:08 +00:00
|
|
|
size_t idx;
|
|
|
|
const menu_ctx_driver_t *driver = menu_ctx_driver_get_ptr();
|
|
|
|
menu_file_list_cbs_t *cbs = NULL;
|
|
|
|
if (!list || !label)
|
|
|
|
return;
|
|
|
|
|
|
|
|
file_list_push(list, path, label, type, directory_ptr, entry_idx);
|
|
|
|
|
|
|
|
idx = list->size - 1;
|
|
|
|
|
|
|
|
if (driver->list_insert)
|
|
|
|
driver->list_insert(list, path, label, idx);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
cbs->setting = menu_setting_find(label);
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-10-27 09:45:06 +00:00
|
|
|
void menu_entries_push_selection_buf(file_list_t *list, const char *path, const char *label,
|
|
|
|
unsigned type, size_t directory_ptr, size_t entry_idx)
|
|
|
|
{
|
|
|
|
file_list_t **selection_buf = NULL;
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
|
|
|
|
if (!menu_list)
|
|
|
|
return;
|
|
|
|
|
|
|
|
selection_buf = (file_list_t**)realloc(selection_buf, (menu_list->selection_buf_size + 1) * sizeof(file_list_t));
|
|
|
|
|
|
|
|
if (!selection_buf)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
menu_list->selection_buf = selection_buf;
|
2015-10-27 09:53:14 +00:00
|
|
|
menu_list->selection_buf_size = menu_list->selection_buf_size + 1;
|
2015-10-27 09:45:06 +00:00
|
|
|
menu_list->selection_buf[menu_list->selection_buf_size] = (file_list_t*)calloc(1, sizeof(*menu_list->selection_buf[menu_list->selection_buf_size]));
|
|
|
|
|
|
|
|
menu_entries_push(menu_list->selection_buf[menu_list->selection_buf_size], path, label, type, directory_ptr, entry_idx);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (list)
|
|
|
|
free(selection_buf);
|
|
|
|
}
|
|
|
|
|
2015-10-27 09:41:59 +00:00
|
|
|
void menu_entries_push_menu_stack(file_list_t *list, const char *path, const char *label,
|
|
|
|
unsigned type, size_t directory_ptr, size_t entry_idx)
|
|
|
|
{
|
|
|
|
file_list_t **menu_stack = NULL;
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
|
|
|
|
if (!menu_list)
|
|
|
|
return;
|
|
|
|
|
|
|
|
menu_stack = (file_list_t**)realloc(menu_stack, (menu_list->menu_stack_size + 1) * sizeof(file_list_t));
|
|
|
|
|
|
|
|
if (!menu_stack)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
menu_list->menu_stack = menu_stack;
|
2015-10-27 09:53:14 +00:00
|
|
|
menu_list->menu_stack_size = menu_list->menu_stack_size + 1;
|
2015-10-27 09:41:59 +00:00
|
|
|
menu_list->menu_stack[menu_list->menu_stack_size] = (file_list_t*)calloc(1, sizeof(*menu_list->menu_stack[menu_list->menu_stack_size]));
|
|
|
|
|
|
|
|
menu_entries_push(menu_list->menu_stack[menu_list->menu_stack_size], path, label, type, directory_ptr, entry_idx);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (list)
|
|
|
|
free(menu_stack);
|
|
|
|
}
|
|
|
|
|
2015-10-17 16:57:47 +00:00
|
|
|
menu_file_list_cbs_t *menu_entries_get_last_stack_actiondata(void)
|
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
if (!menu_list)
|
|
|
|
return NULL;
|
2015-10-27 08:58:01 +00:00
|
|
|
return (menu_file_list_cbs_t*)file_list_get_last_actiondata(menu_list->menu_stack[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,
|
|
|
|
unsigned *file_type, size_t *entry_idx)
|
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
if (menu_list)
|
2015-10-27 08:58:01 +00:00
|
|
|
menu_entries_get_last(menu_list->menu_stack[0], path, label, file_type, entry_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)
|
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-10-27 09:29:50 +00:00
|
|
|
void menu_entries_pop_stack(size_t *ptr, size_t idx)
|
2015-10-17 16:38:14 +00:00
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
if (menu_list)
|
2015-10-27 09:29:50 +00:00
|
|
|
menu_list_pop_stack(menu_list, idx, ptr);
|
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
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
|
|
|
if (!menu_list)
|
|
|
|
return 0;
|
2015-10-27 08:58:01 +00:00
|
|
|
return file_list_get_size(menu_list->selection_buf[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);
|
2015-10-19 14:32:51 +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;
|
|
|
|
}
|