RetroArch/menu/menu_display.c

156 lines
4.3 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
* 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 "menu.h"
#include "menu_display.h"
#include "menu_animation.h"
#include "../dynamic.h"
#include "../../retroarch.h"
2015-04-24 14:42:27 +00:00
#include "../../config.def.h"
2015-04-21 13:45:03 +00:00
#include "../gfx/video_context_driver.h"
bool menu_display_update_pending(void)
{
runloop_t *runloop = rarch_main_get_ptr();
if (!runloop)
return false;
if (runloop->frames.video.current.menu.animation.is_active ||
runloop->frames.video.current.menu.label.is_updated ||
runloop->frames.video.current.menu.framebuf.dirty)
return true;
return false;
}
/**
** menu_display_fb:
*
* Draws menu graphics onscreen.
**/
void menu_display_fb(void)
{
driver_t *driver = driver_get_ptr();
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
video_driver_set_texture_enable(true, false);
if (!settings->menu.pause_libretro)
{
if (global->main_is_init && !global->libretro_dummy)
{
bool block_libretro_input = driver->block_libretro_input;
driver->block_libretro_input = true;
pretro_run();
driver->block_libretro_input = block_libretro_input;
return;
}
}
rarch_render_cached_frame();
}
void menu_display_free(menu_handle_t *menu)
{
if (!menu)
return;
menu_animation_free(menu->animation);
menu->animation = NULL;
}
bool menu_display_init(menu_handle_t *menu)
{
if (!menu)
return false;
menu->animation = (animation_t*)calloc(1, sizeof(animation_t));
if (!menu->animation)
return false;
return true;
}
2015-04-21 13:45:03 +00:00
float menu_display_get_dpi(menu_handle_t *menu)
2015-04-21 13:45:03 +00:00
{
2015-04-24 14:37:09 +00:00
float dpi;
settings_t *settings = config_get_ptr();
2015-04-21 13:45:03 +00:00
2015-04-24 14:37:09 +00:00
if (!menu || !settings)
2015-04-24 14:42:27 +00:00
return menu_dpi_override_value;
2015-04-21 13:45:03 +00:00
2015-04-24 14:37:09 +00:00
if ( settings->menu.dpi.override_enable ||
!gfx_ctx_get_metrics(DISPLAY_METRIC_DPI, &dpi)
)
return settings->menu.dpi.override_value;
2015-04-21 13:45:03 +00:00
return dpi;
}
bool menu_display_font_init_first(const void **font_driver,
void **font_handle, void *video_data, const char *font_path,
float font_size)
{
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
if (settings->video.threaded
&& !global->system.hw_render_callback.context_type)
{
driver_t *driver = driver_get_ptr();
thread_video_t *thr = (thread_video_t*)driver->video_data;
if (!thr)
return false;
thr->cmd_data.font_init.method = font_init_first;
thr->cmd_data.font_init.font_driver = (const void**)font_driver;
thr->cmd_data.font_init.font_handle = font_handle;
thr->cmd_data.font_init.video_data = video_data;
thr->cmd_data.font_init.font_path = font_path;
thr->cmd_data.font_init.font_size = font_size;
thr->cmd_data.font_init.api = FONT_DRIVER_RENDER_OPENGL_API;
thr->send_cmd_func(thr, CMD_FONT_INIT);
thr->wait_reply_func(thr, CMD_FONT_INIT);
return thr->cmd_data.font_init.return_value;
}
return font_init_first(font_driver, font_handle, video_data,
font_path, font_size, FONT_DRIVER_RENDER_OPENGL_API);
}
bool menu_display_font_flush_block(menu_handle_t *menu,
const struct font_renderer *font_driver)
{
if (!font_driver || !font_driver->flush)
return false;
font_driver->flush(menu->font.buf);
return true;
}
bool menu_display_font_bind_block(menu_handle_t *menu,
const struct font_renderer *font_driver, void *userdata)
{
if (!font_driver || !font_driver->bind_block)
return false;
font_driver->bind_block(menu->font.buf, userdata);
return true;
}