RetroArch/frontend/frontend_driver.c

275 lines
6.9 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 01:50:59 +01:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-01-22 13:40:32 +01:00
* 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 <stdio.h>
#include <string.h>
2016-02-03 15:23:13 +01:00
#include <compat/strl.h>
2016-09-16 17:25:47 +02:00
#include <string/stdstring.h>
#include <retro_miscellaneous.h>
#include <libretro.h>
2016-02-03 15:23:13 +01:00
#ifdef HAVE_CONFIG_H
#include "../config.h"
#endif
#if defined(_3DS)
#include <3ds.h>
#endif
#include "frontend_driver.h"
2019-01-03 13:55:43 +01:00
#ifndef __WINRT__
#if defined(WINAPI_FAMILY) && WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
#define __WINRT__
#endif
#endif
2020-01-06 15:35:35 +01:00
static frontend_ctx_driver_t frontend_ctx_null = {
NULL, /* environment_get */
NULL, /* init */
NULL, /* deinit */
NULL, /* exitspawn */
NULL, /* process_args */
NULL, /* exec */
NULL, /* set_fork */
NULL, /* shutdown */
NULL, /* get_name */
NULL, /* get_os */
NULL, /* get_rating */
NULL, /* load_content */
NULL, /* get_architecture */
NULL, /* get_powerstate */
NULL, /* parse_drive_list */
NULL, /* get_mem_total */
NULL, /* get_mem_free */
NULL, /* install_signal_handler */
NULL, /* get_sighandler_state */
NULL, /* set_sighandler_state */
NULL, /* destroy_sighandler_state */
NULL, /* attach_console */
NULL, /* detach_console */
NULL, /* get_lakka_version */
NULL, /* set_screen_brightness */
2020-01-06 15:35:35 +01:00
NULL, /* watch_path_for_changes */
NULL, /* check_for_path_changes */
NULL, /* set_sustained_performance_mode */
NULL, /* get_cpu_model_name */
NULL, /* get_user_language */
NULL, /* is_narrator_running */
NULL, /* accessibility_speak */
2020-01-06 15:35:35 +01:00
"null",
NULL, /* get_video_driver */
2020-01-06 15:35:35 +01:00
};
static frontend_ctx_driver_t *frontend_ctx_drivers[] = {
#if defined(EMSCRIPTEN)
&frontend_ctx_emscripten,
#endif
#if defined(_XBOX)
&frontend_ctx_xdk,
#endif
#if defined(GEKKO)
&frontend_ctx_gx,
#endif
#if defined(WIIU)
2016-10-27 23:02:40 +01:00
&frontend_ctx_wiiu,
#endif
2013-07-27 17:16:46 +02:00
#if defined(__QNX__)
&frontend_ctx_qnx,
#endif
#if defined(__APPLE__) && defined(__MACH__)
&frontend_ctx_darwin,
2013-11-03 16:38:56 +01:00
#endif
#if defined(__linux__) || (defined(BSD) && !defined(__MACH__))
&frontend_ctx_unix,
2016-07-08 02:13:19 +02:00
#endif
#if defined(PSP) || defined(VITA)
&frontend_ctx_psp,
2015-04-01 22:14:13 +01:00
#endif
2018-09-18 08:08:06 +02:00
#if defined(PS2)
2018-10-17 19:02:50 +02:00
&frontend_ctx_ps2,
2018-09-18 08:08:06 +02:00
#endif
2015-04-01 22:14:13 +01:00
#if defined(_3DS)
&frontend_ctx_ctr,
2015-04-07 21:51:57 +02:00
#endif
#if defined(SWITCH) && defined(HAVE_LIBNX)
&frontend_ctx_switch,
#endif
2019-01-03 13:55:43 +01:00
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
2015-04-07 22:12:28 +02:00
&frontend_ctx_win32,
#endif
2019-01-03 13:55:43 +01:00
#if defined(__WINRT__)
&frontend_ctx_uwp,
#endif
#ifdef XENON
&frontend_ctx_xenon,
2017-01-24 00:55:55 -05:00
#endif
#ifdef DJGPP
&frontend_ctx_dos,
2018-09-14 23:50:08 -07:00
#endif
#ifdef SWITCH
&frontend_ctx_switch,
2018-12-31 14:16:27 +01:00
#endif
#if defined(ORBIS)
&frontend_ctx_orbis,
2013-07-27 17:40:21 +02:00
#endif
&frontend_ctx_null,
NULL
};
/**
* frontend_ctx_find_driver:
* @ident : Identifier name of driver to find.
*
* Finds driver with @ident. Does not initialize.
*
* Returns: pointer to driver if successful, otherwise NULL.
**/
frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident)
{
unsigned i;
2015-01-11 06:57:35 +01:00
for (i = 0; frontend_ctx_drivers[i]; i++)
{
2016-09-16 17:25:47 +02:00
if (string_is_equal(frontend_ctx_drivers[i]->ident, ident))
return frontend_ctx_drivers[i];
}
return NULL;
}
/**
* frontend_ctx_init_first:
*
* Finds first suitable driver and initialize.
*
* Returns: pointer to first suitable driver, otherwise NULL.
**/
frontend_ctx_driver_t *frontend_ctx_init_first(void)
{
return frontend_ctx_drivers[0];
}
2015-04-08 00:08:53 +02:00
2016-02-03 14:36:34 +01:00
bool frontend_driver_get_core_extension(char *s, size_t len)
{
#ifdef HAVE_DYNAMIC
#ifdef _WIN32
strcpy_literal(s, "dll");
2016-02-03 14:36:34 +01:00
return true;
#elif defined(__APPLE__) || defined(__MACH__)
strcpy_literal(s, "dylib");
2016-02-03 14:36:34 +01:00
return true;
#else
strcpy_literal(s, "so");
2016-02-03 14:36:34 +01:00
return true;
#endif
#else
#if defined(__PSL1GHT__)
strcpy_literal(s, "self|bin");
2016-02-03 14:36:34 +01:00
return true;
#elif defined(PSP)
strcpy_literal(s, "pbp");
2016-02-03 14:36:34 +01:00
return true;
#elif defined(VITA)
strcpy_literal(s, "self|bin");
2016-02-03 14:36:34 +01:00
return true;
2018-09-18 08:08:06 +02:00
#elif defined(PS2)
strcpy_literal(s, "elf");
2018-09-18 08:08:06 +02:00
return true;
2016-02-03 14:36:34 +01:00
#elif defined(_XBOX1)
strcpy_literal(s, "xbe");
2016-02-03 14:36:34 +01:00
return true;
#elif defined(_XBOX360)
strcpy_literal(s, "xex");
2016-02-03 14:36:34 +01:00
return true;
#elif defined(GEKKO)
strcpy_literal(s, "dol");
2016-02-03 14:36:34 +01:00
return true;
#elif defined(HW_WUP)
strcpy_literal(s, "rpx|elf");
return true;
#elif defined(__linux__)
strcpy_literal(s, "elf");
return true;
2018-09-15 02:29:40 +02:00
#elif defined(HAVE_LIBNX)
strcpy_literal(s, "nro");
2018-09-15 02:29:40 +02:00
return true;
2020-05-12 17:39:04 +02:00
#elif defined(DJGPP)
strcpy_literal(s, "exe");
2020-05-12 17:39:04 +02:00
return true;
#elif defined(_3DS)
if (envIsHomebrew())
strcpy_literal(s, "3dsx");
else
strcpy_literal(s, "cia");
return true;
2016-02-03 14:36:34 +01:00
#else
return false;
#endif
#endif
}
bool frontend_driver_get_salamander_basename(char *s, size_t len)
{
#ifdef HAVE_DYNAMIC
return false;
#else
#if defined(__PSL1GHT__)
strcpy_literal(s, "EBOOT.BIN");
return true;
#elif defined(PSP)
strcpy_literal(s, "EBOOT.PBP");
return true;
#elif defined(VITA)
strcpy_literal(s, "eboot.bin");
return true;
2018-09-18 08:08:06 +02:00
#elif defined(PS2)
strcpy_literal(s, "eboot.elf");
2018-09-18 08:08:06 +02:00
return true;
#elif defined(_XBOX1)
strcpy_literal(s, "default.xbe");
return true;
#elif defined(_XBOX360)
strcpy_literal(s, "default.xex");
return true;
#elif defined(HW_RVL)
strcpy_literal(s, "boot.dol");
return true;
#elif defined(HW_WUP)
strcpy_literal(s, "retroarch.rpx");
return true;
#elif defined(_3DS)
strcpy_literal(s, "retroarch.core");
return true;
2020-05-12 17:39:04 +02:00
#elif defined(DJGPP)
strcpy_literal(s, "retrodos.exe");
2020-05-12 17:39:04 +02:00
return true;
2018-09-15 02:29:40 +02:00
#elif defined(SWITCH)
strcpy_literal(s, "retroarch_switch.nro");
2018-09-15 02:29:40 +02:00
return true;
#else
return false;
#endif
#endif
}