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
|
2017-01-22 12:40:32 +00:00
|
|
|
* Copyright (C) 2011-2017 - 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/>.
|
|
|
|
*/
|
|
|
|
|
2015-04-03 18:36:19 +00:00
|
|
|
#ifndef __FONT_DRIVER_H__
|
|
|
|
#define __FONT_DRIVER_H__
|
2012-02-12 14:23:35 +00:00
|
|
|
|
2012-12-15 02:35:04 +00:00
|
|
|
#include <stdint.h>
|
2015-12-05 11:07:22 +00:00
|
|
|
|
2014-10-21 03:05:52 +00:00
|
|
|
#include <boolean.h>
|
2016-06-03 04:02:49 +00:00
|
|
|
#include <retro_common_api.h>
|
2012-02-17 18:35:51 +00:00
|
|
|
|
2017-01-19 15:30:40 +00:00
|
|
|
#include "video_driver.h"
|
|
|
|
|
2016-06-03 04:02:49 +00:00
|
|
|
RETRO_BEGIN_DECLS
|
2014-01-22 15:38:42 +00:00
|
|
|
|
2015-04-21 15:33:00 +00:00
|
|
|
enum font_driver_render_api
|
|
|
|
{
|
|
|
|
FONT_DRIVER_RENDER_DONT_CARE,
|
|
|
|
FONT_DRIVER_RENDER_OPENGL_API,
|
2015-10-01 22:11:54 +00:00
|
|
|
FONT_DRIVER_RENDER_DIRECT3D_API,
|
2016-02-16 19:24:00 +00:00
|
|
|
FONT_DRIVER_RENDER_VITA2D,
|
2016-09-29 19:14:12 +00:00
|
|
|
FONT_DRIVER_RENDER_CTR,
|
2017-05-21 02:05:41 +00:00
|
|
|
FONT_DRIVER_RENDER_WIIU,
|
2016-12-01 17:13:36 +00:00
|
|
|
FONT_DRIVER_RENDER_VULKAN_API,
|
2017-01-04 07:07:19 +00:00
|
|
|
FONT_DRIVER_RENDER_CACA,
|
2017-01-21 22:41:20 +00:00
|
|
|
FONT_DRIVER_RENDER_GDI,
|
|
|
|
FONT_DRIVER_RENDER_VGA
|
2015-04-21 15:33:00 +00:00
|
|
|
};
|
|
|
|
|
2015-12-05 09:31:15 +00:00
|
|
|
enum text_alignment
|
|
|
|
{
|
|
|
|
TEXT_ALIGN_LEFT = 0,
|
|
|
|
TEXT_ALIGN_RIGHT,
|
|
|
|
TEXT_ALIGN_CENTER
|
|
|
|
};
|
|
|
|
|
2015-12-05 11:07:22 +00:00
|
|
|
/* All coordinates and offsets are top-left oriented.
|
|
|
|
*
|
|
|
|
* This is a texture-atlas approach which allows text to
|
|
|
|
* be drawn in a single draw call.
|
|
|
|
*
|
|
|
|
* It is up to the code using this interface to actually
|
|
|
|
* generate proper vertex buffers and upload the atlas texture to GPU. */
|
|
|
|
|
|
|
|
struct font_glyph
|
|
|
|
{
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
|
|
|
|
/* Texel coordinate offset for top-left pixel of this glyph. */
|
|
|
|
unsigned atlas_offset_x;
|
|
|
|
unsigned atlas_offset_y;
|
|
|
|
|
|
|
|
/* When drawing this glyph, apply an offset to
|
|
|
|
* current X/Y draw coordinate. */
|
|
|
|
int draw_offset_x;
|
|
|
|
int draw_offset_y;
|
|
|
|
|
|
|
|
/* Advance X/Y draw coordinates after drawing this glyph. */
|
|
|
|
int advance_x;
|
|
|
|
int advance_y;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct font_atlas
|
|
|
|
{
|
|
|
|
uint8_t *buffer; /* Alpha channel. */
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2016-10-21 16:25:21 +00:00
|
|
|
bool dirty;
|
2015-12-05 11:07:22 +00:00
|
|
|
};
|
|
|
|
|
2015-12-05 09:31:15 +00:00
|
|
|
struct font_params
|
|
|
|
{
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float scale;
|
|
|
|
/* Drop shadow color multiplier. */
|
|
|
|
float drop_mod;
|
|
|
|
/* Drop shadow offset.
|
|
|
|
* If both are 0, no drop shadow will be rendered. */
|
|
|
|
int drop_x, drop_y;
|
2016-04-09 06:23:59 +00:00
|
|
|
/* Drop shadow alpha */
|
|
|
|
float drop_alpha;
|
2015-12-05 09:31:15 +00:00
|
|
|
/* ABGR. Use the macros. */
|
|
|
|
uint32_t color;
|
|
|
|
bool full_screen;
|
|
|
|
enum text_alignment text_align;
|
|
|
|
};
|
|
|
|
|
2015-12-08 10:52:32 +00:00
|
|
|
typedef struct font_renderer
|
|
|
|
{
|
2017-01-25 13:47:24 +00:00
|
|
|
void *(*init)(void *data, const char *font_path,
|
|
|
|
float font_size, bool is_threaded);
|
|
|
|
void (*free)(void *data, bool is_threaded);
|
2017-01-19 15:30:40 +00:00
|
|
|
void (*render_msg)(
|
|
|
|
video_frame_info_t *video_info,
|
|
|
|
void *data, const char *msg,
|
2015-12-08 10:52:32 +00:00
|
|
|
const void *params);
|
|
|
|
const char *ident;
|
|
|
|
|
|
|
|
const struct font_glyph *(*get_glyph)(void *data, uint32_t code);
|
|
|
|
void (*bind_block)(void *data, void *block);
|
2017-11-13 09:42:40 +00:00
|
|
|
void (*flush)(unsigned width, unsigned height, void *data,
|
|
|
|
video_frame_info_t *video_info);
|
2015-12-08 10:52:32 +00:00
|
|
|
|
|
|
|
int (*get_message_width)(void *data, const char *msg, unsigned msg_len_full, float scale);
|
|
|
|
} font_renderer_t;
|
|
|
|
|
2015-12-05 11:07:22 +00:00
|
|
|
typedef struct font_renderer_driver
|
|
|
|
{
|
|
|
|
void *(*init)(const char *font_path, float font_size);
|
|
|
|
|
2016-10-21 16:25:21 +00:00
|
|
|
struct font_atlas *(*get_atlas)(void *data);
|
2015-12-05 11:07:22 +00:00
|
|
|
|
|
|
|
/* Returns NULL if no glyph for this code is found. */
|
|
|
|
const struct font_glyph *(*get_glyph)(void *data, uint32_t code);
|
|
|
|
|
|
|
|
void (*free)(void *data);
|
|
|
|
|
|
|
|
const char *(*get_default_font)(void);
|
|
|
|
|
|
|
|
const char *ident;
|
|
|
|
|
|
|
|
int (*get_line_height)(void* data);
|
|
|
|
} font_renderer_driver_t;
|
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const font_renderer_t *renderer;
|
|
|
|
void *renderer_data;
|
|
|
|
float size;
|
|
|
|
} font_data_t;
|
|
|
|
|
2015-12-05 11:07:22 +00:00
|
|
|
/* font_path can be NULL for default font. */
|
|
|
|
int font_renderer_create_default(const void **driver,
|
|
|
|
void **handle, const char *font_path, unsigned font_size);
|
|
|
|
|
2017-01-19 15:30:40 +00:00
|
|
|
void font_driver_render_msg(video_frame_info_t *video_info,
|
|
|
|
void *font_data, const char *msg, const void *params);
|
2015-12-05 09:31:15 +00:00
|
|
|
|
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
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
int font_driver_get_message_width(void *font_data, const char *msg, unsigned len, float scale);
|
|
|
|
|
2017-11-13 09:42:40 +00:00
|
|
|
void font_driver_flush(unsigned width, unsigned height, void *font_data,
|
|
|
|
video_frame_info_t *video_info);
|
2015-12-05 11:17:58 +00:00
|
|
|
|
2016-10-18 23:07:00 +00:00
|
|
|
void font_driver_free(void *font_data);
|
2015-12-05 11:10:12 +00:00
|
|
|
|
2017-04-29 14:52:52 +00:00
|
|
|
font_data_t *font_driver_init_first(
|
|
|
|
void *video_data,
|
|
|
|
const char *font_path,
|
|
|
|
float font_size,
|
|
|
|
bool threading_hint,
|
|
|
|
bool is_threaded,
|
|
|
|
enum font_driver_render_api api);
|
|
|
|
|
|
|
|
void font_driver_init_osd(
|
|
|
|
void *video_data,
|
|
|
|
bool threading_hint,
|
|
|
|
bool is_threaded,
|
|
|
|
enum font_driver_render_api api);
|
2016-10-18 23:07:00 +00:00
|
|
|
void font_driver_free_osd(void);
|
2015-12-05 09:31:15 +00:00
|
|
|
|
2015-12-05 11:07:22 +00:00
|
|
|
extern font_renderer_t gl_raster_font;
|
|
|
|
extern font_renderer_t libdbg_font;
|
|
|
|
extern font_renderer_t d3d_xbox360_font;
|
|
|
|
extern font_renderer_t d3d_xdk1_font;
|
|
|
|
extern font_renderer_t d3d_win32_font;
|
|
|
|
extern font_renderer_t vita2d_vita_font;
|
2016-09-29 19:14:12 +00:00
|
|
|
extern font_renderer_t ctr_font;
|
2017-05-21 02:05:41 +00:00
|
|
|
extern font_renderer_t wiiu_font;
|
2016-02-16 19:24:00 +00:00
|
|
|
extern font_renderer_t vulkan_raster_font;
|
2016-12-01 17:13:36 +00:00
|
|
|
extern font_renderer_t caca_font;
|
2017-01-04 07:07:19 +00:00
|
|
|
extern font_renderer_t gdi_font;
|
2017-01-21 22:41:20 +00:00
|
|
|
extern font_renderer_t vga_font;
|
2015-12-05 11:07:22 +00:00
|
|
|
|
|
|
|
extern font_renderer_driver_t stb_font_renderer;
|
2016-11-05 15:20:18 +00:00
|
|
|
extern font_renderer_driver_t stb_unicode_font_renderer;
|
2015-12-05 11:07:22 +00:00
|
|
|
extern font_renderer_driver_t freetype_font_renderer;
|
|
|
|
extern font_renderer_driver_t coretext_font_renderer;
|
|
|
|
extern font_renderer_driver_t bitmap_font_renderer;
|
|
|
|
|
2016-06-03 04:02:49 +00:00
|
|
|
RETRO_END_DECLS
|
2014-01-22 15:38:42 +00:00
|
|
|
|
2012-02-17 18:35:51 +00:00
|
|
|
#endif
|