RetroArch/menu/menu_list.c
2015-08-18 03:03:34 +02:00

279 lines
7.0 KiB
C

/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - Daniel De Matteis
* Copyright (C) 2014-2015 - Jean-André Santoni
*
* 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/>.
*/
#include <string.h>
#include <retro_inline.h>
#include "../driver.h"
#include "menu.h"
#include "menu_cbs.h"
#include "menu_hash.h"
#include "menu_list.h"
#include "menu_navigation.h"
static void menu_driver_list_insert(file_list_t *list, const char *path,
const char *label, unsigned type, size_t idx)
{
menu_file_list_cbs_t *cbs = NULL;
const menu_ctx_driver_t *driver = menu_ctx_driver_get_ptr();
if (!list)
return;
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);
menu_cbs_init(list, path, label, type, idx);
}
menu_list_t *menu_list_get_ptr(void)
{
menu_entries_t *entries = menu_entries_get_ptr();
if (!entries)
return NULL;
return entries->menu_list;
}
size_t menu_list_get_size(menu_list_t *list)
{
if (!list)
return 0;
return file_list_get_size(list->selection_buf);
}
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);
}
void menu_list_free(menu_list_t *menu_list)
{
if (!menu_list)
return;
menu_list_free_list(menu_list->menu_stack);
menu_list_free_list(menu_list->selection_buf);
menu_list->menu_stack = NULL;
menu_list->selection_buf = NULL;
free(menu_list);
}
menu_list_t *menu_list_new(void)
{
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)
goto error;
return list;
error:
menu_list_free(list);
return NULL;
}
size_t menu_list_get_stack_size(menu_list_t *list)
{
if (!list)
return 0;
return file_list_get_size(list->menu_stack);
}
void menu_list_get_at_offset(const file_list_t *list, size_t idx,
const char **path, const char **label, unsigned *file_type,
size_t *entry_idx)
{
file_list_get_at_offset(list, idx, path, label, file_type, entry_idx);
}
void menu_list_get_last(const file_list_t *list,
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);
}
void menu_list_get_last_stack(const menu_list_t *list,
const char **path, const char **label,
unsigned *file_type, size_t *entry_idx)
{
menu_list_get_last(list->menu_stack, path, label, file_type, entry_idx);
}
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);
}
menu_file_list_cbs_t *menu_list_get_actiondata_at_offset(
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);
}
void *menu_list_get_last_stack_actiondata(const menu_list_t *list)
{
if (!list)
return NULL;
return file_list_get_last_actiondata(list->menu_stack);
}
static int menu_list_flush_stack_type(
const char *needle, const char *label,
unsigned type, unsigned final_type)
{
if (needle)
return strcmp(needle, label);
return type != final_type;
}
void menu_list_flush_stack(menu_list_t *list,
const char *needle, unsigned final_type)
{
const char *path = NULL;
const char *label = NULL;
unsigned type = 0;
size_t entry_idx = 0;
menu_navigation_t *nav = menu_navigation_get_ptr();
if (!list)
return;
menu_entries_set_refresh();
menu_list_get_last(list->menu_stack,
&path, &label, &type, &entry_idx);
while (menu_list_flush_stack_type(
needle, label, type, final_type) != 0)
{
menu_list_pop(list->menu_stack, &nav->selection_ptr);
menu_list_get_last(list->menu_stack,
&path, &label, &type, &entry_idx);
}
}
void menu_list_pop_stack(menu_list_t *list)
{
menu_navigation_t *nav = menu_navigation_get_ptr();
if (!list)
return;
if (menu_list_get_stack_size(list) <= 1)
return;
menu_driver_list_cache(MENU_LIST_PLAIN, 0);
menu_list_pop(list->menu_stack, &nav->selection_ptr);
menu_entries_set_refresh();
}
void menu_list_pop_stack_by_needle(menu_list_t *list,
const char *needle)
{
uint32_t needle_hash, label_hash;
const char *path = NULL;
const char *label = NULL;
unsigned type = 0;
size_t entry_idx = 0;
menu_navigation_t *nav = menu_navigation_get_ptr();
if (!list)
return;
menu_entries_set_refresh();
menu_list_get_last(list->menu_stack, &path, &label, &type, &entry_idx);
needle_hash = menu_hash_calculate(needle);
label_hash = menu_hash_calculate(label);
while (needle_hash == label_hash)
{
menu_list_pop(list->menu_stack, &nav->selection_ptr);
menu_list_get_last(list->menu_stack, &path, &label, &type, &entry_idx);
label_hash = menu_hash_calculate(label);
needle_hash = menu_hash_calculate(needle);
}
}
void menu_list_pop(file_list_t *list, size_t *directory_ptr)
{
if (list->size != 0)
menu_driver_list_free(list, list->size - 1, list->size - 1);
file_list_pop(list, directory_ptr);
menu_driver_list_set_selection(list);
}
void menu_list_clear(file_list_t *list)
{
menu_driver_list_clear(list);
if (list)
file_list_clear(list);
}
void menu_list_push(file_list_t *list,
const char *path, const char *label,
unsigned type, size_t directory_ptr,
size_t entry_idx)
{
if (!list || !label)
return;
file_list_push(list, path, label, type, directory_ptr, entry_idx);
menu_driver_list_insert(list, path, label, type, list->size - 1);
}
void menu_list_set_alt_at_offset(file_list_t *list, size_t idx,
const char *alt)
{
file_list_set_alt_at_offset(list, idx, alt);
}
void menu_list_get_alt_at_offset(const file_list_t *list, size_t idx,
const char **alt)
{
file_list_get_alt_at_offset(list, idx, alt);
}