2016-01-10 04:06:50 +01:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-03-22 03:09:18 +01:00
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2019-06-23 18:23:39 -04:00
|
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
2017-11-23 06:58:19 -05:00
|
|
|
*
|
2016-01-10 04:06:50 +01: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.
|
2015-03-13 05:03:50 +01:00
|
|
|
*
|
2016-01-10 04:06:50 +01:00
|
|
|
* 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.
|
2015-03-13 05:03:50 +01:00
|
|
|
*
|
2016-01-10 04:06:50 +01:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2015-03-13 05:03:50 +01:00
|
|
|
*/
|
|
|
|
|
2017-12-27 02:55:53 +00:00
|
|
|
/* Assume W-functions do not work below Win2K and Xbox platforms */
|
|
|
|
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0500 || defined(_XBOX)
|
|
|
|
|
|
|
|
#ifndef LEGACY_WIN32
|
|
|
|
#define LEGACY_WIN32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2015-03-13 05:03:50 +01:00
|
|
|
|
2015-09-04 20:51:50 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <direct.h>
|
|
|
|
#else
|
2015-09-22 21:49:03 +02:00
|
|
|
#include <unistd.h>
|
2015-03-13 05:03:50 +01:00
|
|
|
#endif
|
|
|
|
|
2016-12-26 15:50:08 +00:00
|
|
|
#ifdef __QNX__
|
|
|
|
#include <libgen.h>
|
|
|
|
#endif
|
|
|
|
|
2017-11-25 20:25:37 +01:00
|
|
|
#ifdef __HAIKU__
|
|
|
|
#include <kernel/image.h>
|
|
|
|
#endif
|
|
|
|
|
2021-07-15 16:53:47 +01:00
|
|
|
#if defined(DINGUX)
|
|
|
|
#include "dingux/dingux_utils.h"
|
|
|
|
#endif
|
|
|
|
|
2016-09-08 05:48:43 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <boolean.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2015-09-01 11:59:27 +02:00
|
|
|
#include <file/file_path.h>
|
2016-06-11 20:21:22 +02:00
|
|
|
#include <string/stdstring.h>
|
2015-11-23 12:03:38 +01:00
|
|
|
|
2015-09-01 11:59:27 +02:00
|
|
|
#include <compat/strl.h>
|
|
|
|
#include <compat/posix_string.h>
|
|
|
|
#include <retro_assert.h>
|
|
|
|
#include <retro_miscellaneous.h>
|
2017-12-27 02:55:53 +00:00
|
|
|
#include <encodings/utf.h>
|
2015-09-01 11:59:27 +02:00
|
|
|
|
2019-01-27 11:22:16 -05:00
|
|
|
#ifdef HAVE_MENU
|
2019-01-28 13:06:41 +01:00
|
|
|
#include "menu/menu_driver.h"
|
2019-01-27 11:22:16 -05:00
|
|
|
#endif
|
|
|
|
|
2016-09-08 05:48:43 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2016-06-11 19:21:58 +02:00
|
|
|
#include "configuration.h"
|
|
|
|
#include "file_path_special.h"
|
|
|
|
|
2020-05-24 17:19:22 +03:00
|
|
|
#include "msg_hash.h"
|
2016-09-17 13:14:14 +02:00
|
|
|
#include "paths.h"
|
2015-11-23 12:03:38 +01:00
|
|
|
#include "verbosity.h"
|
|
|
|
|
2016-05-01 15:07:45 +02:00
|
|
|
bool fill_pathname_application_data(char *s, size_t len)
|
|
|
|
{
|
2018-05-12 19:17:23 +02:00
|
|
|
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
|
2017-12-27 02:55:53 +00:00
|
|
|
#ifdef LEGACY_WIN32
|
2016-05-01 15:07:45 +02:00
|
|
|
const char *appdata = getenv("APPDATA");
|
|
|
|
|
|
|
|
if (appdata)
|
|
|
|
{
|
|
|
|
strlcpy(s, appdata, len);
|
|
|
|
return true;
|
|
|
|
}
|
2017-12-27 02:55:53 +00:00
|
|
|
#else
|
|
|
|
const wchar_t *appdataW = _wgetenv(L"APPDATA");
|
|
|
|
|
|
|
|
if (appdataW)
|
|
|
|
{
|
|
|
|
char *appdata = utf16_to_utf8_string_alloc(appdataW);
|
|
|
|
|
|
|
|
if (appdata)
|
|
|
|
{
|
|
|
|
strlcpy(s, appdata, len);
|
|
|
|
free(appdata);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2016-05-01 15:07:45 +02:00
|
|
|
|
|
|
|
#elif defined(OSX)
|
|
|
|
const char *appdata = getenv("HOME");
|
|
|
|
|
|
|
|
if (appdata)
|
|
|
|
{
|
|
|
|
fill_pathname_join(s, appdata,
|
2016-05-02 13:23:47 +02:00
|
|
|
"Library/Application Support/RetroArch", len);
|
2016-05-01 15:07:45 +02:00
|
|
|
return true;
|
|
|
|
}
|
2020-10-01 15:54:11 +01:00
|
|
|
#elif defined(DINGUX)
|
2021-07-15 16:53:47 +01:00
|
|
|
dingux_get_base_path(s, len);
|
|
|
|
return true;
|
2016-05-01 15:59:55 +02:00
|
|
|
#elif !defined(RARCH_CONSOLE)
|
2016-05-01 15:07:45 +02:00
|
|
|
const char *xdg = getenv("XDG_CONFIG_HOME");
|
|
|
|
const char *appdata = getenv("HOME");
|
|
|
|
|
2018-01-20 00:19:01 -08:00
|
|
|
/* XDG_CONFIG_HOME falls back to $HOME/.config with most Unix systems */
|
|
|
|
/* On Haiku, it is set by default to /home/user/config/settings */
|
2016-05-01 15:07:45 +02:00
|
|
|
if (xdg)
|
|
|
|
{
|
2018-01-20 00:19:01 -08:00
|
|
|
fill_pathname_join(s, xdg, "retroarch/", len);
|
2016-05-01 15:07:45 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (appdata)
|
|
|
|
{
|
|
|
|
#ifdef __HAIKU__
|
2018-01-20 00:19:01 -08:00
|
|
|
/* in theory never used as Haiku has XDG_CONFIG_HOME set by default */
|
2016-05-01 15:07:45 +02:00
|
|
|
fill_pathname_join(s, appdata,
|
2016-05-02 02:48:37 +02:00
|
|
|
"config/settings/retroarch/", len);
|
2016-05-01 15:07:45 +02:00
|
|
|
#else
|
|
|
|
fill_pathname_join(s, appdata,
|
2016-05-02 02:48:37 +02:00
|
|
|
".config/retroarch/", len);
|
2016-05-01 15:07:45 +02:00
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 19:21:58 +02:00
|
|
|
#ifdef HAVE_XMB
|
2017-01-14 04:06:56 -05:00
|
|
|
const char* xmb_theme_ident(void);
|
2016-06-11 19:21:58 +02:00
|
|
|
#endif
|
|
|
|
|
2018-04-08 09:55:16 +07:00
|
|
|
#ifdef HAVE_STRIPES
|
|
|
|
const char* stripes_theme_ident(void);
|
|
|
|
#endif
|
|
|
|
|
2017-09-10 21:27:50 +02:00
|
|
|
void fill_pathname_application_special(char *s,
|
|
|
|
size_t len, enum application_special_type type)
|
2016-06-11 19:21:58 +02:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2016-06-11 21:51:28 +02:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_AUTOCONFIG:
|
|
|
|
{
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_autoconfig = settings->paths.directory_autoconfig;
|
|
|
|
const char *joypad_driver = settings->arrays.input_joypad_driver;
|
|
|
|
fill_pathname_join(s, dir_autoconfig, joypad_driver, len);
|
2016-06-11 21:51:28 +02:00
|
|
|
}
|
|
|
|
break;
|
2016-06-11 21:55:55 +02:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_CONFIG:
|
|
|
|
{
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_menu_config = settings->paths.directory_menu_config;
|
2016-09-17 13:14:14 +02:00
|
|
|
|
2016-06-11 21:55:55 +02:00
|
|
|
/* Try config directory setting first,
|
|
|
|
* fallback to the location of the current configuration file. */
|
2020-03-05 01:03:55 +01:00
|
|
|
if (!string_is_empty(dir_menu_config))
|
|
|
|
strlcpy(s, dir_menu_config, len);
|
2016-09-30 04:43:16 +02:00
|
|
|
else if (!path_is_empty(RARCH_PATH_CONFIG))
|
2016-09-29 08:31:41 +02:00
|
|
|
fill_pathname_basedir(s, path_get(RARCH_PATH_CONFIG), len);
|
2016-06-11 21:55:55 +02:00
|
|
|
}
|
|
|
|
break;
|
2020-05-24 17:19:22 +03:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG:
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_join(s, dir_assets, "pkg", len);
|
2020-05-24 17:19:22 +03:00
|
|
|
}
|
|
|
|
break;
|
2016-06-11 19:55:27 +02:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS:
|
2016-06-11 19:37:16 +02:00
|
|
|
#ifdef HAVE_XMB
|
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
|
|
|
char s2[PATH_MAX_LENGTH];
|
2016-10-21 05:57:40 +02:00
|
|
|
|
2019-09-16 17:44:14 +02:00
|
|
|
s1[0] = '\0';
|
2019-09-16 20:40:08 +02:00
|
|
|
s2[0] = '\0';
|
2016-10-21 05:57:40 +02:00
|
|
|
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2016-06-11 19:55:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB);
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_join(s2, s1, "png", sizeof(s2));
|
|
|
|
fill_pathname_slash(s2, sizeof(s2));
|
2019-09-16 20:40:08 +02:00
|
|
|
strlcpy(s, s2, len);
|
2016-06-11 19:37:16 +02:00
|
|
|
}
|
2016-06-11 20:11:36 +02:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_BG:
|
|
|
|
#ifdef HAVE_XMB
|
|
|
|
{
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *path_menu_wallpaper = settings->paths.path_menu_wallpaper;
|
2016-06-11 20:11:36 +02:00
|
|
|
|
2020-03-05 01:03:55 +01:00
|
|
|
if (!string_is_empty(path_menu_wallpaper))
|
|
|
|
strlcpy(s, path_menu_wallpaper, len);
|
2016-06-11 20:11:36 +02:00
|
|
|
else
|
2016-06-11 20:16:34 +02:00
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
2016-10-21 05:57:40 +02:00
|
|
|
|
|
|
|
s1[0] = '\0';
|
|
|
|
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2016-06-11 20:16:34 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS);
|
2020-08-22 14:14:28 +02:00
|
|
|
fill_pathname_join(s, s1, FILE_PATH_BACKGROUND_IMAGE, len);
|
2016-06-11 20:16:34 +02:00
|
|
|
}
|
2016-06-11 20:11:36 +02:00
|
|
|
}
|
2019-01-27 11:22:16 -05:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_SOUNDS:
|
|
|
|
{
|
|
|
|
#ifdef HAVE_MENU
|
2020-08-18 13:17:28 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
2019-01-27 11:22:16 -05:00
|
|
|
const char *menu_ident = settings->arrays.menu_driver;
|
2020-03-05 01:03:55 +01:00
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
2020-08-18 13:17:28 +02:00
|
|
|
|
|
|
|
s1[0] = '\0';
|
2019-01-27 11:22:16 -05:00
|
|
|
|
|
|
|
if (string_is_equal(menu_ident, "xmb"))
|
|
|
|
{
|
2020-08-18 13:17:28 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB);
|
2019-01-27 11:22:16 -05:00
|
|
|
|
|
|
|
if (!string_is_empty(s1))
|
2020-08-18 13:17:28 +02:00
|
|
|
strlcat(s1, "/sounds", sizeof(s1));
|
2019-01-27 11:22:16 -05:00
|
|
|
}
|
|
|
|
else if (string_is_equal(menu_ident, "glui"))
|
|
|
|
{
|
2020-08-18 13:17:28 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI);
|
2019-01-27 11:22:16 -05:00
|
|
|
|
|
|
|
if (!string_is_empty(s1))
|
2020-08-18 13:17:28 +02:00
|
|
|
strlcat(s1, "/sounds", sizeof(s1));
|
2019-01-27 11:22:16 -05:00
|
|
|
}
|
|
|
|
else if (string_is_equal(menu_ident, "ozone"))
|
|
|
|
{
|
2020-08-18 13:17:28 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE);
|
2019-01-27 11:22:16 -05:00
|
|
|
|
|
|
|
if (!string_is_empty(s1))
|
2020-08-18 13:17:28 +02:00
|
|
|
strlcat(s1, "/sounds", sizeof(s1));
|
2019-01-27 11:22:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (string_is_empty(s1))
|
|
|
|
fill_pathname_join(
|
2020-08-18 13:17:28 +02:00
|
|
|
s1, dir_assets, "sounds", sizeof(s1));
|
2019-01-27 11:22:16 -05:00
|
|
|
|
|
|
|
strlcpy(s, s1, len);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-08-04 02:37:34 +09:00
|
|
|
break;
|
2020-08-04 03:32:49 +09:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_SYSICONS:
|
2020-08-04 02:37:34 +09:00
|
|
|
{
|
|
|
|
#ifdef HAVE_MENU
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *menu_ident = settings->arrays.menu_driver;
|
|
|
|
|
|
|
|
if (string_is_equal(menu_ident, "xmb"))
|
|
|
|
fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS);
|
|
|
|
else if (string_is_equal(menu_ident, "glui"))
|
2020-08-04 03:32:49 +09:00
|
|
|
{
|
|
|
|
/* Type APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_ICONS
|
|
|
|
* contains no core system icons so we use the icon directory
|
|
|
|
* from ozone here */
|
|
|
|
fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE_ICONS);
|
|
|
|
}
|
2020-08-04 02:37:34 +09:00
|
|
|
else if (string_is_equal(menu_ident, "ozone"))
|
|
|
|
fill_pathname_application_special(s, len, APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE_ICONS);
|
|
|
|
else if (len)
|
|
|
|
s[0] = '\0';
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-01-27 11:22:16 -05:00
|
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE:
|
|
|
|
#ifdef HAVE_OZONE
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
2020-03-05 01:03:55 +01:00
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_join(s, dir_assets, "ozone",
|
|
|
|
len);
|
2019-01-27 11:22:16 -05:00
|
|
|
}
|
2016-06-11 19:37:16 +02:00
|
|
|
#endif
|
|
|
|
break;
|
2020-08-04 02:37:34 +09:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE_ICONS:
|
|
|
|
#ifdef HAVE_OZONE
|
|
|
|
{
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
|
|
|
|
|
|
strlcpy(s, dir_assets, len);
|
|
|
|
fill_pathname_slash(s, len);
|
|
|
|
|
|
|
|
/* xmb */
|
|
|
|
strlcat(s, "xmb", len);
|
|
|
|
fill_pathname_slash(s, len);
|
|
|
|
|
|
|
|
/* monochrome */
|
|
|
|
strlcat(s, "monochrome", len);
|
|
|
|
fill_pathname_slash(s, len);
|
|
|
|
|
|
|
|
/* Icons path */
|
|
|
|
strlcat(s, "png", len);
|
|
|
|
fill_pathname_slash(s, len);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
2020-12-09 16:48:09 +00:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_RGUI_FONT:
|
|
|
|
#ifdef HAVE_RGUI
|
|
|
|
{
|
|
|
|
char rgui_dir[PATH_MAX_LENGTH];
|
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
|
|
|
|
|
|
rgui_dir[0] = '\0';
|
|
|
|
|
|
|
|
fill_pathname_join(rgui_dir, dir_assets, "rgui",
|
|
|
|
sizeof(rgui_dir));
|
|
|
|
fill_pathname_join(s,
|
|
|
|
rgui_dir, "font", len);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
2016-06-11 19:55:27 +02:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB:
|
2016-06-11 19:21:58 +02:00
|
|
|
#ifdef HAVE_XMB
|
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
2016-06-11 19:21:58 +02:00
|
|
|
settings_t *settings = config_get_ptr();
|
2020-03-05 01:03:55 +01:00
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
2016-06-11 19:21:58 +02:00
|
|
|
|
2019-09-16 17:44:14 +02:00
|
|
|
s1[0] = '\0';
|
2016-10-21 05:57:40 +02:00
|
|
|
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_join(s1, dir_assets, "xmb", sizeof(s1));
|
2019-09-16 17:44:14 +02:00
|
|
|
fill_pathname_join(s,
|
|
|
|
s1, xmb_theme_ident(), len);
|
2016-06-11 19:21:58 +02:00
|
|
|
}
|
2016-06-11 19:41:26 +02:00
|
|
|
#endif
|
|
|
|
break;
|
2016-06-11 19:55:27 +02:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI:
|
2016-06-11 19:41:26 +02:00
|
|
|
#ifdef HAVE_MATERIALUI
|
|
|
|
{
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_assets = settings->paths.directory_assets;
|
2016-06-11 19:46:37 +02:00
|
|
|
|
2020-03-05 01:03:55 +01:00
|
|
|
fill_pathname_join(s, dir_assets, "glui", len);
|
2016-06-11 19:46:37 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
2016-06-11 19:55:27 +02:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_ICONS:
|
2016-06-11 19:46:37 +02:00
|
|
|
#ifdef HAVE_MATERIALUI
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s, len,
|
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI);
|
2016-06-11 19:57:45 +02:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_FONT:
|
|
|
|
#ifdef HAVE_MATERIALUI
|
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
2016-10-21 05:57:40 +02:00
|
|
|
s1[0] = '\0';
|
|
|
|
|
2020-05-24 17:41:27 +02:00
|
|
|
switch (*msg_hash_get_uint(MSG_HASH_USER_LANGUAGE))
|
|
|
|
{
|
2020-05-24 17:19:22 +03:00
|
|
|
case RETRO_LANGUAGE_ARABIC:
|
2020-06-04 23:36:04 +03:00
|
|
|
case RETRO_LANGUAGE_PERSIAN:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
2020-05-24 17:19:22 +03:00
|
|
|
fill_pathname_join(s, s1, "fallback-font.ttf", len);
|
|
|
|
break;
|
|
|
|
case RETRO_LANGUAGE_CHINESE_SIMPLIFIED:
|
|
|
|
case RETRO_LANGUAGE_CHINESE_TRADITIONAL:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
2020-05-24 17:19:22 +03:00
|
|
|
fill_pathname_join(s, s1, "chinese-fallback-font.ttf", len);
|
|
|
|
break;
|
|
|
|
case RETRO_LANGUAGE_KOREAN:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
2020-05-24 17:19:22 +03:00
|
|
|
fill_pathname_join(s, s1, "korean-fallback-font.ttf", len);
|
|
|
|
break;
|
|
|
|
default:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI);
|
2020-08-22 14:14:28 +02:00
|
|
|
fill_pathname_join(s, s1, FILE_PATH_TTF_FONT, len);
|
2020-05-24 17:19:22 +03:00
|
|
|
}
|
2016-06-11 19:57:45 +02:00
|
|
|
}
|
2016-06-11 20:01:33 +02:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_FONT:
|
|
|
|
#ifdef HAVE_XMB
|
|
|
|
{
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *path_menu_xmb_font = settings->paths.path_menu_xmb_font;
|
2016-06-11 20:01:33 +02:00
|
|
|
|
2020-03-05 01:03:55 +01:00
|
|
|
if (!string_is_empty(path_menu_xmb_font))
|
|
|
|
strlcpy(s, path_menu_xmb_font, len);
|
2016-06-11 20:21:22 +02:00
|
|
|
else
|
2016-06-11 20:22:03 +02:00
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
2016-10-21 05:57:40 +02:00
|
|
|
s1[0] = '\0';
|
|
|
|
|
2020-05-24 17:41:27 +02:00
|
|
|
switch (*msg_hash_get_uint(MSG_HASH_USER_LANGUAGE))
|
|
|
|
{
|
2020-05-24 17:19:22 +03:00
|
|
|
case RETRO_LANGUAGE_ARABIC:
|
2020-06-04 23:36:04 +03:00
|
|
|
case RETRO_LANGUAGE_PERSIAN:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
2020-05-24 17:19:22 +03:00
|
|
|
fill_pathname_join(s, s1, "fallback-font.ttf", len);
|
|
|
|
break;
|
|
|
|
case RETRO_LANGUAGE_CHINESE_SIMPLIFIED:
|
|
|
|
case RETRO_LANGUAGE_CHINESE_TRADITIONAL:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
2020-05-24 17:19:22 +03:00
|
|
|
fill_pathname_join(s, s1, "chinese-fallback-font.ttf", len);
|
|
|
|
break;
|
|
|
|
case RETRO_LANGUAGE_KOREAN:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
2020-05-24 17:19:22 +03:00
|
|
|
fill_pathname_join(s, s1, "korean-fallback-font.ttf", len);
|
|
|
|
break;
|
|
|
|
default:
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_application_special(s1, sizeof(s1),
|
2020-05-24 17:41:27 +02:00
|
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB);
|
2020-08-22 14:14:28 +02:00
|
|
|
fill_pathname_join(s, s1, FILE_PATH_TTF_FONT, len);
|
2020-05-24 17:19:22 +03:00
|
|
|
}
|
2016-06-11 20:22:03 +02:00
|
|
|
}
|
2016-06-11 20:01:33 +02:00
|
|
|
}
|
2016-06-11 19:21:58 +02:00
|
|
|
#endif
|
|
|
|
break;
|
2018-10-17 01:08:15 -05:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_THUMBNAILS_DISCORD_AVATARS:
|
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
|
|
|
char s2[PATH_MAX_LENGTH];
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_thumbnails = settings->paths.directory_thumbnails;
|
2018-10-17 01:08:15 -05:00
|
|
|
|
2019-09-16 17:44:14 +02:00
|
|
|
s1[0] = '\0';
|
2019-09-16 20:40:08 +02:00
|
|
|
s2[0] = '\0';
|
2018-10-17 01:08:15 -05:00
|
|
|
|
2020-08-18 12:44:14 +02:00
|
|
|
fill_pathname_join(s1, dir_thumbnails, "discord", sizeof(s1));
|
2019-09-16 20:40:08 +02:00
|
|
|
fill_pathname_join(s2,
|
2020-08-18 12:44:14 +02:00
|
|
|
s1, "avatars", sizeof(s2));
|
|
|
|
fill_pathname_slash(s2, sizeof(s2));
|
2019-09-16 20:40:08 +02:00
|
|
|
strlcpy(s, s2, len);
|
2018-10-17 01:08:15 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2017-11-23 06:58:19 -05:00
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_THUMBNAILS_CHEEVOS_BADGES:
|
|
|
|
{
|
2020-08-18 12:44:14 +02:00
|
|
|
char s1[PATH_MAX_LENGTH];
|
|
|
|
char s2[PATH_MAX_LENGTH];
|
2020-03-05 01:03:55 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
|
|
|
const char *dir_thumbnails = settings->paths.directory_thumbnails;
|
2017-11-23 06:58:19 -05:00
|
|
|
|
2020-08-18 12:44:14 +02:00
|
|
|
s1[0] = '\0';
|
|
|
|
s2[0] = '\0';
|
2017-11-23 06:58:19 -05:00
|
|
|
|
2020-03-05 01:03:55 +01:00
|
|
|
fill_pathname_join(s1, dir_thumbnails, "cheevos", len);
|
2019-09-16 20:40:08 +02:00
|
|
|
fill_pathname_join(s2,
|
2020-08-18 12:44:14 +02:00
|
|
|
s1, "badges", sizeof(s2));
|
|
|
|
fill_pathname_slash(s2, sizeof(s2));
|
2019-09-16 20:40:08 +02:00
|
|
|
strlcpy(s, s2, len);
|
2017-11-23 06:58:19 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2016-06-11 19:55:27 +02:00
|
|
|
case APPLICATION_SPECIAL_NONE:
|
2016-06-11 19:21:58 +02:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|