2012-04-21 23:13:50 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2010-12-24 01:33:40 +01:00
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2010-12-24 01:33:40 +01:00
|
|
|
* 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.
|
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2010-12-24 01:33:40 +01:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 23:31:57 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2010-12-24 01:33:40 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#include "driver.h"
|
|
|
|
#include "general.h"
|
2015-01-09 17:40:47 +01:00
|
|
|
#include "retroarch.h"
|
2015-03-15 02:47:23 +01:00
|
|
|
#include "runloop.h"
|
2012-03-16 23:26:57 +01:00
|
|
|
#include "compat/posix_string.h"
|
2015-01-18 18:28:14 +01:00
|
|
|
#include "gfx/video_monitor.h"
|
2015-01-18 18:47:53 +01:00
|
|
|
#include "audio/audio_monitor.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
|
2014-05-30 17:49:04 +02:00
|
|
|
#ifdef HAVE_MENU
|
2015-01-10 04:53:37 +01:00
|
|
|
#include "menu/menu.h"
|
2014-05-30 17:49:04 +02:00
|
|
|
#endif
|
|
|
|
|
2011-01-07 17:59:53 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2010-12-30 03:02:30 +01:00
|
|
|
#include "config.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
#endif
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2015-05-19 13:58:22 -03:00
|
|
|
static driver_t *g_driver = NULL;
|
2015-03-22 01:16:57 +01:00
|
|
|
|
|
|
|
void driver_free(void)
|
|
|
|
{
|
2015-05-19 13:58:22 -03:00
|
|
|
if (g_driver)
|
|
|
|
free(g_driver);
|
2015-03-22 01:16:57 +01:00
|
|
|
|
2015-05-19 13:58:22 -03:00
|
|
|
g_driver = NULL;
|
2015-03-22 01:16:57 +01:00
|
|
|
}
|
|
|
|
|
2015-03-22 03:41:20 +01:00
|
|
|
static driver_t *driver_new(void)
|
2015-03-22 01:16:57 +01:00
|
|
|
{
|
|
|
|
driver_t *driver = (driver_t*)calloc(1, sizeof(driver_t));
|
|
|
|
|
|
|
|
if (!driver)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return driver;
|
|
|
|
}
|
|
|
|
|
|
|
|
void driver_clear_state(void)
|
|
|
|
{
|
|
|
|
driver_free();
|
2015-03-22 03:41:20 +01:00
|
|
|
g_driver = driver_new();
|
2015-03-22 01:16:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
driver_t *driver_get_ptr(void)
|
|
|
|
{
|
|
|
|
return g_driver;
|
|
|
|
}
|
2014-09-02 04:43:31 +02:00
|
|
|
|
2015-01-08 03:40:43 +01:00
|
|
|
/**
|
|
|
|
* find_driver_nonempty:
|
|
|
|
* @label : string of driver type to be found.
|
|
|
|
* @i : index of driver.
|
|
|
|
* @str : identifier name of the found driver
|
|
|
|
* gets written to this string.
|
|
|
|
* @sizeof_str : size of @str.
|
|
|
|
*
|
|
|
|
* Find driver based on @label.
|
|
|
|
*
|
|
|
|
* Returns: NULL if no driver based on @label found, otherwise
|
|
|
|
* pointer to driver.
|
|
|
|
**/
|
2014-08-31 19:06:32 +02:00
|
|
|
static const void *find_driver_nonempty(const char *label, int i,
|
2014-08-26 21:13:14 +02:00
|
|
|
char *str, size_t sizeof_str)
|
2014-08-13 08:55:29 +02:00
|
|
|
{
|
2014-10-14 18:42:47 +02:00
|
|
|
const void *drv = NULL;
|
2014-08-26 20:32:48 +02:00
|
|
|
|
2014-08-31 19:06:32 +02:00
|
|
|
if (!strcmp(label, "camera_driver"))
|
2014-08-26 20:32:48 +02:00
|
|
|
{
|
2015-01-12 17:03:01 +01:00
|
|
|
drv = camera_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 17:03:01 +01:00
|
|
|
strlcpy(str, camera_driver_find_ident(i), sizeof_str);
|
2014-08-31 19:06:32 +02:00
|
|
|
}
|
|
|
|
else if (!strcmp(label, "location_driver"))
|
|
|
|
{
|
2015-01-12 17:05:54 +01:00
|
|
|
drv = location_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 17:05:54 +01:00
|
|
|
strlcpy(str, location_driver_find_ident(i), sizeof_str);
|
2014-08-31 19:06:32 +02:00
|
|
|
}
|
2014-08-26 20:32:48 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-08-31 19:06:32 +02:00
|
|
|
else if (!strcmp(label, "menu_driver"))
|
|
|
|
{
|
2015-01-12 17:08:22 +01:00
|
|
|
drv = menu_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 17:08:22 +01:00
|
|
|
strlcpy(str, menu_driver_find_ident(i), sizeof_str);
|
2014-08-31 19:06:32 +02:00
|
|
|
}
|
2014-08-26 20:32:48 +02:00
|
|
|
#endif
|
2014-08-31 19:06:32 +02:00
|
|
|
else if (!strcmp(label, "input_driver"))
|
|
|
|
{
|
2015-01-12 16:56:11 +01:00
|
|
|
drv = input_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 16:56:11 +01:00
|
|
|
strlcpy(str, input_driver_find_ident(i), sizeof_str);
|
2014-08-31 19:06:32 +02:00
|
|
|
}
|
2014-10-03 01:40:47 +01:00
|
|
|
else if (!strcmp(label, "input_joypad_driver"))
|
|
|
|
{
|
2015-01-12 17:14:06 +01:00
|
|
|
drv = joypad_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 17:14:06 +01:00
|
|
|
strlcpy(str, joypad_driver_find_ident(i), sizeof_str);
|
2014-10-03 01:40:47 +01:00
|
|
|
}
|
2014-08-31 19:06:32 +02:00
|
|
|
else if (!strcmp(label, "video_driver"))
|
|
|
|
{
|
2015-01-12 16:49:37 +01:00
|
|
|
drv = video_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 16:49:37 +01:00
|
|
|
strlcpy(str, video_driver_find_ident(i), sizeof_str);
|
2014-08-31 19:06:32 +02:00
|
|
|
}
|
|
|
|
else if (!strcmp(label, "audio_driver"))
|
|
|
|
{
|
2015-01-12 16:52:10 +01:00
|
|
|
drv = audio_driver_find_handle(i);
|
2014-10-14 18:42:47 +02:00
|
|
|
if (drv)
|
2015-01-12 16:52:10 +01:00
|
|
|
strlcpy(str, audio_driver_find_ident(i), sizeof_str);
|
2014-08-26 20:55:24 +02:00
|
|
|
}
|
2015-04-15 13:37:38 +02:00
|
|
|
else if (!strcmp(label, "record_driver"))
|
|
|
|
{
|
|
|
|
drv = record_driver_find_handle(i);
|
|
|
|
if (drv)
|
|
|
|
strlcpy(str, record_driver_find_ident(i), sizeof_str);
|
|
|
|
}
|
2015-01-12 21:12:48 +01:00
|
|
|
else if (!strcmp(label, "audio_resampler_driver"))
|
|
|
|
{
|
|
|
|
drv = audio_resampler_driver_find_handle(i);
|
|
|
|
if (drv)
|
|
|
|
strlcpy(str, audio_resampler_driver_find_ident(i), sizeof_str);
|
|
|
|
}
|
2014-08-26 21:13:14 +02:00
|
|
|
|
2014-10-14 18:42:47 +02:00
|
|
|
return drv;
|
2014-08-26 20:55:24 +02:00
|
|
|
}
|
|
|
|
|
2015-01-08 03:40:43 +01:00
|
|
|
/**
|
|
|
|
* find_driver_index:
|
|
|
|
* @label : string of driver type to be found.
|
|
|
|
* @drv : identifier of driver to be found.
|
|
|
|
*
|
|
|
|
* Find index of the driver, based on @label.
|
|
|
|
*
|
|
|
|
* Returns: -1 if no driver based on @label and @drv found, otherwise
|
|
|
|
* index number of the driver found in the array.
|
|
|
|
**/
|
2015-01-12 18:06:38 +01:00
|
|
|
int find_driver_index(const char * label, const char *drv)
|
2014-08-26 20:55:24 +02:00
|
|
|
{
|
|
|
|
unsigned i;
|
2015-01-09 18:04:29 +01:00
|
|
|
char str[PATH_MAX_LENGTH];
|
2014-10-01 13:04:58 +02:00
|
|
|
const void *obj = NULL;
|
2014-08-31 19:06:32 +02:00
|
|
|
|
2014-10-01 13:32:41 +02:00
|
|
|
for (i = 0; (obj = (const void*)
|
|
|
|
find_driver_nonempty(label, i, str, sizeof(str))) != NULL; i++)
|
2014-08-26 20:55:24 +02:00
|
|
|
{
|
2014-08-31 19:06:32 +02:00
|
|
|
if (!obj)
|
|
|
|
return -1;
|
|
|
|
if (str[0] == '\0')
|
2014-08-26 20:32:48 +02:00
|
|
|
break;
|
2014-10-14 18:42:47 +02:00
|
|
|
if (!strcasecmp(drv, str))
|
2014-08-31 19:06:32 +02:00
|
|
|
return i;
|
2014-08-26 20:32:48 +02:00
|
|
|
}
|
|
|
|
|
2014-08-13 08:55:29 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-03-09 14:32:58 +01:00
|
|
|
bool find_first_driver(const char *label, char *str, size_t sizeof_str)
|
|
|
|
{
|
|
|
|
find_driver_nonempty(label, 0, str, sizeof_str);
|
|
|
|
return true;
|
|
|
|
}
|
2015-01-12 16:49:37 +01:00
|
|
|
|
2015-01-08 03:40:43 +01:00
|
|
|
/**
|
|
|
|
* find_prev_driver:
|
|
|
|
* @label : string of driver type to be found.
|
|
|
|
* @str : identifier of driver to be found.
|
|
|
|
* @sizeof_str : size of @str.
|
|
|
|
*
|
|
|
|
* Find previous driver in driver array.
|
|
|
|
**/
|
2015-03-09 04:22:41 +01:00
|
|
|
bool find_prev_driver(const char *label, char *str, size_t sizeof_str)
|
2014-08-26 22:26:23 +02:00
|
|
|
{
|
2014-08-31 19:06:32 +02:00
|
|
|
int i = find_driver_index(label, str);
|
2014-08-26 22:26:23 +02:00
|
|
|
if (i > 0)
|
2014-08-31 19:06:32 +02:00
|
|
|
find_driver_nonempty(label, i - 1, str, sizeof_str);
|
2014-08-26 22:26:23 +02:00
|
|
|
else
|
2015-03-09 04:22:41 +01:00
|
|
|
{
|
2014-10-01 13:32:41 +02:00
|
|
|
RARCH_WARN(
|
|
|
|
"Couldn't find any previous driver (current one: \"%s\").\n", str);
|
2015-03-09 04:22:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2014-08-26 22:26:23 +02:00
|
|
|
}
|
|
|
|
|
2015-01-08 03:40:43 +01:00
|
|
|
/**
|
|
|
|
* find_next_driver:
|
|
|
|
* @label : string of driver type to be found.
|
|
|
|
* @str : identifier of driver to be found.
|
|
|
|
* @sizeof_str : size of @str.
|
|
|
|
*
|
|
|
|
* Find next driver in driver array.
|
|
|
|
**/
|
2015-03-09 04:22:41 +01:00
|
|
|
bool find_next_driver(const char *label, char *str, size_t sizeof_str)
|
2014-08-26 22:26:23 +02:00
|
|
|
{
|
2014-08-31 19:06:32 +02:00
|
|
|
int i = find_driver_index(label, str);
|
2015-03-09 14:32:58 +01:00
|
|
|
if (i >= 0 && (strcmp(str, "null") != 0))
|
2014-08-31 19:06:32 +02:00
|
|
|
find_driver_nonempty(label, i + 1, str, sizeof_str);
|
2014-08-26 22:26:23 +02:00
|
|
|
else
|
2015-03-09 04:22:41 +01:00
|
|
|
{
|
2014-08-26 22:26:23 +02:00
|
|
|
RARCH_WARN("Couldn't find any next driver (current one: \"%s\").\n", str);
|
2015-03-09 04:22:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2014-08-26 22:26:23 +02:00
|
|
|
}
|
|
|
|
|
2015-01-12 05:37:52 +01:00
|
|
|
/**
|
|
|
|
* init_drivers_pre:
|
|
|
|
*
|
|
|
|
* Attempts to find a default driver for
|
|
|
|
* all driver types.
|
|
|
|
*
|
|
|
|
* Should be run before init_drivers().
|
|
|
|
**/
|
2012-04-01 19:38:50 +02:00
|
|
|
void init_drivers_pre(void)
|
|
|
|
{
|
|
|
|
find_audio_driver();
|
|
|
|
find_video_driver();
|
|
|
|
find_input_driver();
|
2013-11-11 14:26:57 +01:00
|
|
|
find_camera_driver();
|
2013-12-19 01:51:51 +01:00
|
|
|
find_location_driver();
|
2014-05-26 23:20:00 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-05-26 23:18:49 +02:00
|
|
|
find_menu_driver();
|
2014-05-26 23:20:00 +02:00
|
|
|
#endif
|
2012-04-01 19:38:50 +02:00
|
|
|
}
|
|
|
|
|
2015-01-18 19:32:40 +01:00
|
|
|
static void driver_adjust_system_rates(void)
|
2012-08-12 00:40:21 +02:00
|
|
|
{
|
2015-03-21 04:43:18 +01:00
|
|
|
global_t *global = global_get_ptr();
|
2015-03-21 22:04:34 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-03-21 04:43:18 +01:00
|
|
|
|
2015-01-18 18:47:53 +01:00
|
|
|
audio_monitor_adjust_system_rates();
|
2015-01-18 18:28:14 +01:00
|
|
|
video_monitor_adjust_system_rates();
|
2015-01-18 19:01:13 +01:00
|
|
|
|
2015-03-21 22:04:34 +01:00
|
|
|
if (!driver->video_data)
|
2015-01-18 19:01:13 +01:00
|
|
|
return;
|
|
|
|
|
2015-03-21 04:43:18 +01:00
|
|
|
if (global->system.force_nonblock)
|
2015-04-13 11:26:02 +02:00
|
|
|
event_command(EVENT_CMD_VIDEO_SET_NONBLOCKING_STATE);
|
2015-01-18 19:01:13 +01:00
|
|
|
else
|
2015-03-21 22:04:34 +01:00
|
|
|
driver_set_nonblock_state(driver->nonblock_state);
|
2015-01-18 19:01:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* driver_set_refresh_rate:
|
|
|
|
* @hz : New refresh rate for monitor.
|
|
|
|
*
|
|
|
|
* Sets monitor refresh rate to new value by calling
|
|
|
|
* video_monitor_set_refresh_rate(). Subsequently
|
|
|
|
* calls audio_monitor_set_refresh_rate().
|
|
|
|
**/
|
|
|
|
void driver_set_refresh_rate(float hz)
|
|
|
|
{
|
|
|
|
video_monitor_set_refresh_rate(hz);
|
|
|
|
audio_monitor_set_refresh_rate();
|
2015-01-18 19:08:07 +01:00
|
|
|
driver_adjust_system_rates();
|
2013-04-14 00:53:05 +02:00
|
|
|
}
|
2013-01-05 06:02:02 +01:00
|
|
|
|
2015-01-12 05:37:52 +01:00
|
|
|
/**
|
|
|
|
* driver_set_nonblock_state:
|
|
|
|
* @enable : Enable nonblock state?
|
|
|
|
*
|
|
|
|
* Sets audio and video drivers to nonblock state.
|
|
|
|
*
|
|
|
|
* If @enable is false, sets blocking state for both
|
|
|
|
* audio and video drivers instead.
|
|
|
|
**/
|
|
|
|
void driver_set_nonblock_state(bool enable)
|
2013-04-14 00:53:05 +02:00
|
|
|
{
|
2015-03-20 20:43:22 +01:00
|
|
|
settings_t *settings = config_get_ptr();
|
2015-03-21 04:43:18 +01:00
|
|
|
global_t *global = global_get_ptr();
|
2015-03-21 22:04:34 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-03-20 20:43:22 +01:00
|
|
|
|
2014-09-02 04:43:31 +02:00
|
|
|
/* Only apply non-block-state for video if we're using vsync. */
|
2015-03-21 22:04:34 +01:00
|
|
|
if (driver->video_active && driver->video_data)
|
2013-04-14 00:53:05 +02:00
|
|
|
{
|
2015-01-12 05:37:52 +01:00
|
|
|
bool video_nonblock = enable;
|
|
|
|
|
2015-03-21 04:43:18 +01:00
|
|
|
if (!settings->video.vsync || global->system.force_nonblock)
|
2014-10-01 13:04:58 +02:00
|
|
|
video_nonblock = true;
|
2015-03-22 10:29:13 +01:00
|
|
|
video_driver_set_nonblock_state(video_nonblock);
|
2013-04-14 00:53:05 +02:00
|
|
|
}
|
|
|
|
|
2015-05-19 21:18:07 +02:00
|
|
|
audio_driver_set_nonblocking_state(enable);
|
2012-08-12 00:40:21 +02:00
|
|
|
}
|
|
|
|
|
2015-01-09 21:07:32 +01:00
|
|
|
/**
|
|
|
|
* driver_update_system_av_info:
|
|
|
|
* @info : pointer to new A/V info
|
|
|
|
*
|
|
|
|
* Update the system Audio/Video information.
|
|
|
|
* Will reinitialize audio/video drivers.
|
|
|
|
* Used by RETRO_ENVIRONMENT_SET_SYSTEM_AV_INFO.
|
|
|
|
*
|
|
|
|
* Returns: true (1) if successful, otherwise false (0).
|
|
|
|
**/
|
2014-02-20 22:48:31 +01:00
|
|
|
bool driver_update_system_av_info(const struct retro_system_av_info *info)
|
|
|
|
{
|
2015-03-21 04:43:18 +01:00
|
|
|
global_t *global = global_get_ptr();
|
2015-03-21 22:04:34 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
2015-03-21 04:43:18 +01:00
|
|
|
|
|
|
|
global->system.av_info = *info;
|
2015-04-13 11:26:02 +02:00
|
|
|
event_command(EVENT_CMD_REINIT);
|
2014-08-02 03:56:19 +02:00
|
|
|
|
2014-09-02 04:43:31 +02:00
|
|
|
/* Cannot continue recording with different parameters.
|
|
|
|
* Take the easiest route out and just restart the recording. */
|
2015-03-21 22:04:34 +01:00
|
|
|
if (driver->recording_data)
|
2014-02-20 22:48:31 +01:00
|
|
|
{
|
2014-08-12 05:28:43 +02:00
|
|
|
static const char *msg = "Restarting recording due to driver reinit.";
|
2015-03-15 02:47:23 +01:00
|
|
|
rarch_main_msg_queue_push(msg, 2, 180, false);
|
2014-02-20 22:48:31 +01:00
|
|
|
RARCH_WARN("%s\n", msg);
|
2015-04-13 11:26:02 +02:00
|
|
|
event_command(EVENT_CMD_RECORD_DEINIT);
|
|
|
|
event_command(EVENT_CMD_RECORD_INIT);
|
2014-02-20 22:48:31 +01:00
|
|
|
}
|
2014-08-12 05:28:43 +02:00
|
|
|
|
2014-02-20 22:48:31 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-27 05:38:27 +02:00
|
|
|
/**
|
|
|
|
* menu_update_libretro_info:
|
|
|
|
*
|
|
|
|
* Update menu state which depends on config.
|
|
|
|
**/
|
|
|
|
static void menu_update_libretro_info(void)
|
|
|
|
{
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
struct retro_system_info *info = global ? &global->menu.info : NULL;
|
|
|
|
|
|
|
|
if (!global || !info)
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifndef HAVE_DYNAMIC
|
|
|
|
retro_get_system_info(info);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
event_command(EVENT_CMD_CORE_INFO_INIT);
|
|
|
|
event_command(EVENT_CMD_LOAD_CORE_PERSIST);
|
|
|
|
}
|
|
|
|
|
2015-01-12 05:37:52 +01:00
|
|
|
/**
|
|
|
|
* init_drivers:
|
|
|
|
* @flags : Bitmask of drivers to initialize.
|
|
|
|
*
|
|
|
|
* Initializes drivers.
|
|
|
|
* @flags determines which drivers get initialized.
|
|
|
|
**/
|
2014-10-08 05:49:04 +01:00
|
|
|
void init_drivers(int flags)
|
2014-10-03 12:51:02 +02:00
|
|
|
{
|
2015-05-09 10:41:36 +02:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
runloop_t *runloop = rarch_main_get_ptr();
|
2015-03-21 22:04:34 +01:00
|
|
|
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_VIDEO)
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->video_data_own = false;
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_AUDIO)
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->audio_data_own = false;
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_INPUT)
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->input_data_own = false;
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_CAMERA)
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->camera_data_own = false;
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_LOCATION)
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->location_data_own = false;
|
2014-10-08 05:49:04 +01:00
|
|
|
|
2014-10-03 12:51:02 +02:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
/* By default, we want the menu to persist through driver reinits. */
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->menu_data_own = true;
|
2014-10-03 12:51:02 +02:00
|
|
|
#endif
|
|
|
|
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & (DRIVER_VIDEO | DRIVER_AUDIO))
|
2015-01-18 18:28:14 +01:00
|
|
|
driver_adjust_system_rates();
|
2014-10-03 12:51:02 +02:00
|
|
|
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_VIDEO)
|
|
|
|
{
|
2015-05-09 10:41:36 +02:00
|
|
|
runloop->measure_data.frame_time_samples_count = 0;
|
|
|
|
|
2015-01-18 22:48:34 +01:00
|
|
|
init_video();
|
2014-10-03 12:51:02 +02:00
|
|
|
|
2015-03-21 22:04:34 +01:00
|
|
|
if (!driver->video_cache_context_ack
|
2015-03-21 04:43:18 +01:00
|
|
|
&& global->system.hw_render_callback.context_reset)
|
|
|
|
global->system.hw_render_callback.context_reset();
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->video_cache_context_ack = false;
|
2014-10-03 12:51:02 +02:00
|
|
|
|
2015-03-21 04:43:18 +01:00
|
|
|
global->system.frame_time_last = 0;
|
2014-10-08 05:49:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & DRIVER_AUDIO)
|
|
|
|
init_audio();
|
2014-10-03 12:51:02 +02:00
|
|
|
|
|
|
|
/* Only initialize camera driver if we're ever going to use it. */
|
2015-03-21 22:04:34 +01:00
|
|
|
if ((flags & DRIVER_CAMERA) && driver->camera_active)
|
2014-10-03 12:51:02 +02:00
|
|
|
init_camera();
|
|
|
|
|
|
|
|
/* Only initialize location driver if we're ever going to use it. */
|
2015-03-21 22:04:34 +01:00
|
|
|
if ((flags & DRIVER_LOCATION) && driver->location_active)
|
2014-10-03 12:51:02 +02:00
|
|
|
init_location();
|
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
2015-04-27 04:03:44 +02:00
|
|
|
menu_update_libretro_info();
|
|
|
|
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_MENU)
|
2015-03-22 06:29:51 +01:00
|
|
|
{
|
2014-10-08 05:49:04 +01:00
|
|
|
init_menu();
|
2015-04-27 04:03:44 +02:00
|
|
|
menu_driver_context_reset();
|
2015-03-22 06:29:51 +01:00
|
|
|
}
|
2014-10-03 12:51:02 +02:00
|
|
|
#endif
|
|
|
|
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & (DRIVER_VIDEO | DRIVER_AUDIO))
|
|
|
|
{
|
|
|
|
/* Keep non-throttled state as good as possible. */
|
2015-03-21 22:04:34 +01:00
|
|
|
if (driver->nonblock_state)
|
|
|
|
driver_set_nonblock_state(driver->nonblock_state);
|
2014-10-08 05:49:04 +01:00
|
|
|
}
|
2014-10-03 12:51:02 +02:00
|
|
|
}
|
|
|
|
|
2014-09-12 17:18:44 -03:00
|
|
|
|
2015-01-12 05:37:52 +01:00
|
|
|
/**
|
|
|
|
* uninit_drivers:
|
|
|
|
* @flags : Bitmask of drivers to deinitialize.
|
|
|
|
*
|
|
|
|
* Deinitializes drivers.
|
|
|
|
* @flags determines which drivers get deinitialized.
|
|
|
|
**/
|
2014-10-08 05:49:04 +01:00
|
|
|
void uninit_drivers(int flags)
|
2014-10-03 12:51:02 +02:00
|
|
|
{
|
2015-03-21 22:04:34 +01:00
|
|
|
driver_t *driver = driver_get_ptr();
|
|
|
|
|
2014-10-03 12:51:02 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-10-08 05:49:04 +01:00
|
|
|
if (flags & DRIVER_MENU)
|
2014-10-03 12:51:02 +02:00
|
|
|
{
|
2015-04-11 05:28:40 +02:00
|
|
|
menu_driver_context_destroy();
|
|
|
|
|
|
|
|
if (!driver->menu_data_own)
|
|
|
|
{
|
|
|
|
menu_free(driver->menu);
|
|
|
|
driver->menu = NULL;
|
|
|
|
}
|
2014-10-03 12:51:02 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-10 18:46:24 -03:00
|
|
|
if ((flags & DRIVER_LOCATION) && !driver->location_data_own)
|
|
|
|
{
|
|
|
|
uninit_location();
|
|
|
|
driver->location_data = NULL;
|
|
|
|
}
|
2014-10-03 12:51:02 +02:00
|
|
|
|
2015-03-21 22:04:34 +01:00
|
|
|
if ((flags & DRIVER_CAMERA) && !driver->camera_data_own)
|
2014-10-03 12:51:02 +02:00
|
|
|
{
|
|
|
|
uninit_camera();
|
2015-03-21 22:04:34 +01:00
|
|
|
driver->camera_data = NULL;
|
2014-10-03 12:51:02 +02:00
|
|
|
}
|
|
|
|
|
2015-05-10 18:46:24 -03:00
|
|
|
if (flags & DRIVER_AUDIO)
|
|
|
|
uninit_audio();
|
|
|
|
|
|
|
|
if (flags & DRIVERS_VIDEO_INPUT)
|
|
|
|
uninit_video_input();
|
|
|
|
|
|
|
|
if (flags & DRIVER_VIDEO)
|
2014-10-03 12:51:02 +02:00
|
|
|
{
|
2015-05-10 18:46:24 -03:00
|
|
|
global_t *global = global_get_ptr();
|
|
|
|
|
|
|
|
if (global->system.hw_render_callback.context_destroy &&
|
|
|
|
!driver->video_cache_context)
|
|
|
|
global->system.hw_render_callback.context_destroy();
|
2014-10-03 12:51:02 +02:00
|
|
|
}
|
2015-05-10 18:46:24 -03:00
|
|
|
|
|
|
|
if ((flags & DRIVER_VIDEO) && !driver->video_data_own)
|
|
|
|
driver->video_data = NULL;
|
|
|
|
|
2015-03-21 22:04:34 +01:00
|
|
|
if ((flags & DRIVER_INPUT) && !driver->input_data_own)
|
|
|
|
driver->input_data = NULL;
|
2014-10-03 12:51:02 +02:00
|
|
|
|
2015-03-21 22:04:34 +01:00
|
|
|
if ((flags & DRIVER_AUDIO) && !driver->audio_data_own)
|
|
|
|
driver->audio_data = NULL;
|
2014-10-03 12:51:02 +02:00
|
|
|
}
|
2015-03-18 19:40:00 +01:00
|
|
|
|