/* RetroArch - A frontend for libretro. * Copyright (C) 2011-2015 - 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 #include "string_list_special.h" #ifdef HAVE_MENU #include "menu/menu_driver.h" #endif #ifdef HAVE_CAMERA #include "camera/camera_driver.h" #endif #ifdef HAVE_LOCATION #include "location/location_driver.h" #endif #include "general.h" #include "gfx/video_driver.h" #include "input/input_driver.h" #include "input/input_hid_driver.h" #include "input/input_joypad_driver.h" #include "audio/audio_driver.h" #include "audio/audio_resampler_driver.h" #include "record/record_driver.h" struct string_list *string_list_new_special(enum string_list_type type, void *data, unsigned *len, size_t *list_size) { union string_list_elem_attr attr; unsigned i; const core_info_t *core_info = NULL; global_t *global = global_get_ptr(); struct string_list *s = string_list_new(); attr.i = 0; (void)data; if (!len) return NULL; *len = 0; if (!s) return NULL; switch (type) { case STRING_LIST_MENU_DRIVERS: #ifdef HAVE_MENU for (i = 0; menu_driver_find_handle(i); i++) { const char *opt = menu_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; #endif case STRING_LIST_CAMERA_DRIVERS: #ifdef HAVE_CAMERA for (i = 0; camera_driver_find_handle(i); i++) { const char *opt = camera_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; #endif case STRING_LIST_LOCATION_DRIVERS: #ifdef HAVE_LOCATION for (i = 0; location_driver_find_handle(i); i++) { const char *opt = location_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(options_l, opt, attr); } break; #endif case STRING_LIST_AUDIO_DRIVERS: for (i = 0; audio_driver_find_handle(i); i++) { const char *opt = audio_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_AUDIO_RESAMPLER_DRIVERS: for (i = 0; audio_resampler_driver_find_handle(i); i++) { const char *opt = audio_resampler_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_VIDEO_DRIVERS: for (i = 0; video_driver_find_handle(i); i++) { const char *opt = video_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_INPUT_DRIVERS: for (i = 0; input_driver_find_handle(i); i++) { const char *opt = input_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_INPUT_HID_DRIVERS: for (i = 0; hid_driver_find_handle(i); i++) { const char *opt = hid_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_INPUT_JOYPAD_DRIVERS: for (i = 0; joypad_driver_find_handle(i); i++) { const char *opt = joypad_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_RECORD_DRIVERS: for (i = 0; record_driver_find_handle(i); i++) { const char *opt = record_driver_find_ident(i); *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_SUPPORTED_CORES_PATHS: core_info_list_get_supported_cores(global->core_info.list, (const char*)data, &core_info, list_size); if (*list_size == 0) goto error; for (i = 0; i < *list_size; i++) { const char *opt = NULL; const core_info_t *info = (const core_info_t*)&core_info[i]; opt = info ? info->path : NULL; if (!opt) goto error; *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_CORES_PATHS: for (i = 0; i < core_info_list_num_info_files(global->core_info.list); i++) { const char *opt = NULL; core_info = (const core_info_t*)&global->core_info.list->list[i]; opt = core_info ? core_info->path : NULL; if (!opt) goto error; *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_SUPPORTED_CORES_NAMES: core_info_list_get_supported_cores(global->core_info.list, (const char*)data, &core_info, list_size); if (*list_size == 0) goto error; for (i = 0; i < *list_size; i++) { const char *opt = NULL; const core_info_t *info = (const core_info_t*)&core_info[i]; opt = info ? info->display_name : NULL; if (!opt) goto error; *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_CORES_NAMES: for (i = 0; i < core_info_list_num_info_files(global->core_info.list); i++) { const char *opt = NULL; core_info = (const core_info_t*)&global->core_info.list->list[i]; opt = core_info ? core_info->display_name : NULL; if (!opt) goto error; *len += strlen(opt) + 1; string_list_append(s, opt, attr); } break; case STRING_LIST_NONE: default: goto error; } return s; error: string_list_free(s); s = NULL; *len = 0; return NULL; } const char *char_list_new_special(enum string_list_type type, void *data) { unsigned len; size_t list_size; struct string_list *s = string_list_new_special(type, data, &len, &list_size); char *options = (len > 0) ? (char*)calloc(len, sizeof(char)): NULL; if (options && s) string_list_join_concat(options, len, s, "|"); string_list_free(s); s = NULL; return options; }