2013-07-26 20:58:47 +02:00
|
|
|
/* 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
|
2013-07-26 20:58:47 +02: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.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2020-01-27 16:39:36 +01:00
|
|
|
#include <stdio.h>
|
2013-07-26 20:58:47 +02:00
|
|
|
#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>
|
2020-01-27 16:39:36 +01:00
|
|
|
#include <retro_miscellaneous.h>
|
2019-04-15 23:14:49 -04:00
|
|
|
#include <libretro.h>
|
2016-02-03 15:23:13 +01:00
|
|
|
|
2013-07-26 20:58:47 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../config.h"
|
|
|
|
#endif
|
|
|
|
|
2020-09-05 12:44:56 +01:00
|
|
|
#if defined(_3DS)
|
|
|
|
#include <3ds.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-07 00:03:07 +02:00
|
|
|
#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 */
|
2020-11-23 21:29:26 +01:00
|
|
|
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 */
|
2020-02-14 00:17:55 +01:00
|
|
|
NULL, /* is_narrator_running */
|
|
|
|
NULL, /* accessibility_speak */
|
2020-01-06 15:35:35 +01:00
|
|
|
"null",
|
2020-01-15 09:11:17 +01:00
|
|
|
NULL, /* get_video_driver */
|
2020-01-06 15:35:35 +01:00
|
|
|
};
|
|
|
|
|
2015-07-27 03:44:28 +02:00
|
|
|
static frontend_ctx_driver_t *frontend_ctx_drivers[] = {
|
2016-08-10 23:03:51 +02:00
|
|
|
#if defined(EMSCRIPTEN)
|
|
|
|
&frontend_ctx_emscripten,
|
|
|
|
#elif defined(__CELLOS_LV2__)
|
2013-07-26 20:58:47 +02:00
|
|
|
&frontend_ctx_ps3,
|
|
|
|
#endif
|
|
|
|
#if defined(_XBOX)
|
|
|
|
&frontend_ctx_xdk,
|
|
|
|
#endif
|
|
|
|
#if defined(GEKKO)
|
|
|
|
&frontend_ctx_gx,
|
|
|
|
#endif
|
2016-10-27 15:33:40 +01:00
|
|
|
#if defined(WIIU)
|
2016-10-27 23:02:40 +01:00
|
|
|
&frontend_ctx_wiiu,
|
2016-10-27 15:33:40 +01:00
|
|
|
#endif
|
2013-07-27 17:16:46 +02:00
|
|
|
#if defined(__QNX__)
|
|
|
|
&frontend_ctx_qnx,
|
|
|
|
#endif
|
2015-04-20 17:19:51 +02:00
|
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
|
|
&frontend_ctx_darwin,
|
2013-11-03 16:38:56 +01:00
|
|
|
#endif
|
2017-06-19 17:38:49 +02:00
|
|
|
#if defined(__linux__) || (defined(BSD) && !defined(__MACH__))
|
|
|
|
&frontend_ctx_unix,
|
2016-07-08 02:13:19 +02:00
|
|
|
#endif
|
2015-09-02 13:07:13 +02:00
|
|
|
#if defined(PSP) || defined(VITA)
|
2014-02-12 18:17:54 +01:00
|
|
|
&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
|
2018-09-14 20:38:42 +02:00
|
|
|
#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,
|
2015-09-04 20:45:02 +02:00
|
|
|
#endif
|
2019-01-03 13:55:43 +01:00
|
|
|
#if defined(__WINRT__)
|
|
|
|
&frontend_ctx_uwp,
|
|
|
|
#endif
|
2015-09-04 20:45:02 +02:00
|
|
|
#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
|
2014-05-09 06:12:53 +02:00
|
|
|
&frontend_ctx_null,
|
2014-09-02 16:03:17 +02:00
|
|
|
NULL
|
2013-07-26 20:58:47 +02:00
|
|
|
};
|
|
|
|
|
2015-01-09 18:11:33 +01:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
**/
|
2015-07-27 03:44:28 +02:00
|
|
|
frontend_ctx_driver_t *frontend_ctx_find_driver(const char *ident)
|
2013-07-26 20:58:47 +02:00
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i;
|
2015-01-11 06:57:35 +01:00
|
|
|
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 0; frontend_ctx_drivers[i]; i++)
|
2013-07-26 20:58:47 +02:00
|
|
|
{
|
2016-09-16 17:25:47 +02:00
|
|
|
if (string_is_equal(frontend_ctx_drivers[i]->ident, ident))
|
2013-07-26 20:58:47 +02:00
|
|
|
return frontend_ctx_drivers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-01-09 18:11:33 +01:00
|
|
|
/**
|
|
|
|
* frontend_ctx_init_first:
|
|
|
|
*
|
|
|
|
* Finds first suitable driver and initialize.
|
|
|
|
*
|
2015-08-30 19:46:19 +02:00
|
|
|
* Returns: pointer to first suitable driver, otherwise NULL.
|
2015-01-09 18:11:33 +01:00
|
|
|
**/
|
2015-07-27 03:44:28 +02:00
|
|
|
frontend_ctx_driver_t *frontend_ctx_init_first(void)
|
2013-07-26 20:58:47 +02:00
|
|
|
{
|
2017-05-09 20:54:03 +02:00
|
|
|
return frontend_ctx_drivers[0];
|
2013-07-26 20:58:47 +02:00
|
|
|
}
|
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
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "dll");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(__APPLE__) || defined(__MACH__)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "dylib");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#else
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "so");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#if defined(__CELLOS_LV2__)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "self|bin");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(PSP)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "pbp");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(VITA)
|
2020-09-19 23:28:01 +02:00
|
|
|
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)
|
2020-09-19 23:28:01 +02:00
|
|
|
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)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "xbe");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(_XBOX360)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "xex");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(GEKKO)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "dol");
|
2016-02-03 14:36:34 +01:00
|
|
|
return true;
|
2017-01-25 19:52:31 +01:00
|
|
|
#elif defined(HW_WUP)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "rpx|elf");
|
2017-01-25 19:52:31 +01:00
|
|
|
return true;
|
2016-02-04 12:52:49 +01:00
|
|
|
#elif defined(__linux__)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "elf");
|
2016-02-04 12:52:49 +01:00
|
|
|
return true;
|
2018-09-15 02:29:40 +02:00
|
|
|
#elif defined(HAVE_LIBNX)
|
2020-09-19 23:28:01 +02:00
|
|
|
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)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "exe");
|
2020-05-12 17:39:04 +02:00
|
|
|
return true;
|
2016-10-08 01:47:15 +01:00
|
|
|
#elif defined(_3DS)
|
2018-05-09 15:55:48 -07:00
|
|
|
if (envIsHomebrew())
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "3dsx");
|
2018-05-09 15:55:48 -07:00
|
|
|
else
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "cia");
|
2016-10-08 01:47:15 +01:00
|
|
|
return true;
|
2016-02-03 14:36:34 +01:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-02-03 13:36:00 +01:00
|
|
|
bool frontend_driver_get_salamander_basename(char *s, size_t len)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_DYNAMIC
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
|
|
|
|
#if defined(__CELLOS_LV2__)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "EBOOT.BIN");
|
2016-02-03 13:36:00 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(PSP)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "EBOOT.PBP");
|
2016-02-03 13:36:00 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(VITA)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "eboot.bin");
|
2016-02-03 13:36:00 +01:00
|
|
|
return true;
|
2018-09-18 08:08:06 +02:00
|
|
|
#elif defined(PS2)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "eboot.elf");
|
2018-09-18 08:08:06 +02:00
|
|
|
return true;
|
2016-02-03 13:36:00 +01:00
|
|
|
#elif defined(_XBOX1)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "default.xbe");
|
2016-02-03 13:36:00 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(_XBOX360)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "default.xex");
|
2016-02-03 13:36:00 +01:00
|
|
|
return true;
|
|
|
|
#elif defined(HW_RVL)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "boot.dol");
|
2016-02-03 13:36:00 +01:00
|
|
|
return true;
|
2017-01-26 15:07:11 +01:00
|
|
|
#elif defined(HW_WUP)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "retroarch.rpx");
|
2017-01-26 15:07:11 +01:00
|
|
|
return true;
|
2016-10-08 01:47:15 +01:00
|
|
|
#elif defined(_3DS)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "retroarch.core");
|
2016-10-08 01:47:15 +01:00
|
|
|
return true;
|
2020-05-12 17:39:04 +02:00
|
|
|
#elif defined(DJGPP)
|
2020-09-19 23:28:01 +02:00
|
|
|
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)
|
2020-09-19 23:28:01 +02:00
|
|
|
strcpy_literal(s, "retroarch_switch.nro");
|
2018-09-15 02:29:40 +02:00
|
|
|
return true;
|
2016-02-03 13:36:00 +01:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|