1 /*
2 * Copyright © 2011,2014 Google, Inc.
3 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Google Author(s): Behdad Esfahbod, Roozbeh Pournader
25 */
26
27 #include "hb.hh"
28
29 #include "hb-ot.h"
30
31 #include "hb-font.hh"
32 #include "hb-machinery.hh"
33 #include "hb-ot-face.hh"
34
35 #include "hb-ot-cmap-table.hh"
36 #include "hb-ot-glyf-table.hh"
37 #include "hb-ot-cff1-table.hh"
38 #include "hb-ot-cff2-table.hh"
39 #include "hb-ot-hmtx-table.hh"
40 #include "hb-ot-kern-table.hh"
41 #include "hb-ot-os2-table.hh"
42 #include "hb-ot-post-table.hh"
43 #include "hb-ot-stat-table.hh" // Just so we compile it; unused otherwise.
44 #include "hb-ot-vorg-table.hh"
45 #include "hb-ot-color-cbdt-table.hh"
46 #include "hb-ot-color-sbix-table.hh"
47
48
49 /**
50 * SECTION:hb-ot-font
51 * @title: hb-ot-font
52 * @short_description: OpenType font implementation
53 * @include: hb-ot.h
54 *
55 * Functions for using OpenType fonts with hb_shape(). Note that fonts returned
56 * by hb_font_create() default to using these functions, so most clients would
57 * never need to call these functions directly.
58 **/
59
60
61 static hb_bool_t
hb_ot_get_nominal_glyph(hb_font_t * font HB_UNUSED,void * font_data,hb_codepoint_t unicode,hb_codepoint_t * glyph,void * user_data HB_UNUSED)62 hb_ot_get_nominal_glyph (hb_font_t *font HB_UNUSED,
63 void *font_data,
64 hb_codepoint_t unicode,
65 hb_codepoint_t *glyph,
66 void *user_data HB_UNUSED)
67 {
68 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
69 return ot_face->cmap->get_nominal_glyph (unicode, glyph);
70 }
71
72 static unsigned int
hb_ot_get_nominal_glyphs(hb_font_t * font HB_UNUSED,void * font_data,unsigned int count,const hb_codepoint_t * first_unicode,unsigned int unicode_stride,hb_codepoint_t * first_glyph,unsigned int glyph_stride,void * user_data HB_UNUSED)73 hb_ot_get_nominal_glyphs (hb_font_t *font HB_UNUSED,
74 void *font_data,
75 unsigned int count,
76 const hb_codepoint_t *first_unicode,
77 unsigned int unicode_stride,
78 hb_codepoint_t *first_glyph,
79 unsigned int glyph_stride,
80 void *user_data HB_UNUSED)
81 {
82 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
83 return ot_face->cmap->get_nominal_glyphs (count,
84 first_unicode, unicode_stride,
85 first_glyph, glyph_stride);
86 }
87
88 static hb_bool_t
hb_ot_get_variation_glyph(hb_font_t * font HB_UNUSED,void * font_data,hb_codepoint_t unicode,hb_codepoint_t variation_selector,hb_codepoint_t * glyph,void * user_data HB_UNUSED)89 hb_ot_get_variation_glyph (hb_font_t *font HB_UNUSED,
90 void *font_data,
91 hb_codepoint_t unicode,
92 hb_codepoint_t variation_selector,
93 hb_codepoint_t *glyph,
94 void *user_data HB_UNUSED)
95 {
96 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
97 return ot_face->cmap->get_variation_glyph (unicode, variation_selector, glyph);
98 }
99
100 static void
hb_ot_get_glyph_h_advances(hb_font_t * font,void * font_data,unsigned count,const hb_codepoint_t * first_glyph,unsigned glyph_stride,hb_position_t * first_advance,unsigned advance_stride,void * user_data HB_UNUSED)101 hb_ot_get_glyph_h_advances (hb_font_t* font, void* font_data,
102 unsigned count,
103 const hb_codepoint_t *first_glyph,
104 unsigned glyph_stride,
105 hb_position_t *first_advance,
106 unsigned advance_stride,
107 void *user_data HB_UNUSED)
108 {
109 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
110 const OT::hmtx_accelerator_t &hmtx = *ot_face->hmtx;
111
112 for (unsigned int i = 0; i < count; i++)
113 {
114 *first_advance = font->em_scale_x (hmtx.get_advance (*first_glyph, font));
115 first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride);
116 first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
117 }
118 }
119
120 static void
hb_ot_get_glyph_v_advances(hb_font_t * font,void * font_data,unsigned count,const hb_codepoint_t * first_glyph,unsigned glyph_stride,hb_position_t * first_advance,unsigned advance_stride,void * user_data HB_UNUSED)121 hb_ot_get_glyph_v_advances (hb_font_t* font, void* font_data,
122 unsigned count,
123 const hb_codepoint_t *first_glyph,
124 unsigned glyph_stride,
125 hb_position_t *first_advance,
126 unsigned advance_stride,
127 void *user_data HB_UNUSED)
128 {
129 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
130 const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
131
132 for (unsigned int i = 0; i < count; i++)
133 {
134 *first_advance = font->em_scale_y (-(int) vmtx.get_advance (*first_glyph, font));
135 first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride);
136 first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
137 }
138 }
139
140 static hb_bool_t
hb_ot_get_glyph_v_origin(hb_font_t * font,void * font_data,hb_codepoint_t glyph,hb_position_t * x,hb_position_t * y,void * user_data HB_UNUSED)141 hb_ot_get_glyph_v_origin (hb_font_t *font,
142 void *font_data,
143 hb_codepoint_t glyph,
144 hb_position_t *x,
145 hb_position_t *y,
146 void *user_data HB_UNUSED)
147 {
148 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
149
150 *x = font->get_glyph_h_advance (glyph) / 2;
151
152 const OT::VORG &VORG = *ot_face->VORG;
153 if (VORG.has_data ())
154 {
155 *y = font->em_scale_y (VORG.get_y_origin (glyph));
156 return true;
157 }
158
159 hb_glyph_extents_t extents = {0};
160 if (ot_face->glyf->get_extents (glyph, &extents))
161 {
162 const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
163 hb_position_t tsb = vmtx.get_side_bearing (glyph);
164 *y = font->em_scale_y (extents.y_bearing + tsb);
165 return true;
166 }
167
168 hb_font_extents_t font_extents;
169 font->get_h_extents_with_fallback (&font_extents);
170 *y = font_extents.ascender;
171
172 return true;
173 }
174
175 static hb_bool_t
hb_ot_get_glyph_extents(hb_font_t * font,void * font_data,hb_codepoint_t glyph,hb_glyph_extents_t * extents,void * user_data HB_UNUSED)176 hb_ot_get_glyph_extents (hb_font_t *font,
177 void *font_data,
178 hb_codepoint_t glyph,
179 hb_glyph_extents_t *extents,
180 void *user_data HB_UNUSED)
181 {
182 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
183 bool ret = false;
184
185 #if !defined(HB_NO_OT_FONT_BITMAP) && !defined(HB_NO_COLOR)
186 if (!ret) ret = ot_face->sbix->get_extents (font, glyph, extents);
187 #endif
188 if (!ret) ret = ot_face->glyf->get_extents (glyph, extents);
189 #ifndef HB_NO_OT_FONT_CFF
190 if (!ret) ret = ot_face->cff1->get_extents (glyph, extents);
191 if (!ret) ret = ot_face->cff2->get_extents (font, glyph, extents);
192 #endif
193 #if !defined(HB_NO_OT_FONT_BITMAP) && !defined(HB_NO_COLOR)
194 if (!ret) ret = ot_face->CBDT->get_extents (font, glyph, extents);
195 #endif
196
197 // TODO Hook up side-bearings variations.
198 extents->x_bearing = font->em_scale_x (extents->x_bearing);
199 extents->y_bearing = font->em_scale_y (extents->y_bearing);
200 extents->width = font->em_scale_x (extents->width);
201 extents->height = font->em_scale_y (extents->height);
202 return ret;
203 }
204
205 static hb_bool_t
hb_ot_get_glyph_name(hb_font_t * font HB_UNUSED,void * font_data,hb_codepoint_t glyph,char * name,unsigned int size,void * user_data HB_UNUSED)206 hb_ot_get_glyph_name (hb_font_t *font HB_UNUSED,
207 void *font_data,
208 hb_codepoint_t glyph,
209 char *name, unsigned int size,
210 void *user_data HB_UNUSED)
211 {
212 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
213 return ot_face->post->get_glyph_name (glyph, name, size);
214 }
215
216 static hb_bool_t
hb_ot_get_glyph_from_name(hb_font_t * font HB_UNUSED,void * font_data,const char * name,int len,hb_codepoint_t * glyph,void * user_data HB_UNUSED)217 hb_ot_get_glyph_from_name (hb_font_t *font HB_UNUSED,
218 void *font_data,
219 const char *name, int len,
220 hb_codepoint_t *glyph,
221 void *user_data HB_UNUSED)
222 {
223 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
224 return ot_face->post->get_glyph_from_name (name, len, glyph);
225 }
226
227 static hb_bool_t
hb_ot_get_font_h_extents(hb_font_t * font,void * font_data,hb_font_extents_t * metrics,void * user_data HB_UNUSED)228 hb_ot_get_font_h_extents (hb_font_t *font,
229 void *font_data,
230 hb_font_extents_t *metrics,
231 void *user_data HB_UNUSED)
232 {
233 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
234 const OT::hmtx_accelerator_t &hmtx = *ot_face->hmtx;
235 metrics->ascender = font->em_scale_y (hmtx.ascender);
236 metrics->descender = font->em_scale_y (hmtx.descender);
237 metrics->line_gap = font->em_scale_y (hmtx.line_gap);
238 // TODO Hook up variations.
239 return hmtx.has_font_extents;
240 }
241
242 static hb_bool_t
hb_ot_get_font_v_extents(hb_font_t * font,void * font_data,hb_font_extents_t * metrics,void * user_data HB_UNUSED)243 hb_ot_get_font_v_extents (hb_font_t *font,
244 void *font_data,
245 hb_font_extents_t *metrics,
246 void *user_data HB_UNUSED)
247 {
248 const hb_ot_face_t *ot_face = (const hb_ot_face_t *) font_data;
249 const OT::vmtx_accelerator_t &vmtx = *ot_face->vmtx;
250 metrics->ascender = font->em_scale_x (vmtx.ascender);
251 metrics->descender = font->em_scale_x (vmtx.descender);
252 metrics->line_gap = font->em_scale_x (vmtx.line_gap);
253 // TODO Hook up variations.
254 return vmtx.has_font_extents;
255 }
256
257 #if HB_USE_ATEXIT
258 static void free_static_ot_funcs ();
259 #endif
260
261 static struct hb_ot_font_funcs_lazy_loader_t : hb_font_funcs_lazy_loader_t<hb_ot_font_funcs_lazy_loader_t>
262 {
createhb_ot_font_funcs_lazy_loader_t263 static hb_font_funcs_t *create ()
264 {
265 hb_font_funcs_t *funcs = hb_font_funcs_create ();
266
267 hb_font_funcs_set_font_h_extents_func (funcs, hb_ot_get_font_h_extents, nullptr, nullptr);
268 hb_font_funcs_set_font_v_extents_func (funcs, hb_ot_get_font_v_extents, nullptr, nullptr);
269 hb_font_funcs_set_nominal_glyph_func (funcs, hb_ot_get_nominal_glyph, nullptr, nullptr);
270 hb_font_funcs_set_nominal_glyphs_func (funcs, hb_ot_get_nominal_glyphs, nullptr, nullptr);
271 hb_font_funcs_set_variation_glyph_func (funcs, hb_ot_get_variation_glyph, nullptr, nullptr);
272 hb_font_funcs_set_glyph_h_advances_func (funcs, hb_ot_get_glyph_h_advances, nullptr, nullptr);
273 hb_font_funcs_set_glyph_v_advances_func (funcs, hb_ot_get_glyph_v_advances, nullptr, nullptr);
274 //hb_font_funcs_set_glyph_h_origin_func (funcs, hb_ot_get_glyph_h_origin, nullptr, nullptr);
275 hb_font_funcs_set_glyph_v_origin_func (funcs, hb_ot_get_glyph_v_origin, nullptr, nullptr);
276 hb_font_funcs_set_glyph_extents_func (funcs, hb_ot_get_glyph_extents, nullptr, nullptr);
277 //hb_font_funcs_set_glyph_contour_point_func (funcs, hb_ot_get_glyph_contour_point, nullptr, nullptr);
278 hb_font_funcs_set_glyph_name_func (funcs, hb_ot_get_glyph_name, nullptr, nullptr);
279 hb_font_funcs_set_glyph_from_name_func (funcs, hb_ot_get_glyph_from_name, nullptr, nullptr);
280
281 hb_font_funcs_make_immutable (funcs);
282
283 #if HB_USE_ATEXIT
284 atexit (free_static_ot_funcs);
285 #endif
286
287 return funcs;
288 }
289 } static_ot_funcs;
290
291 #if HB_USE_ATEXIT
292 static
free_static_ot_funcs()293 void free_static_ot_funcs ()
294 {
295 static_ot_funcs.free_instance ();
296 }
297 #endif
298
299 static hb_font_funcs_t *
_hb_ot_get_font_funcs()300 _hb_ot_get_font_funcs ()
301 {
302 return static_ot_funcs.get_unconst ();
303 }
304
305
306 /**
307 * hb_ot_font_set_funcs:
308 *
309 * Since: 0.9.28
310 **/
311 void
hb_ot_font_set_funcs(hb_font_t * font)312 hb_ot_font_set_funcs (hb_font_t *font)
313 {
314 hb_font_set_funcs (font,
315 _hb_ot_get_font_funcs (),
316 &font->face->table,
317 nullptr);
318 }
319