]> granicus.if.org Git - libass/blob - libass/ass_font.c
Remove obsolete "no_more_font_messages" hack.
[libass] / libass / ass_font.c
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>
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2 of the License, or
9   (at your option) any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software
18   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #include "config.h"
22
23 #include <inttypes.h>
24 #include <ft2build.h>
25 #include FT_FREETYPE_H
26 #include FT_SYNTHESIS_H
27 #include FT_GLYPH_H
28
29 #include "ass_font.h"
30 #include "ass_fontconfig.h"
31 #include "mputils.h"
32
33 /**
34  * Select Microfost Unicode CharMap, if the font has one.
35  * Otherwise, let FreeType decide.
36  */
37 static void charmap_magic(FT_Face face)
38 {
39         int i;
40         for (i = 0; i < face->num_charmaps; ++i) {
41                 FT_CharMap cmap = face->charmaps[i];
42                 unsigned pid = cmap->platform_id;
43                 unsigned eid = cmap->encoding_id;
44                 if (pid == 3 /*microsoft*/ && (eid == 1 /*unicode bmp*/ || eid == 10 /*full unicode*/)) {
45                         FT_Set_Charmap(face, cmap);
46                         break;
47                 }
48         }
49 }
50
51 int ass_font_init(FT_Library ftlibrary, void* fc_priv, ass_font_t* font, ass_font_desc_t* desc)
52 {
53         char* path;
54         int index;
55         FT_Face face;
56         int error;
57         
58         path = fontconfig_select(fc_priv, desc->family, desc->bold, desc->italic, &index);
59         
60         error = FT_New_Face(ftlibrary, path, index, &face);
61         if (error) {
62                 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorOpeningFont, path, index);
63                 return 1;
64         }
65
66         charmap_magic(face);
67         
68         font->path = strdup(path);
69         font->index = index;
70         font->face = face;
71         font->desc.family = strdup(desc->family);
72         font->desc.bold = desc->bold;
73         font->desc.italic = desc->italic;
74
75         font->m.xx = font->m.yy = (FT_Fixed)0x10000L;
76         font->m.xy = font->m.yy = 0;
77         font->v.x = font->v.y = 0;
78
79         return 0;
80 }
81
82 void ass_font_set_transform(ass_font_t* font, FT_Matrix* m, FT_Vector* v)
83 {
84         font->m.xx = m->xx;
85         font->m.xy = m->xy;
86         font->m.yx = m->yx;
87         font->m.yy = m->yy;
88         font->v.x = v->x;
89         font->v.y = v->y;
90         FT_Set_Transform(font->face, &font->m, &font->v);
91 }
92
93 void ass_font_set_size(ass_font_t* font, int size)
94 {
95         font->size = size;
96         FT_Set_Pixel_Sizes(font->face, 0, size);
97 }
98
99 FT_Glyph ass_font_get_glyph(void* fontconfig_priv, ass_font_t* font, uint32_t ch)
100 {
101         int error;
102         int index;
103         FT_Glyph glyph;
104         
105         index = FT_Get_Char_Index(font->face, ch);
106         error = FT_Load_Glyph(font->face, index, FT_LOAD_NO_BITMAP );
107         if (error) {
108                 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorLoadingGlyph);
109                 return 0;
110         }
111         
112 #if (FREETYPE_MAJOR > 2) || \
113     ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR >= 2)) || \
114     ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR == 1) && (FREETYPE_PATCH >= 10))
115 // FreeType >= 2.1.10 required
116         if (!(font->face->style_flags & FT_STYLE_FLAG_ITALIC) && 
117                         (font->desc.italic > 55)) {
118                 FT_GlyphSlot_Oblique(font->face->glyph);
119         }
120 #endif
121         error = FT_Get_Glyph(font->face->glyph, &glyph);
122         if (error) {
123                 mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_ErrorLoadingGlyph);
124                 return 0;
125         }
126         
127         return glyph;
128 }
129
130 void ass_font_free(ass_font_t* font)
131 {
132         if (font->face) FT_Done_Face(font->face);
133         if (font->path) free(font->path);
134         if (font->desc.family) free(font->desc.family);
135 }