blob: 67ce92353498992085c1c5fa80bca0373a85d5f5 [file] [log] [blame]
Behdad Esfahbodfd92a3d2008-01-24 03:11:09 -05001/*
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -04002 * Copyright © 1998-2004 David Turner and Werner Lemberg
3 * Copyright © 2006 Behdad Esfahbod
4 * Copyright © 2007,2008,2009 Red Hat, Inc.
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04005 * Copyright © 2012,2013 Google, Inc.
Behdad Esfahbodfd92a3d2008-01-24 03:11:09 -05006 *
Behdad Esfahbodc755cb32010-04-22 00:11:43 -04007 * This is part of HarfBuzz, a text shaping library.
Behdad Esfahbodfd92a3d2008-01-24 03:11:09 -05008 *
9 * Permission is hereby granted, without written agreement and without
10 * license or royalty fees, to use, copy, modify, and distribute this
11 * software and its documentation for any purpose, provided that the
12 * above copyright notice and the following two paragraphs appear in
13 * all copies of this software.
14 *
15 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
16 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
17 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
18 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
19 * DAMAGE.
20 *
21 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
22 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
23 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
24 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
25 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
26 *
27 * Red Hat Author(s): Behdad Esfahbod
Behdad Esfahbodf8603662012-07-30 02:38:39 -040028 * Google Author(s): Behdad Esfahbod
Behdad Esfahbodfd92a3d2008-01-24 03:11:09 -050029 */
30
Behdad Esfahbodc77ae402018-08-25 22:36:36 -070031#include "hb-open-type.hh"
32#include "hb-ot-layout.hh"
Behdad Esfahbodb9291002018-08-26 01:15:47 -070033#include "hb-ot-face.hh"
Behdad Esfahbodc77ae402018-08-25 22:36:36 -070034#include "hb-ot-map.hh"
35#include "hb-map.hh"
Ebrahim Byagowi5b9c2342018-02-27 22:56:17 +033036
Behdad Esfahbod574d8882018-11-25 16:51:22 -050037#include "hb-ot-kern-table.hh"
Ebrahim Byagowi8f80e532018-12-05 13:51:14 +033038#include "hb-ot-gasp-table.hh" // Just so we compile it; unused otherwise.
Behdad Esfahbod7a750ac2011-08-17 14:19:59 +020039#include "hb-ot-layout-gdef-table.hh"
40#include "hb-ot-layout-gsub-table.hh"
41#include "hb-ot-layout-gpos-table.hh"
Ebrahim Byagowi8f80e532018-12-05 13:51:14 +033042#include "hb-ot-layout-base-table.hh" // Just so we compile it; unused otherwise.
43#include "hb-ot-layout-jstf-table.hh" // Just so we compile it; unused otherwise.
Behdad Esfahbod203dc442018-05-03 21:03:27 -040044#include "hb-ot-name-table.hh"
Behdad Esfahbod574d8882018-11-25 16:51:22 -050045#include "hb-ot-os2-table.hh"
Behdad Esfahbodd2c96812013-05-02 18:18:24 -040046
Ebrahim Byagowib986fea2018-11-05 12:31:58 +033047#include "hb-aat-layout-lcar-table.hh"
Behdad Esfahbod574d8882018-11-25 16:51:22 -050048#include "hb-aat-layout-morx-table.hh"
Ebrahim Byagowib986fea2018-11-05 12:31:58 +033049
Behdad Esfahbodaff831e2008-01-24 06:03:45 -050050
Behdad Esfahbod80d9a422018-10-27 04:58:32 -070051/**
52 * SECTION:hb-ot-layout
53 * @title: hb-ot-layout
54 * @short_description: OpenType Layout
55 * @include: hb-ot.h
56 *
57 * Functions for querying OpenType Layout features in the font face.
58 **/
59
60
Behdad Esfahbod590d55c2008-01-24 19:13:50 -050061/*
Behdad Esfahboda5195882018-10-08 23:57:45 -040062 * kern
63 */
64
Behdad Esfahbod385f78b2018-11-07 17:19:21 -050065bool
Behdad Esfahboda5195882018-10-08 23:57:45 -040066hb_ot_layout_has_kerning (hb_face_t *face)
67{
Behdad Esfahboda35c92c2018-11-05 22:58:43 -050068 return face->table.kern->has_data ();
Behdad Esfahboda5195882018-10-08 23:57:45 -040069}
70
Behdad Esfahbod385f78b2018-11-07 17:19:21 -050071bool
Behdad Esfahbod74896222018-11-23 11:10:17 -050072hb_ot_layout_has_machine_kerning (hb_face_t *face)
73{
74 return face->table.kern->has_state_machine ();
75}
76
77bool
Behdad Esfahbodca235672018-11-07 16:19:51 -050078hb_ot_layout_has_cross_kerning (hb_face_t *face)
79{
80 return face->table.kern->has_cross_stream ();
81}
82
Behdad Esfahboda5195882018-10-08 23:57:45 -040083void
Behdad Esfahbodc221dc02018-11-14 14:49:34 -050084hb_ot_layout_kern (const hb_ot_shape_plan_t *plan,
Behdad Esfahbod095f5ad2018-11-02 13:23:54 -040085 hb_font_t *font,
86 hb_buffer_t *buffer)
Behdad Esfahboda5195882018-10-08 23:57:45 -040087{
Behdad Esfahboda35c92c2018-11-05 22:58:43 -050088 hb_blob_t *blob = font->face->table.kern.get_blob ();
Behdad Esfahbodfa3ebf82018-11-05 23:34:07 -050089 const AAT::kern& kern = *blob->as<AAT::kern> ();
Behdad Esfahbod095f5ad2018-11-02 13:23:54 -040090
91 AAT::hb_aat_apply_context_t c (plan, font, buffer, blob);
92
93 kern.apply (&c);
Behdad Esfahboda5195882018-10-08 23:57:45 -040094}
95
96
97/*
Behdad Esfahbod590d55c2008-01-24 19:13:50 -050098 * GDEF
99 */
100
Behdad Esfahbod4f217032018-11-25 15:59:18 -0500101bool
102OT::GDEF::is_blacklisted (hb_blob_t *blob,
103 hb_face_t *face) const
Behdad Esfahbodd8c57e82018-08-26 09:03:31 -0700104{
105 /* The ugly business of blacklisting individual fonts' tables happen here!
106 * See this thread for why we finally had to bend in and do this:
107 * https://lists.freedesktop.org/archives/harfbuzz/2016-February/005489.html
108 *
109 * In certain versions of Times New Roman Italic and Bold Italic,
110 * ASCII double quotation mark U+0022 has wrong glyph class 3 (mark)
111 * in GDEF. Many versions of Tahoma have bad GDEF tables that
112 * incorrectly classify some spacing marks such as certain IPA
113 * symbols as glyph class 3. So do older versions of Microsoft
114 * Himalaya, and the version of Cantarell shipped by Ubuntu 16.04.
115 *
116 * Nuke the GDEF tables of to avoid unwanted width-zeroing.
117 *
118 * See https://bugzilla.mozilla.org/show_bug.cgi?id=1279925
119 * https://bugzilla.mozilla.org/show_bug.cgi?id=1279693
120 * https://bugzilla.mozilla.org/show_bug.cgi?id=1279875
121 */
Behdad Esfahbod4ed9fb12018-11-25 15:51:01 -0500122#define ENCODE(x,y,z) (((uint64_t) (x) << 48) | ((uint64_t) (y) << 24) | (uint64_t) (z))
Behdad Esfahbod4f217032018-11-25 15:59:18 -0500123 switch ENCODE(blob->length,
124 face->table.GSUB->table.get_length (),
125 face->table.GPOS->table.get_length ())
Behdad Esfahbodd8c57e82018-08-26 09:03:31 -0700126 {
127 /* sha1sum:c5ee92f0bca4bfb7d06c4d03e8cf9f9cf75d2e8a Windows 7? timesi.ttf */
128 case ENCODE (442, 2874, 42038):
129 /* sha1sum:37fc8c16a0894ab7b749e35579856c73c840867b Windows 7? timesbi.ttf */
130 case ENCODE (430, 2874, 40662):
131 /* sha1sum:19fc45110ea6cd3cdd0a5faca256a3797a069a80 Windows 7 timesi.ttf */
132 case ENCODE (442, 2874, 39116):
133 /* sha1sum:6d2d3c9ed5b7de87bc84eae0df95ee5232ecde26 Windows 7 timesbi.ttf */
134 case ENCODE (430, 2874, 39374):
135 /* sha1sum:8583225a8b49667c077b3525333f84af08c6bcd8 OS X 10.11.3 Times New Roman Italic.ttf */
136 case ENCODE (490, 3046, 41638):
137 /* sha1sum:ec0f5a8751845355b7c3271d11f9918a966cb8c9 OS X 10.11.3 Times New Roman Bold Italic.ttf */
138 case ENCODE (478, 3046, 41902):
139 /* sha1sum:96eda93f7d33e79962451c6c39a6b51ee893ce8c tahoma.ttf from Windows 8 */
140 case ENCODE (898, 12554, 46470):
141 /* sha1sum:20928dc06014e0cd120b6fc942d0c3b1a46ac2bc tahomabd.ttf from Windows 8 */
142 case ENCODE (910, 12566, 47732):
143 /* sha1sum:4f95b7e4878f60fa3a39ca269618dfde9721a79e tahoma.ttf from Windows 8.1 */
144 case ENCODE (928, 23298, 59332):
145 /* sha1sum:6d400781948517c3c0441ba42acb309584b73033 tahomabd.ttf from Windows 8.1 */
146 case ENCODE (940, 23310, 60732):
147 /* tahoma.ttf v6.04 from Windows 8.1 x64, see https://bugzilla.mozilla.org/show_bug.cgi?id=1279925 */
148 case ENCODE (964, 23836, 60072):
149 /* tahomabd.ttf v6.04 from Windows 8.1 x64, see https://bugzilla.mozilla.org/show_bug.cgi?id=1279925 */
150 case ENCODE (976, 23832, 61456):
151 /* sha1sum:e55fa2dfe957a9f7ec26be516a0e30b0c925f846 tahoma.ttf from Windows 10 */
152 case ENCODE (994, 24474, 60336):
153 /* sha1sum:7199385abb4c2cc81c83a151a7599b6368e92343 tahomabd.ttf from Windows 10 */
154 case ENCODE (1006, 24470, 61740):
155 /* tahoma.ttf v6.91 from Windows 10 x64, see https://bugzilla.mozilla.org/show_bug.cgi?id=1279925 */
156 case ENCODE (1006, 24576, 61346):
157 /* tahomabd.ttf v6.91 from Windows 10 x64, see https://bugzilla.mozilla.org/show_bug.cgi?id=1279925 */
158 case ENCODE (1018, 24572, 62828):
159 /* sha1sum:b9c84d820c49850d3d27ec498be93955b82772b5 tahoma.ttf from Windows 10 AU */
160 case ENCODE (1006, 24576, 61352):
161 /* sha1sum:2bdfaab28174bdadd2f3d4200a30a7ae31db79d2 tahomabd.ttf from Windows 10 AU */
162 case ENCODE (1018, 24572, 62834):
163 /* sha1sum:b0d36cf5a2fbe746a3dd277bffc6756a820807a7 Tahoma.ttf from Mac OS X 10.9 */
164 case ENCODE (832, 7324, 47162):
165 /* sha1sum:12fc4538e84d461771b30c18b5eb6bd434e30fba Tahoma Bold.ttf from Mac OS X 10.9 */
166 case ENCODE (844, 7302, 45474):
167 /* sha1sum:eb8afadd28e9cf963e886b23a30b44ab4fd83acc himalaya.ttf from Windows 7 */
168 case ENCODE (180, 13054, 7254):
169 /* sha1sum:73da7f025b238a3f737aa1fde22577a6370f77b0 himalaya.ttf from Windows 8 */
170 case ENCODE (192, 12638, 7254):
171 /* sha1sum:6e80fd1c0b059bbee49272401583160dc1e6a427 himalaya.ttf from Windows 8.1 */
172 case ENCODE (192, 12690, 7254):
173 /* 8d9267aea9cd2c852ecfb9f12a6e834bfaeafe44 cantarell-fonts-0.0.21/otf/Cantarell-Regular.otf */
174 /* 983988ff7b47439ab79aeaf9a45bd4a2c5b9d371 cantarell-fonts-0.0.21/otf/Cantarell-Oblique.otf */
175 case ENCODE (188, 248, 3852):
176 /* 2c0c90c6f6087ffbfea76589c93113a9cbb0e75f cantarell-fonts-0.0.21/otf/Cantarell-Bold.otf */
177 /* 55461f5b853c6da88069ffcdf7f4dd3f8d7e3e6b cantarell-fonts-0.0.21/otf/Cantarell-Bold-Oblique.otf */
178 case ENCODE (188, 264, 3426):
179 /* d125afa82a77a6475ac0e74e7c207914af84b37a padauk-2.80/Padauk.ttf RHEL 7.2 */
180 case ENCODE (1058, 47032, 11818):
181 /* 0f7b80437227b90a577cc078c0216160ae61b031 padauk-2.80/Padauk-Bold.ttf RHEL 7.2*/
182 case ENCODE (1046, 47030, 12600):
183 /* d3dde9aa0a6b7f8f6a89ef1002e9aaa11b882290 padauk-2.80/Padauk.ttf Ubuntu 16.04 */
184 case ENCODE (1058, 71796, 16770):
185 /* 5f3c98ccccae8a953be2d122c1b3a77fd805093f padauk-2.80/Padauk-Bold.ttf Ubuntu 16.04 */
186 case ENCODE (1046, 71790, 17862):
187 /* 6c93b63b64e8b2c93f5e824e78caca555dc887c7 padauk-2.80/Padauk-book.ttf */
188 case ENCODE (1046, 71788, 17112):
189 /* d89b1664058359b8ec82e35d3531931125991fb9 padauk-2.80/Padauk-bookbold.ttf */
190 case ENCODE (1058, 71794, 17514):
191 /* 824cfd193aaf6234b2b4dc0cf3c6ef576c0d00ef padauk-3.0/Padauk-book.ttf */
192 case ENCODE (1330, 109904, 57938):
193 /* 91fcc10cf15e012d27571e075b3b4dfe31754a8a padauk-3.0/Padauk-bookbold.ttf */
194 case ENCODE (1330, 109904, 58972):
195 /* sha1sum: c26e41d567ed821bed997e937bc0c41435689e85 Padauk.ttf
196 * "Padauk Regular" "Version 2.5", see https://crbug.com/681813 */
197 case ENCODE (1004, 59092, 14836):
198 return true;
199#undef ENCODE
200 }
201 return false;
202}
203
Behdad Esfahbodc624e182018-08-26 09:19:20 -0700204static void
205_hb_ot_layout_set_glyph_props (hb_font_t *font,
206 hb_buffer_t *buffer)
207{
208 _hb_buffer_assert_gsubgpos_vars (buffer);
209
Behdad Esfahbod5e68cec2018-11-05 23:23:57 -0500210 const OT::GDEF &gdef = *font->face->table.GDEF->table;
Behdad Esfahbodc624e182018-08-26 09:19:20 -0700211 unsigned int count = buffer->len;
212 for (unsigned int i = 0; i < count; i++)
213 {
214 _hb_glyph_info_set_glyph_props (&buffer->info[i], gdef.get_glyph_props (buffer->info[i].codepoint));
215 _hb_glyph_info_clear_lig_props (&buffer->info[i]);
216 buffer->info[i].syllable() = 0;
217 }
218}
219
220/* Public API */
221
Behdad Esfahbod590d55c2008-01-24 19:13:50 -0500222hb_bool_t
Behdad Esfahbod52ea4772009-11-06 17:45:38 -0500223hb_ot_layout_has_glyph_classes (hb_face_t *face)
Behdad Esfahbod590d55c2008-01-24 19:13:50 -0500224{
Behdad Esfahbod5e68cec2018-11-05 23:23:57 -0500225 return face->table.GDEF->table->has_glyph_classes ();
Behdad Esfahbod590d55c2008-01-24 19:13:50 -0500226}
227
Sascha Brawer01c3a882015-06-01 13:22:01 +0200228/**
Behdad Esfahbod35d18582015-11-26 19:30:37 -0500229 * hb_ot_layout_get_glyph_class:
230 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200231 * Since: 0.9.7
232 **/
Behdad Esfahbod5a08ecf2012-11-16 13:34:29 -0800233hb_ot_layout_glyph_class_t
234hb_ot_layout_get_glyph_class (hb_face_t *face,
235 hb_codepoint_t glyph)
236{
Behdad Esfahbod5e68cec2018-11-05 23:23:57 -0500237 return (hb_ot_layout_glyph_class_t) face->table.GDEF->table->get_glyph_class (glyph);
Behdad Esfahbod5a08ecf2012-11-16 13:34:29 -0800238}
Behdad Esfahbod4a2d8442010-11-03 15:28:56 -0400239
Sascha Brawer01c3a882015-06-01 13:22:01 +0200240/**
Behdad Esfahbod35d18582015-11-26 19:30:37 -0500241 * hb_ot_layout_get_glyphs_in_class:
242 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200243 * Since: 0.9.7
244 **/
Behdad Esfahbod89ca8ee2012-11-16 13:53:40 -0800245void
246hb_ot_layout_get_glyphs_in_class (hb_face_t *face,
247 hb_ot_layout_glyph_class_t klass,
248 hb_set_t *glyphs /* OUT */)
249{
Behdad Esfahbod5e68cec2018-11-05 23:23:57 -0500250 return face->table.GDEF->table->get_glyphs_in_class (klass, glyphs);
Behdad Esfahbod89ca8ee2012-11-16 13:53:40 -0800251}
252
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500253unsigned int
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400254hb_ot_layout_get_attach_points (hb_face_t *face,
Behdad Esfahbod79420ad2009-05-26 12:24:16 -0400255 hb_codepoint_t glyph,
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500256 unsigned int start_offset,
Behdad Esfahbod79420ad2009-05-26 12:24:16 -0400257 unsigned int *point_count /* IN/OUT */,
258 unsigned int *point_array /* OUT */)
259{
Behdad Esfahbod5e68cec2018-11-05 23:23:57 -0500260 return face->table.GDEF->table->get_attach_points (glyph,
261 start_offset,
262 point_count,
263 point_array);
Behdad Esfahbod62964af2009-05-26 12:40:10 -0400264}
265
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500266unsigned int
Behdad Esfahbode2046742010-10-27 12:32:02 -0400267hb_ot_layout_get_ligature_carets (hb_font_t *font,
Behdad Esfahbode2046742010-10-27 12:32:02 -0400268 hb_direction_t direction,
269 hb_codepoint_t glyph,
270 unsigned int start_offset,
271 unsigned int *caret_count /* IN/OUT */,
Ebrahim Byagowi3b0e47c2017-06-19 14:47:09 +0430272 hb_position_t *caret_array /* OUT */)
Behdad Esfahbod62964af2009-05-26 12:40:10 -0400273{
Ebrahim Byagowib986fea2018-11-05 12:31:58 +0330274 unsigned int result_caret_count = 0;
275 unsigned int result = font->face->table.GDEF->table->get_lig_carets (font, direction, glyph, start_offset, &result_caret_count, caret_array);
276 if (result)
277 {
278 if (caret_count) *caret_count = result_caret_count;
279 }
280 else
281 result = font->face->table.lcar->get_lig_carets (font, direction, glyph, start_offset, caret_count, caret_array);
282 return result;
Behdad Esfahbod79420ad2009-05-26 12:24:16 -0400283}
284
Behdad Esfahbod05bd1b62012-07-30 19:30:01 -0400285
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500286/*
287 * GSUB/GPOS
288 */
289
Behdad Esfahbod574d8882018-11-25 16:51:22 -0500290bool
291OT::GSUB::is_blacklisted (hb_blob_t *blob HB_UNUSED,
292 hb_face_t *face) const
293{
294 /* Mac OS X prefers morx over GSUB. It also ships with various Indic fonts,
295 * all by 'MUTF' foundry (Tamil MN, Tamil Sangam MN, etc.), that have broken
296 * GSUB/GPOS tables. Some have GSUB with zero scripts, those are ignored by
297 * our morx/GSUB preference code. But if GSUB has non-zero scripts, we tend
298 * to prefer it over morx because we want to be consistent with other OpenType
299 * shapers.
300 *
301 * To work around broken Indic Mac system fonts, we ignore GSUB table if
302 * OS/2 VendorId is 'MUTF' and font has morx table as well.
303 *
304 * https://github.com/harfbuzz/harfbuzz/issues/1410
305 * https://github.com/harfbuzz/harfbuzz/issues/1348
306 * https://github.com/harfbuzz/harfbuzz/issues/1391
307 */
308 if (unlikely (face->table.OS2->achVendID == HB_TAG ('M','U','T','F') &&
309 face->table.morx->has_data ()))
310 return true;
311
312 return false;
313}
314
315bool
316OT::GPOS::is_blacklisted (hb_blob_t *blob HB_UNUSED,
317 hb_face_t *face HB_UNUSED) const
318{
319 return false;
320}
321
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400322static const OT::GSUBGPOS&
Behdad Esfahbod23c86aa2009-08-03 21:40:20 -0400323get_gsubgpos_table (hb_face_t *face,
324 hb_tag_t table_tag)
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500325{
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400326 switch (table_tag) {
Behdad Esfahbod737efbe2018-11-05 23:26:29 -0500327 case HB_OT_TAG_GSUB: return *face->table.GSUB->table;
328 case HB_OT_TAG_GPOS: return *face->table.GPOS->table;
Behdad Esfahbodabc12f72018-05-08 02:23:36 -0700329 default: return Null(OT::GSUBGPOS);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500330 }
331}
332
333
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500334unsigned int
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400335hb_ot_layout_table_get_script_tags (hb_face_t *face,
336 hb_tag_t table_tag,
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500337 unsigned int start_offset,
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400338 unsigned int *script_count /* IN/OUT */,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330339 hb_tag_t *script_tags /* OUT */)
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500340{
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400341 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500342
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500343 return g.get_script_tags (start_offset, script_count, script_tags);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500344}
345
Behdad Esfahbodeb45c0a2013-01-16 22:07:50 -0600346#define HB_OT_TAG_LATIN_SCRIPT HB_TAG ('l', 'a', 't', 'n')
347
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500348hb_bool_t
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400349hb_ot_layout_table_find_script (hb_face_t *face,
350 hb_tag_t table_tag,
351 hb_tag_t script_tag,
352 unsigned int *script_index)
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500353{
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200354 static_assert ((OT::Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_SCRIPT_INDEX), "");
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400355 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500356
357 if (g.find_script_index (script_tag, script_index))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400358 return true;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500359
360 /* try finding 'DFLT' */
Behdad Esfahbod8a3511a2009-11-04 19:45:39 -0500361 if (g.find_script_index (HB_OT_TAG_DEFAULT_SCRIPT, script_index))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400362 return false;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500363
Behdad Esfahboddca8aff2010-09-28 16:25:23 -0400364 /* try with 'dflt'; MS site has had typos and many fonts use it now :(.
365 * including many versions of DejaVu Sans Mono! */
Behdad Esfahbod8a3511a2009-11-04 19:45:39 -0500366 if (g.find_script_index (HB_OT_TAG_DEFAULT_LANGUAGE, script_index))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400367 return false;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500368
Behdad Esfahbodeb45c0a2013-01-16 22:07:50 -0600369 /* try with 'latn'; some old fonts put their features there even though
370 they're really trying to support Thai, for example :( */
371 if (g.find_script_index (HB_OT_TAG_LATIN_SCRIPT, script_index))
372 return false;
373
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500374 if (script_index) *script_index = HB_OT_LAYOUT_NO_SCRIPT_INDEX;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400375 return false;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500376}
377
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100378hb_bool_t
379hb_ot_layout_table_choose_script (hb_face_t *face,
380 hb_tag_t table_tag,
381 const hb_tag_t *script_tags,
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400382 unsigned int *script_index,
383 hb_tag_t *chosen_script)
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100384{
David Corbett91067712017-12-08 11:21:14 -0500385 const hb_tag_t *t;
386 for (t = script_tags; *t; t++);
387 return hb_ot_layout_table_select_script (face, table_tag, t - script_tags, script_tags, script_index, chosen_script);
388}
389
Behdad Esfahbod80616642018-10-11 14:16:55 -0400390/**
391 * hb_ot_layout_table_select_script:
392 *
Behdad Esfahbod3d9a0302018-10-18 05:58:17 -0700393 * Since: 2.0.0
Behdad Esfahbod80616642018-10-11 14:16:55 -0400394 **/
David Corbett91067712017-12-08 11:21:14 -0500395hb_bool_t
396hb_ot_layout_table_select_script (hb_face_t *face,
397 hb_tag_t table_tag,
398 unsigned int script_count,
399 const hb_tag_t *script_tags,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330400 unsigned int *script_index /* OUT */,
David Corbett91067712017-12-08 11:21:14 -0500401 hb_tag_t *chosen_script /* OUT */)
402{
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200403 static_assert ((OT::Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_SCRIPT_INDEX), "");
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400404 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
David Corbett91067712017-12-08 11:21:14 -0500405 unsigned int i;
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100406
David Corbett91067712017-12-08 11:21:14 -0500407 for (i = 0; i < script_count; i++)
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100408 {
David Corbett91067712017-12-08 11:21:14 -0500409 if (g.find_script_index (script_tags[i], script_index))
410 {
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400411 if (chosen_script)
David Corbett91067712017-12-08 11:21:14 -0500412 *chosen_script = script_tags[i];
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400413 return true;
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400414 }
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100415 }
416
417 /* try finding 'DFLT' */
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400418 if (g.find_script_index (HB_OT_TAG_DEFAULT_SCRIPT, script_index)) {
419 if (chosen_script)
420 *chosen_script = HB_OT_TAG_DEFAULT_SCRIPT;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400421 return false;
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400422 }
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100423
424 /* try with 'dflt'; MS site has had typos and many fonts use it now :( */
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400425 if (g.find_script_index (HB_OT_TAG_DEFAULT_LANGUAGE, script_index)) {
426 if (chosen_script)
427 *chosen_script = HB_OT_TAG_DEFAULT_LANGUAGE;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400428 return false;
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400429 }
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100430
Behdad Esfahbod71632c92012-01-22 15:31:44 -0500431 /* try with 'latn'; some old fonts put their features there even though
432 they're really trying to support Thai, for example :( */
Behdad Esfahbod71632c92012-01-22 15:31:44 -0500433 if (g.find_script_index (HB_OT_TAG_LATIN_SCRIPT, script_index)) {
434 if (chosen_script)
435 *chosen_script = HB_OT_TAG_LATIN_SCRIPT;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400436 return false;
Behdad Esfahbod71632c92012-01-22 15:31:44 -0500437 }
438
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100439 if (script_index) *script_index = HB_OT_LAYOUT_NO_SCRIPT_INDEX;
Behdad Esfahbodc47a31f2011-07-30 20:57:01 -0400440 if (chosen_script)
441 *chosen_script = HB_OT_LAYOUT_NO_SCRIPT_INDEX;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400442 return false;
Behdad Esfahbod2014b8d2009-12-20 20:58:26 +0100443}
444
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500445unsigned int
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400446hb_ot_layout_table_get_feature_tags (hb_face_t *face,
447 hb_tag_t table_tag,
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500448 unsigned int start_offset,
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400449 unsigned int *feature_count /* IN/OUT */,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330450 hb_tag_t *feature_tags /* OUT */)
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500451{
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400452 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500453
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500454 return g.get_feature_tags (start_offset, feature_count, feature_tags);
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500455}
456
Behdad Esfahbod385f78b2018-11-07 17:19:21 -0500457bool
Behdad Esfahbod0f98fe82015-07-23 11:52:11 +0100458hb_ot_layout_table_find_feature (hb_face_t *face,
459 hb_tag_t table_tag,
460 hb_tag_t feature_tag,
461 unsigned int *feature_index)
462{
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200463 static_assert ((OT::Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_FEATURE_INDEX), "");
Behdad Esfahbod0f98fe82015-07-23 11:52:11 +0100464 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
465
466 unsigned int num_features = g.get_feature_count ();
467 for (unsigned int i = 0; i < num_features; i++)
468 {
469 if (feature_tag == g.get_feature_tag (i)) {
470 if (feature_index) *feature_index = i;
471 return true;
472 }
473 }
474
475 if (feature_index) *feature_index = HB_OT_LAYOUT_NO_FEATURE_INDEX;
476 return false;
477}
478
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500479
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500480unsigned int
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400481hb_ot_layout_script_get_language_tags (hb_face_t *face,
482 hb_tag_t table_tag,
483 unsigned int script_index,
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500484 unsigned int start_offset,
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400485 unsigned int *language_count /* IN/OUT */,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330486 hb_tag_t *language_tags /* OUT */)
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500487{
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400488 const OT::Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500489
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500490 return s.get_lang_sys_tags (start_offset, language_count, language_tags);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500491}
492
493hb_bool_t
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400494hb_ot_layout_script_find_language (hb_face_t *face,
495 hb_tag_t table_tag,
496 unsigned int script_index,
497 hb_tag_t language_tag,
498 unsigned int *language_index)
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500499{
Behdad Esfahbod737efbe2018-11-05 23:26:29 -0500500 return hb_ot_layout_script_select_language (face,
501 table_tag,
502 script_index,
503 1,
504 &language_tag,
505 language_index);
David Corbett91067712017-12-08 11:21:14 -0500506}
507
Behdad Esfahbod80616642018-10-11 14:16:55 -0400508/**
509 * hb_ot_layout_script_select_language:
510 *
Behdad Esfahbod3d9a0302018-10-18 05:58:17 -0700511 * Since: 2.0.0
Behdad Esfahbod80616642018-10-11 14:16:55 -0400512 **/
David Corbett91067712017-12-08 11:21:14 -0500513hb_bool_t
Behdad Esfahbodcf975ac2018-10-11 14:07:44 -0400514hb_ot_layout_script_select_language (hb_face_t *face,
515 hb_tag_t table_tag,
516 unsigned int script_index,
517 unsigned int language_count,
518 const hb_tag_t *language_tags,
519 unsigned int *language_index /* OUT */)
David Corbett91067712017-12-08 11:21:14 -0500520{
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200521 static_assert ((OT::Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX), "");
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400522 const OT::Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
David Corbett91067712017-12-08 11:21:14 -0500523 unsigned int i;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500524
David Corbett91067712017-12-08 11:21:14 -0500525 for (i = 0; i < language_count; i++)
526 {
527 if (s.find_lang_sys_index (language_tags[i], language_index))
528 return true;
529 }
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500530
David Corbett91067712017-12-08 11:21:14 -0500531 /* try finding 'dflt' */
Behdad Esfahbod8a3511a2009-11-04 19:45:39 -0500532 if (s.find_lang_sys_index (HB_OT_TAG_DEFAULT_LANGUAGE, language_index))
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400533 return false;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500534
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500535 if (language_index) *language_index = HB_OT_LAYOUT_DEFAULT_LANGUAGE_INDEX;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400536 return false;
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500537}
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500538
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500539hb_bool_t
Behdad Esfahbod911ca382014-06-24 10:20:36 -0600540hb_ot_layout_language_get_required_feature_index (hb_face_t *face,
541 hb_tag_t table_tag,
542 unsigned int script_index,
543 unsigned int language_index,
544 unsigned int *feature_index)
545{
546 return hb_ot_layout_language_get_required_feature (face,
547 table_tag,
548 script_index,
549 language_index,
550 feature_index,
Behdad Esfahboddbdbfe32017-10-15 12:11:08 +0200551 nullptr);
Behdad Esfahbod911ca382014-06-24 10:20:36 -0600552}
553
Sascha Brawer01c3a882015-06-01 13:22:01 +0200554/**
Behdad Esfahbod35d18582015-11-26 19:30:37 -0500555 * hb_ot_layout_language_get_required_feature:
556 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200557 * Since: 0.9.30
558 **/
Behdad Esfahbod911ca382014-06-24 10:20:36 -0600559hb_bool_t
Jonathan Kewda132932014-04-27 14:05:24 +0100560hb_ot_layout_language_get_required_feature (hb_face_t *face,
561 hb_tag_t table_tag,
562 unsigned int script_index,
563 unsigned int language_index,
564 unsigned int *feature_index,
565 hb_tag_t *feature_tag)
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500566{
Jonathan Kewda132932014-04-27 14:05:24 +0100567 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
568 const OT::LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500569
Jonathan Kewda132932014-04-27 14:05:24 +0100570 unsigned int index = l.get_required_feature_index ();
571 if (feature_index) *feature_index = index;
572 if (feature_tag) *feature_tag = g.get_feature_tag (index);
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500573
574 return l.has_required_feature ();
575}
576
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500577unsigned int
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400578hb_ot_layout_language_get_feature_indexes (hb_face_t *face,
579 hb_tag_t table_tag,
580 unsigned int script_index,
581 unsigned int language_index,
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500582 unsigned int start_offset,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330583 unsigned int *feature_count /* IN/OUT */,
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400584 unsigned int *feature_indexes /* OUT */)
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500585{
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400586 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
587 const OT::LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500588
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500589 return l.get_feature_indexes (start_offset, feature_count, feature_indexes);
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500590}
591
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500592unsigned int
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400593hb_ot_layout_language_get_feature_tags (hb_face_t *face,
594 hb_tag_t table_tag,
595 unsigned int script_index,
596 unsigned int language_index,
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500597 unsigned int start_offset,
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400598 unsigned int *feature_count /* IN/OUT */,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330599 hb_tag_t *feature_tags /* OUT */)
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500600{
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400601 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
602 const OT::LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500603
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200604 static_assert ((sizeof (unsigned int) == sizeof (hb_tag_t)), "");
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500605 unsigned int ret = l.get_feature_indexes (start_offset, feature_count, (unsigned int *) feature_tags);
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400606
Behdad Esfahbod98977492009-08-27 01:32:17 -0400607 if (feature_tags) {
608 unsigned int count = *feature_count;
609 for (unsigned int i = 0; i < count; i++)
610 feature_tags[i] = g.get_feature_tag ((unsigned int) feature_tags[i]);
611 }
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -0400612
613 return ret;
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500614}
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500615
616
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500617hb_bool_t
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400618hb_ot_layout_language_find_feature (hb_face_t *face,
619 hb_tag_t table_tag,
620 unsigned int script_index,
621 unsigned int language_index,
622 hb_tag_t feature_tag,
623 unsigned int *feature_index)
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500624{
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200625 static_assert ((OT::Index::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_FEATURE_INDEX), "");
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400626 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
627 const OT::LangSys &l = g.get_script (script_index).get_lang_sys (language_index);
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500628
Behdad Esfahbodf4c95142009-05-17 04:59:56 -0400629 unsigned int num_features = l.get_feature_count ();
630 for (unsigned int i = 0; i < num_features; i++) {
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500631 unsigned int f_index = l.get_feature_index (i);
632
633 if (feature_tag == g.get_feature_tag (f_index)) {
634 if (feature_index) *feature_index = f_index;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400635 return true;
Behdad Esfahbod4a26ea42008-01-28 07:40:10 -0500636 }
637 }
638
639 if (feature_index) *feature_index = HB_OT_LAYOUT_NO_FEATURE_INDEX;
Behdad Esfahbod0594a242012-06-05 20:35:40 -0400640 return false;
Behdad Esfahbod706ab252008-01-28 05:58:50 -0500641}
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500642
Sascha Brawer01c3a882015-06-01 13:22:01 +0200643/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400644 * hb_ot_layout_feature_get_lookups:
645 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200646 * Since: 0.9.7
647 **/
Behdad Esfahbode21899b2009-11-04 16:36:14 -0500648unsigned int
Behdad Esfahbodf3064102012-11-15 18:39:46 -0800649hb_ot_layout_feature_get_lookups (hb_face_t *face,
650 hb_tag_t table_tag,
651 unsigned int feature_index,
652 unsigned int start_offset,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330653 unsigned int *lookup_count /* IN/OUT */,
Behdad Esfahbodf3064102012-11-15 18:39:46 -0800654 unsigned int *lookup_indexes /* OUT */)
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500655{
Behdad Esfahbodec87ba92016-09-10 03:53:11 -0700656 return hb_ot_layout_feature_with_variations_get_lookups (face,
657 table_tag,
658 feature_index,
659 HB_OT_LAYOUT_NO_VARIATIONS_INDEX,
660 start_offset,
661 lookup_count,
662 lookup_indexes);
Behdad Esfahbodc4473352008-02-18 21:14:23 -0500663}
664
Sascha Brawer01c3a882015-06-01 13:22:01 +0200665/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400666 * hb_ot_layout_table_get_lookup_count:
667 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200668 * Since: 0.9.22
669 **/
Behdad Esfahbod27674b42013-10-03 14:54:50 -0400670unsigned int
671hb_ot_layout_table_get_lookup_count (hb_face_t *face,
672 hb_tag_t table_tag)
673{
Behdad Esfahbod96828b92018-10-25 20:34:29 -0700674 return get_gsubgpos_table (face, table_tag).get_lookup_count ();
Behdad Esfahbod27674b42013-10-03 14:54:50 -0400675}
676
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700677
678struct hb_collect_features_context_t
679{
680 hb_collect_features_context_t (hb_face_t *face,
681 hb_tag_t table_tag,
682 hb_set_t *feature_indexes_)
683 : g (get_gsubgpos_table (face, table_tag)),
Garret Rieger0e1ad5a2018-10-30 11:29:58 -0700684 feature_indexes (feature_indexes_),
Behdad Esfahbodbfd549d2018-10-30 14:47:27 -0700685 script_count(0),langsys_count(0) {}
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700686
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700687 bool inline visited (const OT::Script &s)
688 {
689 /* We might have Null() object here. Don't want to involve
690 * that in the memoize. So, detect empty objects and return. */
691 if (unlikely (!s.has_default_lang_sys () &&
692 !s.get_lang_sys_count ()))
693 return true;
694
Garret Rieger0e1ad5a2018-10-30 11:29:58 -0700695 if (script_count++ > HB_MAX_SCRIPTS)
696 return true;
697
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700698 return visited (s, visited_script);
699 }
700 bool inline visited (const OT::LangSys &l)
701 {
702 /* We might have Null() object here. Don't want to involve
703 * that in the memoize. So, detect empty objects and return. */
704 if (unlikely (!l.has_required_feature () &&
705 !l.get_feature_count ()))
706 return true;
707
Garret Rieger0e1ad5a2018-10-30 11:29:58 -0700708 if (langsys_count++ > HB_MAX_LANGSYS)
709 return true;
710
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700711 return visited (l, visited_langsys);
712 }
713
714 private:
715 template <typename T>
716 bool inline visited (const T &p, hb_set_t &visited_set)
717 {
718 hb_codepoint_t delta = (hb_codepoint_t) ((uintptr_t) &p - (uintptr_t) &g);
719 if (visited_set.has (delta))
720 return true;
721
722 visited_set.add (delta);
723 return false;
724 }
725
726 public:
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700727 const OT::GSUBGPOS &g;
728 hb_set_t *feature_indexes;
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700729
730 private:
Behdad Esfahbod3a4e5dd2018-10-29 18:05:25 -0700731 hb_set_t visited_script;
732 hb_set_t visited_langsys;
Garret Rieger0e1ad5a2018-10-30 11:29:58 -0700733 unsigned int script_count;
734 unsigned int langsys_count;
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700735};
736
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500737static void
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700738langsys_collect_features (hb_collect_features_context_t *c,
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700739 const OT::LangSys &l,
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700740 const hb_tag_t *features)
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500741{
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700742 if (c->visited (l)) return;
743
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500744 if (!features)
745 {
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700746 /* All features. */
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700747 if (l.has_required_feature ())
748 c->feature_indexes->add (l.get_required_feature_index ());
Behdad Esfahbod5f85c802013-06-26 20:14:18 -0400749
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700750 l.add_feature_indexes_to (c->feature_indexes);
Behdad Esfahbod15e9e4e2013-01-03 00:04:40 -0600751 }
752 else
753 {
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700754 /* Ugh. Any faster way? */
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500755 for (; *features; features++)
756 {
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700757 hb_tag_t feature_tag = *features;
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700758 unsigned int num_features = l.get_feature_count ();
759 for (unsigned int i = 0; i < num_features; i++)
760 {
761 unsigned int feature_index = l.get_feature_index (i);
762
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700763 if (feature_tag == c->g.get_feature_tag (feature_index))
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700764 {
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700765 c->feature_indexes->add (feature_index);
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700766 break;
767 }
768 }
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500769 }
770 }
771}
772
773static void
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700774script_collect_features (hb_collect_features_context_t *c,
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700775 const OT::Script &s,
776 const hb_tag_t *languages,
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700777 const hb_tag_t *features)
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500778{
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700779 if (c->visited (s)) return;
780
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500781 if (!languages)
782 {
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700783 /* All languages. */
Behdad Esfahbodeb44bfc2018-10-25 21:42:19 -0700784 if (s.has_default_lang_sys ())
785 langsys_collect_features (c,
786 s.get_default_lang_sys (),
787 features);
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700788
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700789 unsigned int count = s.get_lang_sys_count ();
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500790 for (unsigned int language_index = 0; language_index < count; language_index++)
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700791 langsys_collect_features (c,
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700792 s.get_lang_sys (language_index),
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700793 features);
Behdad Esfahbod15e9e4e2013-01-03 00:04:40 -0600794 }
795 else
796 {
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500797 for (; *languages; languages++)
798 {
799 unsigned int language_index;
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700800 if (s.find_lang_sys_index (*languages, &language_index))
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700801 langsys_collect_features (c,
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700802 s.get_lang_sys (language_index),
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700803 features);
Garret Rieger7d92bef2018-07-30 17:17:43 -0700804 }
805 }
806}
807
808/**
Garret Rieger89733752018-07-30 18:10:43 -0700809 * hb_ot_layout_collect_features:
Garret Rieger7d92bef2018-07-30 17:17:43 -0700810 *
Behdad Esfahbod44d1fb32018-08-01 14:51:51 -0700811 * Since: 1.8.5
Garret Rieger7d92bef2018-07-30 17:17:43 -0700812 **/
813void
814hb_ot_layout_collect_features (hb_face_t *face,
815 hb_tag_t table_tag,
816 const hb_tag_t *scripts,
817 const hb_tag_t *languages,
818 const hb_tag_t *features,
819 hb_set_t *feature_indexes /* OUT */)
820{
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700821 hb_collect_features_context_t c (face, table_tag, feature_indexes);
Garret Rieger7d92bef2018-07-30 17:17:43 -0700822 if (!scripts)
823 {
Behdad Esfahbode8e67502018-10-25 20:48:20 -0700824 /* All scripts. */
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700825 unsigned int count = c.g.get_script_count ();
Garret Rieger7d92bef2018-07-30 17:17:43 -0700826 for (unsigned int script_index = 0; script_index < count; script_index++)
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700827 script_collect_features (&c,
828 c.g.get_script (script_index),
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700829 languages,
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700830 features);
Garret Rieger7d92bef2018-07-30 17:17:43 -0700831 }
832 else
833 {
834 for (; *scripts; scripts++)
835 {
836 unsigned int script_index;
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700837 if (c.g.find_script_index (*scripts, &script_index))
838 script_collect_features (&c,
839 c.g.get_script (script_index),
Behdad Esfahbodfe5520d2018-10-25 20:58:34 -0700840 languages,
Behdad Esfahbod941600a2018-10-25 21:26:08 -0700841 features);
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500842 }
843 }
844}
845
Sascha Brawer01c3a882015-06-01 13:22:01 +0200846/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400847 * hb_ot_layout_collect_lookups:
848 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200849 * Since: 0.9.8
850 **/
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500851void
852hb_ot_layout_collect_lookups (hb_face_t *face,
853 hb_tag_t table_tag,
854 const hb_tag_t *scripts,
855 const hb_tag_t *languages,
856 const hb_tag_t *features,
857 hb_set_t *lookup_indexes /* OUT */)
858{
Behdad Esfahbode98af6d2018-10-25 22:25:29 -0700859 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
860
Behdad Esfahbod3a4e5dd2018-10-29 18:05:25 -0700861 hb_set_t feature_indexes;
Garret Rieger7d92bef2018-07-30 17:17:43 -0700862 hb_ot_layout_collect_features (face, table_tag, scripts, languages, features, &feature_indexes);
Behdad Esfahbode98af6d2018-10-25 22:25:29 -0700863
Behdad Esfahbodc237cdf2018-10-25 21:17:30 -0700864 for (hb_codepoint_t feature_index = HB_SET_VALUE_INVALID;
865 hb_set_next (&feature_indexes, &feature_index);)
Behdad Esfahbode98af6d2018-10-25 22:25:29 -0700866 g.get_feature (feature_index).add_lookup_indexes_to (lookup_indexes);
Behdad Esfahboda88e7162012-11-24 02:31:02 -0500867}
868
Sascha Brawer01c3a882015-06-01 13:22:01 +0200869/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400870 * hb_ot_layout_lookup_collect_glyphs:
871 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200872 * Since: 0.9.7
873 **/
Behdad Esfahbode8cfdd72012-11-16 19:07:06 -0800874void
875hb_ot_layout_lookup_collect_glyphs (hb_face_t *face,
876 hb_tag_t table_tag,
877 unsigned int lookup_index,
Ebrahim Byagowi63109432018-10-13 14:00:05 +0330878 hb_set_t *glyphs_before, /* OUT. May be NULL */
879 hb_set_t *glyphs_input, /* OUT. May be NULL */
880 hb_set_t *glyphs_after, /* OUT. May be NULL */
881 hb_set_t *glyphs_output /* OUT. May be NULL */)
Behdad Esfahbode8cfdd72012-11-16 19:07:06 -0800882{
Behdad Esfahbod733e8c02013-01-03 00:00:23 -0600883 OT::hb_collect_glyphs_context_t c (face,
884 glyphs_before,
885 glyphs_input,
886 glyphs_after,
887 glyphs_output);
Behdad Esfahbode8cfdd72012-11-16 19:07:06 -0800888
Behdad Esfahbod15e9e4e2013-01-03 00:04:40 -0600889 switch (table_tag)
890 {
Behdad Esfahbode8cfdd72012-11-16 19:07:06 -0800891 case HB_OT_TAG_GSUB:
892 {
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -0500893 const OT::SubstLookup& l = face->table.GSUB->table->get_lookup (lookup_index);
Behdad Esfahbod780cd932013-05-03 17:33:16 -0400894 l.collect_glyphs (&c);
Behdad Esfahbode8cfdd72012-11-16 19:07:06 -0800895 return;
896 }
897 case HB_OT_TAG_GPOS:
898 {
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -0500899 const OT::PosLookup& l = face->table.GPOS->table->get_lookup (lookup_index);
Behdad Esfahbod780cd932013-05-03 17:33:16 -0400900 l.collect_glyphs (&c);
Behdad Esfahbode8cfdd72012-11-16 19:07:06 -0800901 return;
902 }
903 }
904}
905
Behdad Esfahbod2d15e722009-04-15 19:50:16 -0400906
Behdad Esfahbod30c42b62016-09-10 03:32:39 -0700907/* Variations support */
908
909hb_bool_t
910hb_ot_layout_table_find_feature_variations (hb_face_t *face,
911 hb_tag_t table_tag,
912 const int *coords,
913 unsigned int num_coords,
914 unsigned int *variations_index /* out */)
915{
916 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
917
918 return g.find_variations_index (coords, num_coords, variations_index);
919}
920
Behdad Esfahbodec87ba92016-09-10 03:53:11 -0700921unsigned int
922hb_ot_layout_feature_with_variations_get_lookups (hb_face_t *face,
923 hb_tag_t table_tag,
924 unsigned int feature_index,
925 unsigned int variations_index,
926 unsigned int start_offset,
927 unsigned int *lookup_count /* IN/OUT */,
928 unsigned int *lookup_indexes /* OUT */)
929{
Behdad Esfahbod606bf572018-09-16 19:33:48 +0200930 static_assert ((OT::FeatureVariations::NOT_FOUND_INDEX == HB_OT_LAYOUT_NO_VARIATIONS_INDEX), "");
Behdad Esfahbodec87ba92016-09-10 03:53:11 -0700931 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
932
933 const OT::Feature &f = g.get_feature_variation (feature_index, variations_index);
934
935 return f.get_lookup_indexes (start_offset, lookup_count, lookup_indexes);
936}
937
Behdad Esfahbod30c42b62016-09-10 03:32:39 -0700938
Behdad Esfahbod2d15e722009-04-15 19:50:16 -0400939/*
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -0400940 * OT::GSUB
Behdad Esfahbod2d15e722009-04-15 19:50:16 -0400941 */
942
943hb_bool_t
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400944hb_ot_layout_has_substitution (hb_face_t *face)
945{
Behdad Esfahbod737efbe2018-11-05 23:26:29 -0500946 return face->table.GSUB->table->has_data ();
Behdad Esfahbod0ead4812009-08-02 17:41:36 -0400947}
948
Sascha Brawer01c3a882015-06-01 13:22:01 +0200949/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +0400950 * hb_ot_layout_lookup_would_substitute:
951 *
Sascha Brawer01c3a882015-06-01 13:22:01 +0200952 * Since: 0.9.7
953 **/
Behdad Esfahbode72b3602012-07-19 14:35:23 -0400954hb_bool_t
Behdad Esfahbod362a9902012-11-15 14:57:31 -0800955hb_ot_layout_lookup_would_substitute (hb_face_t *face,
Behdad Esfahbodd9b204d2012-08-23 16:22:28 -0400956 unsigned int lookup_index,
Behdad Esfahbode72b3602012-07-19 14:35:23 -0400957 const hb_codepoint_t *glyphs,
958 unsigned int glyphs_length,
Behdad Esfahbodd9b204d2012-08-23 16:22:28 -0400959 hb_bool_t zero_context)
Behdad Esfahbode72b3602012-07-19 14:35:23 -0400960{
Behdad Esfahboddb354092018-11-05 23:11:46 -0500961 return hb_ot_layout_lookup_would_substitute_fast (face,
962 lookup_index,
963 glyphs, glyphs_length,
964 zero_context);
Behdad Esfahbode72b3602012-07-19 14:35:23 -0400965}
966
Behdad Esfahbod385f78b2018-11-07 17:19:21 -0500967bool
Behdad Esfahbod362a9902012-11-15 14:57:31 -0800968hb_ot_layout_lookup_would_substitute_fast (hb_face_t *face,
Behdad Esfahbodd9b204d2012-08-23 16:22:28 -0400969 unsigned int lookup_index,
Behdad Esfahbodf8603662012-07-30 02:38:39 -0400970 const hb_codepoint_t *glyphs,
971 unsigned int glyphs_length,
Behdad Esfahbod385f78b2018-11-07 17:19:21 -0500972 bool zero_context)
Behdad Esfahbodf8603662012-07-30 02:38:39 -0400973{
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -0500974 if (unlikely (lookup_index >= face->table.GSUB->lookup_count)) return false;
Behdad Esfahbodea512f72015-11-26 19:22:22 -0500975 OT::hb_would_apply_context_t c (face, glyphs, glyphs_length, (bool) zero_context);
Behdad Esfahbod2bd9fe32012-09-04 15:15:19 -0400976
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -0500977 const OT::SubstLookup& l = face->table.GSUB->table->get_lookup (lookup_index);
Behdad Esfahbod2bd9fe32012-09-04 15:15:19 -0400978
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -0500979 return l.would_apply (&c, &face->table.GSUB->accels[lookup_index]);
Behdad Esfahbodf8603662012-07-30 02:38:39 -0400980}
981
Behdad Esfahbod46d6a212011-05-11 22:33:13 -0400982void
Behdad Esfahbodc624e182018-08-26 09:19:20 -0700983hb_ot_layout_substitute_start (hb_font_t *font,
984 hb_buffer_t *buffer)
Behdad Esfahbod46d6a212011-05-11 22:33:13 -0400985{
Behdad Esfahbodc624e182018-08-26 09:19:20 -0700986_hb_ot_layout_set_glyph_props (font, buffer);
Behdad Esfahbod46d6a212011-05-11 22:33:13 -0400987}
988
Behdad Esfahbod385f78b2018-11-07 17:19:21 -0500989void
990hb_ot_layout_delete_glyphs_inplace (hb_buffer_t *buffer,
991 bool (*filter) (const hb_glyph_info_t *info))
992{
993 /* Merge clusters and delete filtered glyphs.
994 * NOTE! We can't use out-buffer as we have positioning data. */
995 unsigned int j = 0;
996 unsigned int count = buffer->len;
997 hb_glyph_info_t *info = buffer->info;
998 hb_glyph_position_t *pos = buffer->pos;
999 for (unsigned int i = 0; i < count; i++)
1000 {
1001 if (filter (&info[i]))
1002 {
1003 /* Merge clusters.
1004 * Same logic as buffer->delete_glyph(), but for in-place removal. */
1005
1006 unsigned int cluster = info[i].cluster;
1007 if (i + 1 < count && cluster == info[i + 1].cluster)
1008 continue; /* Cluster survives; do nothing. */
1009
1010 if (j)
1011 {
1012 /* Merge cluster backward. */
1013 if (cluster < info[j - 1].cluster)
1014 {
1015 unsigned int mask = info[i].mask;
1016 unsigned int old_cluster = info[j - 1].cluster;
1017 for (unsigned k = j; k && info[k - 1].cluster == old_cluster; k--)
1018 buffer->set_cluster (info[k - 1], cluster, mask);
1019 }
1020 continue;
1021 }
1022
1023 if (i + 1 < count)
1024 buffer->merge_clusters (i, i + 2); /* Merge cluster forward. */
1025
1026 continue;
1027 }
1028
1029 if (j != i)
1030 {
1031 info[j] = info[i];
1032 pos[j] = pos[i];
1033 }
1034 j++;
1035 }
1036 buffer->len = j;
1037}
1038
Sascha Brawer01c3a882015-06-01 13:22:01 +02001039/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +04001040 * hb_ot_layout_lookup_substitute_closure:
1041 *
Sascha Brawer01c3a882015-06-01 13:22:01 +02001042 * Since: 0.9.7
1043 **/
Behdad Esfahbod5caece62012-04-23 23:03:12 -04001044void
Behdad Esfahbod362a9902012-11-15 14:57:31 -08001045hb_ot_layout_lookup_substitute_closure (hb_face_t *face,
Behdad Esfahbodd9b204d2012-08-23 16:22:28 -04001046 unsigned int lookup_index,
1047 hb_set_t *glyphs)
Behdad Esfahbodf94b0aa2012-04-23 13:04:38 -04001048{
Behdad Esfahbod3a4e5dd2018-10-29 18:05:25 -07001049 hb_map_t done_lookups;
Garret Rieger45186b92018-06-05 17:14:42 -07001050 OT::hb_closure_context_t c (face, glyphs, &done_lookups);
Behdad Esfahbod9b346772012-11-23 17:55:40 -05001051
Behdad Esfahbod737efbe2018-11-05 23:26:29 -05001052 const OT::SubstLookup& l = face->table.GSUB->table->get_lookup (lookup_index);
Behdad Esfahbod9b346772012-11-23 17:55:40 -05001053
Garret Rieger45186b92018-06-05 17:14:42 -07001054 l.closure (&c, lookup_index);
Behdad Esfahbodf94b0aa2012-04-23 13:04:38 -04001055}
Behdad Esfahbodbff3c0f2009-08-07 19:46:30 -04001056
Garret Rieger57badad2018-06-06 16:02:51 -07001057/**
1058 * hb_ot_layout_lookups_substitute_closure:
1059 *
1060 * Compute the transitive closure of glyphs needed for all of the
1061 * provided lookups.
1062 *
1063 * Since: 1.8.1
1064 **/
1065void
1066hb_ot_layout_lookups_substitute_closure (hb_face_t *face,
1067 const hb_set_t *lookups,
1068 hb_set_t *glyphs)
1069{
Behdad Esfahbod3a4e5dd2018-10-29 18:05:25 -07001070 hb_map_t done_lookups;
Garret Rieger57badad2018-06-06 16:02:51 -07001071 OT::hb_closure_context_t c (face, glyphs, &done_lookups);
Behdad Esfahbod737efbe2018-11-05 23:26:29 -05001072 const OT::GSUB& gsub = *face->table.GSUB->table;
Garret Rieger57badad2018-06-06 16:02:51 -07001073
Garret Rieger85646fd2018-07-23 15:37:18 -07001074 unsigned int iteration_count = 0;
Garret Rieger57badad2018-06-06 16:02:51 -07001075 unsigned int glyphs_length;
1076 do
1077 {
1078 glyphs_length = glyphs->get_population ();
Garret Riegerfeb23892018-06-07 14:32:34 -07001079 if (lookups != nullptr)
1080 {
1081 for (hb_codepoint_t lookup_index = HB_SET_VALUE_INVALID; hb_set_next (lookups, &lookup_index);)
1082 gsub.get_lookup (lookup_index).closure (&c, lookup_index);
Behdad Esfahbodf56cd9d2018-06-11 22:02:38 -04001083 }
1084 else
1085 {
Garret Riegerfeb23892018-06-07 14:32:34 -07001086 for (unsigned int i = 0; i < gsub.get_lookup_count (); i++)
1087 gsub.get_lookup (i).closure (&c, i);
1088 }
Behdad Esfahbode44046e2018-11-10 22:41:35 -05001089 } while (iteration_count++ <= HB_CLOSURE_MAX_STAGES &&
1090 glyphs_length != glyphs->get_population ());
Garret Rieger57badad2018-06-06 16:02:51 -07001091}
1092
Behdad Esfahbod9c42f052009-05-18 17:43:49 -04001093/*
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -04001094 * OT::GPOS
Behdad Esfahbod9c42f052009-05-18 17:43:49 -04001095 */
1096
1097hb_bool_t
Behdad Esfahbod0ead4812009-08-02 17:41:36 -04001098hb_ot_layout_has_positioning (hb_face_t *face)
1099{
Behdad Esfahbod737efbe2018-11-05 23:26:29 -05001100 return face->table.GPOS->table->has_data ();
Behdad Esfahbod0ead4812009-08-02 17:41:36 -04001101}
1102
Behdad Esfahbod8f0d7e02011-04-15 18:59:56 -04001103void
Behdad Esfahbod05bd1b62012-07-30 19:30:01 -04001104hb_ot_layout_position_start (hb_font_t *font, hb_buffer_t *buffer)
Behdad Esfahbod8f0d7e02011-04-15 18:59:56 -04001105{
Behdad Esfahbod7c8e8442012-08-28 17:57:49 -04001106 OT::GPOS::position_start (font, buffer);
Behdad Esfahbod8f0d7e02011-04-15 18:59:56 -04001107}
1108
Behdad Esfahbod9db8ad72009-11-06 16:47:31 -05001109void
Behdad Esfahbod7d8d58a2016-02-11 16:34:28 +07001110hb_ot_layout_position_finish_advances (hb_font_t *font, hb_buffer_t *buffer)
Behdad Esfahbod9db8ad72009-11-06 16:47:31 -05001111{
Behdad Esfahbod7d8d58a2016-02-11 16:34:28 +07001112 OT::GPOS::position_finish_advances (font, buffer);
1113}
1114
1115void
1116hb_ot_layout_position_finish_offsets (hb_font_t *font, hb_buffer_t *buffer)
1117{
1118 OT::GPOS::position_finish_offsets (font, buffer);
Behdad Esfahbod9db8ad72009-11-06 16:47:31 -05001119}
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001120
Sascha Brawer01c3a882015-06-01 13:22:01 +02001121/**
Khaled Hosnyd7bf9d02015-12-29 02:23:24 +04001122 * hb_ot_layout_get_size_params:
1123 *
Behdad Esfahbodb8811422015-09-03 15:53:22 +04301124 * Since: 0.9.10
Sascha Brawer01c3a882015-06-01 13:22:01 +02001125 **/
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001126hb_bool_t
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001127hb_ot_layout_get_size_params (hb_face_t *face,
1128 unsigned int *design_size, /* OUT. May be NULL */
1129 unsigned int *subfamily_id, /* OUT. May be NULL */
1130 hb_ot_name_id_t *subfamily_name_id, /* OUT. May be NULL */
1131 unsigned int *range_start, /* OUT. May be NULL */
1132 unsigned int *range_end /* OUT. May be NULL */)
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001133{
Behdad Esfahbod737efbe2018-11-05 23:26:29 -05001134 const OT::GPOS &gpos = *face->table.GPOS->table;
Behdad Esfahbodefe252e2012-12-17 23:21:05 -05001135 const hb_tag_t tag = HB_TAG ('s','i','z','e');
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001136
Behdad Esfahbod0dff11f2012-11-30 08:14:20 +02001137 unsigned int num_features = gpos.get_feature_count ();
1138 for (unsigned int i = 0; i < num_features; i++)
1139 {
Behdad Esfahbodefe252e2012-12-17 23:21:05 -05001140 if (tag == gpos.get_feature_tag (i))
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001141 {
Behdad Esfahbod0dff11f2012-11-30 08:14:20 +02001142 const OT::Feature &f = gpos.get_feature (i);
Behdad Esfahbodefe252e2012-12-17 23:21:05 -05001143 const OT::FeatureParamsSize &params = f.get_feature_params ().get_size_params (tag);
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001144
Behdad Esfahbodefe252e2012-12-17 23:21:05 -05001145 if (params.designSize)
Behdad Esfahbod85bc44b2012-12-12 11:38:49 -05001146 {
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301147 if (design_size) *design_size = params.designSize;
1148 if (subfamily_id) *subfamily_id = params.subfamilyID;
Behdad Esfahbod6ce49a92018-10-28 08:26:30 -07001149 if (subfamily_name_id) *subfamily_name_id = params.subfamilyNameID;
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301150 if (range_start) *range_start = params.rangeStart;
1151 if (range_end) *range_end = params.rangeEnd;
Behdad Esfahbodefe252e2012-12-17 23:21:05 -05001152
1153 return true;
1154 }
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001155 }
1156 }
1157
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301158 if (design_size) *design_size = 0;
1159 if (subfamily_id) *subfamily_id = 0;
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001160 if (subfamily_name_id) *subfamily_name_id = HB_OT_NAME_ID_INVALID;
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301161 if (range_start) *range_start = 0;
1162 if (range_end) *range_end = 0;
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001163
Behdad Esfahbodefe252e2012-12-17 23:21:05 -05001164 return false;
Behdad Esfahbodf54cce32012-11-26 14:02:31 +02001165}
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001166
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301167/**
1168 * hb_ot_layout_feature_get_name_ids:
1169 * @face: #hb_face_t to work upon
Behdad Esfahboda5ad8c62018-10-20 16:52:55 -07001170 * @table_tag: table tag to query, "GSUB" or "GPOS".
1171 * @feature_index: index of feature to query.
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301172 * @label_id: (out) (allow-none): The ‘name’ table name ID that specifies a string
1173 * for a user-interface label for this feature. (May be NULL.)
1174 * @tooltip_id: (out) (allow-none): The ‘name’ table name ID that specifies a string
1175 * that an application can use for tooltip text for this
1176 * feature. (May be NULL.)
1177 * @sample_id: (out) (allow-none): The ‘name’ table name ID that specifies sample text
1178 * that illustrates the effect of this feature. (May be NULL.)
1179 * @num_named_parameters: (out) (allow-none): Number of named parameters. (May be zero.)
1180 * @first_param_id: (out) (allow-none): The first ‘name’ table name ID used to specify
1181 * strings for user-interface labels for the feature
1182 * parameters. (Must be zero if numParameters is zero.)
1183 *
Behdad Esfahbodc0a68142018-10-12 16:05:56 -04001184 * Fetches name indices from feature parameters for "Stylistic Set" ('ssXX') or
1185 * "Character Variant" ('cvXX') features.
1186 *
1187 * Return value: true if data found, false otherwise
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301188 *
Behdad Esfahbod3d9a0302018-10-18 05:58:17 -07001189 * Since: 2.0.0
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301190 **/
1191hb_bool_t
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001192hb_ot_layout_feature_get_name_ids (hb_face_t *face,
1193 hb_tag_t table_tag,
1194 unsigned int feature_index,
1195 hb_ot_name_id_t *label_id, /* OUT. May be NULL */
1196 hb_ot_name_id_t *tooltip_id, /* OUT. May be NULL */
1197 hb_ot_name_id_t *sample_id, /* OUT. May be NULL */
1198 unsigned int *num_named_parameters, /* OUT. May be NULL */
1199 hb_ot_name_id_t *first_param_id /* OUT. May be NULL */)
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301200{
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301201 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
1202
Behdad Esfahbodc0a68142018-10-12 16:05:56 -04001203 hb_tag_t feature_tag = g.get_feature_tag (feature_index);
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301204 const OT::Feature &f = g.get_feature (feature_index);
1205
1206 const OT::FeatureParams &feature_params = f.get_feature_params ();
1207 if (&feature_params != &Null (OT::FeatureParams))
1208 {
1209 const OT::FeatureParamsStylisticSet& ss_params =
1210 feature_params.get_stylistic_set_params (feature_tag);
1211 if (&ss_params != &Null (OT::FeatureParamsStylisticSet)) /* ssXX */
1212 {
Behdad Esfahbod6ce49a92018-10-28 08:26:30 -07001213 if (label_id) *label_id = ss_params.uiNameID;
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301214 // ssXX features don't have the rest
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001215 if (tooltip_id) *tooltip_id = HB_OT_NAME_ID_INVALID;
1216 if (sample_id) *sample_id = HB_OT_NAME_ID_INVALID;
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301217 if (num_named_parameters) *num_named_parameters = 0;
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001218 if (first_param_id) *first_param_id = HB_OT_NAME_ID_INVALID;
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301219 return true;
1220 }
1221 const OT::FeatureParamsCharacterVariants& cv_params =
1222 feature_params.get_character_variants_params (feature_tag);
1223 if (&cv_params != &Null (OT::FeatureParamsCharacterVariants)) /* cvXX */
1224 {
Behdad Esfahbod6ce49a92018-10-28 08:26:30 -07001225 if (label_id) *label_id = cv_params.featUILableNameID;
1226 if (tooltip_id) *tooltip_id = cv_params.featUITooltipTextNameID;
1227 if (sample_id) *sample_id = cv_params.sampleTextNameID;
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301228 if (num_named_parameters) *num_named_parameters = cv_params.numNamedParameters;
Behdad Esfahbod6ce49a92018-10-28 08:26:30 -07001229 if (first_param_id) *first_param_id = cv_params.firstParamUILabelNameID;
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301230 return true;
1231 }
1232 }
1233
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001234 if (label_id) *label_id = HB_OT_NAME_ID_INVALID;
1235 if (tooltip_id) *tooltip_id = HB_OT_NAME_ID_INVALID;
1236 if (sample_id) *sample_id = HB_OT_NAME_ID_INVALID;
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301237 if (num_named_parameters) *num_named_parameters = 0;
Behdad Esfahboda7aba992018-10-30 14:04:09 -07001238 if (first_param_id) *first_param_id = HB_OT_NAME_ID_INVALID;
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301239 return false;
1240}
1241
1242/**
Behdad Esfahboda5ad8c62018-10-20 16:52:55 -07001243 * hb_ot_layout_feature_get_characters:
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301244 * @face: #hb_face_t to work upon
Behdad Esfahboda5ad8c62018-10-20 16:52:55 -07001245 * @table_tag: table tag to query, "GSUB" or "GPOS".
1246 * @feature_index: index of feature to query.
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301247 * @start_offset: In case the resulting char_count was equal to its input value, there
1248 * is a chance there were more characters on the tag so this API can be
1249 * called with an offset till resulting char_count gets to a number
1250 * lower than input buffer (or consider using just a bigger buffer for
1251 * one shot copying).
HinTak49bdb542018-10-17 00:36:04 +01001252 * @char_count: (inout) (allow-none): The count of characters for which this feature
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301253 * provides glyph variants. (May be zero.)
Behdad Esfahbod4025ad82018-10-27 02:35:06 -07001254 * @characters: (out caller-allocates) (array length=char_count): A buffer pointer. The Unicode codepoints
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301255 * of the characters for which this feature provides glyph variants.
1256 *
Behdad Esfahbodc0a68142018-10-12 16:05:56 -04001257 * Fetches characters listed by designer under feature parameters for "Character
1258 * Variant" ("cvXX") features.
1259 *
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301260 * Return value: Number of total sample characters in the cvXX feature.
1261 *
Behdad Esfahbod3d9a0302018-10-18 05:58:17 -07001262 * Since: 2.0.0
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301263 **/
1264unsigned int
1265hb_ot_layout_feature_get_characters (hb_face_t *face,
1266 hb_tag_t table_tag,
1267 unsigned int feature_index,
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301268 unsigned int start_offset,
1269 unsigned int *char_count, /* IN/OUT. May be NULL */
1270 hb_codepoint_t *characters /* OUT. May be NULL */)
1271{
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301272 const OT::GSUBGPOS &g = get_gsubgpos_table (face, table_tag);
1273
Behdad Esfahbodc0a68142018-10-12 16:05:56 -04001274 hb_tag_t feature_tag = g.get_feature_tag (feature_index);
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301275 const OT::Feature &f = g.get_feature (feature_index);
1276
1277 const OT::FeatureParams &feature_params = f.get_feature_params ();
1278
1279 const OT::FeatureParamsCharacterVariants& cv_params =
1280 feature_params.get_character_variants_params(feature_tag);
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301281
1282 unsigned int len = 0;
1283 if (char_count && characters && start_offset < cv_params.characters.len)
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301284 {
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301285 len = MIN (cv_params.characters.len - start_offset, *char_count);
1286 for (unsigned int i = 0; i < len; ++i)
1287 characters[i] = cv_params.characters[start_offset + i];
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301288 }
Ebrahim Byagowi63109432018-10-13 14:00:05 +03301289 if (char_count) *char_count = len;
1290 return cv_params.characters.len;
Ebrahim Byagowidc49bd82018-10-12 03:00:59 +03301291}
1292
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001293
1294/*
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001295 * Parts of different types are implemented here such that they have direct
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001296 * access to GSUB/GPOS lookups.
1297 */
1298
1299
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001300struct GSUBProxy
1301{
Behdad Esfahbodfda994e2018-09-07 15:02:57 -04001302 enum { table_index = 0 };
Behdad Esfahbod44cbd2e2018-11-29 14:53:43 -05001303 enum { inplace = false };
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001304 typedef OT::SubstLookup Lookup;
1305
1306 GSUBProxy (hb_face_t *face) :
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -05001307 table (*face->table.GSUB->table),
1308 accels (face->table.GSUB->accels) {}
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001309
1310 const OT::GSUB &table;
Behdad Esfahbod97e59132018-10-10 11:41:05 -04001311 const OT::hb_ot_layout_lookup_accelerator_t *accels;
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001312};
1313
1314struct GPOSProxy
1315{
Behdad Esfahbodfda994e2018-09-07 15:02:57 -04001316 enum { table_index = 1 };
Behdad Esfahbod44cbd2e2018-11-29 14:53:43 -05001317 enum { inplace = true };
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001318 typedef OT::PosLookup Lookup;
1319
1320 GPOSProxy (hb_face_t *face) :
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -05001321 table (*face->table.GPOS->table),
1322 accels (face->table.GPOS->accels) {}
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001323
1324 const OT::GPOS &table;
Behdad Esfahbod97e59132018-10-10 11:41:05 -04001325 const OT::hb_ot_layout_lookup_accelerator_t *accels;
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001326};
1327
1328
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001329static inline bool
Behdad Esfahbodfd034492018-01-17 16:46:51 -08001330apply_forward (OT::hb_ot_apply_context_t *c,
Behdad Esfahbod78c09bf2018-10-10 11:50:46 -04001331 const OT::hb_ot_layout_lookup_accelerator_t &accel)
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001332{
1333 bool ret = false;
1334 hb_buffer_t *buffer = c->buffer;
Behdad Esfahbod7185b272018-05-31 20:03:00 -07001335 while (buffer->idx < buffer->len && buffer->successful)
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001336 {
Behdad Esfahbod3e704522016-01-11 17:38:41 +00001337 bool applied = false;
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001338 if (accel.may_have (buffer->cur().codepoint) &&
1339 (buffer->cur().mask & c->lookup_mask) &&
Behdad Esfahbod3e704522016-01-11 17:38:41 +00001340 c->check_glyph_property (&buffer->cur(), c->lookup_props))
1341 {
Behdad Esfahbode78549e2018-10-10 11:54:48 -04001342 applied = accel.apply (c);
Behdad Esfahbod3e704522016-01-11 17:38:41 +00001343 }
1344
1345 if (applied)
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001346 ret = true;
1347 else
1348 buffer->next_glyph ();
1349 }
1350 return ret;
1351}
1352
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001353static inline bool
Behdad Esfahbodfd034492018-01-17 16:46:51 -08001354apply_backward (OT::hb_ot_apply_context_t *c,
Behdad Esfahbod78c09bf2018-10-10 11:50:46 -04001355 const OT::hb_ot_layout_lookup_accelerator_t &accel)
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001356{
1357 bool ret = false;
1358 hb_buffer_t *buffer = c->buffer;
1359 do
1360 {
1361 if (accel.may_have (buffer->cur().codepoint) &&
1362 (buffer->cur().mask & c->lookup_mask) &&
Behdad Esfahbod3e704522016-01-11 17:38:41 +00001363 c->check_glyph_property (&buffer->cur(), c->lookup_props))
Behdad Esfahbod9af983a2018-11-07 16:03:09 -05001364 ret |= accel.apply (c);
1365
Behdad Esfahbode2f50f22015-02-19 17:15:05 +03001366 /* The reverse lookup doesn't "advance" cursor (for good reason). */
1367 buffer->idx--;
1368
1369 }
1370 while ((int) buffer->idx >= 0);
1371 return ret;
1372}
1373
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001374template <typename Proxy>
Behdad Esfahbod1d4a3282015-02-19 11:33:30 +03001375static inline void
Behdad Esfahbodfd034492018-01-17 16:46:51 -08001376apply_string (OT::hb_ot_apply_context_t *c,
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001377 const typename Proxy::Lookup &lookup,
Behdad Esfahbod97e59132018-10-10 11:41:05 -04001378 const OT::hb_ot_layout_lookup_accelerator_t &accel)
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001379{
Behdad Esfahbodac8cd512013-10-18 19:33:09 +02001380 hb_buffer_t *buffer = c->buffer;
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001381
Behdad Esfahbod5337db22015-11-06 16:18:09 -08001382 if (unlikely (!buffer->len || !c->lookup_mask))
Behdad Esfahbod1d4a3282015-02-19 11:33:30 +03001383 return;
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001384
Behdad Esfahbod2c8b3b22015-08-18 14:36:43 +01001385 c->set_lookup_props (lookup.get_props ());
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001386
1387 if (likely (!lookup.is_reverse ()))
1388 {
1389 /* in/out forward substitution/positioning */
1390 if (Proxy::table_index == 0)
Behdad Esfahbodac8cd512013-10-18 19:33:09 +02001391 buffer->clear_output ();
1392 buffer->idx = 0;
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001393
Behdad Esfahbod640b66c2015-02-19 17:30:05 +03001394 bool ret;
Behdad Esfahbod78c09bf2018-10-10 11:50:46 -04001395 ret = apply_forward (c, accel);
Behdad Esfahbod640b66c2015-02-19 17:30:05 +03001396 if (ret)
Behdad Esfahbod9d9e72e2013-05-03 18:10:10 -04001397 {
Behdad Esfahbod6ffc0072013-10-28 19:26:02 +01001398 if (!Proxy::inplace)
Behdad Esfahbodac8cd512013-10-18 19:33:09 +02001399 buffer->swap_buffers ();
Behdad Esfahbod9d9e72e2013-05-03 18:10:10 -04001400 else
Behdad Esfahbod1d4a3282015-02-19 11:33:30 +03001401 assert (!buffer->has_separate_output ());
Behdad Esfahbod9d9e72e2013-05-03 18:10:10 -04001402 }
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001403 }
1404 else
1405 {
1406 /* in-place backward substitution/positioning */
1407 if (Proxy::table_index == 0)
Behdad Esfahbodac8cd512013-10-18 19:33:09 +02001408 buffer->remove_output ();
1409 buffer->idx = buffer->len - 1;
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001410
Behdad Esfahbod78c09bf2018-10-10 11:50:46 -04001411 apply_backward (c, accel);
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001412 }
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001413}
1414
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001415template <typename Proxy>
1416inline void hb_ot_map_t::apply (const Proxy &proxy,
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001417 const hb_ot_shape_plan_t *plan,
1418 hb_font_t *font,
1419 hb_buffer_t *buffer) const
1420{
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001421 const unsigned int table_index = proxy.table_index;
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001422 unsigned int i = 0;
Behdad Esfahbodfd034492018-01-17 16:46:51 -08001423 OT::hb_ot_apply_context_t c (table_index, font, buffer);
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001424 c.set_recurse_func (Proxy::Lookup::apply_recurse_func);
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001425
1426 for (unsigned int stage_index = 0; stage_index < stages[table_index].len; stage_index++) {
1427 const stage_map_t *stage = &stages[table_index][stage_index];
1428 for (; i < stage->last_lookup; i++)
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001429 {
1430 unsigned int lookup_index = lookups[table_index][i].index;
Behdad Esfahbod0475ef22015-12-18 18:17:07 +00001431 if (!buffer->message (font, "start lookup %d", lookup_index)) continue;
Behdad Esfahbod2c8b3b22015-08-18 14:36:43 +01001432 c.set_lookup_index (lookup_index);
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001433 c.set_lookup_mask (lookups[table_index][i].mask);
1434 c.set_auto_zwj (lookups[table_index][i].auto_zwj);
Behdad Esfahbodcdf1fd02017-07-14 12:43:34 +01001435 c.set_auto_zwnj (lookups[table_index][i].auto_zwnj);
David Corbettc2a75e02018-01-25 14:22:03 -05001436 if (lookups[table_index][i].random)
1437 {
David Corbettb545e272018-02-23 12:22:32 -05001438 c.set_random (true);
David Corbettc2a75e02018-01-25 14:22:03 -05001439 buffer->unsafe_to_break_all ();
1440 }
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001441 apply_string<Proxy> (&c,
1442 proxy.table.get_lookup (lookup_index),
1443 proxy.accels[lookup_index]);
Behdad Esfahbod0475ef22015-12-18 18:17:07 +00001444 (void) buffer->message (font, "end lookup %d", lookup_index);
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001445 }
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001446
1447 if (stage->pause_func)
1448 {
1449 buffer->clear_output ();
1450 stage->pause_func (plan, font, buffer);
1451 }
1452 }
1453}
1454
1455void hb_ot_map_t::substitute (const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const
1456{
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001457 GSUBProxy proxy (font->face);
1458 apply (proxy, plan, font, buffer);
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001459}
1460
1461void hb_ot_map_t::position (const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const
1462{
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001463 GPOSProxy proxy (font->face);
1464 apply (proxy, plan, font, buffer);
1465}
1466
Behdad Esfahbodcdab20d2018-02-10 15:45:17 -06001467void
Behdad Esfahbodfd034492018-01-17 16:46:51 -08001468hb_ot_layout_substitute_lookup (OT::hb_ot_apply_context_t *c,
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001469 const OT::SubstLookup &lookup,
Behdad Esfahbod97e59132018-10-10 11:41:05 -04001470 const OT::hb_ot_layout_lookup_accelerator_t &accel)
Behdad Esfahbodbac1dd62013-05-02 18:52:24 -04001471{
Behdad Esfahbod45f3d982013-05-03 17:49:44 -04001472 apply_string<GSUBProxy> (c, lookup, accel);
Behdad Esfahbodd2c96812013-05-02 18:18:24 -04001473}
Ebrahim Byagowib8a78ce2018-11-03 22:28:30 +03301474
1475#if 0
1476static const OT::BASE& _get_base (hb_face_t *face)
1477{
Behdad Esfahbod0fe7a742018-11-05 23:08:33 -05001478 return *face->table.BASE;
Ebrahim Byagowib8a78ce2018-11-03 22:28:30 +03301479}
1480
1481hb_bool_t
1482hb_ot_layout_get_baseline (hb_font_t *font,
1483 hb_ot_layout_baseline_t baseline,
1484 hb_direction_t direction,
1485 hb_tag_t script_tag,
1486 hb_tag_t language_tag,
1487 hb_position_t *coord /* OUT. May be NULL. */)
1488{
1489 const OT::BASE &base = _get_base (font->face);
1490 bool result = base.get_baseline (font, baseline, direction, script_tag,
1491 language_tag, coord);
1492
1493 /* TODO: Simulate https://docs.microsoft.com/en-us/typography/opentype/spec/baselinetags#ideographic-em-box */
1494 if (!result && coord) *coord = 0;
1495
1496 if (coord) *coord = font->em_scale_dir (*coord, direction);
1497
1498 return result;
1499}
1500
1501/* To be moved to public header */
1502/*
1503 * BASE
1504 */
1505
1506/**
1507 * hb_ot_layout_baseline_t:
1508 *
1509 * https://docs.microsoft.com/en-us/typography/opentype/spec/baselinetags
1510 *
1511 * Since: DONTREPLACEME
1512 */
1513typedef enum {
1514 HB_OT_LAYOUT_BASELINE_HANG = HB_TAG('h','a','n','g'),
1515 HB_OT_LAYOUT_BASELINE_ICFB = HB_TAG('i','c','f','b'),
1516 HB_OT_LAYOUT_BASELINE_ICFT = HB_TAG('i','c','f','t'),
1517 HB_OT_LAYOUT_BASELINE_IDEO = HB_TAG('i','d','e','o'),
1518 HB_OT_LAYOUT_BASELINE_IDTB = HB_TAG('i','d','t','b'),
1519 HB_OT_LAYOUT_BASELINE_MATH = HB_TAG('m','a','t','h'),
1520 HB_OT_LAYOUT_BASELINE_ROMN = HB_TAG('r','o','m','n')
1521} hb_ot_layout_baseline_t;
1522
1523HB_EXTERN hb_bool_t
1524hb_ot_layout_get_baseline (hb_font_t *font,
1525 hb_ot_layout_baseline_t baseline,
1526 hb_direction_t direction,
1527 hb_tag_t script_tag,
1528 hb_tag_t language_tag,
1529 hb_position_t *coord /* OUT. May be NULL. */);
1530
1531#endif