103808cf91890034a04b99f1f0300ba3cd24ee18
[platform/upstream/harfbuzz.git] / src / hb-ot-metrics.cc
1 /*
2  * Copyright © 2018-2019  Ebrahim Byagowi
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
25 #include "hb.hh"
26
27 #include "hb-ot-var-mvar-table.hh"
28 #include "hb-ot-gasp-table.hh" // Just so we compile it; unused otherwise.
29 #include "hb-ot-os2-table.hh"
30 #include "hb-ot-post-table.hh"
31 #include "hb-ot-hhea-table.hh"
32 #include "hb-ot-metrics.hh"
33 #include "hb-ot-face.hh"
34
35
36 /**
37  * SECTION:hb-ot-metrics
38  * @title: hb-ot-metrics
39  * @short_description: OpenType Metrics
40  * @include: hb-ot.h
41  *
42  * Functions for fetching metrics from fonts.
43  **/
44
45 static float
46 _fix_ascender_descender (float value, hb_ot_metrics_tag_t metrics_tag)
47 {
48   if (metrics_tag == HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER ||
49       metrics_tag == HB_OT_METRICS_TAG_VERTICAL_ASCENDER)
50     return fabs ((double) value);
51   if (metrics_tag == HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER ||
52       metrics_tag == HB_OT_METRICS_TAG_VERTICAL_DESCENDER)
53     return -fabs ((double) value);
54   return value;
55 }
56
57 /* The common part of _get_position logic needed on hb-ot-font and here
58    to be able to have slim builds without the not always needed parts */
59 bool
60 _hb_ot_metrics_get_position_common (hb_font_t           *font,
61                                     hb_ot_metrics_tag_t  metrics_tag,
62                                     hb_position_t       *position     /* OUT.  May be NULL. */)
63 {
64   hb_face_t *face = font->face;
65   switch ((unsigned) metrics_tag)
66   {
67 #ifndef HB_NO_VAR
68 #define GET_VAR face->table.MVAR->get_var (metrics_tag, font->coords, font->num_coords)
69 #else
70 #define GET_VAR .0f
71 #endif
72 #define GET_METRIC_X(TABLE, ATTR) \
73   (face->table.TABLE->has_data () && \
74     (position && (*position = font->em_scalef_x (_fix_ascender_descender ( \
75       face->table.TABLE->ATTR + GET_VAR, metrics_tag))), true))
76 #define GET_METRIC_Y(TABLE, ATTR) \
77   (face->table.TABLE->has_data () && \
78     (position && (*position = font->em_scalef_y (_fix_ascender_descender ( \
79       face->table.TABLE->ATTR + GET_VAR, metrics_tag))), true))
80
81   case HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER:
82     return (face->table.OS2->use_typo_metrics () && GET_METRIC_Y (OS2, sTypoAscender)) ||
83            GET_METRIC_Y (hhea, ascender);
84   case HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER:
85     return (face->table.OS2->use_typo_metrics () && GET_METRIC_Y (OS2, sTypoDescender)) ||
86            GET_METRIC_Y (hhea, descender);
87   case HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP:
88     return (face->table.OS2->use_typo_metrics () && GET_METRIC_Y (OS2, sTypoLineGap)) ||
89            GET_METRIC_Y (hhea, lineGap);
90
91 #ifndef HB_NO_VERTICAL
92   case HB_OT_METRICS_TAG_VERTICAL_ASCENDER:  return GET_METRIC_X (vhea, ascender);
93   case HB_OT_METRICS_TAG_VERTICAL_DESCENDER: return GET_METRIC_X (vhea, descender);
94   case HB_OT_METRICS_TAG_VERTICAL_LINE_GAP:  return GET_METRIC_X (vhea, lineGap);
95 #endif
96
97 #undef GET_METRIC_Y
98 #undef GET_METRIC_X
99 #undef GET_VAR
100   default:                               assert (0); return false;
101   }
102 }
103
104 #ifndef HB_NO_METRICS
105
106 #if 0
107 static bool
108 _get_gasp (hb_face_t *face, float *result, hb_ot_metrics_tag_t metrics_tag)
109 {
110   const OT::GaspRange& range = face->table.gasp->get_gasp_range (metrics_tag - HB_TAG ('g','s','p','0'));
111   if (&range == &Null (OT::GaspRange)) return false;
112   if (result) *result = range.rangeMaxPPEM + font->face->table.MVAR->get_var (metrics_tag, font->coords, font->num_coords);
113   return true;
114 }
115 #endif
116
117 /* Private tags for https://github.com/harfbuzz/harfbuzz/issues/1866 */
118 #define _HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER_OS2   HB_TAG ('O','a','s','c')
119 #define _HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER_HHEA  HB_TAG ('H','a','s','c')
120 #define _HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER_OS2  HB_TAG ('O','d','s','c')
121 #define _HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER_HHEA HB_TAG ('H','d','s','c')
122 #define _HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP_OS2   HB_TAG ('O','l','g','p')
123 #define _HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP_HHEA  HB_TAG ('H','l','g','p')
124
125 /**
126  * hb_ot_metrics_get_position:
127  * @font: an #hb_font_t object.
128  * @metrics_tag: tag of metrics value you like to fetch.
129  * @position: (out) (optional): result of metrics value from the font.
130  *
131  * Fetches metrics value corresponding to @metrics_tag from @font.
132  *
133  * Returns: Whether found the requested metrics in the font.
134  * Since: 2.6.0
135  **/
136 hb_bool_t
137 hb_ot_metrics_get_position (hb_font_t           *font,
138                             hb_ot_metrics_tag_t  metrics_tag,
139                             hb_position_t       *position     /* OUT.  May be NULL. */)
140 {
141   hb_face_t *face = font->face;
142   switch ((unsigned) metrics_tag)
143   {
144   case HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER:
145   case HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER:
146   case HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP:
147   case HB_OT_METRICS_TAG_VERTICAL_ASCENDER:
148   case HB_OT_METRICS_TAG_VERTICAL_DESCENDER:
149   case HB_OT_METRICS_TAG_VERTICAL_LINE_GAP:           return _hb_ot_metrics_get_position_common (font, metrics_tag, position);
150 #ifndef HB_NO_VAR
151 #define GET_VAR hb_ot_metrics_get_variation (font, metrics_tag)
152 #else
153 #define GET_VAR 0
154 #endif
155 #define GET_METRIC_X(TABLE, ATTR) \
156   (face->table.TABLE->has_data () && \
157     (position && (*position = font->em_scalef_x (face->table.TABLE->ATTR + GET_VAR)), true))
158 #define GET_METRIC_Y(TABLE, ATTR) \
159   (face->table.TABLE->has_data () && \
160     (position && (*position = font->em_scalef_y (face->table.TABLE->ATTR + GET_VAR)), true))
161   case HB_OT_METRICS_TAG_HORIZONTAL_CLIPPING_ASCENT:  return GET_METRIC_Y (OS2, usWinAscent);
162   case HB_OT_METRICS_TAG_HORIZONTAL_CLIPPING_DESCENT: return GET_METRIC_Y (OS2, usWinDescent);
163
164   case HB_OT_METRICS_TAG_HORIZONTAL_CARET_RISE:
165   case HB_OT_METRICS_TAG_HORIZONTAL_CARET_RUN:
166   {
167     unsigned mult = 1u;
168
169     if (font->slant)
170     {
171       unsigned rise = face->table.hhea->caretSlopeRise;
172       unsigned upem = face->get_upem ();
173       mult = (rise && rise < upem) ? hb_min (upem / rise, 256u) : 1u;
174     }
175
176     if (metrics_tag == HB_OT_METRICS_TAG_HORIZONTAL_CARET_RISE)
177     {
178       bool ret = GET_METRIC_Y (hhea, caretSlopeRise);
179
180       if (position)
181         *position *= mult;
182
183       return ret;
184     }
185     else
186     {
187       hb_position_t rise = 0;
188
189       if (font->slant && position && GET_METRIC_Y (hhea, caretSlopeRise))
190         rise = *position;
191
192       bool ret = GET_METRIC_X (hhea, caretSlopeRun);
193
194       if (position)
195       {
196         *position *= mult;
197
198         if (font->slant)
199           *position += _hb_roundf (mult * font->slant_xy * rise);
200       }
201
202       return ret;
203     }
204   }
205   case HB_OT_METRICS_TAG_HORIZONTAL_CARET_OFFSET:     return GET_METRIC_X (hhea, caretOffset);
206
207 #ifndef HB_NO_VERTICAL
208   case HB_OT_METRICS_TAG_VERTICAL_CARET_RISE:         return GET_METRIC_X (vhea, caretSlopeRise);
209   case HB_OT_METRICS_TAG_VERTICAL_CARET_RUN:          return GET_METRIC_Y (vhea, caretSlopeRun);
210   case HB_OT_METRICS_TAG_VERTICAL_CARET_OFFSET:       return GET_METRIC_Y (vhea, caretOffset);
211 #endif
212   case HB_OT_METRICS_TAG_X_HEIGHT:                    return GET_METRIC_Y (OS2->v2 (), sxHeight);
213   case HB_OT_METRICS_TAG_CAP_HEIGHT:                  return GET_METRIC_Y (OS2->v2 (), sCapHeight);
214   case HB_OT_METRICS_TAG_SUBSCRIPT_EM_X_SIZE:         return GET_METRIC_X (OS2, ySubscriptXSize);
215   case HB_OT_METRICS_TAG_SUBSCRIPT_EM_Y_SIZE:         return GET_METRIC_Y (OS2, ySubscriptYSize);
216   case HB_OT_METRICS_TAG_SUBSCRIPT_EM_X_OFFSET:       return GET_METRIC_X (OS2, ySubscriptXOffset);
217   case HB_OT_METRICS_TAG_SUBSCRIPT_EM_Y_OFFSET:       return GET_METRIC_Y (OS2, ySubscriptYOffset);
218   case HB_OT_METRICS_TAG_SUPERSCRIPT_EM_X_SIZE:       return GET_METRIC_X (OS2, ySuperscriptXSize);
219   case HB_OT_METRICS_TAG_SUPERSCRIPT_EM_Y_SIZE:       return GET_METRIC_Y (OS2, ySuperscriptYSize);
220   case HB_OT_METRICS_TAG_SUPERSCRIPT_EM_X_OFFSET:     return GET_METRIC_X (OS2, ySuperscriptXOffset);
221   case HB_OT_METRICS_TAG_SUPERSCRIPT_EM_Y_OFFSET:     return GET_METRIC_Y (OS2, ySuperscriptYOffset);
222   case HB_OT_METRICS_TAG_STRIKEOUT_SIZE:              return GET_METRIC_Y (OS2, yStrikeoutSize);
223   case HB_OT_METRICS_TAG_STRIKEOUT_OFFSET:            return GET_METRIC_Y (OS2, yStrikeoutPosition);
224   case HB_OT_METRICS_TAG_UNDERLINE_SIZE:              return GET_METRIC_Y (post->table, underlineThickness);
225   case HB_OT_METRICS_TAG_UNDERLINE_OFFSET:            return GET_METRIC_Y (post->table, underlinePosition);
226
227   /* Private tags */
228   case _HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER_OS2:    return GET_METRIC_Y (OS2, sTypoAscender);
229   case _HB_OT_METRICS_TAG_HORIZONTAL_ASCENDER_HHEA:   return GET_METRIC_Y (hhea, ascender);
230   case _HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER_OS2:   return GET_METRIC_Y (OS2, sTypoDescender);
231   case _HB_OT_METRICS_TAG_HORIZONTAL_DESCENDER_HHEA:  return GET_METRIC_Y (hhea, descender);
232   case _HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP_OS2:    return GET_METRIC_Y (OS2, sTypoLineGap);
233   case _HB_OT_METRICS_TAG_HORIZONTAL_LINE_GAP_HHEA:   return GET_METRIC_Y (hhea, lineGap);
234 #undef GET_METRIC_Y
235 #undef GET_METRIC_X
236 #undef GET_VAR
237   default:                                        return false;
238   }
239 }
240
241 #ifndef HB_NO_VAR
242 /**
243  * hb_ot_metrics_get_variation:
244  * @font: an #hb_font_t object.
245  * @metrics_tag: tag of metrics value you like to fetch.
246  *
247  * Fetches metrics value corresponding to @metrics_tag from @font with the
248  * current font variation settings applied.
249  *
250  * Returns: The requested metric value.
251  *
252  * Since: 2.6.0
253  **/
254 float
255 hb_ot_metrics_get_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
256 {
257   return font->face->table.MVAR->get_var (metrics_tag, font->coords, font->num_coords);
258 }
259
260 /**
261  * hb_ot_metrics_get_x_variation:
262  * @font: an #hb_font_t object.
263  * @metrics_tag: tag of metrics value you like to fetch.
264  *
265  * Fetches horizontal metrics value corresponding to @metrics_tag from @font
266  * with the current font variation settings applied.
267  *
268  * Returns: The requested metric value.
269  *
270  * Since: 2.6.0
271  **/
272 hb_position_t
273 hb_ot_metrics_get_x_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
274 {
275   return font->em_scalef_x (hb_ot_metrics_get_variation (font, metrics_tag));
276 }
277
278 /**
279  * hb_ot_metrics_get_y_variation:
280  * @font: an #hb_font_t object.
281  * @metrics_tag: tag of metrics value you like to fetch.
282  *
283  * Fetches vertical metrics value corresponding to @metrics_tag from @font with
284  * the current font variation settings applied.
285  *
286  * Returns: The requested metric value.
287  *
288  * Since: 2.6.0
289  **/
290 hb_position_t
291 hb_ot_metrics_get_y_variation (hb_font_t *font, hb_ot_metrics_tag_t metrics_tag)
292 {
293   return font->em_scalef_y (hb_ot_metrics_get_variation (font, metrics_tag));
294 }
295 #endif
296
297 #endif