2 * Implementation of Shaping for the Uniscribe Script Processor (usp10.dll)
4 * Copyright 2010 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "usp10_internal.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
38 #define FIRST_ARABIC_CHAR 0x0600
39 #define LAST_ARABIC_CHAR 0x06ff
41 typedef VOID (*ContextualShapingProc)(HDC, ScriptCache*, SCRIPT_ANALYSIS*,
42 WCHAR*, INT, WORD*, INT*, INT, WORD*);
44 static void ContextualShape_Arabic(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
45 static void ContextualShape_Hebrew(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
46 static void ContextualShape_Syriac(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
47 static void ContextualShape_Thaana(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
48 static void ContextualShape_Phags_pa(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
49 static void ContextualShape_Thai(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
50 static void ContextualShape_Lao(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
51 static void ContextualShape_Sinhala(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
52 static void ContextualShape_Devanagari(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
53 static void ContextualShape_Bengali(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
54 static void ContextualShape_Gurmukhi(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
55 static void ContextualShape_Gujarati(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
56 static void ContextualShape_Oriya(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
57 static void ContextualShape_Tamil(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
58 static void ContextualShape_Telugu(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
59 static void ContextualShape_Kannada(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
60 static void ContextualShape_Malayalam(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
61 static void ContextualShape_Khmer(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
62 static void ContextualShape_Mongolian(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
64 typedef VOID (*ShapeCharGlyphPropProc)( HDC , ScriptCache*, SCRIPT_ANALYSIS*, const WCHAR*, const INT, const WORD*, const INT, WORD*, SCRIPT_CHARPROP*, SCRIPT_GLYPHPROP*);
66 static void ShapeCharGlyphProp_Default( HDC hdc, ScriptCache* psc, SCRIPT_ANALYSIS* psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD* pwLogClust, SCRIPT_CHARPROP* pCharProp, SCRIPT_GLYPHPROP* pGlyphProp);
67 static void ShapeCharGlyphProp_Arabic( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP* pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
68 static void ShapeCharGlyphProp_Hebrew( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP* pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
69 static void ShapeCharGlyphProp_Thai( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
70 static void ShapeCharGlyphProp_None( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
71 static void ShapeCharGlyphProp_Tibet( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
72 static void ShapeCharGlyphProp_Sinhala( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
73 static void ShapeCharGlyphProp_Devanagari( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
74 static void ShapeCharGlyphProp_Bengali( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
75 static void ShapeCharGlyphProp_Gurmukhi( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
76 static void ShapeCharGlyphProp_Gujarati( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
77 static void ShapeCharGlyphProp_Oriya( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
78 static void ShapeCharGlyphProp_Tamil( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
79 static void ShapeCharGlyphProp_Telugu( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
80 static void ShapeCharGlyphProp_Kannada( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
81 static void ShapeCharGlyphProp_Malayalam( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
82 static void ShapeCharGlyphProp_Khmer( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp );
84 extern const unsigned short indic_syllabic_table[];
85 extern const unsigned short wine_shaping_table[];
86 extern const unsigned short wine_shaping_forms[LAST_ARABIC_CHAR - FIRST_ARABIC_CHAR + 1][4];
108 typedef struct tagVowelComponents
114 typedef struct tagConsonantComponents
118 } ConsonantComponents;
120 typedef void (*second_reorder_function)(LPWSTR pwChar, IndicSyllable *syllable,WORD* pwGlyphs, IndicSyllable* glyph_index, lexical_function lex);
122 typedef int (*combining_lexical_function)(WCHAR c);
124 /* the orders of joined_forms and contextual_features need to line up */
125 static const char* contextual_features[] =
137 static OPENTYPE_FEATURE_RECORD standard_features[] =
139 { MS_MAKE_TAG('c','c','m','p'), 1},
140 { MS_MAKE_TAG('l','o','c','l'), 1},
143 static OPENTYPE_FEATURE_RECORD latin_features[] =
145 { MS_MAKE_TAG('l','i','g','a'), 1},
146 { MS_MAKE_TAG('c','l','i','g'), 1},
149 static OPENTYPE_FEATURE_RECORD latin_gpos_features[] =
151 { MS_MAKE_TAG('k','e','r','n'), 1},
152 { MS_MAKE_TAG('m','a','r','k'), 1},
153 { MS_MAKE_TAG('m','k','m','k'), 1},
156 static OPENTYPE_FEATURE_RECORD arabic_features[] =
158 { MS_MAKE_TAG('r','l','i','g'), 1},
159 { MS_MAKE_TAG('c','a','l','t'), 1},
160 { MS_MAKE_TAG('l','i','g','a'), 1},
161 { MS_MAKE_TAG('d','l','i','g'), 1},
162 { MS_MAKE_TAG('c','s','w','h'), 1},
163 { MS_MAKE_TAG('m','s','e','t'), 1},
166 static const char* required_arabic_features[] =
175 static OPENTYPE_FEATURE_RECORD arabic_gpos_features[] =
177 { MS_MAKE_TAG('c','u','r','s'), 1},
178 { MS_MAKE_TAG('k','e','r','n'), 1},
179 { MS_MAKE_TAG('m','a','r','k'), 1},
180 { MS_MAKE_TAG('m','k','m','k'), 1},
183 static OPENTYPE_FEATURE_RECORD hebrew_features[] =
185 { MS_MAKE_TAG('c','c','m','p'), 1},
186 { MS_MAKE_TAG('d','l','i','g'), 0},
189 static OPENTYPE_FEATURE_RECORD hebrew_gpos_features[] =
191 { MS_MAKE_TAG('k','e','r','n'), 1},
192 { MS_MAKE_TAG('m','a','r','k'), 1},
195 static OPENTYPE_FEATURE_RECORD syriac_features[] =
197 { MS_MAKE_TAG('r','l','i','g'), 1},
198 { MS_MAKE_TAG('c','a','l','t'), 1},
199 { MS_MAKE_TAG('l','i','g','a'), 1},
200 { MS_MAKE_TAG('d','l','i','g'), 1},
203 static const char* required_syriac_features[] =
215 static OPENTYPE_FEATURE_RECORD syriac_gpos_features[] =
217 { MS_MAKE_TAG('k','e','r','n'), 1},
218 { MS_MAKE_TAG('m','a','r','k'), 1},
219 { MS_MAKE_TAG('m','k','m','k'), 1},
222 static OPENTYPE_FEATURE_RECORD sinhala_features[] =
224 /* Presentation forms */
225 { MS_MAKE_TAG('b','l','w','s'), 1},
226 { MS_MAKE_TAG('a','b','v','s'), 1},
227 { MS_MAKE_TAG('p','s','t','s'), 1},
230 static OPENTYPE_FEATURE_RECORD tibetan_features[] =
232 { MS_MAKE_TAG('a','b','v','s'), 1},
233 { MS_MAKE_TAG('b','l','w','s'), 1},
236 static OPENTYPE_FEATURE_RECORD tibetan_gpos_features[] =
238 { MS_MAKE_TAG('a','b','v','m'), 1},
239 { MS_MAKE_TAG('b','l','w','m'), 1},
242 static OPENTYPE_FEATURE_RECORD phags_features[] =
244 { MS_MAKE_TAG('a','b','v','s'), 1},
245 { MS_MAKE_TAG('b','l','w','s'), 1},
246 { MS_MAKE_TAG('c','a','l','t'), 1},
249 static OPENTYPE_FEATURE_RECORD thai_features[] =
251 { MS_MAKE_TAG('c','c','m','p'), 1},
254 static OPENTYPE_FEATURE_RECORD thai_gpos_features[] =
256 { MS_MAKE_TAG('k','e','r','n'), 1},
257 { MS_MAKE_TAG('m','a','r','k'), 1},
258 { MS_MAKE_TAG('m','k','m','k'), 1},
261 static const char* required_lao_features[] =
267 static const char* required_devanagari_features[] =
283 static OPENTYPE_FEATURE_RECORD devanagari_features[] =
285 { MS_MAKE_TAG('p','r','e','s'), 1},
286 { MS_MAKE_TAG('a','b','v','s'), 1},
287 { MS_MAKE_TAG('b','l','w','s'), 1},
288 { MS_MAKE_TAG('p','s','t','s'), 1},
289 { MS_MAKE_TAG('h','a','l','n'), 1},
290 { MS_MAKE_TAG('c','a','l','t'), 1},
293 static OPENTYPE_FEATURE_RECORD devanagari_gpos_features[] =
295 { MS_MAKE_TAG('k','e','r','n'), 1},
296 { MS_MAKE_TAG('d','i','s','t'), 1},
297 { MS_MAKE_TAG('a','b','v','m'), 1},
298 { MS_MAKE_TAG('b','l','w','m'), 1},
301 static OPENTYPE_FEATURE_RECORD myanmar_features[] =
303 { MS_MAKE_TAG('l','i','g','a'), 1},
304 { MS_MAKE_TAG('c','l','i','g'), 1},
307 static const char* required_bengali_features[] =
324 static const char* required_gurmukhi_features[] =
343 static const char* required_oriya_features[] =
360 static const char* required_tamil_features[] =
376 static const char* required_telugu_features[] =
394 static OPENTYPE_FEATURE_RECORD khmer_features[] =
396 { MS_MAKE_TAG('p','r','e','s'), 1},
397 { MS_MAKE_TAG('b','l','w','s'), 1},
398 { MS_MAKE_TAG('a','b','v','s'), 1},
399 { MS_MAKE_TAG('p','s','t','s'), 1},
400 { MS_MAKE_TAG('c','l','i','g'), 1},
403 static const char* required_khmer_features[] =
417 static OPENTYPE_FEATURE_RECORD khmer_gpos_features[] =
419 { MS_MAKE_TAG('d','i','s','t'), 1},
420 { MS_MAKE_TAG('b','l','w','m'), 1},
421 { MS_MAKE_TAG('a','b','v','m'), 1},
422 { MS_MAKE_TAG('m','k','m','k'), 1},
425 static OPENTYPE_FEATURE_RECORD ethiopic_features[] =
427 { MS_MAKE_TAG('c','c','m','p'), 1},
428 { MS_MAKE_TAG('l','o','c','l'), 1},
429 { MS_MAKE_TAG('c','a','l','t'), 1},
430 { MS_MAKE_TAG('l','i','g','a'), 1},
433 static OPENTYPE_FEATURE_RECORD mongolian_features[] =
435 { MS_MAKE_TAG('c','c','m','p'), 1},
436 { MS_MAKE_TAG('l','o','c','l'), 1},
437 { MS_MAKE_TAG('c','a','l','t'), 1},
438 { MS_MAKE_TAG('r','l','i','g'), 1},
441 typedef struct ScriptShapeDataTag {
442 TEXTRANGE_PROPERTIES defaultTextRange;
443 TEXTRANGE_PROPERTIES defaultGPOSTextRange;
444 const char** requiredFeatures;
445 OPENTYPE_TAG newOtTag;
446 ContextualShapingProc contextProc;
447 ShapeCharGlyphPropProc charGlyphPropProc;
450 /* in order of scripts */
451 static const ScriptShapeData ShapingData[] =
453 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
454 {{ latin_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
455 {{ latin_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
456 {{ latin_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
457 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
458 {{ latin_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
459 {{ arabic_features, 6}, {arabic_gpos_features, 4}, required_arabic_features, 0, ContextualShape_Arabic, ShapeCharGlyphProp_Arabic},
460 {{ arabic_features, 6}, {arabic_gpos_features, 4}, required_arabic_features, 0, ContextualShape_Arabic, ShapeCharGlyphProp_Arabic},
461 {{ hebrew_features, 2}, {hebrew_gpos_features, 2}, NULL, 0, ContextualShape_Hebrew, ShapeCharGlyphProp_Hebrew},
462 {{ syriac_features, 4}, {syriac_gpos_features, 3}, required_syriac_features, 0, ContextualShape_Syriac, ShapeCharGlyphProp_None},
463 {{ arabic_features, 6}, {arabic_gpos_features, 4}, required_arabic_features, 0, ContextualShape_Arabic, ShapeCharGlyphProp_Arabic},
464 {{ NULL, 0}, {NULL, 0}, NULL, 0, ContextualShape_Thaana, ShapeCharGlyphProp_None},
465 {{ standard_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
466 {{ standard_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
467 {{ standard_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
468 {{ standard_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
469 {{ sinhala_features, 3}, {NULL, 0}, NULL, 0, ContextualShape_Sinhala, ShapeCharGlyphProp_Sinhala},
470 {{ tibetan_features, 2}, {tibetan_gpos_features, 2}, NULL, 0, NULL, ShapeCharGlyphProp_Tibet},
471 {{ tibetan_features, 2}, {tibetan_gpos_features, 2}, NULL, 0, NULL, ShapeCharGlyphProp_Tibet},
472 {{ phags_features, 3}, {NULL, 0}, NULL, 0, ContextualShape_Phags_pa, ShapeCharGlyphProp_Thai},
473 {{ thai_features, 1}, {thai_gpos_features, 3}, NULL, 0, ContextualShape_Thai, ShapeCharGlyphProp_Thai},
474 {{ thai_features, 1}, {thai_gpos_features, 3}, NULL, 0, ContextualShape_Thai, NULL},
475 {{ thai_features, 1}, {thai_gpos_features, 3}, required_lao_features, 0, ContextualShape_Lao, ShapeCharGlyphProp_Thai},
476 {{ thai_features, 1}, {thai_gpos_features, 3}, required_lao_features, 0, ContextualShape_Lao, ShapeCharGlyphProp_Thai},
477 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_devanagari_features, MS_MAKE_TAG('d','e','v','2'), ContextualShape_Devanagari, ShapeCharGlyphProp_Devanagari},
478 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_devanagari_features, MS_MAKE_TAG('d','e','v','2'), ContextualShape_Devanagari, NULL},
479 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_bengali_features, MS_MAKE_TAG('b','n','g','2'), ContextualShape_Bengali, ShapeCharGlyphProp_Bengali},
480 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_bengali_features, MS_MAKE_TAG('b','n','g','2'), ContextualShape_Bengali, NULL},
481 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_bengali_features, MS_MAKE_TAG('b','n','g','2'), ContextualShape_Bengali, ShapeCharGlyphProp_Bengali},
482 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_gurmukhi_features, MS_MAKE_TAG('g','u','r','2'), ContextualShape_Gurmukhi, ShapeCharGlyphProp_Gurmukhi},
483 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_gurmukhi_features, MS_MAKE_TAG('g','u','r','2'), ContextualShape_Gurmukhi, NULL},
484 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_devanagari_features, MS_MAKE_TAG('g','j','r','2'), ContextualShape_Gujarati, ShapeCharGlyphProp_Gujarati},
485 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_devanagari_features, MS_MAKE_TAG('g','j','r','2'), ContextualShape_Gujarati, NULL},
486 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_devanagari_features, MS_MAKE_TAG('g','j','r','2'), ContextualShape_Gujarati, ShapeCharGlyphProp_Gujarati},
487 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_oriya_features, MS_MAKE_TAG('o','r','y','2'), ContextualShape_Oriya, ShapeCharGlyphProp_Oriya},
488 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_oriya_features, MS_MAKE_TAG('o','r','y','2'), ContextualShape_Oriya, NULL},
489 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_tamil_features, MS_MAKE_TAG('t','a','m','2'), ContextualShape_Tamil, ShapeCharGlyphProp_Tamil},
490 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_tamil_features, MS_MAKE_TAG('t','a','m','2'), ContextualShape_Tamil, NULL},
491 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_telugu_features, MS_MAKE_TAG('t','e','l','2'), ContextualShape_Telugu, ShapeCharGlyphProp_Telugu},
492 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_telugu_features, MS_MAKE_TAG('t','e','l','2'), ContextualShape_Telugu, NULL},
493 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_telugu_features, MS_MAKE_TAG('k','n','d','2'), ContextualShape_Kannada, ShapeCharGlyphProp_Kannada},
494 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_telugu_features, MS_MAKE_TAG('k','n','d','2'), ContextualShape_Kannada, NULL},
495 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_telugu_features, MS_MAKE_TAG('m','l','m','2'), ContextualShape_Malayalam, ShapeCharGlyphProp_Malayalam},
496 {{ devanagari_features, 6}, {devanagari_gpos_features, 4}, required_telugu_features, MS_MAKE_TAG('m','l','m','2'), ContextualShape_Malayalam, NULL},
497 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
498 {{ latin_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
499 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
500 {{ myanmar_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
501 {{ myanmar_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
502 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
503 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
504 {{ standard_features, 2}, {NULL, 0}, NULL, 0, NULL, NULL},
505 {{ khmer_features, 5}, {khmer_gpos_features, 4}, required_khmer_features, 0, ContextualShape_Khmer, ShapeCharGlyphProp_Khmer},
506 {{ khmer_features, 5}, {khmer_gpos_features, 4}, required_khmer_features, 0, ContextualShape_Khmer, ShapeCharGlyphProp_Khmer},
507 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
508 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
509 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
510 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
511 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
512 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
513 {{ ethiopic_features, 4}, {NULL, 0}, NULL, 0, NULL, NULL},
514 {{ ethiopic_features, 4}, {NULL, 0}, NULL, 0, NULL, NULL},
515 {{ mongolian_features, 4}, {NULL, 0}, NULL, 0, ContextualShape_Mongolian, NULL},
516 {{ mongolian_features, 4}, {NULL, 0}, NULL, 0, ContextualShape_Mongolian, NULL},
517 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
518 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
519 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
520 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
521 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
522 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
523 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
524 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
525 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
526 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
527 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
528 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
529 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
530 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
531 {{ NULL, 0}, {NULL, 0}, NULL, 0, NULL, NULL},
532 {{ hebrew_features, 2}, {hebrew_gpos_features, 2}, NULL, 0, ContextualShape_Hebrew, NULL},
533 {{ latin_features, 2}, {latin_gpos_features, 3}, NULL, 0, NULL, NULL},
534 {{ thai_features, 1}, {thai_gpos_features, 3}, NULL, 0, ContextualShape_Thai, ShapeCharGlyphProp_Thai},
537 extern scriptData scriptInformation[];
539 static INT GSUB_apply_feature_all_lookups(LPCVOID header, LoadedFeature *feature, WORD *glyphs, INT glyph_index, INT write_dir, INT *glyph_count)
542 int out_index = GSUB_E_NOGLYPH;
544 TRACE("%i lookups\n", feature->lookup_count);
545 for (i = 0; i < feature->lookup_count; i++)
547 out_index = OpenType_apply_GSUB_lookup(header, feature->lookups[i], glyphs, glyph_index, write_dir, glyph_count);
548 if (out_index != GSUB_E_NOGLYPH)
551 if (out_index == GSUB_E_NOGLYPH)
552 TRACE("lookups found no glyphs\n");
556 out2 = GSUB_apply_feature_all_lookups(header, feature, glyphs, glyph_index, write_dir, glyph_count);
557 if (out2!=GSUB_E_NOGLYPH)
563 static OPENTYPE_TAG get_opentype_script(HDC hdc, SCRIPT_ANALYSIS *psa, ScriptCache *psc, BOOL tryNew)
567 if (psc->userScript != 0)
569 if (tryNew && ShapingData[psa->eScript].newOtTag != 0 && psc->userScript == scriptInformation[psa->eScript].scriptTag)
570 return ShapingData[psa->eScript].newOtTag;
572 return psc->userScript;
575 if (tryNew && ShapingData[psa->eScript].newOtTag != 0)
576 return ShapingData[psa->eScript].newOtTag;
578 if (scriptInformation[psa->eScript].scriptTag)
579 return scriptInformation[psa->eScript].scriptTag;
582 * fall back to the font charset
584 charset = GetTextCharsetInfo(hdc, NULL, 0x0);
588 case BALTIC_CHARSET: return MS_MAKE_TAG('l','a','t','n');
589 case CHINESEBIG5_CHARSET: return MS_MAKE_TAG('h','a','n','i');
590 case EASTEUROPE_CHARSET: return MS_MAKE_TAG('l','a','t','n'); /* ?? */
591 case GB2312_CHARSET: return MS_MAKE_TAG('h','a','n','i');
592 case GREEK_CHARSET: return MS_MAKE_TAG('g','r','e','k');
593 case HANGUL_CHARSET: return MS_MAKE_TAG('h','a','n','g');
594 case RUSSIAN_CHARSET: return MS_MAKE_TAG('c','y','r','l');
595 case SHIFTJIS_CHARSET: return MS_MAKE_TAG('k','a','n','a');
596 case TURKISH_CHARSET: return MS_MAKE_TAG('l','a','t','n'); /* ?? */
597 case VIETNAMESE_CHARSET: return MS_MAKE_TAG('l','a','t','n');
598 case JOHAB_CHARSET: return MS_MAKE_TAG('l','a','t','n'); /* ?? */
599 case ARABIC_CHARSET: return MS_MAKE_TAG('a','r','a','b');
600 case HEBREW_CHARSET: return MS_MAKE_TAG('h','e','b','r');
601 case THAI_CHARSET: return MS_MAKE_TAG('t','h','a','i');
602 default: return MS_MAKE_TAG('l','a','t','n');
606 static LoadedFeature* load_OT_feature(HDC hdc, SCRIPT_ANALYSIS *psa, ScriptCache *psc, char tableType, const char* feat)
608 LoadedFeature *feature = NULL;
610 if (psc->GSUB_Table || psc->GPOS_Table)
614 OPENTYPE_TAG language;
620 script = get_opentype_script(hdc,psa,psc,(attempt==2));
621 if (psc->userLang != 0)
622 language = psc->userLang;
624 language = MS_MAKE_TAG('d','f','l','t');
627 OpenType_GetFontFeatureTags(psc, script, language, FALSE, MS_MAKE_TAG(feat[0],feat[1],feat[2],feat[3]), tableType, 1, &tags, &cTags, &feature);
629 } while(attempt && !feature);
631 /* try in the default (latin) table */
633 OpenType_GetFontFeatureTags(psc, MS_MAKE_TAG('l','a','t','n'), MS_MAKE_TAG('d','f','l','t'), FALSE, MS_MAKE_TAG(feat[0],feat[1],feat[2],feat[3]), tableType, 1, &tags, &cTags, &feature);
636 TRACE("Feature %s located at %p\n",debugstr_an(feat,4),feature);
640 static INT apply_GSUB_feature_to_glyph(HDC hdc, SCRIPT_ANALYSIS *psa, ScriptCache* psc, WORD *glyphs, INT index, INT write_dir, INT* glyph_count, const char* feat)
642 LoadedFeature *feature;
644 feature = load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, feat);
646 return GSUB_E_NOFEATURE;
648 TRACE("applying feature %s\n",feat);
649 return GSUB_apply_feature_all_lookups(psc->GSUB_Table, feature, glyphs, index, write_dir, glyph_count);
652 static VOID *load_gsub_table(HDC hdc)
654 VOID* GSUB_Table = NULL;
655 int length = GetFontData(hdc, MS_MAKE_TAG('G', 'S', 'U', 'B'), 0, NULL, 0);
656 if (length != GDI_ERROR)
658 GSUB_Table = HeapAlloc(GetProcessHeap(),0,length);
659 GetFontData(hdc, MS_MAKE_TAG('G', 'S', 'U', 'B'), 0, GSUB_Table, length);
660 TRACE("Loaded GSUB table of %i bytes\n",length);
665 static VOID *load_gpos_table(HDC hdc)
667 VOID* GPOS_Table = NULL;
668 int length = GetFontData(hdc, MS_MAKE_TAG('G', 'P', 'O', 'S'), 0, NULL, 0);
669 if (length != GDI_ERROR)
671 GPOS_Table = HeapAlloc(GetProcessHeap(),0,length);
672 GetFontData(hdc, MS_MAKE_TAG('G', 'P', 'O', 'S'), 0, GPOS_Table, length);
673 TRACE("Loaded GPOS table of %i bytes\n",length);
678 static VOID load_ot_tables(HDC hdc, ScriptCache *psc)
680 if (!psc->GSUB_Table)
681 psc->GSUB_Table = load_gsub_table(hdc);
682 if (!psc->GPOS_Table)
683 psc->GPOS_Table = load_gpos_table(hdc);
686 INT SHAPE_does_GSUB_feature_apply_to_chars(HDC hdc, SCRIPT_ANALYSIS *psa, ScriptCache* psc, const WCHAR *chars, INT write_dir, INT count, const char* feature)
689 INT glyph_count = count;
692 glyphs = HeapAlloc(GetProcessHeap(),0,sizeof(WORD)*(count*2));
693 GetGlyphIndicesW(hdc, chars, count, glyphs, 0);
694 rc = apply_GSUB_feature_to_glyph(hdc, psa, psc, glyphs, 0, write_dir, &glyph_count, feature);
695 if (rc > GSUB_E_NOGLYPH)
696 rc = count - glyph_count;
700 HeapFree(GetProcessHeap(),0,glyphs);
704 static void UpdateClustersFromGlyphProp(const int cGlyphs, const int cChars, WORD* pwLogClust, SCRIPT_GLYPHPROP *pGlyphProp)
708 for (i = 0; i < cGlyphs; i++)
710 if (!pGlyphProp[i].sva.fClusterStart)
713 for (j = 0; j < cChars; j++)
715 if (pwLogClust[j] == i)
718 while (k >= 0 && k <cChars && !pGlyphProp[pwLogClust[k]].sva.fClusterStart)
720 if (k >= 0 && k <cChars && pGlyphProp[pwLogClust[k]].sva.fClusterStart)
721 pwLogClust[j] = pwLogClust[k];
728 static void UpdateClusters(int nextIndex, int changeCount, int write_dir, int chars, WORD* pwLogClust )
730 if (changeCount == 0)
735 int target_glyph = nextIndex - write_dir;
737 int target_index = -1;
738 int replacing_glyph = -1;
740 int top_logclust = 0;
745 target_glyph = nextIndex - changeCount;
747 target_glyph = nextIndex + (changeCount + 1);
750 seeking_glyph = target_glyph;
751 for (i = 0; i < chars; i++)
752 if (pwLogClust[i] > top_logclust)
753 top_logclust = pwLogClust[i];
757 for (i = 0; i < chars; i++)
759 if (pwLogClust[i] == seeking_glyph)
766 for (i = chars - 1; i >= 0; i--)
768 if (pwLogClust[i] == seeking_glyph)
774 if (target_index == -1)
777 while (target_index == -1 && seeking_glyph <= top_logclust);
779 if (target_index == -1)
781 ERR("Unable to find target glyph\n");
788 for(i = target_index; i < chars && i >= 0; i+=write_dir)
790 if (pwLogClust[i] == target_glyph)
792 if(pwLogClust[i] == replacing_glyph)
793 pwLogClust[i] = target_glyph;
797 if (changed >= changeCount)
799 replacing_glyph = pwLogClust[i];
800 pwLogClust[i] = target_glyph;
807 /* renumber trailing indexes*/
808 for(i = target_index; i < chars && i >= 0; i+=write_dir)
810 if (pwLogClust[i] != target_glyph)
811 pwLogClust[i] += changeCount;
816 for(i = target_index; i < chars && i >= 0; i+=write_dir)
817 pwLogClust[i] += changeCount;
822 static int apply_GSUB_feature(HDC hdc, SCRIPT_ANALYSIS *psa, ScriptCache* psc, WORD *pwOutGlyphs, int write_dir, INT* pcGlyphs, INT cChars, const char* feat, WORD *pwLogClust )
826 LoadedFeature *feature;
829 feature = load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, feat);
831 return GSUB_E_NOFEATURE;
833 TRACE("applying feature %s: %i lookups\n",debugstr_an(feat,4),feature->lookup_count);
834 for (lookup_index = 0; lookup_index < feature->lookup_count; lookup_index++)
842 TRACE("applying lookup (%i/%i)\n",lookup_index,feature->lookup_count);
843 while(i < *pcGlyphs && i >= 0)
846 INT prevCount = *pcGlyphs;
848 nextIndex = OpenType_apply_GSUB_lookup(psc->GSUB_Table, feature->lookups[lookup_index], pwOutGlyphs, i, write_dir, pcGlyphs);
849 if (*pcGlyphs != prevCount)
851 UpdateClusters(nextIndex, *pcGlyphs - prevCount, write_dir, cChars, pwLogClust);
860 return GSUB_E_NOFEATURE;
863 static VOID GPOS_apply_feature(LPOUTLINETEXTMETRICW lpotm, LPLOGFONTW lplogfont, INT* piAdvance, LPCVOID header, LoadedFeature *feature, const WORD *glyphs, INT write_dir, INT glyph_count, GOFFSET *pGoffset)
867 TRACE("%i lookups\n", feature->lookup_count);
868 for (i = 0; i < feature->lookup_count; i++)
871 for (j = 0; j < glyph_count; )
872 j = OpenType_apply_GPOS_lookup(lpotm, lplogfont, piAdvance, header, feature->lookups[i], glyphs, j, write_dir, glyph_count, pGoffset);
876 static inline BOOL get_GSUB_Indic2(SCRIPT_ANALYSIS *psa, ScriptCache *psc)
882 hr = OpenType_GetFontScriptTags(psc, ShapingData[psa->eScript].newOtTag, 1, &tag, &count);
884 return(SUCCEEDED(hr));
887 static void insert_glyph(WORD *pwGlyphs, INT *pcGlyphs, INT cChars, INT write_dir, WORD glyph, INT index, WORD *pwLogClust)
890 for (i = *pcGlyphs; i>=index; i--)
891 pwGlyphs[i+1] = pwGlyphs[i];
892 pwGlyphs[index] = glyph;
893 *pcGlyphs = *pcGlyphs+1;
895 UpdateClusters(index-3, 1, write_dir, cChars, pwLogClust);
897 UpdateClusters(index, 1, write_dir, cChars, pwLogClust);
900 static void mark_invalid_combinations(HDC hdc, const WCHAR* pwcChars, INT cChars, WORD *pwGlyphs, INT *pcGlyphs, INT write_dir, WORD *pwLogClust, combining_lexical_function lex)
904 WCHAR invalid = 0x25cc;
907 context_type = HeapAlloc(GetProcessHeap(),0,cChars);
909 /* Mark invalid combinations */
910 for (i = 0; i < cChars; i++)
911 context_type[i] = lex(pwcChars[i]);
913 GetGlyphIndicesW(hdc, &invalid, 1, &invalid_glyph, 0);
914 for (i = 1, g=1; i < cChars; i++, g++)
916 if (context_type[i] != 0 && context_type[i+write_dir]==context_type[i])
918 insert_glyph(pwGlyphs, pcGlyphs, cChars, write_dir, invalid_glyph, g, pwLogClust);
923 HeapFree(GetProcessHeap(),0,context_type);
926 static WCHAR neighbour_char(int i, int delta, const WCHAR* chars, INT cchLen)
930 if ( i+ delta >= cchLen)
938 static CHAR neighbour_joining_type(int i, int delta, const CHAR* context_type, INT cchLen, SCRIPT_ANALYSIS *psa)
942 if (psa->fLinkBefore)
947 if ( i+ delta >= cchLen)
957 if (context_type[i] == jtT)
958 return neighbour_joining_type(i,delta,context_type,cchLen,psa);
960 return context_type[i];
963 static inline BOOL right_join_causing(CHAR joining_type)
965 return (joining_type == jtL || joining_type == jtD || joining_type == jtC);
968 static inline BOOL left_join_causing(CHAR joining_type)
970 return (joining_type == jtR || joining_type == jtD || joining_type == jtC);
973 static inline BOOL word_break_causing(WCHAR chr)
975 /* we are working within a string of characters already guareented to
976 be within one script, Syriac, so we do not worry about any character
977 other than the space character outside of that range */
978 return (chr == 0 || chr == 0x20 );
981 static int combining_lexical_Arabic(WCHAR c)
983 enum {Arab_Norm = 0, Arab_DIAC1, Arab_DIAC2, Arab_DIAC3, Arab_DIAC4, Arab_DIAC5, Arab_DIAC6, Arab_DIAC7, Arab_DIAC8};
994 case 0x06E1: return Arab_DIAC1;
997 case 0x0656: return Arab_DIAC2;
998 case 0x0651: return Arab_DIAC3;
1014 case 0x06EC: return Arab_DIAC4;
1017 case 0x06ED: return Arab_DIAC5;
1018 case 0x0670: return Arab_DIAC6;
1019 case 0x0653: return Arab_DIAC7;
1021 case 0x0654: return Arab_DIAC8;
1022 default: return Arab_Norm;
1027 * ContextualShape_Arabic
1029 static void ContextualShape_Arabic(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1036 if (*pcGlyphs != cChars)
1038 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1042 if (!psa->fLogicalOrder && psa->fRTL)
1053 load_ot_tables(hdc, psc);
1055 context_type = HeapAlloc(GetProcessHeap(),0,cChars);
1056 context_shape = HeapAlloc(GetProcessHeap(),0,sizeof(INT) * cChars);
1058 for (i = 0; i < cChars; i++)
1059 context_type[i] = get_table_entry( wine_shaping_table, pwcChars[i] );
1061 for (i = 0; i < cChars; i++)
1063 if (context_type[i] == jtR && right_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)))
1064 context_shape[i] = Xr;
1065 else if (context_type[i] == jtL && left_join_causing(neighbour_joining_type(i,dirL,context_type,cChars,psa)))
1066 context_shape[i] = Xl;
1067 else if (context_type[i] == jtD && left_join_causing(neighbour_joining_type(i,dirL,context_type,cChars,psa)) && right_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)))
1068 context_shape[i] = Xm;
1069 else if (context_type[i] == jtD && right_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)))
1070 context_shape[i] = Xr;
1071 else if (context_type[i] == jtD && left_join_causing(neighbour_joining_type(i,dirL,context_type,cChars,psa)))
1072 context_shape[i] = Xl;
1074 context_shape[i] = Xn;
1077 /* Contextual Shaping */
1079 while(i < *pcGlyphs)
1081 BOOL shaped = FALSE;
1083 if (psc->GSUB_Table)
1086 INT prevCount = *pcGlyphs;
1087 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, i, dirL, pcGlyphs, contextual_features[context_shape[i]]);
1088 if (nextIndex > GSUB_E_NOGLYPH)
1091 UpdateClusters(nextIndex, *pcGlyphs - prevCount, dirL, cChars, pwLogClust);
1093 shaped = (nextIndex > GSUB_E_NOGLYPH);
1098 if (context_shape[i] == Xn)
1100 WORD newGlyph = pwOutGlyphs[i];
1101 if (pwcChars[i] >= FIRST_ARABIC_CHAR && pwcChars[i] <= LAST_ARABIC_CHAR)
1103 /* fall back to presentation form B */
1104 WCHAR context_char = wine_shaping_forms[pwcChars[i] - FIRST_ARABIC_CHAR][context_shape[i]];
1105 if (context_char != pwcChars[i] && GetGlyphIndicesW(hdc, &context_char, 1, &newGlyph, 0) != GDI_ERROR && newGlyph != 0x0000)
1106 pwOutGlyphs[i] = newGlyph;
1113 HeapFree(GetProcessHeap(),0,context_shape);
1114 HeapFree(GetProcessHeap(),0,context_type);
1116 mark_invalid_combinations(hdc, pwcChars, cChars, pwOutGlyphs, pcGlyphs, dirL, pwLogClust, combining_lexical_Arabic);
1119 static int combining_lexical_Hebrew(WCHAR c)
1121 enum {Hebr_Norm=0, Hebr_DIAC, Hebr_CANT1, Hebr_CANT2, Hebr_CANT3, Hebr_CANT4, Hebr_CANT5, Hebr_CANT6, Hebr_CANT7, Hebr_CANT8, Hebr_CANT9, Hebr_CANT10, Hebr_DAGESH, Hebr_DOTABV, Hebr_HOLAM, Hebr_METEG, Hebr_PATAH, Hebr_QAMATS, Hebr_RAFE, Hebr_SHINSIN};
1132 case 0x05BB: return Hebr_DIAC;
1136 case 0x05AE: return Hebr_CANT1;
1139 case 0x05AC: return Hebr_CANT2;
1145 case 0x05AB: return Hebr_CANT3;
1149 case 0x059F: return Hebr_CANT4;
1151 case 0x05A0: return Hebr_CANT5;
1153 case 0x05A5: return Hebr_CANT6;
1156 case 0x05A6: return Hebr_CANT7;
1159 case 0x05AA: return Hebr_CANT8;
1161 case 0x05AD: return Hebr_CANT9;
1162 case 0x05AF: return Hebr_CANT10;
1163 case 0x05BC: return Hebr_DAGESH;
1164 case 0x05C4: return Hebr_DOTABV;
1165 case 0x05B9: return Hebr_HOLAM;
1166 case 0x05BD: return Hebr_METEG;
1167 case 0x05B7: return Hebr_PATAH;
1168 case 0x05B8: return Hebr_QAMATS;
1169 case 0x05BF: return Hebr_RAFE;
1171 case 0x05C2: return Hebr_SHINSIN;
1172 default: return Hebr_Norm;
1176 static void ContextualShape_Hebrew(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1180 if (*pcGlyphs != cChars)
1182 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1186 if (!psa->fLogicalOrder && psa->fRTL)
1191 mark_invalid_combinations(hdc, pwcChars, cChars, pwOutGlyphs, pcGlyphs, dirL, pwLogClust, combining_lexical_Hebrew);
1195 * ContextualShape_Syriac
1198 static int combining_lexical_Syriac(WCHAR c)
1200 enum {Syriac_Norm=0, Syriac_DIAC1, Syriac_DIAC2, Syriac_DIAC3, Syriac_DIAC4, Syriac_DIAC5, Syriac_DIAC6, Syriac_DIAC7, Syriac_DIAC8, Syriac_DIAC9, Syriac_DIAC10, Syriac_DIAC11, Syriac_DIAC12, Syriac_DIAC13, Syriac_DIAC14, Syriac_DIAC15, Syriac_DIAC16, Syriac_DIAC17};
1208 case 0x73D: return Syriac_DIAC1;
1213 case 0x73E: return Syriac_DIAC2;
1216 case 0x74A: return Syriac_DIAC3;
1219 case 0x73F: return Syriac_DIAC4;
1222 case 0x73C: return Syriac_DIAC5;
1224 case 0x30A: return Syriac_DIAC6;
1226 case 0x325: return Syriac_DIAC7;
1228 case 0x303: return Syriac_DIAC8;
1233 case 0x331: return Syriac_DIAC9;
1234 case 0x308: return Syriac_DIAC10;
1235 case 0x304: return Syriac_DIAC11;
1236 case 0x307: return Syriac_DIAC12;
1237 case 0x323: return Syriac_DIAC13;
1238 case 0x743: return Syriac_DIAC14;
1239 case 0x744: return Syriac_DIAC15;
1240 case 0x745: return Syriac_DIAC16;
1241 case 0x746: return Syriac_DIAC17;
1242 default: return Syriac_Norm;
1247 #define DALATH 0x715
1250 static void ContextualShape_Syriac(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1257 if (*pcGlyphs != cChars)
1259 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1263 if (!psa->fLogicalOrder && psa->fRTL)
1274 load_ot_tables(hdc, psc);
1276 if (!psc->GSUB_Table)
1279 context_type = HeapAlloc(GetProcessHeap(),0,cChars);
1280 context_shape = HeapAlloc(GetProcessHeap(),0,sizeof(INT) * cChars);
1282 for (i = 0; i < cChars; i++)
1283 context_type[i] = get_table_entry( wine_shaping_table, pwcChars[i] );
1285 for (i = 0; i < cChars; i++)
1287 if (pwcChars[i] == ALAPH)
1289 WCHAR rchar = neighbour_char(i,dirR,pwcChars,cChars);
1291 if (left_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)) && word_break_causing(neighbour_char(i,dirL,pwcChars,cChars)))
1292 context_shape[i] = Afj;
1293 else if ( rchar != DALATH && rchar != RISH &&
1294 !left_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)) &&
1295 word_break_causing(neighbour_char(i,dirL,pwcChars,cChars)))
1296 context_shape[i] = Afn;
1297 else if ( (rchar == DALATH || rchar == RISH) && word_break_causing(neighbour_char(i,dirL,pwcChars,cChars)))
1298 context_shape[i] = Afx;
1300 context_shape[i] = Xn;
1302 else if (context_type[i] == jtR &&
1303 right_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)))
1304 context_shape[i] = Xr;
1305 else if (context_type[i] == jtL && left_join_causing(neighbour_joining_type(i,dirL,context_type,cChars,psa)))
1306 context_shape[i] = Xl;
1307 else if (context_type[i] == jtD && left_join_causing(neighbour_joining_type(i,dirL,context_type,cChars,psa)) && right_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)))
1308 context_shape[i] = Xm;
1309 else if (context_type[i] == jtD && right_join_causing(neighbour_joining_type(i,dirR,context_type,cChars,psa)))
1310 context_shape[i] = Xr;
1311 else if (context_type[i] == jtD && left_join_causing(neighbour_joining_type(i,dirL,context_type,cChars,psa)))
1312 context_shape[i] = Xl;
1314 context_shape[i] = Xn;
1317 /* Contextual Shaping */
1319 while(i < *pcGlyphs)
1322 INT prevCount = *pcGlyphs;
1323 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, i, dirL, pcGlyphs, contextual_features[context_shape[i]]);
1324 if (nextIndex > GSUB_E_NOGLYPH)
1326 UpdateClusters(nextIndex, *pcGlyphs - prevCount, dirL, cChars, pwLogClust);
1333 HeapFree(GetProcessHeap(),0,context_shape);
1334 HeapFree(GetProcessHeap(),0,context_type);
1336 mark_invalid_combinations(hdc, pwcChars, cChars, pwOutGlyphs, pcGlyphs, dirL, pwLogClust, combining_lexical_Syriac);
1339 static int combining_lexical_Thaana(WCHAR c)
1341 enum {Thaana_Norm=0, Thaana_FILI};
1354 case 0x7AF: return Thaana_FILI;
1355 default: return Thaana_Norm;
1359 static void ContextualShape_Thaana(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1363 if (*pcGlyphs != cChars)
1365 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1369 if (!psa->fLogicalOrder && psa->fRTL)
1374 mark_invalid_combinations(hdc, pwcChars, cChars, pwOutGlyphs, pcGlyphs, dirL, pwLogClust, combining_lexical_Thaana);
1378 * ContextualShape_Phags_pa
1381 #define phags_pa_CANDRABINDU 0xA873
1382 #define phags_pa_START 0xA840
1383 #define phags_pa_END 0xA87F
1385 static void ContextualShape_Phags_pa(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1391 if (*pcGlyphs != cChars)
1393 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1397 if (!psa->fLogicalOrder && psa->fRTL)
1408 load_ot_tables(hdc, psc);
1410 if (!psc->GSUB_Table)
1413 context_shape = HeapAlloc(GetProcessHeap(),0,sizeof(INT) * cChars);
1415 for (i = 0; i < cChars; i++)
1417 if (pwcChars[i] >= phags_pa_START && pwcChars[i] <= phags_pa_END)
1419 WCHAR rchar = neighbour_char(i,dirR,pwcChars,cChars);
1420 WCHAR lchar = neighbour_char(i,dirL,pwcChars,cChars);
1421 BOOL jrchar = (rchar != phags_pa_CANDRABINDU && rchar >= phags_pa_START && rchar <= phags_pa_END);
1422 BOOL jlchar = (lchar != phags_pa_CANDRABINDU && lchar >= phags_pa_START && lchar <= phags_pa_END);
1424 if (jrchar && jlchar)
1425 context_shape[i] = Xm;
1427 context_shape[i] = Xr;
1429 context_shape[i] = Xl;
1431 context_shape[i] = Xn;
1434 context_shape[i] = -1;
1437 /* Contextual Shaping */
1439 while(i < *pcGlyphs)
1441 if (context_shape[i] >= 0)
1444 INT prevCount = *pcGlyphs;
1445 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, i, dirL, pcGlyphs, contextual_features[context_shape[i]]);
1446 if (nextIndex > GSUB_E_NOGLYPH)
1448 UpdateClusters(nextIndex, *pcGlyphs - prevCount, dirL, cChars, pwLogClust);
1458 HeapFree(GetProcessHeap(),0,context_shape);
1461 static int combining_lexical_Thai(WCHAR c)
1463 enum {Thai_Norm=0, Thai_ABOVE1, Thai_ABOVE2, Thai_ABOVE3, Thai_ABOVE4, Thai_BELOW1, Thai_BELOW2, Thai_AM};
1471 case 0xE37: return Thai_ABOVE1;
1473 case 0xE4D: return Thai_ABOVE2;
1477 case 0xE4B: return Thai_ABOVE3;
1479 case 0xE4E: return Thai_ABOVE4;
1481 case 0xE39: return Thai_BELOW1;
1482 case 0xE3A: return Thai_BELOW2;
1483 case 0xE33: return Thai_AM;
1484 default: return Thai_Norm;
1488 static void ContextualShape_Thai(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1492 if (*pcGlyphs != cChars)
1494 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1498 if (!psa->fLogicalOrder && psa->fRTL)
1503 mark_invalid_combinations(hdc, pwcChars, cChars, pwOutGlyphs, pcGlyphs, dirL, pwLogClust, combining_lexical_Thai);
1506 static int combining_lexical_Lao(WCHAR c)
1508 enum {Lao_Norm=0, Lao_ABOVE1, Lao_ABOVE2, Lao_BELOW1, Lao_BELOW2, Lao_AM};
1518 case 0xECD: return Lao_ABOVE1;
1523 case 0xECC: return Lao_ABOVE2;
1524 case 0xEBC: return Lao_BELOW1;
1526 case 0xEB9: return Lao_BELOW2;
1527 case 0xEB3: return Lao_AM;
1528 default: return Lao_Norm;
1532 static void ContextualShape_Lao(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
1536 if (*pcGlyphs != cChars)
1538 ERR("Number of Glyphs and Chars need to match at the beginning\n");
1542 if (!psa->fLogicalOrder && psa->fRTL)
1547 mark_invalid_combinations(hdc, pwcChars, cChars, pwOutGlyphs, pcGlyphs, dirL, pwLogClust, combining_lexical_Lao);
1550 static void ReplaceInsertChars(HDC hdc, INT cWalk, INT* pcChars, WCHAR *pwOutChars, const WCHAR *replacements)
1555 pwOutChars[cWalk] = replacements[0];
1559 for (i = 1; replacements[i] != 0x0000 && i < 3; i++)
1562 for (j = *pcChars; j > cWalk; j--)
1563 pwOutChars[j] = pwOutChars[j-1];
1564 *pcChars= *pcChars+1;
1565 pwOutChars[cWalk] = replacements[i];
1570 static void DecomposeVowels(HDC hdc, WCHAR *pwOutChars, INT *pcChars, const VowelComponents vowels[], WORD* pwLogClust, INT cChars)
1575 for (cWalk = 0; cWalk < *pcChars; cWalk++)
1577 for (i = 0; vowels[i].base != 0x0; i++)
1579 if (pwOutChars[cWalk] == vowels[i].base)
1582 ReplaceInsertChars(hdc, cWalk, pcChars, pwOutChars, vowels[i].parts);
1583 if (vowels[i].parts[1]) { cWalk++; o++; }
1584 if (vowels[i].parts[2]) { cWalk++; o++; }
1585 UpdateClusters(cWalk, o, 1, cChars, pwLogClust);
1592 static void ComposeConsonants(HDC hdc, WCHAR *pwOutChars, INT *pcChars, const ConsonantComponents consonants[], WORD* pwLogClust)
1598 for (cWalk = 0; cWalk < *pcChars; cWalk++)
1600 for (i = 0; consonants[i].output!= 0x0; i++)
1603 for (j = 0; j + cWalk < *pcChars && consonants[i].parts[j]!=0x0; j++)
1604 if (pwOutChars[cWalk+j] != consonants[i].parts[j])
1607 if (consonants[i].parts[j]==0x0) /* matched all */
1611 pwOutChars[cWalk] = consonants[i].output;
1612 for(k = cWalk+1; k < *pcChars - j; k++)
1613 pwOutChars[k] = pwOutChars[k+j];
1614 *pcChars = *pcChars - j;
1615 for (k = j ; k > 0; k--)
1616 pwLogClust[cWalk + k + offset] = pwLogClust[cWalk + offset];
1618 for (k = cWalk + j + offset; k < *pcChars + offset; k++)
1627 static void Reorder_Ra_follows_base(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1632 WORD Ra = pwChar[s->start];
1633 WORD H = pwChar[s->start+1];
1635 TRACE("Doing reorder of Ra to %i\n",s->base);
1636 for (j = s->start; j < s->base-1; j++)
1637 pwChar[j] = pwChar[j+2];
1638 pwChar[s->base-1] = Ra;
1639 pwChar[s->base] = H;
1641 s->ralf = s->base-1;
1646 static void Reorder_Ra_follows_matra(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1651 int stop = (s->blwf >=0)? s->blwf+1 : s->base;
1652 WORD Ra = pwChar[s->start];
1653 WORD H = pwChar[s->start+1];
1654 for (loc = s->end; loc > stop; loc--)
1655 if (lexical(pwChar[loc]) == lex_Matra_post || lexical(pwChar[loc]) == lex_Matra_below)
1658 TRACE("Doing reorder of Ra to %i\n",loc);
1659 for (j = s->start; j < loc-1; j++)
1660 pwChar[j] = pwChar[j+2];
1666 if (s->blwf >= 0) s->blwf -= 2;
1667 if (s->pref >= 0) s->pref -= 2;
1671 static void Reorder_Ra_follows_syllable(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1676 WORD Ra = pwChar[s->start];
1677 WORD H = pwChar[s->start+1];
1679 TRACE("Doing reorder of Ra to %i\n",s->end-1);
1680 for (j = s->start; j < s->end-1; j++)
1681 pwChar[j] = pwChar[j+2];
1682 pwChar[s->end-1] = Ra;
1687 if (s->blwf >= 0) s->blwf -= 2;
1688 if (s->pref >= 0) s->pref -= 2;
1692 static void Reorder_Matra_precede_base(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1696 /* reorder Matras */
1697 if (s->end > s->base)
1699 for (i = 1; i <= s->end-s->base; i++)
1701 if (lexical(pwChar[s->base+i]) == lex_Matra_pre)
1704 WCHAR c = pwChar[s->base+i];
1705 TRACE("Doing reorder of %x %x\n",c,pwChar[s->base]);
1706 for (j = s->base+i; j > s->base; j--)
1707 pwChar[j] = pwChar[j-1];
1708 pwChar[s->base] = c;
1710 if (s->ralf >= s->base) s->ralf++;
1711 if (s->blwf >= s->base) s->blwf++;
1712 if (s->pref >= s->base) s->pref++;
1719 static void Reorder_Matra_precede_syllable(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1723 /* reorder Matras */
1724 if (s->end > s->base)
1726 for (i = 1; i <= s->end-s->base; i++)
1728 if (lexical(pwChar[s->base+i]) == lex_Matra_pre)
1731 WCHAR c = pwChar[s->base+i];
1732 TRACE("Doing reorder of %x to %i\n",c,s->start);
1733 for (j = s->base+i; j > s->start; j--)
1734 pwChar[j] = pwChar[j-1];
1735 pwChar[s->start] = c;
1737 if (s->ralf >= 0) s->ralf++;
1738 if (s->blwf >= 0) s->blwf++;
1739 if (s->pref >= 0) s->pref++;
1746 static void SecondReorder_Blwf_follows_matra(LPWSTR pwChar, IndicSyllable *s, WORD *glyphs, IndicSyllable *g, lexical_function lexical)
1748 if (s->blwf >= 0 && g->blwf > g->base)
1752 for (loc = s->end; loc > s->blwf; loc--)
1753 if (lexical(pwChar[loc]) == lex_Matra_below || lexical(pwChar[loc]) == lex_Matra_above || lexical(pwChar[loc]) == lex_Matra_post)
1756 g_offset = (loc - s->blwf) - 1;
1760 WORD blwf = glyphs[g->blwf];
1761 TRACE("Doing reorder of Below-base to %i (glyph offset %i)\n",loc,g_offset);
1762 /* do not care about the pwChar array anymore, just the glyphs */
1763 for (j = 0; j < g_offset; j++)
1764 glyphs[g->blwf + j] = glyphs[g->blwf + j + 1];
1765 glyphs[g->blwf + g_offset] = blwf;
1770 static void SecondReorder_Matra_precede_base(LPWSTR pwChar, IndicSyllable *s, WORD *glyphs, IndicSyllable *g, lexical_function lexical)
1774 /* reorder previously moved Matras to correct position*/
1775 for (i = s->start; i < s->base; i++)
1777 if (lexical(pwChar[i]) == lex_Matra_pre)
1780 int g_start = g->start + i - s->start;
1781 if (g_start < g->base -1 )
1783 WCHAR og = glyphs[g_start];
1784 TRACE("Doing reorder of matra from %i to %i\n",g_start,g->base);
1785 for (j = g_start; j < g->base-1; j++)
1786 glyphs[j] = glyphs[j+1];
1787 glyphs[g->base-1] = og;
1793 static void SecondReorder_Pref_precede_base(LPWSTR pwChar, IndicSyllable *s, WORD *glyphs, IndicSyllable *g, lexical_function lexical)
1795 if (s->pref >= 0 && g->pref > g->base)
1798 WCHAR og = glyphs[g->pref];
1799 TRACE("Doing reorder of pref from %i to %i\n",g->pref,g->base);
1800 for (j = g->pref; j > g->base; j--)
1801 glyphs[j] = glyphs[j-1];
1802 glyphs[g->base] = og;
1806 static void Reorder_Like_Sinhala(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1808 TRACE("Syllable (%i..%i..%i)\n",s->start,s->base,s->end);
1809 if (s->start == s->base && s->base == s->end) return;
1810 if (lexical(pwChar[s->base]) == lex_Vowel) return;
1812 Reorder_Ra_follows_base(pwChar, s, lexical);
1813 Reorder_Matra_precede_base(pwChar, s, lexical);
1816 static void Reorder_Like_Devanagari(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1818 TRACE("Syllable (%i..%i..%i)\n",s->start,s->base,s->end);
1819 if (s->start == s->base && s->base == s->end) return;
1820 if (lexical(pwChar[s->base]) == lex_Vowel) return;
1822 Reorder_Ra_follows_matra(pwChar, s, lexical);
1823 Reorder_Matra_precede_syllable(pwChar, s, lexical);
1826 static void Reorder_Like_Bengali(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1828 TRACE("Syllable (%i..%i..%i)\n",s->start,s->base,s->end);
1829 if (s->start == s->base && s->base == s->end) return;
1830 if (lexical(pwChar[s->base]) == lex_Vowel) return;
1832 Reorder_Ra_follows_base(pwChar, s, lexical);
1833 Reorder_Matra_precede_syllable(pwChar, s, lexical);
1836 static void Reorder_Like_Kannada(LPWSTR pwChar, IndicSyllable *s, lexical_function lexical)
1838 TRACE("Syllable (%i..%i..%i)\n",s->start,s->base,s->end);
1839 if (s->start == s->base && s->base == s->end) return;
1840 if (lexical(pwChar[s->base]) == lex_Vowel) return;
1842 Reorder_Ra_follows_syllable(pwChar, s, lexical);
1843 Reorder_Matra_precede_syllable(pwChar, s, lexical);
1846 static void SecondReorder_Like_Telugu(LPWSTR pwChar, IndicSyllable *s, WORD* pwGlyphs, IndicSyllable *g, lexical_function lexical)
1848 TRACE("Syllable (%i..%i..%i)\n",s->start,s->base,s->end);
1849 TRACE("Glyphs (%i..%i..%i)\n",g->start,g->base,g->end);
1850 if (s->start == s->base && s->base == s->end) return;
1851 if (lexical(pwChar[s->base]) == lex_Vowel) return;
1853 SecondReorder_Blwf_follows_matra(pwChar, s, pwGlyphs, g, lexical);
1856 static void SecondReorder_Like_Tamil(LPWSTR pwChar, IndicSyllable *s, WORD* pwGlyphs, IndicSyllable *g, lexical_function lexical)
1858 TRACE("Syllable (%i..%i..%i)\n",s->start,s->base,s->end);
1859 TRACE("Glyphs (%i..%i..%i)\n",g->start,g->base,g->end);
1860 if (s->start == s->base && s->base == s->end) return;
1861 if (lexical(pwChar[s->base]) == lex_Vowel) return;
1863 SecondReorder_Matra_precede_base(pwChar, s, pwGlyphs, g, lexical);
1864 SecondReorder_Pref_precede_base(pwChar, s, pwGlyphs, g, lexical);
1868 static inline void shift_syllable_glyph_indexs(IndicSyllable *glyph_index, INT index, INT shift)
1873 if (glyph_index->start > index)
1874 glyph_index->start += shift;
1875 if (glyph_index->base > index)
1876 glyph_index->base+= shift;
1877 if (glyph_index->end > index)
1878 glyph_index->end+= shift;
1879 if (glyph_index->ralf > index)
1880 glyph_index->ralf+= shift;
1881 if (glyph_index->blwf > index)
1882 glyph_index->blwf+= shift;
1883 if (glyph_index->pref > index)
1884 glyph_index->pref+= shift;
1887 static void Apply_Indic_BasicForm(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwChars, INT cChars, IndicSyllable *syllable, WORD *pwOutGlyphs, INT* pcGlyphs, WORD *pwLogClust, lexical_function lexical, IndicSyllable *glyph_index, LoadedFeature *feature )
1889 int index = glyph_index->start;
1894 while(index <= glyph_index->end)
1897 INT prevCount = *pcGlyphs;
1898 nextIndex = GSUB_apply_feature_all_lookups(psc->GSUB_Table, feature, pwOutGlyphs, index, 1, pcGlyphs);
1899 if (nextIndex > GSUB_E_NOGLYPH)
1901 UpdateClusters(nextIndex, *pcGlyphs - prevCount, 1, cChars, pwLogClust);
1902 shift_syllable_glyph_indexs(glyph_index,index,*pcGlyphs - prevCount);
1910 static inline INT find_consonant_halant(WCHAR* pwChars, INT index, INT end, lexical_function lexical)
1913 while (i + index < end - 1 && !(is_consonant(lexical(pwChars[index+i])) && (lexical(pwChars[index+i+1]) == lex_Halant || (index + i < end - 2 && lexical(pwChars[index+i+1]) == lex_Nukta && lexical(pwChars[index+i+2] == lex_Halant)))))
1915 if (index + i <= end-1)
1921 static void Apply_Indic_PreBase(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwChars, INT cChars, IndicSyllable *syllable, WORD *pwOutGlyphs, INT* pcGlyphs, WORD *pwLogClust, lexical_function lexical, IndicSyllable *glyph_index, const char* feature)
1923 INT index, nextIndex;
1926 count = syllable->base - syllable->start;
1929 index = find_consonant_halant(&pwChars[syllable->start], 0, count, lexical);
1930 while (index >= 0 && index + g_offset < (glyph_index->base - glyph_index->start))
1932 INT prevCount = *pcGlyphs;
1933 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, index+glyph_index->start+g_offset, 1, pcGlyphs, feature);
1934 if (nextIndex > GSUB_E_NOGLYPH)
1936 UpdateClusters(nextIndex, *pcGlyphs - prevCount, 1, cChars, pwLogClust);
1937 shift_syllable_glyph_indexs(glyph_index, index + glyph_index->start + g_offset, (*pcGlyphs - prevCount));
1938 g_offset += (*pcGlyphs - prevCount);
1942 index = find_consonant_halant(&pwChars[syllable->start], index, count, lexical);
1946 static void Apply_Indic_Rphf(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwChars, INT cChars, IndicSyllable *syllable, WORD *pwOutGlyphs, INT* pcGlyphs, WORD *pwLogClust, lexical_function lexical, IndicSyllable *glyph_index)
1949 INT prevCount = *pcGlyphs;
1951 if (syllable->ralf >= 0)
1953 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, glyph_index->ralf, 1, pcGlyphs, "rphf");
1954 if (nextIndex > GSUB_E_NOGLYPH)
1956 UpdateClusters(nextIndex, *pcGlyphs - prevCount, 1, cChars, pwLogClust);
1957 shift_syllable_glyph_indexs(glyph_index,glyph_index->ralf,*pcGlyphs - prevCount);
1962 static inline INT find_halant_consonant(WCHAR* pwChars, INT index, INT end, lexical_function lexical)
1965 while (index + i < end-1 && !(lexical(pwChars[index+i]) == lex_Halant &&
1966 ((index + i < end-2 && lexical(pwChars[index+i]) == lex_Nukta && is_consonant(lexical(pwChars[index+i+1]))) ||
1967 is_consonant(lexical(pwChars[index+i+1])))))
1969 if (index + i <= end-1)
1975 static void Apply_Indic_PostBase(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwChars, INT cChars, IndicSyllable *syllable, WORD *pwOutGlyphs, INT* pcGlyphs, WORD *pwLogClust, lexical_function lexical, IndicSyllable *glyph_index, BOOL modern, const char* feat)
1977 INT index, nextIndex;
1978 INT count, g_offset=0;
1979 INT ralf = syllable->ralf;
1981 count = syllable->end - syllable->base;
1983 index = find_halant_consonant(&pwChars[syllable->base], 0, count, lexical);
1987 INT prevCount = *pcGlyphs;
1988 if (ralf >=0 && ralf < index)
1996 WORD g = pwOutGlyphs[index+glyph_index->base+g_offset];
1997 pwOutGlyphs[index+glyph_index->base+g_offset] = pwOutGlyphs[index+glyph_index->base+g_offset+1];
1998 pwOutGlyphs[index+glyph_index->base+g_offset+1] = g;
2001 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, index+glyph_index->base+g_offset, 1, pcGlyphs, feat);
2002 if (nextIndex > GSUB_E_NOGLYPH)
2004 UpdateClusters(nextIndex, *pcGlyphs - prevCount, 1, cChars, pwLogClust);
2005 shift_syllable_glyph_indexs(glyph_index,index+glyph_index->start+g_offset, (*pcGlyphs - prevCount));
2006 g_offset += (*pcGlyphs - prevCount);
2010 WORD g = pwOutGlyphs[index+glyph_index->base+g_offset];
2011 pwOutGlyphs[index+glyph_index->base+g_offset] = pwOutGlyphs[index+glyph_index->base+g_offset+1];
2012 pwOutGlyphs[index+glyph_index->base+g_offset+1] = g;
2016 index = find_halant_consonant(&pwChars[syllable->base], index, count, lexical);
2020 static void ShapeIndicSyllables(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwChars, INT cChars, IndicSyllable *syllables, INT syllable_count, WORD *pwOutGlyphs, INT* pcGlyphs, WORD *pwLogClust, lexical_function lexical, second_reorder_function second_reorder, BOOL modern)
2023 int overall_shift = 0;
2024 LoadedFeature *locl = (modern)?load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "locl"):NULL;
2025 LoadedFeature *nukt = load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "nukt");
2026 LoadedFeature *akhn = load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "akhn");
2027 LoadedFeature *rkrf = (modern)?load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "rkrf"):NULL;
2028 LoadedFeature *pstf = load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "pstf");
2029 LoadedFeature *vatu = (!rkrf)?load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "vatu"):NULL;
2030 LoadedFeature *cjct = (modern)?load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "cjct"):NULL;
2031 BOOL rphf = (load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "rphf") != NULL);
2032 BOOL pref = (load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "pref") != NULL);
2033 BOOL blwf = (load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "blwf") != NULL);
2034 BOOL half = (load_OT_feature(hdc, psa, psc, FEATURE_GSUB_TABLE, "half") != NULL);
2035 IndicSyllable glyph_indexs;
2037 for (c = 0; c < syllable_count; c++)
2040 memcpy(&glyph_indexs, &syllables[c], sizeof(IndicSyllable));
2041 shift_syllable_glyph_indexs(&glyph_indexs, -1, overall_shift);
2042 old_end = glyph_indexs.end;
2046 TRACE("applying feature locl\n");
2047 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, locl);
2051 TRACE("applying feature nukt\n");
2052 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, nukt);
2056 TRACE("applying feature akhn\n");
2057 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, akhn);
2061 Apply_Indic_Rphf(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs);
2064 TRACE("applying feature rkrf\n");
2065 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, rkrf);
2068 Apply_Indic_PostBase(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, modern, "pref");
2072 Apply_Indic_PreBase(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, "blwf");
2074 Apply_Indic_PostBase(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, modern, "blwf");
2078 Apply_Indic_PreBase(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, "half");
2081 TRACE("applying feature pstf\n");
2082 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, pstf);
2086 TRACE("applying feature vatu\n");
2087 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, vatu);
2091 TRACE("applying feature cjct\n");
2092 Apply_Indic_BasicForm(hdc, psc, psa, pwChars, cChars, &syllables[c], pwOutGlyphs, pcGlyphs, pwLogClust, lexical, &glyph_indexs, cjct);
2096 second_reorder(pwChars, &syllables[c], pwOutGlyphs, &glyph_indexs, lexical);
2098 overall_shift += glyph_indexs.end - old_end;
2102 static inline int unicode_lex(WCHAR c)
2106 if (!c) return lex_Generic;
2107 if (c == 0x200D) return lex_ZWJ;
2108 if (c == 0x200C) return lex_ZWNJ;
2109 if (c == 0x00A0) return lex_NBSP;
2111 type = get_table_entry( indic_syllabic_table, c );
2113 if ((type & 0x00ff) != 0x0007) type = type & 0x00ff;
2117 case 0x0d07: /* Unknown */
2118 case 0x0e07: /* Unknwon */
2119 default: return lex_Generic;
2125 case 0x0014: return lex_Modifier;
2133 case 0x0010: return lex_Consonant;
2134 case 0x0004: return lex_Nukta;
2135 case 0x0005: return lex_Halant;
2137 case 0x0008: return lex_Vowel;
2139 case 0x0107: return lex_Matra_post;
2141 case 0x0307: return lex_Matra_pre;
2147 case 0x0407: return lex_Composed_Vowel;
2148 case 0x0507: return lex_Matra_above;
2149 case 0x0607: return lex_Matra_below;
2150 case 0x000c: return lex_Ra;
2154 static int sinhala_lex(WCHAR c)
2161 case 0x0DDE: return lex_Matra_post;
2163 return unicode_lex(c);
2167 static const VowelComponents Sinhala_vowels[] = {
2168 {0x0DDA, {0x0DD9,0x0DDA,0x0}},
2169 {0x0DDC, {0x0DD9,0x0DDC,0x0}},
2170 {0x0DDD, {0x0DD9,0x0DDD,0x0}},
2171 {0x0DDE, {0x0DD9,0x0DDE,0x0}},
2172 {0x0000, {0x0000,0x0000,0x0}}};
2174 static void ContextualShape_Sinhala(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2176 int cCount = cChars;
2179 IndicSyllable *syllables = NULL;
2180 int syllable_count = 0;
2182 if (*pcGlyphs != cChars)
2184 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2188 input = HeapAlloc(GetProcessHeap(),0,sizeof(WCHAR) * (cChars * 3));
2190 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2192 /* Step 1: Decompose multi part vowels */
2193 DecomposeVowels(hdc, input, &cCount, Sinhala_vowels, pwLogClust, cChars);
2195 TRACE("New double vowel expanded string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2197 /* Step 2: Reorder within Syllables */
2198 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, sinhala_lex, Reorder_Like_Sinhala, TRUE);
2199 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2201 /* Step 3: Strip dangling joiners */
2202 for (i = 0; i < cCount; i++)
2204 if ((input[i] == 0x200D || input[i] == 0x200C) &&
2205 (i == 0 || input[i-1] == 0x0020 || i == cCount-1 || input[i+1] == 0x0020))
2209 /* Step 4: Base Form application to syllables */
2210 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2212 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, sinhala_lex, NULL, TRUE);
2214 HeapFree(GetProcessHeap(),0,input);
2215 HeapFree(GetProcessHeap(),0,syllables);
2218 static int devanagari_lex(WCHAR c)
2222 case 0x0930: return lex_Ra;
2224 return unicode_lex(c);
2228 static const ConsonantComponents Devanagari_consonants[] ={
2229 {{0x0928, 0x093C, 0x00000}, 0x0929},
2230 {{0x0930, 0x093C, 0x00000}, 0x0931},
2231 {{0x0933, 0x093C, 0x00000}, 0x0934},
2232 {{0x0915, 0x093C, 0x00000}, 0x0958},
2233 {{0x0916, 0x093C, 0x00000}, 0x0959},
2234 {{0x0917, 0x093C, 0x00000}, 0x095A},
2235 {{0x091C, 0x093C, 0x00000}, 0x095B},
2236 {{0x0921, 0x093C, 0x00000}, 0x095C},
2237 {{0x0922, 0x093C, 0x00000}, 0x095D},
2238 {{0x092B, 0x093C, 0x00000}, 0x095E},
2239 {{0x092F, 0x093C, 0x00000}, 0x095F}};
2241 static void ContextualShape_Devanagari(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2243 int cCount = cChars;
2245 IndicSyllable *syllables = NULL;
2246 int syllable_count = 0;
2247 BOOL modern = get_GSUB_Indic2(psa, psc);
2249 if (*pcGlyphs != cChars)
2251 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2255 input = HeapAlloc(GetProcessHeap(), 0, cChars * sizeof(WCHAR));
2256 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2258 /* Step 1: Compose Consonant and Nukta */
2259 ComposeConsonants(hdc, input, &cCount, Devanagari_consonants, pwLogClust);
2260 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2262 /* Step 2: Reorder within Syllables */
2263 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, devanagari_lex, Reorder_Like_Devanagari, modern);
2264 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2265 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2268 /* Step 3: Base Form application to syllables */
2269 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, devanagari_lex, NULL, modern);
2271 HeapFree(GetProcessHeap(),0,input);
2272 HeapFree(GetProcessHeap(),0,syllables);
2275 static int bengali_lex(WCHAR c)
2279 case 0x09B0: return lex_Ra;
2281 return unicode_lex(c);
2285 static const VowelComponents Bengali_vowels[] = {
2286 {0x09CB, {0x09C7,0x09BE,0x0000}},
2287 {0x09CC, {0x09C7,0x09D7,0x0000}},
2288 {0x0000, {0x0000,0x0000,0x0000}}};
2290 static const ConsonantComponents Bengali_consonants[] = {
2291 {{0x09A4,0x09CD,0x200D}, 0x09CE},
2292 {{0x09A1,0x09BC,0x0000}, 0x09DC},
2293 {{0x09A2,0x09BC,0x0000}, 0x09DD},
2294 {{0x09AF,0x09BC,0x0000}, 0x09DF},
2295 {{0x0000,0x0000,0x0000}, 0x0000}};
2297 static void ContextualShape_Bengali(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2299 int cCount = cChars;
2301 IndicSyllable *syllables = NULL;
2302 int syllable_count = 0;
2303 BOOL modern = get_GSUB_Indic2(psa, psc);
2305 if (*pcGlyphs != cChars)
2307 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2311 input = HeapAlloc(GetProcessHeap(), 0, (cChars * 2) * sizeof(WCHAR));
2312 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2314 /* Step 1: Decompose Vowels and Compose Consonants */
2315 DecomposeVowels(hdc, input, &cCount, Bengali_vowels, pwLogClust, cChars);
2316 ComposeConsonants(hdc, input, &cCount, Bengali_consonants, pwLogClust);
2317 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2319 /* Step 2: Reorder within Syllables */
2320 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, bengali_lex, Reorder_Like_Bengali, modern);
2321 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2322 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2325 /* Step 3: Initial form is only applied to the beginning of words */
2326 for (cCount = cCount - 1 ; cCount >= 0; cCount --)
2328 if (cCount == 0 || input[cCount] == 0x0020) /* space */
2332 if (index > 0) index++;
2334 apply_GSUB_feature_to_glyph(hdc, psa, psc, &pwOutGlyphs[index], 0, 1, &gCount, "init");
2338 /* Step 4: Base Form application to syllables */
2339 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, bengali_lex, NULL, modern);
2341 HeapFree(GetProcessHeap(),0,input);
2342 HeapFree(GetProcessHeap(),0,syllables);
2345 static int gurmukhi_lex(WCHAR c)
2348 return lex_Modifier;
2350 return unicode_lex(c);
2353 static const ConsonantComponents Gurmukhi_consonants[] = {
2354 {{0x0A32,0x0A3C,0x0000}, 0x0A33},
2355 {{0x0A16,0x0A3C,0x0000}, 0x0A59},
2356 {{0x0A17,0x0A3C,0x0000}, 0x0A5A},
2357 {{0x0A1C,0x0A3C,0x0000}, 0x0A5B},
2358 {{0x0A2B,0x0A3C,0x0000}, 0x0A5E},
2359 {{0x0000,0x0000,0x0000}, 0x0000}};
2361 static void ContextualShape_Gurmukhi(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2363 int cCount = cChars;
2365 IndicSyllable *syllables = NULL;
2366 int syllable_count = 0;
2367 BOOL modern = get_GSUB_Indic2(psa, psc);
2369 if (*pcGlyphs != cChars)
2371 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2375 input = HeapAlloc(GetProcessHeap(), 0, cChars * sizeof(WCHAR));
2376 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2378 /* Step 1: Compose Consonants */
2379 ComposeConsonants(hdc, input, &cCount, Gurmukhi_consonants, pwLogClust);
2380 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2382 /* Step 2: Reorder within Syllables */
2383 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, gurmukhi_lex, Reorder_Like_Bengali, modern);
2384 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2385 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2388 /* Step 3: Base Form application to syllables */
2389 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, gurmukhi_lex, NULL, modern);
2391 HeapFree(GetProcessHeap(),0,input);
2392 HeapFree(GetProcessHeap(),0,syllables);
2395 static int gujarati_lex(WCHAR c)
2399 case 0x0AB0: return lex_Ra;
2401 return unicode_lex(c);
2405 static void ContextualShape_Gujarati(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2407 int cCount = cChars;
2409 IndicSyllable *syllables = NULL;
2410 int syllable_count = 0;
2411 BOOL modern = get_GSUB_Indic2(psa, psc);
2413 if (*pcGlyphs != cChars)
2415 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2419 input = HeapAlloc(GetProcessHeap(), 0, cChars * sizeof(WCHAR));
2420 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2422 /* Step 1: Reorder within Syllables */
2423 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, gujarati_lex, Reorder_Like_Devanagari, modern);
2424 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2425 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2428 /* Step 2: Base Form application to syllables */
2429 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, gujarati_lex, NULL, modern);
2431 HeapFree(GetProcessHeap(),0,input);
2432 HeapFree(GetProcessHeap(),0,syllables);
2435 static int oriya_lex(WCHAR c)
2439 case 0x0B30: return lex_Ra;
2441 return unicode_lex(c);
2445 static const VowelComponents Oriya_vowels[] = {
2446 {0x0B48, {0x0B47,0x0B56,0x0000}},
2447 {0x0B4B, {0x0B47,0x0B3E,0x0000}},
2448 {0x0B4C, {0x0B47,0x0B57,0x0000}},
2449 {0x0000, {0x0000,0x0000,0x0000}}};
2451 static const ConsonantComponents Oriya_consonants[] = {
2452 {{0x0B21,0x0B3C,0x0000}, 0x0B5C},
2453 {{0x0B22,0x0B3C,0x0000}, 0x0B5D},
2454 {{0x0000,0x0000,0x0000}, 0x0000}};
2456 static void ContextualShape_Oriya(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2458 int cCount = cChars;
2460 IndicSyllable *syllables = NULL;
2461 int syllable_count = 0;
2462 BOOL modern = get_GSUB_Indic2(psa, psc);
2464 if (*pcGlyphs != cChars)
2466 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2470 input = HeapAlloc(GetProcessHeap(), 0, (cChars*2) * sizeof(WCHAR));
2471 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2473 /* Step 1: Decompose Vowels and Compose Consonants */
2474 DecomposeVowels(hdc, input, &cCount, Oriya_vowels, pwLogClust, cChars);
2475 ComposeConsonants(hdc, input, &cCount, Oriya_consonants, pwLogClust);
2476 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2478 /* Step 2: Reorder within Syllables */
2479 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, oriya_lex, Reorder_Like_Bengali, modern);
2480 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2481 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2484 /* Step 3: Base Form application to syllables */
2485 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, oriya_lex, NULL, modern);
2487 HeapFree(GetProcessHeap(),0,input);
2488 HeapFree(GetProcessHeap(),0,syllables);
2491 static int tamil_lex(WCHAR c)
2493 return unicode_lex(c);
2496 static const VowelComponents Tamil_vowels[] = {
2497 {0x0BCA, {0x0BC6,0x0BBE,0x0000}},
2498 {0x0BCB, {0x0BC7,0x0BBE,0x0000}},
2499 {0x0BCB, {0x0BC6,0x0BD7,0x0000}},
2500 {0x0000, {0x0000,0x0000,0x0000}}};
2502 static const ConsonantComponents Tamil_consonants[] = {
2503 {{0x0B92,0x0BD7,0x0000}, 0x0B94},
2504 {{0x0000,0x0000,0x0000}, 0x0000}};
2506 static void ContextualShape_Tamil(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2508 int cCount = cChars;
2510 IndicSyllable *syllables = NULL;
2511 int syllable_count = 0;
2512 BOOL modern = get_GSUB_Indic2(psa, psc);
2514 if (*pcGlyphs != cChars)
2516 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2520 input = HeapAlloc(GetProcessHeap(), 0, (cChars*2) * sizeof(WCHAR));
2521 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2523 /* Step 1: Decompose Vowels and Compose Consonants */
2524 DecomposeVowels(hdc, input, &cCount, Tamil_vowels, pwLogClust, cChars);
2525 ComposeConsonants(hdc, input, &cCount, Tamil_consonants, pwLogClust);
2526 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2528 /* Step 2: Reorder within Syllables */
2529 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, tamil_lex, Reorder_Like_Bengali, modern);
2530 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2531 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2534 /* Step 3: Base Form application to syllables */
2535 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, tamil_lex, SecondReorder_Like_Tamil, modern);
2537 HeapFree(GetProcessHeap(),0,input);
2538 HeapFree(GetProcessHeap(),0,syllables);
2541 static int telugu_lex(WCHAR c)
2546 case 0x0C44: return lex_Modifier;
2548 return unicode_lex(c);
2552 static const VowelComponents Telugu_vowels[] = {
2553 {0x0C48, {0x0C46,0x0C56,0x0000}},
2554 {0x0000, {0x0000,0x0000,0x0000}}};
2556 static void ContextualShape_Telugu(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2558 int cCount = cChars;
2560 IndicSyllable *syllables = NULL;
2561 int syllable_count = 0;
2562 BOOL modern = get_GSUB_Indic2(psa, psc);
2564 if (*pcGlyphs != cChars)
2566 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2570 input = HeapAlloc(GetProcessHeap(), 0, (cChars*2) * sizeof(WCHAR));
2571 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2573 /* Step 1: Decompose Vowels */
2574 DecomposeVowels(hdc, input, &cCount, Telugu_vowels, pwLogClust, cChars);
2575 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2577 /* Step 2: Reorder within Syllables */
2578 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, telugu_lex, Reorder_Like_Bengali, modern);
2579 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2580 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2583 /* Step 3: Base Form application to syllables */
2584 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, telugu_lex, SecondReorder_Like_Telugu, modern);
2586 HeapFree(GetProcessHeap(),0,input);
2587 HeapFree(GetProcessHeap(),0,syllables);
2590 static int kannada_lex(WCHAR c)
2594 case 0x0CB0: return lex_Ra;
2596 return unicode_lex(c);
2600 static const VowelComponents Kannada_vowels[] = {
2601 {0x0CC0, {0x0CBF,0x0CD5,0x0000}},
2602 {0x0CC7, {0x0CC6,0x0CD5,0x0000}},
2603 {0x0CC8, {0x0CC6,0x0CD6,0x0000}},
2604 {0x0CCA, {0x0CC6,0x0CC2,0x0000}},
2605 {0x0CCB, {0x0CC6,0x0CC2,0x0CD5}},
2606 {0x0000, {0x0000,0x0000,0x0000}}};
2608 static void ContextualShape_Kannada(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2610 int cCount = cChars;
2612 IndicSyllable *syllables = NULL;
2613 int syllable_count = 0;
2614 BOOL modern = get_GSUB_Indic2(psa, psc);
2616 if (*pcGlyphs != cChars)
2618 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2622 input = HeapAlloc(GetProcessHeap(), 0, (cChars*3) * sizeof(WCHAR));
2623 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2625 /* Step 1: Decompose Vowels */
2626 DecomposeVowels(hdc, input, &cCount, Kannada_vowels, pwLogClust, cChars);
2627 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2629 /* Step 2: Reorder within Syllables */
2630 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, kannada_lex, Reorder_Like_Kannada, modern);
2631 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2632 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2635 /* Step 3: Base Form application to syllables */
2636 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, kannada_lex, SecondReorder_Like_Telugu, modern);
2638 HeapFree(GetProcessHeap(),0,input);
2639 HeapFree(GetProcessHeap(),0,syllables);
2642 static int malayalam_lex(WCHAR c)
2644 return unicode_lex(c);
2647 static const VowelComponents Malayalam_vowels[] = {
2648 {0x0D4A, {0x0D46,0x0D3E,0x0000}},
2649 {0x0D4B, {0x0D47,0x0D3E,0x0000}},
2650 {0x0D4C, {0x0D46,0x0D57,0x0000}},
2651 {0x0000, {0x0000,0x0000,0x0000}}};
2653 static void ContextualShape_Malayalam(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2655 int cCount = cChars;
2657 IndicSyllable *syllables = NULL;
2658 int syllable_count = 0;
2659 BOOL modern = get_GSUB_Indic2(psa, psc);
2661 if (*pcGlyphs != cChars)
2663 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2667 input = HeapAlloc(GetProcessHeap(), 0, (cChars*2) * sizeof(WCHAR));
2668 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2670 /* Step 1: Decompose Vowels */
2671 DecomposeVowels(hdc, input, &cCount, Malayalam_vowels, pwLogClust, cChars);
2672 TRACE("New composed string %s (%i)\n",debugstr_wn(input,cCount),cCount);
2674 /* Step 2: Reorder within Syllables */
2675 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, malayalam_lex, Reorder_Like_Devanagari, modern);
2676 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2677 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2680 /* Step 3: Base Form application to syllables */
2681 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, malayalam_lex, SecondReorder_Like_Tamil, modern);
2683 HeapFree(GetProcessHeap(),0,input);
2684 HeapFree(GetProcessHeap(),0,syllables);
2687 static int khmer_lex(WCHAR c)
2689 return unicode_lex(c);
2692 static void ContextualShape_Khmer(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2694 int cCount = cChars;
2696 IndicSyllable *syllables = NULL;
2697 int syllable_count = 0;
2699 if (*pcGlyphs != cChars)
2701 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2705 input = HeapAlloc(GetProcessHeap(), 0, cChars * sizeof(WCHAR));
2706 memcpy(input, pwcChars, cChars * sizeof(WCHAR));
2708 /* Step 1: Reorder within Syllables */
2709 Indic_ReorderCharacters( hdc, psa, psc, input, cCount, &syllables, &syllable_count, khmer_lex, Reorder_Like_Devanagari, FALSE);
2710 TRACE("reordered string %s\n",debugstr_wn(input,cCount));
2711 GetGlyphIndicesW(hdc, input, cCount, pwOutGlyphs, 0);
2714 /* Step 2: Base Form application to syllables */
2715 ShapeIndicSyllables(hdc, psc, psa, input, cChars, syllables, syllable_count, pwOutGlyphs, pcGlyphs, pwLogClust, khmer_lex, NULL, FALSE);
2717 HeapFree(GetProcessHeap(),0,input);
2718 HeapFree(GetProcessHeap(),0,syllables);
2721 static inline BOOL mongolian_wordbreak(WCHAR chr)
2723 return ((chr == 0x0020) || (chr == 0x200C) || (chr == 0x202F) || (chr == 0x180E) || (chr == 0x1800) || (chr == 0x1802) || (chr == 0x1803) || (chr == 0x1805) || (chr == 0x1808) || (chr == 0x1809) || (chr == 0x1807));
2726 static void ContextualShape_Mongolian(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
2732 if (*pcGlyphs != cChars)
2734 ERR("Number of Glyphs and Chars need to match at the beginning\n");
2738 if (!psa->fLogicalOrder && psa->fRTL)
2743 load_ot_tables(hdc, psc);
2745 if (!psc->GSUB_Table)
2748 context_shape = HeapAlloc(GetProcessHeap(),0,sizeof(INT) * cChars);
2750 for (i = 0; i < cChars; i++)
2752 if (i == 0 || mongolian_wordbreak(pwcChars[i-1]))
2754 if ((i == cChars-1) || mongolian_wordbreak(pwcChars[i+1]))
2755 context_shape[i] = Xn;
2757 context_shape[i] = Xl;
2761 if ((i == cChars-1) || mongolian_wordbreak(pwcChars[i+1]))
2762 context_shape[i] = Xr;
2764 context_shape[i] = Xm;
2768 /* Contextual Shaping */
2770 while(i < *pcGlyphs)
2773 INT prevCount = *pcGlyphs;
2774 nextIndex = apply_GSUB_feature_to_glyph(hdc, psa, psc, pwOutGlyphs, i, dirL, pcGlyphs, contextual_features[context_shape[i]]);
2775 if (nextIndex > GSUB_E_NOGLYPH)
2777 UpdateClusters(nextIndex, *pcGlyphs - prevCount, dirL, cChars, pwLogClust);
2784 HeapFree(GetProcessHeap(),0,context_shape);
2787 static void ShapeCharGlyphProp_Default( HDC hdc, ScriptCache* psc, SCRIPT_ANALYSIS* psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD* pwLogClust, SCRIPT_CHARPROP* pCharProp, SCRIPT_GLYPHPROP* pGlyphProp)
2791 for (i = 0; i < cGlyphs; i++)
2796 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
2799 for (; k < cChars && pwLogClust[k] == i; k++)
2800 char_index[char_count++] = k;
2803 if (char_count == 0)
2806 if (char_count ==1 && pwcChars[char_index[0]] == 0x0020) /* space */
2808 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_BLANK;
2809 pCharProp[char_index[0]].fCanGlyphAlone = 1;
2812 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_CHARACTER;
2815 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
2816 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
2819 static void ShapeCharGlyphProp_Arabic( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
2822 int initGlyph, finaGlyph;
2826 spaces = HeapAlloc(GetProcessHeap(),0,cGlyphs);
2827 memset(spaces,0,cGlyphs);
2829 if (!psa->fLogicalOrder && psa->fRTL)
2831 initGlyph = cGlyphs-1;
2839 finaGlyph = cGlyphs-1;
2844 for (i = 0; i < cGlyphs; i++)
2846 for (k = 0; k < cChars; k++)
2847 if (pwLogClust[k] == i)
2849 if (pwcChars[k] == 0x0020)
2854 for (i = 0; i < cGlyphs; i++)
2858 BOOL isInit, isFinal;
2860 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
2863 for (; k < cChars && pwLogClust[k] == i; k++)
2864 char_index[char_count++] = k;
2867 isInit = (i == initGlyph || (i+dirR > 0 && i+dirR < cGlyphs && spaces[i+dirR]));
2868 isFinal = (i == finaGlyph || (i+dirL > 0 && i+dirL < cGlyphs && spaces[i+dirL]));
2870 if (char_count == 0)
2873 if (char_count == 1)
2875 if (pwcChars[char_index[0]] == 0x0020) /* space */
2877 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_BLANK;
2878 pCharProp[char_index[0]].fCanGlyphAlone = 1;
2880 else if (pwcChars[char_index[0]] == 0x0640) /* kashida */
2881 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_KASHIDA;
2882 else if (pwcChars[char_index[0]] == 0x0633) /* SEEN */
2884 if (!isInit && !isFinal)
2885 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_SEEN_M;
2887 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_SEEN;
2889 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2893 if (pwcChars[char_index[0]] == 0x0628 ) /* BA */
2894 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_BA;
2895 else if (pwcChars[char_index[0]] == 0x0631 ) /* RA */
2896 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_RA;
2897 else if (pwcChars[char_index[0]] == 0x0647 ) /* HA */
2898 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_HA;
2899 else if ((pwcChars[char_index[0]] == 0x0627 || pwcChars[char_index[0]] == 0x0625 || pwcChars[char_index[0]] == 0x0623 || pwcChars[char_index[0]] == 0x0622) ) /* alef-like */
2900 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_ALEF;
2902 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2904 else if (!isInit && !isFinal)
2905 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_NORMAL;
2907 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2909 else if (char_count == 2)
2911 if ((pwcChars[char_index[0]] == 0x0628 && pwcChars[char_index[1]]== 0x0631) || (pwcChars[char_index[0]] == 0x0631 && pwcChars[char_index[1]]== 0x0628)) /* BA+RA */
2912 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_BARA;
2914 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_NORMAL;
2916 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2918 else if (!isInit && !isFinal)
2919 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_ARABIC_NORMAL;
2921 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2924 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
2925 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
2926 HeapFree(GetProcessHeap(),0,spaces);
2929 static void ShapeCharGlyphProp_Hebrew( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
2933 for (i = 0; i < cGlyphs; i++)
2938 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
2941 for (; k < cChars && pwLogClust[k] == i; k++)
2942 char_index[char_count++] = k;
2945 if (char_count == 0)
2946 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2949 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_CHARACTER;
2950 if (char_count ==1 && pwcChars[char_index[0]] == 0x0020) /* space */
2951 pCharProp[char_index[0]].fCanGlyphAlone = 1;
2955 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
2956 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
2959 static void ShapeCharGlyphProp_Thai( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
2965 if (!psa->fLogicalOrder && psa->fRTL)
2972 finaGlyph = cGlyphs-1;
2976 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
2978 for (i = 0; i < cGlyphs; i++)
2984 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
2987 for (; k < cChars && pwLogClust[k] == i; k++)
2988 char_index[char_count++] = k;
2992 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
2994 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_CHARACTER;
2996 if (char_count == 0)
2999 if (char_count ==1 && pwcChars[char_index[0]] == 0x0020) /* space */
3000 pCharProp[char_index[0]].fCanGlyphAlone = 1;
3002 /* handle Thai SARA AM (U+0E33) differently than GDEF */
3003 if (char_count == 1 && pwcChars[char_index[0]] == 0x0e33)
3004 pGlyphProp[i].sva.fClusterStart = 0;
3007 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
3009 /* Do not allow justification between marks and their base */
3010 for (i = 0; i < cGlyphs; i++)
3012 if (!pGlyphProp[i].sva.fClusterStart)
3013 pGlyphProp[i-dirL].sva.uJustification = SCRIPT_JUSTIFY_NONE;
3017 static void ShapeCharGlyphProp_None( HDC hdc, ScriptCache* psc, SCRIPT_ANALYSIS* psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD* pwLogClust, SCRIPT_CHARPROP* pCharProp, SCRIPT_GLYPHPROP* pGlyphProp)
3021 for (i = 0; i < cGlyphs; i++)
3026 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
3029 for (; k < cChars && pwLogClust[k] == i; k++)
3030 char_index[char_count++] = k;
3033 if (char_count == 0)
3036 if (char_count ==1 && pwcChars[char_index[0]] == 0x0020) /* space */
3038 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_CHARACTER;
3039 pCharProp[char_index[0]].fCanGlyphAlone = 1;
3042 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
3044 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
3045 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
3048 static void ShapeCharGlyphProp_Tibet( HDC hdc, ScriptCache* psc, SCRIPT_ANALYSIS* psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD* pwLogClust, SCRIPT_CHARPROP* pCharProp, SCRIPT_GLYPHPROP* pGlyphProp)
3052 for (i = 0; i < cGlyphs; i++)
3057 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
3060 for (; k < cChars && pwLogClust[k] == i; k++)
3061 char_index[char_count++] = k;
3064 if (char_count == 0)
3067 if (char_count ==1 && pwcChars[char_index[0]] == 0x0020) /* space */
3069 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_BLANK;
3070 pCharProp[char_index[0]].fCanGlyphAlone = 1;
3073 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
3075 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
3076 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
3078 /* Tibeten script does not set sva.fDiacritic or sva.fZeroWidth */
3079 for (i = 0; i < cGlyphs; i++)
3081 if (!pGlyphProp[i].sva.fClusterStart)
3083 pGlyphProp[i].sva.fDiacritic = 0;
3084 pGlyphProp[i].sva.fZeroWidth = 0;
3089 static void ShapeCharGlyphProp_BaseIndic( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp, lexical_function lexical, BOOL use_syllables, BOOL override_gsub)
3093 OpenType_GDEF_UpdateGlyphProps(hdc, psc, pwGlyphs, cGlyphs, pwLogClust, cChars, pGlyphProp);
3094 for (i = 0; i < cGlyphs; i++)
3099 k = USP10_FindGlyphInLogClust(pwLogClust, cChars, i);
3102 for (; k < cChars && pwLogClust[k] == i; k++)
3103 char_index[char_count++] = k;
3108 /* Most indic scripts do not set fDiacritic or fZeroWidth */
3109 pGlyphProp[i].sva.fDiacritic = FALSE;
3110 pGlyphProp[i].sva.fZeroWidth = FALSE;
3113 if (char_count == 0)
3115 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
3119 if (char_count ==1 && pwcChars[char_index[0]] == 0x0020) /* space */
3121 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_BLANK;
3122 pCharProp[char_index[0]].fCanGlyphAlone = 1;
3125 pGlyphProp[i].sva.uJustification = SCRIPT_JUSTIFY_NONE;
3127 pGlyphProp[i].sva.fClusterStart = 0;
3128 for (k = 0; k < char_count && !pGlyphProp[i].sva.fClusterStart; k++)
3129 switch (lexical(pwcChars[char_index[k]]))
3132 case lex_Matra_post:
3133 case lex_Matra_above:
3134 case lex_Matra_below:
3140 /* check for dangling joiners */
3141 if (pwcChars[char_index[k]-1] == 0x0020 || pwcChars[char_index[k]+1] == 0x0020)
3142 pGlyphProp[i].sva.fClusterStart = 1;
3147 pGlyphProp[i].sva.fClusterStart = 1;
3154 IndicSyllable *syllables = NULL;
3155 int syllable_count = 0;
3156 BOOL modern = get_GSUB_Indic2(psa, psc);
3158 Indic_ParseSyllables( hdc, psa, psc, pwcChars, cChars, &syllables, &syllable_count, lexical, modern);
3160 for (i = 0; i < syllable_count; i++)
3163 WORD g = pwLogClust[syllables[i].start];
3164 for (j = syllables[i].start+1; j <= syllables[i].end; j++)
3166 if (pwLogClust[j] != g)
3168 pGlyphProp[pwLogClust[j]].sva.fClusterStart = 0;
3174 HeapFree(GetProcessHeap(), 0, syllables);
3177 UpdateClustersFromGlyphProp(cGlyphs, cChars, pwLogClust, pGlyphProp);
3180 static void ShapeCharGlyphProp_Sinhala( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3182 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, sinhala_lex, FALSE, FALSE);
3185 static void ShapeCharGlyphProp_Devanagari( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3187 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, devanagari_lex, TRUE, TRUE);
3190 static void ShapeCharGlyphProp_Bengali( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3192 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, bengali_lex, TRUE, TRUE);
3195 static void ShapeCharGlyphProp_Gurmukhi( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3197 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, gurmukhi_lex, TRUE, TRUE);
3200 static void ShapeCharGlyphProp_Gujarati( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3202 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, gujarati_lex, TRUE, TRUE);
3205 static void ShapeCharGlyphProp_Oriya( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3207 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, oriya_lex, TRUE, TRUE);
3210 static void ShapeCharGlyphProp_Tamil( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3212 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, tamil_lex, TRUE, TRUE);
3215 static void ShapeCharGlyphProp_Telugu( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3217 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, telugu_lex, TRUE, TRUE);
3220 static void ShapeCharGlyphProp_Kannada( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3222 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, kannada_lex, TRUE, TRUE);
3225 static void ShapeCharGlyphProp_Malayalam( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3227 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, malayalam_lex, TRUE, TRUE);
3230 static void ShapeCharGlyphProp_Khmer( HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp )
3232 ShapeCharGlyphProp_BaseIndic(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp, khmer_lex, TRUE, TRUE);
3235 void SHAPE_CharGlyphProp(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WCHAR* pwcChars, const INT cChars, const WORD* pwGlyphs, const INT cGlyphs, WORD *pwLogClust, SCRIPT_CHARPROP *pCharProp, SCRIPT_GLYPHPROP *pGlyphProp)
3237 if (ShapingData[psa->eScript].charGlyphPropProc)
3238 ShapingData[psa->eScript].charGlyphPropProc(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp);
3240 ShapeCharGlyphProp_Default(hdc, psc, psa, pwcChars, cChars, pwGlyphs, cGlyphs, pwLogClust, pCharProp, pGlyphProp);
3243 void SHAPE_ContextualShaping(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust)
3245 load_ot_tables(hdc, psc);
3247 if (ShapingData[psa->eScript].contextProc)
3248 ShapingData[psa->eScript].contextProc(hdc, psc, psa, pwcChars, cChars, pwOutGlyphs, pcGlyphs, cMaxGlyphs, pwLogClust);
3251 static void SHAPE_ApplyOpenTypeFeatures(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, INT cChars, const TEXTRANGE_PROPERTIES *rpRangeProperties, WORD *pwLogClust)
3256 if (!rpRangeProperties)
3259 load_ot_tables(hdc, psc);
3261 if (!psc->GSUB_Table)
3264 if (!psa->fLogicalOrder && psa->fRTL)
3269 for (i = 0; i < rpRangeProperties->cotfRecords; i++)
3271 if (rpRangeProperties->potfRecords[i].lParameter > 0)
3272 apply_GSUB_feature(hdc, psa, psc, pwOutGlyphs, dirL, pcGlyphs, cChars, (const char*)&rpRangeProperties->potfRecords[i].tagFeature, pwLogClust);
3276 void SHAPE_ApplyDefaultOpentypeFeatures(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, INT cChars, WORD *pwLogClust)
3278 const TEXTRANGE_PROPERTIES *rpRangeProperties;
3279 rpRangeProperties = &ShapingData[psa->eScript].defaultTextRange;
3281 SHAPE_ApplyOpenTypeFeatures(hdc, psc, psa, pwOutGlyphs, pcGlyphs, cMaxGlyphs, cChars, rpRangeProperties, pwLogClust);
3284 void SHAPE_ApplyOpenTypePositions(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, const WORD* pwGlyphs, INT cGlyphs, int *piAdvance, GOFFSET *pGoffset )
3286 const TEXTRANGE_PROPERTIES *rpRangeProperties;
3290 rpRangeProperties = &ShapingData[psa->eScript].defaultGPOSTextRange;
3292 if (!rpRangeProperties)
3295 load_ot_tables(hdc, psc);
3297 if (!psc->GPOS_Table || !psc->otm)
3300 if (!psa->fLogicalOrder && psa->fRTL)
3305 for (i = 0; i < rpRangeProperties->cotfRecords; i++)
3307 if (rpRangeProperties->potfRecords[i].lParameter > 0)
3309 LoadedFeature *feature;
3311 feature = load_OT_feature(hdc, psa, psc, FEATURE_GPOS_TABLE, (const char*)&rpRangeProperties->potfRecords[i].tagFeature);
3315 GPOS_apply_feature(psc->otm, &psc->lf, piAdvance, psc->GPOS_Table, feature, pwGlyphs, dirL, cGlyphs, pGoffset);
3320 HRESULT SHAPE_CheckFontForRequiredFeatures(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa)
3322 LoadedFeature *feature;
3325 if (!ShapingData[psa->eScript].requiredFeatures)
3328 load_ot_tables(hdc, psc);
3330 /* we need to have at least one of the required features */
3332 while (ShapingData[psa->eScript].requiredFeatures[i])
3334 feature = load_OT_feature(hdc, psa, psc, FEATURE_ALL_TABLES, ShapingData[psa->eScript].requiredFeatures[i]);
3340 return USP_E_SCRIPT_NOT_IN_FONT;
3343 HRESULT SHAPE_GetFontScriptTags( HDC hdc, ScriptCache *psc,
3344 SCRIPT_ANALYSIS *psa, int cMaxTags,
3345 OPENTYPE_TAG *pScriptTags, int *pcTags)
3348 OPENTYPE_TAG searching = 0x00000000;
3350 load_ot_tables(hdc, psc);
3352 if (psa && scriptInformation[psa->eScript].scriptTag)
3353 searching = scriptInformation[psa->eScript].scriptTag;
3355 hr = OpenType_GetFontScriptTags(psc, searching, cMaxTags, pScriptTags, pcTags);
3361 HRESULT SHAPE_GetFontLanguageTags( HDC hdc, ScriptCache *psc,
3362 SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript,
3363 int cMaxTags, OPENTYPE_TAG *pLangSysTags,
3367 OPENTYPE_TAG searching = 0x00000000;
3368 BOOL fellback = FALSE;
3370 load_ot_tables(hdc, psc);
3372 if (psa && psc->userLang != 0)
3373 searching = psc->userLang;
3375 hr = OpenType_GetFontLanguageTags(psc, tagScript, searching, cMaxTags, pLangSysTags, pcTags);
3379 hr = OpenType_GetFontLanguageTags(psc, MS_MAKE_TAG('l','a','t','n'), searching, cMaxTags, pLangSysTags, pcTags);
3382 if (FAILED(hr) || fellback)
3384 if (SUCCEEDED(hr) && fellback && psa)
3389 HRESULT SHAPE_GetFontFeatureTags( HDC hdc, ScriptCache *psc,
3390 SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript,
3391 OPENTYPE_TAG tagLangSys, int cMaxTags,
3392 OPENTYPE_TAG *pFeatureTags, int *pcTags)
3395 BOOL filter = FALSE;
3397 load_ot_tables(hdc, psc);
3399 if (psa && scriptInformation[psa->eScript].scriptTag)
3401 FIXME("Filtering not implemented\n");
3405 hr = OpenType_GetFontFeatureTags(psc, tagScript, tagLangSys, filter, 0x00000000, FEATURE_ALL_TABLES, cMaxTags, pFeatureTags, pcTags, NULL);