RetroArch/gfx/font_driver.c

324 lines
7.8 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2016-01-10 03:41:52 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2012-02-12 14:23:35 +00:00
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2012-02-12 14:23:35 +00: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 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2012-02-12 14:23:35 +00: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 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2012-02-12 14:23:35 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "font_driver.h"
2015-12-05 10:29:06 +00:00
#include "video_thread_wrapper.h"
2015-01-12 22:19:21 +00:00
#include "../general.h"
#include "../verbosity.h"
static const font_renderer_driver_t *font_backends[] = {
#ifdef HAVE_FREETYPE
&freetype_font_renderer,
#endif
#if defined(__APPLE__) && defined(HAVE_CORETEXT)
&coretext_font_renderer,
#endif
#ifdef HAVE_STB_FONT
&stb_font_renderer,
#endif
&bitmap_font_renderer,
NULL
};
static const struct font_renderer *font_osd_driver;
static void *font_osd_data;
int font_renderer_create_default(const void **data, void **handle,
const char *font_path, unsigned font_size)
{
unsigned i;
2016-02-06 20:51:37 +00:00
const font_renderer_driver_t **drv =
(const font_renderer_driver_t**)data;
for (i = 0; font_backends[i]; i++)
{
const char *path = font_path;
if (!path)
path = font_backends[i]->get_default_font();
if (!path)
continue;
*handle = font_backends[i]->init(path, font_size);
if (*handle)
{
RARCH_LOG("Using font rendering backend: %s.\n",
font_backends[i]->ident);
*drv = font_backends[i];
return 1;
}
else
RARCH_ERR("Failed to create rendering backend: %s.\n",
font_backends[i]->ident);
}
*drv = NULL;
*handle = NULL;
return 0;
}
2012-02-12 14:23:35 +00:00
#ifdef HAVE_D3D
static const font_renderer_t *d3d_font_backends[] = {
2012-12-15 02:35:04 +00:00
#if defined(_XBOX1)
&d3d_xdk1_font,
2012-12-15 03:36:19 +00:00
#elif defined(_XBOX360)
2012-12-15 02:35:04 +00:00
&d3d_xbox360_font,
#elif defined(_WIN32)
&d3d_win32_font,
2012-12-15 02:35:04 +00:00
#endif
};
static bool d3d_font_init_first(
const void **font_driver, void **font_handle,
2015-03-29 22:49:18 +00:00
void *video_data, const char *font_path, float font_size)
2012-12-15 02:35:04 +00:00
{
unsigned i;
for (i = 0; i < ARRAY_SIZE(d3d_font_backends); i++)
2012-12-15 02:35:04 +00:00
{
2016-02-06 20:51:37 +00:00
void *data = d3d_font_backends[i]->init(
video_data, font_path, font_size);
if (!data)
continue;
*font_driver = d3d_font_backends[i];
*font_handle = data;
return true;
2012-12-15 02:35:04 +00:00
}
return false;
2012-12-15 02:35:04 +00:00
}
#endif
#ifdef HAVE_OPENGL
static const font_renderer_t *gl_font_backends[] = {
2015-04-23 00:04:32 +00:00
&gl_raster_font,
#if defined(HAVE_LIBDBGFONT)
&libdbg_font,
#endif
NULL,
};
static bool gl_font_init_first(
const void **font_driver, void **font_handle,
void *video_data, const char *font_path, float font_size)
{
unsigned i;
for (i = 0; gl_font_backends[i]; i++)
{
2016-02-06 20:51:37 +00:00
void *data = gl_font_backends[i]->init(
video_data, font_path, font_size);
if (!data)
continue;
*font_driver = gl_font_backends[i];
*font_handle = data;
return true;
}
return false;
}
#endif
2016-02-16 19:24:00 +00:00
#ifdef HAVE_VULKAN
static const font_renderer_t *vulkan_font_backends[] = {
&vulkan_raster_font,
NULL,
};
static bool vulkan_font_init_first(
const void **font_driver, void **font_handle,
void *video_data, const char *font_path, float font_size)
{
unsigned i;
for (i = 0; vulkan_font_backends[i]; i++)
{
void *data = vulkan_font_backends[i]->init(video_data, font_path, font_size);
if (!data)
continue;
*font_driver = vulkan_font_backends[i];
*font_handle = data;
return true;
}
return false;
}
#endif
2015-10-01 22:11:54 +00:00
#ifdef HAVE_VITA2D
static const font_renderer_t *vita2d_font_backends[] = {
&vita2d_vita_font
};
static bool vita2d_font_init_first(
const void **font_driver, void **font_handle,
void *video_data, const char *font_path, float font_size)
{
unsigned i;
for (i = 0; vita2d_font_backends[i]; i++)
{
2016-02-06 20:51:37 +00:00
void *data = vita2d_font_backends[i]->init(
video_data, font_path, font_size);
2015-10-01 22:11:54 +00:00
if (!data)
continue;
*font_driver = vita2d_font_backends[i];
*font_handle = data;
return true;
}
return false;
}
#endif
2016-02-06 20:51:37 +00:00
static bool font_init_first(
const void **font_driver, void **font_handle,
void *video_data, const char *font_path, float font_size,
enum font_driver_render_api api)
{
if (font_path && !font_path[0])
font_path = NULL;
switch (api)
{
#ifdef HAVE_D3D
case FONT_DRIVER_RENDER_DIRECT3D_API:
return d3d_font_init_first(font_driver, font_handle,
video_data, font_path, font_size);
#endif
#ifdef HAVE_OPENGL
case FONT_DRIVER_RENDER_OPENGL_API:
return gl_font_init_first(font_driver, font_handle,
video_data, font_path, font_size);
2015-10-01 22:11:54 +00:00
#endif
2016-02-16 19:24:00 +00:00
#ifdef HAVE_VULKAN
case FONT_DRIVER_RENDER_VULKAN_API:
return vulkan_font_init_first(font_driver, font_handle,
video_data, font_path, font_size);
#endif
2015-10-01 22:11:54 +00:00
#ifdef HAVE_VITA2D
case FONT_DRIVER_RENDER_VITA2D:
return vita2d_font_init_first(font_driver, font_handle,
video_data, font_path, font_size);
#endif
case FONT_DRIVER_RENDER_DONT_CARE:
/* TODO/FIXME - lookup graphics driver's 'API' */
break;
default:
break;
}
return false;
}
bool font_driver_has_render_msg(void)
{
const font_renderer_t *font_ctx = font_osd_driver;
if (!font_ctx || !font_ctx->render_msg)
return false;
return true;
}
2016-02-06 20:51:37 +00:00
void font_driver_render_msg(void *font_data,
const char *msg, const struct font_params *params)
{
const font_renderer_t *font_ctx = font_osd_driver;
if (font_ctx->render_msg)
2016-02-06 20:51:37 +00:00
font_ctx->render_msg(font_data
? font_data : font_osd_data, msg, params);
}
2015-12-05 10:34:56 +00:00
void font_driver_bind_block(void *font_data, void *block)
2015-12-05 09:59:03 +00:00
{
const font_renderer_t *font_ctx = font_osd_driver;
2016-02-06 20:51:37 +00:00
void *new_font_data = font_data
? font_data : font_osd_data;
2015-12-05 09:59:03 +00:00
if (font_ctx->bind_block)
2015-12-05 10:34:56 +00:00
font_ctx->bind_block(new_font_data, block);
2015-12-05 09:59:03 +00:00
}
2015-12-05 11:10:12 +00:00
void font_driver_flush(void *data)
{
const font_renderer_t *font_ctx = font_osd_driver;
2015-12-05 11:10:12 +00:00
if (font_ctx->flush)
font_ctx->flush(data);
}
2016-02-06 20:51:37 +00:00
int font_driver_get_message_width(void *data,
const char *msg, unsigned len, float scale)
2015-12-05 11:17:58 +00:00
{
const font_renderer_t *font_ctx = font_osd_driver;
2015-12-05 11:17:58 +00:00
if (!font_ctx || !font_ctx->get_message_width)
return -1;
return font_ctx->get_message_width(data, msg, len, scale);
}
2015-12-05 09:54:53 +00:00
void font_driver_free(void *data)
{
2016-02-06 20:51:37 +00:00
const font_renderer_t *font_ctx =
(const font_renderer_t*)font_osd_driver;
if (font_ctx->free)
font_ctx->free(data ? data : font_osd_data);
2015-12-05 09:54:53 +00:00
if (data)
return;
font_osd_data = NULL;
font_osd_driver = NULL;
}
2016-02-06 20:51:37 +00:00
bool font_driver_init_first(
const void **font_driver, void **font_handle,
2015-12-05 10:18:05 +00:00
void *data, const char *font_path, float font_size,
2015-12-05 10:29:06 +00:00
bool threading_hint,
enum font_driver_render_api api)
{
2015-12-05 10:18:05 +00:00
const void **new_font_driver = font_driver ? font_driver
: (const void**)&font_osd_driver;
2015-12-05 17:56:37 +00:00
void **new_font_handle = font_handle ? font_handle
: (void**)&font_osd_data;
2015-12-06 21:42:22 +00:00
#ifdef HAVE_THREADS
settings_t *settings = config_get_ptr();
2015-12-06 21:42:22 +00:00
2016-02-07 19:32:53 +00:00
if (threading_hint
&& settings->video.threaded
2016-05-08 12:00:51 +00:00
&& !video_driver_is_hw_context())
return rarch_threaded_video_font_init(new_font_driver, new_font_handle,
data, font_path, font_size, api, font_init_first);
2015-12-06 21:42:22 +00:00
#endif
2015-12-05 10:29:06 +00:00
2015-12-05 10:18:05 +00:00
return font_init_first(new_font_driver, new_font_handle,
data, font_path, font_size, api);
}
2015-12-05 11:10:12 +00:00