/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2014 - Daniel De Matteis
*
* 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 .
*/
#include "menu_entries.h"
#include "menu_action.h"
#include "../../settings_data.h"
#include "../../file_ext.h"
#include "../../performance.h"
static void entries_refresh(file_list_t *list)
{
/* 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. */
if (driver.menu->selection_ptr >= file_list_get_size(list)
&& file_list_get_size(list))
menu_set_navigation(driver.menu, file_list_get_size(list) - 1);
else if (!file_list_get_size(list))
menu_clear_navigation(driver.menu);
}
static inline struct gfx_shader *shader_manager_get_current_shader(
menu_handle_t *menu, const char *label, unsigned type)
{
if (!strcmp(label, "video_shader_preset_parameters") ||
!strcmp(label, "video_shader_parameters"))
return menu->shader;
else if (driver.video_poke && driver.video_data &&
driver.video_poke->get_current_shader)
return driver.video_poke->get_current_shader(driver.video_data);
return NULL;
}
static inline bool menu_list_elem_is_dir(file_list_t *buf,
unsigned offset)
{
const char *path = NULL;
const char *label = NULL;
unsigned type = 0;
file_list_get_at_offset(buf, offset, &path, &label, &type);
return type != MENU_FILE_PLAIN;
}
static inline int menu_list_get_first_char(file_list_t *buf,
unsigned offset)
{
int ret;
const char *path = NULL;
file_list_get_alt_at_offset(buf, 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;
}
static void menu_build_scroll_indices(file_list_t *buf)
{
size_t i;
int current;
bool current_is_dir;
if (!driver.menu || !buf)
return;
driver.menu->scroll_indices_size = 0;
if (!buf->size)
return;
driver.menu->scroll_indices[driver.menu->scroll_indices_size++] = 0;
current = menu_list_get_first_char(buf, 0);
current_is_dir = menu_list_elem_is_dir(buf, 0);
for (i = 1; i < buf->size; i++)
{
int first = menu_list_get_first_char(buf, i);
bool is_dir = menu_list_elem_is_dir(buf, i);
if ((current_is_dir && !is_dir) || (first > current))
driver.menu->scroll_indices[driver.menu->scroll_indices_size++] = i;
current = first;
current_is_dir = is_dir;
}
driver.menu->scroll_indices[driver.menu->scroll_indices_size++] =
buf->size - 1;
}
static void add_setting_entry(menu_handle_t *menu,
file_list_t *list,
const char *label, unsigned id,
rarch_setting_t *settings)
{
rarch_setting_t *setting = (rarch_setting_t*)
setting_data_find_setting(settings, label);
if (setting)
file_list_push(list, setting->short_description,
setting->name, id, 0);
}
static void push_perfcounter(menu_handle_t *menu,
file_list_t *list,
const struct retro_perf_counter **counters,
unsigned num, unsigned id)
{
unsigned i;
if (!counters || num == 0)
return;
for (i = 0; i < num; i++)
if (counters[i] && counters[i]->ident)
file_list_push(list, counters[i]->ident, "",
id + i, 0);
}
void menu_entries_pop_list(file_list_t *list)
{
if (file_list_get_size(list) > 1)
{
file_list_pop(list, &driver.menu->selection_ptr);
driver.menu->need_refresh = true;
}
}
static int setting_set_flags(rarch_setting_t *setting)
{
if (setting->flags & SD_FLAG_ALLOW_INPUT)
return MENU_FILE_LINEFEED;
if (setting->flags & SD_FLAG_PUSH_ACTION)
return MENU_FILE_SWITCH;
if (setting->flags & SD_FLAG_IS_DRIVER)
return MENU_FILE_DRIVER;
if (setting->type == ST_PATH)
return MENU_FILE_PATH;
if (setting->flags & SD_FLAG_IS_CATEGORY)
return MENU_FILE_CATEGORY;
return 0;
}
void menu_entries_push(
file_list_t *list,
const char *path, const char *label,
unsigned type,
size_t directory_ptr)
{
file_list_push(list, path, label, type, directory_ptr);
menu_clear_navigation(driver.menu);
driver.menu->need_refresh = true;
}
static int menu_parse_list(file_list_t *list, file_list_t *menu_list,
const char *dir, const char *label, unsigned type,
unsigned default_type_plain, const char *exts)
{
size_t i, list_size;
struct string_list *str_list = NULL;
file_list_clear(list);
if (!*dir)
{
#if defined(GEKKO)
#ifdef HW_RVL
file_list_push(list,
"sd:/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"usb:/", "", MENU_FILE_DIRECTORY, 0);
#endif
file_list_push(list,
"carda:/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"cardb:/", "", MENU_FILE_DIRECTORY, 0);
#elif defined(_XBOX1)
file_list_push(list,
"C:", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"D:", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"E:", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"F:", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"G:", "", MENU_FILE_DIRECTORY, 0);
#elif defined(_XBOX360)
file_list_push(list,
"game:", "", MENU_FILE_DIRECTORY, 0);
#elif defined(_WIN32)
unsigned drives = GetLogicalDrives();
char drive[] = " :\\";
for (i = 0; i < 32; i++)
{
drive[0] = 'A' + i;
if (drives & (1 << i))
file_list_push(list,
drive, "", MENU_FILE_DIRECTORY, 0);
}
#elif defined(__CELLOS_LV2__)
file_list_push(list,
"/app_home/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_hdd0/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_hdd1/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/host_root/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb000/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb001/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb002/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb003/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb004/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb005/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"/dev_usb006/", "", MENU_FILE_DIRECTORY, 0);
#elif defined(PSP)
file_list_push(list,
"ms0:/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"ef0:/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
"host0:/", "", MENU_FILE_DIRECTORY, 0);
#elif defined(IOS)
file_list_push(list,
"/var/mobile/", "", MENU_FILE_DIRECTORY, 0);
file_list_push(list,
g_defaults.core_dir, "", MENU_FILE_DIRECTORY, 0);
file_list_push(list, "/", "",
MENU_FILE_DIRECTORY, 0);
#else
file_list_push(list, "/", "",
MENU_FILE_DIRECTORY, 0);
#endif
return 0;
}
#if defined(GEKKO) && defined(HW_RVL)
LWP_MutexLock(gx_device_mutex);
int dev = gx_get_device_from_path(dir);
if (dev != -1 && !gx_devices[dev].mounted &&
gx_devices[dev].interface->isInserted())
fatMountSimple(gx_devices[dev].name, gx_devices[dev].interface);
LWP_MutexUnlock(gx_device_mutex);
#endif
bool path_is_compressed = path_is_compressed_file(dir);
if (path_is_compressed)
str_list = compressed_file_list_new(dir,exts);
else
str_list = dir_list_new(dir, exts, true);
if (!str_list)
return -1;
dir_list_sort(str_list, true);
if (menu_common_type_is(label, type) == MENU_FILE_DIRECTORY)
file_list_push(list, "