2014-10-17 18:36:02 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
|
|
|
* Copyright (C) 2014-2015 - Jean-André Santoni
|
2014-10-17 18:36:02 +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-05-12 11:14:04 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <retro_inline.h>
|
2015-06-14 13:46:32 +00:00
|
|
|
#include <rhash.h>
|
2015-05-12 11:14:04 +00:00
|
|
|
|
2014-10-28 18:54:23 +00:00
|
|
|
#include "../driver.h"
|
2015-05-12 12:35:07 +00:00
|
|
|
#include "menu.h"
|
2014-10-17 18:36:02 +00:00
|
|
|
#include "menu_list.h"
|
2014-10-17 20:25:23 +00:00
|
|
|
#include "menu_navigation.h"
|
2014-10-17 18:36:02 +00:00
|
|
|
|
2015-05-07 03:08:34 +00:00
|
|
|
menu_list_t *menu_list_get_ptr(void)
|
2015-05-07 02:54:49 +00:00
|
|
|
{
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
if (!menu)
|
|
|
|
return NULL;
|
|
|
|
return menu->menu_list;
|
|
|
|
}
|
|
|
|
|
2015-01-24 19:49:18 +00:00
|
|
|
/**
|
2015-05-08 17:45:55 +00:00
|
|
|
* menu_list_elem_is_dir:
|
2015-01-24 19:49:18 +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-06-11 00:31:31 +00:00
|
|
|
static bool menu_list_elem_is_dir(file_list_t *list,
|
2015-01-24 19:49:18 +00:00
|
|
|
unsigned offset)
|
|
|
|
{
|
|
|
|
unsigned type = 0;
|
|
|
|
|
2015-06-14 02:24:50 +00:00
|
|
|
menu_list_get_at_offset(list, offset, NULL, NULL, &type, NULL);
|
2015-01-24 19:49:18 +00:00
|
|
|
|
2015-06-12 13:48:11 +00:00
|
|
|
return type == MENU_FILE_DIRECTORY;
|
2015-01-24 19:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-08 17:45:55 +00:00
|
|
|
* menu_list_elem_get_first_char:
|
2015-01-24 19:49:18 +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-06-11 00:31:31 +00:00
|
|
|
static int menu_list_elem_get_first_char(
|
2015-01-24 19:49:18 +00:00
|
|
|
file_list_t *list, unsigned offset)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
const char *path = NULL;
|
|
|
|
|
|
|
|
menu_list_get_alt_at_offset(list, offset, &path);
|
|
|
|
ret = tolower(*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-05-08 17:44:46 +00:00
|
|
|
static void menu_list_build_scroll_indices(file_list_t *list)
|
2015-01-24 19:49:18 +00:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
int current;
|
|
|
|
bool current_is_dir;
|
2015-05-07 03:04:58 +00:00
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-02-13 23:47:42 +00:00
|
|
|
|
2015-05-07 03:04:58 +00:00
|
|
|
if (!nav || !list)
|
2015-02-13 23:47:42 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
nav->scroll.indices.size = 0;
|
|
|
|
|
2015-01-24 19:49:18 +00:00
|
|
|
if (!list->size)
|
|
|
|
return;
|
|
|
|
|
2015-02-13 23:47:42 +00:00
|
|
|
nav->scroll.indices.list[nav->scroll.indices.size++] = 0;
|
2015-01-24 19:49:18 +00:00
|
|
|
|
2015-05-08 17:45:55 +00:00
|
|
|
current = menu_list_elem_get_first_char(list, 0);
|
|
|
|
current_is_dir = menu_list_elem_is_dir(list, 0);
|
2015-01-24 19:49:18 +00:00
|
|
|
|
|
|
|
for (i = 1; i < list->size; i++)
|
|
|
|
{
|
2015-05-08 17:45:55 +00:00
|
|
|
int first = menu_list_elem_get_first_char(list, i);
|
|
|
|
bool is_dir = menu_list_elem_is_dir(list, i);
|
2015-01-24 19:49:18 +00:00
|
|
|
|
|
|
|
if ((current_is_dir && !is_dir) || (first > current))
|
2015-02-13 23:47:42 +00:00
|
|
|
nav->scroll.indices.list[nav->scroll.indices.size++] = i;
|
2015-01-24 19:49:18 +00:00
|
|
|
|
2015-06-08 09:33:00 +00:00
|
|
|
current = first;
|
2015-01-24 19:49:18 +00:00
|
|
|
current_is_dir = is_dir;
|
|
|
|
}
|
|
|
|
|
2015-02-13 23:47:42 +00:00
|
|
|
nav->scroll.indices.list[nav->scroll.indices.size++] =
|
2015-01-24 19:49:18 +00:00
|
|
|
list->size - 1;
|
|
|
|
}
|
|
|
|
|
2015-06-08 09:33:00 +00:00
|
|
|
size_t menu_list_get_size(menu_list_t *list)
|
|
|
|
{
|
|
|
|
if (!list)
|
|
|
|
return 0;
|
|
|
|
return file_list_get_size(list->selection_buf);
|
|
|
|
}
|
|
|
|
|
2015-05-08 17:44:46 +00:00
|
|
|
/**
|
|
|
|
* 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-05-12 13:23:41 +00:00
|
|
|
void menu_list_refresh(file_list_t *list)
|
2015-05-08 17:44:46 +00:00
|
|
|
{
|
2015-06-08 09:33:00 +00:00
|
|
|
size_t list_size;
|
2015-05-08 17:44:46 +00:00
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
|
|
|
menu_list_t *menu_list = menu_list_get_ptr();
|
2015-05-08 18:01:38 +00:00
|
|
|
if (!nav || !menu_list || !list)
|
2015-05-08 17:44:46 +00:00
|
|
|
return;
|
|
|
|
|
2015-05-08 18:01:38 +00:00
|
|
|
nav->scroll.indices.size = 0;
|
|
|
|
|
2015-05-08 17:44:46 +00:00
|
|
|
menu_list_build_scroll_indices(list);
|
|
|
|
|
2015-06-08 09:33:00 +00:00
|
|
|
list_size = menu_list_get_size(menu_list);
|
|
|
|
|
|
|
|
if ((nav->selection_ptr >= list_size) && list_size)
|
|
|
|
menu_navigation_set(nav, list_size - 1, true);
|
|
|
|
else if (!list_size)
|
2015-05-08 17:44:46 +00:00
|
|
|
menu_navigation_clear(nav, true);
|
|
|
|
}
|
|
|
|
|
2015-06-12 12:27:03 +00:00
|
|
|
static void menu_list_free_list(file_list_t *list)
|
2014-10-17 18:36:02 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
for (i = 0; i < list->size; i++)
|
2015-06-12 12:15:48 +00:00
|
|
|
menu_driver_list_free(list, i, list->size);
|
2014-10-17 18:36:02 +00:00
|
|
|
|
2015-03-12 12:45:23 +00:00
|
|
|
if (list)
|
|
|
|
file_list_free(list);
|
2014-10-17 18:36:02 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 21:52:36 +00:00
|
|
|
void menu_list_free(menu_list_t *menu_list)
|
|
|
|
{
|
|
|
|
if (!menu_list)
|
|
|
|
return;
|
|
|
|
|
2015-06-12 12:27:03 +00:00
|
|
|
menu_list_free_list(menu_list->menu_stack);
|
|
|
|
menu_list_free_list(menu_list->selection_buf);
|
2015-06-12 12:29:21 +00:00
|
|
|
|
|
|
|
menu_list->menu_stack = NULL;
|
|
|
|
menu_list->selection_buf = NULL;
|
|
|
|
|
2015-05-19 18:36:44 +00:00
|
|
|
free(menu_list);
|
2014-10-17 21:52:36 +00:00
|
|
|
}
|
|
|
|
|
2015-05-07 02:28:57 +00:00
|
|
|
menu_list_t *menu_list_new(void)
|
2014-10-17 22:11:42 +00:00
|
|
|
{
|
|
|
|
menu_list_t *list = (menu_list_t*)calloc(1, sizeof(*list));
|
|
|
|
|
|
|
|
if (!list)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
list->menu_stack = (file_list_t*)calloc(1, sizeof(file_list_t));
|
|
|
|
list->selection_buf = (file_list_t*)calloc(1, sizeof(file_list_t));
|
|
|
|
|
|
|
|
if (!list->menu_stack || !list->selection_buf)
|
2015-06-12 12:30:40 +00:00
|
|
|
goto error;
|
2014-10-17 22:11:42 +00:00
|
|
|
|
|
|
|
return list;
|
2015-06-12 12:30:40 +00:00
|
|
|
|
|
|
|
error:
|
2015-06-12 12:44:25 +00:00
|
|
|
menu_list_free(list);
|
2015-06-12 12:30:40 +00:00
|
|
|
return NULL;
|
2014-10-17 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
2014-10-18 00:32:59 +00:00
|
|
|
size_t menu_list_get_stack_size(menu_list_t *list)
|
2014-10-17 19:41:23 +00:00
|
|
|
{
|
2015-01-10 03:06:56 +00:00
|
|
|
if (!list)
|
|
|
|
return 0;
|
|
|
|
return file_list_get_size(list->menu_stack);
|
2014-10-17 19:41:23 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 17:18:18 +00:00
|
|
|
void menu_list_get_at_offset(const file_list_t *list, size_t idx,
|
2015-06-10 20:43:06 +00:00
|
|
|
const char **path, const char **label, unsigned *file_type,
|
|
|
|
size_t *entry_idx)
|
2014-10-17 21:28:33 +00:00
|
|
|
{
|
2015-06-10 20:43:06 +00:00
|
|
|
file_list_get_at_offset(list, idx, path, label, file_type, entry_idx);
|
2014-10-17 21:28:33 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 20:41:20 +00:00
|
|
|
void menu_list_get_last(const file_list_t *list,
|
|
|
|
const char **path, const char **label,
|
2015-06-10 20:43:06 +00:00
|
|
|
unsigned *file_type, size_t *entry_idx)
|
2014-10-17 20:41:20 +00:00
|
|
|
{
|
|
|
|
if (list)
|
2015-06-10 20:43:06 +00:00
|
|
|
file_list_get_last(list, path, label, file_type, entry_idx);
|
2014-10-17 20:41:20 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 23:59:16 +00:00
|
|
|
void menu_list_get_last_stack(const menu_list_t *list,
|
2014-10-17 20:41:20 +00:00
|
|
|
const char **path, const char **label,
|
2015-06-10 20:43:06 +00:00
|
|
|
unsigned *file_type, size_t *entry_idx)
|
2014-10-17 20:41:20 +00:00
|
|
|
{
|
2015-06-11 00:30:04 +00:00
|
|
|
menu_list_get_last(list->menu_stack, path, label, file_type, entry_idx);
|
2014-10-17 20:41:20 +00:00
|
|
|
}
|
|
|
|
|
2015-06-12 12:50:06 +00:00
|
|
|
void *menu_list_get_userdata_at_offset(const file_list_t *list, size_t idx)
|
|
|
|
{
|
|
|
|
if (!list)
|
|
|
|
return NULL;
|
|
|
|
return (menu_file_list_cbs_t*)file_list_get_userdata_at_offset(list, idx);
|
|
|
|
}
|
|
|
|
|
2015-05-17 11:23:27 +00:00
|
|
|
menu_file_list_cbs_t *menu_list_get_actiondata_at_offset(const file_list_t *list, size_t idx)
|
2014-10-17 21:32:40 +00:00
|
|
|
{
|
2015-01-10 03:06:56 +00:00
|
|
|
if (!list)
|
|
|
|
return NULL;
|
2015-05-20 00:45:32 +00:00
|
|
|
return (menu_file_list_cbs_t*)file_list_get_actiondata_at_offset(list, idx);
|
2014-10-17 21:32:40 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 23:53:50 +00:00
|
|
|
void *menu_list_get_last_stack_actiondata(const menu_list_t *list)
|
2014-10-17 20:53:30 +00:00
|
|
|
{
|
2015-01-10 03:06:56 +00:00
|
|
|
if (!list)
|
|
|
|
return NULL;
|
2015-01-12 02:31:02 +00:00
|
|
|
return file_list_get_last_actiondata(list->menu_stack);
|
2014-10-17 20:53:30 +00:00
|
|
|
}
|
|
|
|
|
2015-05-17 17:49:14 +00:00
|
|
|
static int menu_list_flush_stack_type(
|
2015-06-14 13:46:32 +00:00
|
|
|
uint32_t needle_hash, uint32_t label_hash,
|
2015-05-17 17:49:14 +00:00
|
|
|
unsigned type, unsigned final_type)
|
2014-10-17 19:02:44 +00:00
|
|
|
{
|
2015-06-14 13:46:32 +00:00
|
|
|
if (needle_hash != 0)
|
|
|
|
return ((needle_hash == label_hash) ? 0 : 1);
|
2015-05-17 17:49:14 +00:00
|
|
|
return type != final_type;
|
2014-10-17 19:02:44 +00:00
|
|
|
}
|
|
|
|
|
2015-05-17 17:49:14 +00:00
|
|
|
void menu_list_flush_stack(menu_list_t *list,
|
|
|
|
const char *needle, unsigned final_type)
|
2014-10-17 19:02:44 +00:00
|
|
|
{
|
2015-06-13 14:22:05 +00:00
|
|
|
const char *path = NULL;
|
|
|
|
const char *label = NULL;
|
|
|
|
unsigned type = 0;
|
|
|
|
size_t entry_idx = 0;
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-06-14 13:46:32 +00:00
|
|
|
uint32_t needle_hash = needle ? djb2_calculate(needle) : 0;
|
|
|
|
uint32_t label_hash = label ? djb2_calculate(label) : 0;
|
2015-02-13 19:04:50 +00:00
|
|
|
if (!menu || !list)
|
2014-10-17 19:02:44 +00:00
|
|
|
return;
|
|
|
|
|
2015-05-15 19:39:13 +00:00
|
|
|
menu_set_refresh();
|
2015-06-11 00:30:04 +00:00
|
|
|
menu_list_get_last(list->menu_stack, &path, &label, &type, &entry_idx);
|
2015-01-12 02:31:02 +00:00
|
|
|
|
2015-06-14 13:46:32 +00:00
|
|
|
while (menu_list_flush_stack_type(needle_hash, label_hash, type, final_type) != 0)
|
2014-10-17 19:02:44 +00:00
|
|
|
{
|
2015-06-13 14:22:05 +00:00
|
|
|
menu_list_pop(list->menu_stack, &nav->selection_ptr);
|
2015-06-11 00:30:04 +00:00
|
|
|
menu_list_get_last(list->menu_stack, &path, &label, &type, &entry_idx);
|
2014-10-17 19:02:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-17 23:44:06 +00:00
|
|
|
void menu_list_pop_stack(menu_list_t *list)
|
2014-10-17 18:47:32 +00:00
|
|
|
{
|
2015-06-13 14:22:05 +00:00
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-02-13 19:04:50 +00:00
|
|
|
if (!menu || !list)
|
2014-10-17 18:47:32 +00:00
|
|
|
return;
|
|
|
|
|
2015-06-11 00:30:04 +00:00
|
|
|
if (menu_list_get_stack_size(list) <= 1)
|
2015-01-25 00:48:58 +00:00
|
|
|
return;
|
2014-11-27 15:28:45 +00:00
|
|
|
|
2015-06-07 09:20:36 +00:00
|
|
|
menu_driver_list_cache(MENU_LIST_PLAIN, 0);
|
2015-01-25 00:48:58 +00:00
|
|
|
|
2015-06-13 14:22:05 +00:00
|
|
|
menu_list_pop(list->menu_stack, &nav->selection_ptr);
|
2015-05-15 19:39:13 +00:00
|
|
|
menu_set_refresh();
|
2014-10-17 18:47:32 +00:00
|
|
|
}
|
|
|
|
|
2014-10-17 23:44:06 +00:00
|
|
|
void menu_list_pop_stack_by_needle(menu_list_t *list,
|
2014-10-17 18:55:41 +00:00
|
|
|
const char *needle)
|
|
|
|
{
|
2015-06-14 13:46:32 +00:00
|
|
|
uint32_t label_hash;
|
2015-06-13 14:22:05 +00:00
|
|
|
const char *path = NULL;
|
|
|
|
const char *label = NULL;
|
|
|
|
unsigned type = 0;
|
|
|
|
size_t entry_idx = 0;
|
|
|
|
menu_handle_t *menu = menu_driver_get_ptr();
|
|
|
|
menu_navigation_t *nav = menu_navigation_get_ptr();
|
2015-06-14 13:46:32 +00:00
|
|
|
uint32_t needle_hash = djb2_calculate(needle);
|
2014-10-17 18:55:41 +00:00
|
|
|
|
2015-02-13 19:04:50 +00:00
|
|
|
if (!menu || !list)
|
2014-10-17 18:55:41 +00:00
|
|
|
return;
|
|
|
|
|
2015-05-15 19:39:13 +00:00
|
|
|
menu_set_refresh();
|
2015-06-11 00:30:04 +00:00
|
|
|
menu_list_get_last(list->menu_stack, &path, &label, &type, &entry_idx);
|
2015-01-25 00:48:58 +00:00
|
|
|
|
2015-06-14 13:46:32 +00:00
|
|
|
label_hash = djb2_calculate(label);
|
|
|
|
|
|
|
|
(void)label_hash;
|
|
|
|
|
|
|
|
while (!strcmp(needle, label))
|
2014-10-17 18:55:41 +00:00
|
|
|
{
|
2015-06-13 14:22:05 +00:00
|
|
|
menu_list_pop(list->menu_stack, &nav->selection_ptr);
|
2015-06-11 00:30:04 +00:00
|
|
|
menu_list_get_last(list->menu_stack, &path, &label, &type, &entry_idx);
|
2014-10-17 18:55:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-17 18:36:02 +00:00
|
|
|
void menu_list_pop(file_list_t *list, size_t *directory_ptr)
|
|
|
|
{
|
|
|
|
if (list->size != 0)
|
2015-06-12 12:15:48 +00:00
|
|
|
menu_driver_list_free(list, list->size - 1, list->size - 1);
|
2014-10-17 18:36:02 +00:00
|
|
|
|
|
|
|
file_list_pop(list, directory_ptr);
|
|
|
|
|
2015-04-11 03:28:40 +00:00
|
|
|
menu_driver_list_set_selection(list);
|
2014-10-17 18:36:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void menu_list_clear(file_list_t *list)
|
|
|
|
{
|
2015-04-11 03:28:40 +00:00
|
|
|
menu_driver_list_clear(list);
|
2014-10-17 18:36:02 +00:00
|
|
|
|
2015-05-19 21:06:30 +00:00
|
|
|
if (list)
|
|
|
|
file_list_clear(list);
|
2014-10-17 18:36:02 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 20:52:31 +00:00
|
|
|
void menu_list_push(file_list_t *list,
|
|
|
|
const char *path, const char *label,
|
2015-06-10 20:43:06 +00:00
|
|
|
unsigned type, size_t directory_ptr,
|
|
|
|
size_t entry_idx)
|
2015-02-10 20:52:31 +00:00
|
|
|
{
|
|
|
|
if (!list || !label)
|
|
|
|
return;
|
|
|
|
|
2015-06-10 20:43:06 +00:00
|
|
|
file_list_push(list, path, label, type, directory_ptr, entry_idx);
|
2015-05-19 21:28:32 +00:00
|
|
|
menu_driver_list_insert(list, path, label, type, list->size - 1);
|
2015-02-10 20:52:31 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 17:18:18 +00:00
|
|
|
void menu_list_set_alt_at_offset(file_list_t *list, size_t idx,
|
2014-10-17 21:43:53 +00:00
|
|
|
const char *alt)
|
|
|
|
{
|
2014-10-20 17:18:18 +00:00
|
|
|
file_list_set_alt_at_offset(list, idx, alt);
|
2014-10-17 21:43:53 +00:00
|
|
|
}
|
|
|
|
|
2014-10-20 17:18:18 +00:00
|
|
|
void menu_list_get_alt_at_offset(const file_list_t *list, size_t idx,
|
2014-10-17 21:43:53 +00:00
|
|
|
const char **alt)
|
|
|
|
{
|
2014-10-20 17:18:18 +00:00
|
|
|
file_list_get_alt_at_offset(list, idx, alt);
|
2014-10-17 21:43:53 +00:00
|
|
|
}
|