mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-26 01:30:51 +00:00
180 lines
4.2 KiB
C
180 lines
4.2 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2015 - 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 <string.h>
|
|
|
|
#include "frontend_driver.h"
|
|
#ifndef IS_SALAMANDER
|
|
#include "../driver.h"
|
|
#include "../verbosity.h"
|
|
#endif
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../config.h"
|
|
#endif
|
|
|
|
static frontend_ctx_driver_t *frontend_ctx_drivers[] = {
|
|
#if defined(__CELLOS_LV2__)
|
|
&frontend_ctx_ps3,
|
|
#endif
|
|
#if defined(_XBOX)
|
|
&frontend_ctx_xdk,
|
|
#endif
|
|
#if defined(GEKKO)
|
|
&frontend_ctx_gx,
|
|
#endif
|
|
#if defined(__QNX__)
|
|
&frontend_ctx_qnx,
|
|
#endif
|
|
#if defined(__APPLE__) && defined(__MACH__)
|
|
&frontend_ctx_darwin,
|
|
#endif
|
|
#if defined(__linux__)
|
|
&frontend_ctx_linux,
|
|
#endif
|
|
#if defined(PSP) || defined(VITA)
|
|
&frontend_ctx_psp,
|
|
#endif
|
|
#if defined(_3DS)
|
|
&frontend_ctx_ctr,
|
|
#endif
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
&frontend_ctx_win32,
|
|
#endif
|
|
#ifdef XENON
|
|
&frontend_ctx_xenon,
|
|
#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;
|
|
|
|
for (i = 0; frontend_ctx_drivers[i]; i++)
|
|
{
|
|
if (!strcmp(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)
|
|
{
|
|
unsigned i;
|
|
frontend_ctx_driver_t *frontend = NULL;
|
|
|
|
for (i = 0; frontend_ctx_drivers[i]; i++)
|
|
{
|
|
frontend = frontend_ctx_drivers[i];
|
|
break;
|
|
}
|
|
|
|
return frontend;
|
|
}
|
|
|
|
#ifndef IS_SALAMANDER
|
|
frontend_ctx_driver_t *frontend_get_ptr(void)
|
|
{
|
|
driver_t *driver = driver_get_ptr();
|
|
if (!driver)
|
|
return NULL;
|
|
return driver->frontend_ctx;
|
|
}
|
|
|
|
int frontend_driver_parse_drive_list(void *data)
|
|
{
|
|
frontend_ctx_driver_t *frontend = frontend_get_ptr();
|
|
|
|
if (!frontend || !frontend->parse_drive_list)
|
|
return -1;
|
|
return frontend->parse_drive_list(data);
|
|
}
|
|
|
|
void frontend_driver_content_loaded(void)
|
|
{
|
|
frontend_ctx_driver_t *frontend = frontend_get_ptr();
|
|
|
|
if (!frontend || !frontend->content_loaded)
|
|
return;
|
|
frontend->content_loaded();
|
|
}
|
|
|
|
void frontend_driver_set_fork(bool a, bool b)
|
|
{
|
|
frontend_ctx_driver_t *frontend = frontend_get_ptr();
|
|
|
|
if (!frontend || !frontend->set_fork)
|
|
return;
|
|
frontend->set_fork(a, b);
|
|
}
|
|
|
|
void frontend_driver_process_args(int *argc, char *argv[])
|
|
{
|
|
frontend_ctx_driver_t *frontend = frontend_get_ptr();
|
|
|
|
if (!frontend || !frontend->process_args)
|
|
return;
|
|
frontend->process_args(argc, argv);
|
|
}
|
|
|
|
bool frontend_driver_is_inited(void)
|
|
{
|
|
driver_t *driver = driver_get_ptr();
|
|
if (!driver->frontend_ctx)
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
void frontend_driver_init_first(void *args)
|
|
{
|
|
driver_t *driver = driver_get_ptr();
|
|
if (driver)
|
|
driver->frontend_ctx = (frontend_ctx_driver_t*)frontend_ctx_init_first();
|
|
|
|
if (!driver || !driver->frontend_ctx)
|
|
RARCH_WARN("Frontend context could not be initialized.\n");
|
|
|
|
if (driver->frontend_ctx && driver->frontend_ctx->init)
|
|
driver->frontend_ctx->init(args);
|
|
}
|
|
|
|
environment_get_t frontend_driver_environment_get_ptr(void)
|
|
{
|
|
driver_t *driver = driver_get_ptr();
|
|
if (!driver || !driver->frontend_ctx)
|
|
return NULL;
|
|
return driver->frontend_ctx->environment_get;
|
|
}
|
|
#endif
|