mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
631 lines
20 KiB
C
631 lines
20 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2017 - 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../../config.h"
|
|
#endif
|
|
|
|
#ifdef VITA
|
|
#include <psp2/system_param.h>
|
|
#include <psp2/power.h>
|
|
#include <psp2/sysmodule.h>
|
|
#include <psp2/appmgr.h>
|
|
#include <psp2/apputil.h>
|
|
|
|
#include "../../bootstrap/vita/sbrk.c"
|
|
#include "../../bootstrap/vita/threading.c"
|
|
|
|
#else
|
|
#include <pspkernel.h>
|
|
#include <pspdebug.h>
|
|
#include <pspfpu.h>
|
|
#include <psppower.h>
|
|
#include <pspsdk.h>
|
|
#endif
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <string/stdstring.h>
|
|
#include <boolean.h>
|
|
#include <file/file_path.h>
|
|
#ifndef IS_SALAMANDER
|
|
#include <lists/file_list.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_MENU
|
|
#include "../../menu/menu_driver.h"
|
|
#endif
|
|
|
|
#include "../frontend_driver.h"
|
|
#include "../../defaults.h"
|
|
#include "../../file_path_special.h"
|
|
#include "../../defines/psp_defines.h"
|
|
#include "../../retroarch.h"
|
|
#include "../../paths.h"
|
|
#include "../../verbosity.h"
|
|
|
|
#if defined(HAVE_KERNEL_PRX) || defined(IS_SALAMANDER)
|
|
#ifndef VITA
|
|
#include "../../bootstrap/psp1/kernel_functions.h"
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef VITA
|
|
PSP_MODULE_INFO("RetroArch", 0, 1, 1);
|
|
PSP_MAIN_THREAD_ATTR(THREAD_ATTR_USER|THREAD_ATTR_VFPU);
|
|
#ifdef BIG_STACK
|
|
PSP_MAIN_THREAD_STACK_SIZE_KB(4*1024);
|
|
#endif
|
|
PSP_HEAP_SIZE_MAX();
|
|
#endif
|
|
|
|
char eboot_path[512];
|
|
char user_path[512];
|
|
|
|
static enum frontend_fork psp_fork_mode = FRONTEND_FORK_NONE;
|
|
|
|
static void frontend_psp_get_environment_settings(int *argc, char *argv[],
|
|
void *args, void *params_data)
|
|
{
|
|
unsigned i;
|
|
struct rarch_main_wrap *params = NULL;
|
|
|
|
(void)args;
|
|
|
|
#ifdef VITA
|
|
strlcpy(eboot_path, "app0:/", sizeof(eboot_path));
|
|
strlcpy(g_defaults.dirs[DEFAULT_DIR_PORT], eboot_path, sizeof(g_defaults.dirs[DEFAULT_DIR_PORT]));
|
|
strlcpy(user_path, "ux0:/data/retroarch/", sizeof(user_path));
|
|
#else
|
|
strlcpy(eboot_path, argv[0], sizeof(eboot_path));
|
|
/* for PSP, use uppercase directories, and no trailing slashes
|
|
otherwise mkdir fails */
|
|
strlcpy(user_path, "ms0:/PSP/RETROARCH", sizeof(user_path));
|
|
fill_pathname_basedir(g_defaults.dirs[DEFAULT_DIR_PORT], argv[0], sizeof(g_defaults.dirs[DEFAULT_DIR_PORT]));
|
|
#endif
|
|
RARCH_LOG("port dir: [%s]\n", g_defaults.dirs[DEFAULT_DIR_PORT]);
|
|
|
|
#ifdef VITA
|
|
/* bundle data*/
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], g_defaults.dirs[DEFAULT_DIR_PORT],
|
|
"", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], g_defaults.dirs[DEFAULT_DIR_PORT],
|
|
"info", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_INFO]));
|
|
/* user data*/
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_ASSETS], user_path,
|
|
"assets", sizeof(g_defaults.dirs[DEFAULT_DIR_ASSETS]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_DATABASE], user_path,
|
|
"database/rdb", sizeof(g_defaults.dirs[DEFAULT_DIR_DATABASE]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CURSOR], user_path,
|
|
"database/cursors", sizeof(g_defaults.dirs[DEFAULT_DIR_CURSOR]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CHEATS], user_path,
|
|
"cheats", sizeof(g_defaults.dirs[DEFAULT_DIR_CHEATS]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG], user_path,
|
|
"config", sizeof(g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_ASSETS], user_path,
|
|
"downloads", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_ASSETS]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_PLAYLIST], user_path,
|
|
"playlists", sizeof(g_defaults.dirs[DEFAULT_DIR_PLAYLIST]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_REMAP], user_path,
|
|
"remaps", sizeof(g_defaults.dirs[DEFAULT_DIR_REMAP]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SRAM], user_path,
|
|
"savefiles", sizeof(g_defaults.dirs[DEFAULT_DIR_SRAM]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SAVESTATE], user_path,
|
|
"savestates", sizeof(g_defaults.dirs[DEFAULT_DIR_SAVESTATE]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SYSTEM], user_path,
|
|
"system", sizeof(g_defaults.dirs[DEFAULT_DIR_SYSTEM]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CACHE], user_path,
|
|
"temp", sizeof(g_defaults.dirs[DEFAULT_DIR_CACHE]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_OVERLAY], user_path,
|
|
"overlays", sizeof(g_defaults.dirs[DEFAULT_DIR_OVERLAY]));
|
|
#ifdef HAVE_VIDEO_LAYOUT
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT], user_path,
|
|
"layouts", sizeof(g_defaults.dirs[DEFAULT_DIR_VIDEO_LAYOUT]));
|
|
#endif
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_THUMBNAILS], user_path,
|
|
"thumbnails", sizeof(g_defaults.dirs[DEFAULT_DIR_THUMBNAILS]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_LOGS], user_path,
|
|
"logs", sizeof(g_defaults.dirs[DEFAULT_DIR_LOGS]));
|
|
strlcpy(g_defaults.dirs[DEFAULT_DIR_CONTENT_HISTORY],
|
|
user_path, sizeof(g_defaults.dirs[DEFAULT_DIR_CONTENT_HISTORY]));
|
|
fill_pathname_join(g_defaults.path.config, user_path,
|
|
file_path_str(FILE_PATH_MAIN_CONFIG), sizeof(g_defaults.path.config));
|
|
#else
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], g_defaults.dirs[DEFAULT_DIR_PORT],
|
|
"CORES", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], g_defaults.dirs[DEFAULT_DIR_PORT],
|
|
"INFO", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_INFO]));
|
|
|
|
/* user data */
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CHEATS], user_path,
|
|
"CHEATS", sizeof(g_defaults.dirs[DEFAULT_DIR_CHEATS]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG], user_path,
|
|
"CONFIG", sizeof(g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_ASSETS], user_path,
|
|
"DOWNLOADS", sizeof(g_defaults.dirs[DEFAULT_DIR_CORE_ASSETS]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_PLAYLIST], user_path,
|
|
"PLAYLISTS", sizeof(g_defaults.dirs[DEFAULT_DIR_PLAYLIST]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_REMAP], g_defaults.dirs[DEFAULT_DIR_MENU_CONFIG],
|
|
"REMAPS", sizeof(g_defaults.dirs[DEFAULT_DIR_REMAP]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SRAM], user_path,
|
|
"SAVEFILES", sizeof(g_defaults.dirs[DEFAULT_DIR_SRAM]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SAVESTATE], user_path,
|
|
"SAVESTATES", sizeof(g_defaults.dirs[DEFAULT_DIR_SAVESTATE]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SCREENSHOT], user_path,
|
|
"SCREENSHOTS", sizeof(g_defaults.dirs[DEFAULT_DIR_SCREENSHOT]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SYSTEM], user_path,
|
|
"SYSTEM", sizeof(g_defaults.dirs[DEFAULT_DIR_SYSTEM]));
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_LOGS], user_path,
|
|
"LOGS", sizeof(g_defaults.dirs[DEFAULT_DIR_LOGS]));
|
|
|
|
/* cache dir */
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CACHE], user_path,
|
|
"TEMP", sizeof(g_defaults.dirs[DEFAULT_DIR_CACHE]));
|
|
|
|
/* history and main config */
|
|
strlcpy(g_defaults.dirs[DEFAULT_DIR_CONTENT_HISTORY],
|
|
user_path, sizeof(g_defaults.dirs[DEFAULT_DIR_CONTENT_HISTORY]));
|
|
fill_pathname_join(g_defaults.path.config, user_path,
|
|
file_path_str(FILE_PATH_MAIN_CONFIG), sizeof(g_defaults.path.config));
|
|
#endif
|
|
|
|
#ifndef IS_SALAMANDER
|
|
#ifdef VITA
|
|
params = (struct rarch_main_wrap*)params_data;
|
|
params->verbose = true;
|
|
#endif
|
|
if (!string_is_empty(argv[1]))
|
|
{
|
|
static char path[PATH_MAX_LENGTH] = {0};
|
|
struct rarch_main_wrap *args =
|
|
(struct rarch_main_wrap*)params_data;
|
|
|
|
if (args)
|
|
{
|
|
strlcpy(path, argv[1], sizeof(path));
|
|
|
|
args->touched = true;
|
|
args->no_content = false;
|
|
args->verbose = false;
|
|
args->config_path = NULL;
|
|
args->sram_path = NULL;
|
|
args->state_path = NULL;
|
|
args->content_path = path;
|
|
args->libretro_path = NULL;
|
|
|
|
RARCH_LOG("argv[0]: %s\n", argv[0]);
|
|
RARCH_LOG("argv[1]: %s\n", argv[1]);
|
|
RARCH_LOG("argv[2]: %s\n", argv[2]);
|
|
|
|
RARCH_LOG("Auto-start game %s.\n", argv[1]);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
for (i = 0; i < DEFAULT_DIR_LAST; i++)
|
|
{
|
|
const char *dir_path = g_defaults.dirs[i];
|
|
if (!string_is_empty(dir_path))
|
|
path_mkdir(dir_path);
|
|
}
|
|
}
|
|
|
|
static void frontend_psp_deinit(void *data)
|
|
{
|
|
(void)data;
|
|
#ifndef IS_SALAMANDER
|
|
verbosity_disable();
|
|
pthread_terminate();
|
|
#endif
|
|
}
|
|
|
|
static void frontend_psp_shutdown(bool unused)
|
|
{
|
|
(void)unused;
|
|
#ifdef VITA
|
|
//sceKernelExitProcess(0);
|
|
return;
|
|
#else
|
|
sceKernelExitGame();
|
|
#endif
|
|
}
|
|
|
|
#ifndef VITA
|
|
static int exit_callback(int arg1, int arg2, void *common)
|
|
{
|
|
frontend_psp_deinit(NULL);
|
|
frontend_psp_shutdown(false);
|
|
return 0;
|
|
}
|
|
|
|
static int callback_thread(SceSize args, void *argp)
|
|
{
|
|
int cbid = sceKernelCreateCallback("Exit callback", exit_callback, NULL);
|
|
sceKernelRegisterExitCallback(cbid);
|
|
sceKernelSleepThreadCB();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int setup_callback(void)
|
|
{
|
|
int thread_id = sceKernelCreateThread("update_thread",
|
|
callback_thread, 0x11, 0xFA0, 0, 0);
|
|
|
|
if (thread_id >= 0)
|
|
sceKernelStartThread(thread_id, 0, 0);
|
|
|
|
return thread_id;
|
|
}
|
|
#endif
|
|
|
|
static void frontend_psp_init(void *data)
|
|
{
|
|
#ifndef IS_SALAMANDER
|
|
|
|
#ifdef VITA
|
|
scePowerSetArmClockFrequency(444);
|
|
scePowerSetBusClockFrequency(222);
|
|
scePowerSetGpuClockFrequency(222);
|
|
scePowerSetGpuXbarClockFrequency(166);
|
|
sceSysmoduleLoadModule(SCE_SYSMODULE_NET);
|
|
|
|
SceAppUtilInitParam appUtilParam;
|
|
SceAppUtilBootParam appUtilBootParam;
|
|
memset(&appUtilParam, 0, sizeof(SceAppUtilInitParam));
|
|
memset(&appUtilBootParam, 0, sizeof(SceAppUtilBootParam));
|
|
sceAppUtilInit(&appUtilParam, &appUtilBootParam);
|
|
#else
|
|
(void)data;
|
|
/* initialize debug screen */
|
|
pspDebugScreenInit();
|
|
pspDebugScreenClear();
|
|
|
|
setup_callback();
|
|
|
|
pspFpuSetEnable(0); /* disable FPU exceptions */
|
|
scePowerSetClockFrequency(333,333,166);
|
|
#endif
|
|
pthread_init();
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_KERNEL_PRX) || defined(IS_SALAMANDER)
|
|
#ifndef VITA
|
|
pspSdkLoadStartModule("kernel_functions.prx", PSP_MEMORY_PARTITION_KERNEL);
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
static void frontend_psp_exec(const char *path, bool should_load_game)
|
|
{
|
|
#if defined(HAVE_KERNEL_PRX) || defined(IS_SALAMANDER) || defined(VITA)
|
|
char argp[512] = {0};
|
|
char boot_params[1024];
|
|
char core_name[256];
|
|
SceSize args = 0;
|
|
|
|
#if !defined(VITA)
|
|
strlcpy(argp, eboot_path, sizeof(argp));
|
|
args = strlen(argp) + 1;
|
|
#endif
|
|
|
|
#ifndef IS_SALAMANDER
|
|
if (should_load_game && !path_is_empty(RARCH_PATH_CONTENT))
|
|
{
|
|
argp[args] = '\0';
|
|
strlcat(argp + args, path_get(RARCH_PATH_CONTENT), sizeof(argp) - args);
|
|
args += strlen(argp + args) + 1;
|
|
}
|
|
#endif
|
|
|
|
RARCH_LOG("Attempt to load executable: [%s].\n", path);
|
|
#if defined(VITA)
|
|
RARCH_LOG("Attempt to load executable: %d [%s].\n", args, argp);
|
|
#ifdef IS_SALAMANDER
|
|
sceAppMgrGetAppParam(boot_params);
|
|
if (strstr(boot_params,"psgm:play")) {
|
|
char *param1 = strstr(boot_params, "¶m=")+7;
|
|
char *param2 = strstr(boot_params, "¶m2=");
|
|
memcpy(core_name, param1, param2 - param1);
|
|
core_name[param2-param1] = 0;
|
|
sprintf(argp, param2 + 8);
|
|
int ret = sceAppMgrLoadExec(core_name, (char * const*)((const char*[]){argp, 0}), NULL);
|
|
RARCH_LOG("Attempt to load executable: [%d].\n", ret);
|
|
}
|
|
else
|
|
#endif
|
|
{
|
|
int ret = sceAppMgrLoadExec(path, args == 0 ? NULL : (char * const*)((const char*[]){argp, 0}), NULL);
|
|
RARCH_LOG("Attempt to load executable: [%d].\n", ret);
|
|
}
|
|
#else
|
|
exitspawn_kernel(path, args, argp);
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
#ifndef IS_SALAMANDER
|
|
static bool frontend_psp_set_fork(enum frontend_fork fork_mode)
|
|
{
|
|
switch (fork_mode)
|
|
{
|
|
case FRONTEND_FORK_CORE:
|
|
RARCH_LOG("FRONTEND_FORK_CORE\n");
|
|
psp_fork_mode = fork_mode;
|
|
break;
|
|
case FRONTEND_FORK_CORE_WITH_ARGS:
|
|
RARCH_LOG("FRONTEND_FORK_CORE_WITH_ARGS\n");
|
|
psp_fork_mode = fork_mode;
|
|
break;
|
|
case FRONTEND_FORK_RESTART:
|
|
RARCH_LOG("FRONTEND_FORK_RESTART\n");
|
|
/* NOTE: We don't implement Salamander, so just turn
|
|
* this into FRONTEND_FORK_CORE. */
|
|
psp_fork_mode = FRONTEND_FORK_CORE;
|
|
break;
|
|
case FRONTEND_FORK_NONE:
|
|
default:
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
static void frontend_psp_exitspawn(char *s, size_t len, char *args)
|
|
{
|
|
bool should_load_content = false;
|
|
#ifndef IS_SALAMANDER
|
|
if (psp_fork_mode == FRONTEND_FORK_NONE)
|
|
return;
|
|
|
|
switch (psp_fork_mode)
|
|
{
|
|
case FRONTEND_FORK_CORE_WITH_ARGS:
|
|
should_load_content = true;
|
|
break;
|
|
case FRONTEND_FORK_NONE:
|
|
default:
|
|
break;
|
|
}
|
|
#endif
|
|
frontend_psp_exec(s, should_load_content);
|
|
}
|
|
|
|
static int frontend_psp_get_rating(void)
|
|
{
|
|
#ifdef VITA
|
|
return 6; /* Go with a conservative figure for now. */
|
|
#else
|
|
return 4;
|
|
#endif
|
|
}
|
|
|
|
static enum frontend_powerstate frontend_psp_get_powerstate(int *seconds, int *percent)
|
|
{
|
|
enum frontend_powerstate ret = FRONTEND_POWERSTATE_NONE;
|
|
#ifndef VITA
|
|
int battery = scePowerIsBatteryExist();
|
|
#endif
|
|
int plugged = scePowerIsPowerOnline();
|
|
int charging = scePowerIsBatteryCharging();
|
|
|
|
*percent = scePowerGetBatteryLifePercent();
|
|
*seconds = scePowerGetBatteryLifeTime() * 60;
|
|
|
|
#ifndef VITA
|
|
if (!battery)
|
|
{
|
|
ret = FRONTEND_POWERSTATE_NO_SOURCE;
|
|
*seconds = -1;
|
|
*percent = -1;
|
|
}
|
|
else
|
|
#endif
|
|
if (charging)
|
|
ret = FRONTEND_POWERSTATE_CHARGING;
|
|
else if (plugged)
|
|
ret = FRONTEND_POWERSTATE_CHARGED;
|
|
else
|
|
ret = FRONTEND_POWERSTATE_ON_POWER_SOURCE;
|
|
|
|
return ret;
|
|
}
|
|
|
|
enum frontend_architecture frontend_psp_get_architecture(void)
|
|
{
|
|
#ifdef VITA
|
|
return FRONTEND_ARCH_ARMV7;
|
|
#else
|
|
return FRONTEND_ARCH_MIPS;
|
|
#endif
|
|
}
|
|
|
|
static int frontend_psp_parse_drive_list(void *data, bool load_content)
|
|
{
|
|
#ifndef IS_SALAMANDER
|
|
file_list_t *list = (file_list_t*)data;
|
|
enum msg_hash_enums enum_idx = load_content ?
|
|
MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR :
|
|
MENU_ENUM_LABEL_FILE_BROWSER_DIRECTORY;
|
|
|
|
#ifdef VITA
|
|
menu_entries_append_enum(list,
|
|
"app0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
menu_entries_append_enum(list,
|
|
"ur0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
menu_entries_append_enum(list,
|
|
"ux0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
menu_entries_append_enum(list,
|
|
"uma0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
menu_entries_append_enum(list,
|
|
"imc0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
#else
|
|
menu_entries_append_enum(list,
|
|
"ms0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
menu_entries_append_enum(list,
|
|
"ef0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
menu_entries_append_enum(list,
|
|
"host0:/",
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
enum_idx,
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
|
#endif
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef VITA
|
|
enum retro_language psp_get_retro_lang_from_langid(int langid)
|
|
{
|
|
switch (langid)
|
|
{
|
|
case SCE_SYSTEM_PARAM_LANG_JAPANESE:
|
|
return RETRO_LANGUAGE_JAPANESE;
|
|
case SCE_SYSTEM_PARAM_LANG_FRENCH:
|
|
return RETRO_LANGUAGE_FRENCH;
|
|
case SCE_SYSTEM_PARAM_LANG_SPANISH:
|
|
return RETRO_LANGUAGE_SPANISH;
|
|
case SCE_SYSTEM_PARAM_LANG_GERMAN:
|
|
return RETRO_LANGUAGE_GERMAN;
|
|
case SCE_SYSTEM_PARAM_LANG_ITALIAN:
|
|
return RETRO_LANGUAGE_ITALIAN;
|
|
case SCE_SYSTEM_PARAM_LANG_DUTCH:
|
|
return RETRO_LANGUAGE_DUTCH;
|
|
case SCE_SYSTEM_PARAM_LANG_PORTUGUESE_PT:
|
|
return RETRO_LANGUAGE_PORTUGUESE_PORTUGAL;
|
|
case SCE_SYSTEM_PARAM_LANG_RUSSIAN:
|
|
return RETRO_LANGUAGE_RUSSIAN;
|
|
case SCE_SYSTEM_PARAM_LANG_KOREAN:
|
|
return RETRO_LANGUAGE_KOREAN;
|
|
case SCE_SYSTEM_PARAM_LANG_CHINESE_T:
|
|
return RETRO_LANGUAGE_CHINESE_TRADITIONAL;
|
|
case SCE_SYSTEM_PARAM_LANG_CHINESE_S:
|
|
return RETRO_LANGUAGE_CHINESE_SIMPLIFIED;
|
|
case SCE_SYSTEM_PARAM_LANG_POLISH:
|
|
return RETRO_LANGUAGE_POLISH;
|
|
case SCE_SYSTEM_PARAM_LANG_PORTUGUESE_BR:
|
|
return RETRO_LANGUAGE_PORTUGUESE_BRAZIL;
|
|
case SCE_SYSTEM_PARAM_LANG_TURKISH:
|
|
return RETRO_LANGUAGE_TURKISH;
|
|
#if 0
|
|
/* TODO/FIXME - this doesn't seem to actually exist */
|
|
case SCE_SYSTEM_PARAM_LANG_SLOVAK:
|
|
return RETRO_LANGUAGE_SLOVAK;
|
|
#endif
|
|
case SCE_SYSTEM_PARAM_LANG_ENGLISH_US:
|
|
case SCE_SYSTEM_PARAM_LANG_ENGLISH_GB:
|
|
default:
|
|
return RETRO_LANGUAGE_ENGLISH;
|
|
}
|
|
}
|
|
|
|
enum retro_language frontend_psp_get_user_language(void)
|
|
{
|
|
int langid;
|
|
sceAppUtilSystemParamGetInt(SCE_SYSTEM_PARAM_ID_LANG, &langid);
|
|
return psp_get_retro_lang_from_langid(langid);
|
|
}
|
|
|
|
static uint64_t frontend_psp_get_mem_total(void)
|
|
{
|
|
return _newlib_heap_end - _newlib_heap_base;
|
|
}
|
|
|
|
static uint64_t frontend_psp_get_mem_used(void)
|
|
{
|
|
return _newlib_heap_end - _newlib_heap_cur;
|
|
}
|
|
#endif
|
|
|
|
frontend_ctx_driver_t frontend_ctx_psp = {
|
|
frontend_psp_get_environment_settings,
|
|
frontend_psp_init,
|
|
frontend_psp_deinit,
|
|
frontend_psp_exitspawn,
|
|
NULL, /* process_args */
|
|
frontend_psp_exec,
|
|
#ifdef IS_SALAMANDER
|
|
NULL,
|
|
#else
|
|
frontend_psp_set_fork,
|
|
#endif
|
|
frontend_psp_shutdown,
|
|
NULL, /* get_name */
|
|
NULL, /* get_os */
|
|
frontend_psp_get_rating,
|
|
NULL, /* load_content */
|
|
frontend_psp_get_architecture,
|
|
frontend_psp_get_powerstate,
|
|
frontend_psp_parse_drive_list,
|
|
#ifdef VITA
|
|
frontend_psp_get_mem_total,
|
|
frontend_psp_get_mem_used,
|
|
#else
|
|
NULL, /* get_mem_total */
|
|
NULL, /* get_mem_free */
|
|
#endif
|
|
NULL, /* install_signal_handler */
|
|
NULL, /* get_sighandler_state */
|
|
NULL, /* set_sighandler_state */
|
|
NULL, /* destroy_sighandler_state */
|
|
NULL, /* attach_console */
|
|
NULL, /* detach_console */
|
|
NULL, /* watch_path_for_changes */
|
|
NULL, /* check_for_path_changes */
|
|
NULL, /* set_sustained_performance_mode */
|
|
NULL, /* get_cpu_model_name */
|
|
#ifdef VITA
|
|
frontend_psp_get_user_language,
|
|
NULL, /* is_narrator_running */
|
|
NULL, /* accessibility_speak */
|
|
"vita",
|
|
#else
|
|
NULL, /* get_user_language */
|
|
NULL, /* is_narrator_running */
|
|
NULL, /* accessibility_speak */
|
|
"psp",
|
|
#endif
|
|
};
|