RetroArch/frontend/frontend_driver.c

124 lines
2.8 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 16:46:50 +00:00
* 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>
2015-09-05 18:34:22 +00:00
#include "../driver.h"
#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
2013-07-27 15:16:46 +00:00
#if defined(__QNX__)
&frontend_ctx_qnx,
#endif
#if defined(__APPLE__) && defined(__MACH__)
&frontend_ctx_darwin,
2013-11-03 15:38:56 +00:00
#endif
#if defined(ANDROID)
&frontend_ctx_android,
#endif
#if defined(__linux__) && !defined(ANDROID)
&frontend_ctx_linux,
#endif
#if defined(PSP) || defined(VITA)
&frontend_ctx_psp,
2015-04-01 21:14:13 +00:00
#endif
#if defined(_3DS)
&frontend_ctx_ctr,
2015-04-07 19:51:57 +00:00
#endif
#if defined(_WIN32) && !defined(_XBOX)
2015-04-07 20:12:28 +00:00
&frontend_ctx_win32,
#endif
#ifdef XENON
&frontend_ctx_xenon,
2013-07-27 15:40:21 +00: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 05:57:35 +00:00
for (i = 0; frontend_ctx_drivers[i]; i++)
{
2015-06-15 04:01:54 +00:00
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;
2015-01-11 05:57:35 +00:00
for (i = 0; frontend_ctx_drivers[i]; i++)
2015-04-11 22:24:20 +00:00
{
frontend = frontend_ctx_drivers[i];
break;
}
2015-04-11 22:24:20 +00:00
return frontend;
}
2015-04-07 22:08:53 +00:00
2015-04-10 05:46:54 +00:00
#ifndef IS_SALAMANDER
frontend_ctx_driver_t *frontend_get_ptr(void)
2015-04-07 22:08:53 +00:00
{
driver_t *driver = driver_get_ptr();
if (!driver)
return NULL;
return driver->frontend_ctx;
}
2015-06-15 20:45:02 +00:00
int frontend_driver_parse_drive_list(void *data)
{
frontend_ctx_driver_t *frontend = frontend_get_ptr();
2015-06-15 20:45:02 +00:00
if (!frontend || !frontend->parse_drive_list)
return -1;
return frontend->parse_drive_list(data);
}
2015-06-15 20:47:20 +00:00
#endif