0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

text-freetype2: Add Enable Antialiasing option

This commit is contained in:
Alex Miller 2020-04-30 00:12:18 +12:00
parent e8bc39804f
commit 0ddae2ece0
4 changed files with 120 additions and 46 deletions

View File

@ -12,3 +12,4 @@ DropShadow="Drop Shadow"
ReadFromFile="Read from file"
CustomWidth="Custom text width"
WordWrap="Word Wrap"
Antialiasing="Enable Antialiasing"

View File

@ -1,4 +1,4 @@
/******************************************************************************
/******************************************************************************
Copyright (C) 2014 by Nibbles
This program is free software: you can redistribute it and/or modify
@ -156,6 +156,9 @@ static obs_properties_t *ft2_source_properties(void *unused)
obs_properties_add_bool(props, "from_file",
obs_module_text("ReadFromFile"));
obs_properties_add_bool(props, "antialiasing",
obs_module_text("Antialiasing"));
obs_properties_add_bool(props, "log_mode",
obs_module_text("ChatLogMode"));
@ -365,6 +368,8 @@ static void ft2_source_update(void *data, obs_data_t *settings)
if (ft2_lib == NULL)
goto error;
const size_t texbuf_size = (size_t)texbuf_w * (size_t)texbuf_h;
if (srcdata->draw_effect == NULL) {
char *effect_file = NULL;
char *error_string = NULL;
@ -386,6 +391,16 @@ static void ft2_source_update(void *data, obs_data_t *settings)
if (srcdata->font_size != font_size || srcdata->from_file != from_file)
vbuf_needs_update = true;
const bool new_aa_setting = obs_data_get_bool(settings, "antialiasing");
const bool aa_changed = srcdata->antialiasing != new_aa_setting;
if (aa_changed) {
srcdata->antialiasing = new_aa_setting;
if (srcdata->texbuf != NULL) {
memset(srcdata->texbuf, 0, texbuf_size);
}
cache_standard_glyphs(srcdata);
}
srcdata->file_load_failed = false;
srcdata->from_file = from_file;
@ -422,7 +437,7 @@ static void ft2_source_update(void *data, obs_data_t *settings)
bfree(srcdata->texbuf);
srcdata->texbuf = NULL;
}
srcdata->texbuf = bzalloc(texbuf_w * texbuf_h);
srcdata->texbuf = bzalloc(texbuf_size);
if (srcdata->font_face)
cache_standard_glyphs(srcdata);
@ -505,6 +520,8 @@ static void *ft2_source_create(obs_data_t *settings, obs_source_t *source,
obs_data_set_default_int(font_obj, "size", font_size);
obs_data_set_default_obj(settings, "font", font_obj);
obs_data_set_default_bool(settings, "antialiasing", true);
obs_data_set_default_int(settings, "log_lines", 6);
obs_data_set_default_int(settings, "color1", 0xFFFFFFFF);

View File

@ -37,6 +37,7 @@ struct ft2_source {
bool file_load_failed;
bool from_file;
bool antialiasing;
char *text_file;
wchar_t *text;
time_t m_timestamp;

View File

@ -240,39 +240,110 @@ void cache_standard_glyphs(struct ft2_source *srcdata)
L"!@#$%^&*()-_=+,<.>/?\\|[]{}`~ \'\"\0");
}
#define glyph_pos x + (y * slot->bitmap.pitch)
#define buf_pos (dx + x) + ((dy + y) * texbuf_w)
FT_Render_Mode get_render_mode(struct ft2_source *srcdata)
{
return srcdata->antialiasing ? FT_RENDER_MODE_NORMAL
: FT_RENDER_MODE_MONO;
}
void load_glyph(struct ft2_source *srcdata, const FT_UInt glyph_index,
const FT_Render_Mode render_mode)
{
const FT_Int32 load_mode = render_mode == FT_RENDER_MODE_MONO
? FT_LOAD_TARGET_MONO
: FT_LOAD_DEFAULT;
FT_Load_Glyph(srcdata->font_face, glyph_index, load_mode);
}
struct glyph_info *init_glyph(FT_GlyphSlot slot, const uint32_t dx,
const uint32_t dy, const uint32_t g_w,
const uint32_t g_h)
{
struct glyph_info *glyph = bzalloc(sizeof(struct glyph_info));
glyph->u = (float)dx / (float)texbuf_w;
glyph->u2 = (float)(dx + g_w) / (float)texbuf_w;
glyph->v = (float)dy / (float)texbuf_h;
glyph->v2 = (float)(dy + g_h) / (float)texbuf_h;
glyph->w = g_w;
glyph->h = g_h;
glyph->yoff = slot->bitmap_top;
glyph->xoff = slot->bitmap_left;
glyph->xadv = slot->advance.x >> 6;
return glyph;
}
uint8_t get_pixel_value(const unsigned char *buf_row,
FT_Render_Mode render_mode, const uint32_t x)
{
if (render_mode == FT_RENDER_MODE_NORMAL) {
return buf_row[x];
}
const uint32_t byte_index = x / 8;
const uint8_t bit_index = x % 8;
const bool pixel_set = (buf_row[byte_index] >> (7 - bit_index)) & 1;
return pixel_set ? 255 : 0;
}
void rasterize(struct ft2_source *srcdata, FT_GlyphSlot slot,
const FT_Render_Mode render_mode, const uint32_t dx,
const uint32_t dy)
{
/**
* The pitch's absolute value is the number of bytes taken by one bitmap
* row, including padding.
*
* Source: https://www.freetype.org/freetype2/docs/reference/ft2-basic_types.html
*/
const int pitch = abs(slot->bitmap.pitch);
for (uint32_t y = 0; y < slot->bitmap.rows; y++) {
const uint32_t row_start = y * pitch;
const uint32_t row = (dy + y) * texbuf_w;
for (uint32_t x = 0; x < slot->bitmap.width; x++) {
const uint32_t row_pixel_position = dx + x;
const uint8_t pixel_value =
get_pixel_value(&slot->bitmap.buffer[row_start],
render_mode, x);
srcdata->texbuf[row_pixel_position + row] = pixel_value;
}
}
}
void cache_glyphs(struct ft2_source *srcdata, wchar_t *cache_glyphs)
{
FT_GlyphSlot slot;
FT_UInt glyph_index = 0;
if (!srcdata->font_face || !cache_glyphs)
return;
slot = srcdata->font_face->glyph;
FT_GlyphSlot slot = srcdata->font_face->glyph;
uint32_t dx = srcdata->texbuf_x, dy = srcdata->texbuf_y;
uint32_t dx = srcdata->texbuf_x;
uint32_t dy = srcdata->texbuf_y;
int32_t cached_glyphs = 0;
size_t len = wcslen(cache_glyphs);
const size_t len = wcslen(cache_glyphs);
const FT_Render_Mode render_mode = get_render_mode(srcdata);
for (size_t i = 0; i < len; i++) {
glyph_index =
const FT_UInt glyph_index =
FT_Get_Char_Index(srcdata->font_face, cache_glyphs[i]);
if (src_glyph != NULL)
goto skip_glyph;
if (src_glyph != NULL) {
continue;
}
FT_Load_Glyph(srcdata->font_face, glyph_index, FT_LOAD_DEFAULT);
FT_Render_Glyph(slot, FT_RENDER_MODE_NORMAL);
load_glyph(srcdata, glyph_index, render_mode);
FT_Render_Glyph(slot, render_mode);
uint32_t g_w = slot->bitmap.width;
uint32_t g_h = slot->bitmap.rows;
const uint32_t g_w = slot->bitmap.width;
const uint32_t g_h = slot->bitmap.rows;
if (srcdata->max_h < g_h)
if (srcdata->max_h < g_h) {
srcdata->max_h = g_h;
}
if (dx + g_w >= texbuf_w) {
dx = 0;
@ -285,22 +356,8 @@ void cache_glyphs(struct ft2_source *srcdata, wchar_t *cache_glyphs)
break;
}
src_glyph = bzalloc(sizeof(struct glyph_info));
src_glyph->u = (float)dx / (float)texbuf_w;
src_glyph->u2 = (float)(dx + g_w) / (float)texbuf_w;
src_glyph->v = (float)dy / (float)texbuf_h;
src_glyph->v2 = (float)(dy + g_h) / (float)texbuf_h;
src_glyph->w = g_w;
src_glyph->h = g_h;
src_glyph->yoff = slot->bitmap_top;
src_glyph->xoff = slot->bitmap_left;
src_glyph->xadv = slot->advance.x >> 6;
for (uint32_t y = 0; y < g_h; y++) {
for (uint32_t x = 0; x < g_w; x++)
srcdata->texbuf[buf_pos] =
slot->bitmap.buffer[glyph_pos];
}
src_glyph = init_glyph(slot, dx, dy, g_w, g_h);
rasterize(srcdata, slot, render_mode, dx, dy);
dx += (g_w + 1);
if (dx >= texbuf_w) {
@ -309,7 +366,6 @@ void cache_glyphs(struct ft2_source *srcdata, wchar_t *cache_glyphs)
}
cached_glyphs++;
skip_glyph:;
}
srcdata->texbuf_x = dx;
@ -320,8 +376,7 @@ void cache_glyphs(struct ft2_source *srcdata, wchar_t *cache_glyphs)
obs_enter_graphics();
if (srcdata->tex != NULL) {
gs_texture_t *tmp_texture = NULL;
tmp_texture = srcdata->tex;
gs_texture_t *tmp_texture = srcdata->tex;
srcdata->tex = NULL;
gs_texture_destroy(tmp_texture);
}
@ -497,18 +552,18 @@ void read_from_end(struct ft2_source *srcdata, const char *filename)
uint32_t get_ft2_text_width(wchar_t *text, struct ft2_source *srcdata)
{
FT_GlyphSlot slot = srcdata->font_face->glyph;
FT_UInt glyph_index = 0;
uint32_t w = 0, max_w = 0;
size_t len;
if (!text)
if (!text) {
return 0;
}
len = wcslen(text);
FT_GlyphSlot slot = srcdata->font_face->glyph;
uint32_t w = 0, max_w = 0;
const size_t len = wcslen(text);
for (size_t i = 0; i < len; i++) {
glyph_index = FT_Get_Char_Index(srcdata->font_face, text[i]);
FT_Load_Glyph(srcdata->font_face, glyph_index, FT_LOAD_DEFAULT);
const FT_UInt glyph_index =
FT_Get_Char_Index(srcdata->font_face, text[i]);
load_glyph(srcdata, glyph_index, get_render_mode(srcdata));
if (text[i] == L'\n')
w = 0;