mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
113e9340c1
* Move ui_companion_driver code out of retroarch.c * Buildfix * Fix error - was reading the array out of (preinitialized) bounds * Remove unused variable
304 lines
8.7 KiB
C
304 lines
8.7 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
* Copyright (C) 2011-2021 - 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 <stdint.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../config.h"
|
|
#endif
|
|
|
|
#include "../driver.h"
|
|
#include "../list_special.h"
|
|
#include "../retroarch.h"
|
|
#include "../runloop.h"
|
|
#include "../verbosity.h"
|
|
|
|
#include "ui_companion_driver.h"
|
|
|
|
static ui_companion_driver_t ui_companion_null = {
|
|
NULL, /* init */
|
|
NULL, /* deinit */
|
|
NULL, /* toggle */
|
|
NULL, /* event_command */
|
|
NULL, /* notify_content_loaded */
|
|
NULL, /* notify_list_loaded */
|
|
NULL, /* notify_refresh */
|
|
NULL, /* msg_queue_push */
|
|
NULL, /* render_messagebox */
|
|
NULL, /* get_main_window */
|
|
NULL, /* log_msg */
|
|
NULL, /* is_active */
|
|
NULL, /* browser_window */
|
|
NULL, /* msg_window */
|
|
NULL, /* window */
|
|
NULL, /* application */
|
|
"null", /* ident */
|
|
};
|
|
|
|
static const ui_companion_driver_t *ui_companion_drivers[] = {
|
|
#if defined(_WIN32) && !defined(_XBOX) && !defined(__WINRT__)
|
|
&ui_companion_win32,
|
|
#endif
|
|
#if defined(OSX)
|
|
&ui_companion_cocoa,
|
|
#endif
|
|
&ui_companion_null,
|
|
NULL
|
|
};
|
|
|
|
|
|
static uico_driver_state_t uico_driver_st = {0}; /* double alignment */
|
|
|
|
uico_driver_state_t *uico_state_get_ptr(void)
|
|
{
|
|
return &uico_driver_st;
|
|
}
|
|
|
|
void ui_companion_set_foreground(unsigned enable)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
if (uico_st)
|
|
uico_st->is_on_foreground = enable;
|
|
}
|
|
|
|
bool ui_companion_is_on_foreground(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
if (!uico_st)
|
|
return false;
|
|
return uico_st->is_on_foreground;
|
|
}
|
|
|
|
void ui_companion_event_command(enum event_command action)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
#ifdef HAVE_QT
|
|
bool qt_is_inited = uico_st->qt_is_inited;
|
|
#endif
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
|
|
if (ui && ui->event_command)
|
|
ui->event_command(uico_st->data, action);
|
|
#ifdef HAVE_QT
|
|
if (ui_companion_qt.toggle && qt_is_inited)
|
|
ui_companion_qt.event_command(uico_st->qt_data, action);
|
|
#endif
|
|
}
|
|
|
|
void ui_companion_driver_deinit(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
#ifdef HAVE_QT
|
|
bool qt_is_inited = uico_st->qt_is_inited;
|
|
#endif
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
|
|
if (!ui)
|
|
return;
|
|
if (ui->deinit)
|
|
ui->deinit(uico_st->data);
|
|
|
|
#ifdef HAVE_QT
|
|
if (qt_is_inited)
|
|
{
|
|
ui_companion_qt.deinit(uico_st->qt_data);
|
|
uico_st->qt_data = NULL;
|
|
}
|
|
#endif
|
|
uico_st->data = NULL;
|
|
}
|
|
|
|
void ui_companion_driver_toggle(
|
|
bool desktop_menu_enable,
|
|
bool ui_companion_toggle,
|
|
bool force)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
if (uico_st && uico_st->drv && uico_st->drv->toggle)
|
|
uico_st->drv->toggle(uico_st->data, false);
|
|
|
|
#ifdef HAVE_QT
|
|
if (desktop_menu_enable)
|
|
{
|
|
if ((ui_companion_toggle || force) && !uico_st->qt_is_inited)
|
|
{
|
|
uico_st->qt_data = ui_companion_qt.init();
|
|
uico_st->qt_is_inited = true;
|
|
}
|
|
|
|
if (ui_companion_qt.toggle && uico_st->qt_is_inited)
|
|
ui_companion_qt.toggle(uico_st->qt_data, force);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void ui_companion_driver_init_first(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
settings_t *settings = config_get_ptr();
|
|
#ifdef HAVE_QT
|
|
bool desktop_menu_enable = settings->bools.desktop_menu_enable;
|
|
bool ui_companion_toggle = settings->bools.ui_companion_toggle;
|
|
|
|
if (desktop_menu_enable && ui_companion_toggle)
|
|
{
|
|
uico_st->qt_data = ui_companion_qt.init();
|
|
uico_st->qt_is_inited = true;
|
|
}
|
|
#else
|
|
bool desktop_menu_enable = false;
|
|
bool ui_companion_toggle = false;
|
|
#endif
|
|
unsigned ui_companion_start_on_boot =
|
|
settings->bools.ui_companion_start_on_boot;
|
|
uico_st->drv = (ui_companion_driver_t*)ui_companion_drivers[0];
|
|
|
|
if (!uico_st->drv)
|
|
return;
|
|
if (!ui_companion_start_on_boot)
|
|
return;
|
|
if (uico_st->drv->init)
|
|
uico_st->data = uico_st->drv->init();
|
|
|
|
ui_companion_driver_toggle(desktop_menu_enable,
|
|
ui_companion_toggle, false);
|
|
}
|
|
|
|
void ui_companion_driver_notify_refresh(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
#ifdef HAVE_QT
|
|
settings_t *settings = config_get_ptr();
|
|
bool desktop_menu_enable = settings->bools.desktop_menu_enable;
|
|
bool qt_is_inited = uico_st->qt_is_inited;
|
|
#endif
|
|
|
|
if (!ui)
|
|
return;
|
|
if (ui->notify_refresh)
|
|
ui->notify_refresh(uico_st->data);
|
|
|
|
#ifdef HAVE_QT
|
|
if (desktop_menu_enable)
|
|
if (ui_companion_qt.notify_refresh && qt_is_inited)
|
|
ui_companion_qt.notify_refresh(uico_st->qt_data);
|
|
#endif
|
|
}
|
|
|
|
void ui_companion_driver_notify_list_loaded(
|
|
file_list_t *list, file_list_t *menu_list)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (ui && ui->notify_list_loaded)
|
|
ui->notify_list_loaded(uico_st->data, list, menu_list);
|
|
}
|
|
|
|
void ui_companion_driver_notify_content_loaded(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (ui && ui->notify_content_loaded)
|
|
ui->notify_content_loaded(uico_st->data);
|
|
}
|
|
|
|
const ui_msg_window_t *ui_companion_driver_get_msg_window_ptr(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (ui)
|
|
return ui->msg_window;
|
|
return NULL;
|
|
}
|
|
|
|
const ui_window_t *ui_companion_driver_get_window_ptr(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (ui)
|
|
return ui->window;
|
|
return NULL;
|
|
}
|
|
|
|
const ui_browser_window_t *ui_companion_driver_get_browser_window_ptr(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (ui)
|
|
return ui->browser_window;
|
|
return NULL;
|
|
}
|
|
|
|
void ui_companion_driver_msg_queue_push(
|
|
const char *msg, unsigned priority,
|
|
unsigned duration, bool flush)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
|
|
if (ui && ui->msg_queue_push)
|
|
ui->msg_queue_push(uico_st->data, msg, priority, duration, flush);
|
|
|
|
#ifdef HAVE_QT
|
|
{
|
|
settings_t *settings = config_get_ptr();
|
|
bool qt_is_inited = uico_st->qt_is_inited;
|
|
bool desktop_menu_enable = settings->bools.desktop_menu_enable;
|
|
|
|
if (desktop_menu_enable)
|
|
if (ui_companion_qt.msg_queue_push && qt_is_inited)
|
|
ui_companion_qt.msg_queue_push(
|
|
uico_st->qt_data,
|
|
msg, priority, duration, flush);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void *ui_companion_driver_get_main_window(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (!ui || !ui->get_main_window)
|
|
return NULL;
|
|
return ui->get_main_window(uico_st->data);
|
|
}
|
|
|
|
const char *ui_companion_driver_get_ident(void)
|
|
{
|
|
uico_driver_state_t *uico_st = &uico_driver_st;
|
|
const ui_companion_driver_t *ui = uico_st->drv;
|
|
if (ui)
|
|
return ui->ident;
|
|
return "null";
|
|
}
|
|
|
|
void ui_companion_driver_log_msg(const char *msg)
|
|
{
|
|
#ifdef HAVE_QT
|
|
uico_driver_state_t *uico_st= &uico_driver_st;
|
|
settings_t *settings = config_get_ptr();
|
|
bool qt_is_inited = uico_st->qt_is_inited;
|
|
bool desktop_menu_enable = settings->bools.desktop_menu_enable;
|
|
bool window_is_active = uico_st->qt_data && qt_is_inited
|
|
&& ui_companion_qt.is_active(uico_st->qt_data);
|
|
|
|
if (desktop_menu_enable)
|
|
if (window_is_active)
|
|
ui_companion_qt.log_msg(uico_st->qt_data, msg);
|
|
#endif
|
|
}
|