2019-12-07 23:30:05 -07:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
#include "scode.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "fontengine.h"
|
|
|
|
|
2019-12-07 23:37:21 -07:00
|
|
|
static FT_Library library;
|
2019-12-07 23:30:05 -07:00
|
|
|
static FT_Face stdfont;
|
|
|
|
|
|
|
|
static void fonteng_cleanup(void)
|
|
|
|
{
|
|
|
|
FT_Done_Face(stdfont);
|
|
|
|
FT_Done_FreeType(library);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT FontEng_setup(void)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
FT_Error err;
|
|
|
|
|
|
|
|
err = FT_Init_FreeType(&library);
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
Log(LFATAL, "Unable to initialize Freetype (%d)", err);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
2019-12-08 00:40:01 -07:00
|
|
|
err = FT_New_Face(library, "/usr/local/share/fonts/truetype/arial.ttf", 0, &stdfont);
|
2019-12-07 23:30:05 -07:00
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
Log(LFATAL, "Unable to load font (%d)", err);
|
|
|
|
hr = E_FAIL;
|
|
|
|
goto error_0;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = FT_Set_Pixel_Sizes(stdfont, 0, 16);
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
Log(LFATAL, "Unable to set font size (%d)", err);
|
|
|
|
hr = E_FAIL;
|
|
|
|
goto error_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = Config_exitfunc(fonteng_cleanup);
|
|
|
|
if (FAILED(hr))
|
|
|
|
fonteng_cleanup();
|
|
|
|
return hr;
|
|
|
|
|
|
|
|
error_1:
|
|
|
|
FT_Done_Face(stdfont);
|
|
|
|
error_0:
|
|
|
|
FT_Done_FreeType(library);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT FontEng_do_text_out(INT32 x, INT32 y, PCSTR pstr, TEXTOUTFUNC renderfunc)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
FT_GlyphSlot slot = stdfont->glyph;
|
|
|
|
FT_UInt glyph_index;
|
|
|
|
FT_Error err;
|
|
|
|
|
2019-12-07 23:59:00 -07:00
|
|
|
y += (stdfont->size->metrics.ascender >> 6);
|
|
|
|
|
2019-12-07 23:30:05 -07:00
|
|
|
while (*pstr)
|
|
|
|
{
|
2019-12-07 23:59:00 -07:00
|
|
|
glyph_index = FT_Get_Char_Index(stdfont, *pstr);
|
2019-12-07 23:30:05 -07:00
|
|
|
err = FT_Load_Glyph(stdfont, glyph_index, FT_LOAD_DEFAULT);
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
hr = E_FAIL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
err = FT_Render_Glyph(stdfont->glyph, FT_RENDER_MODE_NORMAL);
|
|
|
|
if (err != 0)
|
|
|
|
{
|
|
|
|
hr = E_FAIL;
|
|
|
|
break;
|
|
|
|
}
|
2019-12-07 23:59:00 -07:00
|
|
|
(*renderfunc)(x + slot->bitmap_left, y - slot->bitmap_top, slot->bitmap.width,
|
|
|
|
slot->bitmap.rows, slot->bitmap.buffer);
|
2019-12-07 23:30:05 -07:00
|
|
|
x += slot->advance.x >> 6;
|
|
|
|
y += slot->advance.y >> 6;
|
2019-12-07 23:59:00 -07:00
|
|
|
pstr++;
|
2019-12-07 23:30:05 -07:00
|
|
|
}
|
|
|
|
return hr;
|
|
|
|
}
|