Use DECLARE_ALIGNED macro instead of gcc __attribute__.
[mplayer/glamo.git] / libass / ass_font.c
blobe1290214390e06b7e577be64c67cc398b117552d
1 // -*- c-basic-offset: 8; indent-tabs-mode: t -*-
2 // vim:ts=8:sw=8:noet:ai:
3 /*
4 * Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
6 * This file is part of libass.
8 * libass is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * libass is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with libass; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "config.h"
25 #include <inttypes.h>
26 #include <ft2build.h>
27 #include FT_FREETYPE_H
28 #include FT_SYNTHESIS_H
29 #include FT_GLYPH_H
30 #include FT_TRUETYPE_TABLES_H
32 #include "ass.h"
33 #include "ass_library.h"
34 #include "ass_font.h"
35 #include "ass_bitmap.h"
36 #include "ass_cache.h"
37 #include "ass_fontconfig.h"
38 #include "ass_utils.h"
39 #include "mputils.h"
41 /**
42 * Select Microfost Unicode CharMap, if the font has one.
43 * Otherwise, let FreeType decide.
45 static void charmap_magic(FT_Face face)
47 int i;
48 for (i = 0; i < face->num_charmaps; ++i) {
49 FT_CharMap cmap = face->charmaps[i];
50 unsigned pid = cmap->platform_id;
51 unsigned eid = cmap->encoding_id;
52 if (pid == 3 /*microsoft*/ && (eid == 1 /*unicode bmp*/ || eid == 10 /*full unicode*/)) {
53 FT_Set_Charmap(face, cmap);
54 return;
58 if (!face->charmap) {
59 if (face->num_charmaps == 0) {
60 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_NoCharmaps);
61 return;
63 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_NoCharmapAutodetected);
64 FT_Set_Charmap(face, face->charmaps[0]);
65 return;
69 static void update_transform(ass_font_t* font)
71 int i;
72 FT_Matrix m;
73 m.xx = double_to_d16(font->scale_x);
74 m.yy = double_to_d16(font->scale_y);
75 m.xy = m.yx = 0;
76 for (i = 0; i < font->n_faces; ++i)
77 FT_Set_Transform(font->faces[i], &m, &font->v);
80 /**
81 * \brief find a memory font by name
83 static int find_font(ass_library_t* library, char* name)
85 int i;
86 for (i = 0; i < library->num_fontdata; ++i)
87 if (strcasecmp(name, library->fontdata[i].name) == 0)
88 return i;
89 return -1;
92 static void face_set_size(FT_Face face, double size);
94 static void buggy_font_workaround(FT_Face face)
96 // Some fonts have zero Ascender/Descender fields in 'hhea' table.
97 // In this case, get the information from 'os2' table or, as
98 // a last resort, from face.bbox.
99 if (face->ascender + face->descender == 0 || face->height == 0) {
100 TT_OS2 *os2 = FT_Get_Sfnt_Table(face, ft_sfnt_os2);
101 if (os2) {
102 face->ascender = os2->sTypoAscender;
103 face->descender = os2->sTypoDescender;
104 face->height = face->ascender - face->descender;
105 } else {
106 face->ascender = face->bbox.yMax;
107 face->descender = face->bbox.yMin;
108 face->height = face->ascender - face->descender;
114 * \brief Select a face with the given charcode and add it to ass_font_t
115 * \return index of the new face in font->faces, -1 if failed
117 static int add_face(void* fc_priv, ass_font_t* font, uint32_t ch)
119 char* path;
120 int index;
121 FT_Face face;
122 int error;
123 int mem_idx;
125 if (font->n_faces == ASS_FONT_MAX_FACES)
126 return -1;
128 path = fontconfig_select(fc_priv, font->desc.family, font->desc.treat_family_as_pattern, font->desc.bold,
129 font->desc.italic, &index, ch);
131 mem_idx = find_font(font->library, path);
132 if (mem_idx >= 0) {
133 error = FT_New_Memory_Face(font->ftlibrary, (unsigned char*)font->library->fontdata[mem_idx].data,
134 font->library->fontdata[mem_idx].size, 0, &face);
135 if (error) {
136 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorOpeningMemoryFont, path);
137 return -1;
139 } else {
140 error = FT_New_Face(font->ftlibrary, path, index, &face);
141 if (error) {
142 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorOpeningFont, path, index);
143 return -1;
146 charmap_magic(face);
147 buggy_font_workaround(face);
149 font->faces[font->n_faces++] = face;
150 update_transform(font);
151 face_set_size(face, font->size);
152 return font->n_faces - 1;
156 * \brief Create a new ass_font_t according to "desc" argument
158 ass_font_t* ass_font_new(ass_library_t* library, FT_Library ftlibrary, void* fc_priv, ass_font_desc_t* desc)
160 int error;
161 ass_font_t* fontp;
162 ass_font_t font;
164 fontp = ass_font_cache_find(desc);
165 if (fontp)
166 return fontp;
168 font.library = library;
169 font.ftlibrary = ftlibrary;
170 font.n_faces = 0;
171 font.desc.family = strdup(desc->family);
172 font.desc.treat_family_as_pattern = desc->treat_family_as_pattern;
173 font.desc.bold = desc->bold;
174 font.desc.italic = desc->italic;
176 font.scale_x = font.scale_y = 1.;
177 font.v.x = font.v.y = 0;
178 font.size = 0.;
180 error = add_face(fc_priv, &font, 0);
181 if (error == -1) {
182 free(font.desc.family);
183 return 0;
184 } else
185 return ass_font_cache_add(&font);
189 * \brief Set font transformation matrix and shift vector
191 void ass_font_set_transform(ass_font_t* font, double scale_x, double scale_y, FT_Vector* v)
193 font->scale_x = scale_x;
194 font->scale_y = scale_y;
195 font->v.x = v->x;
196 font->v.y = v->y;
197 update_transform(font);
200 static void face_set_size(FT_Face face, double size)
202 #if (FREETYPE_MAJOR > 2) || ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR > 1))
203 TT_HoriHeader *hori = FT_Get_Sfnt_Table(face, ft_sfnt_hhea);
204 TT_OS2 *os2 = FT_Get_Sfnt_Table(face, ft_sfnt_os2);
205 double mscale = 1.;
206 FT_Size_RequestRec rq;
207 FT_Size_Metrics *m = &face->size->metrics;
208 // VSFilter uses metrics from TrueType OS/2 table
209 // The idea was borrowed from asa (http://asa.diac24.net)
210 if (hori && os2) {
211 int hori_height = hori->Ascender - hori->Descender;
212 int os2_height = os2->usWinAscent + os2->usWinDescent;
213 if (hori_height && os2_height)
214 mscale = (double)hori_height / os2_height;
216 memset(&rq, 0, sizeof(rq));
217 rq.type = FT_SIZE_REQUEST_TYPE_REAL_DIM;
218 rq.width = 0;
219 rq.height = double_to_d6(size * mscale);
220 rq.horiResolution = rq.vertResolution = 0;
221 FT_Request_Size(face, &rq);
222 m->ascender /= mscale;
223 m->descender /= mscale;
224 m->height /= mscale;
225 #else
226 FT_Set_Char_Size(face, 0, double_to_d6(size), 0, 0);
227 #endif
231 * \brief Set font size
233 void ass_font_set_size(ass_font_t* font, double size)
235 int i;
236 if (font->size != size) {
237 font->size = size;
238 for (i = 0; i < font->n_faces; ++i)
239 face_set_size(font->faces[i], size);
244 * \brief Get maximal font ascender and descender.
245 * \param ch character code
246 * The values are extracted from the font face that provides glyphs for the given character
248 void ass_font_get_asc_desc(ass_font_t* font, uint32_t ch, int* asc, int* desc)
250 int i;
251 for (i = 0; i < font->n_faces; ++i) {
252 FT_Face face = font->faces[i];
253 if (FT_Get_Char_Index(face, ch)) {
254 *asc = face->size->metrics.ascender;
255 *desc = - face->size->metrics.descender;
256 return;
260 *asc = *desc = 0;
264 * \brief Get a glyph
265 * \param ch character code
267 FT_Glyph ass_font_get_glyph(void* fontconfig_priv, ass_font_t* font, uint32_t ch, ass_hinting_t hinting)
269 int error;
270 int index = 0;
271 int i;
272 FT_Glyph glyph;
273 FT_Face face = 0;
274 int flags = 0;
276 if (ch < 0x20)
277 return 0;
278 if (font->n_faces == 0)
279 return 0;
281 for (i = 0; i < font->n_faces; ++i) {
282 face = font->faces[i];
283 index = FT_Get_Char_Index(face, ch);
284 if (index)
285 break;
288 #ifdef CONFIG_FONTCONFIG
289 if (index == 0) {
290 int face_idx;
291 mp_msg(MSGT_ASS, MSGL_INFO, MSGTR_LIBASS_GlyphNotFoundReselectingFont,
292 ch, font->desc.family, font->desc.bold, font->desc.italic);
293 face_idx = add_face(fontconfig_priv, font, ch);
294 if (face_idx >= 0) {
295 face = font->faces[face_idx];
296 index = FT_Get_Char_Index(face, ch);
297 if (index == 0) {
298 mp_msg(MSGT_ASS, MSGL_ERR, MSGTR_LIBASS_GlyphNotFound,
299 ch, font->desc.family, font->desc.bold, font->desc.italic);
303 #endif
305 switch (hinting) {
306 case ASS_HINTING_NONE: flags = FT_LOAD_NO_HINTING; break;
307 case ASS_HINTING_LIGHT: flags = FT_LOAD_FORCE_AUTOHINT | FT_LOAD_TARGET_LIGHT; break;
308 case ASS_HINTING_NORMAL: flags = FT_LOAD_FORCE_AUTOHINT; break;
309 case ASS_HINTING_NATIVE: flags = 0; break;
312 error = FT_Load_Glyph(face, index, FT_LOAD_NO_BITMAP | flags);
313 if (error) {
314 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorLoadingGlyph);
315 return 0;
318 #if (FREETYPE_MAJOR > 2) || \
319 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR >= 2)) || \
320 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR == 1) && (FREETYPE_PATCH >= 10))
321 // FreeType >= 2.1.10 required
322 if (!(face->style_flags & FT_STYLE_FLAG_ITALIC) &&
323 (font->desc.italic > 55)) {
324 FT_GlyphSlot_Oblique(face->glyph);
326 #endif
327 error = FT_Get_Glyph(face->glyph, &glyph);
328 if (error) {
329 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorLoadingGlyph);
330 return 0;
333 return glyph;
337 * \brief Get kerning for the pair of glyphs.
339 FT_Vector ass_font_get_kerning(ass_font_t* font, uint32_t c1, uint32_t c2)
341 FT_Vector v = {0, 0};
342 int i;
344 for (i = 0; i < font->n_faces; ++i) {
345 FT_Face face = font->faces[i];
346 int i1 = FT_Get_Char_Index(face, c1);
347 int i2 = FT_Get_Char_Index(face, c2);
348 if (i1 && i2) {
349 if (FT_HAS_KERNING(face))
350 FT_Get_Kerning(face, i1, i2, FT_KERNING_DEFAULT, &v);
351 return v;
353 if (i1 || i2) // these glyphs are from different font faces, no kerning information
354 return v;
356 return v;
360 * \brief Deallocate ass_font_t
362 void ass_font_free(ass_font_t* font)
364 int i;
365 for (i = 0; i < font->n_faces; ++i)
366 if (font->faces[i]) FT_Done_Face(font->faces[i]);
367 if (font->desc.family) free(font->desc.family);
368 free(font);