2 * Copyright © 2011,2012,2013 Google, Inc.
4 * This is part of HarfBuzz, a text shaping library.
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24 * Google Author(s): Behdad Esfahbod
27 #include "hb-ot-shape-complex-indic-private.hh"
29 /* buffer var allocations */
30 #define myanmar_category() complex_var_u8_0() /* myanmar_category_t */
31 #define myanmar_position() complex_var_u8_1() /* myanmar_position_t */
43 * These features are applied in order, one at a time, after initial_reordering.
45 HB_TAG('r','p','h','f'),
46 HB_TAG('p','r','e','f'),
47 HB_TAG('b','l','w','f'),
48 HB_TAG('p','s','t','f'),
55 * These features are applied all at once, after final_reordering.
57 HB_TAG('p','r','e','s'),
58 HB_TAG('a','b','v','s'),
59 HB_TAG('b','l','w','s'),
60 HB_TAG('p','s','t','s'),
61 /* Positioning features, though we don't care about the types. */
62 HB_TAG('d','i','s','t'),
63 /* Pre-release version of Windows 8 Myanmar font had abvm,blwm
64 * features. The released Windows 8 version of the font (as well
65 * as the released spec) used 'mark' instead. The Windows 8
66 * shaper however didn't apply 'mark' but did apply 'mkmk'.
67 * Perhaps it applied abvm/blwm. This was fixed in a Windows 8
68 * update, so now it applies mark/mkmk. We are guessing that
69 * it still applies abvm/blwm too.
71 HB_TAG('a','b','v','m'),
72 HB_TAG('b','l','w','m'),
76 setup_syllables (const hb_ot_shape_plan_t
*plan
,
80 initial_reordering (const hb_ot_shape_plan_t
*plan
,
84 final_reordering (const hb_ot_shape_plan_t
*plan
,
89 collect_features_myanmar (hb_ot_shape_planner_t
*plan
)
91 hb_ot_map_builder_t
*map
= &plan
->map
;
93 /* Do this before any lookups have been applied. */
94 map
->add_gsub_pause (setup_syllables
);
96 map
->add_global_bool_feature (HB_TAG('l','o','c','l'));
97 /* The Indic specs do not require ccmp, but we apply it here since if
98 * there is a use of it, it's typically at the beginning. */
99 map
->add_global_bool_feature (HB_TAG('c','c','m','p'));
102 map
->add_gsub_pause (initial_reordering
);
103 for (unsigned int i
= 0; i
< ARRAY_LENGTH (basic_features
); i
++)
105 map
->add_feature (basic_features
[i
], 1, F_GLOBAL
| F_MANUAL_ZWJ
);
106 map
->add_gsub_pause (NULL
);
108 map
->add_gsub_pause (final_reordering
);
109 for (unsigned int i
= 0; i
< ARRAY_LENGTH (other_features
); i
++)
110 map
->add_feature (other_features
[i
], 1, F_GLOBAL
| F_MANUAL_ZWJ
);
114 override_features_myanmar (hb_ot_shape_planner_t
*plan
)
116 plan
->map
.add_feature (HB_TAG('l','i','g','a'), 0, F_GLOBAL
);
120 enum syllable_type_t
{
127 #include "hb-ot-shape-complex-myanmar-machine.hh"
130 /* Note: This enum is duplicated in the -machine.rl source file.
131 * Not sure how to avoid duplication. */
132 enum myanmar_category_t
{
133 OT_As
= 18, /* Asat */
134 OT_D
= 19, /* Digits except zero */
135 OT_D0
= 20, /* Digit zero */
136 OT_DB
= OT_N
, /* Dot below */
137 OT_GB
= OT_PLACEHOLDER
,
138 OT_MH
= 21, /* Various consonant medial types */
139 OT_MR
= 22, /* Various consonant medial types */
140 OT_MW
= 23, /* Various consonant medial types */
141 OT_MY
= 24, /* Various consonant medial types */
142 OT_PT
= 25, /* Pwo and other tones */
147 OT_VS
= 30, /* Variation selectors */
148 OT_P
= 31 /* Punctuation */
153 is_one_of (const hb_glyph_info_t
&info
, unsigned int flags
)
155 /* If it ligated, all bets are off. */
156 if (_hb_glyph_info_ligated (&info
)) return false;
157 return !!(FLAG_SAFE (info
.myanmar_category()) & flags
);
161 is_consonant (const hb_glyph_info_t
&info
)
163 return is_one_of (info
, CONSONANT_FLAGS
);
168 set_myanmar_properties (hb_glyph_info_t
&info
)
170 hb_codepoint_t u
= info
.codepoint
;
171 unsigned int type
= hb_indic_get_categories (u
);
172 indic_category_t cat
= (indic_category_t
) (type
& 0x7Fu
);
173 indic_position_t pos
= (indic_position_t
) (type
>> 8);
176 * http://www.microsoft.com/typography/OpenTypeDev/myanmar/intro.htm#analyze
178 if (unlikely (hb_in_range (u
, 0xFE00u
, 0xFE0Fu
)))
179 cat
= (indic_category_t
) OT_VS
;
184 cat
= (indic_category_t
) OT_C
; /* The spec says C, IndicSyllableCategory doesn't have. */
187 case 0x002Du
: case 0x00A0u
: case 0x00D7u
: case 0x2012u
:
188 case 0x2013u
: case 0x2014u
: case 0x2015u
: case 0x2022u
:
189 case 0x25CCu
: case 0x25FBu
: case 0x25FCu
: case 0x25FDu
:
191 cat
= (indic_category_t
) OT_GB
;
194 case 0x1004u
: case 0x101Bu
: case 0x105Au
:
195 cat
= (indic_category_t
) OT_Ra
;
198 case 0x1032u
: case 0x1036u
:
199 cat
= (indic_category_t
) OT_A
;
203 cat
= (indic_category_t
) OT_As
;
206 case 0x1041u
: case 0x1042u
: case 0x1043u
: case 0x1044u
:
207 case 0x1045u
: case 0x1046u
: case 0x1047u
: case 0x1048u
:
208 case 0x1049u
: case 0x1090u
: case 0x1091u
: case 0x1092u
:
209 case 0x1093u
: case 0x1094u
: case 0x1095u
: case 0x1096u
:
210 case 0x1097u
: case 0x1098u
: case 0x1099u
:
211 cat
= (indic_category_t
) OT_D
;
215 cat
= (indic_category_t
) OT_D
; /* XXX The spec says D0, but Uniscribe doesn't seem to do. */
218 case 0x103Eu
: case 0x1060u
:
219 cat
= (indic_category_t
) OT_MH
;
223 cat
= (indic_category_t
) OT_MR
;
226 case 0x103Du
: case 0x1082u
:
227 cat
= (indic_category_t
) OT_MW
;
230 case 0x103Bu
: case 0x105Eu
: case 0x105Fu
:
231 cat
= (indic_category_t
) OT_MY
;
234 case 0x1063u
: case 0x1064u
: case 0x1069u
: case 0x106Au
:
235 case 0x106Bu
: case 0x106Cu
: case 0x106Du
: case 0xAA7Bu
:
236 cat
= (indic_category_t
) OT_PT
;
239 case 0x1038u
: case 0x1087u
: case 0x1088u
: case 0x1089u
:
240 case 0x108Au
: case 0x108Bu
: case 0x108Cu
: case 0x108Du
:
241 case 0x108Fu
: case 0x109Au
: case 0x109Bu
: case 0x109Cu
:
242 cat
= (indic_category_t
) OT_SM
;
245 case 0x104Au
: case 0x104Bu
:
246 cat
= (indic_category_t
) OT_P
;
254 case POS_PRE_C
: cat
= (indic_category_t
) OT_VPre
;
255 pos
= POS_PRE_M
; break;
256 case POS_ABOVE_C
: cat
= (indic_category_t
) OT_VAbv
; break;
257 case POS_BELOW_C
: cat
= (indic_category_t
) OT_VBlw
; break;
258 case POS_POST_C
: cat
= (indic_category_t
) OT_VPst
; break;
262 info
.myanmar_category() = (myanmar_category_t
) cat
;
263 info
.myanmar_position() = pos
;
269 setup_masks_myanmar (const hb_ot_shape_plan_t
*plan HB_UNUSED
,
271 hb_font_t
*font HB_UNUSED
)
273 HB_BUFFER_ALLOCATE_VAR (buffer
, myanmar_category
);
274 HB_BUFFER_ALLOCATE_VAR (buffer
, myanmar_position
);
276 /* We cannot setup masks here. We save information about characters
277 * and setup masks later on in a pause-callback. */
279 unsigned int count
= buffer
->len
;
280 hb_glyph_info_t
*info
= buffer
->info
;
281 for (unsigned int i
= 0; i
< count
; i
++)
282 set_myanmar_properties (info
[i
]);
286 setup_syllables (const hb_ot_shape_plan_t
*plan HB_UNUSED
,
287 hb_font_t
*font HB_UNUSED
,
290 find_syllables (buffer
);
294 compare_myanmar_order (const hb_glyph_info_t
*pa
, const hb_glyph_info_t
*pb
)
296 int a
= pa
->myanmar_position();
297 int b
= pb
->myanmar_position();
299 return a
< b
? -1 : a
== b
? 0 : +1;
304 * http://www.microsoft.com/typography/OpenTypeDev/myanmar/intro.htm */
307 initial_reordering_consonant_syllable (hb_buffer_t
*buffer
,
308 unsigned int start
, unsigned int end
)
310 hb_glyph_info_t
*info
= buffer
->info
;
312 unsigned int base
= end
;
313 bool has_reph
= false;
316 unsigned int limit
= start
;
317 if (start
+ 3 <= end
&&
318 info
[start
].myanmar_category() == OT_Ra
&&
319 info
[start
+1].myanmar_category() == OT_As
&&
320 info
[start
+2].myanmar_category() == OT_H
)
331 for (unsigned int i
= limit
; i
< end
; i
++)
332 if (is_consonant (info
[i
]))
342 unsigned int i
= start
;
343 for (; i
< start
+ (has_reph
? 3 : 0); i
++)
344 info
[i
].myanmar_position() = POS_AFTER_MAIN
;
345 for (; i
< base
; i
++)
346 info
[i
].myanmar_position() = POS_PRE_C
;
349 info
[i
].myanmar_position() = POS_BASE_C
;
352 indic_position_t pos
= POS_AFTER_MAIN
;
353 /* The following loop may be ugly, but it implements all of
354 * Myanmar reordering! */
357 if (info
[i
].myanmar_category() == OT_MR
) /* Pre-base reordering */
359 info
[i
].myanmar_position() = POS_PRE_C
;
362 if (info
[i
].myanmar_position() < POS_BASE_C
) /* Left matra */
367 if (pos
== POS_AFTER_MAIN
&& info
[i
].myanmar_category() == OT_VBlw
)
370 info
[i
].myanmar_position() = pos
;
374 if (pos
== POS_BELOW_C
&& info
[i
].myanmar_category() == OT_A
)
376 info
[i
].myanmar_position() = POS_BEFORE_SUB
;
379 if (pos
== POS_BELOW_C
&& info
[i
].myanmar_category() == OT_VBlw
)
381 info
[i
].myanmar_position() = pos
;
384 if (pos
== POS_BELOW_C
&& info
[i
].myanmar_category() != OT_A
)
387 info
[i
].myanmar_position() = pos
;
390 info
[i
].myanmar_position() = pos
;
394 buffer
->merge_clusters (start
, end
);
395 /* Sit tight, rock 'n roll! */
396 hb_bubble_sort (info
+ start
, end
- start
, compare_myanmar_order
);
400 initial_reordering_syllable (const hb_ot_shape_plan_t
*plan
,
403 unsigned int start
, unsigned int end
)
405 syllable_type_t syllable_type
= (syllable_type_t
) (buffer
->info
[start
].syllable() & 0x0F);
406 switch (syllable_type
) {
408 case broken_cluster
: /* We already inserted dotted-circles, so just call the consonant_syllable. */
409 case consonant_syllable
:
410 initial_reordering_consonant_syllable (buffer
, start
, end
);
413 case punctuation_cluster
:
414 case non_myanmar_cluster
:
420 insert_dotted_circles (const hb_ot_shape_plan_t
*plan HB_UNUSED
,
424 /* Note: This loop is extra overhead, but should not be measurable. */
425 bool has_broken_syllables
= false;
426 unsigned int count
= buffer
->len
;
427 hb_glyph_info_t
*info
= buffer
->info
;
428 for (unsigned int i
= 0; i
< count
; i
++)
429 if ((info
[i
].syllable() & 0x0F) == broken_cluster
)
431 has_broken_syllables
= true;
434 if (likely (!has_broken_syllables
))
438 hb_codepoint_t dottedcircle_glyph
;
439 if (!font
->get_glyph (0x25CCu
, 0, &dottedcircle_glyph
))
442 hb_glyph_info_t dottedcircle
= {0};
443 dottedcircle
.codepoint
= 0x25CCu
;
444 set_myanmar_properties (dottedcircle
);
445 dottedcircle
.codepoint
= dottedcircle_glyph
;
447 buffer
->clear_output ();
450 unsigned int last_syllable
= 0;
451 while (buffer
->idx
< buffer
->len
)
453 unsigned int syllable
= buffer
->cur().syllable();
454 syllable_type_t syllable_type
= (syllable_type_t
) (syllable
& 0x0F);
455 if (unlikely (last_syllable
!= syllable
&& syllable_type
== broken_cluster
))
457 last_syllable
= syllable
;
459 hb_glyph_info_t info
= dottedcircle
;
460 info
.cluster
= buffer
->cur().cluster
;
461 info
.mask
= buffer
->cur().mask
;
462 info
.syllable() = buffer
->cur().syllable();
464 buffer
->output_info (info
);
467 buffer
->next_glyph ();
470 buffer
->swap_buffers ();
474 initial_reordering (const hb_ot_shape_plan_t
*plan
,
478 insert_dotted_circles (plan
, font
, buffer
);
480 foreach_syllable (buffer
, start
, end
)
481 initial_reordering_syllable (plan
, font
->face
, buffer
, start
, end
);
485 final_reordering (const hb_ot_shape_plan_t
*plan
,
486 hb_font_t
*font HB_UNUSED
,
489 hb_glyph_info_t
*info
= buffer
->info
;
490 unsigned int count
= buffer
->len
;
492 /* Zero syllables now... */
493 for (unsigned int i
= 0; i
< count
; i
++)
494 info
[i
].syllable() = 0;
496 HB_BUFFER_DEALLOCATE_VAR (buffer
, myanmar_category
);
497 HB_BUFFER_DEALLOCATE_VAR (buffer
, myanmar_position
);
501 /* Uniscribe seems to have a shaper for 'mymr' that is like the
502 * generic shaper, except that it zeros mark advances GDEF_LATE. */
503 const hb_ot_complex_shaper_t _hb_ot_complex_shaper_myanmar_old
=
506 NULL
, /* collect_features */
507 NULL
, /* override_features */
508 NULL
, /* data_create */
509 NULL
, /* data_destroy */
510 NULL
, /* preprocess_text */
511 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT
,
512 NULL
, /* decompose */
514 NULL
, /* setup_masks */
515 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE
,
516 true, /* fallback_position */
519 const hb_ot_complex_shaper_t _hb_ot_complex_shaper_myanmar
=
522 collect_features_myanmar
,
523 override_features_myanmar
,
524 NULL
, /* data_create */
525 NULL
, /* data_destroy */
526 NULL
, /* preprocess_text */
527 HB_OT_SHAPE_NORMALIZATION_MODE_COMPOSED_DIACRITICS_NO_SHORT_CIRCUIT
,
528 NULL
, /* decompose */
531 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY
,
532 false, /* fallback_position */