2 * Copyright © 2010,2012 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
29 #ifndef HB_NO_OT_SHAPE
31 #include "hb-ot-shaper.hh"
34 /* Thai / Lao shaper */
40 enum thai_consonant_type_t
47 NUM_CONSONANT_TYPES
= NOT_CONSONANT
50 static thai_consonant_type_t
51 get_consonant_type (hb_codepoint_t u
)
53 if (u
== 0x0E1Bu
|| u
== 0x0E1Du
|| u
== 0x0E1Fu
/* || u == 0x0E2Cu*/)
55 if (u
== 0x0E0Du
|| u
== 0x0E10u
)
57 if (u
== 0x0E0Eu
|| u
== 0x0E0Fu
)
59 if (hb_in_range
<hb_codepoint_t
> (u
, 0x0E01u
, 0x0E2Eu
))
71 NUM_MARK_TYPES
= NOT_MARK
74 static thai_mark_type_t
75 get_mark_type (hb_codepoint_t u
)
77 if (u
== 0x0E31u
|| hb_in_range
<hb_codepoint_t
> (u
, 0x0E34u
, 0x0E37u
) ||
78 u
== 0x0E47u
|| hb_in_range
<hb_codepoint_t
> (u
, 0x0E4Du
, 0x0E4Eu
))
80 if (hb_in_range
<hb_codepoint_t
> (u
, 0x0E38u
, 0x0E3Au
))
82 if (hb_in_range
<hb_codepoint_t
> (u
, 0x0E48u
, 0x0E4Cu
))
91 SD
, /* Shift combining-mark down */
92 SL
, /* Shift combining-mark left */
93 SDL
, /* Shift combining-mark down-left */
94 RD
/* Remove descender from base */
98 thai_pua_shape (hb_codepoint_t u
, thai_action_t action
, hb_font_t
*font
)
100 struct thai_pua_mapping_t
{
104 } const *pua_mappings
= nullptr;
105 static const thai_pua_mapping_t SD_mappings
[] = {
106 {0x0E48u
, 0xF70Au
, 0xF88Bu
}, /* MAI EK */
107 {0x0E49u
, 0xF70Bu
, 0xF88Eu
}, /* MAI THO */
108 {0x0E4Au
, 0xF70Cu
, 0xF891u
}, /* MAI TRI */
109 {0x0E4Bu
, 0xF70Du
, 0xF894u
}, /* MAI CHATTAWA */
110 {0x0E4Cu
, 0xF70Eu
, 0xF897u
}, /* THANTHAKHAT */
111 {0x0E38u
, 0xF718u
, 0xF89Bu
}, /* SARA U */
112 {0x0E39u
, 0xF719u
, 0xF89Cu
}, /* SARA UU */
113 {0x0E3Au
, 0xF71Au
, 0xF89Du
}, /* PHINTHU */
114 {0x0000u
, 0x0000u
, 0x0000u
}
116 static const thai_pua_mapping_t SDL_mappings
[] = {
117 {0x0E48u
, 0xF705u
, 0xF88Cu
}, /* MAI EK */
118 {0x0E49u
, 0xF706u
, 0xF88Fu
}, /* MAI THO */
119 {0x0E4Au
, 0xF707u
, 0xF892u
}, /* MAI TRI */
120 {0x0E4Bu
, 0xF708u
, 0xF895u
}, /* MAI CHATTAWA */
121 {0x0E4Cu
, 0xF709u
, 0xF898u
}, /* THANTHAKHAT */
122 {0x0000u
, 0x0000u
, 0x0000u
}
124 static const thai_pua_mapping_t SL_mappings
[] = {
125 {0x0E48u
, 0xF713u
, 0xF88Au
}, /* MAI EK */
126 {0x0E49u
, 0xF714u
, 0xF88Du
}, /* MAI THO */
127 {0x0E4Au
, 0xF715u
, 0xF890u
}, /* MAI TRI */
128 {0x0E4Bu
, 0xF716u
, 0xF893u
}, /* MAI CHATTAWA */
129 {0x0E4Cu
, 0xF717u
, 0xF896u
}, /* THANTHAKHAT */
130 {0x0E31u
, 0xF710u
, 0xF884u
}, /* MAI HAN-AKAT */
131 {0x0E34u
, 0xF701u
, 0xF885u
}, /* SARA I */
132 {0x0E35u
, 0xF702u
, 0xF886u
}, /* SARA II */
133 {0x0E36u
, 0xF703u
, 0xF887u
}, /* SARA UE */
134 {0x0E37u
, 0xF704u
, 0xF888u
}, /* SARA UEE */
135 {0x0E47u
, 0xF712u
, 0xF889u
}, /* MAITAIKHU */
136 {0x0E4Du
, 0xF711u
, 0xF899u
}, /* NIKHAHIT */
137 {0x0000u
, 0x0000u
, 0x0000u
}
139 static const thai_pua_mapping_t RD_mappings
[] = {
140 {0x0E0Du
, 0xF70Fu
, 0xF89Au
}, /* YO YING */
141 {0x0E10u
, 0xF700u
, 0xF89Eu
}, /* THO THAN */
142 {0x0000u
, 0x0000u
, 0x0000u
}
147 case SD
: pua_mappings
= SD_mappings
; break;
148 case SDL
: pua_mappings
= SDL_mappings
; break;
149 case SL
: pua_mappings
= SL_mappings
; break;
150 case RD
: pua_mappings
= RD_mappings
; break;
152 for (; pua_mappings
->u
; pua_mappings
++)
153 if (pua_mappings
->u
== u
)
155 hb_codepoint_t glyph
;
156 if (hb_font_get_glyph (font
, pua_mappings
->win_pua
, 0, &glyph
))
157 return pua_mappings
->win_pua
;
158 if (hb_font_get_glyph (font
, pua_mappings
->mac_pua
, 0, &glyph
))
159 return pua_mappings
->mac_pua
;
166 static enum thai_above_state_t
167 { /* Cluster above looks like: */
173 } thai_above_start_state
[NUM_CONSONANT_TYPES
+ 1/* For NOT_CONSONANT */] =
179 T3
, /* NOT_CONSONANT */
182 static const struct thai_above_state_machine_edge_t
{
183 thai_action_t action
;
184 thai_above_state_t next_state
;
185 } thai_above_state_machine
[NUM_ABOVE_STATES
][NUM_MARK_TYPES
] =
186 { /*AV*/ /*BV*/ /*T*/
187 /*T0*/ {{NOP
,T3
}, {NOP
,T0
}, {SD
, T3
}},
188 /*T1*/ {{SL
, T2
}, {NOP
,T1
}, {SDL
,T2
}},
189 /*T2*/ {{NOP
,T3
}, {NOP
,T2
}, {SL
, T3
}},
190 /*T3*/ {{NOP
,T3
}, {NOP
,T3
}, {NOP
,T3
}},
194 static enum thai_below_state_t
196 B0
, /* No descender */
197 B1
, /* Removable descender */
198 B2
, /* Strict descender */
200 } thai_below_start_state
[NUM_CONSONANT_TYPES
+ 1/* For NOT_CONSONANT */] =
206 B2
, /* NOT_CONSONANT */
209 static const struct thai_below_state_machine_edge_t
{
210 thai_action_t action
;
211 thai_below_state_t next_state
;
212 } thai_below_state_machine
[NUM_BELOW_STATES
][NUM_MARK_TYPES
] =
213 { /*AV*/ /*BV*/ /*T*/
214 /*B0*/ {{NOP
,B0
}, {NOP
,B2
}, {NOP
, B0
}},
215 /*B1*/ {{NOP
,B1
}, {RD
, B2
}, {NOP
, B1
}},
216 /*B2*/ {{NOP
,B2
}, {SD
, B2
}, {NOP
, B2
}},
221 do_thai_pua_shaping (const hb_ot_shape_plan_t
*plan HB_UNUSED
,
225 #ifdef HB_NO_OT_SHAPER_THAI_FALLBACK
229 thai_above_state_t above_state
= thai_above_start_state
[NOT_CONSONANT
];
230 thai_below_state_t below_state
= thai_below_start_state
[NOT_CONSONANT
];
231 unsigned int base
= 0;
233 hb_glyph_info_t
*info
= buffer
->info
;
234 unsigned int count
= buffer
->len
;
235 for (unsigned int i
= 0; i
< count
; i
++)
237 thai_mark_type_t mt
= get_mark_type (info
[i
].codepoint
);
239 if (mt
== NOT_MARK
) {
240 thai_consonant_type_t ct
= get_consonant_type (info
[i
].codepoint
);
241 above_state
= thai_above_start_state
[ct
];
242 below_state
= thai_below_start_state
[ct
];
247 const thai_above_state_machine_edge_t
&above_edge
= thai_above_state_machine
[above_state
][mt
];
248 const thai_below_state_machine_edge_t
&below_edge
= thai_below_state_machine
[below_state
][mt
];
249 above_state
= above_edge
.next_state
;
250 below_state
= below_edge
.next_state
;
252 /* At least one of the above/below actions is NOP. */
253 thai_action_t action
= above_edge
.action
!= NOP
? above_edge
.action
: below_edge
.action
;
255 buffer
->unsafe_to_break (base
, i
);
257 info
[base
].codepoint
= thai_pua_shape (info
[base
].codepoint
, action
, font
);
259 info
[i
].codepoint
= thai_pua_shape (info
[i
].codepoint
, action
, font
);
265 preprocess_text_thai (const hb_ot_shape_plan_t
*plan
,
269 /* This function implements the shaping logic documented here:
271 * https://linux.thai.net/~thep/th-otf/shaping.html
273 * The first shaping rule listed there is needed even if the font has Thai
274 * OpenType tables. The rest do fallback positioning based on PUA codepoints.
275 * We implement that only if there exist no Thai GSUB in the font.
278 /* The following is NOT specified in the MS OT Thai spec, however, it seems
279 * to be what Uniscribe and other engines implement. According to Eric Muller:
281 * When you have a SARA AM, decompose it in NIKHAHIT + SARA AA, *and* move the
282 * NIKHAHIT backwards over any above-base marks.
284 * <0E14, 0E4B, 0E33> -> <0E14, 0E4D, 0E4B, 0E32>
286 * This reordering is legit only when the NIKHAHIT comes from a SARA AM, not
287 * when it's there to start with. The string <0E14, 0E4B, 0E4D> is probably
288 * not what a user wanted, but the rendering is nevertheless nikhahit above
295 * Uniscribe also does some below-marks reordering. Namely, it positions U+0E3A
296 * after U+0E38 and U+0E39. We do that by modifying the ccc for U+0E3A.
297 * See unicode->modified_combining_class (). Lao does NOT have a U+0E3A
303 * Here are the characters of significance:
306 * SARA AM: U+0E33 U+0EB3
307 * SARA AA: U+0E32 U+0EB2
308 * Nikhahit: U+0E4D U+0ECD
310 * Testing shows that Uniscribe reorder the following marks:
311 * Thai: <0E31,0E34..0E37, 0E47..0E4E>
312 * Lao: <0EB1,0EB4..0EB7,0EBB,0EC8..0ECD>
314 * Note how the Lao versions are the same as Thai + 0x80.
317 /* We only get one script at a time, so a script-agnostic implementation
318 * is adequate here. */
319 #define IS_SARA_AM(x) (((x) & ~0x0080u) == 0x0E33u)
320 #define NIKHAHIT_FROM_SARA_AM(x) ((x) - 0x0E33u + 0x0E4Du)
321 #define SARA_AA_FROM_SARA_AM(x) ((x) - 1)
322 #define IS_ABOVE_BASE_MARK(x) (hb_in_ranges<hb_codepoint_t> ((x) & ~0x0080u, 0x0E34u, 0x0E37u, 0x0E47u, 0x0E4Eu, 0x0E31u, 0x0E31u, 0x0E3Bu, 0x0E3Bu))
324 buffer
->clear_output ();
325 unsigned int count
= buffer
->len
;
326 for (buffer
->idx
= 0; buffer
->idx
< count
/* No need for: && buffer->successful */;)
328 hb_codepoint_t u
= buffer
->cur().codepoint
;
329 if (likely (!IS_SARA_AM (u
)))
331 if (unlikely (!buffer
->next_glyph ())) break;
335 /* Is SARA AM. Decompose and reorder. */
336 (void) buffer
->output_glyph (NIKHAHIT_FROM_SARA_AM (u
));
337 _hb_glyph_info_set_continuation (&buffer
->prev());
338 if (unlikely (!buffer
->replace_glyph (SARA_AA_FROM_SARA_AM (u
)))) break;
340 /* Make Nikhahit be recognized as a ccc=0 mark when zeroing widths. */
341 unsigned int end
= buffer
->out_len
;
342 _hb_glyph_info_set_general_category (&buffer
->out_info
[end
- 2], HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK
);
344 /* Ok, let's see... */
345 unsigned int start
= end
- 2;
346 while (start
> 0 && IS_ABOVE_BASE_MARK (buffer
->out_info
[start
- 1].codepoint
))
351 /* Move Nikhahit (end-2) to the beginning */
352 buffer
->merge_out_clusters (start
, end
);
353 hb_glyph_info_t t
= buffer
->out_info
[end
- 2];
354 memmove (buffer
->out_info
+ start
+ 1,
355 buffer
->out_info
+ start
,
356 sizeof (buffer
->out_info
[0]) * (end
- start
- 2));
357 buffer
->out_info
[start
] = t
;
361 /* Since we decomposed, and NIKHAHIT is combining, merge clusters with the
362 * previous cluster. */
363 if (start
&& buffer
->cluster_level
== HB_BUFFER_CLUSTER_LEVEL_MONOTONE_GRAPHEMES
)
364 buffer
->merge_out_clusters (start
- 1, end
);
369 /* If font has Thai GSUB, we are done. */
370 if (plan
->props
.script
== HB_SCRIPT_THAI
&& !plan
->map
.found_script
[0])
371 do_thai_pua_shaping (plan
, buffer
, font
);
374 const hb_ot_shaper_t _hb_ot_shaper_thai
=
376 nullptr, /* collect_features */
377 nullptr, /* override_features */
378 nullptr, /* data_create */
379 nullptr, /* data_destroy */
380 preprocess_text_thai
,
381 nullptr, /* postprocess_glyphs */
382 nullptr, /* decompose */
383 nullptr, /* compose */
384 nullptr, /* setup_masks */
385 nullptr, /* reorder_marks */
386 HB_TAG_NONE
, /* gpos_tag */
387 HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT
,
388 HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE
,
389 false,/* fallback_position */