hb-ot-layout.hh 18.6 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright © 2007,2008,2009  Red Hat, Inc.
B
Behdad Esfahbod 已提交
3
 * Copyright © 2012,2013  Google, Inc.
B
Behdad Esfahbod 已提交
4
 *
B
Behdad Esfahbod 已提交
5
 *  This is part of HarfBuzz, a text shaping library.
B
Behdad Esfahbod 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Behdad Esfahbod
B
Behdad Esfahbod 已提交
26
 * Google Author(s): Behdad Esfahbod
B
Behdad Esfahbod 已提交
27 28
 */

29 30
#ifndef HB_OT_LAYOUT_HH
#define HB_OT_LAYOUT_HH
B
Behdad Esfahbod 已提交
31

32
#include "hb.hh"
B
Behdad Esfahbod 已提交
33

34 35 36
#include "hb-font.hh"
#include "hb-buffer.hh"
#include "hb-open-type.hh"
B
WIP  
Behdad Esfahbod 已提交
37
#include "hb-set-digest.hh"
B
Behdad Esfahbod 已提交
38

39

40 41 42 43 44 45 46 47 48
namespace OT
{
  struct GDEF;
  struct GSUB;
  struct GPOS;
}

HB_INTERNAL const OT::GDEF&
_get_gdef (hb_face_t *face);
49 50
HB_INTERNAL hb_blob_t *
_get_gsub_blob (hb_face_t *face);
51 52 53
HB_INTERNAL const OT::GSUB&
_get_gsub (hb_face_t *face);

54 55
HB_INTERNAL hb_blob_t *
_get_gpos_blob (hb_face_t *face);
56 57 58 59
HB_INTERNAL const OT::GPOS&
_get_gpos (hb_face_t *face);


60 61 62 63 64 65 66 67 68
/* Private API corresponding to hb-ot-layout.h: */

HB_INTERNAL hb_bool_t
hb_ot_layout_table_find_feature (hb_face_t    *face,
				 hb_tag_t      table_tag,
				 hb_tag_t      feature_tag,
				 unsigned int *feature_index);


B
Behdad Esfahbod 已提交
69 70 71 72
/*
 * GDEF
 */

B
Behdad Esfahbod 已提交
73
enum hb_ot_layout_glyph_props_flags_t
74
{
B
Behdad Esfahbod 已提交
75 76 77
  /* The following three match LookupFlags::Ignore* numbers. */
  HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH	= 0x02u,
  HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE	= 0x04u,
78 79 80
  HB_OT_LAYOUT_GLYPH_PROPS_MARK		= 0x08u,

  /* The following are used internally; not derived from GDEF. */
81 82
  HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED	= 0x10u,
  HB_OT_LAYOUT_GLYPH_PROPS_LIGATED	= 0x20u,
83
  HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED	= 0x40u,
B
Behdad Esfahbod 已提交
84

85
  HB_OT_LAYOUT_GLYPH_PROPS_PRESERVE     = HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED |
86 87
					  HB_OT_LAYOUT_GLYPH_PROPS_LIGATED |
					  HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED
B
Behdad Esfahbod 已提交
88
};
C
Chun-wei Fan 已提交
89
HB_MARK_AS_FLAG_T (hb_ot_layout_glyph_props_flags_t);
B
Behdad Esfahbod 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109


/*
 * GSUB/GPOS
 */

HB_INTERNAL hb_bool_t
hb_ot_layout_lookup_would_substitute_fast (hb_face_t            *face,
					   unsigned int          lookup_index,
					   const hb_codepoint_t *glyphs,
					   unsigned int          glyphs_length,
					   hb_bool_t             zero_context);


/* Should be called before all the substitute_lookup's are done. */
HB_INTERNAL void
hb_ot_layout_substitute_start (hb_font_t    *font,
			       hb_buffer_t  *buffer);


B
WIP  
Behdad Esfahbod 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
struct hb_ot_layout_lookup_accelerator_t
{
  template <typename TLookup>
  inline void init (const TLookup &lookup)
  {
    digest.init ();
    lookup.add_coverage (&digest);
  }
  inline void fini (void) {}

  inline bool may_have (hb_codepoint_t g) const
  { return digest.may_have (g); }

  private:
  hb_set_digest_t digest;
};
B
Behdad Esfahbod 已提交
126 127

namespace OT {
128
  struct hb_ot_apply_context_t;
B
Behdad Esfahbod 已提交
129 130 131 132
  struct SubstLookup;
}

HB_INTERNAL void
133
hb_ot_layout_substitute_lookup (OT::hb_ot_apply_context_t *c,
B
Behdad Esfahbod 已提交
134 135 136 137
				const OT::SubstLookup &lookup,
				const hb_ot_layout_lookup_accelerator_t &accel);


138
/* Should be called before all the position_lookup's are done. */
B
Behdad Esfahbod 已提交
139 140 141 142
HB_INTERNAL void
hb_ot_layout_position_start (hb_font_t    *font,
			     hb_buffer_t  *buffer);

B
Behdad Esfahbod 已提交
143
/* Should be called after all the position_lookup's are done, to fini advances. */
144 145 146 147
HB_INTERNAL void
hb_ot_layout_position_finish_advances (hb_font_t    *font,
				       hb_buffer_t  *buffer);

B
Behdad Esfahbod 已提交
148
/* Should be called after hb_ot_layout_position_finish_advances, to fini offsets. */
B
Behdad Esfahbod 已提交
149
HB_INTERNAL void
150 151
hb_ot_layout_position_finish_offsets (hb_font_t    *font,
				      hb_buffer_t  *buffer);
B
Behdad Esfahbod 已提交
152 153 154 155 156 157


/*
 * Buffer var routines.
 */

B
Behdad Esfahbod 已提交
158
/* buffer var allocations, used during the entire shaping process */
159
#define unicode_props()		var2.u16[0]
B
Behdad Esfahbod 已提交
160 161 162 163 164 165

/* buffer var allocations, used during the GSUB/GPOS processing */
#define glyph_props()		var1.u16[0] /* GDEF glyph properties */
#define lig_props()		var1.u8[2] /* GSUB/GPOS ligature tracking */
#define syllable()		var1.u8[3] /* GSUB/GPOS shaping boundaries */

B
Behdad Esfahbod 已提交
166

167
/* Loop over syllables. Based on foreach_cluster(). */
B
Behdad Esfahbod 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
#define foreach_syllable(buffer, start, end) \
  for (unsigned int \
       _count = buffer->len, \
       start = 0, end = _count ? _next_syllable (buffer, 0) : 0; \
       start < _count; \
       start = end, end = _next_syllable (buffer, start))

static inline unsigned int
_next_syllable (hb_buffer_t *buffer, unsigned int start)
{
  hb_glyph_info_t *info = buffer->info;
  unsigned int count = buffer->len;

  unsigned int syllable = info[start].syllable();
  while (++start < count && syllable == info[start].syllable())
    ;

  return start;
}


B
Behdad Esfahbod 已提交
189 190
/* unicode_props */

B
Behdad Esfahbod 已提交
191 192 193 194 195
/* Design:
 * unicode_props() is a two-byte number.  The low byte includes:
 * - General_Category: 5 bits.
 * - A bit each for:
 *   * Is it Default_Ignorable(); we have a modified Default_Ignorable().
B
Behdad Esfahbod 已提交
196 197 198
 *   * Whether it's one of the three Mongolian Free Variation Selectors,
 *     CGJ, or other characters that are hidden but should not be ignored
 *     like most other Default_Ignorable()s do during matching.
199
 *   * One free bit right now.
B
Behdad Esfahbod 已提交
200 201 202
 *
 * The high-byte has different meanings, switched by the Gen-Cat:
 * - For Mn,Mc,Me: the modified Combining_Class.
203
 * - For Cf: whether it's ZWJ, ZWNJ, or something else.
B
Behdad Esfahbod 已提交
204 205 206 207
 * - For Ws: index of which space character this is, if space fallback
 *   is needed, ie. we don't set this by default, only if asked to.
 */

B
Behdad Esfahbod 已提交
208
enum hb_unicode_props_flags_t {
209 210
  UPROPS_MASK_GEN_CAT	= 0x001Fu,
  UPROPS_MASK_IGNORABLE	= 0x0020u,
211 212
  UPROPS_MASK_HIDDEN	= 0x0040u, /* MONGOLIAN FREE VARIATION SELECTOR 1..3,
                                    * or TAG characters */
213 214 215 216

  /* If GEN_CAT=FORMAT, top byte masks: */
  UPROPS_MASK_Cf_ZWJ	= 0x0100u,
  UPROPS_MASK_Cf_ZWNJ	= 0x0200u
B
Behdad Esfahbod 已提交
217
};
C
Chun-wei Fan 已提交
218
HB_MARK_AS_FLAG_T (hb_unicode_props_flags_t);
B
Behdad Esfahbod 已提交
219

220
static inline void
221
_hb_glyph_info_set_unicode_props (hb_glyph_info_t *info, hb_buffer_t *buffer)
222
{
223
  hb_unicode_funcs_t *unicode = buffer->unicode;
B
Behdad Esfahbod 已提交
224 225
  unsigned int u = info->codepoint;
  unsigned int gen_cat = (unsigned int) unicode->general_category (u);
226 227
  unsigned int props = gen_cat;

B
Behdad Esfahbod 已提交
228
  if (u >= 0x80)
229
  {
230
    buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII;
B
Behdad Esfahbod 已提交
231 232
    if (unlikely (unicode->is_default_ignorable (u)))
    {
233
      buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_DEFAULT_IGNORABLES;
B
Behdad Esfahbod 已提交
234
      props |=  UPROPS_MASK_IGNORABLE;
235
      if (u == 0x200Cu) props |= UPROPS_MASK_Cf_ZWNJ;
B
Behdad Esfahbod 已提交
236
      else if (u == 0x200Du) props |= UPROPS_MASK_Cf_ZWJ;
237 238 239 240 241 242
      /* Mongolian Free Variation Selectors need to be remembered
       * because although we need to hide them like default-ignorables,
       * they need to non-ignorable during shaping.  This is similar to
       * what we do for joiners in Indic-like shapers, but since the
       * FVSes are GC=Mn, we have use a separate bit to remember them.
       * Fixes:
243
       * https://github.com/harfbuzz/harfbuzz/issues/234 */
B
Behdad Esfahbod 已提交
244
      else if (unlikely (hb_in_range (u, 0x180Bu, 0x180Du))) props |= UPROPS_MASK_HIDDEN;
245
      /* TAG characters need similar treatment. Fixes:
246
       * https://github.com/harfbuzz/harfbuzz/issues/463 */
B
Behdad Esfahbod 已提交
247 248
      else if (unlikely (hb_in_range (u, 0xE0020u, 0xE007Fu))) props |= UPROPS_MASK_HIDDEN;
      /* COMBINING GRAPHEME JOINER should not be skipped; at least some times.
249
       * https://github.com/harfbuzz/harfbuzz/issues/554 */
B
Behdad Esfahbod 已提交
250 251 252 253 254
      else if (unlikely (u == 0x034Fu))
      {
	buffer->scratch_flags |= HB_BUFFER_SCRATCH_FLAG_HAS_CGJ;
	props |= UPROPS_MASK_HIDDEN;
      }
B
Behdad Esfahbod 已提交
255
    }
256
    else if (unlikely (HB_UNICODE_GENERAL_CATEGORY_IS_NON_ENCLOSING_MARK_OR_MODIFIER_SYMBOL (gen_cat)))
B
Behdad Esfahbod 已提交
257
    {
258 259 260
      /* The above check is just an optimization to let in only things we need further
       * processing on. */

261
      /* Only Mn and Mc can have non-zero ccc:
262
       * https://unicode.org/policies/stability_policy.html#Property_Value
263 264 265 266 267 268 269
       * """
       * Canonical_Combining_Class, General_Category
       * All characters other than those with General_Category property values
       * Spacing_Mark (Mc) and Nonspacing_Mark (Mn) have the Canonical_Combining_Class
       * property value 0.
       * 1.1.5+
       * """
B
Behdad Esfahbod 已提交
270 271 272
       *
       * Also, all Mn's that are Default_Ignorable, have ccc=0, hence
       * the "else if".
273
       */
B
Behdad Esfahbod 已提交
274
      props |= unicode->modified_combining_class (info->codepoint)<<8;
275 276 277 278

      /* Recategorize emoji skin-tone modifiers as Unicode mark, so they
       * behave correctly in non-native directionality.  They originally
       * are MODIFIER_SYMBOL.  Fixes:
279
       * https://github.com/harfbuzz/harfbuzz/issues/169
280 281 282 283 284
       */
      if (unlikely (hb_in_range (u, 0x1F3FBu, 0x1F3FFu)))
      {
	props = gen_cat = HB_UNICODE_GENERAL_CATEGORY_ENCLOSING_MARK;
      }
B
Behdad Esfahbod 已提交
285
    }
286
  }
B
Behdad Esfahbod 已提交
287

288
  info->unicode_props() = props;
289 290
}

291
static inline void
B
Behdad Esfahbod 已提交
292 293
_hb_glyph_info_set_general_category (hb_glyph_info_t *info,
				     hb_unicode_general_category_t gen_cat)
294
{
295 296
  /* Clears top-byte. */
  info->unicode_props() = (unsigned int) gen_cat | (info->unicode_props() & (0xFF & ~UPROPS_MASK_GEN_CAT));
297 298
}

299
static inline hb_unicode_general_category_t
300 301
_hb_glyph_info_get_general_category (const hb_glyph_info_t *info)
{
302
  return (hb_unicode_general_category_t) (info->unicode_props() & UPROPS_MASK_GEN_CAT);
303 304
}

305 306 307 308 309
static inline bool
_hb_glyph_info_is_unicode_mark (const hb_glyph_info_t *info)
{
  return HB_UNICODE_GENERAL_CATEGORY_IS_MARK (info->unicode_props() & UPROPS_MASK_GEN_CAT);
}
310
static inline void
B
Behdad Esfahbod 已提交
311 312
_hb_glyph_info_set_modified_combining_class (hb_glyph_info_t *info,
					     unsigned int modified_class)
313
{
314 315
  if (unlikely (!_hb_glyph_info_is_unicode_mark (info)))
    return;
316
  info->unicode_props() = (modified_class<<8) | (info->unicode_props() & 0xFF);
317
}
318
static inline unsigned int
319 320
_hb_glyph_info_get_modified_combining_class (const hb_glyph_info_t *info)
{
321
  return _hb_glyph_info_is_unicode_mark (info) ? info->unicode_props()>>8 : 0;
322 323
}

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345

/* Loop over grapheme. Based on foreach_cluster(). */
#define foreach_grapheme(buffer, start, end) \
  for (unsigned int \
       _count = buffer->len, \
       start = 0, end = _count ? _next_grapheme (buffer, 0) : 0; \
       start < _count; \
       start = end, end = _next_grapheme (buffer, start))

static inline unsigned int
_next_grapheme (hb_buffer_t *buffer, unsigned int start)
{
  hb_glyph_info_t *info = buffer->info;
  unsigned int count = buffer->len;

  while (++start < count && _hb_glyph_info_is_unicode_mark (&info[start]))
    ;

  return start;
}


B
Behdad Esfahbod 已提交
346 347
#define info_cc(info) (_hb_glyph_info_get_modified_combining_class (&(info)))

B
Behdad Esfahbod 已提交
348 349 350 351 352 353 354
static inline bool
_hb_glyph_info_is_unicode_space (const hb_glyph_info_t *info)
{
  return _hb_glyph_info_get_general_category (info) ==
	 HB_UNICODE_GENERAL_CATEGORY_SPACE_SEPARATOR;
}
static inline void
355
_hb_glyph_info_set_unicode_space_fallback_type (hb_glyph_info_t *info, hb_unicode_funcs_t::space_t s)
B
Behdad Esfahbod 已提交
356 357 358 359 360
{
  if (unlikely (!_hb_glyph_info_is_unicode_space (info)))
    return;
  info->unicode_props() = (((unsigned int) s)<<8) | (info->unicode_props() & 0xFF);
}
361 362
static inline hb_unicode_funcs_t::space_t
_hb_glyph_info_get_unicode_space_fallback_type (const hb_glyph_info_t *info)
B
Behdad Esfahbod 已提交
363
{
364 365 366
  return _hb_glyph_info_is_unicode_space (info) ?
	 (hb_unicode_funcs_t::space_t) (info->unicode_props()>>8) :
	 hb_unicode_funcs_t::NOT_SPACE;
B
Behdad Esfahbod 已提交
367 368
}

369 370
static inline bool _hb_glyph_info_ligated (const hb_glyph_info_t *info);

371
static inline hb_bool_t
372 373
_hb_glyph_info_is_default_ignorable (const hb_glyph_info_t *info)
{
374 375 376 377
  return (info->unicode_props() & UPROPS_MASK_IGNORABLE) &&
	 !_hb_glyph_info_ligated (info);
}
static inline hb_bool_t
378
_hb_glyph_info_is_default_ignorable_and_not_hidden (const hb_glyph_info_t *info)
379
{
380
  return ((info->unicode_props() & (UPROPS_MASK_IGNORABLE|UPROPS_MASK_HIDDEN))
381 382
	  == UPROPS_MASK_IGNORABLE) &&
	 !_hb_glyph_info_ligated (info);
383
}
B
Behdad Esfahbod 已提交
384 385 386 387 388
static inline void
_hb_glyph_info_unhide (hb_glyph_info_t *info)
{
  info->unicode_props() &= ~ UPROPS_MASK_HIDDEN;
}
389

390 391 392 393 394 395
static inline bool
_hb_glyph_info_is_unicode_format (const hb_glyph_info_t *info)
{
  return _hb_glyph_info_get_general_category (info) ==
	 HB_UNICODE_GENERAL_CATEGORY_FORMAT;
}
396
static inline hb_bool_t
397 398
_hb_glyph_info_is_zwnj (const hb_glyph_info_t *info)
{
399
  return _hb_glyph_info_is_unicode_format (info) && (info->unicode_props() & UPROPS_MASK_Cf_ZWNJ);
400
}
401
static inline hb_bool_t
402 403
_hb_glyph_info_is_zwj (const hb_glyph_info_t *info)
{
404
  return _hb_glyph_info_is_unicode_format (info) && (info->unicode_props() & UPROPS_MASK_Cf_ZWJ);
405
}
406 407 408
static inline hb_bool_t
_hb_glyph_info_is_joiner (const hb_glyph_info_t *info)
{
409
  return _hb_glyph_info_is_unicode_format (info) && (info->unicode_props() & (UPROPS_MASK_Cf_ZWNJ|UPROPS_MASK_Cf_ZWJ));
410
}
411
static inline void
412 413
_hb_glyph_info_flip_joiners (hb_glyph_info_t *info)
{
414 415 416
  if (!_hb_glyph_info_is_unicode_format (info))
    return;
  info->unicode_props() ^= UPROPS_MASK_Cf_ZWNJ | UPROPS_MASK_Cf_ZWJ;
417 418
}

B
Behdad Esfahbod 已提交
419
/* lig_props: aka lig_id / lig_comp
420 421 422
 *
 * When a ligature is formed:
 *
423 424
 *   - The ligature glyph and any marks in between all the same newly allocated
 *     lig_id,
B
Minor  
Behdad Esfahbod 已提交
425
 *   - The ligature glyph will get lig_num_comps set to the number of components
426 427 428
 *   - The marks get lig_comp > 0, reflecting which component of the ligature
 *     they were applied to.
 *   - This is used in GPOS to attach marks to the right component of a ligature
B
Behdad Esfahbod 已提交
429 430 431
 *     in MarkLigPos,
 *   - Note that when marks are ligated together, much of the above is skipped
 *     and the current lig_id reused.
432 433 434 435 436
 *
 * When a multiple-substitution is done:
 *
 *   - All resulting glyphs will have lig_id = 0,
 *   - The resulting glyphs will have lig_comp = 0, 1, 2, ... respectively.
437
 *   - This is used in GPOS to attach marks to the first component of a
438 439 440
 *     multiple substitution in MarkBasePos.
 *
 * The numbers are also used in GPOS to do mark-to-mark positioning only
B
Behdad Esfahbod 已提交
441
 * to marks that belong to the same component of the same ligature.
442
 */
B
Behdad Esfahbod 已提交
443 444 445 446 447 448 449

static inline void
_hb_glyph_info_clear_lig_props (hb_glyph_info_t *info)
{
  info->lig_props() = 0;
}

B
Minor  
Behdad Esfahbod 已提交
450
#define IS_LIG_BASE 0x10
B
Behdad Esfahbod 已提交
451

B
Behdad Esfahbod 已提交
452
static inline void
B
Behdad Esfahbod 已提交
453 454 455
_hb_glyph_info_set_lig_props_for_ligature (hb_glyph_info_t *info,
					   unsigned int lig_id,
					   unsigned int lig_num_comps)
B
Behdad Esfahbod 已提交
456
{
B
Behdad Esfahbod 已提交
457
  info->lig_props() = (lig_id << 5) | IS_LIG_BASE | (lig_num_comps & 0x0F);
B
Behdad Esfahbod 已提交
458
}
B
Behdad Esfahbod 已提交
459

B
Behdad Esfahbod 已提交
460
static inline void
B
Behdad Esfahbod 已提交
461 462 463
_hb_glyph_info_set_lig_props_for_mark (hb_glyph_info_t *info,
				       unsigned int lig_id,
				       unsigned int lig_comp)
B
Behdad Esfahbod 已提交
464
{
B
Behdad Esfahbod 已提交
465
  info->lig_props() = (lig_id << 5) | (lig_comp & 0x0F);
B
Behdad Esfahbod 已提交
466
}
B
Behdad Esfahbod 已提交
467

B
Behdad Esfahbod 已提交
468
static inline void
B
Behdad Esfahbod 已提交
469
_hb_glyph_info_set_lig_props_for_component (hb_glyph_info_t *info, unsigned int comp)
B
Behdad Esfahbod 已提交
470
{
B
Behdad Esfahbod 已提交
471
  _hb_glyph_info_set_lig_props_for_mark (info, 0, comp);
B
Behdad Esfahbod 已提交
472 473
}

B
Behdad Esfahbod 已提交
474
static inline unsigned int
B
Behdad Esfahbod 已提交
475
_hb_glyph_info_get_lig_id (const hb_glyph_info_t *info)
B
Behdad Esfahbod 已提交
476
{
B
Behdad Esfahbod 已提交
477
  return info->lig_props() >> 5;
B
Behdad Esfahbod 已提交
478
}
B
Behdad Esfahbod 已提交
479

B
Minor  
Behdad Esfahbod 已提交
480
static inline bool
481
_hb_glyph_info_ligated_internal (const hb_glyph_info_t *info)
B
Minor  
Behdad Esfahbod 已提交
482
{
B
Behdad Esfahbod 已提交
483
  return !!(info->lig_props() & IS_LIG_BASE);
B
Minor  
Behdad Esfahbod 已提交
484
}
B
Behdad Esfahbod 已提交
485

B
Behdad Esfahbod 已提交
486
static inline unsigned int
B
Behdad Esfahbod 已提交
487
_hb_glyph_info_get_lig_comp (const hb_glyph_info_t *info)
B
Behdad Esfahbod 已提交
488
{
489
  if (_hb_glyph_info_ligated_internal (info))
B
Behdad Esfahbod 已提交
490 491
    return 0;
  else
B
Behdad Esfahbod 已提交
492
    return info->lig_props() & 0x0F;
B
Behdad Esfahbod 已提交
493
}
B
Behdad Esfahbod 已提交
494

B
Behdad Esfahbod 已提交
495
static inline unsigned int
B
Behdad Esfahbod 已提交
496
_hb_glyph_info_get_lig_num_comps (const hb_glyph_info_t *info)
B
Behdad Esfahbod 已提交
497
{
B
Behdad Esfahbod 已提交
498
  if ((info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE) &&
499
      _hb_glyph_info_ligated_internal (info))
B
Behdad Esfahbod 已提交
500
    return info->lig_props() & 0x0F;
B
Behdad Esfahbod 已提交
501 502
  else
    return 1;
B
Behdad Esfahbod 已提交
503 504
}

B
Behdad Esfahbod 已提交
505 506
static inline uint8_t
_hb_allocate_lig_id (hb_buffer_t *buffer) {
B
Behdad Esfahbod 已提交
507
  uint8_t lig_id = buffer->next_serial () & 0x07;
B
Behdad Esfahbod 已提交
508
  if (unlikely (!lig_id))
B
Behdad Esfahbod 已提交
509
    lig_id = _hb_allocate_lig_id (buffer); /* in case of overflow */
B
Behdad Esfahbod 已提交
510 511 512
  return lig_id;
}

513 514
/* glyph_props: */

515
static inline void
516 517 518 519 520
_hb_glyph_info_set_glyph_props (hb_glyph_info_t *info, unsigned int props)
{
  info->glyph_props() = props;
}

521
static inline unsigned int
B
Behdad Esfahbod 已提交
522 523 524 525 526
_hb_glyph_info_get_glyph_props (const hb_glyph_info_t *info)
{
  return info->glyph_props();
}

527
static inline bool
B
Behdad Esfahbod 已提交
528 529 530 531 532
_hb_glyph_info_is_base_glyph (const hb_glyph_info_t *info)
{
  return !!(info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH);
}

533
static inline bool
B
Behdad Esfahbod 已提交
534 535 536 537 538
_hb_glyph_info_is_ligature (const hb_glyph_info_t *info)
{
  return !!(info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE);
}

539
static inline bool
B
Behdad Esfahbod 已提交
540 541 542 543 544
_hb_glyph_info_is_mark (const hb_glyph_info_t *info)
{
  return !!(info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_MARK);
}

545 546 547 548 549 550
static inline bool
_hb_glyph_info_substituted (const hb_glyph_info_t *info)
{
  return !!(info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED);
}

551 552 553 554
static inline bool
_hb_glyph_info_ligated (const hb_glyph_info_t *info)
{
  return !!(info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_LIGATED);
555 556 557 558 559 560 561 562 563 564 565 566
}

static inline bool
_hb_glyph_info_multiplied (const hb_glyph_info_t *info)
{
  return !!(info->glyph_props() & HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED);
}

static inline bool
_hb_glyph_info_ligated_and_didnt_multiply (const hb_glyph_info_t *info)
{
  return _hb_glyph_info_ligated (info) && !_hb_glyph_info_multiplied (info);
567 568
}

569 570 571 572 573 574 575
static inline void
_hb_glyph_info_clear_ligated_and_multiplied (hb_glyph_info_t *info)
{
  info->glyph_props() &= ~(HB_OT_LAYOUT_GLYPH_PROPS_LIGATED |
			   HB_OT_LAYOUT_GLYPH_PROPS_MULTIPLIED);
}

576
static inline void
B
Behdad Esfahbod 已提交
577
_hb_glyph_info_clear_substituted (hb_glyph_info_t *info)
578
{
B
Behdad Esfahbod 已提交
579
  info->glyph_props() &= ~(HB_OT_LAYOUT_GLYPH_PROPS_SUBSTITUTED);
580 581
}

582

B
Behdad Esfahbod 已提交
583 584
/* Allocation / deallocation. */

585
static inline void
B
Behdad Esfahbod 已提交
586 587
_hb_buffer_allocate_unicode_vars (hb_buffer_t *buffer)
{
588
  HB_BUFFER_ALLOCATE_VAR (buffer, unicode_props);
B
Behdad Esfahbod 已提交
589 590
}

591
static inline void
B
Behdad Esfahbod 已提交
592 593
_hb_buffer_deallocate_unicode_vars (hb_buffer_t *buffer)
{
594
  HB_BUFFER_DEALLOCATE_VAR (buffer, unicode_props);
B
Behdad Esfahbod 已提交
595 596
}

597 598 599
static inline void
_hb_buffer_assert_unicode_vars (hb_buffer_t *buffer)
{
600
  HB_BUFFER_ASSERT_VAR (buffer, unicode_props);
601 602
}

603
static inline void
B
Behdad Esfahbod 已提交
604 605 606 607 608 609 610
_hb_buffer_allocate_gsubgpos_vars (hb_buffer_t *buffer)
{
  HB_BUFFER_ALLOCATE_VAR (buffer, glyph_props);
  HB_BUFFER_ALLOCATE_VAR (buffer, lig_props);
  HB_BUFFER_ALLOCATE_VAR (buffer, syllable);
}

611
static inline void
B
Behdad Esfahbod 已提交
612 613 614 615 616 617
_hb_buffer_deallocate_gsubgpos_vars (hb_buffer_t *buffer)
{
  HB_BUFFER_DEALLOCATE_VAR (buffer, syllable);
  HB_BUFFER_DEALLOCATE_VAR (buffer, lig_props);
  HB_BUFFER_DEALLOCATE_VAR (buffer, glyph_props);
}
618

619 620 621 622 623 624 625 626
static inline void
_hb_buffer_assert_gsubgpos_vars (hb_buffer_t *buffer)
{
  HB_BUFFER_ASSERT_VAR (buffer, glyph_props);
  HB_BUFFER_ASSERT_VAR (buffer, lig_props);
  HB_BUFFER_ASSERT_VAR (buffer, syllable);
}

B
Behdad Esfahbod 已提交
627 628 629 630 631
/* Make sure no one directly touches our props... */
#undef unicode_props0
#undef unicode_props1
#undef lig_props
#undef glyph_props
B
Behdad Esfahbod 已提交
632

633
#endif /* HB_OT_LAYOUT_HH */