RetroArch/gfx/font_driver.c

201 lines
5.2 KiB
C
Raw Normal View History

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 18:06:50 +01:00
* Copyright (C) 2011-2015 - Daniel De Matteis
2012-02-12 15:23:35 +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
2012-02-12 15:23:35 +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;
2012-02-12 15:23:35 +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.
2012-02-12 15:23:35 +01:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "font_driver.h"
2015-01-12 23:19:21 +01:00
#include "../general.h"
2012-02-12 15:23:35 +01:00
#ifdef HAVE_D3D
static const font_renderer_t *d3d_font_backends[] = {
2012-12-15 03:35:04 +01:00
#if defined(_XBOX1)
&d3d_xdk1_font,
2012-12-15 04:36:19 +01:00
#elif defined(_XBOX360)
2012-12-15 03:35:04 +01:00
&d3d_xbox360_font,
#elif defined(_WIN32)
&d3d_win32_font,
2012-12-15 03:35:04 +01:00
#endif
};
static bool d3d_font_init_first(
const void **font_driver, void **font_handle,
2015-03-30 00:49:18 +02:00
void *video_data, const char *font_path, float font_size)
2012-12-15 03:35:04 +01:00
{
unsigned i;
for (i = 0; i < ARRAY_SIZE(d3d_font_backends); i++)
2012-12-15 03:35:04 +01: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 03:35:04 +01:00
}
return false;
2012-12-15 03:35:04 +01:00
}
#endif
#ifdef HAVE_OPENGL
static const font_renderer_t *gl_font_backends[] = {
2015-04-23 02:04:32 +02: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++)
{
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
2015-10-02 00:11:54 +02: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++)
{
void *data = vita2d_font_backends[i]->init(video_data, font_path, font_size);
if (!data)
continue;
*font_driver = vita2d_font_backends[i];
*font_handle = data;
return true;
}
return false;
}
#endif
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-02 00:11:54 +02:00
#endif
#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)
{
driver_t *driver = driver_get_ptr();
const font_renderer_t *font_ctx = driver->font_osd_driver;
if (!font_ctx || !font_ctx->render_msg)
return false;
return true;
}
void font_driver_render_msg(void *font_data, const char *msg, const struct font_params *params)
{
driver_t *driver = driver_get_ptr();
const font_renderer_t *font_ctx = driver->font_osd_driver;
if (font_ctx->render_msg)
font_ctx->render_msg(font_data ? font_data : driver->font_osd_data, msg, params);
}
2015-12-05 10:59:03 +01:00
void font_driver_bind_block(void *block)
{
driver_t *driver = driver_get_ptr();
const font_renderer_t *font_ctx = driver->font_osd_driver;
if (font_ctx->bind_block)
font_ctx->bind_block(driver->font_osd_data, block);
}
2015-12-05 10:54:53 +01:00
void font_driver_free(void *data)
{
driver_t *driver = driver_get_ptr();
const font_renderer_t *font_ctx = (const font_renderer_t*)driver->font_osd_driver;
if (font_ctx->free)
2015-12-05 10:54:53 +01:00
font_ctx->free(data ? data : driver->font_osd_data);
if (data)
return;
driver->font_osd_data = NULL;
driver->font_osd_driver = NULL;
}
2015-12-05 11:18:05 +01:00
bool font_driver_init_first(const void **font_driver, void *font_handle,
void *data, const char *font_path, float font_size,
enum font_driver_render_api api)
{
2015-12-05 11:18:05 +01:00
driver_t *driver = driver_get_ptr();
const void **new_font_driver = font_driver ? font_driver
: (const void**)&driver->font_osd_driver;
void *new_font_handle = font_handle ? font_handle
: &driver->font_osd_data;
return font_init_first(new_font_driver, new_font_handle,
data, font_path, font_size, api);
}