2b11afc0696ee25da6da39a5b5dd1d9ee2335d35
[reactos.git] / reactos / dll / win32 / usp10 / usp10.c
1 /*
2 * Implementation of Uniscribe Script Processor (usp10.dll)
3 *
4 * Copyright 2005 Steven Edwards for CodeWeavers
5 * Copyright 2006 Hans Leidekker
6 * Copyright 2010 CodeWeavers, Aric Stewart
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 *
22 * Notes:
23 * Uniscribe allows for processing of complex scripts such as joining
24 * and filtering characters and bi-directional text with custom line breaks.
25 */
26
27 #include "usp10_internal.h"
28
29 #include <winuser.h>
30 #include <winreg.h>
31
32 WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
33
34 typedef struct _scriptRange
35 {
36 WORD script;
37 DWORD rangeFirst;
38 DWORD rangeLast;
39 WORD numericScript;
40 WORD punctScript;
41 } scriptRange;
42
43 static const scriptRange scriptRanges[] = {
44 /* Basic Latin: U+0000–U+007A */
45 { Script_Latin, 0x00, 0x07a , Script_Numeric, Script_Punctuation},
46 /* Latin-1 Supplement: U+0080–U+00FF */
47 /* Latin Extended-A: U+0100–U+017F */
48 /* Latin Extended-B: U+0180–U+024F */
49 /* IPA Extensions: U+0250–U+02AF */
50 /* Spacing Modifier Letters:U+02B0–U+02FF */
51 { Script_Latin, 0x80, 0x2ff , Script_Numeric2, Script_Punctuation},
52 /* Combining Diacritical Marks : U+0300–U+036F */
53 { Script_Diacritical,0x300, 0x36f, 0, 0},
54 /* Greek: U+0370–U+03FF */
55 { Script_Greek, 0x370, 0x3ff, 0, 0},
56 /* Cyrillic: U+0400–U+04FF */
57 /* Cyrillic Supplement: U+0500–U+052F */
58 { Script_Cyrillic, 0x400, 0x52f, 0, 0},
59 /* Armenian: U+0530–U+058F */
60 { Script_Armenian, 0x530, 0x58f, 0, 0},
61 /* Hebrew: U+0590–U+05FF */
62 { Script_Hebrew, 0x590, 0x5ff, 0, 0},
63 /* Arabic: U+0600–U+06FF */
64 { Script_Arabic, 0x600, 0x6ef, Script_Arabic_Numeric, 0},
65 /* Defined by Windows */
66 { Script_Persian, 0x6f0, 0x6f9, 0, 0},
67 /* Continue Arabic: U+0600–U+06FF */
68 { Script_Arabic, 0x6fa, 0x6ff, 0, 0},
69 /* Syriac: U+0700–U+074F*/
70 { Script_Syriac, 0x700, 0x74f, 0, 0},
71 /* Arabic Supplement: U+0750–U+077F */
72 { Script_Arabic, 0x750, 0x77f, 0, 0},
73 /* Thaana: U+0780–U+07BF */
74 { Script_Thaana, 0x780, 0x7bf, 0, 0},
75 /* N’Ko: U+07C0–U+07FF */
76 { Script_NKo, 0x7c0, 0x7ff, 0, 0},
77 /* Devanagari: U+0900–U+097F */
78 { Script_Devanagari, 0x900, 0x97f, Script_Devanagari_Numeric, 0},
79 /* Bengali: U+0980–U+09FF */
80 { Script_Bengali, 0x980, 0x9ff, Script_Bengali_Numeric, 0},
81 /* Gurmukhi: U+0A00–U+0A7F*/
82 { Script_Gurmukhi, 0xa00, 0xa7f, Script_Gurmukhi_Numeric, 0},
83 /* Gujarati: U+0A80–U+0AFF*/
84 { Script_Gujarati, 0xa80, 0xaff, Script_Gujarati_Numeric, 0},
85 /* Oriya: U+0B00–U+0B7F */
86 { Script_Oriya, 0xb00, 0xb7f, Script_Oriya_Numeric, 0},
87 /* Tamil: U+0B80–U+0BFF */
88 { Script_Tamil, 0xb80, 0xbff, Script_Tamil_Numeric, 0},
89 /* Telugu: U+0C00–U+0C7F */
90 { Script_Telugu, 0xc00, 0xc7f, Script_Telugu_Numeric, 0},
91 /* Kannada: U+0C80–U+0CFF */
92 { Script_Kannada, 0xc80, 0xcff, Script_Kannada_Numeric, 0},
93 /* Malayalam: U+0D00–U+0D7F */
94 { Script_Malayalam, 0xd00, 0xd7f, Script_Malayalam_Numeric, 0},
95 /* Sinhala: U+0D80–U+0DFF */
96 { Script_Sinhala, 0xd80, 0xdff, 0, 0},
97 /* Thai: U+0E00–U+0E7F */
98 { Script_Thai, 0xe00, 0xe7f, Script_Thai_Numeric, 0},
99 /* Lao: U+0E80–U+0EFF */
100 { Script_Lao, 0xe80, 0xeff, Script_Lao_Numeric, 0},
101 /* Tibetan: U+0F00–U+0FFF */
102 { Script_Tibetan, 0xf00, 0xfff, 0, 0},
103 /* Myanmar: U+1000–U+109F */
104 { Script_Myanmar, 0x1000, 0x109f, Script_Myanmar_Numeric, 0},
105 /* Georgian: U+10A0–U+10FF */
106 { Script_Georgian, 0x10a0, 0x10ff, 0, 0},
107 /* Hangul Jamo: U+1100–U+11FF */
108 { Script_Hangul, 0x1100, 0x11ff, 0, 0},
109 /* Ethiopic: U+1200–U+137F */
110 /* Ethiopic Extensions: U+1380–U+139F */
111 { Script_Ethiopic, 0x1200, 0x139f, 0, 0},
112 /* Cherokee: U+13A0–U+13FF */
113 { Script_Cherokee, 0x13a0, 0x13ff, 0, 0},
114 /* Canadian Aboriginal Syllabics: U+1400–U+167F */
115 { Script_Canadian, 0x1400, 0x167f, 0, 0},
116 /* Ogham: U+1680–U+169F */
117 { Script_Ogham, 0x1680, 0x169f, 0, 0},
118 /* Runic: U+16A0–U+16F0 */
119 { Script_Runic, 0x16a0, 0x16f0, 0, 0},
120 /* Khmer: U+1780–U+17FF */
121 { Script_Khmer, 0x1780, 0x17ff, Script_Khmer_Numeric, 0},
122 /* Mongolian: U+1800–U+18AF */
123 { Script_Mongolian, 0x1800, 0x18af, Script_Mongolian_Numeric, 0},
124 /* Canadian Aboriginal Syllabics Extended: U+18B0–U+18FF */
125 { Script_Canadian, 0x18b0, 0x18ff, 0, 0},
126 /* Tai Le: U+1950–U+197F */
127 { Script_Tai_Le, 0x1950, 0x197f, 0, 0},
128 /* New Tai Lue: U+1980–U+19DF */
129 { Script_New_Tai_Lue,0x1980, 0x19df, Script_New_Tai_Lue_Numeric, 0},
130 /* Khmer Symbols: U+19E0–U+19FF */
131 { Script_Khmer, 0x19e0, 0x19ff, Script_Khmer_Numeric, 0},
132 /* Vedic Extensions: U+1CD0-U+1CFF */
133 { Script_Devanagari, 0x1cd0, 0x1cff, Script_Devanagari_Numeric, 0},
134 /* Phonetic Extensions: U+1D00–U+1DBF */
135 { Script_Latin, 0x1d00, 0x1dbf, 0, 0},
136 /* Combining Diacritical Marks Supplement: U+1DC0–U+1DFF */
137 { Script_Diacritical,0x1dc0, 0x1dff, 0, 0},
138 /* Latin Extended Additional: U+1E00–U+1EFF */
139 { Script_Latin, 0x1e00, 0x1eff, 0, 0},
140 /* Greek Extended: U+1F00–U+1FFF */
141 { Script_Greek, 0x1f00, 0x1fff, 0, 0},
142 /* General Punctuation: U+2000 –U+206f */
143 { Script_Latin, 0x2000, 0x206f, 0, 0},
144 /* Superscripts and Subscripts : U+2070 –U+209f */
145 /* Currency Symbols : U+20a0 –U+20cf */
146 { Script_Numeric2, 0x2070, 0x2070, 0, 0},
147 { Script_Latin, 0x2071, 0x2073, 0, 0},
148 { Script_Numeric2, 0x2074, 0x2079, 0, 0},
149 { Script_Latin, 0x207a, 0x207f, 0, 0},
150 { Script_Numeric2, 0x2080, 0x2089, 0, 0},
151 { Script_Latin, 0x208a, 0x20cf, 0, 0},
152 /* Letterlike Symbols : U+2100 –U+214f */
153 /* Number Forms : U+2150 –U+218f */
154 /* Arrows : U+2190 –U+21ff */
155 /* Mathematical Operators : U+2200 –U+22ff */
156 /* Miscellaneous Technical : U+2300 –U+23ff */
157 /* Control Pictures : U+2400 –U+243f */
158 /* Optical Character Recognition : U+2440 –U+245f */
159 /* Enclosed Alphanumerics : U+2460 –U+24ff */
160 /* Box Drawing : U+2500 –U+25ff */
161 /* Block Elements : U+2580 –U+259f */
162 /* Geometric Shapes : U+25a0 –U+25ff */
163 /* Miscellaneous Symbols : U+2600 –U+26ff */
164 /* Dingbats : U+2700 –U+27bf */
165 /* Miscellaneous Mathematical Symbols-A : U+27c0 –U+27ef */
166 /* Supplemental Arrows-A : U+27f0 –U+27ff */
167 { Script_Latin, 0x2100, 0x27ff, 0, 0},
168 /* Braille Patterns: U+2800–U+28FF */
169 { Script_Braille, 0x2800, 0x28ff, 0, 0},
170 /* Supplemental Arrows-B : U+2900 –U+297f */
171 /* Miscellaneous Mathematical Symbols-B : U+2980 –U+29ff */
172 /* Supplemental Mathematical Operators : U+2a00 –U+2aff */
173 /* Miscellaneous Symbols and Arrows : U+2b00 –U+2bff */
174 { Script_Latin, 0x2900, 0x2bff, 0, 0},
175 /* Latin Extended-C: U+2C60–U+2C7F */
176 { Script_Latin, 0x2c60, 0x2c7f, 0, 0},
177 /* Georgian: U+2D00–U+2D2F */
178 { Script_Georgian, 0x2d00, 0x2d2f, 0, 0},
179 /* Tifinagh: U+2D30–U+2D7F */
180 { Script_Tifinagh, 0x2d30, 0x2d7f, 0, 0},
181 /* Ethiopic Extensions: U+2D80–U+2DDF */
182 { Script_Ethiopic, 0x2d80, 0x2ddf, 0, 0},
183 /* Cyrillic Extended-A: U+2DE0–U+2DFF */
184 { Script_Cyrillic, 0x2de0, 0x2dff, 0, 0},
185 /* CJK Radicals Supplement: U+2E80–U+2EFF */
186 /* Kangxi Radicals: U+2F00–U+2FDF */
187 { Script_CJK_Han, 0x2e80, 0x2fdf, 0, 0},
188 /* Ideographic Description Characters: U+2FF0–U+2FFF */
189 { Script_Ideograph ,0x2ff0, 0x2fff, 0, 0},
190 /* CJK Symbols and Punctuation: U+3000–U+303F */
191 { Script_Ideograph ,0x3000, 0x3004, 0, 0},
192 { Script_CJK_Han ,0x3005, 0x3005, 0, 0},
193 { Script_Ideograph ,0x3006, 0x3006, 0, 0},
194 { Script_CJK_Han ,0x3007, 0x3007, 0, 0},
195 { Script_Ideograph ,0x3008, 0x3020, 0, 0},
196 { Script_CJK_Han ,0x3021, 0x3029, 0, 0},
197 { Script_Ideograph ,0x302a, 0x3030, 0, 0},
198 /* Kana Marks: */
199 { Script_Kana ,0x3031, 0x3035, 0, 0},
200 { Script_Ideograph ,0x3036, 0x3037, 0, 0},
201 { Script_CJK_Han ,0x3038, 0x303b, 0, 0},
202 { Script_Ideograph ,0x303c, 0x303f, 0, 0},
203 /* Hiragana: U+3040–U+309F */
204 /* Katakana: U+30A0–U+30FF */
205 { Script_Kana ,0x3040, 0x30ff, 0, 0},
206 /* Bopomofo: U+3100–U+312F */
207 { Script_Bopomofo ,0x3100, 0x312f, 0, 0},
208 /* Hangul Compatibility Jamo: U+3130–U+318F */
209 { Script_Hangul ,0x3130, 0x318f, 0, 0},
210 /* Kanbun: U+3190–U+319F */
211 { Script_Ideograph ,0x3190, 0x319f, 0, 0},
212 /* Bopomofo Extended: U+31A0–U+31BF */
213 { Script_Bopomofo ,0x31a0, 0x31bf, 0, 0},
214 /* CJK Strokes: U+31C0–U+31EF */
215 { Script_Ideograph ,0x31c0, 0x31ef, 0, 0},
216 /* Katakana Phonetic Extensions: U+31F0–U+31FF */
217 { Script_Kana ,0x31f0, 0x31ff, 0, 0},
218 /* Enclosed CJK Letters and Months: U+3200–U+32FF */
219 { Script_Hangul ,0x3200, 0x321f, 0, 0},
220 { Script_Ideograph ,0x3220, 0x325f, 0, 0},
221 { Script_Hangul ,0x3260, 0x327f, 0, 0},
222 { Script_Ideograph ,0x3280, 0x32ef, 0, 0},
223 { Script_Kana ,0x32d0, 0x31ff, 0, 0},
224 /* CJK Compatibility: U+3300–U+33FF*/
225 { Script_Kana ,0x3300, 0x3357, 0, 0},
226 { Script_Ideograph ,0x3358, 0x33ff, 0, 0},
227 /* CJK Unified Ideographs Extension A: U+3400–U+4DBF */
228 { Script_CJK_Han ,0x3400, 0x4dbf, 0, 0},
229 /* CJK Unified Ideographs: U+4E00–U+9FFF */
230 { Script_CJK_Han ,0x4e00, 0x9fff, 0, 0},
231 /* Yi: U+A000–U+A4CF */
232 { Script_Yi ,0xa000, 0xa4cf, 0, 0},
233 /* Vai: U+A500–U+A63F */
234 { Script_Vai ,0xa500, 0xa63f, Script_Vai_Numeric, 0},
235 /* Cyrillic Extended-B: U+A640–U+A69F */
236 { Script_Cyrillic, 0xa640, 0xa69f, 0, 0},
237 /* Modifier Tone Letters: U+A700–U+A71F */
238 /* Latin Extended-D: U+A720–U+A7FF */
239 { Script_Latin, 0xa700, 0xa7ff, 0, 0},
240 /* Phags-pa: U+A840–U+A87F */
241 { Script_Phags_pa, 0xa840, 0xa87f, 0, 0},
242 /* Devanagari Extended: U+A8E0-U+A8FF */
243 { Script_Devanagari, 0xa8e0, 0xa8ff, Script_Devanagari_Numeric, 0},
244 /* Myanmar Extended-A: U+AA60–U+AA7F */
245 { Script_Myanmar, 0xaa60, 0xaa7f, Script_Myanmar_Numeric, 0},
246 /* Hangul Jamo Extended-A: U+A960–U+A97F */
247 { Script_Hangul, 0xa960, 0xa97f, 0, 0},
248 /* Hangul Syllables: U+AC00–U+D7A3 */
249 { Script_Hangul, 0xac00, 0xd7a3, 0, 0},
250 /* Hangul Jamo Extended-B: U+D7B0–U+D7FF */
251 { Script_Hangul, 0xd7b0, 0xd7ff, 0, 0},
252 /* Surrogates Area: U+D800–U+DFFF */
253 { Script_Surrogates, 0xd800, 0xdbfe, 0, 0},
254 { Script_Private, 0xdbff, 0xdc00, 0, 0},
255 { Script_Surrogates, 0xdc01, 0xdfff, 0, 0},
256 /* Private Use Area: U+E000–U+F8FF */
257 { Script_Private, 0xe000, 0xf8ff, 0, 0},
258 /* CJK Compatibility Ideographs: U+F900–U+FAFF */
259 { Script_CJK_Han ,0xf900, 0xfaff, 0, 0},
260 /* Latin Ligatures: U+FB00–U+FB06 */
261 { Script_Latin, 0xfb00, 0xfb06, 0, 0},
262 /* Armenian ligatures U+FB13..U+FB17 */
263 { Script_Armenian, 0xfb13, 0xfb17, 0, 0},
264 /* Alphabetic Presentation Forms: U+FB1D–U+FB4F */
265 { Script_Hebrew, 0xfb1d, 0xfb4f, 0, 0},
266 /* Arabic Presentation Forms-A: U+FB50–U+FDFF*/
267 { Script_Arabic, 0xfb50, 0xfdff, 0, 0},
268 /* Vertical Forms: U+FE10–U+FE1F */
269 /* Combining Half Marks: U+FE20–U+FE2F */
270 /* CJK Compatibility Forms: U+FE30–U+FE4F */
271 /* Small Form Variants: U+FE50–U+FE6F */
272 { Script_Ideograph ,0xfe10, 0xfe6f, 0, 0},
273 /* Arabic Presentation Forms-B: U+FE70–U+FEFF*/
274 { Script_Arabic, 0xfe70, 0xfeff, 0, 0},
275 /* Halfwidth and Fullwidth Forms: U+FF00–FFEF */
276 { Script_Ideograph ,0xff00, 0xff64, Script_Numeric2, 0},
277 { Script_Kana ,0xff65, 0xff9f, 0, 0},
278 { Script_Hangul ,0xffa0, 0xffdf, 0, 0},
279 { Script_Ideograph ,0xffe0, 0xffef, 0, 0},
280 /* Plane - 1 */
281 /* Deseret: U+10400–U+1044F */
282 { Script_Deseret, 0x10400, 0x1044F, 0, 0},
283 /* Osmanya: U+10480–U+104AF */
284 { Script_Osmanya, 0x10480, 0x104AF, Script_Osmanya_Numeric, 0},
285 /* Mathematical Alphanumeric Symbols: U+1D400–U+1D7FF */
286 { Script_MathAlpha, 0x1D400, 0x1D7FF, 0, 0},
287 /* END */
288 { SCRIPT_UNDEFINED, 0, 0, 0}
289 };
290
291 /* the must be in order so that the index matches the Script value */
292 const scriptData scriptInformation[] = {
293 {{SCRIPT_UNDEFINED, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
294 {LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
295 0x00000000,
296 {0}},
297 {{Script_Latin, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
298 {LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
299 MS_MAKE_TAG('l','a','t','n'),
300 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
301 {{Script_CR, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
302 {LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
303 0x00000000,
304 {0}},
305 {{Script_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
306 {LANG_ENGLISH, 1, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
307 0x00000000,
308 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
309 {{Script_Control, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
310 {LANG_ENGLISH, 0, 1, 0, 0, ANSI_CHARSET, 1, 0, 0, 0, 0, 0, 1, 0, 0},
311 0x00000000,
312 {0}},
313 {{Script_Punctuation, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
314 {LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
315 0x00000000,
316 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
317 {{Script_Arabic, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
318 {LANG_ARABIC, 0, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 1, 1, 0},
319 MS_MAKE_TAG('a','r','a','b'),
320 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
321 {{Script_Arabic_Numeric, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
322 {LANG_ARABIC, 1, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
323 MS_MAKE_TAG('a','r','a','b'),
324 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
325 {{Script_Hebrew, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
326 {LANG_HEBREW, 0, 1, 0, 1, HEBREW_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
327 MS_MAKE_TAG('h','e','b','r'),
328 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
329 {{Script_Syriac, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
330 {LANG_SYRIAC, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 1, 0},
331 MS_MAKE_TAG('s','y','r','c'),
332 {'E','s','t','r','a','n','g','e','l','o',' ','E','d','e','s','s','a',0}},
333 {{Script_Persian, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
334 {LANG_PERSIAN, 1, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
335 MS_MAKE_TAG('s','y','r','c'),
336 {'E','s','t','r','a','n','g','e','l','o',' ','E','d','e','s','s','a',0}},
337 {{Script_Thaana, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
338 {LANG_DIVEHI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
339 MS_MAKE_TAG('t','h','a','a'),
340 {'M','V',' ','B','o','l','i',0}},
341 {{Script_Greek, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
342 {LANG_GREEK, 0, 0, 0, 0, GREEK_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
343 MS_MAKE_TAG('g','r','e','k'),
344 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
345 {{Script_Cyrillic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
346 {LANG_RUSSIAN, 0, 0, 0, 0, RUSSIAN_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
347 MS_MAKE_TAG('c','y','r','l'),
348 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
349 {{Script_Armenian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
350 {LANG_ARMENIAN, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
351 MS_MAKE_TAG('a','r','m','n'),
352 {'S','y','l','f','a','e','n',0}},
353 {{Script_Georgian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
354 {LANG_GEORGIAN, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
355 MS_MAKE_TAG('g','e','o','r'),
356 {'S','y','l','f','a','e','n',0}},
357 {{Script_Sinhala, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
358 {LANG_SINHALESE, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
359 MS_MAKE_TAG('s','i','n','h'),
360 {'I','s','k','o','o','l','a',' ','P','o','t','a',0}},
361 {{Script_Tibetan, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
362 {LANG_TIBETAN, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 0},
363 MS_MAKE_TAG('t','i','b','t'),
364 {'M','i','c','r','o','s','o','f','t',' ','H','i','m','a','l','a','y','a',0}},
365 {{Script_Tibetan_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
366 {LANG_TIBETAN, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
367 MS_MAKE_TAG('t','i','b','t'),
368 {'M','i','c','r','o','s','o','f','t',' ','H','i','m','a','l','a','y','a',0}},
369 {{Script_Phags_pa, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
370 {LANG_MONGOLIAN, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
371 MS_MAKE_TAG('p','h','a','g'),
372 {'M','i','c','r','o','s','o','f','t',' ','P','h','a','g','s','P','a',0}},
373 {{Script_Thai, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
374 {LANG_THAI, 0, 1, 1, 1, THAI_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 1},
375 MS_MAKE_TAG('t','h','a','i'),
376 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
377 {{Script_Thai_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
378 {LANG_THAI, 1, 1, 0, 0, THAI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
379 MS_MAKE_TAG('t','h','a','i'),
380 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
381 {{Script_Lao, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
382 {LANG_LAO, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 0},
383 MS_MAKE_TAG('l','a','o',' '),
384 {'D','o','k','C','h','a','m','p','a',0}},
385 {{Script_Lao_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
386 {LANG_LAO, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
387 MS_MAKE_TAG('l','a','o',' '),
388 {'D','o','k','C','h','a','m','p','a',0}},
389 {{Script_Devanagari, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
390 {LANG_HINDI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
391 MS_MAKE_TAG('d','e','v','a'),
392 {'M','a','n','g','a','l',0}},
393 {{Script_Devanagari_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
394 {LANG_HINDI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
395 MS_MAKE_TAG('d','e','v','a'),
396 {'M','a','n','g','a','l',0}},
397 {{Script_Bengali, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
398 {LANG_BENGALI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
399 MS_MAKE_TAG('b','e','n','g'),
400 {'V','r','i','n','d','a',0}},
401 {{Script_Bengali_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
402 {LANG_BENGALI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
403 MS_MAKE_TAG('b','e','n','g'),
404 {'V','r','i','n','d','a',0}},
405 {{Script_Bengali_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
406 {LANG_BENGALI, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
407 MS_MAKE_TAG('b','e','n','g'),
408 {'V','r','i','n','d','a',0}},
409 {{Script_Gurmukhi, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
410 {LANG_PUNJABI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
411 MS_MAKE_TAG('g','u','r','u'),
412 {'R','a','a','v','i',0}},
413 {{Script_Gurmukhi_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
414 {LANG_PUNJABI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
415 MS_MAKE_TAG('g','u','r','u'),
416 {'R','a','a','v','i',0}},
417 {{Script_Gujarati, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
418 {LANG_GUJARATI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
419 MS_MAKE_TAG('g','u','j','r'),
420 {'S','h','r','u','t','i',0}},
421 {{Script_Gujarati_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
422 {LANG_GUJARATI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
423 MS_MAKE_TAG('g','u','j','r'),
424 {'S','h','r','u','t','i',0}},
425 {{Script_Gujarati_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
426 {LANG_GUJARATI, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
427 MS_MAKE_TAG('g','u','j','r'),
428 {'S','h','r','u','t','i',0}},
429 {{Script_Oriya, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
430 {LANG_ORIYA, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
431 MS_MAKE_TAG('o','r','y','a'),
432 {'K','a','l','i','n','g','a',0}},
433 {{Script_Oriya_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
434 {LANG_ORIYA, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
435 MS_MAKE_TAG('o','r','y','a'),
436 {'K','a','l','i','n','g','a',0}},
437 {{Script_Tamil, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
438 {LANG_TAMIL, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
439 MS_MAKE_TAG('t','a','m','l'),
440 {'L','a','t','h','a',0}},
441 {{Script_Tamil_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
442 {LANG_TAMIL, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
443 MS_MAKE_TAG('t','a','m','l'),
444 {'L','a','t','h','a',0}},
445 {{Script_Telugu, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
446 {LANG_TELUGU, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
447 MS_MAKE_TAG('t','e','l','u'),
448 {'G','a','u','t','a','m','i',0}},
449 {{Script_Telugu_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
450 {LANG_TELUGU, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
451 MS_MAKE_TAG('t','e','l','u'),
452 {'G','a','u','t','a','m','i',0}},
453 {{Script_Kannada, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
454 {LANG_KANNADA, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
455 MS_MAKE_TAG('k','n','d','a'),
456 {'T','u','n','g','a',0}},
457 {{Script_Kannada_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
458 {LANG_KANNADA, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
459 MS_MAKE_TAG('k','n','d','a'),
460 {'T','u','n','g','a',0}},
461 {{Script_Malayalam, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
462 {LANG_MALAYALAM, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
463 MS_MAKE_TAG('m','l','y','m'),
464 {'K','a','r','t','i','k','a',0}},
465 {{Script_Malayalam_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
466 {LANG_MALAYALAM, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
467 MS_MAKE_TAG('m','l','y','m'),
468 {'K','a','r','t','i','k','a',0}},
469 {{Script_Diacritical, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
470 {LANG_ENGLISH, 0, 1, 0, 1, ANSI_CHARSET, 0, 0, 0, 0, 0, 1, 1, 0, 0},
471 0x00000000,
472 {0}},
473 {{Script_Punctuation2, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
474 {LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
475 MS_MAKE_TAG('l','a','t','n'),
476 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
477 {{Script_Numeric2, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
478 {LANG_ENGLISH, 1, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
479 0x00000000,
480 {0}},
481 {{Script_Myanmar, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
482 {0x55, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
483 MS_MAKE_TAG('m','y','m','r'),
484 {'M','y','a','n','m','a','r',' ','T','e','x','t',0}},
485 {{Script_Myanmar_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
486 {0x55, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
487 MS_MAKE_TAG('m','y','m','r'),
488 {0}},
489 {{Script_Tai_Le, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
490 {0, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
491 MS_MAKE_TAG('t','a','l','e'),
492 {'M','i','c','r','o','s','o','f','t',' ','T','a','i',' ','L','e',0}},
493 {{Script_New_Tai_Lue, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
494 {0, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
495 MS_MAKE_TAG('t','a','l','u'),
496 {'M','i','c','r','o','s','o','f','t',' ','N','e','w',' ','T','a','i',' ','L','u','e',0}},
497 {{Script_New_Tai_Lue_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
498 {0, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
499 MS_MAKE_TAG('t','a','l','u'),
500 {'M','i','c','r','o','s','o','f','t',' ','N','e','w',' ','T','a','i',' ','L','u','e',0}},
501 {{Script_Khmer, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
502 {0x53, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
503 MS_MAKE_TAG('k','h','m','r'),
504 {'D','a','u','n','P','e','n','h',0}},
505 {{Script_Khmer_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
506 {0x53, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
507 MS_MAKE_TAG('k','h','m','r'),
508 {'D','a','u','n','P','e','n','h',0}},
509 {{Script_CJK_Han, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
510 {LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
511 MS_MAKE_TAG('h','a','n','i'),
512 {0}},
513 {{Script_Ideograph, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
514 {LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
515 MS_MAKE_TAG('h','a','n','i'),
516 {0}},
517 {{Script_Bopomofo, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
518 {LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
519 MS_MAKE_TAG('b','o','p','o'),
520 {0}},
521 {{Script_Kana, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
522 {LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
523 MS_MAKE_TAG('k','a','n','a'),
524 {0}},
525 {{Script_Hangul, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
526 {LANG_KOREAN, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
527 MS_MAKE_TAG('h','a','n','g'),
528 {0}},
529 {{Script_Yi, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
530 {LANG_ENGLISH, 0, 0, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
531 MS_MAKE_TAG('y','i',' ',' '),
532 {'M','i','c','r','o','s','o','f','t',' ','Y','i',' ','B','a','i','t','i',0}},
533 {{Script_Ethiopic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
534 {0x5e, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
535 MS_MAKE_TAG('e','t','h','i'),
536 {'N','y','a','l','a',0}},
537 {{Script_Ethiopic_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
538 {0x5e, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
539 MS_MAKE_TAG('e','t','h','i'),
540 {'N','y','a','l','a',0}},
541 {{Script_Mongolian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
542 {LANG_MONGOLIAN, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
543 MS_MAKE_TAG('m','o','n','g'),
544 {'M','o','n','g','o','l','i','a','n',' ','B','a','i','t','i',0}},
545 {{Script_Mongolian_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
546 {LANG_MONGOLIAN, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
547 MS_MAKE_TAG('m','o','n','g'),
548 {'M','o','n','g','o','l','i','a','n',' ','B','a','i','t','i',0}},
549 {{Script_Tifinagh, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
550 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
551 MS_MAKE_TAG('t','f','n','g'),
552 {'E','b','r','i','m','a',0}},
553 {{Script_NKo, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
554 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
555 MS_MAKE_TAG('n','k','o',' '),
556 {'E','b','r','i','m','a',0}},
557 {{Script_Vai, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
558 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
559 MS_MAKE_TAG('v','a','i',' '),
560 {'E','b','r','i','m','a',0}},
561 {{Script_Vai_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
562 {0, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
563 MS_MAKE_TAG('v','a','i',' '),
564 {'E','b','r','i','m','a',0}},
565 {{Script_Cherokee, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
566 {0x5c, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
567 MS_MAKE_TAG('c','h','e','r'),
568 {'P','l','a','n','t','a','g','e','n','e','t',' ','C','h','e','r','o','k','e','e',0}},
569 {{Script_Canadian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
570 {0x5d, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
571 MS_MAKE_TAG('c','a','n','s'),
572 {'E','u','p','h','e','m','i','a',0}},
573 {{Script_Ogham, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
574 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
575 MS_MAKE_TAG('o','g','a','m'),
576 {'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
577 {{Script_Runic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
578 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
579 MS_MAKE_TAG('r','u','n','r'),
580 {'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
581 {{Script_Braille, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
582 {LANG_ENGLISH, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
583 MS_MAKE_TAG('b','r','a','i'),
584 {'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
585 {{Script_Surrogates, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
586 {LANG_ENGLISH, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
587 0x00000000,
588 {0}},
589 {{Script_Private, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
590 {0, 0, 0, 0, 0, DEFAULT_CHARSET, 0, 1, 0, 0, 0, 0, 1, 0, 0},
591 0x00000000,
592 {0}},
593 {{Script_Deseret, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
594 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
595 MS_MAKE_TAG('d','s','r','t'),
596 {'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
597 {{Script_Osmanya, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
598 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
599 MS_MAKE_TAG('o','s','m','a'),
600 {'E','b','r','i','m','a',0}},
601 {{Script_Osmanya_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
602 {0, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
603 MS_MAKE_TAG('o','s','m','a'),
604 {'E','b','r','i','m','a',0}},
605 {{Script_MathAlpha, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
606 {0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
607 MS_MAKE_TAG('m','a','t','h'),
608 {'C','a','m','b','r','i','a',' ','M','a','t','h',0}},
609 {{Script_Hebrew_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
610 {LANG_HEBREW, 0, 1, 0, 0, HEBREW_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
611 MS_MAKE_TAG('h','e','b','r'),
612 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
613 {{Script_Vietnamese_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
614 {LANG_VIETNAMESE, 0, 0, 0, 0, VIETNAMESE_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
615 MS_MAKE_TAG('l','a','t','n'),
616 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
617 {{Script_Thai_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
618 {LANG_THAI, 0, 1, 0, 0, THAI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
619 MS_MAKE_TAG('t','h','a','i'),
620 {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
621 };
622
623 static const SCRIPT_PROPERTIES *script_props[] =
624 {
625 &scriptInformation[0].props, &scriptInformation[1].props,
626 &scriptInformation[2].props, &scriptInformation[3].props,
627 &scriptInformation[4].props, &scriptInformation[5].props,
628 &scriptInformation[6].props, &scriptInformation[7].props,
629 &scriptInformation[8].props, &scriptInformation[9].props,
630 &scriptInformation[10].props, &scriptInformation[11].props,
631 &scriptInformation[12].props, &scriptInformation[13].props,
632 &scriptInformation[14].props, &scriptInformation[15].props,
633 &scriptInformation[16].props, &scriptInformation[17].props,
634 &scriptInformation[18].props, &scriptInformation[19].props,
635 &scriptInformation[20].props, &scriptInformation[21].props,
636 &scriptInformation[22].props, &scriptInformation[23].props,
637 &scriptInformation[24].props, &scriptInformation[25].props,
638 &scriptInformation[26].props, &scriptInformation[27].props,
639 &scriptInformation[28].props, &scriptInformation[29].props,
640 &scriptInformation[30].props, &scriptInformation[31].props,
641 &scriptInformation[32].props, &scriptInformation[33].props,
642 &scriptInformation[34].props, &scriptInformation[35].props,
643 &scriptInformation[36].props, &scriptInformation[37].props,
644 &scriptInformation[38].props, &scriptInformation[39].props,
645 &scriptInformation[40].props, &scriptInformation[41].props,
646 &scriptInformation[42].props, &scriptInformation[43].props,
647 &scriptInformation[44].props, &scriptInformation[45].props,
648 &scriptInformation[46].props, &scriptInformation[47].props,
649 &scriptInformation[48].props, &scriptInformation[49].props,
650 &scriptInformation[50].props, &scriptInformation[51].props,
651 &scriptInformation[52].props, &scriptInformation[53].props,
652 &scriptInformation[54].props, &scriptInformation[55].props,
653 &scriptInformation[56].props, &scriptInformation[57].props,
654 &scriptInformation[58].props, &scriptInformation[59].props,
655 &scriptInformation[60].props, &scriptInformation[61].props,
656 &scriptInformation[62].props, &scriptInformation[63].props,
657 &scriptInformation[64].props, &scriptInformation[65].props,
658 &scriptInformation[66].props, &scriptInformation[67].props,
659 &scriptInformation[68].props, &scriptInformation[69].props,
660 &scriptInformation[70].props, &scriptInformation[71].props,
661 &scriptInformation[72].props, &scriptInformation[73].props,
662 &scriptInformation[74].props, &scriptInformation[75].props,
663 &scriptInformation[76].props, &scriptInformation[77].props,
664 &scriptInformation[78].props, &scriptInformation[79].props,
665 &scriptInformation[80].props, &scriptInformation[81].props
666 };
667
668 typedef struct {
669 ScriptCache *sc;
670 int numGlyphs;
671 WORD* glyphs;
672 WORD* pwLogClust;
673 int* piAdvance;
674 SCRIPT_VISATTR* psva;
675 GOFFSET* pGoffset;
676 ABC* abc;
677 int iMaxPosX;
678 HFONT fallbackFont;
679 } StringGlyphs;
680
681 typedef struct {
682 HDC hdc;
683 DWORD dwFlags;
684 BOOL invalid;
685 int clip_len;
686 int cItems;
687 int cMaxGlyphs;
688 SCRIPT_ITEM* pItem;
689 int numItems;
690 StringGlyphs* glyphs;
691 SCRIPT_LOGATTR* logattrs;
692 SIZE* sz;
693 int* logical2visual;
694 } StringAnalysis;
695
696 typedef struct {
697 BOOL ascending;
698 WORD target;
699 } FindGlyph_struct;
700
701 static inline void *heap_alloc(SIZE_T size)
702 {
703 return HeapAlloc(GetProcessHeap(), 0, size);
704 }
705
706 static inline void *heap_alloc_zero(SIZE_T size)
707 {
708 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
709 }
710
711 static inline void *heap_realloc_zero(LPVOID mem, SIZE_T size)
712 {
713 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
714 }
715
716 static inline BOOL heap_free(LPVOID mem)
717 {
718 return HeapFree(GetProcessHeap(), 0, mem);
719 }
720
721 /* TODO Fix font properties on Arabic locale */
722 static inline BOOL set_cache_font_properties(const HDC hdc, ScriptCache *sc)
723 {
724 if (!sc->sfnt)
725 {
726 sc->sfp.wgBlank = sc->tm.tmBreakChar;
727 sc->sfp.wgDefault = sc->tm.tmDefaultChar;
728 sc->sfp.wgInvalid = sc->sfp.wgBlank;
729 sc->sfp.wgKashida = 0xFFFF;
730 sc->sfp.iKashidaWidth = 0;
731 }
732 else
733 {
734 static const WCHAR chars[4] = {0x0020, 0x200B, 0xF71B, 0x0640};
735 /* U+0020: numeric space
736 U+200B: zero width space
737 U+F71B: unknow char found by black box testing
738 U+0640: kashida */
739 WORD gi[4];
740
741 if (GetGlyphIndicesW(hdc, chars, 4, gi, GGI_MARK_NONEXISTING_GLYPHS) != GDI_ERROR)
742 {
743 if(gi[0] != 0xFFFF) /* 0xFFFF: index of default non exist char */
744 sc->sfp.wgBlank = gi[0];
745 else
746 sc->sfp.wgBlank = 0;
747
748 sc->sfp.wgDefault = 0;
749
750 if (gi[2] != 0xFFFF)
751 sc->sfp.wgInvalid = gi[2];
752 else if (gi[1] != 0xFFFF)
753 sc->sfp.wgInvalid = gi[1];
754 else if (gi[0] != 0xFFFF)
755 sc->sfp.wgInvalid = gi[0];
756 else
757 sc->sfp.wgInvalid = 0;
758
759 sc->sfp.wgKashida = gi[3];
760
761 sc->sfp.iKashidaWidth = 0; /* TODO */
762 }
763 else
764 return FALSE;
765 }
766 return TRUE;
767 }
768
769 static inline void get_cache_font_properties(SCRIPT_FONTPROPERTIES *sfp, ScriptCache *sc)
770 {
771 sfp->wgBlank = sc->sfp.wgBlank;
772 sfp->wgDefault = sc->sfp.wgDefault;
773 sfp->wgInvalid = sc->sfp.wgInvalid;
774 sfp->wgKashida = sc->sfp.wgKashida;
775 sfp->iKashidaWidth = sc->sfp.iKashidaWidth;
776 }
777
778 static inline LONG get_cache_height(SCRIPT_CACHE *psc)
779 {
780 return ((ScriptCache *)*psc)->tm.tmHeight;
781 }
782
783 static inline BYTE get_cache_pitch_family(SCRIPT_CACHE *psc)
784 {
785 return ((ScriptCache *)*psc)->tm.tmPitchAndFamily;
786 }
787
788 static inline WORD get_cache_glyph(SCRIPT_CACHE *psc, DWORD c)
789 {
790 CacheGlyphPage *page = ((ScriptCache *)*psc)->page[c / 0x10000];
791 WORD *block;
792
793 if (!page) return 0;
794 block = page->glyphs[(c % 0x10000) >> GLYPH_BLOCK_SHIFT];
795 if (!block) return 0;
796 return block[(c % 0x10000) & GLYPH_BLOCK_MASK];
797 }
798
799 static inline WORD set_cache_glyph(SCRIPT_CACHE *psc, WCHAR c, WORD glyph)
800 {
801 CacheGlyphPage **page = &((ScriptCache *)*psc)->page[c / 0x10000];
802 WORD **block;
803 if (!*page && !(*page = heap_alloc_zero(sizeof(CacheGlyphPage)))) return 0;
804
805 block = &(*page)->glyphs[(c % 0x10000) >> GLYPH_BLOCK_SHIFT];
806 if (!*block && !(*block = heap_alloc_zero(sizeof(WORD) * GLYPH_BLOCK_SIZE))) return 0;
807 return ((*block)[(c % 0x10000) & GLYPH_BLOCK_MASK] = glyph);
808 }
809
810 static inline BOOL get_cache_glyph_widths(SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
811 {
812 static const ABC nil;
813 ABC *block = ((ScriptCache *)*psc)->widths[glyph >> GLYPH_BLOCK_SHIFT];
814
815 if (!block || !memcmp(&block[glyph & GLYPH_BLOCK_MASK], &nil, sizeof(ABC))) return FALSE;
816 memcpy(abc, &block[glyph & GLYPH_BLOCK_MASK], sizeof(ABC));
817 return TRUE;
818 }
819
820 static inline BOOL set_cache_glyph_widths(SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
821 {
822 ABC **block = &((ScriptCache *)*psc)->widths[glyph >> GLYPH_BLOCK_SHIFT];
823
824 if (!*block && !(*block = heap_alloc_zero(sizeof(ABC) * GLYPH_BLOCK_SIZE))) return FALSE;
825 memcpy(&(*block)[glyph & GLYPH_BLOCK_MASK], abc, sizeof(ABC));
826 return TRUE;
827 }
828
829 static HRESULT init_script_cache(const HDC hdc, SCRIPT_CACHE *psc)
830 {
831 ScriptCache *sc;
832 int size;
833
834 if (!psc) return E_INVALIDARG;
835 if (*psc) return S_OK;
836 if (!hdc) return E_PENDING;
837
838 if (!(sc = heap_alloc_zero(sizeof(ScriptCache)))) return E_OUTOFMEMORY;
839 if (!GetTextMetricsW(hdc, &sc->tm))
840 {
841 heap_free(sc);
842 return E_INVALIDARG;
843 }
844 size = GetOutlineTextMetricsW(hdc, 0, NULL);
845 if (size)
846 {
847 sc->otm = heap_alloc(size);
848 sc->otm->otmSize = size;
849 GetOutlineTextMetricsW(hdc, size, sc->otm);
850 }
851 if (!GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(LOGFONTW), &sc->lf))
852 {
853 heap_free(sc);
854 return E_INVALIDARG;
855 }
856 sc->sfnt = (GetFontData(hdc, MS_MAKE_TAG('h','e','a','d'), 0, NULL, 0)!=GDI_ERROR);
857 if (!set_cache_font_properties(hdc, sc))
858 {
859 heap_free(sc);
860 return E_INVALIDARG;
861 }
862 *psc = sc;
863 TRACE("<- %p\n", sc);
864 return S_OK;
865 }
866
867 static WCHAR mirror_char( WCHAR ch )
868 {
869 extern const WCHAR wine_mirror_map[];
870 return ch + wine_mirror_map[wine_mirror_map[ch >> 8] + (ch & 0xff)];
871 }
872
873 static inline DWORD decode_surrogate_pair(LPCWSTR str, INT index, INT end)
874 {
875 if (index < end-1 && IS_SURROGATE_PAIR(str[index],str[index+1]))
876 {
877 DWORD ch = 0x10000 + ((str[index] - 0xd800) << 10) + (str[index+1] - 0xdc00);
878 TRACE("Surrogate Pair %x %x => %x\n",str[index], str[index+1], ch);
879 return ch;
880 }
881 return 0;
882 }
883
884 static WORD get_char_script( LPCWSTR str, INT index, INT end, INT *consumed)
885 {
886 static const WCHAR latin_punc[] = {'#','$','&','\'',',',';','<','>','?','@','\\','^','_','`','{','|','}','~', 0x00a0, 0};
887 WORD type = 0;
888 DWORD ch;
889 int i;
890
891 *consumed = 1;
892
893 if (str[index] == 0xc || str[index] == 0x20 || str[index] == 0x202f)
894 return Script_CR;
895
896 /* These punctuation characters are separated out as Latin punctuation */
897 if (strchrW(latin_punc,str[index]))
898 return Script_Punctuation2;
899
900 /* These chars are itemized as Punctuation by Windows */
901 if (str[index] == 0x2212 || str[index] == 0x2044)
902 return Script_Punctuation;
903
904 /* Currency Symboles by Unicode point */
905 switch (str[index])
906 {
907 case 0x09f2:
908 case 0x09f3: return Script_Bengali_Currency;
909 case 0x0af1: return Script_Gujarati_Currency;
910 case 0x0e3f: return Script_Thai_Currency;
911 case 0x20aa: return Script_Hebrew_Currency;
912 case 0x20ab: return Script_Vietnamese_Currency;
913 case 0xfb29: return Script_Hebrew_Currency;
914 }
915
916 GetStringTypeW(CT_CTYPE1, &str[index], 1, &type);
917
918 if (type == 0)
919 return SCRIPT_UNDEFINED;
920
921 if (type & C1_CNTRL)
922 return Script_Control;
923
924 ch = decode_surrogate_pair(str, index, end);
925 if (ch)
926 *consumed = 2;
927 else
928 ch = str[index];
929
930 i = 0;
931 do
932 {
933 if (ch < scriptRanges[i].rangeFirst || scriptRanges[i].script == SCRIPT_UNDEFINED)
934 break;
935
936 if (ch >= scriptRanges[i].rangeFirst && ch <= scriptRanges[i].rangeLast)
937 {
938 if (scriptRanges[i].numericScript && type & C1_DIGIT)
939 return scriptRanges[i].numericScript;
940 if (scriptRanges[i].punctScript && type & C1_PUNCT)
941 return scriptRanges[i].punctScript;
942 return scriptRanges[i].script;
943 }
944 i++;
945 } while (1);
946
947 return SCRIPT_UNDEFINED;
948 }
949
950 static int compare_FindGlyph(const void *a, const void* b)
951 {
952 const FindGlyph_struct *find = (FindGlyph_struct*)a;
953 const WORD *idx= (WORD*)b;
954 int rc = 0;
955
956 if ( find->target > *idx)
957 rc = 1;
958 else if (find->target < *idx)
959 rc = -1;
960
961 if (!find->ascending)
962 rc *= -1;
963 return rc;
964 }
965
966 int USP10_FindGlyphInLogClust(const WORD* pwLogClust, int cChars, WORD target)
967 {
968 FindGlyph_struct fgs;
969 WORD *ptr;
970 INT k;
971
972 if (pwLogClust[0] < pwLogClust[cChars-1])
973 fgs.ascending = TRUE;
974 else
975 fgs.ascending = FALSE;
976
977 fgs.target = target;
978 ptr = bsearch(&fgs, pwLogClust, cChars, sizeof(WORD), compare_FindGlyph);
979
980 if (!ptr)
981 return -1;
982
983 for (k = (ptr - pwLogClust)-1; k >= 0 && pwLogClust[k] == target; k--)
984 ;
985 k++;
986
987 return k;
988 }
989
990 /***********************************************************************
991 * ScriptFreeCache (USP10.@)
992 *
993 * Free a script cache.
994 *
995 * PARAMS
996 * psc [I/O] Script cache.
997 *
998 * RETURNS
999 * Success: S_OK
1000 * Failure: Non-zero HRESULT value.
1001 */
1002 HRESULT WINAPI ScriptFreeCache(SCRIPT_CACHE *psc)
1003 {
1004 TRACE("%p\n", psc);
1005
1006 if (psc && *psc)
1007 {
1008 unsigned int i;
1009 INT n;
1010 for (i = 0; i < GLYPH_MAX / GLYPH_BLOCK_SIZE; i++)
1011 {
1012 heap_free(((ScriptCache *)*psc)->widths[i]);
1013 }
1014 for (i = 0; i < 0x10; i++)
1015 {
1016 unsigned int j;
1017 if (((ScriptCache *)*psc)->page[i])
1018 for (j = 0; j < GLYPH_MAX / GLYPH_BLOCK_SIZE; j++)
1019 heap_free(((ScriptCache *)*psc)->page[i]->glyphs[j]);
1020 heap_free(((ScriptCache *)*psc)->page[i]);
1021 }
1022 heap_free(((ScriptCache *)*psc)->GSUB_Table);
1023 heap_free(((ScriptCache *)*psc)->GDEF_Table);
1024 heap_free(((ScriptCache *)*psc)->CMAP_Table);
1025 heap_free(((ScriptCache *)*psc)->GPOS_Table);
1026 for (n = 0; n < ((ScriptCache *)*psc)->script_count; n++)
1027 {
1028 int j;
1029 for (j = 0; j < ((ScriptCache *)*psc)->scripts[n].language_count; j++)
1030 {
1031 int k;
1032 for (k = 0; k < ((ScriptCache *)*psc)->scripts[n].languages[j].feature_count; k++)
1033 heap_free(((ScriptCache *)*psc)->scripts[n].languages[j].features[k].lookups);
1034 heap_free(((ScriptCache *)*psc)->scripts[n].languages[j].features);
1035 }
1036 for (j = 0; j < ((ScriptCache *)*psc)->scripts[n].default_language.feature_count; j++)
1037 heap_free(((ScriptCache *)*psc)->scripts[n].default_language.features[j].lookups);
1038 heap_free(((ScriptCache *)*psc)->scripts[n].default_language.features);
1039 heap_free(((ScriptCache *)*psc)->scripts[n].languages);
1040 }
1041 heap_free(((ScriptCache *)*psc)->scripts);
1042 heap_free(((ScriptCache *)*psc)->otm);
1043 heap_free(*psc);
1044 *psc = NULL;
1045 }
1046 return S_OK;
1047 }
1048
1049 /***********************************************************************
1050 * ScriptGetProperties (USP10.@)
1051 *
1052 * Retrieve a list of script properties.
1053 *
1054 * PARAMS
1055 * props [I] Pointer to an array of SCRIPT_PROPERTIES pointers.
1056 * num [I] Pointer to the number of scripts.
1057 *
1058 * RETURNS
1059 * Success: S_OK
1060 * Failure: Non-zero HRESULT value.
1061 *
1062 * NOTES
1063 * Behaviour matches WinXP.
1064 */
1065 HRESULT WINAPI ScriptGetProperties(const SCRIPT_PROPERTIES ***props, int *num)
1066 {
1067 TRACE("(%p,%p)\n", props, num);
1068
1069 if (!props && !num) return E_INVALIDARG;
1070
1071 if (num) *num = sizeof(script_props)/sizeof(script_props[0]);
1072 if (props) *props = script_props;
1073
1074 return S_OK;
1075 }
1076
1077 /***********************************************************************
1078 * ScriptGetFontProperties (USP10.@)
1079 *
1080 * Get information on special glyphs.
1081 *
1082 * PARAMS
1083 * hdc [I] Device context.
1084 * psc [I/O] Opaque pointer to a script cache.
1085 * sfp [O] Font properties structure.
1086 */
1087 HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp)
1088 {
1089 HRESULT hr;
1090
1091 TRACE("%p,%p,%p\n", hdc, psc, sfp);
1092
1093 if (!sfp) return E_INVALIDARG;
1094 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
1095
1096 if (sfp->cBytes != sizeof(SCRIPT_FONTPROPERTIES))
1097 return E_INVALIDARG;
1098
1099 get_cache_font_properties(sfp, *psc);
1100
1101 return S_OK;
1102 }
1103
1104 /***********************************************************************
1105 * ScriptRecordDigitSubstitution (USP10.@)
1106 *
1107 * Record digit substitution settings for a given locale.
1108 *
1109 * PARAMS
1110 * locale [I] Locale identifier.
1111 * sds [I] Structure to record substitution settings.
1112 *
1113 * RETURNS
1114 * Success: S_OK
1115 * Failure: E_POINTER if sds is NULL, E_INVALIDARG otherwise.
1116 *
1117 * SEE ALSO
1118 * http://blogs.msdn.com/michkap/archive/2006/02/22/536877.aspx
1119 */
1120 HRESULT WINAPI ScriptRecordDigitSubstitution(LCID locale, SCRIPT_DIGITSUBSTITUTE *sds)
1121 {
1122 DWORD plgid, sub;
1123
1124 TRACE("0x%x, %p\n", locale, sds);
1125
1126 /* This implementation appears to be correct for all languages, but it's
1127 * not clear if sds->DigitSubstitute is ever set to anything except
1128 * CONTEXT or NONE in reality */
1129
1130 if (!sds) return E_POINTER;
1131
1132 locale = ConvertDefaultLocale(locale);
1133
1134 if (!IsValidLocale(locale, LCID_INSTALLED))
1135 return E_INVALIDARG;
1136
1137 plgid = PRIMARYLANGID(LANGIDFROMLCID(locale));
1138 sds->TraditionalDigitLanguage = plgid;
1139
1140 if (plgid == LANG_ARABIC || plgid == LANG_FARSI)
1141 sds->NationalDigitLanguage = plgid;
1142 else
1143 sds->NationalDigitLanguage = LANG_ENGLISH;
1144
1145 if (!GetLocaleInfoW(locale, LOCALE_IDIGITSUBSTITUTION | LOCALE_RETURN_NUMBER,
1146 (LPWSTR)&sub, sizeof(sub)/sizeof(WCHAR))) return E_INVALIDARG;
1147
1148 switch (sub)
1149 {
1150 case 0:
1151 if (plgid == LANG_ARABIC || plgid == LANG_FARSI)
1152 sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_CONTEXT;
1153 else
1154 sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NONE;
1155 break;
1156 case 1:
1157 sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NONE;
1158 break;
1159 case 2:
1160 sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NATIONAL;
1161 break;
1162 default:
1163 sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_TRADITIONAL;
1164 break;
1165 }
1166
1167 sds->dwReserved = 0;
1168 return S_OK;
1169 }
1170
1171 /***********************************************************************
1172 * ScriptApplyDigitSubstitution (USP10.@)
1173 *
1174 * Apply digit substitution settings.
1175 *
1176 * PARAMS
1177 * sds [I] Structure with recorded substitution settings.
1178 * sc [I] Script control structure.
1179 * ss [I] Script state structure.
1180 *
1181 * RETURNS
1182 * Success: S_OK
1183 * Failure: E_INVALIDARG if sds is invalid. Otherwise an HRESULT.
1184 */
1185 HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE *sds,
1186 SCRIPT_CONTROL *sc, SCRIPT_STATE *ss)
1187 {
1188 SCRIPT_DIGITSUBSTITUTE psds;
1189
1190 TRACE("%p, %p, %p\n", sds, sc, ss);
1191
1192 if (!sc || !ss) return E_POINTER;
1193 if (!sds)
1194 {
1195 sds = &psds;
1196 if (ScriptRecordDigitSubstitution(LOCALE_USER_DEFAULT, &psds) != S_OK)
1197 return E_INVALIDARG;
1198 }
1199
1200 sc->uDefaultLanguage = LANG_ENGLISH;
1201 sc->fContextDigits = 0;
1202 ss->fDigitSubstitute = 0;
1203
1204 switch (sds->DigitSubstitute) {
1205 case SCRIPT_DIGITSUBSTITUTE_CONTEXT:
1206 case SCRIPT_DIGITSUBSTITUTE_NATIONAL:
1207 case SCRIPT_DIGITSUBSTITUTE_NONE:
1208 case SCRIPT_DIGITSUBSTITUTE_TRADITIONAL:
1209 return S_OK;
1210 default:
1211 return E_INVALIDARG;
1212 }
1213 }
1214
1215 static inline BOOL is_indic(WORD script)
1216 {
1217 return (script >= Script_Devanagari && script <= Script_Malayalam_Numeric);
1218 }
1219
1220 static inline WORD base_indic(WORD script)
1221 {
1222 switch (script)
1223 {
1224 case Script_Devanagari:
1225 case Script_Devanagari_Numeric: return Script_Devanagari;
1226 case Script_Bengali:
1227 case Script_Bengali_Numeric:
1228 case Script_Bengali_Currency: return Script_Bengali;
1229 case Script_Gurmukhi:
1230 case Script_Gurmukhi_Numeric: return Script_Gurmukhi;
1231 case Script_Gujarati:
1232 case Script_Gujarati_Numeric:
1233 case Script_Gujarati_Currency: return Script_Gujarati;
1234 case Script_Oriya:
1235 case Script_Oriya_Numeric: return Script_Oriya;
1236 case Script_Tamil:
1237 case Script_Tamil_Numeric: return Script_Tamil;
1238 case Script_Telugu:
1239 case Script_Telugu_Numeric: return Script_Telugu;
1240 case Script_Kannada:
1241 case Script_Kannada_Numeric: return Script_Kannada;
1242 case Script_Malayalam:
1243 case Script_Malayalam_Numeric: return Script_Malayalam;
1244 default:
1245 return -1;
1246 };
1247 }
1248
1249
1250 static HRESULT _ItemizeInternal(const WCHAR *pwcInChars, int cInChars,
1251 int cMaxItems, const SCRIPT_CONTROL *psControl,
1252 const SCRIPT_STATE *psState, SCRIPT_ITEM *pItems,
1253 OPENTYPE_TAG *pScriptTags, int *pcItems)
1254 {
1255
1256 #define Numeric_space 0x0020
1257 #define ZWNJ 0x200C
1258 #define ZWJ 0x200D
1259
1260 int cnt = 0, index = 0, str = 0;
1261 int New_Script = -1;
1262 int i;
1263 WORD *levels = NULL;
1264 WORD *strength = NULL;
1265 WORD *scripts = NULL;
1266 WORD baselevel = 0;
1267 BOOL new_run;
1268 WORD last_indic = -1;
1269 WORD layoutRTL = 0;
1270 BOOL forceLevels = FALSE;
1271 INT consumed = 0;
1272 HRESULT res = E_OUTOFMEMORY;
1273
1274 TRACE("%s,%d,%d,%p,%p,%p,%p\n", debugstr_wn(pwcInChars, cInChars), cInChars, cMaxItems,
1275 psControl, psState, pItems, pcItems);
1276
1277 if (!pwcInChars || !cInChars || !pItems || cMaxItems < 2)
1278 return E_INVALIDARG;
1279
1280 scripts = heap_alloc(cInChars * sizeof(WORD));
1281 if (!scripts)
1282 return E_OUTOFMEMORY;
1283
1284 for (i = 0; i < cInChars; i++)
1285 {
1286 if (consumed <= 0)
1287 {
1288 scripts[i] = get_char_script(pwcInChars,i,cInChars,&consumed);
1289 consumed --;
1290 }
1291 else
1292 {
1293 scripts[i] = scripts[i-1];
1294 consumed --;
1295 }
1296 /* Devanagari danda (U+0964) and double danda (U+0965) are used for
1297 all Indic scripts */
1298 if ((pwcInChars[i] == 0x964 || pwcInChars[i] ==0x965) && last_indic > 0)
1299 scripts[i] = last_indic;
1300 else if (is_indic(scripts[i]))
1301 last_indic = base_indic(scripts[i]);
1302
1303 /* Some unicode points (Zero Width Space U+200B -
1304 Right-to-Left Mark U+200F) will force us into bidi mode */
1305 if (!forceLevels && pwcInChars[i] >= 0x200B && pwcInChars[i] <= 0x200F)
1306 forceLevels = TRUE;
1307
1308 /* Diacritical marks merge with other scripts */
1309 if (scripts[i] == Script_Diacritical)
1310 {
1311 if (i > 0)
1312 {
1313 if (pScriptTags)
1314 scripts[i] = scripts[i-1];
1315 else
1316 {
1317 int j;
1318 BOOL asian = FALSE;
1319 WORD first_script = scripts[i-1];
1320 for (j = i-1; j >= 0 && scripts[j] == first_script && pwcInChars[j] != Numeric_space; j--)
1321 {
1322 WORD original = scripts[j];
1323 if (original == Script_Ideograph || original == Script_Kana || original == Script_Yi || original == Script_CJK_Han || original == Script_Bopomofo)
1324 {
1325 asian = TRUE;
1326 break;
1327 }
1328 if (original != Script_MathAlpha && scriptInformation[scripts[j]].props.fComplex)
1329 break;
1330 scripts[j] = scripts[i];
1331 if (original == Script_Punctuation2)
1332 break;
1333 }
1334 if (j >= 0 && (scriptInformation[scripts[j]].props.fComplex || asian))
1335 scripts[i] = scripts[j];
1336 }
1337 }
1338 }
1339 }
1340
1341 for (i = 0; i < cInChars; i++)
1342 {
1343 /* Joiners get merged preferencially right */
1344 if (i > 0 && (pwcInChars[i] == ZWJ || pwcInChars[i] == ZWNJ))
1345 {
1346 int j;
1347 if (i+1 == cInChars)
1348 scripts[i] = scripts[i-1];
1349 else
1350 {
1351 for (j = i+1; j < cInChars; j++)
1352 {
1353 if (pwcInChars[j] != ZWJ && pwcInChars[j] != ZWNJ && pwcInChars[j] != Numeric_space)
1354 {
1355 scripts[i] = scripts[j];
1356 break;
1357 }
1358 }
1359 }
1360 }
1361 }
1362
1363 if (psState && psControl)
1364 {
1365 levels = heap_alloc_zero(cInChars * sizeof(WORD));
1366 if (!levels)
1367 goto nomemory;
1368
1369 BIDI_DetermineLevels(pwcInChars, cInChars, psState, psControl, levels);
1370 baselevel = levels[0];
1371 for (i = 0; i < cInChars; i++)
1372 if (levels[i]!=levels[0])
1373 break;
1374 if (i >= cInChars && !odd(baselevel) && !odd(psState->uBidiLevel) && !forceLevels)
1375 {
1376 heap_free(levels);
1377 levels = NULL;
1378 }
1379 else
1380 {
1381 BOOL inNumber = FALSE;
1382 static const WCHAR math_punc[] = {'#','$','%','+',',','-','.','/',':',0x2212, 0x2044, 0x00a0,0};
1383
1384 strength = heap_alloc_zero(cInChars * sizeof(WORD));
1385 if (!strength)
1386 goto nomemory;
1387 BIDI_GetStrengths(pwcInChars, cInChars, psControl, strength);
1388
1389 /* We currently mis-level leading Diacriticals */
1390 if (scripts[0] == Script_Diacritical)
1391 for (i = 0; i < cInChars && scripts[0] == Script_Diacritical; i++)
1392 {
1393 levels[i] = odd(levels[i])?levels[i]+1:levels[i];
1394 strength[i] = BIDI_STRONG;
1395 }
1396
1397 for (i = 0; i < cInChars; i++)
1398 {
1399 /* Script_Numeric and select puncuation at level 0 get bumped to level 2 */
1400 if ((levels[i] == 0 || (odd(psState->uBidiLevel) && levels[i] == psState->uBidiLevel+1)) && inNumber && strchrW(math_punc,pwcInChars[i]))
1401 {
1402 scripts[i] = Script_Numeric;
1403 levels[i] = 2;
1404 }
1405 else if ((levels[i] == 0 || (odd(psState->uBidiLevel) && levels[i] == psState->uBidiLevel+1)) && scripts[i] == Script_Numeric)
1406 {
1407 levels[i] = 2;
1408 inNumber = TRUE;
1409 }
1410 else
1411 inNumber = FALSE;
1412
1413 /* Joiners get merged preferencially right */
1414 if (i > 0 && (pwcInChars[i] == ZWJ || pwcInChars[i] == ZWNJ))
1415 {
1416 int j;
1417 if (i+1 == cInChars && levels[i-1] == levels[i])
1418 strength[i] = strength[i-1];
1419 else
1420 for (j = i+1; j < cInChars && levels[i] == levels[j]; j++)
1421 if (pwcInChars[j] != ZWJ && pwcInChars[j] != ZWNJ && pwcInChars[j] != Numeric_space)
1422 {
1423 strength[i] = strength[j];
1424 break;
1425 }
1426 }
1427 }
1428 if (psControl->fMergeNeutralItems)
1429 {
1430 /* Merge the neutrals */
1431 for (i = 0; i < cInChars; i++)
1432 {
1433 if (strength[i] == BIDI_NEUTRAL || strength[i] == BIDI_WEAK)
1434 {
1435 int j;
1436 for (j = i; j > 0; j--)
1437 {
1438 if (levels[i] != levels[j])
1439 break;
1440 if ((strength[j] == BIDI_STRONG) || (strength[i] == BIDI_NEUTRAL && strength[j] == BIDI_WEAK))
1441 {
1442 scripts[i] = scripts[j];
1443 strength[i] = strength[j];
1444 break;
1445 }
1446 }
1447 }
1448 /* Try going the other way */
1449 if (strength[i] == BIDI_NEUTRAL || strength[i] == BIDI_WEAK)
1450 {
1451 int j;
1452 for (j = i; j < cInChars; j++)
1453 {
1454 if (levels[i] != levels[j])
1455 break;
1456 if ((strength[j] == BIDI_STRONG) || (strength[i] == BIDI_NEUTRAL && strength[j] == BIDI_WEAK))
1457 {
1458 scripts[i] = scripts[j];
1459 strength[i] = strength[j];
1460 break;
1461 }
1462 }
1463 }
1464 }
1465 }
1466 }
1467 }
1468
1469 while ((!levels || (levels && cnt+1 < cInChars && levels[cnt+1] == levels[0]))
1470 && (cnt < cInChars && pwcInChars[cnt] == Numeric_space))
1471 cnt++;
1472
1473 if (cnt == cInChars) /* All Spaces */
1474 {
1475 cnt = 0;
1476 New_Script = scripts[cnt];
1477 }
1478
1479 pItems[index].iCharPos = 0;
1480 pItems[index].a = scriptInformation[scripts[cnt]].a;
1481 if (pScriptTags)
1482 pScriptTags[index] = scriptInformation[scripts[cnt]].scriptTag;
1483
1484 if (strength && strength[cnt] == BIDI_STRONG)
1485 str = strength[cnt];
1486 else if (strength)
1487 str = strength[0];
1488
1489 cnt = 0;
1490
1491 if (levels)
1492 {
1493 if (strength[cnt] == BIDI_STRONG)
1494 layoutRTL = (odd(levels[cnt]))?1:0;
1495 else
1496 layoutRTL = (psState->uBidiLevel || odd(levels[cnt]))?1:0;
1497 pItems[index].a.fRTL = odd(levels[cnt]);
1498 pItems[index].a.fLayoutRTL = layoutRTL;
1499 pItems[index].a.s.uBidiLevel = levels[cnt];
1500 }
1501 else if (!pItems[index].a.s.uBidiLevel)
1502 {
1503 layoutRTL = (odd(baselevel))?1:0;
1504 pItems[index].a.s.uBidiLevel = baselevel;
1505 pItems[index].a.fLayoutRTL = odd(baselevel);
1506 pItems[index].a.fRTL = odd(baselevel);
1507 }
1508
1509 TRACE("New_Level=%i New_Strength=%i New_Script=%d, eScript=%d index=%d cnt=%d iCharPos=%d\n",
1510 levels?levels[cnt]:-1, str, New_Script, pItems[index].a.eScript, index, cnt,
1511 pItems[index].iCharPos);
1512
1513 for (cnt=1; cnt < cInChars; cnt++)
1514 {
1515 if(pwcInChars[cnt] != Numeric_space)
1516 New_Script = scripts[cnt];
1517 else if (levels)
1518 {
1519 int j = 1;
1520 while (cnt + j < cInChars - 1 && pwcInChars[cnt+j] == Numeric_space && levels[cnt] == levels[cnt+j])
1521 j++;
1522 if (cnt + j < cInChars && levels[cnt] == levels[cnt+j])
1523 New_Script = scripts[cnt+j];
1524 else
1525 New_Script = scripts[cnt];
1526 }
1527
1528 new_run = FALSE;
1529 /* merge space strengths*/
1530 if (strength && strength[cnt] == BIDI_STRONG && str != BIDI_STRONG && New_Script == pItems[index].a.eScript)
1531 str = BIDI_STRONG;
1532
1533 if (strength && strength[cnt] == BIDI_NEUTRAL && str == BIDI_STRONG && pwcInChars[cnt] != Numeric_space && New_Script == pItems[index].a.eScript)
1534 str = BIDI_NEUTRAL;
1535
1536 /* changes in level */
1537 if (levels && (levels[cnt] != pItems[index].a.s.uBidiLevel))
1538 {
1539 TRACE("Level break(%i/%i)\n",pItems[index].a.s.uBidiLevel,levels[cnt]);
1540 new_run = TRUE;
1541 }
1542 /* changes in strength */
1543 else if (strength && pwcInChars[cnt] != Numeric_space && str != strength[cnt])
1544 {
1545 TRACE("Strength break (%i/%i)\n",str,strength[cnt]);
1546 new_run = TRUE;
1547 }
1548 /* changes in script */
1549 else if (((pwcInChars[cnt] != Numeric_space) && (New_Script != -1) && (New_Script != pItems[index].a.eScript)) || (New_Script == Script_Control))
1550 {
1551 TRACE("Script break(%i/%i)\n",pItems[index].a.eScript,New_Script);
1552 new_run = TRUE;
1553 }
1554
1555 if (!new_run && strength && str == BIDI_STRONG)
1556 {
1557 layoutRTL = odd(levels[cnt])?1:0;
1558 pItems[index].a.fLayoutRTL = layoutRTL;
1559 }
1560
1561 if (new_run)
1562 {
1563 TRACE("New_Level = %i, New_Strength = %i, New_Script=%d, eScript=%d\n", levels?levels[cnt]:-1, strength?strength[cnt]:str, New_Script, pItems[index].a.eScript);
1564
1565 index++;
1566 if (index+1 > cMaxItems)
1567 goto nomemory;
1568
1569 if (strength)
1570 str = strength[cnt];
1571
1572 pItems[index].iCharPos = cnt;
1573 memset(&pItems[index].a, 0, sizeof(SCRIPT_ANALYSIS));
1574
1575 pItems[index].a = scriptInformation[New_Script].a;
1576 if (pScriptTags)
1577 pScriptTags[index] = scriptInformation[New_Script].scriptTag;
1578 if (levels)
1579 {
1580 if (levels[cnt] == 0)
1581 layoutRTL = 0;
1582 else
1583 layoutRTL = (layoutRTL || odd(levels[cnt]))?1:0;
1584 pItems[index].a.fRTL = odd(levels[cnt]);
1585 pItems[index].a.fLayoutRTL = layoutRTL;
1586 pItems[index].a.s.uBidiLevel = levels[cnt];
1587 }
1588 else if (!pItems[index].a.s.uBidiLevel)
1589 {
1590 pItems[index].a.s.uBidiLevel = baselevel;
1591 pItems[index].a.fLayoutRTL = layoutRTL;
1592 pItems[index].a.fRTL = odd(baselevel);
1593 }
1594
1595 TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos);
1596 }
1597 }
1598
1599 /* While not strictly necessary according to the spec, make sure the n+1
1600 * item is set up to prevent random behaviour if the caller erroneously
1601 * checks the n+1 structure */
1602 index++;
1603 if (index + 1 > cMaxItems) goto nomemory;
1604 memset(&pItems[index].a, 0, sizeof(SCRIPT_ANALYSIS));
1605
1606 TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos);
1607
1608 /* Set one SCRIPT_STATE item being returned */
1609 if (pcItems) *pcItems = index;
1610
1611 /* Set SCRIPT_ITEM */
1612 pItems[index].iCharPos = cnt; /* the last item contains the ptr to the lastchar */
1613 res = S_OK;
1614 nomemory:
1615 heap_free(levels);
1616 heap_free(strength);
1617 heap_free(scripts);
1618 return res;
1619 }
1620
1621 /***********************************************************************
1622 * ScriptItemizeOpenType (USP10.@)
1623 *
1624 * Split a Unicode string into shapeable parts.
1625 *
1626 * PARAMS
1627 * pwcInChars [I] String to split.
1628 * cInChars [I] Number of characters in pwcInChars.
1629 * cMaxItems [I] Maximum number of items to return.
1630 * psControl [I] Pointer to a SCRIPT_CONTROL structure.
1631 * psState [I] Pointer to a SCRIPT_STATE structure.
1632 * pItems [O] Buffer to receive SCRIPT_ITEM structures.
1633 * pScriptTags [O] Buffer to receive OPENTYPE_TAGs.
1634 * pcItems [O] Number of script items returned.
1635 *
1636 * RETURNS
1637 * Success: S_OK
1638 * Failure: Non-zero HRESULT value.
1639 */
1640 HRESULT WINAPI ScriptItemizeOpenType(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
1641 const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
1642 SCRIPT_ITEM *pItems, OPENTYPE_TAG *pScriptTags, int *pcItems)
1643 {
1644 return _ItemizeInternal(pwcInChars, cInChars, cMaxItems, psControl, psState, pItems, pScriptTags, pcItems);
1645 }
1646
1647 /***********************************************************************
1648 * ScriptItemize (USP10.@)
1649 *
1650 * Split a Unicode string into shapeable parts.
1651 *
1652 * PARAMS
1653 * pwcInChars [I] String to split.
1654 * cInChars [I] Number of characters in pwcInChars.
1655 * cMaxItems [I] Maximum number of items to return.
1656 * psControl [I] Pointer to a SCRIPT_CONTROL structure.
1657 * psState [I] Pointer to a SCRIPT_STATE structure.
1658 * pItems [O] Buffer to receive SCRIPT_ITEM structures.
1659 * pcItems [O] Number of script items returned.
1660 *
1661 * RETURNS
1662 * Success: S_OK
1663 * Failure: Non-zero HRESULT value.
1664 */
1665 HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
1666 const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
1667 SCRIPT_ITEM *pItems, int *pcItems)
1668 {
1669 return _ItemizeInternal(pwcInChars, cInChars, cMaxItems, psControl, psState, pItems, NULL, pcItems);
1670 }
1671
1672 static inline int getGivenTabWidth(ScriptCache *psc, SCRIPT_TABDEF *pTabdef, int charPos, int current_x)
1673 {
1674 int defWidth;
1675 int cTabStops=0;
1676 INT *lpTabPos = NULL;
1677 INT nTabOrg = 0;
1678 INT x = 0;
1679
1680 if (pTabdef)
1681 lpTabPos = pTabdef->pTabStops;
1682
1683 if (pTabdef && pTabdef->iTabOrigin)
1684 {
1685 if (pTabdef->iScale)
1686 nTabOrg = (pTabdef->iTabOrigin * pTabdef->iScale)/4;
1687 else
1688 nTabOrg = pTabdef->iTabOrigin * psc->tm.tmAveCharWidth;
1689 }
1690
1691 if (pTabdef)
1692 cTabStops = pTabdef->cTabStops;
1693
1694 if (cTabStops == 1)
1695 {
1696 if (pTabdef->iScale)
1697 defWidth = ((pTabdef->pTabStops[0])*pTabdef->iScale) / 4;
1698 else
1699 defWidth = (pTabdef->pTabStops[0])*psc->tm.tmAveCharWidth;
1700 cTabStops = 0;
1701 }
1702 else
1703 defWidth = 8 * psc->tm.tmAveCharWidth;
1704
1705 for (; cTabStops>0 ; lpTabPos++, cTabStops--)
1706 {
1707 int position = *lpTabPos;
1708 if (position < 0)
1709 position = -1 * position;
1710 if (pTabdef->iScale)
1711 position = (position * pTabdef->iScale) / 4;
1712 else
1713 position = position * psc->tm.tmAveCharWidth;
1714
1715 if( nTabOrg + position > current_x)
1716 {
1717 if( *lpTabPos >= 0)
1718 {
1719 /* a left aligned tab */
1720 x = (nTabOrg + *lpTabPos) - current_x;
1721 break;
1722 }
1723 else
1724 {
1725 FIXME("Negative tabstop\n");
1726 break;
1727 }
1728 }
1729 }
1730 if ((!cTabStops) && (defWidth > 0))
1731 x =((((current_x - nTabOrg) / defWidth)+1) * defWidth) - current_x;
1732 else if ((!cTabStops) && (defWidth < 0))
1733 FIXME("TODO: Negative defWidth\n");
1734
1735 return x;
1736 }
1737
1738 /***********************************************************************
1739 * Helper function for ScriptStringAnalyse
1740 */
1741 static BOOL requires_fallback(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa,
1742 const WCHAR *pwcInChars, int cChars )
1743 {
1744 /* FIXME: When to properly fallback is still a bit of a mystery */
1745 WORD *glyphs;
1746
1747 if (psa->fNoGlyphIndex)
1748 return FALSE;
1749
1750 if (init_script_cache(hdc, psc) != S_OK)
1751 return FALSE;
1752
1753 if (SHAPE_CheckFontForRequiredFeatures(hdc, (ScriptCache *)*psc, psa) != S_OK)
1754 return TRUE;
1755
1756 glyphs = heap_alloc(sizeof(WORD) * cChars);
1757 if (!glyphs)
1758 return FALSE;
1759 if (ScriptGetCMap(hdc, psc, pwcInChars, cChars, 0, glyphs) != S_OK)
1760 {
1761 heap_free(glyphs);
1762 return TRUE;
1763 }
1764 heap_free(glyphs);
1765
1766 return FALSE;
1767 }
1768
1769 static void find_fallback_font(DWORD scriptid, LPWSTR FaceName)
1770 {
1771 HKEY hkey;
1772
1773 if (!RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Uniscribe\\Fallback", &hkey))
1774 {
1775 static const WCHAR szFmt[] = {'%','x',0};
1776 WCHAR value[10];
1777 DWORD count = LF_FACESIZE * sizeof(WCHAR);
1778 DWORD type;
1779
1780 sprintfW(value, szFmt, scriptInformation[scriptid].scriptTag);
1781 if (RegQueryValueExW(hkey, value, 0, &type, (LPBYTE)FaceName, &count))
1782 lstrcpyW(FaceName,scriptInformation[scriptid].fallbackFont);
1783 RegCloseKey(hkey);
1784 }
1785 else
1786 lstrcpyW(FaceName,scriptInformation[scriptid].fallbackFont);
1787 }
1788
1789 /***********************************************************************
1790 * ScriptStringAnalyse (USP10.@)
1791 *
1792 */
1793 HRESULT WINAPI ScriptStringAnalyse(HDC hdc, const void *pString, int cString,
1794 int cGlyphs, int iCharset, DWORD dwFlags,
1795 int iReqWidth, SCRIPT_CONTROL *psControl,
1796 SCRIPT_STATE *psState, const int *piDx,
1797 SCRIPT_TABDEF *pTabdef, const BYTE *pbInClass,
1798 SCRIPT_STRING_ANALYSIS *pssa)
1799 {
1800 HRESULT hr = E_OUTOFMEMORY;
1801 StringAnalysis *analysis = NULL;
1802 SCRIPT_CONTROL sControl;
1803 SCRIPT_STATE sState;
1804 int i, num_items = 255;
1805 BYTE *BidiLevel;
1806 WCHAR *iString = NULL;
1807
1808 TRACE("(%p,%p,%d,%d,%d,0x%x,%d,%p,%p,%p,%p,%p,%p)\n",
1809 hdc, pString, cString, cGlyphs, iCharset, dwFlags, iReqWidth,
1810 psControl, psState, piDx, pTabdef, pbInClass, pssa);
1811
1812 if (iCharset != -1)
1813 {
1814 FIXME("Only Unicode strings are supported\n");
1815 return E_INVALIDARG;
1816 }
1817 if (cString < 1 || !pString) return E_INVALIDARG;
1818 if ((dwFlags & SSA_GLYPHS) && !hdc) return E_PENDING;
1819
1820 if (!(analysis = heap_alloc_zero(sizeof(StringAnalysis)))) return E_OUTOFMEMORY;
1821 if (!(analysis->pItem = heap_alloc_zero(num_items * sizeof(SCRIPT_ITEM) + 1))) goto error;
1822
1823 /* FIXME: handle clipping */
1824 analysis->clip_len = cString;
1825 analysis->hdc = hdc;
1826 analysis->dwFlags = dwFlags;
1827
1828 if (psState)
1829 sState = *psState;
1830 else
1831 memset(&sState, 0, sizeof(SCRIPT_STATE));
1832
1833 if (psControl)
1834 sControl = *psControl;
1835 else
1836 memset(&sControl, 0, sizeof(SCRIPT_CONTROL));
1837
1838 if (dwFlags & SSA_PASSWORD)
1839 {
1840 iString = heap_alloc(sizeof(WCHAR)*cString);
1841 if (!iString)
1842 {
1843 hr = E_OUTOFMEMORY;
1844 goto error;
1845 }
1846 for (i = 0; i < cString; i++)
1847 iString[i] = *((const WCHAR *)pString);
1848 pString = iString;
1849 }
1850
1851 hr = ScriptItemize(pString, cString, num_items, &sControl, &sState, analysis->pItem,
1852 &analysis->numItems);
1853
1854 if (FAILED(hr))
1855 {
1856 if (hr == E_OUTOFMEMORY)
1857 hr = E_INVALIDARG;
1858 goto error;
1859 }
1860
1861 /* set back to out of memory for default goto error behaviour */
1862 hr = E_OUTOFMEMORY;
1863
1864 if (dwFlags & SSA_BREAK)
1865 {
1866 if ((analysis->logattrs = heap_alloc(sizeof(SCRIPT_LOGATTR) * cString)))
1867 {
1868 for (i = 0; i < analysis->numItems; i++)
1869 ScriptBreak(&((LPWSTR)pString)[analysis->pItem[i].iCharPos], analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos, &analysis->pItem[i].a, &analysis->logattrs[analysis->pItem[i].iCharPos]);
1870 }
1871 else
1872 goto error;
1873 }
1874
1875 if (!(analysis->logical2visual = heap_alloc_zero(sizeof(int) * analysis->numItems)))
1876 goto error;
1877 if (!(BidiLevel = heap_alloc_zero(analysis->numItems)))
1878 goto error;
1879
1880 if (dwFlags & SSA_GLYPHS)
1881 {
1882 int tab_x = 0;
1883 if (!(analysis->glyphs = heap_alloc_zero(sizeof(StringGlyphs) * analysis->numItems)))
1884 {
1885 heap_free(BidiLevel);
1886 goto error;
1887 }
1888
1889 for (i = 0; i < analysis->numItems; i++)
1890 {
1891 SCRIPT_CACHE *sc = (SCRIPT_CACHE*)&analysis->glyphs[i].sc;
1892 int cChar = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
1893 int numGlyphs = 1.5 * cChar + 16;
1894 WORD *glyphs = heap_alloc_zero(sizeof(WORD) * numGlyphs);
1895 WORD *pwLogClust = heap_alloc_zero(sizeof(WORD) * cChar);
1896 int *piAdvance = heap_alloc_zero(sizeof(int) * numGlyphs);
1897 SCRIPT_VISATTR *psva = heap_alloc_zero(sizeof(SCRIPT_VISATTR) * numGlyphs);
1898 GOFFSET *pGoffset = heap_alloc_zero(sizeof(GOFFSET) * numGlyphs);
1899 ABC *abc = heap_alloc_zero(sizeof(ABC));
1900 int numGlyphsReturned;
1901 HFONT originalFont = 0x0;
1902
1903 /* FIXME: non unicode strings */
1904 const WCHAR* pStr = (const WCHAR*)pString;
1905 analysis->glyphs[i].fallbackFont = NULL;
1906
1907 if (!glyphs || !pwLogClust || !piAdvance || !psva || !pGoffset || !abc)
1908 {
1909 heap_free (BidiLevel);
1910 heap_free (glyphs);
1911 heap_free (pwLogClust);
1912 heap_free (piAdvance);
1913 heap_free (psva);
1914 heap_free (pGoffset);
1915 heap_free (abc);
1916 hr = E_OUTOFMEMORY;
1917 goto error;
1918 }
1919
1920 if ((dwFlags & SSA_FALLBACK) && requires_fallback(hdc, sc, &analysis->pItem[i].a, &pStr[analysis->pItem[i].iCharPos], cChar))
1921 {
1922 LOGFONTW lf;
1923 GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(lf), & lf);
1924 lf.lfCharSet = scriptInformation[analysis->pItem[i].a.eScript].props.bCharSet;
1925 lf.lfFaceName[0] = 0;
1926 find_fallback_font(analysis->pItem[i].a.eScript, lf.lfFaceName);
1927 if (lf.lfFaceName[0])
1928 {
1929 analysis->glyphs[i].fallbackFont = CreateFontIndirectW(&lf);
1930 if (analysis->glyphs[i].fallbackFont)
1931 {
1932 ScriptFreeCache(sc);
1933 originalFont = SelectObject(hdc, analysis->glyphs[i].fallbackFont);
1934 }
1935 }
1936 }
1937
1938 /* FIXME: When we properly shape Hangul remove this check */
1939 if ((dwFlags & SSA_LINK) && !analysis->glyphs[i].fallbackFont && analysis->pItem[i].a.eScript == Script_Hangul)
1940 analysis->pItem[i].a.fNoGlyphIndex = TRUE;
1941
1942 if ((dwFlags & SSA_LINK) && !analysis->glyphs[i].fallbackFont && !scriptInformation[analysis->pItem[i].a.eScript].props.fComplex && !analysis->pItem[i].a.fRTL)
1943 analysis->pItem[i].a.fNoGlyphIndex = TRUE;
1944
1945 ScriptShape(hdc, sc, &pStr[analysis->pItem[i].iCharPos], cChar, numGlyphs,
1946 &analysis->pItem[i].a, glyphs, pwLogClust, psva, &numGlyphsReturned);
1947 hr = ScriptPlace(hdc, sc, glyphs, numGlyphsReturned, psva, &analysis->pItem[i].a,
1948 piAdvance, pGoffset, abc);
1949 if (originalFont)
1950 SelectObject(hdc,originalFont);
1951
1952 if (dwFlags & SSA_TAB)
1953 {
1954 int tabi = 0;
1955 for (tabi = 0; tabi < cChar; tabi++)
1956 {
1957 if (pStr[analysis->pItem[i].iCharPos+tabi] == 0x0009)
1958 piAdvance[tabi] = getGivenTabWidth(analysis->glyphs[i].sc, pTabdef, analysis->pItem[i].iCharPos+tabi, tab_x);
1959 tab_x+=piAdvance[tabi];
1960 }
1961 }
1962
1963 analysis->glyphs[i].numGlyphs = numGlyphsReturned;
1964 analysis->glyphs[i].glyphs = glyphs;
1965 analysis->glyphs[i].pwLogClust = pwLogClust;
1966 analysis->glyphs[i].piAdvance = piAdvance;
1967 analysis->glyphs[i].psva = psva;
1968 analysis->glyphs[i].pGoffset = pGoffset;
1969 analysis->glyphs[i].abc = abc;
1970 analysis->glyphs[i].iMaxPosX= -1;
1971
1972 BidiLevel[i] = analysis->pItem[i].a.s.uBidiLevel;
1973 }
1974 }
1975 else
1976 {
1977 for (i = 0; i < analysis->numItems; i++)
1978 BidiLevel[i] = analysis->pItem[i].a.s.uBidiLevel;
1979 }
1980
1981 ScriptLayout(analysis->numItems, BidiLevel, NULL, analysis->logical2visual);
1982 heap_free(BidiLevel);
1983
1984 *pssa = analysis;
1985 heap_free(iString);
1986 return S_OK;
1987
1988 error:
1989 heap_free(iString);
1990 heap_free(analysis->glyphs);
1991 heap_free(analysis->logattrs);
1992 heap_free(analysis->pItem);
1993 heap_free(analysis->logical2visual);
1994 heap_free(analysis);
1995 return hr;
1996 }
1997
1998 static inline BOOL does_glyph_start_cluster(const SCRIPT_VISATTR *pva, const WORD *pwLogClust, int cChars, int glyph, int direction)
1999 {
2000 if (pva[glyph].fClusterStart)
2001 return TRUE;
2002 if (USP10_FindGlyphInLogClust(pwLogClust, cChars, glyph) >= 0)
2003 return TRUE;
2004
2005 return FALSE;
2006 }
2007
2008
2009 static HRESULT SS_ItemOut( SCRIPT_STRING_ANALYSIS ssa,
2010 int iX,
2011 int iY,
2012 int iItem,
2013 int cStart,
2014 int cEnd,
2015 UINT uOptions,
2016 const RECT *prc,
2017 BOOL fSelected,
2018 BOOL fDisabled)
2019 {
2020 StringAnalysis *analysis;
2021 int off_x = 0;
2022 HRESULT hr;
2023 COLORREF BkColor = 0x0;
2024 COLORREF TextColor = 0x0;
2025 INT BkMode = 0;
2026 INT runStart, runEnd;
2027 INT iGlyph, cGlyphs;
2028 HFONT oldFont = 0x0;
2029 RECT crc;
2030 int i;
2031
2032 TRACE("(%p,%d,%d,%d,%d,%d, 0x%1x, %d, %d)\n",
2033 ssa, iX, iY, iItem, cStart, cEnd, uOptions, fSelected, fDisabled);
2034
2035 if (!(analysis = ssa)) return E_INVALIDARG;
2036
2037 if ((cStart >= 0 && analysis->pItem[iItem+1].iCharPos <= cStart) ||
2038 (cEnd >= 0 && analysis->pItem[iItem].iCharPos >= cEnd))
2039 return S_OK;
2040
2041 CopyRect(&crc,prc);
2042 if (fSelected)
2043 {
2044 BkMode = GetBkMode(analysis->hdc);
2045 SetBkMode( analysis->hdc, OPAQUE);
2046 BkColor = GetBkColor(analysis->hdc);
2047 SetBkColor(analysis->hdc, GetSysColor(COLOR_HIGHLIGHT));
2048 if (!fDisabled)
2049 {
2050 TextColor = GetTextColor(analysis->hdc);
2051 SetTextColor(analysis->hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
2052 }
2053 }
2054 if (analysis->glyphs[iItem].fallbackFont)
2055 oldFont = SelectObject(analysis->hdc, analysis->glyphs[iItem].fallbackFont);
2056
2057 if (cStart >= 0 && analysis->pItem[iItem+1].iCharPos > cStart && analysis->pItem[iItem].iCharPos <= cStart)
2058 runStart = cStart - analysis->pItem[iItem].iCharPos;
2059 else
2060 runStart = 0;
2061 if (cEnd >= 0 && analysis->pItem[iItem+1].iCharPos > cEnd && analysis->pItem[iItem].iCharPos <= cEnd)
2062 runEnd = (cEnd-1) - analysis->pItem[iItem].iCharPos;
2063 else
2064 runEnd = (analysis->pItem[iItem+1].iCharPos - analysis->pItem[iItem].iCharPos) - 1;
2065
2066 if (analysis->pItem[iItem].a.fRTL)
2067 {
2068 if (cEnd >= 0 && cEnd < analysis->pItem[iItem+1].iCharPos)
2069 ScriptStringCPtoX(ssa, cEnd, FALSE, &off_x);
2070 else
2071 ScriptStringCPtoX(ssa, analysis->pItem[iItem+1].iCharPos-1, TRUE, &off_x);
2072 crc.left = iX + off_x;
2073 }
2074 else
2075 {
2076 if (cStart >=0 && runStart)
2077 ScriptStringCPtoX(ssa, cStart, FALSE, &off_x);
2078 else
2079 ScriptStringCPtoX(ssa, analysis->pItem[iItem].iCharPos, FALSE, &off_x);
2080 crc.left = iX + off_x;
2081 }
2082
2083 if (analysis->pItem[iItem].a.fRTL)
2084 iGlyph = analysis->glyphs[iItem].pwLogClust[runEnd];
2085 else
2086 iGlyph = analysis->glyphs[iItem].pwLogClust[runStart];
2087
2088 if (analysis->pItem[iItem].a.fRTL)
2089 cGlyphs = analysis->glyphs[iItem].pwLogClust[runStart] - iGlyph;
2090 else
2091 cGlyphs = analysis->glyphs[iItem].pwLogClust[runEnd] - iGlyph;
2092
2093 cGlyphs++;
2094
2095 /* adjust for cluster glyphs when starting */
2096 if (analysis->pItem[iItem].a.fRTL)
2097 i = analysis->pItem[iItem+1].iCharPos - 1;
2098 else
2099 i = analysis->pItem[iItem].iCharPos;
2100
2101 for (; i >=analysis->pItem[iItem].iCharPos && i < analysis->pItem[iItem+1].iCharPos; (analysis->pItem[iItem].a.fRTL)?i--:i++)
2102 {
2103 if (analysis->glyphs[iItem].pwLogClust[i - analysis->pItem[iItem].iCharPos] == iGlyph)
2104 {
2105 if (analysis->pItem[iItem].a.fRTL)
2106 ScriptStringCPtoX(ssa, i, TRUE, &off_x);
2107 else
2108 ScriptStringCPtoX(ssa, i, FALSE, &off_x);
2109 break;
2110 }
2111 }
2112
2113 if (cEnd < 0 || scriptInformation[analysis->pItem[iItem].a.eScript].props.fNeedsCaretInfo)
2114 {
2115 INT direction;
2116 INT clust_glyph;
2117
2118 clust_glyph = iGlyph + cGlyphs;
2119 if (analysis->pItem[iItem].a.fRTL)
2120 direction = -1;
2121 else
2122 direction = 1;
2123
2124 while(clust_glyph < analysis->glyphs[iItem].numGlyphs &&
2125 !does_glyph_start_cluster(analysis->glyphs[iItem].psva, analysis->glyphs[iItem].pwLogClust, (analysis->pItem[iItem+1].iCharPos - analysis->pItem[iItem].iCharPos), clust_glyph, direction))
2126 {
2127 cGlyphs++;
2128 clust_glyph++;
2129 }
2130 }
2131
2132 hr = ScriptTextOut(analysis->hdc,
2133 (SCRIPT_CACHE *)&analysis->glyphs[iItem].sc, iX + off_x,
2134 iY, uOptions, &crc, &analysis->pItem[iItem].a, NULL, 0,
2135 &analysis->glyphs[iItem].glyphs[iGlyph], cGlyphs,
2136 &analysis->glyphs[iItem].piAdvance[iGlyph], NULL,
2137 &analysis->glyphs[iItem].pGoffset[iGlyph]);
2138
2139 TRACE("ScriptTextOut hr=%08x\n", hr);
2140
2141 if (fSelected)
2142 {
2143 SetBkColor(analysis->hdc, BkColor);
2144 SetBkMode( analysis->hdc, BkMode);
2145 if (!fDisabled)
2146 SetTextColor(analysis->hdc, TextColor);
2147 }
2148 if (analysis->glyphs[iItem].fallbackFont)
2149 SelectObject(analysis->hdc, oldFont);
2150
2151 return hr;
2152 }
2153
2154 /***********************************************************************
2155 * ScriptStringOut (USP10.@)
2156 *
2157 * This function takes the output of ScriptStringAnalyse and joins the segments
2158 * of glyphs and passes the resulting string to ScriptTextOut. ScriptStringOut
2159 * only processes glyphs.
2160 *
2161 * Parameters:
2162 * ssa [I] buffer to hold the analysed string components
2163 * iX [I] X axis displacement for output
2164 * iY [I] Y axis displacement for output
2165 * uOptions [I] flags controlling output processing
2166 * prc [I] rectangle coordinates
2167 * iMinSel [I] starting pos for substringing output string
2168 * iMaxSel [I] ending pos for substringing output string
2169 * fDisabled [I] controls text highlighting
2170 *
2171 * RETURNS
2172 * Success: S_OK
2173 * Failure: is the value returned by ScriptTextOut
2174 */
2175 HRESULT WINAPI ScriptStringOut(SCRIPT_STRING_ANALYSIS ssa,
2176 int iX,
2177 int iY,
2178 UINT uOptions,
2179 const RECT *prc,
2180 int iMinSel,
2181 int iMaxSel,
2182 BOOL fDisabled)
2183 {
2184 StringAnalysis *analysis;
2185 int item;
2186 HRESULT hr;
2187
2188 TRACE("(%p,%d,%d,0x%1x,%p,%d,%d,%d)\n",
2189 ssa, iX, iY, uOptions, prc, iMinSel, iMaxSel, fDisabled);
2190
2191 if (!(analysis = ssa)) return E_INVALIDARG;
2192 if (!(analysis->dwFlags & SSA_GLYPHS)) return E_INVALIDARG;
2193
2194 for (item = 0; item < analysis->numItems; item++)
2195 {
2196 hr = SS_ItemOut( ssa, iX, iY, analysis->logical2visual[item], -1, -1, uOptions, prc, FALSE, fDisabled);
2197 if (FAILED(hr))
2198 return hr;
2199 }
2200
2201 if (iMinSel < iMaxSel && (iMinSel > 0 || iMaxSel > 0))
2202 {
2203 if (iMaxSel > 0 && iMinSel < 0)
2204 iMinSel = 0;
2205 for (item = 0; item < analysis->numItems; item++)
2206 {
2207 hr = SS_ItemOut( ssa, iX, iY, analysis->logical2visual[item], iMinSel, iMaxSel, uOptions, prc, TRUE, fDisabled);
2208 if (FAILED(hr))
2209 return hr;
2210 }
2211 }
2212
2213 return S_OK;
2214 }
2215
2216 /***********************************************************************
2217 * ScriptStringCPtoX (USP10.@)
2218 *
2219 */
2220 HRESULT WINAPI ScriptStringCPtoX(SCRIPT_STRING_ANALYSIS ssa, int icp, BOOL fTrailing, int* pX)
2221 {
2222 int item;
2223 int runningX = 0;
2224 StringAnalysis* analysis = ssa;
2225
2226 TRACE("(%p), %d, %d, (%p)\n", ssa, icp, fTrailing, pX);
2227
2228 if (!ssa || !pX) return S_FALSE;
2229 if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
2230
2231 /* icp out of range */
2232 if(icp < 0)
2233 {
2234 analysis->invalid = TRUE;
2235 return E_INVALIDARG;
2236 }
2237
2238 for(item=0; item<analysis->numItems; item++)
2239 {
2240 int CP, i;
2241 int offset;
2242
2243 i = analysis->logical2visual[item];
2244 CP = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
2245 /* initialize max extents for uninitialized runs */
2246 if (analysis->glyphs[i].iMaxPosX == -1)
2247 {
2248 if (analysis->pItem[i].a.fRTL)
2249 ScriptCPtoX(0, FALSE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
2250 analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
2251 &analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
2252 else
2253 ScriptCPtoX(CP, TRUE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
2254 analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
2255 &analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
2256 }
2257
2258 if (icp >= analysis->pItem[i+1].iCharPos || icp < analysis->pItem[i].iCharPos)
2259 {
2260 runningX += analysis->glyphs[i].iMaxPosX;
2261 continue;
2262 }
2263
2264 icp -= analysis->pItem[i].iCharPos;
2265 ScriptCPtoX(icp, fTrailing, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
2266 analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
2267 &analysis->pItem[i].a, &offset);
2268 runningX += offset;
2269
2270 *pX = runningX;
2271 return S_OK;
2272 }
2273
2274 /* icp out of range */
2275 analysis->invalid = TRUE;
2276 return E_INVALIDARG;
2277 }
2278
2279 /***********************************************************************
2280 * ScriptStringXtoCP (USP10.@)
2281 *
2282 */
2283 HRESULT WINAPI ScriptStringXtoCP(SCRIPT_STRING_ANALYSIS ssa, int iX, int* piCh, int* piTrailing)
2284 {
2285 StringAnalysis* analysis = ssa;
2286 int item;
2287
2288 TRACE("(%p), %d, (%p), (%p)\n", ssa, iX, piCh, piTrailing);
2289
2290 if (!ssa || !piCh || !piTrailing) return S_FALSE;
2291 if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
2292
2293 /* out of range */
2294 if(iX < 0)
2295 {
2296 if (analysis->pItem[0].a.fRTL)
2297 {
2298 *piCh = 1;
2299 *piTrailing = FALSE;
2300 }
2301 else
2302 {
2303 *piCh = -1;
2304 *piTrailing = TRUE;
2305 }
2306 return S_OK;
2307 }
2308
2309 for(item=0; item<analysis->numItems; item++)
2310 {
2311 int i;
2312 int CP;
2313
2314 for (i = 0; i < analysis->numItems && analysis->logical2visual[i] != item; i++)
2315 /* nothing */;
2316
2317 CP = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
2318 /* initialize max extents for uninitialized runs */
2319 if (analysis->glyphs[i].iMaxPosX == -1)
2320 {
2321 if (analysis->pItem[i].a.fRTL)
2322 ScriptCPtoX(0, FALSE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
2323 analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
2324 &analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
2325 else
2326 ScriptCPtoX(CP, TRUE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
2327 analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
2328 &analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
2329 }
2330
2331 if (iX > analysis->glyphs[i].iMaxPosX)
2332 {
2333 iX -= analysis->glyphs[i].iMaxPosX;
2334 continue;
2335 }
2336
2337 ScriptXtoCP(iX, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
2338 analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
2339 &analysis->pItem[i].a, piCh, piTrailing);
2340 *piCh += analysis->pItem[i].iCharPos;
2341
2342 return S_OK;
2343 }
2344
2345 /* out of range */
2346 *piCh = analysis->pItem[analysis->numItems].iCharPos;
2347 *piTrailing = FALSE;
2348
2349 return S_OK;
2350 }
2351
2352
2353 /***********************************************************************
2354 * ScriptStringFree (USP10.@)
2355 *
2356 * Free a string analysis.
2357 *
2358 * PARAMS
2359 * pssa [I] string analysis.
2360 *
2361 * RETURNS
2362 * Success: S_OK
2363 * Failure: Non-zero HRESULT value.
2364 */
2365 HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa)
2366 {
2367 StringAnalysis* analysis;
2368 BOOL invalid;
2369 int i;
2370
2371 TRACE("(%p)\n", pssa);
2372
2373 if (!pssa || !(analysis = *pssa)) return E_INVALIDARG;
2374
2375 invalid = analysis->invalid;
2376
2377 if (analysis->glyphs)
2378 {
2379 for (i = 0; i < analysis->numItems; i++)
2380 {
2381 heap_free(analysis->glyphs[i].glyphs);
2382 heap_free(analysis->glyphs[i].pwLogClust);
2383 heap_free(analysis->glyphs[i].piAdvance);
2384 heap_free(analysis->glyphs[i].psva);
2385 heap_free(analysis->glyphs[i].pGoffset);
2386 heap_free(analysis->glyphs[i].abc);
2387 if (analysis->glyphs[i].fallbackFont)
2388 DeleteObject(analysis->glyphs[i].fallbackFont);
2389 ScriptFreeCache((SCRIPT_CACHE *)&analysis->glyphs[i].sc);
2390 heap_free(analysis->glyphs[i].sc);
2391 }
2392 heap_free(analysis->glyphs);
2393 }
2394
2395 heap_free(analysis->pItem);
2396 heap_free(analysis->logattrs);
2397 heap_free(analysis->sz);
2398 heap_free(analysis->logical2visual);
2399 heap_free(analysis);
2400
2401 if (invalid) return E_INVALIDARG;
2402 return S_OK;
2403 }
2404
2405 static inline int get_cluster_size(const WORD *pwLogClust, int cChars, int item,
2406 int direction, int* iCluster, int *check_out)
2407 {
2408 int clust_size = 1;
2409 int check;
2410 WORD clust = pwLogClust[item];
2411
2412 for (check = item+direction; check < cChars && check >= 0; check+=direction)
2413 {
2414 if (pwLogClust[check] == clust)
2415 {
2416 clust_size ++;
2417 if (iCluster && *iCluster == -1)
2418 *iCluster = item;
2419 }
2420 else break;
2421 }
2422
2423 if (check_out)
2424 *check_out = check;
2425
2426 return clust_size;
2427 }
2428
2429 static inline int get_glyph_cluster_advance(const int* piAdvance, const SCRIPT_VISATTR *pva, const WORD *pwLogClust, int cGlyphs, int cChars, int glyph, int direction)
2430 {
2431 int advance;
2432 int log_clust_max;
2433
2434 advance = piAdvance[glyph];
2435
2436 if (pwLogClust[0] > pwLogClust[cChars-1])
2437 log_clust_max = pwLogClust[0];
2438 else
2439 log_clust_max = pwLogClust[cChars-1];
2440
2441 if (glyph > log_clust_max)
2442 return advance;
2443
2444 for (glyph+=direction; glyph < cGlyphs && glyph >= 0; glyph +=direction)
2445 {
2446
2447 if (does_glyph_start_cluster(pva, pwLogClust, cChars, glyph, direction))
2448 break;
2449 if (glyph > log_clust_max)
2450 break;
2451 advance += piAdvance[glyph];
2452 }
2453
2454 return advance;
2455 }
2456
2457 /***********************************************************************
2458 * ScriptCPtoX (USP10.@)
2459 *
2460 */
2461 HRESULT WINAPI ScriptCPtoX(int iCP,
2462 BOOL fTrailing,
2463 int cChars,
2464 int cGlyphs,
2465 const WORD *pwLogClust,
2466 const SCRIPT_VISATTR *psva,
2467 const int *piAdvance,
2468 const SCRIPT_ANALYSIS *psa,
2469 int *piX)
2470 {
2471 int item;
2472 float iPosX;
2473 int iSpecial = -1;
2474 int iCluster = -1;
2475 int clust_size = 1;
2476 float special_size = 0.0;
2477 int iMaxPos = 0;
2478 int advance = 0;
2479 BOOL rtl = FALSE;
2480
2481 TRACE("(%d,%d,%d,%d,%p,%p,%p,%p,%p)\n",
2482 iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance,
2483 psa, piX);
2484
2485 if (psa->fRTL && ! psa->fLogicalOrder)
2486 rtl = TRUE;
2487
2488 if (fTrailing)
2489 iCP++;
2490
2491 if (rtl)
2492 {
2493 int max_clust = pwLogClust[0];
2494
2495 for (item=0; item < cGlyphs; item++)
2496 if (pwLogClust[item] > max_clust)
2497 {
2498 ERR("We do not handle non reversed clusters properly\n");
2499 break;
2500 }
2501
2502 iMaxPos = 0;
2503 for (item = max_clust; item >=0; item --)
2504 iMaxPos += piAdvance[item];
2505 }
2506
2507 iPosX = 0.0;
2508 for (item=0; item < iCP && item < cChars; item++)
2509 {
2510 if (iSpecial == -1 && (iCluster == -1 || (iCluster != -1 && iCluster+clust_size <= item)))
2511 {
2512 int check;
2513 int clust = pwLogClust[item];
2514
2515 iCluster = -1;
2516 clust_size = get_cluster_size(pwLogClust, cChars, item, 1, &iCluster,
2517 &check);
2518
2519 advance = get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, clust, 1);
2520
2521 if (check >= cChars && !iMaxPos)
2522 {
2523 int glyph;
2524 for (glyph = clust; glyph < cGlyphs; glyph++)
2525 special_size += get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, glyph, 1);
2526 iSpecial = item;
2527 special_size /= (cChars - item);
2528 iPosX += special_size;
2529 }
2530 else
2531 {
2532 if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
2533 {
2534 clust_size --;
2535 if (clust_size == 0)
2536 iPosX += advance;
2537 }
2538 else
2539 iPosX += advance / (float)clust_size;
2540 }
2541 }
2542 else if (iSpecial != -1)
2543 iPosX += special_size;
2544 else /* (iCluster != -1) */
2545 {
2546 int adv = get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, pwLogClust[iCluster], 1);
2547 if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
2548 {
2549 clust_size --;
2550 if (clust_size == 0)
2551 iPosX += adv;
2552 }
2553 else
2554 iPosX += adv / (float)clust_size;
2555 }
2556 }
2557
2558 if (iMaxPos > 0)
2559 {
2560 iPosX = iMaxPos - iPosX;
2561 if (iPosX < 0)
2562 iPosX = 0;
2563 }
2564
2565 *piX = iPosX;
2566 TRACE("*piX=%d\n", *piX);
2567 return S_OK;
2568 }
2569
2570 /***********************************************************************
2571 * ScriptXtoCP (USP10.@)
2572 *
2573 */
2574 HRESULT WINAPI ScriptXtoCP(int iX,
2575 int cChars,
2576 int cGlyphs,
2577 const WORD *pwLogClust,
2578 const SCRIPT_VISATTR *psva,
2579 const int *piAdvance,
2580 const SCRIPT_ANALYSIS *psa,
2581 int *piCP,
2582 int *piTrailing)
2583 {
2584 int item;
2585 float iPosX;
2586 float iLastPosX;
2587 int iSpecial = -1;
2588 int iCluster = -1;
2589 int clust_size = 1;
2590 int cjump = 0;
2591 int advance;
2592 float special_size = 0.0;
2593 int direction = 1;
2594
2595 TRACE("(%d,%d,%d,%p,%p,%p,%p,%p,%p)\n",
2596 iX, cChars, cGlyphs, pwLogClust, psva, piAdvance,
2597 psa, piCP, piTrailing);
2598
2599 if (psa->fRTL && ! psa->fLogicalOrder)
2600 direction = -1;
2601
2602 if (direction<0)
2603 {
2604 int max_clust = pwLogClust[0];
2605
2606 if (iX < 0)
2607 {
2608 *piCP = cChars;
2609 *piTrailing = 0;
2610 return S_OK;
2611 }
2612
2613 for (item=0; item < cChars; item++)
2614 if (pwLogClust[item] > max_clust)
2615 {
2616 ERR("We do not handle non reversed clusters properly\n");
2617 break;
2618 }
2619 }
2620
2621 if (iX < 0)
2622 {
2623 *piCP = -1;
2624 *piTrailing = 1;
2625 return S_OK;
2626 }
2627
2628 iPosX = iLastPosX = 0;
2629 if (direction > 0)
2630 item = 0;
2631 else
2632 item = cChars - 1;
2633 for (; iPosX <= iX && item < cChars && item >= 0; item+=direction)
2634 {
2635 iLastPosX = iPosX;
2636 if (iSpecial == -1 &&
2637 (iCluster == -1 ||
2638 (iCluster != -1 &&
2639 ((direction > 0 && iCluster+clust_size <= item) ||
2640 (direction < 0 && iCluster-clust_size >= item))
2641 )
2642 )
2643 )
2644 {
2645 int check;
2646 int clust = pwLogClust[item];
2647
2648 iCluster = -1;
2649 cjump = 0;
2650 clust_size = get_cluster_size(pwLogClust, cChars, item, direction,
2651 &iCluster, &check);
2652 advance = get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, clust, direction);
2653
2654 if (check >= cChars && direction > 0)
2655 {
2656 int glyph;
2657 for (glyph = clust; glyph < cGlyphs; glyph++)
2658 special_size += get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, glyph, direction);
2659 iSpecial = item;
2660 special_size /= (cChars - item);
2661 iPosX += special_size;
2662 }
2663 else
2664 {
2665 if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
2666 {
2667 if (!cjump)
2668 iPosX += advance;
2669 cjump++;
2670 }
2671 else
2672 iPosX += advance / (float)clust_size;
2673 }
2674 }
2675 else if (iSpecial != -1)
2676 iPosX += special_size;
2677 else /* (iCluster != -1) */
2678 {
2679 int adv = get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, pwLogClust[iCluster], direction);
2680 if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
2681 {
2682 if (!cjump)
2683 iPosX += adv;
2684 cjump++;
2685 }
2686 else
2687 iPosX += adv / (float)clust_size;
2688 }
2689 }
2690
2691 if (direction > 0)
2692 {
2693 if (iPosX > iX)
2694 item--;
2695 if (item < cChars && ((iPosX - iLastPosX) / 2.0) + iX >= iPosX)
2696 {
2697 if (scriptInformation[psa->eScript].props.fNeedsCaretInfo && clust_size > 1)
2698 item+=(clust_size-1);
2699 *piTrailing = 1;
2700 }
2701 else
2702 *piTrailing = 0;
2703 }
2704 else
2705 {
2706 if (iX == iLastPosX)
2707 item++;
2708 if (iX >= iLastPosX && iX <= iPosX)
2709 item++;
2710
2711 if (iLastPosX == iX)
2712 *piTrailing = 0;
2713 else if (item < 0 || ((iLastPosX - iPosX) / 2.0) + iX <= iLastPosX)
2714 {
2715 if (scriptInformation[psa->eScript].props.fNeedsCaretInfo && clust_size > 1)
2716 item-=(clust_size-1);
2717 *piTrailing = 1;
2718 }
2719 else
2720 *piTrailing = 0;
2721 }
2722
2723 *piCP = item;
2724
2725 TRACE("*piCP=%d\n", *piCP);
2726 TRACE("*piTrailing=%d\n", *piTrailing);
2727 return S_OK;
2728 }
2729
2730 /***********************************************************************
2731 * ScriptBreak (USP10.@)
2732 *
2733 * Retrieve line break information.
2734 *
2735 * PARAMS
2736 * chars [I] Array of characters.
2737 * sa [I] String analysis.
2738 * la [I] Array of logical attribute structures.
2739 *
2740 * RETURNS
2741 * Success: S_OK
2742 * Failure: S_FALSE
2743 */
2744 HRESULT WINAPI ScriptBreak(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT_LOGATTR *la)
2745 {
2746 TRACE("(%s, %d, %p, %p)\n", debugstr_wn(chars, count), count, sa, la);
2747
2748 if (count < 0 || !la) return E_INVALIDARG;
2749 if (count == 0) return E_FAIL;
2750
2751 BREAK_line(chars, count, sa, la);
2752
2753 return S_OK;
2754 }
2755
2756 /***********************************************************************
2757 * ScriptIsComplex (USP10.@)
2758 *
2759 * Determine if a string is complex.
2760 *
2761 * PARAMS
2762 * chars [I] Array of characters to test.
2763 * len [I] Length in characters.
2764 * flag [I] Flag.
2765 *
2766 * RETURNS
2767 * Success: S_OK
2768 * Failure: S_FALSE
2769 *
2770 */
2771 HRESULT WINAPI ScriptIsComplex(const WCHAR *chars, int len, DWORD flag)
2772 {
2773 int i;
2774 INT consumed = 0;
2775
2776 TRACE("(%s,%d,0x%x)\n", debugstr_wn(chars, len), len, flag);
2777
2778 for (i = 0; i < len; i+=consumed)
2779 {
2780 int script;
2781 if (i >= len)
2782 break;
2783
2784 if ((flag & SIC_ASCIIDIGIT) && chars[i] >= 0x30 && chars[i] <= 0x39)
2785 return S_OK;
2786
2787 script = get_char_script(chars,i,len, &consumed);
2788 if ((scriptInformation[script].props.fComplex && (flag & SIC_COMPLEX))||
2789 (!scriptInformation[script].props.fComplex && (flag & SIC_NEUTRAL)))
2790 return S_OK;
2791 }
2792 return S_FALSE;
2793 }
2794
2795 /***********************************************************************
2796 * ScriptShapeOpenType (USP10.@)
2797 *
2798 * Produce glyphs and visual attributes for a run.
2799 *
2800 * PARAMS
2801 * hdc [I] Device context.
2802 * psc [I/O] Opaque pointer to a script cache.
2803 * psa [I/O] Script analysis.
2804 * tagScript [I] The OpenType tag for the Script
2805 * tagLangSys [I] The OpenType tag for the Language
2806 * rcRangeChars[I] Array of Character counts in each range
2807 * rpRangeProperties [I] Array of TEXTRANGE_PROPERTIES structures
2808 * cRanges [I] Count of ranges
2809 * pwcChars [I] Array of characters specifying the run.
2810 * cChars [I] Number of characters in pwcChars.
2811 * cMaxGlyphs [I] Length of pwOutGlyphs.
2812 * pwLogClust [O] Array of logical cluster info.
2813 * pCharProps [O] Array of character property values
2814 * pwOutGlyphs [O] Array of glyphs.
2815 * pOutGlyphProps [O] Array of attributes for the retrieved glyphs
2816 * pcGlyphs [O] Number of glyphs returned.
2817 *
2818 * RETURNS
2819 * Success: S_OK
2820 * Failure: Non-zero HRESULT value.
2821 */
2822 HRESULT WINAPI ScriptShapeOpenType( HDC hdc, SCRIPT_CACHE *psc,
2823 SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript,
2824 OPENTYPE_TAG tagLangSys, int *rcRangeChars,
2825 TEXTRANGE_PROPERTIES **rpRangeProperties,
2826 int cRanges, const WCHAR *pwcChars, int cChars,
2827 int cMaxGlyphs, WORD *pwLogClust,
2828 SCRIPT_CHARPROP *pCharProps, WORD *pwOutGlyphs,
2829 SCRIPT_GLYPHPROP *pOutGlyphProps, int *pcGlyphs)
2830 {
2831 HRESULT hr;
2832 int i;
2833 unsigned int g;
2834 BOOL rtl;
2835 int cluster;
2836 static int once = 0;
2837
2838 TRACE("(%p, %p, %p, %s, %s, %p, %p, %d, %s, %d, %d, %p, %p, %p, %p, %p )\n",
2839 hdc, psc, psa,
2840 debugstr_an((char*)&tagScript,4), debugstr_an((char*)&tagLangSys,4),
2841 rcRangeChars, rpRangeProperties, cRanges, debugstr_wn(pwcChars, cChars),
2842 cChars, cMaxGlyphs, pwLogClust, pCharProps, pwOutGlyphs, pOutGlyphProps, pcGlyphs);
2843
2844 if (psa) TRACE("psa values: %d, %d, %d, %d, %d, %d, %d\n", psa->eScript, psa->fRTL, psa->fLayoutRTL,
2845 psa->fLinkBefore, psa->fLinkAfter, psa->fLogicalOrder, psa->fNoGlyphIndex);
2846
2847 if (!pOutGlyphProps || !pcGlyphs || !pCharProps) return E_INVALIDARG;
2848 if (cChars > cMaxGlyphs) return E_OUTOFMEMORY;
2849
2850 if (cRanges)
2851 if(!once++) FIXME("Ranges not supported yet\n");
2852
2853 rtl = (psa && !psa->fLogicalOrder && psa->fRTL);
2854
2855 *pcGlyphs = cChars;
2856 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
2857 if (!pwLogClust) return E_FAIL;
2858
2859 ((ScriptCache *)*psc)->userScript = tagScript;
2860 ((ScriptCache *)*psc)->userLang = tagLangSys;
2861
2862 /* set fNoGlyphIndex non truetype/opentype fonts */
2863 if (psa && !psa->fNoGlyphIndex && !((ScriptCache *)*psc)->sfnt)
2864 psa->fNoGlyphIndex = TRUE;
2865
2866 /* Initialize a SCRIPT_VISATTR and LogClust for each char in this run */
2867 for (i = 0; i < cChars; i++)
2868 {
2869 int idx = i;
2870 if (rtl) idx = cChars - 1 - i;
2871 /* FIXME: set to better values */
2872 pOutGlyphProps[i].sva.uJustification = (pwcChars[idx] == ' ') ? SCRIPT_JUSTIFY_BLANK : SCRIPT_JUSTIFY_CHARACTER;
2873 pOutGlyphProps[i].sva.fClusterStart = 1;
2874 pOutGlyphProps[i].sva.fDiacritic = 0;
2875 pOutGlyphProps[i].sva.fZeroWidth = 0;
2876 pOutGlyphProps[i].sva.fReserved = 0;
2877 pOutGlyphProps[i].sva.fShapeReserved = 0;
2878
2879 /* FIXME: have the shaping engine set this */
2880 pCharProps[i].fCanGlyphAlone = 0;
2881
2882 pwLogClust[i] = idx;
2883 }
2884
2885 if (psa && !psa->fNoGlyphIndex)
2886 {
2887 WCHAR *rChars;
2888 if ((hr = SHAPE_CheckFontForRequiredFeatures(hdc, (ScriptCache *)*psc, psa)) != S_OK) return hr;
2889
2890 rChars = heap_alloc(sizeof(WCHAR) * cChars);
2891 if (!rChars) return E_OUTOFMEMORY;
2892 for (i = 0, g = 0, cluster = 0; i < cChars; i++)
2893 {
2894 int idx = i;
2895 DWORD chInput;
2896
2897 if (rtl) idx = cChars - 1 - i;
2898 if (!cluster)
2899 {
2900 chInput = decode_surrogate_pair(pwcChars, idx, cChars);
2901 if (!chInput)
2902 {
2903 if (psa->fRTL)
2904 chInput = mirror_char(pwcChars[idx]);
2905 else
2906 chInput = pwcChars[idx];
2907 /* special case for tabs */
2908 if (chInput == 0x0009)
2909 chInput = 0x0020;
2910 rChars[i] = chInput;
2911 }
2912 else
2913 {
2914 rChars[i] = pwcChars[idx];
2915 rChars[i+1] = pwcChars[(rtl)?idx-1:idx+1];
2916 cluster = 1;
2917 }
2918 if (!(pwOutGlyphs[g] = get_cache_glyph(psc, chInput)))
2919 {
2920 WORD glyph;
2921 if (!hdc)
2922 {
2923 heap_free(rChars);
2924 return E_PENDING;
2925 }
2926 if (OpenType_CMAP_GetGlyphIndex(hdc, (ScriptCache *)*psc, chInput, &glyph, 0) == GDI_ERROR)
2927 {
2928 heap_free(rChars);
2929 return S_FALSE;
2930 }
2931 pwOutGlyphs[g] = set_cache_glyph(psc, chInput, glyph);
2932 }
2933 g++;
2934 }
2935 else
2936 {
2937 int k;
2938 cluster--;
2939 pwLogClust[idx] = (rtl)?pwLogClust[idx+1]:pwLogClust[idx-1];
2940 for (k = (rtl)?idx-1:idx+1; k >= 0 && k < cChars; (rtl)?k--:k++)
2941 pwLogClust[k]--;
2942 }
2943 }
2944 *pcGlyphs = g;
2945
2946 SHAPE_ContextualShaping(hdc, (ScriptCache *)*psc, psa, rChars, cChars, pwOutGlyphs, pcGlyphs, cMaxGlyphs, pwLogClust);
2947 SHAPE_ApplyDefaultOpentypeFeatures(hdc, (ScriptCache *)*psc, psa, pwOutGlyphs, pcGlyphs, cMaxGlyphs, cChars, pwLogClust);
2948 SHAPE_CharGlyphProp(hdc, (ScriptCache *)*psc, psa, pwcChars, cChars, pwOutGlyphs, *pcGlyphs, pwLogClust, pCharProps, pOutGlyphProps);
2949 heap_free(rChars);
2950 }
2951 else
2952 {
2953 TRACE("no glyph translation\n");
2954 for (i = 0; i < cChars; i++)
2955 {
2956 int idx = i;
2957 /* No mirroring done here */
2958 if (rtl) idx = cChars - 1 - i;
2959 pwOutGlyphs[i] = pwcChars[idx];
2960
2961 /* overwrite some basic control glyphs to blank */
2962 if (psa && psa->eScript == Script_Control &&
2963 pwcChars[idx] < ((ScriptCache *)*psc)->tm.tmFirstChar)
2964 {
2965 if (pwcChars[idx] == 0x0009 || pwcChars[idx] == 0x000A ||
2966 pwcChars[idx] == 0x000D || pwcChars[idx] >= 0x001C)
2967 pwOutGlyphs[i] = ((ScriptCache *)*psc)->sfp.wgBlank;
2968 }
2969 }
2970 }
2971
2972 return S_OK;
2973 }
2974
2975
2976 /***********************************************************************
2977 * ScriptShape (USP10.@)
2978 *
2979 * Produce glyphs and visual attributes for a run.
2980 *
2981 * PARAMS
2982 * hdc [I] Device context.
2983 * psc [I/O] Opaque pointer to a script cache.
2984 * pwcChars [I] Array of characters specifying the run.
2985 * cChars [I] Number of characters in pwcChars.
2986 * cMaxGlyphs [I] Length of pwOutGlyphs.
2987 * psa [I/O] Script analysis.
2988 * pwOutGlyphs [O] Array of glyphs.
2989 * pwLogClust [O] Array of logical cluster info.
2990 * psva [O] Array of visual attributes.
2991 * pcGlyphs [O] Number of glyphs returned.
2992 *
2993 * RETURNS
2994 * Success: S_OK
2995 * Failure: Non-zero HRESULT value.
2996 */
2997 HRESULT WINAPI ScriptShape(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcChars,
2998 int cChars, int cMaxGlyphs,
2999 SCRIPT_ANALYSIS *psa, WORD *pwOutGlyphs, WORD *pwLogClust,
3000 SCRIPT_VISATTR *psva, int *pcGlyphs)
3001 {
3002 HRESULT hr;
3003 int i;
3004 SCRIPT_CHARPROP *charProps;
3005 SCRIPT_GLYPHPROP *glyphProps;
3006
3007 if (!psva || !pcGlyphs) return E_INVALIDARG;
3008 if (cChars > cMaxGlyphs) return E_OUTOFMEMORY;
3009
3010 charProps = heap_alloc_zero(sizeof(SCRIPT_CHARPROP)*cChars);
3011 if (!charProps) return E_OUTOFMEMORY;
3012 glyphProps = heap_alloc_zero(sizeof(SCRIPT_GLYPHPROP)*cMaxGlyphs);
3013 if (!glyphProps)
3014 {
3015 heap_free(charProps);
3016 return E_OUTOFMEMORY;
3017 }
3018
3019 hr = ScriptShapeOpenType(hdc, psc, psa, scriptInformation[psa->eScript].scriptTag, 0, NULL, NULL, 0, pwcChars, cChars, cMaxGlyphs, pwLogClust, charProps, pwOutGlyphs, glyphProps, pcGlyphs);
3020
3021 if (SUCCEEDED(hr))
3022 {
3023 for (i = 0; i < *pcGlyphs; i++)
3024 psva[i] = glyphProps[i].sva;
3025 }
3026
3027 heap_free(charProps);
3028 heap_free(glyphProps);
3029
3030 return hr;
3031 }
3032
3033 /***********************************************************************
3034 * ScriptPlaceOpenType (USP10.@)
3035 *
3036 * Produce advance widths for a run.
3037 *
3038 * PARAMS
3039 * hdc [I] Device context.
3040 * psc [I/O] Opaque pointer to a script cache.
3041 * psa [I/O] String analysis.
3042 * tagScript [I] The OpenType tag for the Script
3043 * tagLangSys [I] The OpenType tag for the Language
3044 * rcRangeChars[I] Array of Character counts in each range
3045 * rpRangeProperties [I] Array of TEXTRANGE_PROPERTIES structures
3046 * cRanges [I] Count of ranges
3047 * pwcChars [I] Array of characters specifying the run.
3048 * pwLogClust [I] Array of logical cluster info
3049 * pCharProps [I] Array of character property values
3050 * cChars [I] Number of characters in pwcChars.
3051 * pwGlyphs [I] Array of glyphs.
3052 * pGlyphProps [I] Array of attributes for the retrieved glyphs
3053 * cGlyphs [I] Count of Glyphs
3054 * piAdvance [O] Array of advance widths.
3055 * pGoffset [O] Glyph offsets.
3056 * pABC [O] Combined ABC width.
3057 *
3058 * RETURNS
3059 * Success: S_OK
3060 * Failure: Non-zero HRESULT value.
3061 */
3062
3063 HRESULT WINAPI ScriptPlaceOpenType( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa,
3064 OPENTYPE_TAG tagScript, OPENTYPE_TAG tagLangSys,
3065 int *rcRangeChars, TEXTRANGE_PROPERTIES **rpRangeProperties,
3066 int cRanges, const WCHAR *pwcChars, WORD *pwLogClust,
3067 SCRIPT_CHARPROP *pCharProps, int cChars,
3068 const WORD *pwGlyphs, const SCRIPT_GLYPHPROP *pGlyphProps,
3069 int cGlyphs, int *piAdvance,
3070 GOFFSET *pGoffset, ABC *pABC
3071 )
3072 {
3073 HRESULT hr;
3074 int i;
3075 static int once = 0;
3076
3077 TRACE("(%p, %p, %p, %s, %s, %p, %p, %d, %s, %p, %p, %d, %p, %p, %d, %p %p %p)\n",
3078 hdc, psc, psa,
3079 debugstr_an((char*)&tagScript,4), debugstr_an((char*)&tagLangSys,4),
3080 rcRangeChars, rpRangeProperties, cRanges, debugstr_wn(pwcChars, cChars),
3081 pwLogClust, pCharProps, cChars, pwGlyphs, pGlyphProps, cGlyphs, piAdvance,
3082 pGoffset, pABC);
3083
3084 if (!pGlyphProps) return E_INVALIDARG;
3085 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3086 if (!pGoffset) return E_FAIL;
3087
3088 if (cRanges)
3089 if (!once++) FIXME("Ranges not supported yet\n");
3090
3091 ((ScriptCache *)*psc)->userScript = tagScript;
3092 ((ScriptCache *)*psc)->userLang = tagLangSys;
3093
3094 if (pABC) memset(pABC, 0, sizeof(ABC));
3095 for (i = 0; i < cGlyphs; i++)
3096 {
3097 ABC abc;
3098 if (!get_cache_glyph_widths(psc, pwGlyphs[i], &abc))
3099 {
3100 if (!hdc) return E_PENDING;
3101 if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE) && !psa->fNoGlyphIndex)
3102 {
3103 if (!GetCharABCWidthsI(hdc, 0, 1, (WORD *)&pwGlyphs[i], &abc)) return S_FALSE;
3104 }
3105 else
3106 {
3107 INT width;
3108 if (!GetCharWidth32W(hdc, pwGlyphs[i], pwGlyphs[i], &width)) return S_FALSE;
3109 abc.abcB = width;
3110 abc.abcA = abc.abcC = 0;
3111 }
3112 set_cache_glyph_widths(psc, pwGlyphs[i], &abc);
3113 }
3114 if (pABC)
3115 {
3116 pABC->abcA += abc.abcA;
3117 pABC->abcB += abc.abcB;
3118 pABC->abcC += abc.abcC;
3119 }
3120 /* FIXME: set to more reasonable values */
3121 pGoffset[i].du = pGoffset[i].dv = 0;
3122 if (piAdvance) piAdvance[i] = abc.abcA + abc.abcB + abc.abcC;
3123 }
3124
3125 SHAPE_ApplyOpenTypePositions(hdc, (ScriptCache *)*psc, psa, pwGlyphs, cGlyphs, piAdvance, pGoffset);
3126
3127 if (pABC) TRACE("Total for run: abcA=%d, abcB=%d, abcC=%d\n", pABC->abcA, pABC->abcB, pABC->abcC);
3128 return S_OK;
3129 }
3130
3131 /***********************************************************************
3132 * ScriptPlace (USP10.@)
3133 *
3134 * Produce advance widths for a run.
3135 *
3136 * PARAMS
3137 * hdc [I] Device context.
3138 * psc [I/O] Opaque pointer to a script cache.
3139 * pwGlyphs [I] Array of glyphs.
3140 * cGlyphs [I] Number of glyphs in pwGlyphs.
3141 * psva [I] Array of visual attributes.
3142 * psa [I/O] String analysis.
3143 * piAdvance [O] Array of advance widths.
3144 * pGoffset [O] Glyph offsets.
3145 * pABC [O] Combined ABC width.
3146 *
3147 * RETURNS
3148 * Success: S_OK
3149 * Failure: Non-zero HRESULT value.
3150 */
3151 HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs,
3152 int cGlyphs, const SCRIPT_VISATTR *psva,
3153 SCRIPT_ANALYSIS *psa, int *piAdvance, GOFFSET *pGoffset, ABC *pABC )
3154 {
3155 HRESULT hr;
3156 SCRIPT_GLYPHPROP *glyphProps;
3157 int i;
3158
3159 TRACE("(%p, %p, %p, %d, %p, %p, %p, %p, %p)\n", hdc, psc, pwGlyphs, cGlyphs, psva, psa,
3160 piAdvance, pGoffset, pABC);
3161
3162 if (!psva) return E_INVALIDARG;
3163 if (!pGoffset) return E_FAIL;
3164
3165 glyphProps = heap_alloc(sizeof(SCRIPT_GLYPHPROP)*cGlyphs);
3166 if (!glyphProps) return E_OUTOFMEMORY;
3167
3168 for (i = 0; i < cGlyphs; i++)
3169 glyphProps[i].sva = psva[i];
3170
3171 hr = ScriptPlaceOpenType(hdc, psc, psa, scriptInformation[psa->eScript].scriptTag, 0, NULL, NULL, 0, NULL, NULL, NULL, 0, pwGlyphs, glyphProps, cGlyphs, piAdvance, pGoffset, pABC);
3172
3173 heap_free(glyphProps);
3174
3175 return hr;
3176 }
3177
3178 /***********************************************************************
3179 * ScriptGetCMap (USP10.@)
3180 *
3181 * Retrieve glyph indices.
3182 *
3183 * PARAMS
3184 * hdc [I] Device context.
3185 * psc [I/O] Opaque pointer to a script cache.
3186 * pwcInChars [I] Array of Unicode characters.
3187 * cChars [I] Number of characters in pwcInChars.
3188 * dwFlags [I] Flags.
3189 * pwOutGlyphs [O] Buffer to receive the array of glyph indices.
3190 *
3191 * RETURNS
3192 * Success: S_OK
3193 * Failure: Non-zero HRESULT value.
3194 */
3195 HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars,
3196 int cChars, DWORD dwFlags, WORD *pwOutGlyphs)
3197 {
3198 HRESULT hr;
3199 int i;
3200
3201 TRACE("(%p,%p,%s,%d,0x%x,%p)\n", hdc, psc, debugstr_wn(pwcInChars, cChars),
3202 cChars, dwFlags, pwOutGlyphs);
3203
3204 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3205
3206 hr = S_OK;
3207
3208 if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE))
3209 {
3210 for (i = 0; i < cChars; i++)
3211 {
3212 WCHAR inChar;
3213 if (dwFlags == SGCM_RTL)
3214 inChar = mirror_char(pwcInChars[i]);
3215 else
3216 inChar = pwcInChars[i];
3217 if (!(pwOutGlyphs[i] = get_cache_glyph(psc, inChar)))
3218 {
3219 WORD glyph;
3220 if (!hdc) return E_PENDING;
3221 if (GetGlyphIndicesW(hdc, &inChar, 1, &glyph, GGI_MARK_NONEXISTING_GLYPHS) == GDI_ERROR) return S_FALSE;
3222 if (glyph == 0xffff)
3223 {
3224 hr = S_FALSE;
3225 glyph = 0x0;
3226 }
3227 pwOutGlyphs[i] = set_cache_glyph(psc, inChar, glyph);
3228 }
3229 }
3230 }
3231 else
3232 {
3233 TRACE("no glyph translation\n");
3234 for (i = 0; i < cChars; i++)
3235 {
3236 WCHAR inChar;
3237 if (dwFlags == SGCM_RTL)
3238 inChar = mirror_char(pwcInChars[i]);
3239 else
3240 inChar = pwcInChars[i];
3241 pwOutGlyphs[i] = inChar;
3242 }
3243 }
3244 return hr;
3245 }
3246
3247 /***********************************************************************
3248 * ScriptTextOut (USP10.@)
3249 *
3250 */
3251 HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UINT fuOptions,
3252 const RECT *lprc, const SCRIPT_ANALYSIS *psa, const WCHAR *pwcReserved,
3253 int iReserved, const WORD *pwGlyphs, int cGlyphs, const int *piAdvance,
3254 const int *piJustify, const GOFFSET *pGoffset)
3255 {
3256 HRESULT hr = S_OK;
3257 INT i, dir = 1;
3258 INT *lpDx;
3259 WORD *reordered_glyphs = (WORD *)pwGlyphs;
3260
3261 TRACE("(%p, %p, %d, %d, %04x, %p, %p, %p, %d, %p, %d, %p, %p, %p)\n",
3262 hdc, psc, x, y, fuOptions, lprc, psa, pwcReserved, iReserved, pwGlyphs, cGlyphs,
3263 piAdvance, piJustify, pGoffset);
3264
3265 if (!hdc || !psc) return E_INVALIDARG;
3266 if (!piAdvance || !psa || !pwGlyphs) return E_INVALIDARG;
3267
3268 fuOptions &= ETO_CLIPPED + ETO_OPAQUE;
3269 fuOptions |= ETO_IGNORELANGUAGE;
3270 if (!psa->fNoGlyphIndex) /* Have Glyphs? */
3271 fuOptions |= ETO_GLYPH_INDEX; /* Say don't do translation to glyph */
3272
3273 lpDx = heap_alloc(cGlyphs * sizeof(INT) * 2);
3274 if (!lpDx) return E_OUTOFMEMORY;
3275 fuOptions |= ETO_PDY;
3276
3277 if (psa->fRTL && psa->fLogicalOrder)
3278 {
3279 reordered_glyphs = heap_alloc( cGlyphs * sizeof(WORD) );
3280 if (!reordered_glyphs)
3281 {
3282 heap_free( lpDx );
3283 return E_OUTOFMEMORY;
3284 }
3285
3286 for (i = 0; i < cGlyphs; i++)
3287 reordered_glyphs[i] = pwGlyphs[cGlyphs - 1 - i];
3288 dir = -1;
3289 }
3290
3291 for (i = 0; i < cGlyphs; i++)
3292 {
3293 int orig_index = (dir > 0) ? i : cGlyphs - 1 - i;
3294 lpDx[i * 2] = piAdvance[orig_index];
3295 lpDx[i * 2 + 1] = 0;
3296
3297 if (pGoffset)
3298 {
3299 if (i == 0)
3300 {
3301 x += pGoffset[orig_index].du * dir;
3302 y += pGoffset[orig_index].dv;
3303 }
3304 else
3305 {
3306 lpDx[(i - 1) * 2] += pGoffset[orig_index].du * dir;
3307 lpDx[(i - 1) * 2 + 1] += pGoffset[orig_index].dv;
3308 }
3309 lpDx[i * 2] -= pGoffset[orig_index].du * dir;
3310 lpDx[i * 2 + 1] -= pGoffset[orig_index].dv;
3311 }
3312 }
3313
3314 if (!ExtTextOutW(hdc, x, y, fuOptions, lprc, reordered_glyphs, cGlyphs, lpDx))
3315 hr = S_FALSE;
3316
3317 if (reordered_glyphs != pwGlyphs) heap_free( reordered_glyphs );
3318 heap_free(lpDx);
3319
3320 return hr;
3321 }
3322
3323 /***********************************************************************
3324 * ScriptCacheGetHeight (USP10.@)
3325 *
3326 * Retrieve the height of the font in the cache.
3327 *
3328 * PARAMS
3329 * hdc [I] Device context.
3330 * psc [I/O] Opaque pointer to a script cache.
3331 * height [O] Receives font height.
3332 *
3333 * RETURNS
3334 * Success: S_OK
3335 * Failure: Non-zero HRESULT value.
3336 */
3337 HRESULT WINAPI ScriptCacheGetHeight(HDC hdc, SCRIPT_CACHE *psc, LONG *height)
3338 {
3339 HRESULT hr;
3340
3341 TRACE("(%p, %p, %p)\n", hdc, psc, height);
3342
3343 if (!height) return E_INVALIDARG;
3344 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3345
3346 *height = get_cache_height(psc);
3347 return S_OK;
3348 }
3349
3350 /***********************************************************************
3351 * ScriptGetGlyphABCWidth (USP10.@)
3352 *
3353 * Retrieve the width of a glyph.
3354 *
3355 * PARAMS
3356 * hdc [I] Device context.
3357 * psc [I/O] Opaque pointer to a script cache.
3358 * glyph [I] Glyph to retrieve the width for.
3359 * abc [O] ABC widths of the glyph.
3360 *
3361 * RETURNS
3362 * Success: S_OK
3363 * Failure: Non-zero HRESULT value.
3364 */
3365 HRESULT WINAPI ScriptGetGlyphABCWidth(HDC hdc, SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
3366 {
3367 HRESULT hr;
3368
3369 TRACE("(%p, %p, 0x%04x, %p)\n", hdc, psc, glyph, abc);
3370
3371 if (!abc) return E_INVALIDARG;
3372 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3373
3374 if (!get_cache_glyph_widths(psc, glyph, abc))
3375 {
3376 if (!hdc) return E_PENDING;
3377 if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE))
3378 {
3379 if (!GetCharABCWidthsI(hdc, 0, 1, &glyph, abc)) return S_FALSE;
3380 }
3381 else
3382 {
3383 INT width;
3384 if (!GetCharWidth32W(hdc, glyph, glyph, &width)) return S_FALSE;
3385 abc->abcB = width;
3386 abc->abcA = abc->abcC = 0;
3387 }
3388 set_cache_glyph_widths(psc, glyph, abc);
3389 }
3390 return S_OK;
3391 }
3392
3393 /***********************************************************************
3394 * ScriptLayout (USP10.@)
3395 *
3396 * Map embedding levels to visual and/or logical order.
3397 *
3398 * PARAMS
3399 * runs [I] Size of level array.
3400 * level [I] Array of embedding levels.
3401 * vistolog [O] Map of embedding levels from visual to logical order.
3402 * logtovis [O] Map of embedding levels from logical to visual order.
3403 *
3404 * RETURNS
3405 * Success: S_OK
3406 * Failure: Non-zero HRESULT value.
3407 *
3408 */
3409 HRESULT WINAPI ScriptLayout(int runs, const BYTE *level, int *vistolog, int *logtovis)
3410 {
3411 int* indexs;
3412 int ich;
3413
3414 TRACE("(%d, %p, %p, %p)\n", runs, level, vistolog, logtovis);
3415
3416 if (!level || (!vistolog && !logtovis))
3417 return E_INVALIDARG;
3418
3419 indexs = heap_alloc(sizeof(int) * runs);
3420 if (!indexs)
3421 return E_OUTOFMEMORY;
3422
3423
3424 if (vistolog)
3425 {
3426 for( ich = 0; ich < runs; ich++)
3427 indexs[ich] = ich;
3428
3429 ich = 0;
3430 while (ich < runs)
3431 ich += BIDI_ReorderV2lLevel(0, indexs+ich, level+ich, runs - ich, FALSE);
3432 for (ich = 0; ich < runs; ich++)
3433 vistolog[ich] = indexs[ich];
3434 }
3435
3436
3437 if (logtovis)
3438 {
3439 for( ich = 0; ich < runs; ich++)
3440 indexs[ich] = ich;
3441
3442 ich = 0;
3443 while (ich < runs)
3444 ich += BIDI_ReorderL2vLevel(0, indexs+ich, level+ich, runs - ich, FALSE);
3445 for (ich = 0; ich < runs; ich++)
3446 logtovis[ich] = indexs[ich];
3447 }
3448 heap_free(indexs);
3449
3450 return S_OK;
3451 }
3452
3453 /***********************************************************************
3454 * ScriptStringGetLogicalWidths (USP10.@)
3455 *
3456 * Returns logical widths from a string analysis.
3457 *
3458 * PARAMS
3459 * ssa [I] string analysis.
3460 * piDx [O] logical widths returned.
3461 *
3462 * RETURNS
3463 * Success: S_OK
3464 * Failure: a non-zero HRESULT.
3465 */
3466 HRESULT WINAPI ScriptStringGetLogicalWidths(SCRIPT_STRING_ANALYSIS ssa, int *piDx)
3467 {
3468 int i, j, next = 0;
3469 StringAnalysis *analysis = ssa;
3470
3471 TRACE("%p, %p\n", ssa, piDx);
3472
3473 if (!analysis) return S_FALSE;
3474 if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
3475
3476 for (i = 0; i < analysis->numItems; i++)
3477 {
3478 int cChar = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
3479 int direction = 1;
3480
3481 if (analysis->pItem[i].a.fRTL && ! analysis->pItem[i].a.fLogicalOrder)
3482 direction = -1;
3483
3484 for (j = 0; j < cChar; j++)
3485 {
3486 int k;
3487 int glyph = analysis->glyphs[i].pwLogClust[j];
3488 int clust_size = get_cluster_size(analysis->glyphs[i].pwLogClust,
3489 cChar, j, direction, NULL, NULL);
3490 int advance = get_glyph_cluster_advance(analysis->glyphs[i].piAdvance, analysis->glyphs[i].psva, analysis->glyphs[i].pwLogClust, analysis->glyphs[i].numGlyphs, cChar, glyph, direction);
3491
3492 for (k = 0; k < clust_size; k++)
3493 {
3494 piDx[next] = advance / clust_size;
3495 next++;
3496 if (k) j++;
3497 }
3498 }
3499 }
3500 return S_OK;
3501 }
3502
3503 /***********************************************************************
3504 * ScriptStringValidate (USP10.@)
3505 *
3506 * Validate a string analysis.
3507 *
3508 * PARAMS
3509 * ssa [I] string analysis.
3510 *
3511 * RETURNS
3512 * Success: S_OK
3513 * Failure: S_FALSE if invalid sequences are found
3514 * or a non-zero HRESULT if it fails.
3515 */
3516 HRESULT WINAPI ScriptStringValidate(SCRIPT_STRING_ANALYSIS ssa)
3517 {
3518 StringAnalysis *analysis = ssa;
3519
3520 TRACE("(%p)\n", ssa);
3521
3522 if (!analysis) return E_INVALIDARG;
3523 return (analysis->invalid) ? S_FALSE : S_OK;
3524 }
3525
3526 /***********************************************************************
3527 * ScriptString_pSize (USP10.@)
3528 *
3529 * Retrieve width and height of an analysed string.
3530 *
3531 * PARAMS
3532 * ssa [I] string analysis.
3533 *
3534 * RETURNS
3535 * Success: Pointer to a SIZE structure.
3536 * Failure: NULL
3537 */
3538 const SIZE * WINAPI ScriptString_pSize(SCRIPT_STRING_ANALYSIS ssa)
3539 {
3540 int i, j;
3541 StringAnalysis *analysis = ssa;
3542
3543 TRACE("(%p)\n", ssa);
3544
3545 if (!analysis) return NULL;
3546 if (!(analysis->dwFlags & SSA_GLYPHS)) return NULL;
3547
3548 if (!analysis->sz)
3549 {
3550 if (!(analysis->sz = heap_alloc(sizeof(SIZE)))) return NULL;
3551 analysis->sz->cy = analysis->glyphs[0].sc->tm.tmHeight;
3552
3553 analysis->sz->cx = 0;
3554 for (i = 0; i < analysis->numItems; i++)
3555 {
3556 if (analysis->glyphs[i].sc->tm.tmHeight > analysis->sz->cy)
3557 analysis->sz->cy = analysis->glyphs[i].sc->tm.tmHeight;
3558 for (j = 0; j < analysis->glyphs[i].numGlyphs; j++)
3559 analysis->sz->cx += analysis->glyphs[i].piAdvance[j];
3560 }
3561 }
3562 return analysis->sz;
3563 }
3564
3565 /***********************************************************************
3566 * ScriptString_pLogAttr (USP10.@)
3567 *
3568 * Retrieve logical attributes of an analysed string.
3569 *
3570 * PARAMS
3571 * ssa [I] string analysis.
3572 *
3573 * RETURNS
3574 * Success: Pointer to an array of SCRIPT_LOGATTR structures.
3575 * Failure: NULL
3576 */
3577 const SCRIPT_LOGATTR * WINAPI ScriptString_pLogAttr(SCRIPT_STRING_ANALYSIS ssa)
3578 {
3579 StringAnalysis *analysis = ssa;
3580
3581 TRACE("(%p)\n", ssa);
3582
3583 if (!analysis) return NULL;
3584 if (!(analysis->dwFlags & SSA_BREAK)) return NULL;
3585 return analysis->logattrs;
3586 }
3587
3588 /***********************************************************************
3589 * ScriptString_pcOutChars (USP10.@)
3590 *
3591 * Retrieve the length of a string after clipping.
3592 *
3593 * PARAMS
3594 * ssa [I] String analysis.
3595 *
3596 * RETURNS
3597 * Success: Pointer to the length.
3598 * Failure: NULL
3599 */
3600 const int * WINAPI ScriptString_pcOutChars(SCRIPT_STRING_ANALYSIS ssa)
3601 {
3602 StringAnalysis *analysis = ssa;
3603
3604 TRACE("(%p)\n", ssa);
3605
3606 if (!analysis) return NULL;
3607 return &analysis->clip_len;
3608 }
3609
3610 /***********************************************************************
3611 * ScriptStringGetOrder (USP10.@)
3612 *
3613 * Retrieve a glyph order map.
3614 *
3615 * PARAMS
3616 * ssa [I] String analysis.
3617 * order [I/O] Array of glyph positions.
3618 *
3619 * RETURNS
3620 * Success: S_OK
3621 * Failure: a non-zero HRESULT.
3622 */
3623 HRESULT WINAPI ScriptStringGetOrder(SCRIPT_STRING_ANALYSIS ssa, UINT *order)
3624 {
3625 int i, j;
3626 unsigned int k;
3627 StringAnalysis *analysis = ssa;
3628
3629 TRACE("(%p)\n", ssa);
3630
3631 if (!analysis) return S_FALSE;
3632 if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
3633
3634 /* FIXME: handle RTL scripts */
3635 for (i = 0, k = 0; i < analysis->numItems; i++)
3636 for (j = 0; j < analysis->glyphs[i].numGlyphs; j++, k++)
3637 order[k] = k;
3638
3639 return S_OK;
3640 }
3641
3642 /***********************************************************************
3643 * ScriptGetLogicalWidths (USP10.@)
3644 *
3645 * Convert advance widths to logical widths.
3646 *
3647 * PARAMS
3648 * sa [I] Script analysis.
3649 * nbchars [I] Number of characters.
3650 * nbglyphs [I] Number of glyphs.
3651 * glyph_width [I] Array of glyph widths.
3652 * log_clust [I] Array of logical clusters.
3653 * sva [I] Visual attributes.
3654 * widths [O] Array of logical widths.
3655 *
3656 * RETURNS
3657 * Success: S_OK
3658 * Failure: a non-zero HRESULT.
3659 */
3660 HRESULT WINAPI ScriptGetLogicalWidths(const SCRIPT_ANALYSIS *sa, int nbchars, int nbglyphs,
3661 const int *glyph_width, const WORD *log_clust,
3662 const SCRIPT_VISATTR *sva, int *widths)
3663 {
3664 int i;
3665
3666 TRACE("(%p, %d, %d, %p, %p, %p, %p)\n",
3667 sa, nbchars, nbglyphs, glyph_width, log_clust, sva, widths);
3668
3669 /* FIXME */
3670 for (i = 0; i < nbchars; i++) widths[i] = glyph_width[i];
3671 return S_OK;
3672 }
3673
3674 /***********************************************************************
3675 * ScriptApplyLogicalWidth (USP10.@)
3676 *
3677 * Generate glyph advance widths.
3678 *
3679 * PARAMS
3680 * dx [I] Array of logical advance widths.
3681 * num_chars [I] Number of characters.
3682 * num_glyphs [I] Number of glyphs.
3683 * log_clust [I] Array of logical clusters.
3684 * sva [I] Visual attributes.
3685 * advance [I] Array of glyph advance widths.
3686 * sa [I] Script analysis.
3687 * abc [I/O] Summed ABC widths.
3688 * justify [O] Array of glyph advance widths.
3689 *
3690 * RETURNS
3691 * Success: S_OK
3692 * Failure: a non-zero HRESULT.
3693 */
3694 HRESULT WINAPI ScriptApplyLogicalWidth(const int *dx, int num_chars, int num_glyphs,
3695 const WORD *log_clust, const SCRIPT_VISATTR *sva,
3696 const int *advance, const SCRIPT_ANALYSIS *sa,
3697 ABC *abc, int *justify)
3698 {
3699 int i;
3700
3701 FIXME("(%p, %d, %d, %p, %p, %p, %p, %p, %p)\n",
3702 dx, num_chars, num_glyphs, log_clust, sva, advance, sa, abc, justify);
3703
3704 for (i = 0; i < num_chars; i++) justify[i] = advance[i];
3705 return S_OK;
3706 }
3707
3708 HRESULT WINAPI ScriptJustify(const SCRIPT_VISATTR *sva, const int *advance,
3709 int num_glyphs, int dx, int min_kashida, int *justify)
3710 {
3711 int i;
3712
3713 FIXME("(%p, %p, %d, %d, %d, %p)\n", sva, advance, num_glyphs, dx, min_kashida, justify);
3714
3715 for (i = 0; i < num_glyphs; i++) justify[i] = advance[i];
3716 return S_OK;
3717 }
3718
3719 HRESULT WINAPI ScriptGetFontScriptTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa, int cMaxTags, OPENTYPE_TAG *pScriptTags, int *pcTags)
3720 {
3721 HRESULT hr;
3722 if (!pScriptTags || !pcTags || cMaxTags == 0) return E_INVALIDARG;
3723 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3724
3725 return SHAPE_GetFontScriptTags(hdc, (ScriptCache *)*psc, psa, cMaxTags, pScriptTags, pcTags);
3726 }
3727
3728 HRESULT WINAPI ScriptGetFontLanguageTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript, int cMaxTags, OPENTYPE_TAG *pLangSysTags, int *pcTags)
3729 {
3730 HRESULT hr;
3731 if (!pLangSysTags || !pcTags || cMaxTags == 0) return E_INVALIDARG;
3732 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3733
3734 return SHAPE_GetFontLanguageTags(hdc, (ScriptCache *)*psc, psa, tagScript, cMaxTags, pLangSysTags, pcTags);
3735 }
3736
3737 HRESULT WINAPI ScriptGetFontFeatureTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript, OPENTYPE_TAG tagLangSys, int cMaxTags, OPENTYPE_TAG *pFeatureTags, int *pcTags)
3738 {
3739 HRESULT hr;
3740 if (!pFeatureTags || !pcTags || cMaxTags == 0) return E_INVALIDARG;
3741 if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
3742
3743 return SHAPE_GetFontFeatureTags(hdc, (ScriptCache *)*psc, psa, tagScript, tagLangSys, cMaxTags, pFeatureTags, pcTags);
3744 }
3745
3746 #ifdef __REACTOS__
3747 BOOL gbLpkPresent = FALSE;
3748 VOID WINAPI LpkPresent()
3749 {
3750 gbLpkPresent = TRUE; /* Turn it on this way! Wine is out of control! */
3751 }
3752 #endif