|
1 | 1 | /* RetroArch - A frontend for libretro.
|
| 2 | + * Copyright (C) 2010-2014 - Hans-Kristian Arntzen |
2 | 3 | * Copyright (C) 2011-2016 - Daniel De Matteis
|
3 | 4 | *
|
4 | 5 | * RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
15 | 16 |
|
16 | 17 | #include <string.h>
|
17 | 18 |
|
18 |
| -#include "string_list_special.h" |
| 19 | +#include <lists/dir_list.h> |
| 20 | + |
| 21 | +#include "list_special.h" |
| 22 | +#include "frontend/frontend_driver.h" |
| 23 | +#include "configuration.h" |
| 24 | +#include "core_info.h" |
19 | 25 |
|
20 | 26 | #ifdef HAVE_MENU
|
21 | 27 | #include "menu/menu_driver.h"
|
|
38 | 44 | #include "audio/audio_resampler_driver.h"
|
39 | 45 | #include "record/record_driver.h"
|
40 | 46 |
|
| 47 | +struct string_list *dir_list_new_special(const char *input_dir, |
| 48 | + enum dir_list_type type, const char *filter) |
| 49 | +{ |
| 50 | + char ext_name[PATH_MAX_LENGTH]; |
| 51 | + const char *dir = NULL; |
| 52 | + const char *exts = NULL; |
| 53 | + bool include_dirs = false; |
| 54 | + |
| 55 | + settings_t *settings = config_get_ptr(); |
| 56 | + |
| 57 | + (void)input_dir; |
| 58 | + (void)settings; |
| 59 | + |
| 60 | + switch (type) |
| 61 | + { |
| 62 | + case DIR_LIST_CORES: |
| 63 | + dir = settings->libretro_directory; |
| 64 | + |
| 65 | + if (!frontend_driver_get_core_extension(ext_name, sizeof(ext_name))) |
| 66 | + return NULL; |
| 67 | + |
| 68 | + exts = ext_name; |
| 69 | + break; |
| 70 | + case DIR_LIST_CORE_INFO: |
| 71 | + { |
| 72 | + core_info_list_t *list = NULL; |
| 73 | + core_info_ctl(CORE_INFO_CTL_LIST_GET, &list); |
| 74 | + |
| 75 | + dir = input_dir; |
| 76 | + exts = list->all_ext; |
| 77 | + } |
| 78 | + break; |
| 79 | + case DIR_LIST_SHADERS: |
| 80 | + dir = settings->video.shader_dir; |
| 81 | + exts = "cg|cgp|glsl|glslp|slang|slangp"; |
| 82 | + break; |
| 83 | + case DIR_LIST_COLLECTIONS: |
| 84 | + dir = settings->playlist_directory; |
| 85 | + exts = "lpl"; |
| 86 | + break; |
| 87 | + case DIR_LIST_DATABASES: |
| 88 | + dir = settings->content_database; |
| 89 | + exts = "rdb"; |
| 90 | + break; |
| 91 | + case DIR_LIST_PLAIN: |
| 92 | + dir = input_dir; |
| 93 | + exts = filter; |
| 94 | + break; |
| 95 | + case DIR_LIST_NONE: |
| 96 | + default: |
| 97 | + return NULL; |
| 98 | + } |
| 99 | + |
| 100 | + return dir_list_new(dir, exts, include_dirs, type == DIR_LIST_CORE_INFO); |
| 101 | +} |
| 102 | + |
41 | 103 | struct string_list *string_list_new_special(enum string_list_type type,
|
42 | 104 | void *data, unsigned *len, size_t *list_size)
|
43 | 105 | {
|
|
0 commit comments