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
|
2011-01-22 22:24:52 +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
|
2011-01-22 22:24:52 +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;
|
2011-01-22 22:24:52 +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.
|
2011-01-22 22:24:52 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
#ifndef __RARCH_FONTS_H
|
|
|
|
#define __RARCH_FONTS_H
|
2011-01-22 22:24:52 +01:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2012-12-14 20:25:40 +01:00
|
|
|
#include "../../boolean.h"
|
2011-01-22 22:24:52 +01:00
|
|
|
|
2014-09-09 06:59:17 +02: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. */
|
2011-01-22 22:24:52 +01:00
|
|
|
|
2014-06-07 21:18:58 +02:00
|
|
|
struct font_glyph
|
2011-01-22 22:24:52 +01:00
|
|
|
{
|
2014-06-07 21:18:58 +02:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
|
2014-09-09 06:59:17 +02:00
|
|
|
/* Texel coordinate offset for top-left pixel of this glyph. */
|
2014-06-07 21:18:58 +02:00
|
|
|
unsigned atlas_offset_x;
|
|
|
|
unsigned atlas_offset_y;
|
|
|
|
|
2014-09-09 06:59:17 +02:00
|
|
|
/* When drawing this glyph, apply an offset to
|
|
|
|
* current X/Y draw coordinate. */
|
2014-06-07 21:18:58 +02:00
|
|
|
int draw_offset_x;
|
|
|
|
int draw_offset_y;
|
|
|
|
|
2014-09-09 06:59:17 +02:00
|
|
|
/* Advance X/Y draw coordinates after drawing this glyph. */
|
2014-06-07 21:18:58 +02:00
|
|
|
int advance_x;
|
|
|
|
int advance_y;
|
2011-01-22 22:24:52 +01:00
|
|
|
};
|
|
|
|
|
2014-06-07 21:18:58 +02:00
|
|
|
struct font_atlas
|
2011-01-22 22:24:52 +01:00
|
|
|
{
|
2014-09-09 06:59:17 +02:00
|
|
|
uint8_t *buffer; /* Alpha channel. */
|
2014-06-07 21:18:58 +02:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2011-01-22 22:24:52 +01:00
|
|
|
};
|
|
|
|
|
2012-12-14 20:25:40 +01:00
|
|
|
typedef struct font_renderer_driver
|
|
|
|
{
|
2013-01-12 00:11:41 +01:00
|
|
|
void *(*init)(const char *font_path, float font_size);
|
2014-09-09 06:59:17 +02:00
|
|
|
|
2014-06-07 21:18:58 +02:00
|
|
|
const struct font_atlas *(*get_atlas)(void *data);
|
2014-09-09 06:59:17 +02:00
|
|
|
|
|
|
|
/* Returns NULL if no glyph for this code is found. */
|
|
|
|
const struct font_glyph *(*get_glyph)(void *data, uint32_t code);
|
|
|
|
|
2012-12-14 21:26:41 +01:00
|
|
|
void (*free)(void *data);
|
2014-06-07 21:18:58 +02:00
|
|
|
|
2012-12-14 20:25:40 +01:00
|
|
|
const char *(*get_default_font)(void);
|
2014-09-09 06:59:17 +02:00
|
|
|
|
2012-12-14 20:25:40 +01:00
|
|
|
const char *ident;
|
|
|
|
} font_renderer_driver_t;
|
2011-10-06 19:06:38 +02:00
|
|
|
|
2014-10-01 15:51:23 +02:00
|
|
|
extern font_renderer_driver_t freetype_font_renderer;
|
2014-10-18 20:19:44 -04:00
|
|
|
extern font_renderer_driver_t coretext_font_renderer;
|
2014-09-12 02:24:09 +02:00
|
|
|
extern font_renderer_driver_t bitmap_font_renderer;
|
2011-01-22 22:24:52 +01:00
|
|
|
|
2014-09-09 06:59:17 +02:00
|
|
|
/* font_path can be NULL for default font. */
|
|
|
|
bool font_renderer_create_default(const font_renderer_driver_t **driver,
|
|
|
|
void **handle, const char *font_path, unsigned font_size);
|
2011-10-06 19:06:38 +02:00
|
|
|
|
2011-01-22 22:24:52 +01:00
|
|
|
#endif
|
2012-12-14 20:25:40 +01:00
|
|
|
|