mirror of
https://github.com/libretro/RetroArch
synced 2024-12-28 09:29:16 +00:00
51922ea5be
2934af8af0 Added Patreon sponsor link. c8f18b6f0f Getting current program only when required for vglDrawObjects. 4c5d136b0d Added directive to enable vitaShaRK usage from cmd. 4a10df3be5 Minor adjustments and bugfixes. 14a0124acf Added GL_TEXTURE_LOD_BIAS support. 40c8c6205e Added GL_NONE def and fixed glUniform4f impl. 868079c51e Added glUniform4f implementation. 0a682cbad2 Typo fix. be3ce61ae7 Added GL_DEPTH_BITS and GL_STENCIL_BITS support. 21e6d1d330 Added runtime shader compiler support. 696e40bc62 Beautify error handler code. 537b37b110 Added glUniform3fv implementation. 7dd1403015 Fixed GLenum size and added missing types defines. 0c75f27ff1 Moved to NEON optimized memcpy usage. 98951895de Added gluPerspective implementation. 23e0b0b309 Fix for vglInitExtended not working on sys app mode. 4989c33ef5 Run clang-format. 429f1c1d8a Added system mode support. 9231680d02 Initializing sceGxm before free mem checking on vglInitExtended. 091e5e7882 Added vglInitWithCustomSizes. f4c646ea78 Added vglSetParamBufferSize. 1b9a063c41 Beautify some code. 089e81efc5 Fix for duplicated symbols 789dcbf812 Typo fix in readRGBA4444. 1514a4b2cb Disabling lto due to it being broken on vitasdk with gcc 9.1. fca18d9ab7 Added support for RGBA4444 texture format. d449f12808 Added support for RGB565 texture format. git-subtree-dir: deps/vitaGL git-subtree-split: 2934af8af083a9acf598ab75233c518a251c6f0d
478 lines
15 KiB
C
478 lines
15 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
|
* Copyright (C) 2016-2019 - Brad Parker
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/* 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
|
|
|
|
#ifdef _WIN32
|
|
#include <direct.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifdef __QNX__
|
|
#include <libgen.h>
|
|
#endif
|
|
|
|
#ifdef __HAIKU__
|
|
#include <kernel/image.h>
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <boolean.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
|
|
#include <file/file_path.h>
|
|
#include <string/stdstring.h>
|
|
|
|
#include <compat/strl.h>
|
|
#include <compat/posix_string.h>
|
|
#include <retro_assert.h>
|
|
#include <retro_miscellaneous.h>
|
|
#include <encodings/utf.h>
|
|
|
|
#ifdef HAVE_MENU
|
|
#include "menu/menu_driver.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "configuration.h"
|
|
#include "file_path_special.h"
|
|
|
|
#include "msg_hash.h"
|
|
#include "paths.h"
|
|
#include "verbosity.h"
|
|
|
|
bool fill_pathname_application_data(char *s, size_t len)
|
|
{
|
|
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
|
|
#ifdef LEGACY_WIN32
|
|
const char *appdata = getenv("APPDATA");
|
|
|
|
if (appdata)
|
|
{
|
|
strlcpy(s, appdata, len);
|
|
return true;
|
|
}
|
|
#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
|
|
|
|
#elif defined(OSX)
|
|
const char *appdata = getenv("HOME");
|
|
|
|
if (appdata)
|
|
{
|
|
fill_pathname_join(s, appdata,
|
|
"Library/Application Support/RetroArch", len);
|
|
return true;
|
|
}
|
|
#elif !defined(RARCH_CONSOLE)
|
|
const char *xdg = getenv("XDG_CONFIG_HOME");
|
|
const char *appdata = getenv("HOME");
|
|
|
|
/* XDG_CONFIG_HOME falls back to $HOME/.config with most Unix systems */
|
|
/* On Haiku, it is set by default to /home/user/config/settings */
|
|
if (xdg)
|
|
{
|
|
fill_pathname_join(s, xdg, "retroarch/", len);
|
|
return true;
|
|
}
|
|
|
|
if (appdata)
|
|
{
|
|
#ifdef __HAIKU__
|
|
/* in theory never used as Haiku has XDG_CONFIG_HOME set by default */
|
|
fill_pathname_join(s, appdata,
|
|
"config/settings/retroarch/", len);
|
|
#else
|
|
fill_pathname_join(s, appdata,
|
|
".config/retroarch/", len);
|
|
#endif
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
return false;
|
|
}
|
|
|
|
#ifdef HAVE_XMB
|
|
const char* xmb_theme_ident(void);
|
|
#endif
|
|
|
|
#ifdef HAVE_STRIPES
|
|
const char* stripes_theme_ident(void);
|
|
#endif
|
|
|
|
void fill_pathname_application_special(char *s,
|
|
size_t len, enum application_special_type type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case APPLICATION_SPECIAL_DIRECTORY_AUTOCONFIG:
|
|
{
|
|
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);
|
|
}
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_CONFIG:
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
const char *dir_menu_config = settings->paths.directory_menu_config;
|
|
|
|
/* Try config directory setting first,
|
|
* fallback to the location of the current configuration file. */
|
|
if (!string_is_empty(dir_menu_config))
|
|
strlcpy(s, dir_menu_config, len);
|
|
else if (!path_is_empty(RARCH_PATH_CONFIG))
|
|
fill_pathname_basedir(s, path_get(RARCH_PATH_CONFIG), len);
|
|
}
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG:
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
char *s1 = (char*)malloc(
|
|
PATH_MAX_LENGTH * sizeof(char));
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
s1[0] = '\0';
|
|
fill_pathname_join(s1, dir_assets, "pkg", PATH_MAX_LENGTH * sizeof(char));
|
|
strlcpy(s, s1, len);
|
|
free(s1);
|
|
}
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS:
|
|
#ifdef HAVE_XMB
|
|
{
|
|
char *s1 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
char *s2 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
|
|
s1[0] = '\0';
|
|
s2[0] = '\0';
|
|
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB);
|
|
fill_pathname_join(s2, s1, "png",
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
fill_pathname_slash(s2,
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
strlcpy(s, s2, len);
|
|
free(s1);
|
|
free(s2);
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_BG:
|
|
#ifdef HAVE_XMB
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
const char *path_menu_wallpaper = settings->paths.path_menu_wallpaper;
|
|
|
|
if (!string_is_empty(path_menu_wallpaper))
|
|
strlcpy(s, path_menu_wallpaper, len);
|
|
else
|
|
{
|
|
char *s1 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
|
|
s1[0] = '\0';
|
|
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_ICONS);
|
|
fill_pathname_join(s, s1, "bg.png", len);
|
|
free(s1);
|
|
}
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_SOUNDS:
|
|
{
|
|
#ifdef HAVE_MENU
|
|
settings_t *settings = config_get_ptr();
|
|
const char *menu_ident = settings->arrays.menu_driver;
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
char *s1 = (char*)calloc(
|
|
1, PATH_MAX_LENGTH * sizeof(char));
|
|
|
|
if (string_is_equal(menu_ident, "xmb"))
|
|
{
|
|
fill_pathname_application_special(s1, PATH_MAX_LENGTH * sizeof(char), APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB);
|
|
|
|
if (!string_is_empty(s1))
|
|
strlcat(s1, "/sounds", PATH_MAX_LENGTH * sizeof(char));
|
|
}
|
|
else if (string_is_equal(menu_ident, "glui"))
|
|
{
|
|
fill_pathname_application_special(s1, PATH_MAX_LENGTH * sizeof(char), APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI);
|
|
|
|
if (!string_is_empty(s1))
|
|
strlcat(s1, "/sounds", PATH_MAX_LENGTH * sizeof(char));
|
|
}
|
|
else if (string_is_equal(menu_ident, "ozone"))
|
|
{
|
|
fill_pathname_application_special(s1, PATH_MAX_LENGTH * sizeof(char), APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE);
|
|
|
|
if (!string_is_empty(s1))
|
|
strlcat(s1, "/sounds", PATH_MAX_LENGTH * sizeof(char));
|
|
}
|
|
|
|
if (string_is_empty(s1))
|
|
{
|
|
fill_pathname_join(
|
|
s1, dir_assets, "sounds",
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
}
|
|
|
|
strlcpy(s, s1, len);
|
|
free(s1);
|
|
#endif
|
|
}
|
|
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_OZONE:
|
|
#ifdef HAVE_OZONE
|
|
{
|
|
char *s1 = (char*)malloc(
|
|
PATH_MAX_LENGTH * sizeof(char));
|
|
settings_t *settings = config_get_ptr();
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
|
|
s1[0] = '\0';
|
|
|
|
fill_pathname_join(s1, dir_assets, "ozone",
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
strlcpy(s, s1, len);
|
|
free(s1);
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB:
|
|
#ifdef HAVE_XMB
|
|
{
|
|
char *s1 = (char*)malloc(
|
|
PATH_MAX_LENGTH * sizeof(char));
|
|
settings_t *settings = config_get_ptr();
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
|
|
s1[0] = '\0';
|
|
|
|
fill_pathname_join(s1, dir_assets, "xmb",
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
fill_pathname_join(s,
|
|
s1, xmb_theme_ident(), len);
|
|
free(s1);
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI:
|
|
#ifdef HAVE_MATERIALUI
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
const char *dir_assets = settings->paths.directory_assets;
|
|
|
|
fill_pathname_join(s, dir_assets, "glui", len);
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_ICONS:
|
|
#ifdef HAVE_MATERIALUI
|
|
{
|
|
char *s1 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
|
|
s1[0] = '\0';
|
|
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI);
|
|
strlcpy(s, s1, len);
|
|
|
|
free(s1);
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI_FONT:
|
|
#ifdef HAVE_MATERIALUI
|
|
{
|
|
char *s1 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
|
|
s1[0] = '\0';
|
|
|
|
switch (*msg_hash_get_uint(MSG_HASH_USER_LANGUAGE))
|
|
{
|
|
case RETRO_LANGUAGE_ARABIC:
|
|
case RETRO_LANGUAGE_PERSIAN:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
|
fill_pathname_join(s, s1, "fallback-font.ttf", len);
|
|
break;
|
|
case RETRO_LANGUAGE_CHINESE_SIMPLIFIED:
|
|
case RETRO_LANGUAGE_CHINESE_TRADITIONAL:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
|
fill_pathname_join(s, s1, "chinese-fallback-font.ttf", len);
|
|
break;
|
|
case RETRO_LANGUAGE_KOREAN:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
|
fill_pathname_join(s, s1, "korean-fallback-font.ttf", len);
|
|
break;
|
|
default:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_MATERIALUI);
|
|
fill_pathname_join(s, s1, "font.ttf", len);
|
|
}
|
|
|
|
free(s1);
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB_FONT:
|
|
#ifdef HAVE_XMB
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
const char *path_menu_xmb_font = settings->paths.path_menu_xmb_font;
|
|
|
|
if (!string_is_empty(path_menu_xmb_font))
|
|
strlcpy(s, path_menu_xmb_font, len);
|
|
else
|
|
{
|
|
char *s1 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
|
|
s1[0] = '\0';
|
|
|
|
switch (*msg_hash_get_uint(MSG_HASH_USER_LANGUAGE))
|
|
{
|
|
case RETRO_LANGUAGE_ARABIC:
|
|
case RETRO_LANGUAGE_PERSIAN:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
|
fill_pathname_join(s, s1, "fallback-font.ttf", len);
|
|
break;
|
|
case RETRO_LANGUAGE_CHINESE_SIMPLIFIED:
|
|
case RETRO_LANGUAGE_CHINESE_TRADITIONAL:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
|
fill_pathname_join(s, s1, "chinese-fallback-font.ttf", len);
|
|
break;
|
|
case RETRO_LANGUAGE_KOREAN:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_PKG);
|
|
fill_pathname_join(s, s1, "korean-fallback-font.ttf", len);
|
|
break;
|
|
default:
|
|
fill_pathname_application_special(s1,
|
|
PATH_MAX_LENGTH * sizeof(char),
|
|
APPLICATION_SPECIAL_DIRECTORY_ASSETS_XMB);
|
|
fill_pathname_join(s, s1, "font.ttf", len);
|
|
}
|
|
free(s1);
|
|
}
|
|
}
|
|
#endif
|
|
break;
|
|
case APPLICATION_SPECIAL_DIRECTORY_THUMBNAILS_DISCORD_AVATARS:
|
|
{
|
|
char *s1 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
char *s2 = (char*)malloc(PATH_MAX_LENGTH * sizeof(char));
|
|
settings_t *settings = config_get_ptr();
|
|
const char *dir_thumbnails = settings->paths.directory_thumbnails;
|
|
|
|
s1[0] = '\0';
|
|
s2[0] = '\0';
|
|
|
|
fill_pathname_join(s1, dir_thumbnails, "discord", len);
|
|
fill_pathname_join(s2,
|
|
s1, "avatars",
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
fill_pathname_slash(s2,
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
strlcpy(s, s2, len);
|
|
free(s1);
|
|
free(s2);
|
|
}
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_DIRECTORY_THUMBNAILS_CHEEVOS_BADGES:
|
|
{
|
|
char *s1 = (char*)malloc(
|
|
PATH_MAX_LENGTH * sizeof(char));
|
|
char *s2 = (char*)malloc(
|
|
PATH_MAX_LENGTH * sizeof(char));
|
|
settings_t *settings = config_get_ptr();
|
|
const char *dir_thumbnails = settings->paths.directory_thumbnails;
|
|
|
|
s1[0] = '\0';
|
|
s2[0] = '\0';
|
|
|
|
fill_pathname_join(s1, dir_thumbnails, "cheevos", len);
|
|
fill_pathname_join(s2,
|
|
s1, "badges",
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
fill_pathname_slash(s2,
|
|
PATH_MAX_LENGTH * sizeof(char)
|
|
);
|
|
strlcpy(s, s2, len);
|
|
free(s1);
|
|
free(s2);
|
|
}
|
|
break;
|
|
|
|
case APPLICATION_SPECIAL_NONE:
|
|
default:
|
|
break;
|
|
}
|
|
}
|