2018-12-27 20:17:48 +01:00
|
|
|
/* 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
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2021-09-20 13:22:01 +02:00
|
|
|
#if defined(HAVE_LIBORBIS)
|
2018-12-27 20:17:48 +01:00
|
|
|
#include <kernel.h>
|
|
|
|
#include <systemservice.h>
|
|
|
|
#include <orbis2d.h>
|
|
|
|
#include <orbisPad.h>
|
|
|
|
#include <orbisAudio.h>
|
|
|
|
#include <modplayer.h>
|
|
|
|
#include <ps4link.h>
|
|
|
|
#include <orbisKeyboard.h>
|
|
|
|
#include <debugnet.h>
|
2019-01-03 10:11:50 +01:00
|
|
|
#include <orbisFile.h>
|
2020-06-20 14:05:20 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <orbis/libkernel.h>
|
|
|
|
#include <libSceUserService.h>
|
|
|
|
#include <libSceSystemService.h>
|
|
|
|
#include <libSceSysmodule.h>
|
2021-09-20 13:22:01 +02:00
|
|
|
#include <libSceLibcInternal.h>
|
2020-06-20 14:05:20 -07:00
|
|
|
#include <defines/ps4_defines.h>
|
2021-09-21 14:32:04 +02:00
|
|
|
#include <user_mem.h>
|
2020-06-20 14:05:20 -07:00
|
|
|
|
2018-12-27 20:17:48 +01:00
|
|
|
#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 "../../retroarch.h"
|
|
|
|
#include "../../paths.h"
|
|
|
|
#include "../../verbosity.h"
|
|
|
|
|
2020-06-20 14:05:20 -07:00
|
|
|
#define CONTENT_PATH_ARG_INDEX 1
|
|
|
|
#define EBOOT_PATH "/app0/"
|
|
|
|
#define USER_PATH "/data/retroarch/"
|
|
|
|
#define CORE_DIR "cores"
|
|
|
|
#define CORE_INFO_PATH USER_PATH
|
|
|
|
#if defined(BUNDLE_CORES)
|
|
|
|
#define CORE_PATH EBOOT_PATH
|
|
|
|
#else
|
|
|
|
#define CORE_PATH "/data/self/retroarch/"
|
|
|
|
#endif
|
|
|
|
#define MODULE_PATH "/data/self/system/common/lib/"
|
|
|
|
#define MODULE_PATH_EXT "/app0/sce_module/"
|
|
|
|
|
2018-12-27 20:17:48 +01:00
|
|
|
char eboot_path[512];
|
|
|
|
char user_path[512];
|
2020-06-20 14:05:20 -07:00
|
|
|
SceKernelModule s_piglet_module;
|
|
|
|
SceKernelModule s_shacc_module;
|
2018-12-27 20:17:48 +01:00
|
|
|
|
|
|
|
static enum frontend_fork orbis_fork_mode = FRONTEND_FORK_NONE;
|
|
|
|
|
2021-09-19 00:43:42 +02:00
|
|
|
#define MEM_SIZE (3UL * 1024 * 1024 * 1024) /* 2600 MiB */
|
|
|
|
#define MEM_ALIGN (16UL * 1024)
|
|
|
|
|
2022-05-22 19:59:20 +02:00
|
|
|
/* TODO/FIXME: INCLUDING <orbislink.h> produces duplication errors */
|
2021-09-20 13:22:01 +02:00
|
|
|
int initOrbisLinkAppVanillaGl(void);
|
2021-09-19 00:43:42 +02:00
|
|
|
|
2020-06-20 14:05:20 -07:00
|
|
|
#if defined(HAVE_TAUON_SDK)
|
|
|
|
void catchReturnFromMain(int exit_code)
|
2018-12-30 00:09:44 +01:00
|
|
|
{
|
2020-06-20 14:05:20 -07:00
|
|
|
kill(getpid(), SIGTERM);
|
2018-12-30 00:09:44 +01:00
|
|
|
}
|
2020-06-20 14:05:20 -07:00
|
|
|
#endif
|
2018-12-30 00:09:44 +01:00
|
|
|
|
2021-01-16 16:14:03 +01:00
|
|
|
static void frontend_orbis_get_env(int *argc, char *argv[],
|
2018-12-31 17:45:32 +01:00
|
|
|
void *args, void *params_data)
|
2018-12-30 00:09:44 +01:00
|
|
|
{
|
2018-12-31 17:45:32 +01:00
|
|
|
unsigned i;
|
|
|
|
struct rarch_main_wrap *params = NULL;
|
|
|
|
|
2020-06-20 14:05:20 -07:00
|
|
|
strlcpy(eboot_path, EBOOT_PATH, sizeof(eboot_path));
|
2018-12-27 20:17:48 +01:00
|
|
|
strlcpy(g_defaults.dirs[DEFAULT_DIR_PORT], eboot_path, sizeof(g_defaults.dirs[DEFAULT_DIR_PORT]));
|
2020-06-20 14:05:20 -07:00
|
|
|
strlcpy(user_path, USER_PATH, sizeof(user_path));
|
2018-12-27 20:17:48 +01:00
|
|
|
|
2020-06-20 14:05:20 -07:00
|
|
|
/* bundle data */
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE], CORE_PATH,
|
|
|
|
CORE_DIR, sizeof(g_defaults.dirs[DEFAULT_DIR_CORE]));
|
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_CORE_INFO], CORE_INFO_PATH,
|
2018-12-27 20:17:48 +01:00
|
|
|
"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]));
|
2020-06-20 14:05:20 -07:00
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_SHADER], user_path,
|
|
|
|
"shaders", sizeof(g_defaults.dirs[DEFAULT_DIR_SHADER]));
|
2018-12-27 20:17:48 +01:00
|
|
|
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]));
|
2019-04-16 17:41:06 +01:00
|
|
|
#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
|
2018-12-27 20:17:48 +01:00
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_THUMBNAILS], user_path,
|
|
|
|
"thumbnails", sizeof(g_defaults.dirs[DEFAULT_DIR_THUMBNAILS]));
|
2019-03-25 17:22:59 +00:00
|
|
|
fill_pathname_join(g_defaults.dirs[DEFAULT_DIR_LOGS], user_path,
|
|
|
|
"logs", sizeof(g_defaults.dirs[DEFAULT_DIR_LOGS]));
|
2018-12-27 20:17:48 +01:00
|
|
|
strlcpy(g_defaults.dirs[DEFAULT_DIR_CONTENT_HISTORY],
|
|
|
|
user_path, sizeof(g_defaults.dirs[DEFAULT_DIR_CONTENT_HISTORY]));
|
2020-08-16 04:38:02 +02:00
|
|
|
fill_pathname_join(g_defaults.path_config, user_path,
|
2020-08-22 01:06:10 +02:00
|
|
|
FILE_PATH_MAIN_CONFIG, sizeof(g_defaults.path_config));
|
2018-12-27 20:17:48 +01:00
|
|
|
|
|
|
|
#ifndef IS_SALAMANDER
|
|
|
|
params = (struct rarch_main_wrap*)params_data;
|
|
|
|
params->verbose = true;
|
|
|
|
|
2020-06-20 14:05:20 -07:00
|
|
|
if (!string_is_empty(argv[CONTENT_PATH_ARG_INDEX]))
|
2018-12-27 20:17:48 +01:00
|
|
|
{
|
|
|
|
static char path[PATH_MAX_LENGTH] = {0};
|
|
|
|
struct rarch_main_wrap *args =
|
|
|
|
(struct rarch_main_wrap*)params_data;
|
|
|
|
|
|
|
|
if (args)
|
|
|
|
{
|
2020-06-20 14:05:20 -07:00
|
|
|
strlcpy(path, argv[CONTENT_PATH_ARG_INDEX], sizeof(path));
|
2018-12-27 20:17:48 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2020-11-20 03:55:55 +01:00
|
|
|
|
|
|
|
dir_check_defaults("host0:app/custom.ini");
|
2018-12-27 20:17:48 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-05-22 19:59:20 +02:00
|
|
|
static void frontend_orbis_deinit(void *data) { }
|
|
|
|
static void frontend_orbis_shutdown(bool unused) { }
|
2018-12-27 20:17:48 +01:00
|
|
|
|
2022-05-22 19:59:20 +02:00
|
|
|
static bool frontend_orbis_init_app(void)
|
2021-09-19 00:43:42 +02:00
|
|
|
{
|
2022-05-22 19:59:20 +02:00
|
|
|
if (initOrbisLinkAppVanillaGl() == 0)
|
2021-09-19 00:43:42 +02:00
|
|
|
{
|
|
|
|
debugNetInit(PC_DEVELOPMENT_IP_ADDRESS,PC_DEVELOPMENT_UDP_PORT,3);
|
2021-09-20 19:46:40 +02:00
|
|
|
debugNetPrintf(DEBUGNET_INFO,"Ready to have a lot of fun\n");
|
2021-09-19 00:43:42 +02:00
|
|
|
sceSystemServiceHideSplashScreen();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void frontend_orbis_init(void *data)
|
|
|
|
{
|
2022-05-22 19:59:20 +02:00
|
|
|
frontend_orbis_init_app();
|
|
|
|
sceSysmoduleLoadModuleInternal(SCE_SYSMODULE_INTERNAL_AUDIO_OUT);
|
2020-06-20 14:05:20 -07:00
|
|
|
verbosity_enable();
|
2018-12-27 20:17:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void frontend_orbis_exec(const char *path, bool should_load_game)
|
|
|
|
{
|
2020-06-20 14:05:20 -07:00
|
|
|
int ret;
|
2018-12-27 20:17:48 +01:00
|
|
|
char argp[512] = {0};
|
2022-05-22 19:59:20 +02:00
|
|
|
int args = 0;
|
2020-06-20 14:05:20 -07:00
|
|
|
|
2018-12-27 20:17:48 +01:00
|
|
|
#ifndef IS_SALAMANDER
|
|
|
|
if (should_load_game && !path_is_empty(RARCH_PATH_CONTENT))
|
|
|
|
{
|
2020-06-20 14:05:20 -07:00
|
|
|
char game_path[PATH_MAX_LENGTH];
|
|
|
|
strlcpy(game_path, path_get(RARCH_PATH_CONTENT), sizeof(game_path));
|
|
|
|
const char * const argp[] = {
|
|
|
|
eboot_path,
|
|
|
|
game_path,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
args = 2;
|
2018-12-27 20:17:48 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef IS_SALAMANDER
|
|
|
|
static bool frontend_orbis_set_fork(enum frontend_fork fork_mode)
|
|
|
|
{
|
|
|
|
switch (fork_mode)
|
|
|
|
{
|
|
|
|
case FRONTEND_FORK_CORE:
|
|
|
|
orbis_fork_mode = fork_mode;
|
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_CORE_WITH_ARGS:
|
|
|
|
orbis_fork_mode = fork_mode;
|
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_RESTART:
|
|
|
|
/* NOTE: We don't implement Salamander, so just turn
|
|
|
|
* this into FRONTEND_FORK_CORE. */
|
|
|
|
orbis_fork_mode = FRONTEND_FORK_CORE;
|
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_NONE:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-02-01 17:42:18 +01:00
|
|
|
static void frontend_orbis_exitspawn(char *s, size_t len, char *args)
|
2018-12-27 20:17:48 +01:00
|
|
|
{
|
|
|
|
bool should_load_game = false;
|
|
|
|
#ifndef IS_SALAMANDER
|
|
|
|
if (orbis_fork_mode == FRONTEND_FORK_NONE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (orbis_fork_mode)
|
|
|
|
{
|
|
|
|
case FRONTEND_FORK_CORE_WITH_ARGS:
|
|
|
|
should_load_game = true;
|
|
|
|
break;
|
|
|
|
case FRONTEND_FORK_NONE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
frontend_orbis_exec(s, should_load_game);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int frontend_orbis_get_rating(void)
|
|
|
|
{
|
2022-05-22 19:59:20 +02:00
|
|
|
/* TODO/FIXME - needs a different rating */
|
|
|
|
return 6;
|
2018-12-27 20:17:48 +01:00
|
|
|
}
|
|
|
|
|
2021-01-16 16:14:03 +01:00
|
|
|
enum frontend_architecture frontend_orbis_get_arch(void)
|
2018-12-27 20:17:48 +01:00
|
|
|
{
|
|
|
|
return FRONTEND_ARCH_X86_64;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int frontend_orbis_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 :
|
2019-12-31 12:32:32 +00:00
|
|
|
MENU_ENUM_LABEL_FILE_BROWSER_DIRECTORY;
|
2018-12-27 20:17:48 +01:00
|
|
|
|
2020-06-20 14:05:20 -07:00
|
|
|
menu_entries_append_enum(list,
|
|
|
|
"/",
|
|
|
|
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,
|
|
|
|
"/data",
|
|
|
|
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,
|
|
|
|
"/usb0",
|
|
|
|
msg_hash_to_str(MENU_ENUM_LABEL_FILE_DETECT_CORE_LIST_PUSH_DIR),
|
|
|
|
enum_idx,
|
|
|
|
FILE_TYPE_DIRECTORY, 0, 0);
|
2018-12-27 20:17:48 +01:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-09-21 14:32:04 +02:00
|
|
|
static size_t frontend_orbis_get_mem_total(void)
|
|
|
|
{
|
|
|
|
size_t max_mem = 0, cur_mem = 0;
|
|
|
|
get_user_mem_size(&max_mem, &cur_mem);
|
|
|
|
return max_mem;
|
|
|
|
}
|
2020-06-20 14:05:20 -07:00
|
|
|
|
2021-09-21 14:32:04 +02:00
|
|
|
static size_t frontend_orbis_get_mem_used(void)
|
|
|
|
{
|
|
|
|
size_t max_mem = 0, cur_mem = 0;
|
|
|
|
get_user_mem_size(&max_mem, &cur_mem);
|
|
|
|
return cur_mem;
|
|
|
|
}
|
2020-06-20 14:05:20 -07:00
|
|
|
|
2018-12-27 20:17:48 +01:00
|
|
|
frontend_ctx_driver_t frontend_ctx_orbis = {
|
2021-09-19 00:43:42 +02:00
|
|
|
frontend_orbis_get_env,
|
2018-12-27 20:17:48 +01:00
|
|
|
frontend_orbis_init,
|
|
|
|
frontend_orbis_deinit,
|
|
|
|
frontend_orbis_exitspawn,
|
|
|
|
NULL, /* process_args */
|
|
|
|
frontend_orbis_exec,
|
|
|
|
#ifdef IS_SALAMANDER
|
|
|
|
NULL,
|
|
|
|
#else
|
|
|
|
frontend_orbis_set_fork,
|
|
|
|
#endif
|
|
|
|
frontend_orbis_shutdown,
|
|
|
|
NULL, /* get_name */
|
|
|
|
NULL, /* get_os */
|
|
|
|
frontend_orbis_get_rating,
|
2021-01-16 16:14:03 +01:00
|
|
|
NULL, /* content_loaded */
|
|
|
|
frontend_orbis_get_arch,
|
2018-12-27 20:17:48 +01:00
|
|
|
NULL,
|
|
|
|
frontend_orbis_parse_drive_list,
|
2021-09-21 14:32:04 +02:00
|
|
|
frontend_orbis_get_mem_total,
|
|
|
|
frontend_orbis_get_mem_used,
|
2018-12-27 20:17:48 +01:00
|
|
|
NULL, /* install_signal_handler */
|
|
|
|
NULL, /* get_sighandler_state */
|
|
|
|
NULL, /* set_sighandler_state */
|
|
|
|
NULL, /* destroy_sighandler_state */
|
|
|
|
NULL, /* attach_console */
|
|
|
|
NULL, /* detach_console */
|
2020-11-23 18:44:24 +01:00
|
|
|
NULL, /* get_lakka_version */
|
2020-11-23 21:29:26 +01:00
|
|
|
NULL, /* set_screen_brightness */
|
2018-12-27 20:17:48 +01:00
|
|
|
NULL, /* watch_path_for_changes */
|
|
|
|
NULL, /* check_for_path_changes */
|
|
|
|
NULL, /* set_sustained_performance_mode */
|
2019-02-23 16:50:36 -05:00
|
|
|
NULL, /* get_cpu_model_name */
|
2019-04-15 23:14:49 -04:00
|
|
|
NULL, /* get_user_language */
|
2020-02-14 00:17:55 +01:00
|
|
|
NULL, /* is_narrator_running */
|
|
|
|
NULL, /* accessibility_speak */
|
2021-12-14 15:07:42 +02:00
|
|
|
NULL, /* set_gamemode */
|
2021-01-16 16:14:03 +01:00
|
|
|
"orbis", /* ident */
|
|
|
|
NULL /* get_video_driver */
|
2018-12-27 20:17:48 +01:00
|
|
|
};
|