2005-07-27 11:02:52 +00:00
|
|
|
|
/*
|
|
|
|
|
* Implementation of Uniscribe Script Processor (usp10.dll)
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2005 Steven Edwards for CodeWeavers
|
2006-12-23 14:19:30 +00:00
|
|
|
|
* Copyright 2006 Hans Leidekker
|
2010-04-13 19:49:07 +00:00
|
|
|
|
* Copyright 2010 CodeWeavers, Aric Stewart
|
2005-07-27 11:02:52 +00:00
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-07-27 11:02:52 +00:00
|
|
|
|
*
|
|
|
|
|
* Notes:
|
|
|
|
|
* Uniscribe allows for processing of complex scripts such as joining
|
|
|
|
|
* and filtering characters and bi-directional text with custom line breaks.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2012-01-30 13:30:08 +00:00
|
|
|
|
#include <stdlib.h>
|
2016-01-18 13:50:44 +00:00
|
|
|
|
#include <math.h>
|
2005-07-27 11:02:52 +00:00
|
|
|
|
|
2005-08-10 09:51:40 +00:00
|
|
|
|
#include "windef.h"
|
|
|
|
|
#include "winbase.h"
|
2005-11-28 10:52:55 +00:00
|
|
|
|
#include "wingdi.h"
|
2005-08-10 09:51:40 +00:00
|
|
|
|
#include "winuser.h"
|
2006-09-07 06:42:56 +00:00
|
|
|
|
#include "winnls.h"
|
2011-10-10 19:59:36 +00:00
|
|
|
|
#include "winreg.h"
|
2005-08-10 09:51:40 +00:00
|
|
|
|
#include "usp10.h"
|
2005-07-27 11:02:52 +00:00
|
|
|
|
|
2010-04-13 19:49:07 +00:00
|
|
|
|
#include "usp10_internal.h"
|
|
|
|
|
|
2005-07-27 11:02:52 +00:00
|
|
|
|
#include "wine/debug.h"
|
2006-12-23 10:50:47 +00:00
|
|
|
|
#include "wine/unicode.h"
|
2005-07-27 11:02:52 +00:00
|
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
|
|
|
|
|
|
2010-08-12 19:57:06 +00:00
|
|
|
|
typedef struct _scriptRange
|
|
|
|
|
{
|
|
|
|
|
WORD script;
|
2011-12-16 19:15:43 +00:00
|
|
|
|
DWORD rangeFirst;
|
|
|
|
|
DWORD rangeLast;
|
2010-08-12 19:57:06 +00:00
|
|
|
|
WORD numericScript;
|
|
|
|
|
WORD punctScript;
|
|
|
|
|
} scriptRange;
|
|
|
|
|
|
|
|
|
|
static const scriptRange scriptRanges[] = {
|
|
|
|
|
/* Basic Latin: U+0000–U+007A */
|
2011-11-21 04:05:45 +00:00
|
|
|
|
{ Script_Latin, 0x00, 0x07a , Script_Numeric, Script_Punctuation},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Latin-1 Supplement: U+0080–U+00FF */
|
|
|
|
|
/* Latin Extended-A: U+0100–U+017F */
|
|
|
|
|
/* Latin Extended-B: U+0180–U+024F */
|
|
|
|
|
/* IPA Extensions: U+0250–U+02AF */
|
2011-12-14 16:22:07 +00:00
|
|
|
|
/* Spacing Modifier Letters:U+02B0–U+02FF */
|
|
|
|
|
{ Script_Latin, 0x80, 0x2ff , Script_Numeric2, Script_Punctuation},
|
2011-11-21 04:05:00 +00:00
|
|
|
|
/* Combining Diacritical Marks : U+0300–U+036F */
|
|
|
|
|
{ Script_Diacritical,0x300, 0x36f, 0, 0},
|
2010-08-23 18:58:00 +00:00
|
|
|
|
/* Greek: U+0370–U+03FF */
|
|
|
|
|
{ Script_Greek, 0x370, 0x3ff, 0, 0},
|
2010-08-23 18:58:07 +00:00
|
|
|
|
/* Cyrillic: U+0400–U+04FF */
|
|
|
|
|
/* Cyrillic Supplement: U+0500–U+052F */
|
|
|
|
|
{ Script_Cyrillic, 0x400, 0x52f, 0, 0},
|
2010-08-23 18:58:13 +00:00
|
|
|
|
/* Armenian: U+0530–U+058F */
|
|
|
|
|
{ Script_Armenian, 0x530, 0x58f, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Hebrew: U+0590–U+05FF */
|
|
|
|
|
{ Script_Hebrew, 0x590, 0x5ff, 0, 0},
|
|
|
|
|
/* Arabic: U+0600–U+06FF */
|
|
|
|
|
{ Script_Arabic, 0x600, 0x6ef, Script_Arabic_Numeric, 0},
|
|
|
|
|
/* Defined by Windows */
|
|
|
|
|
{ Script_Persian, 0x6f0, 0x6f9, 0, 0},
|
|
|
|
|
/* Continue Arabic: U+0600–U+06FF */
|
|
|
|
|
{ Script_Arabic, 0x6fa, 0x6ff, 0, 0},
|
|
|
|
|
/* Syriac: U+0700–U+074F*/
|
|
|
|
|
{ Script_Syriac, 0x700, 0x74f, 0, 0},
|
|
|
|
|
/* Arabic Supplement: U+0750–U+077F */
|
|
|
|
|
{ Script_Arabic, 0x750, 0x77f, 0, 0},
|
2010-08-23 18:57:52 +00:00
|
|
|
|
/* Thaana: U+0780–U+07BF */
|
|
|
|
|
{ Script_Thaana, 0x780, 0x7bf, 0, 0},
|
2011-12-14 13:28:56 +00:00
|
|
|
|
/* N’Ko: U+07C0–U+07FF */
|
|
|
|
|
{ Script_NKo, 0x7c0, 0x7ff, 0, 0},
|
2011-06-02 19:56:17 +00:00
|
|
|
|
/* Devanagari: U+0900–U+097F */
|
|
|
|
|
{ Script_Devanagari, 0x900, 0x97f, Script_Devanagari_Numeric, 0},
|
2011-06-02 19:56:23 +00:00
|
|
|
|
/* Bengali: U+0980–U+09FF */
|
|
|
|
|
{ Script_Bengali, 0x980, 0x9ff, Script_Bengali_Numeric, 0},
|
2011-06-02 19:56:30 +00:00
|
|
|
|
/* Gurmukhi: U+0A00–U+0A7F*/
|
|
|
|
|
{ Script_Gurmukhi, 0xa00, 0xa7f, Script_Gurmukhi_Numeric, 0},
|
2011-06-02 19:56:37 +00:00
|
|
|
|
/* Gujarati: U+0A80–U+0AFF*/
|
|
|
|
|
{ Script_Gujarati, 0xa80, 0xaff, Script_Gujarati_Numeric, 0},
|
2011-06-02 19:56:43 +00:00
|
|
|
|
/* Oriya: U+0B00–U+0B7F */
|
|
|
|
|
{ Script_Oriya, 0xb00, 0xb7f, Script_Oriya_Numeric, 0},
|
2011-06-02 19:56:49 +00:00
|
|
|
|
/* Tamil: U+0B80–U+0BFF */
|
|
|
|
|
{ Script_Tamil, 0xb80, 0xbff, Script_Tamil_Numeric, 0},
|
2011-06-02 19:56:55 +00:00
|
|
|
|
/* Telugu: U+0C00–U+0C7F */
|
|
|
|
|
{ Script_Telugu, 0xc00, 0xc7f, Script_Telugu_Numeric, 0},
|
2011-06-02 19:57:04 +00:00
|
|
|
|
/* Kannada: U+0C80–U+0CFF */
|
|
|
|
|
{ Script_Kannada, 0xc80, 0xcff, Script_Kannada_Numeric, 0},
|
2011-06-02 19:57:09 +00:00
|
|
|
|
/* Malayalam: U+0D00–U+0D7F */
|
|
|
|
|
{ Script_Malayalam, 0xd00, 0xd7f, Script_Malayalam_Numeric, 0},
|
2010-08-24 16:55:11 +00:00
|
|
|
|
/* Sinhala: U+0D80–U+0DFF */
|
|
|
|
|
{ Script_Sinhala, 0xd80, 0xdff, 0, 0},
|
2010-08-24 16:55:33 +00:00
|
|
|
|
/* Thai: U+0E00–U+0E7F */
|
|
|
|
|
{ Script_Thai, 0xe00, 0xe7f, Script_Thai_Numeric, 0},
|
2010-08-24 16:55:41 +00:00
|
|
|
|
/* Lao: U+0E80–U+0EFF */
|
|
|
|
|
{ Script_Lao, 0xe80, 0xeff, Script_Lao_Numeric, 0},
|
2010-08-24 16:55:18 +00:00
|
|
|
|
/* Tibetan: U+0F00–U+0FFF */
|
2011-11-17 16:39:51 +00:00
|
|
|
|
{ Script_Tibetan, 0xf00, 0xfff, 0, 0},
|
2011-12-09 17:02:30 +00:00
|
|
|
|
/* Myanmar: U+1000–U+109F */
|
|
|
|
|
{ Script_Myanmar, 0x1000, 0x109f, Script_Myanmar_Numeric, 0},
|
2010-08-23 18:58:21 +00:00
|
|
|
|
/* Georgian: U+10A0–U+10FF */
|
|
|
|
|
{ Script_Georgian, 0x10a0, 0x10ff, 0, 0},
|
2011-12-12 20:50:34 +00:00
|
|
|
|
/* Hangul Jamo: U+1100–U+11FF */
|
|
|
|
|
{ Script_Hangul, 0x1100, 0x11ff, 0, 0},
|
2011-12-14 13:27:38 +00:00
|
|
|
|
/* Ethiopic: U+1200–U+137F */
|
|
|
|
|
/* Ethiopic Extensions: U+1380–U+139F */
|
|
|
|
|
{ Script_Ethiopic, 0x1200, 0x139f, 0, 0},
|
2011-12-14 13:29:10 +00:00
|
|
|
|
/* Cherokee: U+13A0–U+13FF */
|
|
|
|
|
{ Script_Cherokee, 0x13a0, 0x13ff, 0, 0},
|
2011-12-14 13:29:19 +00:00
|
|
|
|
/* Canadian Aboriginal Syllabics: U+1400–U+167F */
|
|
|
|
|
{ Script_Canadian, 0x1400, 0x167f, 0, 0},
|
2011-12-14 13:29:28 +00:00
|
|
|
|
/* Ogham: U+1680–U+169F */
|
|
|
|
|
{ Script_Ogham, 0x1680, 0x169f, 0, 0},
|
2011-12-14 13:29:39 +00:00
|
|
|
|
/* Runic: U+16A0–U+16F0 */
|
|
|
|
|
{ Script_Runic, 0x16a0, 0x16f0, 0, 0},
|
2011-12-12 13:32:15 +00:00
|
|
|
|
/* Khmer: U+1780–U+17FF */
|
|
|
|
|
{ Script_Khmer, 0x1780, 0x17ff, Script_Khmer_Numeric, 0},
|
2011-12-14 13:27:56 +00:00
|
|
|
|
/* Mongolian: U+1800–U+18AF */
|
|
|
|
|
{ Script_Mongolian, 0x1800, 0x18af, Script_Mongolian_Numeric, 0},
|
2011-12-14 13:29:19 +00:00
|
|
|
|
/* Canadian Aboriginal Syllabics Extended: U+18B0–U+18FF */
|
|
|
|
|
{ Script_Canadian, 0x18b0, 0x18ff, 0, 0},
|
2011-12-12 13:31:56 +00:00
|
|
|
|
/* Tai Le: U+1950–U+197F */
|
|
|
|
|
{ Script_Tai_Le, 0x1950, 0x197f, 0, 0},
|
2011-12-12 13:32:10 +00:00
|
|
|
|
/* New Tai Lue: U+1980–U+19DF */
|
|
|
|
|
{ Script_New_Tai_Lue,0x1980, 0x19df, Script_New_Tai_Lue_Numeric, 0},
|
2011-12-12 13:32:15 +00:00
|
|
|
|
/* Khmer Symbols: U+19E0–U+19FF */
|
|
|
|
|
{ Script_Khmer, 0x19e0, 0x19ff, Script_Khmer_Numeric, 0},
|
2011-06-02 19:56:17 +00:00
|
|
|
|
/* Vedic Extensions: U+1CD0-U+1CFF */
|
|
|
|
|
{ Script_Devanagari, 0x1cd0, 0x1cff, Script_Devanagari_Numeric, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Phonetic Extensions: U+1D00–U+1DBF */
|
|
|
|
|
{ Script_Latin, 0x1d00, 0x1dbf, 0, 0},
|
2011-11-21 04:05:00 +00:00
|
|
|
|
/* Combining Diacritical Marks Supplement: U+1DC0–U+1DFF */
|
|
|
|
|
{ Script_Diacritical,0x1dc0, 0x1dff, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Latin Extended Additional: U+1E00–U+1EFF */
|
|
|
|
|
{ Script_Latin, 0x1e00, 0x1eff, 0, 0},
|
2010-08-23 18:58:00 +00:00
|
|
|
|
/* Greek Extended: U+1F00–U+1FFF */
|
|
|
|
|
{ Script_Greek, 0x1f00, 0x1fff, 0, 0},
|
2011-11-11 14:52:27 +00:00
|
|
|
|
/* General Punctuation: U+2000 –U+206f */
|
2011-11-21 04:05:45 +00:00
|
|
|
|
{ Script_Latin, 0x2000, 0x206f, 0, 0},
|
2011-11-11 14:52:27 +00:00
|
|
|
|
/* Superscripts and Subscripts : U+2070 –U+209f */
|
|
|
|
|
/* Currency Symbols : U+20a0 –U+20cf */
|
2011-11-21 04:05:45 +00:00
|
|
|
|
{ Script_Numeric2, 0x2070, 0x2070, 0, 0},
|
|
|
|
|
{ Script_Latin, 0x2071, 0x2073, 0, 0},
|
|
|
|
|
{ Script_Numeric2, 0x2074, 0x2079, 0, 0},
|
|
|
|
|
{ Script_Latin, 0x207a, 0x207f, 0, 0},
|
|
|
|
|
{ Script_Numeric2, 0x2080, 0x2089, 0, 0},
|
|
|
|
|
{ Script_Latin, 0x208a, 0x20cf, 0, 0},
|
2011-11-11 14:52:27 +00:00
|
|
|
|
/* Letterlike Symbols : U+2100 –U+214f */
|
|
|
|
|
/* Number Forms : U+2150 –U+218f */
|
|
|
|
|
/* Arrows : U+2190 –U+21ff */
|
|
|
|
|
/* Mathematical Operators : U+2200 –U+22ff */
|
|
|
|
|
/* Miscellaneous Technical : U+2300 –U+23ff */
|
|
|
|
|
/* Control Pictures : U+2400 –U+243f */
|
|
|
|
|
/* Optical Character Recognition : U+2440 –U+245f */
|
|
|
|
|
/* Enclosed Alphanumerics : U+2460 –U+24ff */
|
|
|
|
|
/* Box Drawing : U+2500 –U+25ff */
|
|
|
|
|
/* Block Elements : U+2580 –U+259f */
|
|
|
|
|
/* Geometric Shapes : U+25a0 –U+25ff */
|
|
|
|
|
/* Miscellaneous Symbols : U+2600 –U+26ff */
|
|
|
|
|
/* Dingbats : U+2700 –U+27bf */
|
|
|
|
|
/* Miscellaneous Mathematical Symbols-A : U+27c0 –U+27ef */
|
|
|
|
|
/* Supplemental Arrows-A : U+27f0 –U+27ff */
|
|
|
|
|
{ Script_Latin, 0x2100, 0x27ff, 0, 0},
|
2011-12-14 13:29:48 +00:00
|
|
|
|
/* Braille Patterns: U+2800–U+28FF */
|
|
|
|
|
{ Script_Braille, 0x2800, 0x28ff, 0, 0},
|
2011-11-11 14:52:27 +00:00
|
|
|
|
/* Supplemental Arrows-B : U+2900 –U+297f */
|
|
|
|
|
/* Miscellaneous Mathematical Symbols-B : U+2980 –U+29ff */
|
|
|
|
|
/* Supplemental Mathematical Operators : U+2a00 –U+2aff */
|
|
|
|
|
/* Miscellaneous Symbols and Arrows : U+2b00 –U+2bff */
|
|
|
|
|
{ Script_Latin, 0x2900, 0x2bff, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Latin Extended-C: U+2C60–U+2C7F */
|
|
|
|
|
{ Script_Latin, 0x2c60, 0x2c7f, 0, 0},
|
2010-08-23 18:58:21 +00:00
|
|
|
|
/* Georgian: U+2D00–U+2D2F */
|
|
|
|
|
{ Script_Georgian, 0x2d00, 0x2d2f, 0, 0},
|
2011-12-14 13:28:46 +00:00
|
|
|
|
/* Tifinagh: U+2D30–U+2D7F */
|
|
|
|
|
{ Script_Tifinagh, 0x2d30, 0x2d7f, 0, 0},
|
2011-12-14 13:27:38 +00:00
|
|
|
|
/* Ethiopic Extensions: U+2D80–U+2DDF */
|
|
|
|
|
{ Script_Ethiopic, 0x2d80, 0x2ddf, 0, 0},
|
2010-08-23 18:58:07 +00:00
|
|
|
|
/* Cyrillic Extended-A: U+2DE0–U+2DFF */
|
|
|
|
|
{ Script_Cyrillic, 0x2de0, 0x2dff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* CJK Radicals Supplement: U+2E80–U+2EFF */
|
|
|
|
|
/* Kangxi Radicals: U+2F00–U+2FDF */
|
|
|
|
|
{ Script_CJK_Han, 0x2e80, 0x2fdf, 0, 0},
|
|
|
|
|
/* Ideographic Description Characters: U+2FF0–U+2FFF */
|
|
|
|
|
{ Script_Ideograph ,0x2ff0, 0x2fff, 0, 0},
|
|
|
|
|
/* CJK Symbols and Punctuation: U+3000–U+303F */
|
|
|
|
|
{ Script_Ideograph ,0x3000, 0x3004, 0, 0},
|
|
|
|
|
{ Script_CJK_Han ,0x3005, 0x3005, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x3006, 0x3006, 0, 0},
|
|
|
|
|
{ Script_CJK_Han ,0x3007, 0x3007, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x3008, 0x3020, 0, 0},
|
|
|
|
|
{ Script_CJK_Han ,0x3021, 0x3029, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x302a, 0x3030, 0, 0},
|
2011-12-12 20:50:29 +00:00
|
|
|
|
/* Kana Marks: */
|
|
|
|
|
{ Script_Kana ,0x3031, 0x3035, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
{ Script_Ideograph ,0x3036, 0x3037, 0, 0},
|
|
|
|
|
{ Script_CJK_Han ,0x3038, 0x303b, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x303c, 0x303f, 0, 0},
|
2011-12-12 20:50:29 +00:00
|
|
|
|
/* Hiragana: U+3040–U+309F */
|
|
|
|
|
/* Katakana: U+30A0–U+30FF */
|
|
|
|
|
{ Script_Kana ,0x3040, 0x30ff, 0, 0},
|
2011-12-12 20:50:20 +00:00
|
|
|
|
/* Bopomofo: U+3100–U+312F */
|
|
|
|
|
{ Script_Bopomofo ,0x3100, 0x312f, 0, 0},
|
2011-12-12 20:50:34 +00:00
|
|
|
|
/* Hangul Compatibility Jamo: U+3130–U+318F */
|
|
|
|
|
{ Script_Hangul ,0x3130, 0x318f, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* Kanbun: U+3190–U+319F */
|
|
|
|
|
{ Script_Ideograph ,0x3190, 0x319f, 0, 0},
|
2011-12-12 20:50:20 +00:00
|
|
|
|
/* Bopomofo Extended: U+31A0–U+31BF */
|
|
|
|
|
{ Script_Bopomofo ,0x31a0, 0x31bf, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* CJK Strokes: U+31C0–U+31EF */
|
|
|
|
|
{ Script_Ideograph ,0x31c0, 0x31ef, 0, 0},
|
2011-12-12 20:50:29 +00:00
|
|
|
|
/* Katakana Phonetic Extensions: U+31F0–U+31FF */
|
|
|
|
|
{ Script_Kana ,0x31f0, 0x31ff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* Enclosed CJK Letters and Months: U+3200–U+32FF */
|
2011-12-12 20:50:34 +00:00
|
|
|
|
{ Script_Hangul ,0x3200, 0x321f, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x3220, 0x325f, 0, 0},
|
|
|
|
|
{ Script_Hangul ,0x3260, 0x327f, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x3280, 0x32ef, 0, 0},
|
2011-12-12 20:50:29 +00:00
|
|
|
|
{ Script_Kana ,0x32d0, 0x31ff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* CJK Compatibility: U+3300–U+33FF*/
|
2011-12-12 20:50:29 +00:00
|
|
|
|
{ Script_Kana ,0x3300, 0x3357, 0, 0},
|
|
|
|
|
{ Script_Ideograph ,0x3358, 0x33ff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* CJK Unified Ideographs Extension A: U+3400–U+4DBF */
|
|
|
|
|
{ Script_CJK_Han ,0x3400, 0x4dbf, 0, 0},
|
|
|
|
|
/* CJK Unified Ideographs: U+4E00–U+9FFF */
|
|
|
|
|
{ Script_CJK_Han ,0x4e00, 0x9fff, 0, 0},
|
2011-12-12 20:50:40 +00:00
|
|
|
|
/* Yi: U+A000–U+A4CF */
|
|
|
|
|
{ Script_Yi ,0xa000, 0xa4cf, 0, 0},
|
2011-12-14 13:29:03 +00:00
|
|
|
|
/* Vai: U+A500–U+A63F */
|
|
|
|
|
{ Script_Vai ,0xa500, 0xa63f, Script_Vai_Numeric, 0},
|
2010-08-23 18:58:07 +00:00
|
|
|
|
/* Cyrillic Extended-B: U+A640–U+A69F */
|
|
|
|
|
{ Script_Cyrillic, 0xa640, 0xa69f, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Modifier Tone Letters: U+A700–U+A71F */
|
|
|
|
|
/* Latin Extended-D: U+A720–U+A7FF */
|
|
|
|
|
{ Script_Latin, 0xa700, 0xa7ff, 0, 0},
|
2010-08-24 16:55:27 +00:00
|
|
|
|
/* Phags-pa: U+A840–U+A87F */
|
|
|
|
|
{ Script_Phags_pa, 0xa840, 0xa87f, 0, 0},
|
2011-06-02 19:56:17 +00:00
|
|
|
|
/* Devanagari Extended: U+A8E0-U+A8FF */
|
|
|
|
|
{ Script_Devanagari, 0xa8e0, 0xa8ff, Script_Devanagari_Numeric, 0},
|
2011-12-09 17:02:30 +00:00
|
|
|
|
/* Myanmar Extended-A: U+AA60–U+AA7F */
|
|
|
|
|
{ Script_Myanmar, 0xaa60, 0xaa7f, Script_Myanmar_Numeric, 0},
|
2011-12-12 20:50:34 +00:00
|
|
|
|
/* Hangul Jamo Extended-A: U+A960–U+A97F */
|
|
|
|
|
{ Script_Hangul, 0xa960, 0xa97f, 0, 0},
|
|
|
|
|
/* Hangul Syllables: U+AC00–U+D7A3 */
|
|
|
|
|
{ Script_Hangul, 0xac00, 0xd7a3, 0, 0},
|
|
|
|
|
/* Hangul Jamo Extended-B: U+D7B0–U+D7FF */
|
|
|
|
|
{ Script_Hangul, 0xd7b0, 0xd7ff, 0, 0},
|
2011-12-14 13:29:54 +00:00
|
|
|
|
/* Surrogates Area: U+D800–U+DFFF */
|
|
|
|
|
{ Script_Surrogates, 0xd800, 0xdbfe, 0, 0},
|
|
|
|
|
{ Script_Private, 0xdbff, 0xdc00, 0, 0},
|
|
|
|
|
{ Script_Surrogates, 0xdc01, 0xdfff, 0, 0},
|
|
|
|
|
/* Private Use Area: U+E000–U+F8FF */
|
|
|
|
|
{ Script_Private, 0xe000, 0xf8ff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* CJK Compatibility Ideographs: U+F900–U+FAFF */
|
|
|
|
|
{ Script_CJK_Han ,0xf900, 0xfaff, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Latin Ligatures: U+FB00–U+FB06 */
|
|
|
|
|
{ Script_Latin, 0xfb00, 0xfb06, 0, 0},
|
2010-08-23 18:58:13 +00:00
|
|
|
|
/* Armenian ligatures U+FB13..U+FB17 */
|
|
|
|
|
{ Script_Armenian, 0xfb13, 0xfb17, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Alphabetic Presentation Forms: U+FB1D–U+FB4F */
|
|
|
|
|
{ Script_Hebrew, 0xfb1d, 0xfb4f, 0, 0},
|
|
|
|
|
/* Arabic Presentation Forms-A: U+FB50–U+FDFF*/
|
|
|
|
|
{ Script_Arabic, 0xfb50, 0xfdff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* Vertical Forms: U+FE10–U+FE1F */
|
|
|
|
|
/* Combining Half Marks: U+FE20–U+FE2F */
|
|
|
|
|
/* CJK Compatibility Forms: U+FE30–U+FE4F */
|
|
|
|
|
/* Small Form Variants: U+FE50–U+FE6F */
|
|
|
|
|
{ Script_Ideograph ,0xfe10, 0xfe6f, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* Arabic Presentation Forms-B: U+FE70–U+FEFF*/
|
|
|
|
|
{ Script_Arabic, 0xfe70, 0xfeff, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
/* Halfwidth and Fullwidth Forms: U+FF00–FFEF */
|
|
|
|
|
{ Script_Ideograph ,0xff00, 0xff64, Script_Numeric2, 0},
|
2011-12-12 20:50:29 +00:00
|
|
|
|
{ Script_Kana ,0xff65, 0xff9f, 0, 0},
|
2011-12-12 20:50:34 +00:00
|
|
|
|
{ Script_Hangul ,0xffa0, 0xffdf, 0, 0},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
{ Script_Ideograph ,0xffe0, 0xffef, 0, 0},
|
2011-12-18 03:27:02 +00:00
|
|
|
|
/* Plane - 1 */
|
|
|
|
|
/* Deseret: U+10400–U+1044F */
|
|
|
|
|
{ Script_Deseret, 0x10400, 0x1044F, 0, 0},
|
2011-12-18 03:27:15 +00:00
|
|
|
|
/* Osmanya: U+10480–U+104AF */
|
|
|
|
|
{ Script_Osmanya, 0x10480, 0x104AF, Script_Osmanya_Numeric, 0},
|
2011-12-19 13:25:17 +00:00
|
|
|
|
/* Mathematical Alphanumeric Symbols: U+1D400–U+1D7FF */
|
|
|
|
|
{ Script_MathAlpha, 0x1D400, 0x1D7FF, 0, 0},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
/* END */
|
|
|
|
|
{ SCRIPT_UNDEFINED, 0, 0, 0}
|
|
|
|
|
};
|
|
|
|
|
|
2016-04-05 09:39:23 +00:00
|
|
|
|
/* this must be in order so that the index matches the Script value */
|
2011-12-29 20:50:23 +00:00
|
|
|
|
const scriptData scriptInformation[] = {
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{SCRIPT_UNDEFINED, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Latin, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('l','a','t','n'),
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_CR, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_ENGLISH, 1, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
0x00000000,
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Control, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_ENGLISH, 0, 1, 0, 0, ANSI_CHARSET, 1, 0, 0, 0, 0, 0, 1, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Punctuation, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
0x00000000,
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Arabic, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_ARABIC, 0, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 1, 1, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('a','r','a','b'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Arabic_Numeric, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_ARABIC, 1, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('a','r','a','b'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Hebrew, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_HEBREW, 0, 1, 0, 1, HEBREW_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('h','e','b','r'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{{Script_Syriac, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_SYRIAC, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 1, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('s','y','r','c'),
|
|
|
|
|
{'E','s','t','r','a','n','g','e','l','o',' ','E','d','e','s','s','a',0}},
|
2016-06-05 18:05:28 +00:00
|
|
|
|
{{Script_Persian, 0, 1, 0, 0, 0, 0, { 2,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_PERSIAN, 1, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2016-06-05 18:05:26 +00:00
|
|
|
|
MS_MAKE_TAG('a','r','a','b'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-23 18:57:52 +00:00
|
|
|
|
{{Script_Thaana, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_DIVEHI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','h','a','a'),
|
|
|
|
|
{'M','V',' ','B','o','l','i',0}},
|
2010-08-23 18:58:00 +00:00
|
|
|
|
{{Script_Greek, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_GREEK, 0, 0, 0, 0, GREEK_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','r','e','k'),
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-23 18:58:07 +00:00
|
|
|
|
{{Script_Cyrillic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_RUSSIAN, 0, 0, 0, 0, RUSSIAN_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('c','y','r','l'),
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-23 18:58:13 +00:00
|
|
|
|
{{Script_Armenian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_ARMENIAN, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('a','r','m','n'),
|
2011-10-14 13:25:17 +00:00
|
|
|
|
{'S','y','l','f','a','e','n',0}},
|
2010-08-23 18:58:21 +00:00
|
|
|
|
{{Script_Georgian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_GEORGIAN, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','e','o','r'),
|
2011-10-14 13:25:17 +00:00
|
|
|
|
{'S','y','l','f','a','e','n',0}},
|
2010-08-24 16:55:11 +00:00
|
|
|
|
{{Script_Sinhala, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_SINHALESE, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('s','i','n','h'),
|
|
|
|
|
{'I','s','k','o','o','l','a',' ','P','o','t','a',0}},
|
2010-08-24 16:55:18 +00:00
|
|
|
|
{{Script_Tibetan, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_TIBETAN, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','i','b','t'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','H','i','m','a','l','a','y','a',0}},
|
2010-08-24 16:55:18 +00:00
|
|
|
|
{{Script_Tibetan_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_TIBETAN, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','i','b','t'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','H','i','m','a','l','a','y','a',0}},
|
2010-08-24 16:55:27 +00:00
|
|
|
|
{{Script_Phags_pa, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_MONGOLIAN, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('p','h','a','g'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','P','h','a','g','s','P','a',0}},
|
2010-08-24 16:55:33 +00:00
|
|
|
|
{{Script_Thai, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_THAI, 0, 1, 1, 1, THAI_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 1},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','h','a','i'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-24 16:55:33 +00:00
|
|
|
|
{{Script_Thai_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_THAI, 1, 1, 0, 0, THAI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','h','a','i'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-24 16:55:41 +00:00
|
|
|
|
{{Script_Lao, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_LAO, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('l','a','o',' '),
|
|
|
|
|
{'D','o','k','C','h','a','m','p','a',0}},
|
2010-08-24 16:55:41 +00:00
|
|
|
|
{{Script_Lao_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-05-10 18:09:47 +00:00
|
|
|
|
{LANG_LAO, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('l','a','o',' '),
|
|
|
|
|
{'D','o','k','C','h','a','m','p','a',0}},
|
2011-06-02 19:56:17 +00:00
|
|
|
|
{{Script_Devanagari, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_HINDI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('d','e','v','a'),
|
|
|
|
|
{'M','a','n','g','a','l',0}},
|
2011-06-02 19:56:17 +00:00
|
|
|
|
{{Script_Devanagari_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_HINDI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('d','e','v','a'),
|
|
|
|
|
{'M','a','n','g','a','l',0}},
|
2011-06-02 19:56:23 +00:00
|
|
|
|
{{Script_Bengali, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_BENGALI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('b','e','n','g'),
|
|
|
|
|
{'V','r','i','n','d','a',0}},
|
2011-06-02 19:56:23 +00:00
|
|
|
|
{{Script_Bengali_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_BENGALI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('b','e','n','g'),
|
|
|
|
|
{'V','r','i','n','d','a',0}},
|
2011-06-02 19:56:23 +00:00
|
|
|
|
{{Script_Bengali_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_BENGALI, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('b','e','n','g'),
|
|
|
|
|
{'V','r','i','n','d','a',0}},
|
2011-06-02 19:56:30 +00:00
|
|
|
|
{{Script_Gurmukhi, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_PUNJABI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','u','r','u'),
|
|
|
|
|
{'R','a','a','v','i',0}},
|
2011-06-02 19:56:30 +00:00
|
|
|
|
{{Script_Gurmukhi_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_PUNJABI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','u','r','u'),
|
|
|
|
|
{'R','a','a','v','i',0}},
|
2011-06-02 19:56:37 +00:00
|
|
|
|
{{Script_Gujarati, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_GUJARATI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','u','j','r'),
|
|
|
|
|
{'S','h','r','u','t','i',0}},
|
2011-06-02 19:56:37 +00:00
|
|
|
|
{{Script_Gujarati_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_GUJARATI, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','u','j','r'),
|
|
|
|
|
{'S','h','r','u','t','i',0}},
|
2011-06-02 19:56:37 +00:00
|
|
|
|
{{Script_Gujarati_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_GUJARATI, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('g','u','j','r'),
|
|
|
|
|
{'S','h','r','u','t','i',0}},
|
2011-06-02 19:56:43 +00:00
|
|
|
|
{{Script_Oriya, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ORIYA, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('o','r','y','a'),
|
|
|
|
|
{'K','a','l','i','n','g','a',0}},
|
2011-06-02 19:56:43 +00:00
|
|
|
|
{{Script_Oriya_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ORIYA, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('o','r','y','a'),
|
|
|
|
|
{'K','a','l','i','n','g','a',0}},
|
2011-06-02 19:56:49 +00:00
|
|
|
|
{{Script_Tamil, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_TAMIL, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','a','m','l'),
|
|
|
|
|
{'L','a','t','h','a',0}},
|
2011-06-02 19:56:49 +00:00
|
|
|
|
{{Script_Tamil_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_TAMIL, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','a','m','l'),
|
|
|
|
|
{'L','a','t','h','a',0}},
|
2011-06-02 19:56:55 +00:00
|
|
|
|
{{Script_Telugu, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_TELUGU, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','e','l','u'),
|
|
|
|
|
{'G','a','u','t','a','m','i',0}},
|
2011-06-02 19:56:55 +00:00
|
|
|
|
{{Script_Telugu_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_TELUGU, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('t','e','l','u'),
|
|
|
|
|
{'G','a','u','t','a','m','i',0}},
|
2011-06-02 19:57:04 +00:00
|
|
|
|
{{Script_Kannada, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_KANNADA, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('k','n','d','a'),
|
|
|
|
|
{'T','u','n','g','a',0}},
|
2011-06-02 19:57:04 +00:00
|
|
|
|
{{Script_Kannada_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_KANNADA, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('k','n','d','a'),
|
|
|
|
|
{'T','u','n','g','a',0}},
|
2011-06-02 19:57:09 +00:00
|
|
|
|
{{Script_Malayalam, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_MALAYALAM, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('m','l','y','m'),
|
|
|
|
|
{'K','a','r','t','i','k','a',0}},
|
2011-06-02 19:57:09 +00:00
|
|
|
|
{{Script_Malayalam_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_MALAYALAM, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
2011-10-10 19:59:36 +00:00
|
|
|
|
MS_MAKE_TAG('m','l','y','m'),
|
|
|
|
|
{'K','a','r','t','i','k','a',0}},
|
2011-11-21 04:05:00 +00:00
|
|
|
|
{{Script_Diacritical, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 1, 0, 1, ANSI_CHARSET, 0, 0, 0, 0, 0, 1, 1, 0, 0},
|
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
2011-11-21 04:05:22 +00:00
|
|
|
|
{{Script_Punctuation2, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('l','a','t','n'),
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2011-11-21 04:05:45 +00:00
|
|
|
|
{{Script_Numeric2, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 1, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
2011-12-09 17:02:30 +00:00
|
|
|
|
{{Script_Myanmar, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x55, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('m','y','m','r'),
|
2012-03-26 16:40:49 +00:00
|
|
|
|
{'M','y','a','n','m','a','r',' ','T','e','x','t',0}},
|
2011-12-09 17:02:30 +00:00
|
|
|
|
{{Script_Myanmar_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x55, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('m','y','m','r'),
|
|
|
|
|
{0}},
|
2011-12-12 13:31:56 +00:00
|
|
|
|
{{Script_Tai_Le, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('t','a','l','e'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','T','a','i',' ','L','e',0}},
|
2011-12-12 13:32:10 +00:00
|
|
|
|
{{Script_New_Tai_Lue, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('t','a','l','u'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','N','e','w',' ','T','a','i',' ','L','u','e',0}},
|
2011-12-12 13:32:10 +00:00
|
|
|
|
{{Script_New_Tai_Lue_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('t','a','l','u'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','N','e','w',' ','T','a','i',' ','L','u','e',0}},
|
2011-12-12 13:32:15 +00:00
|
|
|
|
{{Script_Khmer, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x53, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('k','h','m','r'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'D','a','u','n','P','e','n','h',0}},
|
2013-02-05 14:56:47 +00:00
|
|
|
|
{{Script_Khmer_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
2011-12-12 13:32:15 +00:00
|
|
|
|
{0x53, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('k','h','m','r'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'D','a','u','n','P','e','n','h',0}},
|
2011-12-12 20:50:12 +00:00
|
|
|
|
{{Script_CJK_Han, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('h','a','n','i'),
|
|
|
|
|
{0}},
|
|
|
|
|
{{Script_Ideograph, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('h','a','n','i'),
|
|
|
|
|
{0}},
|
2011-12-12 20:50:20 +00:00
|
|
|
|
{{Script_Bopomofo, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('b','o','p','o'),
|
|
|
|
|
{0}},
|
2011-12-12 20:50:29 +00:00
|
|
|
|
{{Script_Kana, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('k','a','n','a'),
|
|
|
|
|
{0}},
|
2011-12-12 20:50:34 +00:00
|
|
|
|
{{Script_Hangul, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_KOREAN, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('h','a','n','g'),
|
|
|
|
|
{0}},
|
2011-12-12 20:50:40 +00:00
|
|
|
|
{{Script_Yi, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 0, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('y','i',' ',' '),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','Y','i',' ','B','a','i','t','i',0}},
|
2011-12-14 13:27:38 +00:00
|
|
|
|
{{Script_Ethiopic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x5e, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('e','t','h','i'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'N','y','a','l','a',0}},
|
2011-12-14 13:27:38 +00:00
|
|
|
|
{{Script_Ethiopic_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x5e, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('e','t','h','i'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'N','y','a','l','a',0}},
|
2011-12-14 13:27:56 +00:00
|
|
|
|
{{Script_Mongolian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_MONGOLIAN, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('m','o','n','g'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'M','o','n','g','o','l','i','a','n',' ','B','a','i','t','i',0}},
|
2011-12-14 13:27:56 +00:00
|
|
|
|
{{Script_Mongolian_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_MONGOLIAN, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('m','o','n','g'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'M','o','n','g','o','l','i','a','n',' ','B','a','i','t','i',0}},
|
2011-12-14 13:28:46 +00:00
|
|
|
|
{{Script_Tifinagh, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('t','f','n','g'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','b','r','i','m','a',0}},
|
2011-12-14 13:28:56 +00:00
|
|
|
|
{{Script_NKo, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('n','k','o',' '),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','b','r','i','m','a',0}},
|
2011-12-14 13:29:03 +00:00
|
|
|
|
{{Script_Vai, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('v','a','i',' '),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','b','r','i','m','a',0}},
|
2011-12-14 13:29:03 +00:00
|
|
|
|
{{Script_Vai_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('v','a','i',' '),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','b','r','i','m','a',0}},
|
2011-12-14 13:29:10 +00:00
|
|
|
|
{{Script_Cherokee, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x5c, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('c','h','e','r'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'P','l','a','n','t','a','g','e','n','e','t',' ','C','h','e','r','o','k','e','e',0}},
|
2011-12-14 13:29:19 +00:00
|
|
|
|
{{Script_Canadian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0x5d, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('c','a','n','s'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','u','p','h','e','m','i','a',0}},
|
2011-12-14 13:29:28 +00:00
|
|
|
|
{{Script_Ogham, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('o','g','a','m'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
|
2011-12-14 13:29:39 +00:00
|
|
|
|
{{Script_Runic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('r','u','n','r'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
|
2011-12-14 13:29:48 +00:00
|
|
|
|
{{Script_Braille, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('b','r','a','i'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
|
2011-12-14 13:29:54 +00:00
|
|
|
|
{{Script_Surrogates, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
|
|
|
|
{{Script_Private, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 0, 0, 0, DEFAULT_CHARSET, 0, 1, 0, 0, 0, 0, 1, 0, 0},
|
|
|
|
|
0x00000000,
|
|
|
|
|
{0}},
|
2011-12-18 03:27:02 +00:00
|
|
|
|
{{Script_Deseret, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('d','s','r','t'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'S','e','g','o','e',' ','U','I',' ','S','y','m','b','o','l',0}},
|
2011-12-18 03:27:15 +00:00
|
|
|
|
{{Script_Osmanya, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('o','s','m','a'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','b','r','i','m','a',0}},
|
2011-12-18 03:27:15 +00:00
|
|
|
|
{{Script_Osmanya_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('o','s','m','a'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'E','b','r','i','m','a',0}},
|
2011-12-19 13:25:17 +00:00
|
|
|
|
{{Script_MathAlpha, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{0, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('m','a','t','h'),
|
2014-12-03 14:15:37 +00:00
|
|
|
|
{'C','a','m','b','r','i','a',' ','M','a','t','h',0}},
|
2011-12-22 19:05:11 +00:00
|
|
|
|
{{Script_Hebrew_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_HEBREW, 0, 1, 0, 0, HEBREW_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('h','e','b','r'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
|
|
|
|
{{Script_Vietnamese_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_VIETNAMESE, 0, 0, 0, 0, VIETNAMESE_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('l','a','t','n'),
|
2012-01-03 20:09:11 +00:00
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2011-12-22 19:05:11 +00:00
|
|
|
|
{{Script_Thai_Currency, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_THAI, 0, 1, 0, 0, THAI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0},
|
|
|
|
|
MS_MAKE_TAG('t','h','a','i'),
|
|
|
|
|
{'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f',0}},
|
2010-08-12 19:57:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-12-23 14:19:30 +00:00
|
|
|
|
static const SCRIPT_PROPERTIES *script_props[] =
|
|
|
|
|
{
|
2010-08-12 19:57:29 +00:00
|
|
|
|
&scriptInformation[0].props, &scriptInformation[1].props,
|
|
|
|
|
&scriptInformation[2].props, &scriptInformation[3].props,
|
|
|
|
|
&scriptInformation[4].props, &scriptInformation[5].props,
|
|
|
|
|
&scriptInformation[6].props, &scriptInformation[7].props,
|
|
|
|
|
&scriptInformation[8].props, &scriptInformation[9].props,
|
2010-08-23 18:58:00 +00:00
|
|
|
|
&scriptInformation[10].props, &scriptInformation[11].props,
|
2010-08-23 18:58:13 +00:00
|
|
|
|
&scriptInformation[12].props, &scriptInformation[13].props,
|
2010-08-24 16:55:11 +00:00
|
|
|
|
&scriptInformation[14].props, &scriptInformation[15].props,
|
2010-08-24 16:55:18 +00:00
|
|
|
|
&scriptInformation[16].props, &scriptInformation[17].props,
|
2010-08-24 16:55:33 +00:00
|
|
|
|
&scriptInformation[18].props, &scriptInformation[19].props,
|
2010-08-24 16:55:41 +00:00
|
|
|
|
&scriptInformation[20].props, &scriptInformation[21].props,
|
2011-06-02 19:56:17 +00:00
|
|
|
|
&scriptInformation[22].props, &scriptInformation[23].props,
|
2011-06-02 19:56:23 +00:00
|
|
|
|
&scriptInformation[24].props, &scriptInformation[25].props,
|
|
|
|
|
&scriptInformation[26].props, &scriptInformation[27].props,
|
2011-06-02 19:56:30 +00:00
|
|
|
|
&scriptInformation[28].props, &scriptInformation[29].props,
|
2011-06-02 19:56:37 +00:00
|
|
|
|
&scriptInformation[30].props, &scriptInformation[31].props,
|
2011-06-02 19:56:43 +00:00
|
|
|
|
&scriptInformation[32].props, &scriptInformation[33].props,
|
2011-06-02 19:56:49 +00:00
|
|
|
|
&scriptInformation[34].props, &scriptInformation[35].props,
|
2011-06-02 19:56:55 +00:00
|
|
|
|
&scriptInformation[36].props, &scriptInformation[37].props,
|
2011-06-02 19:57:04 +00:00
|
|
|
|
&scriptInformation[38].props, &scriptInformation[39].props,
|
2011-06-02 19:57:09 +00:00
|
|
|
|
&scriptInformation[40].props, &scriptInformation[41].props,
|
2011-11-21 04:05:00 +00:00
|
|
|
|
&scriptInformation[42].props, &scriptInformation[43].props,
|
2011-12-09 17:02:30 +00:00
|
|
|
|
&scriptInformation[44].props, &scriptInformation[45].props,
|
2011-12-12 13:31:35 +00:00
|
|
|
|
&scriptInformation[46].props, &scriptInformation[47].props,
|
2011-12-12 13:32:10 +00:00
|
|
|
|
&scriptInformation[48].props, &scriptInformation[49].props,
|
2011-12-12 13:32:15 +00:00
|
|
|
|
&scriptInformation[50].props, &scriptInformation[51].props,
|
2011-12-12 20:50:12 +00:00
|
|
|
|
&scriptInformation[52].props, &scriptInformation[53].props,
|
2011-12-12 20:50:20 +00:00
|
|
|
|
&scriptInformation[54].props, &scriptInformation[55].props,
|
2011-12-12 20:50:34 +00:00
|
|
|
|
&scriptInformation[56].props, &scriptInformation[57].props,
|
2011-12-14 13:27:38 +00:00
|
|
|
|
&scriptInformation[58].props, &scriptInformation[59].props,
|
2011-12-14 13:27:56 +00:00
|
|
|
|
&scriptInformation[60].props, &scriptInformation[61].props,
|
2011-12-14 13:28:46 +00:00
|
|
|
|
&scriptInformation[62].props, &scriptInformation[63].props,
|
2011-12-14 13:29:03 +00:00
|
|
|
|
&scriptInformation[64].props, &scriptInformation[65].props,
|
2011-12-14 13:29:10 +00:00
|
|
|
|
&scriptInformation[66].props, &scriptInformation[67].props,
|
2011-12-14 13:29:28 +00:00
|
|
|
|
&scriptInformation[68].props, &scriptInformation[69].props,
|
2011-12-14 13:29:48 +00:00
|
|
|
|
&scriptInformation[70].props, &scriptInformation[71].props,
|
2011-12-14 13:29:54 +00:00
|
|
|
|
&scriptInformation[72].props, &scriptInformation[73].props,
|
2011-12-18 03:27:15 +00:00
|
|
|
|
&scriptInformation[74].props, &scriptInformation[75].props,
|
2011-12-19 13:25:17 +00:00
|
|
|
|
&scriptInformation[76].props, &scriptInformation[77].props,
|
2011-12-22 19:05:11 +00:00
|
|
|
|
&scriptInformation[78].props, &scriptInformation[79].props,
|
|
|
|
|
&scriptInformation[80].props, &scriptInformation[81].props
|
2006-12-23 14:19:30 +00:00
|
|
|
|
};
|
2006-02-16 11:06:18 +00:00
|
|
|
|
|
2006-12-16 02:28:07 +00:00
|
|
|
|
typedef struct {
|
2011-10-10 19:59:36 +00:00
|
|
|
|
ScriptCache *sc;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
int numGlyphs;
|
|
|
|
|
WORD* glyphs;
|
|
|
|
|
WORD* pwLogClust;
|
|
|
|
|
int* piAdvance;
|
|
|
|
|
SCRIPT_VISATTR* psva;
|
|
|
|
|
GOFFSET* pGoffset;
|
|
|
|
|
ABC* abc;
|
2011-03-18 17:22:31 +00:00
|
|
|
|
int iMaxPosX;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
HFONT fallbackFont;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
} StringGlyphs;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2008-10-09 13:17:29 +00:00
|
|
|
|
HDC hdc;
|
2011-09-08 17:50:03 +00:00
|
|
|
|
DWORD dwFlags;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
BOOL invalid;
|
2007-01-03 11:12:29 +00:00
|
|
|
|
int clip_len;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
int cItems;
|
|
|
|
|
int cMaxGlyphs;
|
|
|
|
|
SCRIPT_ITEM* pItem;
|
|
|
|
|
int numItems;
|
|
|
|
|
StringGlyphs* glyphs;
|
2006-12-23 16:19:31 +00:00
|
|
|
|
SCRIPT_LOGATTR* logattrs;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
SIZE* sz;
|
2011-08-29 11:49:40 +00:00
|
|
|
|
int* logical2visual;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
} StringAnalysis;
|
|
|
|
|
|
2012-01-30 13:30:08 +00:00
|
|
|
|
typedef struct {
|
|
|
|
|
BOOL ascending;
|
|
|
|
|
WORD target;
|
|
|
|
|
} FindGlyph_struct;
|
|
|
|
|
|
2007-12-10 22:53:07 +00:00
|
|
|
|
static inline void *heap_alloc(SIZE_T size)
|
2007-01-03 11:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
return HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 22:53:07 +00:00
|
|
|
|
static inline void *heap_alloc_zero(SIZE_T size)
|
2007-01-03 11:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 22:53:07 +00:00
|
|
|
|
static inline BOOL heap_free(LPVOID mem)
|
2007-01-03 11:12:17 +00:00
|
|
|
|
{
|
2007-12-10 22:53:07 +00:00
|
|
|
|
return HeapFree(GetProcessHeap(), 0, mem);
|
2007-01-03 11:12:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-21 10:13:14 +00:00
|
|
|
|
/* TODO Fix font properties on Arabic locale */
|
|
|
|
|
static inline BOOL set_cache_font_properties(const HDC hdc, ScriptCache *sc)
|
2007-01-23 10:03:12 +00:00
|
|
|
|
{
|
2012-11-21 10:13:14 +00:00
|
|
|
|
if (!sc->sfnt)
|
|
|
|
|
{
|
|
|
|
|
sc->sfp.wgBlank = sc->tm.tmBreakChar;
|
|
|
|
|
sc->sfp.wgDefault = sc->tm.tmDefaultChar;
|
|
|
|
|
sc->sfp.wgInvalid = sc->sfp.wgBlank;
|
|
|
|
|
sc->sfp.wgKashida = 0xFFFF;
|
|
|
|
|
sc->sfp.iKashidaWidth = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
static const WCHAR chars[4] = {0x0020, 0x200B, 0xF71B, 0x0640};
|
|
|
|
|
/* U+0020: numeric space
|
|
|
|
|
U+200B: zero width space
|
2016-04-05 09:39:23 +00:00
|
|
|
|
U+F71B: unknown char found by black box testing
|
2012-11-21 10:13:14 +00:00
|
|
|
|
U+0640: kashida */
|
|
|
|
|
WORD gi[4];
|
|
|
|
|
|
|
|
|
|
if (GetGlyphIndicesW(hdc, chars, 4, gi, GGI_MARK_NONEXISTING_GLYPHS) != GDI_ERROR)
|
|
|
|
|
{
|
|
|
|
|
if(gi[0] != 0xFFFF) /* 0xFFFF: index of default non exist char */
|
|
|
|
|
sc->sfp.wgBlank = gi[0];
|
|
|
|
|
else
|
|
|
|
|
sc->sfp.wgBlank = 0;
|
|
|
|
|
|
|
|
|
|
sc->sfp.wgDefault = 0;
|
|
|
|
|
|
|
|
|
|
if (gi[2] != 0xFFFF)
|
|
|
|
|
sc->sfp.wgInvalid = gi[2];
|
|
|
|
|
else if (gi[1] != 0xFFFF)
|
|
|
|
|
sc->sfp.wgInvalid = gi[1];
|
|
|
|
|
else if (gi[0] != 0xFFFF)
|
|
|
|
|
sc->sfp.wgInvalid = gi[0];
|
|
|
|
|
else
|
|
|
|
|
sc->sfp.wgInvalid = 0;
|
|
|
|
|
|
|
|
|
|
sc->sfp.wgKashida = gi[3];
|
|
|
|
|
|
|
|
|
|
sc->sfp.iKashidaWidth = 0; /* TODO */
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void get_cache_font_properties(SCRIPT_FONTPROPERTIES *sfp, ScriptCache *sc)
|
|
|
|
|
{
|
|
|
|
|
sfp->wgBlank = sc->sfp.wgBlank;
|
|
|
|
|
sfp->wgDefault = sc->sfp.wgDefault;
|
|
|
|
|
sfp->wgInvalid = sc->sfp.wgInvalid;
|
|
|
|
|
sfp->wgKashida = sc->sfp.wgKashida;
|
|
|
|
|
sfp->iKashidaWidth = sc->sfp.iKashidaWidth;
|
2007-01-23 10:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
static inline LONG get_cache_height(SCRIPT_CACHE *psc)
|
2007-01-23 10:03:12 +00:00
|
|
|
|
{
|
2007-12-12 18:11:28 +00:00
|
|
|
|
return ((ScriptCache *)*psc)->tm.tmHeight;
|
2007-01-23 10:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
static inline BYTE get_cache_pitch_family(SCRIPT_CACHE *psc)
|
2007-01-23 10:03:12 +00:00
|
|
|
|
{
|
2007-12-12 18:11:28 +00:00
|
|
|
|
return ((ScriptCache *)*psc)->tm.tmPitchAndFamily;
|
|
|
|
|
}
|
2007-01-23 10:03:12 +00:00
|
|
|
|
|
2011-12-16 19:15:47 +00:00
|
|
|
|
static inline WORD get_cache_glyph(SCRIPT_CACHE *psc, DWORD c)
|
2007-12-12 18:11:28 +00:00
|
|
|
|
{
|
2012-06-04 16:14:27 +00:00
|
|
|
|
CacheGlyphPage *page = ((ScriptCache *)*psc)->page[c / 0x10000];
|
|
|
|
|
WORD *block;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
|
2012-06-04 16:14:27 +00:00
|
|
|
|
if (!page) return 0;
|
|
|
|
|
block = page->glyphs[(c % 0x10000) >> GLYPH_BLOCK_SHIFT];
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (!block) return 0;
|
2012-06-04 16:14:27 +00:00
|
|
|
|
return block[(c % 0x10000) & GLYPH_BLOCK_MASK];
|
2007-01-23 10:03:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
static inline WORD set_cache_glyph(SCRIPT_CACHE *psc, WCHAR c, WORD glyph)
|
2006-12-28 15:12:45 +00:00
|
|
|
|
{
|
2012-06-04 16:14:27 +00:00
|
|
|
|
CacheGlyphPage **page = &((ScriptCache *)*psc)->page[c / 0x10000];
|
|
|
|
|
WORD **block;
|
|
|
|
|
if (!*page && !(*page = heap_alloc_zero(sizeof(CacheGlyphPage)))) return 0;
|
2007-01-23 10:03:12 +00:00
|
|
|
|
|
2012-06-04 16:14:27 +00:00
|
|
|
|
block = &(*page)->glyphs[(c % 0x10000) >> GLYPH_BLOCK_SHIFT];
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (!*block && !(*block = heap_alloc_zero(sizeof(WORD) * GLYPH_BLOCK_SIZE))) return 0;
|
2012-06-04 16:14:27 +00:00
|
|
|
|
return ((*block)[(c % 0x10000) & GLYPH_BLOCK_MASK] = glyph);
|
2006-12-28 15:12:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
static inline BOOL get_cache_glyph_widths(SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
|
2007-12-09 20:39:19 +00:00
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
static const ABC nil;
|
|
|
|
|
ABC *block = ((ScriptCache *)*psc)->widths[glyph >> GLYPH_BLOCK_SHIFT];
|
2007-12-09 20:39:19 +00:00
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (!block || !memcmp(&block[glyph & GLYPH_BLOCK_MASK], &nil, sizeof(ABC))) return FALSE;
|
|
|
|
|
memcpy(abc, &block[glyph & GLYPH_BLOCK_MASK], sizeof(ABC));
|
|
|
|
|
return TRUE;
|
2007-12-09 20:39:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
static inline BOOL set_cache_glyph_widths(SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
|
2007-12-09 20:39:19 +00:00
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
ABC **block = &((ScriptCache *)*psc)->widths[glyph >> GLYPH_BLOCK_SHIFT];
|
|
|
|
|
|
|
|
|
|
if (!*block && !(*block = heap_alloc_zero(sizeof(ABC) * GLYPH_BLOCK_SIZE))) return FALSE;
|
|
|
|
|
memcpy(&(*block)[glyph & GLYPH_BLOCK_MASK], abc, sizeof(ABC));
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static HRESULT init_script_cache(const HDC hdc, SCRIPT_CACHE *psc)
|
|
|
|
|
{
|
|
|
|
|
ScriptCache *sc;
|
2012-07-31 13:49:57 +00:00
|
|
|
|
int size;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
|
|
|
|
|
if (!psc) return E_INVALIDARG;
|
|
|
|
|
if (*psc) return S_OK;
|
|
|
|
|
if (!hdc) return E_PENDING;
|
|
|
|
|
|
|
|
|
|
if (!(sc = heap_alloc_zero(sizeof(ScriptCache)))) return E_OUTOFMEMORY;
|
|
|
|
|
if (!GetTextMetricsW(hdc, &sc->tm))
|
|
|
|
|
{
|
|
|
|
|
heap_free(sc);
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
2012-07-31 13:49:57 +00:00
|
|
|
|
size = GetOutlineTextMetricsW(hdc, 0, NULL);
|
|
|
|
|
if (size)
|
|
|
|
|
{
|
|
|
|
|
sc->otm = heap_alloc(size);
|
|
|
|
|
sc->otm->otmSize = size;
|
|
|
|
|
GetOutlineTextMetricsW(hdc, size, sc->otm);
|
|
|
|
|
}
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (!GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(LOGFONTW), &sc->lf))
|
|
|
|
|
{
|
|
|
|
|
heap_free(sc);
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
2011-09-14 13:53:05 +00:00
|
|
|
|
sc->sfnt = (GetFontData(hdc, MS_MAKE_TAG('h','e','a','d'), 0, NULL, 0)!=GDI_ERROR);
|
2012-11-21 10:13:14 +00:00
|
|
|
|
if (!set_cache_font_properties(hdc, sc))
|
|
|
|
|
{
|
|
|
|
|
heap_free(sc);
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
2008-10-09 13:17:29 +00:00
|
|
|
|
*psc = sc;
|
|
|
|
|
TRACE("<- %p\n", sc);
|
|
|
|
|
return S_OK;
|
2007-12-09 20:39:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-06 13:28:57 +00:00
|
|
|
|
static WCHAR mirror_char( WCHAR ch )
|
|
|
|
|
{
|
2016-02-24 04:39:01 +00:00
|
|
|
|
extern const WCHAR wine_mirror_map[] DECLSPEC_HIDDEN;
|
2010-05-06 13:28:57 +00:00
|
|
|
|
return ch + wine_mirror_map[wine_mirror_map[ch >> 8] + (ch & 0xff)];
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-16 19:15:43 +00:00
|
|
|
|
static inline DWORD decode_surrogate_pair(LPCWSTR str, INT index, INT end)
|
|
|
|
|
{
|
|
|
|
|
if (index < end-1 && IS_SURROGATE_PAIR(str[index],str[index+1]))
|
|
|
|
|
{
|
|
|
|
|
DWORD ch = 0x10000 + ((str[index] - 0xd800) << 10) + (str[index+1] - 0xdc00);
|
|
|
|
|
TRACE("Surrogate Pair %x %x => %x\n",str[index], str[index+1], ch);
|
|
|
|
|
return ch;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static WORD get_char_script( LPCWSTR str, INT index, INT end, INT *consumed)
|
2010-08-12 19:57:06 +00:00
|
|
|
|
{
|
2011-11-21 04:05:22 +00:00
|
|
|
|
static const WCHAR latin_punc[] = {'#','$','&','\'',',',';','<','>','?','@','\\','^','_','`','{','|','}','~', 0x00a0, 0};
|
2010-08-12 19:57:06 +00:00
|
|
|
|
WORD type = 0;
|
2011-12-16 19:15:43 +00:00
|
|
|
|
DWORD ch;
|
2010-08-12 19:57:06 +00:00
|
|
|
|
int i;
|
|
|
|
|
|
2011-12-16 19:15:43 +00:00
|
|
|
|
*consumed = 1;
|
|
|
|
|
|
|
|
|
|
if (str[index] == 0xc || str[index] == 0x20 || str[index] == 0x202f)
|
2010-08-12 19:57:06 +00:00
|
|
|
|
return Script_CR;
|
|
|
|
|
|
2014-06-19 21:30:35 +00:00
|
|
|
|
/* These punctuation characters are separated out as Latin punctuation */
|
2011-12-16 19:15:43 +00:00
|
|
|
|
if (strchrW(latin_punc,str[index]))
|
2011-11-21 04:05:22 +00:00
|
|
|
|
return Script_Punctuation2;
|
|
|
|
|
|
2011-11-08 16:33:43 +00:00
|
|
|
|
/* These chars are itemized as Punctuation by Windows */
|
2011-12-16 19:15:43 +00:00
|
|
|
|
if (str[index] == 0x2212 || str[index] == 0x2044)
|
2011-11-08 16:33:43 +00:00
|
|
|
|
return Script_Punctuation;
|
|
|
|
|
|
2016-04-05 09:39:23 +00:00
|
|
|
|
/* Currency Symbols by Unicode point */
|
2011-12-22 19:05:11 +00:00
|
|
|
|
switch (str[index])
|
|
|
|
|
{
|
|
|
|
|
case 0x09f2:
|
|
|
|
|
case 0x09f3: return Script_Bengali_Currency;
|
|
|
|
|
case 0x0af1: return Script_Gujarati_Currency;
|
|
|
|
|
case 0x0e3f: return Script_Thai_Currency;
|
|
|
|
|
case 0x20aa: return Script_Hebrew_Currency;
|
|
|
|
|
case 0x20ab: return Script_Vietnamese_Currency;
|
|
|
|
|
case 0xfb29: return Script_Hebrew_Currency;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-16 19:15:43 +00:00
|
|
|
|
GetStringTypeW(CT_CTYPE1, &str[index], 1, &type);
|
2010-08-12 19:57:06 +00:00
|
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
|
return SCRIPT_UNDEFINED;
|
|
|
|
|
|
|
|
|
|
if (type & C1_CNTRL)
|
|
|
|
|
return Script_Control;
|
|
|
|
|
|
2011-12-16 19:15:43 +00:00
|
|
|
|
ch = decode_surrogate_pair(str, index, end);
|
|
|
|
|
if (ch)
|
|
|
|
|
*consumed = 2;
|
|
|
|
|
else
|
|
|
|
|
ch = str[index];
|
|
|
|
|
|
2010-08-12 19:57:06 +00:00
|
|
|
|
i = 0;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
if (ch < scriptRanges[i].rangeFirst || scriptRanges[i].script == SCRIPT_UNDEFINED)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if (ch >= scriptRanges[i].rangeFirst && ch <= scriptRanges[i].rangeLast)
|
|
|
|
|
{
|
|
|
|
|
if (scriptRanges[i].numericScript && type & C1_DIGIT)
|
|
|
|
|
return scriptRanges[i].numericScript;
|
|
|
|
|
if (scriptRanges[i].punctScript && type & C1_PUNCT)
|
|
|
|
|
return scriptRanges[i].punctScript;
|
|
|
|
|
return scriptRanges[i].script;
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
|
|
return SCRIPT_UNDEFINED;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-30 13:30:08 +00:00
|
|
|
|
static int compare_FindGlyph(const void *a, const void* b)
|
|
|
|
|
{
|
|
|
|
|
const FindGlyph_struct *find = (FindGlyph_struct*)a;
|
|
|
|
|
const WORD *idx= (WORD*)b;
|
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
|
|
if ( find->target > *idx)
|
|
|
|
|
rc = 1;
|
|
|
|
|
else if (find->target < *idx)
|
|
|
|
|
rc = -1;
|
|
|
|
|
|
|
|
|
|
if (!find->ascending)
|
|
|
|
|
rc *= -1;
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int USP10_FindGlyphInLogClust(const WORD* pwLogClust, int cChars, WORD target)
|
|
|
|
|
{
|
|
|
|
|
FindGlyph_struct fgs;
|
|
|
|
|
WORD *ptr;
|
|
|
|
|
INT k;
|
|
|
|
|
|
|
|
|
|
if (pwLogClust[0] < pwLogClust[cChars-1])
|
|
|
|
|
fgs.ascending = TRUE;
|
|
|
|
|
else
|
|
|
|
|
fgs.ascending = FALSE;
|
|
|
|
|
|
|
|
|
|
fgs.target = target;
|
|
|
|
|
ptr = bsearch(&fgs, pwLogClust, cChars, sizeof(WORD), compare_FindGlyph);
|
|
|
|
|
|
|
|
|
|
if (!ptr)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (k = (ptr - pwLogClust)-1; k >= 0 && pwLogClust[k] == target; k--)
|
|
|
|
|
;
|
|
|
|
|
k++;
|
|
|
|
|
|
|
|
|
|
return k;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-09 16:16:57 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptFreeCache (USP10.@)
|
|
|
|
|
*
|
2007-01-02 15:11:10 +00:00
|
|
|
|
* Free a script cache.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* psc [I/O] Script cache.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2006-01-09 16:16:57 +00:00
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptFreeCache(SCRIPT_CACHE *psc)
|
|
|
|
|
{
|
2006-02-20 09:19:32 +00:00
|
|
|
|
TRACE("%p\n", psc);
|
2006-01-09 16:16:57 +00:00
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (psc && *psc)
|
2007-01-02 15:11:10 +00:00
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
unsigned int i;
|
2013-02-27 21:13:06 +00:00
|
|
|
|
INT n;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
for (i = 0; i < GLYPH_MAX / GLYPH_BLOCK_SIZE; i++)
|
|
|
|
|
{
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->widths[i]);
|
|
|
|
|
}
|
2012-06-04 16:14:27 +00:00
|
|
|
|
for (i = 0; i < 0x10; i++)
|
|
|
|
|
{
|
2013-02-27 21:13:06 +00:00
|
|
|
|
unsigned int j;
|
2012-06-04 16:14:27 +00:00
|
|
|
|
if (((ScriptCache *)*psc)->page[i])
|
|
|
|
|
for (j = 0; j < GLYPH_MAX / GLYPH_BLOCK_SIZE; j++)
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->page[i]->glyphs[j]);
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->page[i]);
|
|
|
|
|
}
|
2010-05-19 14:16:45 +00:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->GSUB_Table);
|
2011-06-07 17:44:46 +00:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->GDEF_Table);
|
2011-12-19 13:25:00 +00:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->CMAP_Table);
|
2012-07-16 12:23:35 +00:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->GPOS_Table);
|
2013-02-27 21:13:06 +00:00
|
|
|
|
for (n = 0; n < ((ScriptCache *)*psc)->script_count; n++)
|
2012-01-03 12:51:23 +00:00
|
|
|
|
{
|
|
|
|
|
int j;
|
2013-02-27 21:13:06 +00:00
|
|
|
|
for (j = 0; j < ((ScriptCache *)*psc)->scripts[n].language_count; j++)
|
2012-01-03 12:51:33 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
2013-02-27 21:13:06 +00:00
|
|
|
|
for (k = 0; k < ((ScriptCache *)*psc)->scripts[n].languages[j].feature_count; k++)
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->scripts[n].languages[j].features[k].lookups);
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->scripts[n].languages[j].features);
|
2012-01-03 12:51:33 +00:00
|
|
|
|
}
|
2013-02-27 21:13:06 +00:00
|
|
|
|
for (j = 0; j < ((ScriptCache *)*psc)->scripts[n].default_language.feature_count; j++)
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->scripts[n].default_language.features[j].lookups);
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->scripts[n].default_language.features);
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->scripts[n].languages);
|
2012-01-03 12:51:23 +00:00
|
|
|
|
}
|
2011-12-29 20:50:12 +00:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->scripts);
|
2012-07-31 13:49:57 +00:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->otm);
|
2008-10-09 13:17:29 +00:00
|
|
|
|
heap_free(*psc);
|
|
|
|
|
*psc = NULL;
|
2006-02-20 09:19:32 +00:00
|
|
|
|
}
|
2007-01-02 15:11:10 +00:00
|
|
|
|
return S_OK;
|
2006-01-09 16:16:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetProperties (USP10.@)
|
|
|
|
|
*
|
2006-12-23 14:19:30 +00:00
|
|
|
|
* Retrieve a list of script properties.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* props [I] Pointer to an array of SCRIPT_PROPERTIES pointers.
|
|
|
|
|
* num [I] Pointer to the number of scripts.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*
|
|
|
|
|
* NOTES
|
|
|
|
|
* Behaviour matches WinXP.
|
2005-11-23 19:14:04 +00:00
|
|
|
|
*/
|
2006-12-23 14:19:30 +00:00
|
|
|
|
HRESULT WINAPI ScriptGetProperties(const SCRIPT_PROPERTIES ***props, int *num)
|
2005-07-27 11:02:52 +00:00
|
|
|
|
{
|
2006-12-23 14:19:30 +00:00
|
|
|
|
TRACE("(%p,%p)\n", props, num);
|
2006-01-09 16:16:57 +00:00
|
|
|
|
|
2006-12-23 14:19:30 +00:00
|
|
|
|
if (!props && !num) return E_INVALIDARG;
|
2006-05-16 19:12:16 +00:00
|
|
|
|
|
2006-12-23 14:19:30 +00:00
|
|
|
|
if (num) *num = sizeof(script_props)/sizeof(script_props[0]);
|
|
|
|
|
if (props) *props = script_props;
|
|
|
|
|
|
|
|
|
|
return S_OK;
|
2005-07-27 11:02:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetFontProperties (USP10.@)
|
|
|
|
|
*
|
2007-01-02 15:11:10 +00:00
|
|
|
|
* Get information on special glyphs.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
|
* sfp [O] Font properties structure.
|
2005-11-23 19:14:04 +00:00
|
|
|
|
*/
|
2005-08-01 09:18:53 +00:00
|
|
|
|
HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp)
|
|
|
|
|
{
|
2006-12-28 15:12:45 +00:00
|
|
|
|
HRESULT hr;
|
2006-04-13 08:38:31 +00:00
|
|
|
|
|
2006-04-20 11:50:44 +00:00
|
|
|
|
TRACE("%p,%p,%p\n", hdc, psc, sfp);
|
2006-04-21 06:00:14 +00:00
|
|
|
|
|
2006-12-28 15:12:45 +00:00
|
|
|
|
if (!sfp) return E_INVALIDARG;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
2006-04-13 08:38:31 +00:00
|
|
|
|
if (sfp->cBytes != sizeof(SCRIPT_FONTPROPERTIES))
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
2012-11-21 10:13:14 +00:00
|
|
|
|
get_cache_font_properties(sfp, *psc);
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
|
|
|
|
return S_OK;
|
2005-08-01 09:18:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptRecordDigitSubstitution (USP10.@)
|
|
|
|
|
*
|
2006-09-07 06:42:56 +00:00
|
|
|
|
* Record digit substitution settings for a given locale.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* locale [I] Locale identifier.
|
|
|
|
|
* sds [I] Structure to record substitution settings.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: E_POINTER if sds is NULL, E_INVALIDARG otherwise.
|
|
|
|
|
*
|
|
|
|
|
* SEE ALSO
|
|
|
|
|
* http://blogs.msdn.com/michkap/archive/2006/02/22/536877.aspx
|
2005-11-23 19:14:04 +00:00
|
|
|
|
*/
|
2006-09-07 06:42:56 +00:00
|
|
|
|
HRESULT WINAPI ScriptRecordDigitSubstitution(LCID locale, SCRIPT_DIGITSUBSTITUTE *sds)
|
2005-07-27 11:02:52 +00:00
|
|
|
|
{
|
2006-09-07 06:42:56 +00:00
|
|
|
|
DWORD plgid, sub;
|
|
|
|
|
|
2006-10-04 22:58:37 +00:00
|
|
|
|
TRACE("0x%x, %p\n", locale, sds);
|
2006-09-07 06:42:56 +00:00
|
|
|
|
|
|
|
|
|
/* This implementation appears to be correct for all languages, but it's
|
|
|
|
|
* not clear if sds->DigitSubstitute is ever set to anything except
|
|
|
|
|
* CONTEXT or NONE in reality */
|
|
|
|
|
|
|
|
|
|
if (!sds) return E_POINTER;
|
2007-01-03 11:12:43 +00:00
|
|
|
|
|
2006-09-07 06:42:56 +00:00
|
|
|
|
locale = ConvertDefaultLocale(locale);
|
|
|
|
|
|
|
|
|
|
if (!IsValidLocale(locale, LCID_INSTALLED))
|
|
|
|
|
return E_INVALIDARG;
|
2007-01-03 11:12:43 +00:00
|
|
|
|
|
2006-09-07 06:42:56 +00:00
|
|
|
|
plgid = PRIMARYLANGID(LANGIDFROMLCID(locale));
|
|
|
|
|
sds->TraditionalDigitLanguage = plgid;
|
|
|
|
|
|
|
|
|
|
if (plgid == LANG_ARABIC || plgid == LANG_FARSI)
|
|
|
|
|
sds->NationalDigitLanguage = plgid;
|
|
|
|
|
else
|
|
|
|
|
sds->NationalDigitLanguage = LANG_ENGLISH;
|
|
|
|
|
|
|
|
|
|
if (!GetLocaleInfoW(locale, LOCALE_IDIGITSUBSTITUTION | LOCALE_RETURN_NUMBER,
|
|
|
|
|
(LPWSTR)&sub, sizeof(sub)/sizeof(WCHAR))) return E_INVALIDARG;
|
|
|
|
|
|
|
|
|
|
switch (sub)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
if (plgid == LANG_ARABIC || plgid == LANG_FARSI)
|
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_CONTEXT;
|
|
|
|
|
else
|
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NONE;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NONE;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_NATIONAL;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
sds->DigitSubstitute = SCRIPT_DIGITSUBSTITUTE_TRADITIONAL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sds->dwReserved = 0;
|
|
|
|
|
return S_OK;
|
2005-07-27 11:02:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptApplyDigitSubstitution (USP10.@)
|
|
|
|
|
*
|
2006-09-07 06:42:56 +00:00
|
|
|
|
* Apply digit substitution settings.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* sds [I] Structure with recorded substitution settings.
|
|
|
|
|
* sc [I] Script control structure.
|
|
|
|
|
* ss [I] Script state structure.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: E_INVALIDARG if sds is invalid. Otherwise an HRESULT.
|
2005-11-23 19:14:04 +00:00
|
|
|
|
*/
|
2006-09-07 06:42:56 +00:00
|
|
|
|
HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE *sds,
|
|
|
|
|
SCRIPT_CONTROL *sc, SCRIPT_STATE *ss)
|
2005-07-27 11:02:52 +00:00
|
|
|
|
{
|
2006-09-07 06:42:56 +00:00
|
|
|
|
SCRIPT_DIGITSUBSTITUTE psds;
|
|
|
|
|
|
|
|
|
|
TRACE("%p, %p, %p\n", sds, sc, ss);
|
|
|
|
|
|
|
|
|
|
if (!sc || !ss) return E_POINTER;
|
|
|
|
|
if (!sds)
|
|
|
|
|
{
|
|
|
|
|
sds = &psds;
|
|
|
|
|
if (ScriptRecordDigitSubstitution(LOCALE_USER_DEFAULT, &psds) != S_OK)
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sc->uDefaultLanguage = LANG_ENGLISH;
|
|
|
|
|
sc->fContextDigits = 0;
|
|
|
|
|
ss->fDigitSubstitute = 0;
|
|
|
|
|
|
|
|
|
|
switch (sds->DigitSubstitute) {
|
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_CONTEXT:
|
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_NATIONAL:
|
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_NONE:
|
|
|
|
|
case SCRIPT_DIGITSUBSTITUTE_TRADITIONAL:
|
|
|
|
|
return S_OK;
|
|
|
|
|
default:
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
2005-07-27 11:02:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-15 18:02:31 +00:00
|
|
|
|
static inline BOOL is_indic(WORD script)
|
|
|
|
|
{
|
|
|
|
|
return (script >= Script_Devanagari && script <= Script_Malayalam_Numeric);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-17 16:41:33 +00:00
|
|
|
|
static inline WORD base_indic(WORD script)
|
|
|
|
|
{
|
|
|
|
|
switch (script)
|
|
|
|
|
{
|
|
|
|
|
case Script_Devanagari:
|
|
|
|
|
case Script_Devanagari_Numeric: return Script_Devanagari;
|
|
|
|
|
case Script_Bengali:
|
|
|
|
|
case Script_Bengali_Numeric:
|
|
|
|
|
case Script_Bengali_Currency: return Script_Bengali;
|
|
|
|
|
case Script_Gurmukhi:
|
|
|
|
|
case Script_Gurmukhi_Numeric: return Script_Gurmukhi;
|
|
|
|
|
case Script_Gujarati:
|
|
|
|
|
case Script_Gujarati_Numeric:
|
|
|
|
|
case Script_Gujarati_Currency: return Script_Gujarati;
|
|
|
|
|
case Script_Oriya:
|
|
|
|
|
case Script_Oriya_Numeric: return Script_Oriya;
|
|
|
|
|
case Script_Tamil:
|
|
|
|
|
case Script_Tamil_Numeric: return Script_Tamil;
|
|
|
|
|
case Script_Telugu:
|
|
|
|
|
case Script_Telugu_Numeric: return Script_Telugu;
|
|
|
|
|
case Script_Kannada:
|
|
|
|
|
case Script_Kannada_Numeric: return Script_Kannada;
|
|
|
|
|
case Script_Malayalam:
|
|
|
|
|
case Script_Malayalam_Numeric: return Script_Malayalam;
|
|
|
|
|
default:
|
|
|
|
|
return -1;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-05 18:05:29 +00:00
|
|
|
|
static BOOL script_is_numeric(WORD script)
|
|
|
|
|
{
|
|
|
|
|
return scriptInformation[script].props.fNumeric;
|
|
|
|
|
}
|
2013-02-05 14:57:38 +00:00
|
|
|
|
|
|
|
|
|
static HRESULT _ItemizeInternal(const WCHAR *pwcInChars, int cInChars,
|
|
|
|
|
int cMaxItems, const SCRIPT_CONTROL *psControl,
|
|
|
|
|
const SCRIPT_STATE *psState, SCRIPT_ITEM *pItems,
|
|
|
|
|
OPENTYPE_TAG *pScriptTags, int *pcItems)
|
2005-07-27 11:02:52 +00:00
|
|
|
|
{
|
2006-02-18 15:00:29 +00:00
|
|
|
|
|
2006-08-08 08:57:37 +00:00
|
|
|
|
#define Numeric_space 0x0020
|
2011-05-26 12:37:03 +00:00
|
|
|
|
#define ZWNJ 0x200C
|
|
|
|
|
#define ZWJ 0x200D
|
2006-08-08 08:57:37 +00:00
|
|
|
|
|
2010-09-09 16:47:04 +00:00
|
|
|
|
int cnt = 0, index = 0, str = 0;
|
2011-10-21 16:28:54 +00:00
|
|
|
|
int New_Script = -1;
|
2011-11-14 20:17:11 +00:00
|
|
|
|
int i;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
WORD *levels = NULL;
|
2016-02-05 15:39:14 +00:00
|
|
|
|
WORD *layout_levels = NULL;
|
|
|
|
|
WORD *overrides = NULL;
|
2010-09-09 16:47:04 +00:00
|
|
|
|
WORD *strength = NULL;
|
2011-11-14 20:17:11 +00:00
|
|
|
|
WORD *scripts = NULL;
|
2010-04-29 12:32:03 +00:00
|
|
|
|
WORD baselevel = 0;
|
2016-02-05 15:39:14 +00:00
|
|
|
|
WORD baselayout = 0;
|
2011-11-14 20:16:59 +00:00
|
|
|
|
BOOL new_run;
|
2011-11-15 18:02:31 +00:00
|
|
|
|
WORD last_indic = -1;
|
2011-11-14 20:18:02 +00:00
|
|
|
|
WORD layoutRTL = 0;
|
2011-11-21 04:04:13 +00:00
|
|
|
|
BOOL forceLevels = FALSE;
|
2011-12-16 19:15:43 +00:00
|
|
|
|
INT consumed = 0;
|
2014-05-30 03:00:11 +00:00
|
|
|
|
HRESULT res = E_OUTOFMEMORY;
|
2006-08-08 08:57:37 +00:00
|
|
|
|
|
|
|
|
|
TRACE("%s,%d,%d,%p,%p,%p,%p\n", debugstr_wn(pwcInChars, cInChars), cInChars, cMaxItems,
|
2005-07-27 11:02:52 +00:00
|
|
|
|
psControl, psState, pItems, pcItems);
|
2006-01-09 16:16:57 +00:00
|
|
|
|
|
|
|
|
|
if (!pwcInChars || !cInChars || !pItems || cMaxItems < 2)
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
2011-11-14 20:17:11 +00:00
|
|
|
|
scripts = heap_alloc(cInChars * sizeof(WORD));
|
|
|
|
|
if (!scripts)
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < cInChars; i++)
|
2011-11-15 18:02:31 +00:00
|
|
|
|
{
|
2011-12-16 19:15:43 +00:00
|
|
|
|
if (consumed <= 0)
|
|
|
|
|
{
|
|
|
|
|
scripts[i] = get_char_script(pwcInChars,i,cInChars,&consumed);
|
|
|
|
|
consumed --;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
scripts[i] = scripts[i-1];
|
|
|
|
|
consumed --;
|
|
|
|
|
}
|
2011-11-15 18:02:31 +00:00
|
|
|
|
/* Devanagari danda (U+0964) and double danda (U+0965) are used for
|
|
|
|
|
all Indic scripts */
|
|
|
|
|
if ((pwcInChars[i] == 0x964 || pwcInChars[i] ==0x965) && last_indic > 0)
|
|
|
|
|
scripts[i] = last_indic;
|
|
|
|
|
else if (is_indic(scripts[i]))
|
2011-11-17 16:41:33 +00:00
|
|
|
|
last_indic = base_indic(scripts[i]);
|
2011-11-21 04:04:13 +00:00
|
|
|
|
|
2016-02-03 18:55:12 +00:00
|
|
|
|
/* Some unicode points :
|
|
|
|
|
(Zero Width Space U+200B - Right-to-Left Mark U+200F)
|
|
|
|
|
(Left Right Embed U+202A - Left Right Override U+202D)
|
|
|
|
|
(Left Right Isolate U+2066 - Pop Directional Isolate U+2069)
|
|
|
|
|
will force us into bidi mode */
|
|
|
|
|
if (!forceLevels && ((pwcInChars[i] >= 0x200B && pwcInChars[i] <= 0x200F) ||
|
|
|
|
|
(pwcInChars[i] >= 0x202A && pwcInChars[i] <= 0x202E) ||
|
|
|
|
|
(pwcInChars[i] >= 0x2066 && pwcInChars[i] <= 0x2069)))
|
|
|
|
|
|
2011-11-21 04:04:13 +00:00
|
|
|
|
forceLevels = TRUE;
|
2011-11-21 04:05:00 +00:00
|
|
|
|
|
|
|
|
|
/* Diacritical marks merge with other scripts */
|
2013-02-05 14:57:44 +00:00
|
|
|
|
if (scripts[i] == Script_Diacritical)
|
|
|
|
|
{
|
|
|
|
|
if (i > 0)
|
|
|
|
|
{
|
|
|
|
|
if (pScriptTags)
|
|
|
|
|
scripts[i] = scripts[i-1];
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
BOOL asian = FALSE;
|
|
|
|
|
WORD first_script = scripts[i-1];
|
|
|
|
|
for (j = i-1; j >= 0 && scripts[j] == first_script && pwcInChars[j] != Numeric_space; j--)
|
|
|
|
|
{
|
|
|
|
|
WORD original = scripts[j];
|
|
|
|
|
if (original == Script_Ideograph || original == Script_Kana || original == Script_Yi || original == Script_CJK_Han || original == Script_Bopomofo)
|
|
|
|
|
{
|
|
|
|
|
asian = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (original != Script_MathAlpha && scriptInformation[scripts[j]].props.fComplex)
|
|
|
|
|
break;
|
|
|
|
|
scripts[j] = scripts[i];
|
|
|
|
|
if (original == Script_Punctuation2)
|
|
|
|
|
break;
|
|
|
|
|
}
|
2013-03-18 16:21:15 +00:00
|
|
|
|
if (j >= 0 && (scriptInformation[scripts[j]].props.fComplex || asian))
|
2013-02-05 14:57:44 +00:00
|
|
|
|
scripts[i] = scripts[j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-11-15 18:02:31 +00:00
|
|
|
|
}
|
2011-11-14 20:17:11 +00:00
|
|
|
|
|
2011-11-21 04:03:53 +00:00
|
|
|
|
for (i = 0; i < cInChars; i++)
|
|
|
|
|
{
|
|
|
|
|
/* Joiners get merged preferencially right */
|
|
|
|
|
if (i > 0 && (pwcInChars[i] == ZWJ || pwcInChars[i] == ZWNJ))
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
if (i+1 == cInChars)
|
|
|
|
|
scripts[i] = scripts[i-1];
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (j = i+1; j < cInChars; j++)
|
|
|
|
|
{
|
|
|
|
|
if (pwcInChars[j] != ZWJ && pwcInChars[j] != ZWNJ && pwcInChars[j] != Numeric_space)
|
|
|
|
|
{
|
|
|
|
|
scripts[i] = scripts[j];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-13 19:49:07 +00:00
|
|
|
|
if (psState && psControl)
|
|
|
|
|
{
|
|
|
|
|
levels = heap_alloc_zero(cInChars * sizeof(WORD));
|
|
|
|
|
if (!levels)
|
2014-05-30 03:00:11 +00:00
|
|
|
|
goto nomemory;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
|
2016-02-05 15:39:14 +00:00
|
|
|
|
overrides = heap_alloc_zero(cInChars * sizeof(WORD));
|
|
|
|
|
if (!overrides)
|
|
|
|
|
goto nomemory;
|
|
|
|
|
|
|
|
|
|
layout_levels = heap_alloc_zero(cInChars * sizeof(WORD));
|
|
|
|
|
if (!layout_levels)
|
|
|
|
|
goto nomemory;
|
|
|
|
|
|
|
|
|
|
if (psState->fOverrideDirection)
|
|
|
|
|
{
|
|
|
|
|
if (!forceLevels)
|
|
|
|
|
{
|
|
|
|
|
SCRIPT_STATE s = *psState;
|
|
|
|
|
s.fOverrideDirection = FALSE;
|
|
|
|
|
BIDI_DetermineLevels(pwcInChars, cInChars, &s, psControl, layout_levels, overrides);
|
|
|
|
|
if (odd(layout_levels[0]))
|
|
|
|
|
forceLevels = TRUE;
|
|
|
|
|
else for (i = 0; i < cInChars; i++)
|
|
|
|
|
if (layout_levels[i]!=layout_levels[0])
|
|
|
|
|
{
|
|
|
|
|
forceLevels = TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BIDI_DetermineLevels(pwcInChars, cInChars, psState, psControl, levels, overrides);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
BIDI_DetermineLevels(pwcInChars, cInChars, psState, psControl, levels, overrides);
|
|
|
|
|
memcpy(layout_levels, levels, cInChars * sizeof(WORD));
|
|
|
|
|
}
|
2010-04-29 12:32:03 +00:00
|
|
|
|
baselevel = levels[0];
|
2016-02-05 15:39:14 +00:00
|
|
|
|
baselayout = layout_levels[0];
|
2010-04-13 19:49:07 +00:00
|
|
|
|
for (i = 0; i < cInChars; i++)
|
|
|
|
|
if (levels[i]!=levels[0])
|
|
|
|
|
break;
|
2011-11-21 04:04:13 +00:00
|
|
|
|
if (i >= cInChars && !odd(baselevel) && !odd(psState->uBidiLevel) && !forceLevels)
|
2010-04-13 19:49:07 +00:00
|
|
|
|
{
|
|
|
|
|
heap_free(levels);
|
2016-02-05 15:39:14 +00:00
|
|
|
|
heap_free(overrides);
|
|
|
|
|
heap_free(layout_levels);
|
|
|
|
|
overrides = NULL;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
levels = NULL;
|
2016-02-05 15:39:14 +00:00
|
|
|
|
layout_levels = NULL;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
}
|
2010-09-09 16:47:04 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2013-12-17 21:17:43 +00:00
|
|
|
|
static const WCHAR math_punc[] = {'#','$','%','+',',','-','.','/',':',0x2212, 0x2044, 0x00a0,0};
|
2016-02-03 18:55:30 +00:00
|
|
|
|
static const WCHAR repeatable_math_punc[] = {'#','$','%','+','-','/',0x2212, 0x2044,0};
|
2011-11-08 20:41:53 +00:00
|
|
|
|
|
|
|
|
|
strength = heap_alloc_zero(cInChars * sizeof(WORD));
|
|
|
|
|
if (!strength)
|
2014-05-30 03:00:11 +00:00
|
|
|
|
goto nomemory;
|
2011-11-08 20:41:53 +00:00
|
|
|
|
BIDI_GetStrengths(pwcInChars, cInChars, psControl, strength);
|
|
|
|
|
|
2011-11-21 04:05:00 +00:00
|
|
|
|
/* We currently mis-level leading Diacriticals */
|
|
|
|
|
if (scripts[0] == Script_Diacritical)
|
|
|
|
|
for (i = 0; i < cInChars && scripts[0] == Script_Diacritical; i++)
|
|
|
|
|
{
|
|
|
|
|
levels[i] = odd(levels[i])?levels[i]+1:levels[i];
|
|
|
|
|
strength[i] = BIDI_STRONG;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-03 18:55:30 +00:00
|
|
|
|
/* Math punctuation bordered on both sides by numbers can be
|
|
|
|
|
merged into the number */
|
2011-11-08 20:41:53 +00:00
|
|
|
|
for (i = 0; i < cInChars; i++)
|
|
|
|
|
{
|
2016-02-03 18:55:30 +00:00
|
|
|
|
if (i > 0 && i < cInChars-1 &&
|
2016-06-05 18:05:29 +00:00
|
|
|
|
script_is_numeric(scripts[i-1]) &&
|
2016-02-03 18:55:30 +00:00
|
|
|
|
strchrW(math_punc, pwcInChars[i]))
|
2011-11-14 20:17:37 +00:00
|
|
|
|
{
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(scripts[i+1]))
|
2016-02-03 18:55:30 +00:00
|
|
|
|
{
|
2016-06-05 18:05:29 +00:00
|
|
|
|
scripts[i] = scripts[i+1];
|
2016-02-03 18:55:30 +00:00
|
|
|
|
levels[i] = levels[i-1];
|
|
|
|
|
strength[i] = strength[i-1];
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
else if (strchrW(repeatable_math_punc, pwcInChars[i]))
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
for (j = i+1; j < cInChars; j++)
|
|
|
|
|
{
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(scripts[j]))
|
2016-02-03 18:55:30 +00:00
|
|
|
|
{
|
|
|
|
|
for(;i<j; i++)
|
|
|
|
|
{
|
2016-06-05 18:05:29 +00:00
|
|
|
|
scripts[i] = scripts[j];
|
2016-02-03 18:55:30 +00:00
|
|
|
|
levels[i] = levels[i-1];
|
|
|
|
|
strength[i] = strength[i-1];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (pwcInChars[i] != pwcInChars[j]) break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-11-14 20:17:37 +00:00
|
|
|
|
}
|
2016-02-03 18:55:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < cInChars; i++)
|
|
|
|
|
{
|
2016-06-05 18:05:29 +00:00
|
|
|
|
/* Numerics at level 0 get bumped to level 2 */
|
|
|
|
|
if (!overrides[i] && (levels[i] == 0 || (odd(psState->uBidiLevel)
|
|
|
|
|
&& levels[i] == psState->uBidiLevel + 1)) && script_is_numeric(scripts[i]))
|
2011-11-08 20:41:53 +00:00
|
|
|
|
{
|
|
|
|
|
levels[i] = 2;
|
|
|
|
|
}
|
2011-11-21 04:03:53 +00:00
|
|
|
|
|
|
|
|
|
/* Joiners get merged preferencially right */
|
|
|
|
|
if (i > 0 && (pwcInChars[i] == ZWJ || pwcInChars[i] == ZWNJ))
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
if (i+1 == cInChars && levels[i-1] == levels[i])
|
|
|
|
|
strength[i] = strength[i-1];
|
|
|
|
|
else
|
|
|
|
|
for (j = i+1; j < cInChars && levels[i] == levels[j]; j++)
|
|
|
|
|
if (pwcInChars[j] != ZWJ && pwcInChars[j] != ZWNJ && pwcInChars[j] != Numeric_space)
|
|
|
|
|
{
|
|
|
|
|
strength[i] = strength[j];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-11-08 20:41:53 +00:00
|
|
|
|
}
|
|
|
|
|
if (psControl->fMergeNeutralItems)
|
2010-09-09 16:47:04 +00:00
|
|
|
|
{
|
2011-11-14 20:17:25 +00:00
|
|
|
|
/* Merge the neutrals */
|
|
|
|
|
for (i = 0; i < cInChars; i++)
|
|
|
|
|
{
|
|
|
|
|
if (strength[i] == BIDI_NEUTRAL || strength[i] == BIDI_WEAK)
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
for (j = i; j > 0; j--)
|
|
|
|
|
{
|
|
|
|
|
if (levels[i] != levels[j])
|
|
|
|
|
break;
|
|
|
|
|
if ((strength[j] == BIDI_STRONG) || (strength[i] == BIDI_NEUTRAL && strength[j] == BIDI_WEAK))
|
|
|
|
|
{
|
|
|
|
|
scripts[i] = scripts[j];
|
|
|
|
|
strength[i] = strength[j];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Try going the other way */
|
|
|
|
|
if (strength[i] == BIDI_NEUTRAL || strength[i] == BIDI_WEAK)
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
for (j = i; j < cInChars; j++)
|
|
|
|
|
{
|
|
|
|
|
if (levels[i] != levels[j])
|
|
|
|
|
break;
|
|
|
|
|
if ((strength[j] == BIDI_STRONG) || (strength[i] == BIDI_NEUTRAL && strength[j] == BIDI_WEAK))
|
|
|
|
|
{
|
|
|
|
|
scripts[i] = scripts[j];
|
|
|
|
|
strength[i] = strength[j];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-09-09 16:47:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-04-13 19:49:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-03 09:50:36 +00:00
|
|
|
|
while ((!levels || (levels && cnt+1 < cInChars && levels[cnt+1] == levels[0]))
|
|
|
|
|
&& (cnt < cInChars && pwcInChars[cnt] == Numeric_space))
|
2010-09-09 20:27:43 +00:00
|
|
|
|
cnt++;
|
|
|
|
|
|
|
|
|
|
if (cnt == cInChars) /* All Spaces */
|
|
|
|
|
{
|
|
|
|
|
cnt = 0;
|
2011-11-14 20:17:11 +00:00
|
|
|
|
New_Script = scripts[cnt];
|
2010-09-09 20:27:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-12-24 11:37:36 +00:00
|
|
|
|
pItems[index].iCharPos = 0;
|
2011-11-14 20:17:11 +00:00
|
|
|
|
pItems[index].a = scriptInformation[scripts[cnt]].a;
|
2013-02-05 14:57:38 +00:00
|
|
|
|
if (pScriptTags)
|
|
|
|
|
pScriptTags[index] = scriptInformation[scripts[cnt]].scriptTag;
|
2006-12-24 11:37:36 +00:00
|
|
|
|
|
2011-11-14 20:16:59 +00:00
|
|
|
|
if (strength && strength[cnt] == BIDI_STRONG)
|
2010-09-09 20:27:43 +00:00
|
|
|
|
str = strength[cnt];
|
2011-11-14 20:16:59 +00:00
|
|
|
|
else if (strength)
|
|
|
|
|
str = strength[0];
|
2010-09-09 20:27:43 +00:00
|
|
|
|
|
|
|
|
|
cnt = 0;
|
2011-11-14 20:16:59 +00:00
|
|
|
|
|
2010-04-13 19:49:07 +00:00
|
|
|
|
if (levels)
|
|
|
|
|
{
|
2011-11-17 16:40:54 +00:00
|
|
|
|
if (strength[cnt] == BIDI_STRONG)
|
2016-02-05 15:39:14 +00:00
|
|
|
|
layoutRTL = odd(layout_levels[cnt]);
|
2011-11-17 16:40:54 +00:00
|
|
|
|
else
|
2016-02-05 15:39:14 +00:00
|
|
|
|
layoutRTL = (psState->uBidiLevel || odd(layout_levels[cnt]));
|
|
|
|
|
if (overrides)
|
|
|
|
|
pItems[index].a.s.fOverrideDirection = (overrides[cnt] != 0);
|
2010-04-13 19:49:07 +00:00
|
|
|
|
pItems[index].a.fRTL = odd(levels[cnt]);
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(pItems[index].a.eScript))
|
2016-02-05 15:39:14 +00:00
|
|
|
|
pItems[index].a.fLayoutRTL = layoutRTL;
|
|
|
|
|
else
|
|
|
|
|
pItems[index].a.fLayoutRTL = pItems[index].a.fRTL;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
pItems[index].a.s.uBidiLevel = levels[cnt];
|
|
|
|
|
}
|
2016-02-05 15:39:14 +00:00
|
|
|
|
else if (!pItems[index].a.s.uBidiLevel || (overrides && overrides[cnt]))
|
2010-04-29 12:32:03 +00:00
|
|
|
|
{
|
2016-02-05 15:39:14 +00:00
|
|
|
|
if (pItems[index].a.s.uBidiLevel != baselevel)
|
|
|
|
|
pItems[index].a.s.fOverrideDirection = TRUE;
|
|
|
|
|
layoutRTL = odd(baselayout);
|
2010-04-29 12:32:03 +00:00
|
|
|
|
pItems[index].a.s.uBidiLevel = baselevel;
|
|
|
|
|
pItems[index].a.fRTL = odd(baselevel);
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(pItems[index].a.eScript))
|
2016-02-05 15:39:14 +00:00
|
|
|
|
pItems[index].a.fLayoutRTL = odd(baselayout);
|
|
|
|
|
else
|
|
|
|
|
pItems[index].a.fLayoutRTL = pItems[index].a.fRTL;
|
2010-04-29 12:32:03 +00:00
|
|
|
|
}
|
2010-04-13 19:49:07 +00:00
|
|
|
|
|
2010-09-09 16:47:04 +00:00
|
|
|
|
TRACE("New_Level=%i New_Strength=%i New_Script=%d, eScript=%d index=%d cnt=%d iCharPos=%d\n",
|
|
|
|
|
levels?levels[cnt]:-1, str, New_Script, pItems[index].a.eScript, index, cnt,
|
2009-01-06 10:20:41 +00:00
|
|
|
|
pItems[index].iCharPos);
|
2006-08-08 08:57:37 +00:00
|
|
|
|
|
2009-01-06 10:20:41 +00:00
|
|
|
|
for (cnt=1; cnt < cInChars; cnt++)
|
2006-08-08 08:57:37 +00:00
|
|
|
|
{
|
2011-11-21 04:03:53 +00:00
|
|
|
|
if(pwcInChars[cnt] != Numeric_space)
|
2011-11-14 20:17:11 +00:00
|
|
|
|
New_Script = scripts[cnt];
|
2010-09-09 20:27:43 +00:00
|
|
|
|
else if (levels)
|
|
|
|
|
{
|
|
|
|
|
int j = 1;
|
2011-11-21 04:03:53 +00:00
|
|
|
|
while (cnt + j < cInChars - 1 && pwcInChars[cnt+j] == Numeric_space && levels[cnt] == levels[cnt+j])
|
2010-09-09 20:27:43 +00:00
|
|
|
|
j++;
|
2011-11-08 20:41:42 +00:00
|
|
|
|
if (cnt + j < cInChars && levels[cnt] == levels[cnt+j])
|
2011-11-14 20:17:11 +00:00
|
|
|
|
New_Script = scripts[cnt+j];
|
2011-11-08 15:31:57 +00:00
|
|
|
|
else
|
2011-11-14 20:17:11 +00:00
|
|
|
|
New_Script = scripts[cnt];
|
2010-09-09 20:27:43 +00:00
|
|
|
|
}
|
2007-01-03 11:12:43 +00:00
|
|
|
|
|
2011-11-14 20:16:59 +00:00
|
|
|
|
new_run = FALSE;
|
|
|
|
|
/* merge space strengths*/
|
|
|
|
|
if (strength && strength[cnt] == BIDI_STRONG && str != BIDI_STRONG && New_Script == pItems[index].a.eScript)
|
|
|
|
|
str = BIDI_STRONG;
|
|
|
|
|
|
|
|
|
|
if (strength && strength[cnt] == BIDI_NEUTRAL && str == BIDI_STRONG && pwcInChars[cnt] != Numeric_space && New_Script == pItems[index].a.eScript)
|
|
|
|
|
str = BIDI_NEUTRAL;
|
|
|
|
|
|
|
|
|
|
/* changes in level */
|
|
|
|
|
if (levels && (levels[cnt] != pItems[index].a.s.uBidiLevel))
|
2006-08-08 08:57:37 +00:00
|
|
|
|
{
|
2011-11-14 20:16:59 +00:00
|
|
|
|
TRACE("Level break(%i/%i)\n",pItems[index].a.s.uBidiLevel,levels[cnt]);
|
|
|
|
|
new_run = TRUE;
|
|
|
|
|
}
|
|
|
|
|
/* changes in strength */
|
|
|
|
|
else if (strength && pwcInChars[cnt] != Numeric_space && str != strength[cnt])
|
|
|
|
|
{
|
|
|
|
|
TRACE("Strength break (%i/%i)\n",str,strength[cnt]);
|
|
|
|
|
new_run = TRUE;
|
|
|
|
|
}
|
|
|
|
|
/* changes in script */
|
2011-11-14 20:17:37 +00:00
|
|
|
|
else if (((pwcInChars[cnt] != Numeric_space) && (New_Script != -1) && (New_Script != pItems[index].a.eScript)) || (New_Script == Script_Control))
|
2011-11-14 20:16:59 +00:00
|
|
|
|
{
|
|
|
|
|
TRACE("Script break(%i/%i)\n",pItems[index].a.eScript,New_Script);
|
|
|
|
|
new_run = TRUE;
|
|
|
|
|
}
|
2010-09-09 16:47:04 +00:00
|
|
|
|
|
2011-11-14 20:18:02 +00:00
|
|
|
|
if (!new_run && strength && str == BIDI_STRONG)
|
|
|
|
|
{
|
2016-02-05 15:39:14 +00:00
|
|
|
|
layoutRTL = odd(layout_levels[cnt]);
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(pItems[index].a.eScript))
|
2016-02-05 15:39:14 +00:00
|
|
|
|
pItems[index].a.fLayoutRTL = layoutRTL;
|
2011-11-14 20:18:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 20:16:59 +00:00
|
|
|
|
if (new_run)
|
|
|
|
|
{
|
|
|
|
|
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);
|
2010-09-09 16:47:04 +00:00
|
|
|
|
|
2006-08-08 08:57:37 +00:00
|
|
|
|
index++;
|
|
|
|
|
if (index+1 > cMaxItems)
|
2014-05-30 03:00:11 +00:00
|
|
|
|
goto nomemory;
|
2006-12-24 11:37:36 +00:00
|
|
|
|
|
2011-11-14 20:16:59 +00:00
|
|
|
|
if (strength)
|
|
|
|
|
str = strength[cnt];
|
|
|
|
|
|
2006-08-08 08:57:37 +00:00
|
|
|
|
pItems[index].iCharPos = cnt;
|
2006-12-24 11:37:36 +00:00
|
|
|
|
memset(&pItems[index].a, 0, sizeof(SCRIPT_ANALYSIS));
|
|
|
|
|
|
2010-08-12 19:57:06 +00:00
|
|
|
|
pItems[index].a = scriptInformation[New_Script].a;
|
2013-02-05 14:57:38 +00:00
|
|
|
|
if (pScriptTags)
|
|
|
|
|
pScriptTags[index] = scriptInformation[New_Script].scriptTag;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
if (levels)
|
|
|
|
|
{
|
2016-02-05 15:39:14 +00:00
|
|
|
|
if (overrides)
|
|
|
|
|
pItems[index].a.s.fOverrideDirection = (overrides[cnt] != 0);
|
|
|
|
|
if (layout_levels[cnt] == 0)
|
2011-11-14 20:18:02 +00:00
|
|
|
|
layoutRTL = 0;
|
|
|
|
|
else
|
2016-02-05 15:39:14 +00:00
|
|
|
|
layoutRTL = (layoutRTL || odd(layout_levels[cnt]));
|
2010-04-13 19:49:07 +00:00
|
|
|
|
pItems[index].a.fRTL = odd(levels[cnt]);
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(pItems[index].a.eScript))
|
2016-02-05 15:39:14 +00:00
|
|
|
|
pItems[index].a.fLayoutRTL = layoutRTL;
|
|
|
|
|
else
|
|
|
|
|
pItems[index].a.fLayoutRTL = pItems[index].a.fRTL;
|
2010-04-13 19:49:07 +00:00
|
|
|
|
pItems[index].a.s.uBidiLevel = levels[cnt];
|
|
|
|
|
}
|
2016-02-05 15:39:14 +00:00
|
|
|
|
else if (!pItems[index].a.s.uBidiLevel || (overrides && overrides[cnt]))
|
2010-04-29 12:32:03 +00:00
|
|
|
|
{
|
2016-02-05 15:39:14 +00:00
|
|
|
|
if (pItems[index].a.s.uBidiLevel != baselevel)
|
|
|
|
|
pItems[index].a.s.fOverrideDirection = TRUE;
|
2010-04-29 12:32:03 +00:00
|
|
|
|
pItems[index].a.s.uBidiLevel = baselevel;
|
|
|
|
|
pItems[index].a.fRTL = odd(baselevel);
|
2016-06-05 18:05:29 +00:00
|
|
|
|
if (script_is_numeric(pItems[index].a.eScript))
|
2016-02-05 15:39:14 +00:00
|
|
|
|
pItems[index].a.fLayoutRTL = layoutRTL;
|
|
|
|
|
else
|
|
|
|
|
pItems[index].a.fLayoutRTL = pItems[index].a.fRTL;
|
2010-04-29 12:32:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-06 10:20:41 +00:00
|
|
|
|
TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos);
|
2006-08-08 08:57:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-02-18 15:00:29 +00:00
|
|
|
|
|
2006-10-13 00:19:42 +00:00
|
|
|
|
/* While not strictly necessary according to the spec, make sure the n+1
|
|
|
|
|
* item is set up to prevent random behaviour if the caller erroneously
|
2006-02-18 15:00:29 +00:00
|
|
|
|
* checks the n+1 structure */
|
2010-04-27 12:43:34 +00:00
|
|
|
|
index++;
|
2014-05-30 03:00:11 +00:00
|
|
|
|
if (index + 1 > cMaxItems) goto nomemory;
|
2010-04-27 12:43:34 +00:00
|
|
|
|
memset(&pItems[index].a, 0, sizeof(SCRIPT_ANALYSIS));
|
2006-12-24 11:37:36 +00:00
|
|
|
|
|
2010-04-27 12:43:34 +00:00
|
|
|
|
TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos);
|
2006-02-18 15:00:29 +00:00
|
|
|
|
|
|
|
|
|
/* Set one SCRIPT_STATE item being returned */
|
2010-04-27 12:43:34 +00:00
|
|
|
|
if (pcItems) *pcItems = index;
|
2006-02-18 15:00:29 +00:00
|
|
|
|
|
|
|
|
|
/* Set SCRIPT_ITEM */
|
2010-04-27 12:43:34 +00:00
|
|
|
|
pItems[index].iCharPos = cnt; /* the last item contains the ptr to the lastchar */
|
2014-05-30 03:00:11 +00:00
|
|
|
|
res = S_OK;
|
|
|
|
|
nomemory:
|
2010-04-13 19:49:07 +00:00
|
|
|
|
heap_free(levels);
|
2016-02-05 15:39:14 +00:00
|
|
|
|
heap_free(overrides);
|
|
|
|
|
heap_free(layout_levels);
|
2010-09-09 16:47:04 +00:00
|
|
|
|
heap_free(strength);
|
2011-11-14 20:17:11 +00:00
|
|
|
|
heap_free(scripts);
|
2014-05-30 03:00:11 +00:00
|
|
|
|
return res;
|
2005-07-27 11:02:52 +00:00
|
|
|
|
}
|
2005-11-15 12:02:16 +00:00
|
|
|
|
|
2013-02-05 14:57:38 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptItemizeOpenType (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Split a Unicode string into shapeable parts.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* pwcInChars [I] String to split.
|
|
|
|
|
* cInChars [I] Number of characters in pwcInChars.
|
|
|
|
|
* cMaxItems [I] Maximum number of items to return.
|
|
|
|
|
* psControl [I] Pointer to a SCRIPT_CONTROL structure.
|
|
|
|
|
* psState [I] Pointer to a SCRIPT_STATE structure.
|
|
|
|
|
* pItems [O] Buffer to receive SCRIPT_ITEM structures.
|
|
|
|
|
* pScriptTags [O] Buffer to receive OPENTYPE_TAGs.
|
|
|
|
|
* pcItems [O] Number of script items returned.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptItemizeOpenType(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
|
|
|
|
|
const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
|
|
|
|
|
SCRIPT_ITEM *pItems, OPENTYPE_TAG *pScriptTags, int *pcItems)
|
|
|
|
|
{
|
|
|
|
|
return _ItemizeInternal(pwcInChars, cInChars, cMaxItems, psControl, psState, pItems, pScriptTags, pcItems);
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-10 18:09:47 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptItemize (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Split a Unicode string into shapeable parts.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* pwcInChars [I] String to split.
|
|
|
|
|
* cInChars [I] Number of characters in pwcInChars.
|
|
|
|
|
* cMaxItems [I] Maximum number of items to return.
|
|
|
|
|
* psControl [I] Pointer to a SCRIPT_CONTROL structure.
|
|
|
|
|
* psState [I] Pointer to a SCRIPT_STATE structure.
|
|
|
|
|
* pItems [O] Buffer to receive SCRIPT_ITEM structures.
|
|
|
|
|
* pcItems [O] Number of script items returned.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
|
|
|
|
|
const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
|
|
|
|
|
SCRIPT_ITEM *pItems, int *pcItems)
|
|
|
|
|
{
|
2013-02-05 14:57:38 +00:00
|
|
|
|
return _ItemizeInternal(pwcInChars, cInChars, cMaxItems, psControl, psState, pItems, NULL, pcItems);
|
2011-05-10 18:09:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-10 19:59:30 +00:00
|
|
|
|
static inline int getGivenTabWidth(ScriptCache *psc, SCRIPT_TABDEF *pTabdef, int charPos, int current_x)
|
|
|
|
|
{
|
|
|
|
|
int defWidth;
|
|
|
|
|
int cTabStops=0;
|
|
|
|
|
INT *lpTabPos = NULL;
|
|
|
|
|
INT nTabOrg = 0;
|
|
|
|
|
INT x = 0;
|
|
|
|
|
|
|
|
|
|
if (pTabdef)
|
|
|
|
|
lpTabPos = pTabdef->pTabStops;
|
|
|
|
|
|
|
|
|
|
if (pTabdef && pTabdef->iTabOrigin)
|
|
|
|
|
{
|
|
|
|
|
if (pTabdef->iScale)
|
|
|
|
|
nTabOrg = (pTabdef->iTabOrigin * pTabdef->iScale)/4;
|
|
|
|
|
else
|
|
|
|
|
nTabOrg = pTabdef->iTabOrigin * psc->tm.tmAveCharWidth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pTabdef)
|
|
|
|
|
cTabStops = pTabdef->cTabStops;
|
|
|
|
|
|
|
|
|
|
if (cTabStops == 1)
|
|
|
|
|
{
|
|
|
|
|
if (pTabdef->iScale)
|
|
|
|
|
defWidth = ((pTabdef->pTabStops[0])*pTabdef->iScale) / 4;
|
|
|
|
|
else
|
|
|
|
|
defWidth = (pTabdef->pTabStops[0])*psc->tm.tmAveCharWidth;
|
|
|
|
|
cTabStops = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
defWidth = 8 * psc->tm.tmAveCharWidth;
|
|
|
|
|
|
|
|
|
|
for (; cTabStops>0 ; lpTabPos++, cTabStops--)
|
|
|
|
|
{
|
|
|
|
|
int position = *lpTabPos;
|
|
|
|
|
if (position < 0)
|
|
|
|
|
position = -1 * position;
|
|
|
|
|
if (pTabdef->iScale)
|
|
|
|
|
position = (position * pTabdef->iScale) / 4;
|
|
|
|
|
else
|
|
|
|
|
position = position * psc->tm.tmAveCharWidth;
|
|
|
|
|
|
|
|
|
|
if( nTabOrg + position > current_x)
|
|
|
|
|
{
|
|
|
|
|
if( *lpTabPos >= 0)
|
|
|
|
|
{
|
|
|
|
|
/* a left aligned tab */
|
|
|
|
|
x = (nTabOrg + *lpTabPos) - current_x;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
FIXME("Negative tabstop\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ((!cTabStops) && (defWidth > 0))
|
|
|
|
|
x =((((current_x - nTabOrg) / defWidth)+1) * defWidth) - current_x;
|
|
|
|
|
else if ((!cTabStops) && (defWidth < 0))
|
|
|
|
|
FIXME("TODO: Negative defWidth\n");
|
|
|
|
|
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-10 19:59:36 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Helper function for ScriptStringAnalyse
|
|
|
|
|
*/
|
|
|
|
|
static BOOL requires_fallback(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa,
|
|
|
|
|
const WCHAR *pwcInChars, int cChars )
|
|
|
|
|
{
|
|
|
|
|
/* FIXME: When to properly fallback is still a bit of a mystery */
|
|
|
|
|
WORD *glyphs;
|
|
|
|
|
|
|
|
|
|
if (psa->fNoGlyphIndex)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (init_script_cache(hdc, psc) != S_OK)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (SHAPE_CheckFontForRequiredFeatures(hdc, (ScriptCache *)*psc, psa) != S_OK)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
glyphs = heap_alloc(sizeof(WORD) * cChars);
|
2011-10-16 10:38:24 +00:00
|
|
|
|
if (!glyphs)
|
|
|
|
|
return FALSE;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
if (ScriptGetCMap(hdc, psc, pwcInChars, cChars, 0, glyphs) != S_OK)
|
|
|
|
|
{
|
|
|
|
|
heap_free(glyphs);
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
heap_free(glyphs);
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void find_fallback_font(DWORD scriptid, LPWSTR FaceName)
|
|
|
|
|
{
|
|
|
|
|
HKEY hkey;
|
|
|
|
|
|
|
|
|
|
if (!RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Uniscribe\\Fallback", &hkey))
|
|
|
|
|
{
|
|
|
|
|
static const WCHAR szFmt[] = {'%','x',0};
|
|
|
|
|
WCHAR value[10];
|
|
|
|
|
DWORD count = LF_FACESIZE * sizeof(WCHAR);
|
|
|
|
|
DWORD type;
|
|
|
|
|
|
|
|
|
|
sprintfW(value, szFmt, scriptInformation[scriptid].scriptTag);
|
|
|
|
|
if (RegQueryValueExW(hkey, value, 0, &type, (LPBYTE)FaceName, &count))
|
|
|
|
|
lstrcpyW(FaceName,scriptInformation[scriptid].fallbackFont);
|
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
lstrcpyW(FaceName,scriptInformation[scriptid].fallbackFont);
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringAnalyse (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2007-01-03 11:12:29 +00:00
|
|
|
|
HRESULT WINAPI ScriptStringAnalyse(HDC hdc, const void *pString, int cString,
|
|
|
|
|
int cGlyphs, int iCharset, DWORD dwFlags,
|
|
|
|
|
int iReqWidth, SCRIPT_CONTROL *psControl,
|
|
|
|
|
SCRIPT_STATE *psState, const int *piDx,
|
|
|
|
|
SCRIPT_TABDEF *pTabdef, const BYTE *pbInClass,
|
|
|
|
|
SCRIPT_STRING_ANALYSIS *pssa)
|
2005-11-15 12:02:16 +00:00
|
|
|
|
{
|
2007-01-03 11:12:17 +00:00
|
|
|
|
HRESULT hr = E_OUTOFMEMORY;
|
|
|
|
|
StringAnalysis *analysis = NULL;
|
2011-08-23 17:55:49 +00:00
|
|
|
|
SCRIPT_CONTROL sControl;
|
|
|
|
|
SCRIPT_STATE sState;
|
2007-01-03 11:12:17 +00:00
|
|
|
|
int i, num_items = 255;
|
2011-08-29 11:49:40 +00:00
|
|
|
|
BYTE *BidiLevel;
|
2011-10-06 20:23:45 +00:00
|
|
|
|
WCHAR *iString = NULL;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%d,%d,%d,0x%x,%d,%p,%p,%p,%p,%p,%p)\n",
|
2007-01-03 11:12:17 +00:00
|
|
|
|
hdc, pString, cString, cGlyphs, iCharset, dwFlags, iReqWidth,
|
|
|
|
|
psControl, psState, piDx, pTabdef, pbInClass, pssa);
|
2006-12-16 02:28:07 +00:00
|
|
|
|
|
2007-01-03 11:12:29 +00:00
|
|
|
|
if (iCharset != -1)
|
|
|
|
|
{
|
|
|
|
|
FIXME("Only Unicode strings are supported\n");
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
2007-01-03 11:12:17 +00:00
|
|
|
|
if (cString < 1 || !pString) return E_INVALIDARG;
|
|
|
|
|
if ((dwFlags & SSA_GLYPHS) && !hdc) return E_PENDING;
|
2006-12-24 11:39:27 +00:00
|
|
|
|
|
2007-12-10 22:53:07 +00:00
|
|
|
|
if (!(analysis = heap_alloc_zero(sizeof(StringAnalysis)))) return E_OUTOFMEMORY;
|
|
|
|
|
if (!(analysis->pItem = heap_alloc_zero(num_items * sizeof(SCRIPT_ITEM) + 1))) goto error;
|
2005-11-15 12:02:16 +00:00
|
|
|
|
|
2007-01-03 11:12:29 +00:00
|
|
|
|
/* FIXME: handle clipping */
|
|
|
|
|
analysis->clip_len = cString;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
analysis->hdc = hdc;
|
2011-09-08 17:50:03 +00:00
|
|
|
|
analysis->dwFlags = dwFlags;
|
2007-01-03 11:12:29 +00:00
|
|
|
|
|
2011-08-23 17:55:49 +00:00
|
|
|
|
if (psState)
|
|
|
|
|
sState = *psState;
|
|
|
|
|
else
|
|
|
|
|
memset(&sState, 0, sizeof(SCRIPT_STATE));
|
|
|
|
|
|
|
|
|
|
if (psControl)
|
|
|
|
|
sControl = *psControl;
|
|
|
|
|
else
|
|
|
|
|
memset(&sControl, 0, sizeof(SCRIPT_CONTROL));
|
|
|
|
|
|
2011-10-06 20:23:45 +00:00
|
|
|
|
if (dwFlags & SSA_PASSWORD)
|
|
|
|
|
{
|
|
|
|
|
iString = heap_alloc(sizeof(WCHAR)*cString);
|
2011-10-16 10:38:24 +00:00
|
|
|
|
if (!iString)
|
|
|
|
|
{
|
|
|
|
|
hr = E_OUTOFMEMORY;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2011-10-06 20:23:45 +00:00
|
|
|
|
for (i = 0; i < cString; i++)
|
|
|
|
|
iString[i] = *((const WCHAR *)pString);
|
|
|
|
|
pString = iString;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-23 17:55:49 +00:00
|
|
|
|
hr = ScriptItemize(pString, cString, num_items, &sControl, &sState, analysis->pItem,
|
2007-01-03 11:12:17 +00:00
|
|
|
|
&analysis->numItems);
|
2006-12-16 02:28:07 +00:00
|
|
|
|
|
2013-02-06 22:15:38 +00:00
|
|
|
|
if (FAILED(hr))
|
2007-01-03 11:12:17 +00:00
|
|
|
|
{
|
2012-01-30 13:30:15 +00:00
|
|
|
|
if (hr == E_OUTOFMEMORY)
|
|
|
|
|
hr = E_INVALIDARG;
|
|
|
|
|
goto error;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-16 10:38:24 +00:00
|
|
|
|
/* set back to out of memory for default goto error behaviour */
|
|
|
|
|
hr = E_OUTOFMEMORY;
|
|
|
|
|
|
2011-09-08 17:50:03 +00:00
|
|
|
|
if (dwFlags & SSA_BREAK)
|
|
|
|
|
{
|
|
|
|
|
if ((analysis->logattrs = heap_alloc(sizeof(SCRIPT_LOGATTR) * cString)))
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
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]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2006-12-23 16:19:31 +00:00
|
|
|
|
|
2011-08-29 11:49:40 +00:00
|
|
|
|
if (!(analysis->logical2visual = heap_alloc_zero(sizeof(int) * analysis->numItems)))
|
|
|
|
|
goto error;
|
|
|
|
|
if (!(BidiLevel = heap_alloc_zero(analysis->numItems)))
|
|
|
|
|
goto error;
|
|
|
|
|
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (dwFlags & SSA_GLYPHS)
|
2006-12-16 02:28:07 +00:00
|
|
|
|
{
|
2011-10-10 19:59:30 +00:00
|
|
|
|
int tab_x = 0;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->glyphs = heap_alloc_zero(sizeof(StringGlyphs) * analysis->numItems)))
|
2011-12-06 20:54:25 +00:00
|
|
|
|
{
|
|
|
|
|
heap_free(BidiLevel);
|
2011-09-08 17:50:10 +00:00
|
|
|
|
goto error;
|
2011-12-06 20:54:25 +00:00
|
|
|
|
}
|
2011-09-08 17:50:10 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
{
|
2011-10-10 19:59:36 +00:00
|
|
|
|
SCRIPT_CACHE *sc = (SCRIPT_CACHE*)&analysis->glyphs[i].sc;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
int cChar = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
|
|
|
|
|
int numGlyphs = 1.5 * cChar + 16;
|
|
|
|
|
WORD *glyphs = heap_alloc_zero(sizeof(WORD) * numGlyphs);
|
|
|
|
|
WORD *pwLogClust = heap_alloc_zero(sizeof(WORD) * cChar);
|
|
|
|
|
int *piAdvance = heap_alloc_zero(sizeof(int) * numGlyphs);
|
2011-09-23 14:42:46 +00:00
|
|
|
|
SCRIPT_VISATTR *psva = heap_alloc_zero(sizeof(SCRIPT_VISATTR) * numGlyphs);
|
2011-09-08 17:50:10 +00:00
|
|
|
|
GOFFSET *pGoffset = heap_alloc_zero(sizeof(GOFFSET) * numGlyphs);
|
|
|
|
|
ABC *abc = heap_alloc_zero(sizeof(ABC));
|
|
|
|
|
int numGlyphsReturned;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
HFONT originalFont = 0x0;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
|
|
|
|
|
/* FIXME: non unicode strings */
|
|
|
|
|
const WCHAR* pStr = (const WCHAR*)pString;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
analysis->glyphs[i].fallbackFont = NULL;
|
|
|
|
|
|
2011-10-16 10:38:24 +00:00
|
|
|
|
if (!glyphs || !pwLogClust || !piAdvance || !psva || !pGoffset || !abc)
|
|
|
|
|
{
|
2011-12-08 21:58:56 +00:00
|
|
|
|
heap_free (BidiLevel);
|
2011-10-16 10:38:24 +00:00
|
|
|
|
heap_free (glyphs);
|
|
|
|
|
heap_free (pwLogClust);
|
|
|
|
|
heap_free (piAdvance);
|
|
|
|
|
heap_free (psva);
|
|
|
|
|
heap_free (pGoffset);
|
|
|
|
|
heap_free (abc);
|
|
|
|
|
hr = E_OUTOFMEMORY;
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-10 19:59:36 +00:00
|
|
|
|
if ((dwFlags & SSA_FALLBACK) && requires_fallback(hdc, sc, &analysis->pItem[i].a, &pStr[analysis->pItem[i].iCharPos], cChar))
|
|
|
|
|
{
|
|
|
|
|
LOGFONTW lf;
|
|
|
|
|
GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(lf), & lf);
|
|
|
|
|
lf.lfCharSet = scriptInformation[analysis->pItem[i].a.eScript].props.bCharSet;
|
2011-12-15 15:51:21 +00:00
|
|
|
|
lf.lfFaceName[0] = 0;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
find_fallback_font(analysis->pItem[i].a.eScript, lf.lfFaceName);
|
2011-12-15 15:51:21 +00:00
|
|
|
|
if (lf.lfFaceName[0])
|
2011-10-10 19:59:36 +00:00
|
|
|
|
{
|
2011-12-15 15:51:21 +00:00
|
|
|
|
analysis->glyphs[i].fallbackFont = CreateFontIndirectW(&lf);
|
|
|
|
|
if (analysis->glyphs[i].fallbackFont)
|
|
|
|
|
{
|
|
|
|
|
ScriptFreeCache(sc);
|
|
|
|
|
originalFont = SelectObject(hdc, analysis->glyphs[i].fallbackFont);
|
|
|
|
|
}
|
2011-10-10 19:59:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-01 20:52:35 +00:00
|
|
|
|
/* FIXME: When we properly shape Hangul remove this check */
|
|
|
|
|
if ((dwFlags & SSA_LINK) && !analysis->glyphs[i].fallbackFont && analysis->pItem[i].a.eScript == Script_Hangul)
|
|
|
|
|
analysis->pItem[i].a.fNoGlyphIndex = TRUE;
|
|
|
|
|
|
2013-01-25 15:12:05 +00:00
|
|
|
|
if ((dwFlags & SSA_LINK) && !analysis->glyphs[i].fallbackFont && !scriptInformation[analysis->pItem[i].a.eScript].props.fComplex && !analysis->pItem[i].a.fRTL)
|
2012-01-31 19:11:36 +00:00
|
|
|
|
analysis->pItem[i].a.fNoGlyphIndex = TRUE;
|
|
|
|
|
|
2015-01-22 10:07:09 +00:00
|
|
|
|
ScriptShape(hdc, sc, &pStr[analysis->pItem[i].iCharPos], cChar, numGlyphs,
|
|
|
|
|
&analysis->pItem[i].a, glyphs, pwLogClust, psva, &numGlyphsReturned);
|
2011-09-08 17:50:10 +00:00
|
|
|
|
hr = ScriptPlace(hdc, sc, glyphs, numGlyphsReturned, psva, &analysis->pItem[i].a,
|
|
|
|
|
piAdvance, pGoffset, abc);
|
2011-10-10 19:59:36 +00:00
|
|
|
|
if (originalFont)
|
|
|
|
|
SelectObject(hdc,originalFont);
|
2011-09-08 17:50:10 +00:00
|
|
|
|
|
2011-10-10 19:59:30 +00:00
|
|
|
|
if (dwFlags & SSA_TAB)
|
|
|
|
|
{
|
|
|
|
|
int tabi = 0;
|
|
|
|
|
for (tabi = 0; tabi < cChar; tabi++)
|
|
|
|
|
{
|
|
|
|
|
if (pStr[analysis->pItem[i].iCharPos+tabi] == 0x0009)
|
2011-10-10 19:59:36 +00:00
|
|
|
|
piAdvance[tabi] = getGivenTabWidth(analysis->glyphs[i].sc, pTabdef, analysis->pItem[i].iCharPos+tabi, tab_x);
|
2011-10-10 19:59:30 +00:00
|
|
|
|
tab_x+=piAdvance[tabi];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-08 17:50:10 +00:00
|
|
|
|
analysis->glyphs[i].numGlyphs = numGlyphsReturned;
|
|
|
|
|
analysis->glyphs[i].glyphs = glyphs;
|
|
|
|
|
analysis->glyphs[i].pwLogClust = pwLogClust;
|
|
|
|
|
analysis->glyphs[i].piAdvance = piAdvance;
|
|
|
|
|
analysis->glyphs[i].psva = psva;
|
|
|
|
|
analysis->glyphs[i].pGoffset = pGoffset;
|
|
|
|
|
analysis->glyphs[i].abc = abc;
|
|
|
|
|
analysis->glyphs[i].iMaxPosX= -1;
|
|
|
|
|
|
|
|
|
|
BidiLevel[i] = analysis->pItem[i].a.s.uBidiLevel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
BidiLevel[i] = analysis->pItem[i].a.s.uBidiLevel;
|
2006-12-16 02:28:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-29 11:49:40 +00:00
|
|
|
|
ScriptLayout(analysis->numItems, BidiLevel, NULL, analysis->logical2visual);
|
|
|
|
|
heap_free(BidiLevel);
|
|
|
|
|
|
2006-12-16 02:28:07 +00:00
|
|
|
|
*pssa = analysis;
|
2011-10-06 20:23:45 +00:00
|
|
|
|
heap_free(iString);
|
2006-12-16 02:28:07 +00:00
|
|
|
|
return S_OK;
|
2007-01-03 11:12:17 +00:00
|
|
|
|
|
|
|
|
|
error:
|
2011-10-06 20:23:45 +00:00
|
|
|
|
heap_free(iString);
|
2007-12-10 22:53:07 +00:00
|
|
|
|
heap_free(analysis->glyphs);
|
|
|
|
|
heap_free(analysis->logattrs);
|
|
|
|
|
heap_free(analysis->pItem);
|
2011-08-29 11:49:40 +00:00
|
|
|
|
heap_free(analysis->logical2visual);
|
2007-12-10 22:53:07 +00:00
|
|
|
|
heap_free(analysis);
|
2007-01-03 11:12:17 +00:00
|
|
|
|
return hr;
|
2005-11-15 12:02:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-10-18 18:57:03 +00:00
|
|
|
|
static inline BOOL does_glyph_start_cluster(const SCRIPT_VISATTR *pva, const WORD *pwLogClust, int cChars, int glyph, int direction)
|
|
|
|
|
{
|
|
|
|
|
if (pva[glyph].fClusterStart)
|
|
|
|
|
return TRUE;
|
2012-01-30 13:30:08 +00:00
|
|
|
|
if (USP10_FindGlyphInLogClust(pwLogClust, cChars, glyph) >= 0)
|
2011-10-18 18:57:03 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-08-29 11:49:55 +00:00
|
|
|
|
static HRESULT SS_ItemOut( SCRIPT_STRING_ANALYSIS ssa,
|
|
|
|
|
int iX,
|
|
|
|
|
int iY,
|
|
|
|
|
int iItem,
|
|
|
|
|
int cStart,
|
|
|
|
|
int cEnd,
|
|
|
|
|
UINT uOptions,
|
|
|
|
|
const RECT *prc,
|
2011-08-29 11:50:05 +00:00
|
|
|
|
BOOL fSelected,
|
2011-08-29 11:49:55 +00:00
|
|
|
|
BOOL fDisabled)
|
|
|
|
|
{
|
|
|
|
|
StringAnalysis *analysis;
|
|
|
|
|
int off_x = 0;
|
|
|
|
|
HRESULT hr;
|
2011-08-29 11:50:05 +00:00
|
|
|
|
COLORREF BkColor = 0x0;
|
|
|
|
|
COLORREF TextColor = 0x0;
|
|
|
|
|
INT BkMode = 0;
|
2011-08-29 11:49:55 +00:00
|
|
|
|
INT runStart, runEnd;
|
|
|
|
|
INT iGlyph, cGlyphs;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
HFONT oldFont = 0x0;
|
2011-12-20 14:38:24 +00:00
|
|
|
|
RECT crc;
|
|
|
|
|
int i;
|
2011-08-29 11:49:55 +00:00
|
|
|
|
|
2011-08-29 11:50:05 +00:00
|
|
|
|
TRACE("(%p,%d,%d,%d,%d,%d, 0x%1x, %d, %d)\n",
|
|
|
|
|
ssa, iX, iY, iItem, cStart, cEnd, uOptions, fSelected, fDisabled);
|
2011-08-29 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
if (!(analysis = ssa)) return E_INVALIDARG;
|
|
|
|
|
|
|
|
|
|
if ((cStart >= 0 && analysis->pItem[iItem+1].iCharPos <= cStart) ||
|
|
|
|
|
(cEnd >= 0 && analysis->pItem[iItem].iCharPos >= cEnd))
|
|
|
|
|
return S_OK;
|
|
|
|
|
|
2011-12-20 14:38:24 +00:00
|
|
|
|
CopyRect(&crc,prc);
|
2011-08-29 11:50:05 +00:00
|
|
|
|
if (fSelected)
|
|
|
|
|
{
|
|
|
|
|
BkMode = GetBkMode(analysis->hdc);
|
|
|
|
|
SetBkMode( analysis->hdc, OPAQUE);
|
|
|
|
|
BkColor = GetBkColor(analysis->hdc);
|
|
|
|
|
SetBkColor(analysis->hdc, GetSysColor(COLOR_HIGHLIGHT));
|
|
|
|
|
if (!fDisabled)
|
|
|
|
|
{
|
|
|
|
|
TextColor = GetTextColor(analysis->hdc);
|
|
|
|
|
SetTextColor(analysis->hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-10-10 19:59:36 +00:00
|
|
|
|
if (analysis->glyphs[iItem].fallbackFont)
|
|
|
|
|
oldFont = SelectObject(analysis->hdc, analysis->glyphs[iItem].fallbackFont);
|
2011-08-29 11:50:05 +00:00
|
|
|
|
|
2011-08-29 11:49:55 +00:00
|
|
|
|
if (cStart >= 0 && analysis->pItem[iItem+1].iCharPos > cStart && analysis->pItem[iItem].iCharPos <= cStart)
|
|
|
|
|
runStart = cStart - analysis->pItem[iItem].iCharPos;
|
|
|
|
|
else
|
|
|
|
|
runStart = 0;
|
|
|
|
|
if (cEnd >= 0 && analysis->pItem[iItem+1].iCharPos > cEnd && analysis->pItem[iItem].iCharPos <= cEnd)
|
|
|
|
|
runEnd = (cEnd-1) - analysis->pItem[iItem].iCharPos;
|
|
|
|
|
else
|
|
|
|
|
runEnd = (analysis->pItem[iItem+1].iCharPos - analysis->pItem[iItem].iCharPos) - 1;
|
|
|
|
|
|
|
|
|
|
if (analysis->pItem[iItem].a.fRTL)
|
|
|
|
|
{
|
|
|
|
|
if (cEnd >= 0 && cEnd < analysis->pItem[iItem+1].iCharPos)
|
|
|
|
|
ScriptStringCPtoX(ssa, cEnd, FALSE, &off_x);
|
|
|
|
|
else
|
|
|
|
|
ScriptStringCPtoX(ssa, analysis->pItem[iItem+1].iCharPos-1, TRUE, &off_x);
|
2011-12-20 14:38:24 +00:00
|
|
|
|
crc.left = iX + off_x;
|
2011-08-29 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (cStart >=0 && runStart)
|
|
|
|
|
ScriptStringCPtoX(ssa, cStart, FALSE, &off_x);
|
|
|
|
|
else
|
|
|
|
|
ScriptStringCPtoX(ssa, analysis->pItem[iItem].iCharPos, FALSE, &off_x);
|
2011-12-20 14:38:24 +00:00
|
|
|
|
crc.left = iX + off_x;
|
2011-08-29 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (analysis->pItem[iItem].a.fRTL)
|
|
|
|
|
iGlyph = analysis->glyphs[iItem].pwLogClust[runEnd];
|
|
|
|
|
else
|
|
|
|
|
iGlyph = analysis->glyphs[iItem].pwLogClust[runStart];
|
|
|
|
|
|
|
|
|
|
if (analysis->pItem[iItem].a.fRTL)
|
|
|
|
|
cGlyphs = analysis->glyphs[iItem].pwLogClust[runStart] - iGlyph;
|
|
|
|
|
else
|
|
|
|
|
cGlyphs = analysis->glyphs[iItem].pwLogClust[runEnd] - iGlyph;
|
|
|
|
|
|
|
|
|
|
cGlyphs++;
|
|
|
|
|
|
2011-12-20 14:38:24 +00:00
|
|
|
|
/* adjust for cluster glyphs when starting */
|
|
|
|
|
if (analysis->pItem[iItem].a.fRTL)
|
|
|
|
|
i = analysis->pItem[iItem+1].iCharPos - 1;
|
|
|
|
|
else
|
|
|
|
|
i = analysis->pItem[iItem].iCharPos;
|
|
|
|
|
|
|
|
|
|
for (; i >=analysis->pItem[iItem].iCharPos && i < analysis->pItem[iItem+1].iCharPos; (analysis->pItem[iItem].a.fRTL)?i--:i++)
|
|
|
|
|
{
|
|
|
|
|
if (analysis->glyphs[iItem].pwLogClust[i - analysis->pItem[iItem].iCharPos] == iGlyph)
|
|
|
|
|
{
|
|
|
|
|
if (analysis->pItem[iItem].a.fRTL)
|
|
|
|
|
ScriptStringCPtoX(ssa, i, TRUE, &off_x);
|
|
|
|
|
else
|
|
|
|
|
ScriptStringCPtoX(ssa, i, FALSE, &off_x);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-18 18:57:03 +00:00
|
|
|
|
if (cEnd < 0 || scriptInformation[analysis->pItem[iItem].a.eScript].props.fNeedsCaretInfo)
|
|
|
|
|
{
|
|
|
|
|
INT direction;
|
|
|
|
|
INT clust_glyph;
|
|
|
|
|
|
|
|
|
|
clust_glyph = iGlyph + cGlyphs;
|
|
|
|
|
if (analysis->pItem[iItem].a.fRTL)
|
|
|
|
|
direction = -1;
|
|
|
|
|
else
|
|
|
|
|
direction = 1;
|
|
|
|
|
|
|
|
|
|
while(clust_glyph < analysis->glyphs[iItem].numGlyphs &&
|
|
|
|
|
!does_glyph_start_cluster(analysis->glyphs[iItem].psva, analysis->glyphs[iItem].pwLogClust, (analysis->pItem[iItem+1].iCharPos - analysis->pItem[iItem].iCharPos), clust_glyph, direction))
|
|
|
|
|
{
|
|
|
|
|
cGlyphs++;
|
|
|
|
|
clust_glyph++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-10 19:59:36 +00:00
|
|
|
|
hr = ScriptTextOut(analysis->hdc,
|
|
|
|
|
(SCRIPT_CACHE *)&analysis->glyphs[iItem].sc, iX + off_x,
|
2011-12-20 14:38:24 +00:00
|
|
|
|
iY, uOptions, &crc, &analysis->pItem[iItem].a, NULL, 0,
|
2011-08-29 11:49:55 +00:00
|
|
|
|
&analysis->glyphs[iItem].glyphs[iGlyph], cGlyphs,
|
|
|
|
|
&analysis->glyphs[iItem].piAdvance[iGlyph], NULL,
|
|
|
|
|
&analysis->glyphs[iItem].pGoffset[iGlyph]);
|
|
|
|
|
|
|
|
|
|
TRACE("ScriptTextOut hr=%08x\n", hr);
|
|
|
|
|
|
2011-08-29 11:50:05 +00:00
|
|
|
|
if (fSelected)
|
|
|
|
|
{
|
|
|
|
|
SetBkColor(analysis->hdc, BkColor);
|
|
|
|
|
SetBkMode( analysis->hdc, BkMode);
|
|
|
|
|
if (!fDisabled)
|
|
|
|
|
SetTextColor(analysis->hdc, TextColor);
|
|
|
|
|
}
|
2011-10-10 19:59:36 +00:00
|
|
|
|
if (analysis->glyphs[iItem].fallbackFont)
|
|
|
|
|
SelectObject(analysis->hdc, oldFont);
|
2011-08-29 11:50:05 +00:00
|
|
|
|
|
2011-08-29 11:49:55 +00:00
|
|
|
|
return hr;
|
|
|
|
|
}
|
|
|
|
|
|
2006-05-23 12:15:15 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringOut (USP10.@)
|
|
|
|
|
*
|
2006-12-29 11:37:16 +00:00
|
|
|
|
* This function takes the output of ScriptStringAnalyse and joins the segments
|
|
|
|
|
* of glyphs and passes the resulting string to ScriptTextOut. ScriptStringOut
|
|
|
|
|
* only processes glyphs.
|
|
|
|
|
*
|
|
|
|
|
* Parameters:
|
|
|
|
|
* ssa [I] buffer to hold the analysed string components
|
|
|
|
|
* iX [I] X axis displacement for output
|
|
|
|
|
* iY [I] Y axis displacement for output
|
2012-05-15 08:15:32 +00:00
|
|
|
|
* uOptions [I] flags controlling output processing
|
2006-12-29 11:37:16 +00:00
|
|
|
|
* prc [I] rectangle coordinates
|
|
|
|
|
* iMinSel [I] starting pos for substringing output string
|
|
|
|
|
* iMaxSel [I] ending pos for substringing output string
|
|
|
|
|
* fDisabled [I] controls text highlighting
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: is the value returned by ScriptTextOut
|
2006-05-23 12:15:15 +00:00
|
|
|
|
*/
|
2006-12-29 11:37:16 +00:00
|
|
|
|
HRESULT WINAPI ScriptStringOut(SCRIPT_STRING_ANALYSIS ssa,
|
|
|
|
|
int iX,
|
2006-05-23 12:15:15 +00:00
|
|
|
|
int iY,
|
|
|
|
|
UINT uOptions,
|
|
|
|
|
const RECT *prc,
|
|
|
|
|
int iMinSel,
|
2006-12-29 11:37:16 +00:00
|
|
|
|
int iMaxSel,
|
2006-05-23 12:15:15 +00:00
|
|
|
|
BOOL fDisabled)
|
|
|
|
|
{
|
2006-12-29 11:37:16 +00:00
|
|
|
|
StringAnalysis *analysis;
|
2011-08-29 11:49:55 +00:00
|
|
|
|
int item;
|
2006-12-29 11:37:16 +00:00
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
2016-04-05 09:39:22 +00:00
|
|
|
|
TRACE("(%p,%d,%d,0x%08x,%s,%d,%d,%d)\n",
|
|
|
|
|
ssa, iX, iY, uOptions, wine_dbgstr_rect(prc), iMinSel, iMaxSel, fDisabled);
|
2006-12-29 11:37:16 +00:00
|
|
|
|
|
2007-01-03 11:12:17 +00:00
|
|
|
|
if (!(analysis = ssa)) return E_INVALIDARG;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_GLYPHS)) return E_INVALIDARG;
|
2006-12-29 11:37:16 +00:00
|
|
|
|
|
2007-01-03 11:12:17 +00:00
|
|
|
|
for (item = 0; item < analysis->numItems; item++)
|
2006-12-29 11:37:16 +00:00
|
|
|
|
{
|
2011-08-29 11:50:05 +00:00
|
|
|
|
hr = SS_ItemOut( ssa, iX, iY, analysis->logical2visual[item], -1, -1, uOptions, prc, FALSE, fDisabled);
|
2011-08-29 11:49:55 +00:00
|
|
|
|
if (FAILED(hr))
|
|
|
|
|
return hr;
|
2006-05-23 12:15:15 +00:00
|
|
|
|
}
|
2006-12-29 11:37:16 +00:00
|
|
|
|
|
2011-08-29 11:50:05 +00:00
|
|
|
|
if (iMinSel < iMaxSel && (iMinSel > 0 || iMaxSel > 0))
|
|
|
|
|
{
|
|
|
|
|
if (iMaxSel > 0 && iMinSel < 0)
|
|
|
|
|
iMinSel = 0;
|
|
|
|
|
for (item = 0; item < analysis->numItems; item++)
|
|
|
|
|
{
|
|
|
|
|
hr = SS_ItemOut( ssa, iX, iY, analysis->logical2visual[item], iMinSel, iMaxSel, uOptions, prc, TRUE, fDisabled);
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
|
return hr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-29 11:49:55 +00:00
|
|
|
|
return S_OK;
|
2006-05-23 12:15:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-07-18 09:35:07 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringCPtoX (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptStringCPtoX(SCRIPT_STRING_ANALYSIS ssa, int icp, BOOL fTrailing, int* pX)
|
|
|
|
|
{
|
2011-08-29 11:49:40 +00:00
|
|
|
|
int item;
|
2006-12-16 02:28:25 +00:00
|
|
|
|
int runningX = 0;
|
|
|
|
|
StringAnalysis* analysis = ssa;
|
2007-01-03 11:12:43 +00:00
|
|
|
|
|
2006-12-16 02:28:25 +00:00
|
|
|
|
TRACE("(%p), %d, %d, (%p)\n", ssa, icp, fTrailing, pX);
|
|
|
|
|
|
2007-01-03 11:12:43 +00:00
|
|
|
|
if (!ssa || !pX) return S_FALSE;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
|
2006-12-16 02:28:25 +00:00
|
|
|
|
|
|
|
|
|
/* icp out of range */
|
|
|
|
|
if(icp < 0)
|
|
|
|
|
{
|
|
|
|
|
analysis->invalid = TRUE;
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-29 11:49:40 +00:00
|
|
|
|
for(item=0; item<analysis->numItems; item++)
|
2006-12-16 02:28:25 +00:00
|
|
|
|
{
|
2011-08-29 11:49:40 +00:00
|
|
|
|
int CP, i;
|
2011-03-18 17:22:31 +00:00
|
|
|
|
int offset;
|
2011-08-29 11:49:40 +00:00
|
|
|
|
|
|
|
|
|
i = analysis->logical2visual[item];
|
|
|
|
|
CP = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
|
2011-03-18 17:22:31 +00:00
|
|
|
|
/* initialize max extents for uninitialized runs */
|
|
|
|
|
if (analysis->glyphs[i].iMaxPosX == -1)
|
2006-12-16 02:28:25 +00:00
|
|
|
|
{
|
2011-03-18 17:22:31 +00:00
|
|
|
|
if (analysis->pItem[i].a.fRTL)
|
|
|
|
|
ScriptCPtoX(0, FALSE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
|
|
|
|
|
analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
|
|
|
|
|
&analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
|
|
|
|
|
else
|
|
|
|
|
ScriptCPtoX(CP, TRUE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
|
|
|
|
|
analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
|
|
|
|
|
&analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
|
2006-12-16 02:28:25 +00:00
|
|
|
|
}
|
2011-03-18 17:22:31 +00:00
|
|
|
|
|
2011-08-29 11:49:40 +00:00
|
|
|
|
if (icp >= analysis->pItem[i+1].iCharPos || icp < analysis->pItem[i].iCharPos)
|
2011-03-18 17:22:31 +00:00
|
|
|
|
{
|
|
|
|
|
runningX += analysis->glyphs[i].iMaxPosX;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-29 11:49:40 +00:00
|
|
|
|
icp -= analysis->pItem[i].iCharPos;
|
2011-03-18 17:22:31 +00:00
|
|
|
|
ScriptCPtoX(icp, fTrailing, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
|
|
|
|
|
analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
|
|
|
|
|
&analysis->pItem[i].a, &offset);
|
|
|
|
|
runningX += offset;
|
|
|
|
|
|
|
|
|
|
*pX = runningX;
|
|
|
|
|
return S_OK;
|
2006-12-16 02:28:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* icp out of range */
|
|
|
|
|
analysis->invalid = TRUE;
|
|
|
|
|
return E_INVALIDARG;
|
2006-07-18 09:35:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringXtoCP (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2011-03-18 17:22:42 +00:00
|
|
|
|
HRESULT WINAPI ScriptStringXtoCP(SCRIPT_STRING_ANALYSIS ssa, int iX, int* piCh, int* piTrailing)
|
2006-07-18 09:35:07 +00:00
|
|
|
|
{
|
2006-12-16 02:28:17 +00:00
|
|
|
|
StringAnalysis* analysis = ssa;
|
2011-08-29 11:49:40 +00:00
|
|
|
|
int item;
|
2006-12-16 02:28:17 +00:00
|
|
|
|
|
|
|
|
|
TRACE("(%p), %d, (%p), (%p)\n", ssa, iX, piCh, piTrailing);
|
|
|
|
|
|
2007-01-03 11:12:43 +00:00
|
|
|
|
if (!ssa || !piCh || !piTrailing) return S_FALSE;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
|
2006-12-16 02:28:17 +00:00
|
|
|
|
|
|
|
|
|
/* out of range */
|
|
|
|
|
if(iX < 0)
|
|
|
|
|
{
|
2010-10-29 18:48:48 +00:00
|
|
|
|
if (analysis->pItem[0].a.fRTL)
|
|
|
|
|
{
|
|
|
|
|
*piCh = 1;
|
|
|
|
|
*piTrailing = FALSE;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*piCh = -1;
|
|
|
|
|
*piTrailing = TRUE;
|
|
|
|
|
}
|
2007-01-03 11:12:43 +00:00
|
|
|
|
return S_OK;
|
2006-12-16 02:28:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-29 11:49:40 +00:00
|
|
|
|
for(item=0; item<analysis->numItems; item++)
|
2006-12-16 02:28:17 +00:00
|
|
|
|
{
|
2011-08-29 11:49:40 +00:00
|
|
|
|
int i;
|
|
|
|
|
int CP;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < analysis->numItems && analysis->logical2visual[i] != item; i++)
|
|
|
|
|
/* nothing */;
|
|
|
|
|
|
|
|
|
|
CP = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
|
2011-03-18 17:22:42 +00:00
|
|
|
|
/* initialize max extents for uninitialized runs */
|
|
|
|
|
if (analysis->glyphs[i].iMaxPosX == -1)
|
2006-12-16 02:28:17 +00:00
|
|
|
|
{
|
2011-03-18 17:22:42 +00:00
|
|
|
|
if (analysis->pItem[i].a.fRTL)
|
|
|
|
|
ScriptCPtoX(0, FALSE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
|
|
|
|
|
analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
|
|
|
|
|
&analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
|
|
|
|
|
else
|
|
|
|
|
ScriptCPtoX(CP, TRUE, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
|
|
|
|
|
analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
|
|
|
|
|
&analysis->pItem[i].a, &analysis->glyphs[i].iMaxPosX);
|
2006-12-16 02:28:17 +00:00
|
|
|
|
}
|
2011-03-18 17:22:42 +00:00
|
|
|
|
|
|
|
|
|
if (iX > analysis->glyphs[i].iMaxPosX)
|
|
|
|
|
{
|
|
|
|
|
iX -= analysis->glyphs[i].iMaxPosX;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScriptXtoCP(iX, CP, analysis->glyphs[i].numGlyphs, analysis->glyphs[i].pwLogClust,
|
|
|
|
|
analysis->glyphs[i].psva, analysis->glyphs[i].piAdvance,
|
|
|
|
|
&analysis->pItem[i].a, piCh, piTrailing);
|
2011-08-29 11:49:40 +00:00
|
|
|
|
*piCh += analysis->pItem[i].iCharPos;
|
2011-03-18 17:22:42 +00:00
|
|
|
|
|
|
|
|
|
return S_OK;
|
2006-12-16 02:28:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* out of range */
|
|
|
|
|
*piCh = analysis->pItem[analysis->numItems].iCharPos;
|
|
|
|
|
*piTrailing = FALSE;
|
|
|
|
|
|
2006-07-18 09:35:07 +00:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-16 02:28:17 +00:00
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringFree (USP10.@)
|
|
|
|
|
*
|
2007-01-02 15:11:10 +00:00
|
|
|
|
* Free a string analysis.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* pssa [I] string analysis.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2005-11-23 19:14:04 +00:00
|
|
|
|
*/
|
2006-12-16 02:28:11 +00:00
|
|
|
|
HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa)
|
|
|
|
|
{
|
|
|
|
|
StringAnalysis* analysis;
|
|
|
|
|
BOOL invalid;
|
|
|
|
|
int i;
|
2007-01-02 15:11:10 +00:00
|
|
|
|
|
2007-01-03 11:12:17 +00:00
|
|
|
|
TRACE("(%p)\n", pssa);
|
2006-12-16 02:28:11 +00:00
|
|
|
|
|
2007-01-03 11:12:17 +00:00
|
|
|
|
if (!pssa || !(analysis = *pssa)) return E_INVALIDARG;
|
2009-12-07 08:18:58 +00:00
|
|
|
|
|
2006-12-16 02:28:11 +00:00
|
|
|
|
invalid = analysis->invalid;
|
|
|
|
|
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (analysis->glyphs)
|
2006-12-16 02:28:11 +00:00
|
|
|
|
{
|
2011-09-08 17:50:10 +00:00
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
{
|
|
|
|
|
heap_free(analysis->glyphs[i].glyphs);
|
|
|
|
|
heap_free(analysis->glyphs[i].pwLogClust);
|
|
|
|
|
heap_free(analysis->glyphs[i].piAdvance);
|
|
|
|
|
heap_free(analysis->glyphs[i].psva);
|
|
|
|
|
heap_free(analysis->glyphs[i].pGoffset);
|
|
|
|
|
heap_free(analysis->glyphs[i].abc);
|
2011-10-10 19:59:36 +00:00
|
|
|
|
if (analysis->glyphs[i].fallbackFont)
|
|
|
|
|
DeleteObject(analysis->glyphs[i].fallbackFont);
|
|
|
|
|
ScriptFreeCache((SCRIPT_CACHE *)&analysis->glyphs[i].sc);
|
|
|
|
|
heap_free(analysis->glyphs[i].sc);
|
2011-09-08 17:50:10 +00:00
|
|
|
|
}
|
|
|
|
|
heap_free(analysis->glyphs);
|
2006-12-16 02:28:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 22:53:07 +00:00
|
|
|
|
heap_free(analysis->pItem);
|
|
|
|
|
heap_free(analysis->logattrs);
|
|
|
|
|
heap_free(analysis->sz);
|
2011-08-29 11:49:40 +00:00
|
|
|
|
heap_free(analysis->logical2visual);
|
2007-12-10 22:53:07 +00:00
|
|
|
|
heap_free(analysis);
|
2006-12-16 02:28:11 +00:00
|
|
|
|
|
2007-01-03 11:12:17 +00:00
|
|
|
|
if (invalid) return E_INVALIDARG;
|
2006-06-07 13:05:14 +00:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-17 15:40:46 +00:00
|
|
|
|
static inline int get_cluster_size(const WORD *pwLogClust, int cChars, int item,
|
|
|
|
|
int direction, int* iCluster, int *check_out)
|
|
|
|
|
{
|
|
|
|
|
int clust_size = 1;
|
|
|
|
|
int check;
|
|
|
|
|
WORD clust = pwLogClust[item];
|
|
|
|
|
|
|
|
|
|
for (check = item+direction; check < cChars && check >= 0; check+=direction)
|
|
|
|
|
{
|
|
|
|
|
if (pwLogClust[check] == clust)
|
|
|
|
|
{
|
|
|
|
|
clust_size ++;
|
|
|
|
|
if (iCluster && *iCluster == -1)
|
|
|
|
|
*iCluster = item;
|
|
|
|
|
}
|
|
|
|
|
else break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (check_out)
|
|
|
|
|
*check_out = check;
|
|
|
|
|
|
|
|
|
|
return clust_size;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-17 15:40:53 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
int advance;
|
2012-01-30 13:30:05 +00:00
|
|
|
|
int log_clust_max;
|
2011-10-17 15:40:53 +00:00
|
|
|
|
|
|
|
|
|
advance = piAdvance[glyph];
|
|
|
|
|
|
2012-01-30 13:30:05 +00:00
|
|
|
|
if (pwLogClust[0] > pwLogClust[cChars-1])
|
|
|
|
|
log_clust_max = pwLogClust[0];
|
|
|
|
|
else
|
|
|
|
|
log_clust_max = pwLogClust[cChars-1];
|
2011-10-17 15:40:53 +00:00
|
|
|
|
|
|
|
|
|
if (glyph > log_clust_max)
|
|
|
|
|
return advance;
|
|
|
|
|
|
|
|
|
|
for (glyph+=direction; glyph < cGlyphs && glyph >= 0; glyph +=direction)
|
|
|
|
|
{
|
2011-10-18 18:57:03 +00:00
|
|
|
|
|
|
|
|
|
if (does_glyph_start_cluster(pva, pwLogClust, cChars, glyph, direction))
|
2011-10-17 15:40:53 +00:00
|
|
|
|
break;
|
|
|
|
|
if (glyph > log_clust_max)
|
|
|
|
|
break;
|
|
|
|
|
advance += piAdvance[glyph];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return advance;
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-07 13:05:14 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptCPtoX (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptCPtoX(int iCP,
|
|
|
|
|
BOOL fTrailing,
|
|
|
|
|
int cChars,
|
|
|
|
|
int cGlyphs,
|
|
|
|
|
const WORD *pwLogClust,
|
|
|
|
|
const SCRIPT_VISATTR *psva,
|
|
|
|
|
const int *piAdvance,
|
|
|
|
|
const SCRIPT_ANALYSIS *psa,
|
|
|
|
|
int *piX)
|
|
|
|
|
{
|
2011-03-08 20:33:29 +00:00
|
|
|
|
int item;
|
|
|
|
|
float iPosX;
|
|
|
|
|
int iSpecial = -1;
|
|
|
|
|
int iCluster = -1;
|
|
|
|
|
int clust_size = 1;
|
|
|
|
|
float special_size = 0.0;
|
2011-03-11 18:47:37 +00:00
|
|
|
|
int iMaxPos = 0;
|
2011-10-17 15:40:53 +00:00
|
|
|
|
int advance = 0;
|
2011-03-11 18:47:37 +00:00
|
|
|
|
BOOL rtl = FALSE;
|
2011-03-08 20:33:29 +00:00
|
|
|
|
|
2006-07-20 12:16:50 +00:00
|
|
|
|
TRACE("(%d,%d,%d,%d,%p,%p,%p,%p,%p)\n",
|
2006-06-07 13:05:14 +00:00
|
|
|
|
iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance,
|
|
|
|
|
psa, piX);
|
2006-07-20 12:16:50 +00:00
|
|
|
|
|
2011-03-11 18:47:37 +00:00
|
|
|
|
if (psa->fRTL && ! psa->fLogicalOrder)
|
|
|
|
|
rtl = TRUE;
|
|
|
|
|
|
2011-03-08 20:33:29 +00:00
|
|
|
|
if (fTrailing)
|
2011-03-17 19:46:03 +00:00
|
|
|
|
iCP++;
|
2011-03-11 18:47:37 +00:00
|
|
|
|
|
|
|
|
|
if (rtl)
|
|
|
|
|
{
|
|
|
|
|
int max_clust = pwLogClust[0];
|
|
|
|
|
|
|
|
|
|
for (item=0; item < cGlyphs; item++)
|
|
|
|
|
if (pwLogClust[item] > max_clust)
|
|
|
|
|
{
|
|
|
|
|
ERR("We do not handle non reversed clusters properly\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
iMaxPos = 0;
|
|
|
|
|
for (item = max_clust; item >=0; item --)
|
|
|
|
|
iMaxPos += piAdvance[item];
|
|
|
|
|
}
|
2011-03-08 20:33:29 +00:00
|
|
|
|
|
|
|
|
|
iPosX = 0.0;
|
2011-08-22 12:18:47 +00:00
|
|
|
|
for (item=0; item < iCP && item < cChars; item++)
|
2011-03-08 20:33:29 +00:00
|
|
|
|
{
|
|
|
|
|
if (iSpecial == -1 && (iCluster == -1 || (iCluster != -1 && iCluster+clust_size <= item)))
|
|
|
|
|
{
|
|
|
|
|
int check;
|
|
|
|
|
int clust = pwLogClust[item];
|
|
|
|
|
|
|
|
|
|
iCluster = -1;
|
2011-10-17 15:40:46 +00:00
|
|
|
|
clust_size = get_cluster_size(pwLogClust, cChars, item, 1, &iCluster,
|
|
|
|
|
&check);
|
2011-03-08 20:33:29 +00:00
|
|
|
|
|
2011-10-17 15:40:53 +00:00
|
|
|
|
advance = get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, clust, 1);
|
|
|
|
|
|
2011-08-22 12:18:47 +00:00
|
|
|
|
if (check >= cChars && !iMaxPos)
|
2011-03-08 20:33:29 +00:00
|
|
|
|
{
|
2013-02-20 09:51:10 +00:00
|
|
|
|
int glyph;
|
|
|
|
|
for (glyph = clust; glyph < cGlyphs; glyph++)
|
|
|
|
|
special_size += get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, glyph, 1);
|
2011-03-08 20:33:29 +00:00
|
|
|
|
iSpecial = item;
|
|
|
|
|
special_size /= (cChars - item);
|
|
|
|
|
iPosX += special_size;
|
|
|
|
|
}
|
|
|
|
|
else
|
2011-10-17 12:41:16 +00:00
|
|
|
|
{
|
|
|
|
|
if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
|
|
|
|
|
{
|
|
|
|
|
clust_size --;
|
|
|
|
|
if (clust_size == 0)
|
2011-10-17 15:40:53 +00:00
|
|
|
|
iPosX += advance;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2011-10-17 15:40:53 +00:00
|
|
|
|
iPosX += advance / (float)clust_size;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
2011-03-08 20:33:29 +00:00
|
|
|
|
}
|
|
|
|
|
else if (iSpecial != -1)
|
|
|
|
|
iPosX += special_size;
|
|
|
|
|
else /* (iCluster != -1) */
|
2011-10-17 12:41:16 +00:00
|
|
|
|
{
|
2011-10-17 15:40:53 +00:00
|
|
|
|
int adv = get_glyph_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, pwLogClust[iCluster], 1);
|
2011-10-17 12:41:16 +00:00
|
|
|
|
if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
|
|
|
|
|
{
|
|
|
|
|
clust_size --;
|
|
|
|
|
if (clust_size == 0)
|
2011-10-17 15:40:53 +00:00
|
|
|
|
iPosX += adv;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2011-10-17 15:40:53 +00:00
|
|
|
|
iPosX += adv / (float)clust_size;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
2011-03-08 20:33:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-03-11 18:47:37 +00:00
|
|
|
|
if (iMaxPos > 0)
|
|
|
|
|
{
|
|
|
|
|
iPosX = iMaxPos - iPosX;
|
|
|
|
|
if (iPosX < 0)
|
|
|
|
|
iPosX = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-08 20:33:29 +00:00
|
|
|
|
*piX = iPosX;
|
2006-07-20 12:16:50 +00:00
|
|
|
|
TRACE("*piX=%d\n", *piX);
|
2006-06-07 13:05:14 +00:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* Count the number of characters in a cluster and its starting index*/
|
|
|
|
|
static inline BOOL get_cluster_data(const WORD *pwLogClust, int cChars, int cluster_index, int *cluster_size, int *start_index)
|
|
|
|
|
{
|
|
|
|
|
int size = 0;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
|
|
|
|
if (pwLogClust[i] == cluster_index)
|
|
|
|
|
{
|
|
|
|
|
if (!size && start_index)
|
|
|
|
|
{
|
|
|
|
|
*start_index = i;
|
|
|
|
|
if (!cluster_size)
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
size++;
|
|
|
|
|
}
|
|
|
|
|
else if (size) break;
|
|
|
|
|
}
|
|
|
|
|
if (cluster_size)
|
|
|
|
|
*cluster_size = size;
|
|
|
|
|
|
|
|
|
|
return (size > 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
To handle multi-glyph clusters we need to find all the glyphs that are
|
|
|
|
|
represented in the cluster. This involves finding the glyph whose
|
|
|
|
|
index is the cluster index as well as whose glyph indices are greater than
|
|
|
|
|
our cluster index but not part of a new cluster.
|
|
|
|
|
|
|
|
|
|
Then we sum all those glyphs' advances.
|
|
|
|
|
*/
|
|
|
|
|
static inline int get_cluster_advance(const int* piAdvance,
|
|
|
|
|
const SCRIPT_VISATTR *psva,
|
|
|
|
|
const WORD *pwLogClust, int cGlyphs,
|
|
|
|
|
int cChars, int cluster, int direction)
|
|
|
|
|
{
|
|
|
|
|
int glyph_start;
|
|
|
|
|
int glyph_end;
|
|
|
|
|
int i, advance;
|
|
|
|
|
|
|
|
|
|
if (direction > 0)
|
|
|
|
|
i = 0;
|
|
|
|
|
else
|
|
|
|
|
i = (cChars - 1);
|
|
|
|
|
|
|
|
|
|
for (glyph_start = -1, glyph_end = -1; i < cChars && i >= 0 && (glyph_start < 0 || glyph_end < 0); i+=direction)
|
|
|
|
|
{
|
|
|
|
|
if (glyph_start < 0 && pwLogClust[i] != cluster) continue;
|
|
|
|
|
if (pwLogClust[i] == cluster && glyph_start < 0) glyph_start = pwLogClust[i];
|
|
|
|
|
if (glyph_start >= 0 && glyph_end < 0 && pwLogClust[i] != cluster) glyph_end = pwLogClust[i];
|
|
|
|
|
}
|
|
|
|
|
if (glyph_end < 0)
|
|
|
|
|
{
|
|
|
|
|
if (direction > 0)
|
|
|
|
|
glyph_end = cGlyphs;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Don't fully understand multi-glyph reversed clusters yet,
|
|
|
|
|
* do they occur for real or just in our test? */
|
|
|
|
|
FIXME("multi-glyph reversed clusters found\n");
|
|
|
|
|
glyph_end = glyph_start + 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check for fClusterStart, finding this generally would mean a malformed set of data */
|
|
|
|
|
for (i = glyph_start+1; i< glyph_end; i++)
|
|
|
|
|
{
|
|
|
|
|
if (psva[i].fClusterStart)
|
|
|
|
|
{
|
|
|
|
|
glyph_end = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (advance = 0, i = glyph_start; i < glyph_end; i++)
|
|
|
|
|
advance += piAdvance[i];
|
|
|
|
|
|
|
|
|
|
return advance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-06-07 13:05:14 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptXtoCP (USP10.@)
|
|
|
|
|
*
|
2016-01-18 13:50:44 +00:00
|
|
|
|
* Basic algorithm :
|
2016-05-29 10:41:22 +00:00
|
|
|
|
* Use piAdvance to find the cluster we are looking at.
|
|
|
|
|
* Find the character that is the first character of the cluster.
|
|
|
|
|
* That is our base piCP.
|
2016-04-05 09:39:23 +00:00
|
|
|
|
* If the script snaps to cluster boundaries (Hebrew, Indic, Thai) then we
|
|
|
|
|
* are good. Otherwise if the cluster is larger than 1 glyph we need to
|
2016-01-18 13:50:44 +00:00
|
|
|
|
* determine how far through the cluster to advance the cursor.
|
2006-06-07 13:05:14 +00:00
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptXtoCP(int iX,
|
|
|
|
|
int cChars,
|
|
|
|
|
int cGlyphs,
|
|
|
|
|
const WORD *pwLogClust,
|
|
|
|
|
const SCRIPT_VISATTR *psva,
|
|
|
|
|
const int *piAdvance,
|
|
|
|
|
const SCRIPT_ANALYSIS *psa,
|
|
|
|
|
int *piCP,
|
|
|
|
|
int *piTrailing)
|
|
|
|
|
{
|
2011-03-17 19:46:15 +00:00
|
|
|
|
int direction = 1;
|
2016-01-18 13:50:44 +00:00
|
|
|
|
int iPosX;
|
|
|
|
|
int i;
|
|
|
|
|
int glyph_index, cluster_index;
|
|
|
|
|
int cluster_size;
|
2011-03-17 19:46:15 +00:00
|
|
|
|
|
2006-07-20 12:16:50 +00:00
|
|
|
|
TRACE("(%d,%d,%d,%p,%p,%p,%p,%p,%p)\n",
|
2006-06-07 13:05:14 +00:00
|
|
|
|
iX, cChars, cGlyphs, pwLogClust, psva, piAdvance,
|
|
|
|
|
psa, piCP, piTrailing);
|
2011-03-17 19:46:15 +00:00
|
|
|
|
|
|
|
|
|
if (psa->fRTL && ! psa->fLogicalOrder)
|
|
|
|
|
direction = -1;
|
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* Handle an iX < 0 */
|
|
|
|
|
if (iX < 0)
|
2011-03-17 19:46:15 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
if (direction < 0)
|
2011-03-17 19:46:15 +00:00
|
|
|
|
{
|
2011-08-22 12:18:47 +00:00
|
|
|
|
*piCP = cChars;
|
2011-03-17 19:46:15 +00:00
|
|
|
|
*piTrailing = 0;
|
|
|
|
|
}
|
2016-01-18 13:50:44 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*piCP = -1;
|
|
|
|
|
*piTrailing = 1;
|
|
|
|
|
}
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2011-03-17 19:46:15 +00:00
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* Looking for non-reversed clusters in a reversed string */
|
|
|
|
|
if (direction < 0)
|
|
|
|
|
{
|
|
|
|
|
int max_clust = pwLogClust[0];
|
|
|
|
|
for (i=0; i< cChars; i++)
|
|
|
|
|
if (pwLogClust[i] > max_clust)
|
2011-03-17 19:46:15 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
FIXME("We do not handle non reversed clusters properly\n");
|
2011-03-17 19:46:15 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* find the glyph_index based in iX */
|
|
|
|
|
if (direction > 0)
|
2006-07-20 12:16:50 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
for (glyph_index = -1, iPosX = iX; iPosX >=0 && glyph_index < cGlyphs; iPosX -= piAdvance[glyph_index+1], glyph_index++)
|
|
|
|
|
;
|
2006-07-20 12:16:50 +00:00
|
|
|
|
}
|
2011-03-17 19:46:15 +00:00
|
|
|
|
else
|
2006-07-20 12:16:50 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
for (glyph_index = -1, iPosX = iX; iPosX > 0 && glyph_index < cGlyphs; iPosX -= piAdvance[glyph_index+1], glyph_index++)
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TRACE("iPosX %i -> glyph_index %i (%i)\n", iPosX, glyph_index, cGlyphs);
|
|
|
|
|
|
|
|
|
|
*piTrailing = 0;
|
|
|
|
|
if (glyph_index >= 0 && glyph_index < cGlyphs)
|
|
|
|
|
{
|
|
|
|
|
/* find the cluster */
|
|
|
|
|
if (direction > 0 )
|
|
|
|
|
for (i = 0, cluster_index = pwLogClust[0]; i < cChars && pwLogClust[i] <= glyph_index; cluster_index=pwLogClust[i++])
|
|
|
|
|
;
|
|
|
|
|
else
|
|
|
|
|
for (i = 0, cluster_index = pwLogClust[0]; i < cChars && pwLogClust[i] >= glyph_index; cluster_index=pwLogClust[i++])
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
TRACE("cluster_index %i\n", cluster_index);
|
|
|
|
|
|
|
|
|
|
if (direction < 0 && iPosX >= 0 && glyph_index != cluster_index)
|
2011-03-17 19:46:15 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* We are off the end of the string */
|
|
|
|
|
*piCP = -1;
|
|
|
|
|
*piTrailing = 1;
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2011-03-17 19:46:15 +00:00
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
get_cluster_data(pwLogClust, cChars, cluster_index, &cluster_size, &i);
|
2011-03-17 19:46:15 +00:00
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
TRACE("first char index %i\n",i);
|
|
|
|
|
if (scriptInformation[psa->eScript].props.fNeedsCaretInfo)
|
|
|
|
|
{
|
|
|
|
|
/* Check trailing */
|
|
|
|
|
if (glyph_index != cluster_index ||
|
|
|
|
|
(direction > 0 && abs(iPosX) <= (piAdvance[glyph_index] / 2)) ||
|
|
|
|
|
(direction < 0 && abs(iPosX) >= (piAdvance[glyph_index] / 2)))
|
|
|
|
|
*piTrailing = cluster_size;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (cluster_size > 1)
|
2011-10-17 12:41:16 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* Be part way through the glyph cluster based on size and position */
|
|
|
|
|
int cluster_advance = get_cluster_advance(piAdvance, psva, pwLogClust, cGlyphs, cChars, cluster_index, direction);
|
|
|
|
|
double cluster_part_width = cluster_advance / (float)cluster_size;
|
|
|
|
|
double adv;
|
|
|
|
|
int part_index;
|
|
|
|
|
|
|
|
|
|
/* back up to the beginning of the cluster */
|
|
|
|
|
for (adv = iPosX, part_index = cluster_index; part_index <= glyph_index; part_index++)
|
|
|
|
|
adv += piAdvance[part_index];
|
|
|
|
|
if (adv > iX) adv = iX;
|
|
|
|
|
|
|
|
|
|
TRACE("Multi-char cluster, no snap\n");
|
|
|
|
|
TRACE("cluster size %i, pre-cluster iPosX %f\n",cluster_size, adv);
|
|
|
|
|
TRACE("advance %i divides into %f per char\n", cluster_advance, cluster_part_width);
|
|
|
|
|
if (direction > 0)
|
2011-10-17 12:41:16 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
for (part_index = 0; adv >= 0; adv-=cluster_part_width, part_index++)
|
|
|
|
|
;
|
|
|
|
|
if (part_index) part_index--;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2016-01-18 13:50:44 +00:00
|
|
|
|
{
|
|
|
|
|
for (part_index = 0; adv > 0; adv-=cluster_part_width, part_index++)
|
|
|
|
|
;
|
|
|
|
|
if (part_index > cluster_size)
|
|
|
|
|
{
|
|
|
|
|
adv += cluster_part_width;
|
|
|
|
|
part_index=cluster_size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TRACE("base_char %i part_index %i, leftover advance %f\n",i, part_index, adv);
|
|
|
|
|
|
|
|
|
|
if (direction > 0)
|
|
|
|
|
i += part_index;
|
|
|
|
|
else
|
|
|
|
|
i += (cluster_size - part_index);
|
|
|
|
|
|
|
|
|
|
/* Check trailing */
|
|
|
|
|
if ((direction > 0 && fabs(adv) <= (cluster_part_width / 2.0)) ||
|
|
|
|
|
(direction < 0 && adv && fabs(adv) >= (cluster_part_width / 2.0)))
|
|
|
|
|
*piTrailing = 1;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
2016-01-18 13:50:44 +00:00
|
|
|
|
else
|
2011-10-17 12:41:16 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
/* Check trailing */
|
|
|
|
|
if ((direction > 0 && abs(iPosX) <= (piAdvance[glyph_index] / 2)) ||
|
|
|
|
|
(direction < 0 && abs(iPosX) >= (piAdvance[glyph_index] / 2)))
|
|
|
|
|
*piTrailing = 1;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-01-03 11:12:43 +00:00
|
|
|
|
}
|
2006-07-20 12:16:50 +00:00
|
|
|
|
else
|
2011-03-17 19:46:15 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
TRACE("Point falls outside of string\n");
|
|
|
|
|
if (glyph_index < 0)
|
|
|
|
|
i = cChars-1;
|
|
|
|
|
else /* (glyph_index >= cGlyphs) */
|
|
|
|
|
i = cChars;
|
|
|
|
|
|
|
|
|
|
/* If not snaping in the reverse direction (such as Hebrew) Then 0
|
|
|
|
|
point flow to the next character */
|
|
|
|
|
if (direction < 0)
|
2011-10-17 12:41:16 +00:00
|
|
|
|
{
|
2016-01-18 13:50:44 +00:00
|
|
|
|
if (!scriptInformation[psa->eScript].props.fNeedsCaretInfo && abs(iPosX) == piAdvance[glyph_index])
|
|
|
|
|
i++;
|
|
|
|
|
else
|
|
|
|
|
*piTrailing = 1;
|
2011-10-17 12:41:16 +00:00
|
|
|
|
}
|
2011-03-17 19:46:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-01-18 13:50:44 +00:00
|
|
|
|
*piCP = i;
|
2007-01-03 11:12:43 +00:00
|
|
|
|
|
2011-03-17 19:46:15 +00:00
|
|
|
|
TRACE("*piCP=%d\n", *piCP);
|
|
|
|
|
TRACE("*piTrailing=%d\n", *piTrailing);
|
2006-06-07 13:05:14 +00:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptBreak (USP10.@)
|
|
|
|
|
*
|
2006-12-23 10:50:47 +00:00
|
|
|
|
* Retrieve line break information.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* chars [I] Array of characters.
|
2016-04-05 09:39:23 +00:00
|
|
|
|
* sa [I] Script analysis.
|
2006-12-23 10:50:47 +00:00
|
|
|
|
* la [I] Array of logical attribute structures.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: S_FALSE
|
2006-06-07 13:05:14 +00:00
|
|
|
|
*/
|
2006-12-23 10:50:47 +00:00
|
|
|
|
HRESULT WINAPI ScriptBreak(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT_LOGATTR *la)
|
2006-06-07 13:05:14 +00:00
|
|
|
|
{
|
2007-01-02 14:31:34 +00:00
|
|
|
|
TRACE("(%s, %d, %p, %p)\n", debugstr_wn(chars, count), count, sa, la);
|
2006-12-23 10:50:47 +00:00
|
|
|
|
|
2012-03-19 18:48:39 +00:00
|
|
|
|
if (count < 0 || !la) return E_INVALIDARG;
|
|
|
|
|
if (count == 0) return E_FAIL;
|
2006-12-23 10:50:47 +00:00
|
|
|
|
|
2011-06-27 16:01:24 +00:00
|
|
|
|
BREAK_line(chars, count, sa, la);
|
2009-01-06 10:20:26 +00:00
|
|
|
|
|
2006-06-07 13:05:14 +00:00
|
|
|
|
return S_OK;
|
2005-11-15 12:02:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 19:14:04 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptIsComplex (USP10.@)
|
2010-08-12 19:57:50 +00:00
|
|
|
|
*
|
2006-08-04 09:41:58 +00:00
|
|
|
|
* Determine if a string is complex.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* chars [I] Array of characters to test.
|
|
|
|
|
* len [I] Length in characters.
|
|
|
|
|
* flag [I] Flag.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: S_FALSE
|
2005-11-23 19:14:04 +00:00
|
|
|
|
*
|
|
|
|
|
*/
|
2006-08-04 09:41:58 +00:00
|
|
|
|
HRESULT WINAPI ScriptIsComplex(const WCHAR *chars, int len, DWORD flag)
|
|
|
|
|
{
|
2008-11-19 21:28:04 +00:00
|
|
|
|
int i;
|
2011-12-16 19:15:43 +00:00
|
|
|
|
INT consumed = 0;
|
2006-08-04 09:41:58 +00:00
|
|
|
|
|
2006-10-04 22:58:37 +00:00
|
|
|
|
TRACE("(%s,%d,0x%x)\n", debugstr_wn(chars, len), len, flag);
|
2006-08-04 09:41:58 +00:00
|
|
|
|
|
2011-12-16 19:15:43 +00:00
|
|
|
|
for (i = 0; i < len; i+=consumed)
|
2006-08-04 09:41:58 +00:00
|
|
|
|
{
|
2010-08-12 19:57:50 +00:00
|
|
|
|
int script;
|
2011-12-16 19:15:43 +00:00
|
|
|
|
if (i >= len)
|
|
|
|
|
break;
|
2010-08-12 19:57:50 +00:00
|
|
|
|
|
|
|
|
|
if ((flag & SIC_ASCIIDIGIT) && chars[i] >= 0x30 && chars[i] <= 0x39)
|
|
|
|
|
return S_OK;
|
|
|
|
|
|
2011-12-16 19:15:43 +00:00
|
|
|
|
script = get_char_script(chars,i,len, &consumed);
|
2010-08-12 19:57:50 +00:00
|
|
|
|
if ((scriptInformation[script].props.fComplex && (flag & SIC_COMPLEX))||
|
|
|
|
|
(!scriptInformation[script].props.fComplex && (flag & SIC_NEUTRAL)))
|
|
|
|
|
return S_OK;
|
2006-08-04 09:41:58 +00:00
|
|
|
|
}
|
|
|
|
|
return S_FALSE;
|
2005-11-15 12:02:16 +00:00
|
|
|
|
}
|
2006-04-20 11:50:44 +00:00
|
|
|
|
|
2006-02-14 16:38:20 +00:00
|
|
|
|
/***********************************************************************
|
2011-05-12 18:57:26 +00:00
|
|
|
|
* ScriptShapeOpenType (USP10.@)
|
2006-02-14 16:38:20 +00:00
|
|
|
|
*
|
2007-01-23 10:03:26 +00:00
|
|
|
|
* Produce glyphs and visual attributes for a run.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
2011-05-12 18:57:26 +00:00
|
|
|
|
* psa [I/O] Script analysis.
|
|
|
|
|
* tagScript [I] The OpenType tag for the Script
|
|
|
|
|
* tagLangSys [I] The OpenType tag for the Language
|
|
|
|
|
* rcRangeChars[I] Array of Character counts in each range
|
|
|
|
|
* rpRangeProperties [I] Array of TEXTRANGE_PROPERTIES structures
|
|
|
|
|
* cRanges [I] Count of ranges
|
2007-01-23 10:03:26 +00:00
|
|
|
|
* pwcChars [I] Array of characters specifying the run.
|
|
|
|
|
* cChars [I] Number of characters in pwcChars.
|
|
|
|
|
* cMaxGlyphs [I] Length of pwOutGlyphs.
|
|
|
|
|
* pwLogClust [O] Array of logical cluster info.
|
2011-05-12 18:57:26 +00:00
|
|
|
|
* pCharProps [O] Array of character property values
|
|
|
|
|
* pwOutGlyphs [O] Array of glyphs.
|
|
|
|
|
* pOutGlyphProps [O] Array of attributes for the retrieved glyphs
|
2007-01-23 10:03:26 +00:00
|
|
|
|
* pcGlyphs [O] Number of glyphs returned.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2006-02-14 16:38:20 +00:00
|
|
|
|
*/
|
2011-05-12 18:57:26 +00:00
|
|
|
|
HRESULT WINAPI ScriptShapeOpenType( HDC hdc, SCRIPT_CACHE *psc,
|
|
|
|
|
SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript,
|
|
|
|
|
OPENTYPE_TAG tagLangSys, int *rcRangeChars,
|
|
|
|
|
TEXTRANGE_PROPERTIES **rpRangeProperties,
|
|
|
|
|
int cRanges, const WCHAR *pwcChars, int cChars,
|
|
|
|
|
int cMaxGlyphs, WORD *pwLogClust,
|
|
|
|
|
SCRIPT_CHARPROP *pCharProps, WORD *pwOutGlyphs,
|
|
|
|
|
SCRIPT_GLYPHPROP *pOutGlyphProps, int *pcGlyphs)
|
2006-02-14 16:38:20 +00:00
|
|
|
|
{
|
2006-12-28 15:12:45 +00:00
|
|
|
|
HRESULT hr;
|
2013-02-27 21:13:06 +00:00
|
|
|
|
int i;
|
|
|
|
|
unsigned int g;
|
2010-04-14 15:00:37 +00:00
|
|
|
|
BOOL rtl;
|
2011-12-16 19:15:47 +00:00
|
|
|
|
int cluster;
|
2014-05-05 18:55:37 +00:00
|
|
|
|
static int once = 0;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
2011-05-12 18:57:26 +00:00
|
|
|
|
TRACE("(%p, %p, %p, %s, %s, %p, %p, %d, %s, %d, %d, %p, %p, %p, %p, %p )\n",
|
|
|
|
|
hdc, psc, psa,
|
|
|
|
|
debugstr_an((char*)&tagScript,4), debugstr_an((char*)&tagLangSys,4),
|
|
|
|
|
rcRangeChars, rpRangeProperties, cRanges, debugstr_wn(pwcChars, cChars),
|
|
|
|
|
cChars, cMaxGlyphs, pwLogClust, pCharProps, pwOutGlyphs, pOutGlyphProps, pcGlyphs);
|
2009-01-06 10:21:07 +00:00
|
|
|
|
|
2006-02-24 09:13:51 +00:00
|
|
|
|
if (psa) TRACE("psa values: %d, %d, %d, %d, %d, %d, %d\n", psa->eScript, psa->fRTL, psa->fLayoutRTL,
|
2006-12-28 15:12:45 +00:00
|
|
|
|
psa->fLinkBefore, psa->fLinkAfter, psa->fLogicalOrder, psa->fNoGlyphIndex);
|
|
|
|
|
|
2011-05-12 18:57:26 +00:00
|
|
|
|
if (!pOutGlyphProps || !pcGlyphs || !pCharProps) return E_INVALIDARG;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
if (cChars > cMaxGlyphs) return E_OUTOFMEMORY;
|
2011-05-12 18:57:26 +00:00
|
|
|
|
|
|
|
|
|
if (cRanges)
|
2014-05-05 18:55:37 +00:00
|
|
|
|
if(!once++) FIXME("Ranges not supported yet\n");
|
2011-05-12 18:57:26 +00:00
|
|
|
|
|
2011-07-13 18:46:42 +00:00
|
|
|
|
rtl = (psa && !psa->fLogicalOrder && psa->fRTL);
|
2008-09-12 12:02:12 +00:00
|
|
|
|
|
2007-12-12 09:44:42 +00:00
|
|
|
|
*pcGlyphs = cChars;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2009-09-03 12:50:17 +00:00
|
|
|
|
if (!pwLogClust) return E_FAIL;
|
2007-12-09 20:39:19 +00:00
|
|
|
|
|
2011-05-12 18:57:26 +00:00
|
|
|
|
((ScriptCache *)*psc)->userScript = tagScript;
|
|
|
|
|
((ScriptCache *)*psc)->userLang = tagLangSys;
|
|
|
|
|
|
2011-09-14 13:53:05 +00:00
|
|
|
|
/* set fNoGlyphIndex non truetype/opentype fonts */
|
2012-01-03 02:33:23 +00:00
|
|
|
|
if (psa && !psa->fNoGlyphIndex && !((ScriptCache *)*psc)->sfnt)
|
2011-09-06 12:17:59 +00:00
|
|
|
|
psa->fNoGlyphIndex = TRUE;
|
|
|
|
|
|
2010-08-12 19:59:04 +00:00
|
|
|
|
/* Initialize a SCRIPT_VISATTR and LogClust for each char in this run */
|
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
|
|
|
|
int idx = i;
|
|
|
|
|
if (rtl) idx = cChars - 1 - i;
|
|
|
|
|
/* FIXME: set to better values */
|
2011-05-12 18:57:26 +00:00
|
|
|
|
pOutGlyphProps[i].sva.uJustification = (pwcChars[idx] == ' ') ? SCRIPT_JUSTIFY_BLANK : SCRIPT_JUSTIFY_CHARACTER;
|
|
|
|
|
pOutGlyphProps[i].sva.fClusterStart = 1;
|
|
|
|
|
pOutGlyphProps[i].sva.fDiacritic = 0;
|
|
|
|
|
pOutGlyphProps[i].sva.fZeroWidth = 0;
|
|
|
|
|
pOutGlyphProps[i].sva.fReserved = 0;
|
|
|
|
|
pOutGlyphProps[i].sva.fShapeReserved = 0;
|
|
|
|
|
|
|
|
|
|
/* FIXME: have the shaping engine set this */
|
2011-05-17 20:05:49 +00:00
|
|
|
|
pCharProps[i].fCanGlyphAlone = 0;
|
2010-08-12 19:59:04 +00:00
|
|
|
|
|
|
|
|
|
pwLogClust[i] = idx;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-13 18:46:42 +00:00
|
|
|
|
if (psa && !psa->fNoGlyphIndex)
|
2007-12-12 18:11:28 +00:00
|
|
|
|
{
|
2010-09-09 20:27:57 +00:00
|
|
|
|
WCHAR *rChars;
|
|
|
|
|
if ((hr = SHAPE_CheckFontForRequiredFeatures(hdc, (ScriptCache *)*psc, psa)) != S_OK) return hr;
|
|
|
|
|
|
|
|
|
|
rChars = heap_alloc(sizeof(WCHAR) * cChars);
|
2010-05-21 19:11:30 +00:00
|
|
|
|
if (!rChars) return E_OUTOFMEMORY;
|
2011-12-16 19:15:47 +00:00
|
|
|
|
for (i = 0, g = 0, cluster = 0; i < cChars; i++)
|
2008-10-09 13:17:29 +00:00
|
|
|
|
{
|
2010-04-14 15:00:37 +00:00
|
|
|
|
int idx = i;
|
2011-12-16 19:15:47 +00:00
|
|
|
|
DWORD chInput;
|
|
|
|
|
|
2010-04-14 15:00:37 +00:00
|
|
|
|
if (rtl) idx = cChars - 1 - i;
|
2011-12-16 19:15:47 +00:00
|
|
|
|
if (!cluster)
|
2008-10-09 13:17:29 +00:00
|
|
|
|
{
|
2011-12-16 19:15:47 +00:00
|
|
|
|
chInput = decode_surrogate_pair(pwcChars, idx, cChars);
|
|
|
|
|
if (!chInput)
|
2011-12-06 20:54:25 +00:00
|
|
|
|
{
|
2011-12-16 19:15:47 +00:00
|
|
|
|
if (psa->fRTL)
|
|
|
|
|
chInput = mirror_char(pwcChars[idx]);
|
|
|
|
|
else
|
|
|
|
|
chInput = pwcChars[idx];
|
|
|
|
|
/* special case for tabs */
|
|
|
|
|
if (chInput == 0x0009)
|
|
|
|
|
chInput = 0x0020;
|
|
|
|
|
rChars[i] = chInput;
|
2011-12-06 20:54:25 +00:00
|
|
|
|
}
|
2011-12-16 19:15:47 +00:00
|
|
|
|
else
|
2011-12-06 20:54:25 +00:00
|
|
|
|
{
|
2011-12-16 19:15:47 +00:00
|
|
|
|
rChars[i] = pwcChars[idx];
|
|
|
|
|
rChars[i+1] = pwcChars[(rtl)?idx-1:idx+1];
|
|
|
|
|
cluster = 1;
|
2011-12-06 20:54:25 +00:00
|
|
|
|
}
|
2011-12-16 19:15:47 +00:00
|
|
|
|
if (!(pwOutGlyphs[g] = get_cache_glyph(psc, chInput)))
|
|
|
|
|
{
|
|
|
|
|
WORD glyph;
|
|
|
|
|
if (!hdc)
|
|
|
|
|
{
|
|
|
|
|
heap_free(rChars);
|
|
|
|
|
return E_PENDING;
|
|
|
|
|
}
|
2012-01-04 14:13:38 +00:00
|
|
|
|
if (OpenType_CMAP_GetGlyphIndex(hdc, (ScriptCache *)*psc, chInput, &glyph, 0) == GDI_ERROR)
|
2011-12-16 19:15:47 +00:00
|
|
|
|
{
|
|
|
|
|
heap_free(rChars);
|
|
|
|
|
return S_FALSE;
|
|
|
|
|
}
|
|
|
|
|
pwOutGlyphs[g] = set_cache_glyph(psc, chInput, glyph);
|
|
|
|
|
}
|
|
|
|
|
g++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int k;
|
|
|
|
|
cluster--;
|
|
|
|
|
pwLogClust[idx] = (rtl)?pwLogClust[idx+1]:pwLogClust[idx-1];
|
|
|
|
|
for (k = (rtl)?idx-1:idx+1; k >= 0 && k < cChars; (rtl)?k--:k++)
|
|
|
|
|
pwLogClust[k]--;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-12-16 19:15:47 +00:00
|
|
|
|
*pcGlyphs = g;
|
2010-09-08 18:30:46 +00:00
|
|
|
|
|
2011-09-06 12:17:59 +00:00
|
|
|
|
SHAPE_ContextualShaping(hdc, (ScriptCache *)*psc, psa, rChars, cChars, pwOutGlyphs, pcGlyphs, cMaxGlyphs, pwLogClust);
|
|
|
|
|
SHAPE_ApplyDefaultOpentypeFeatures(hdc, (ScriptCache *)*psc, psa, pwOutGlyphs, pcGlyphs, cMaxGlyphs, cChars, pwLogClust);
|
|
|
|
|
SHAPE_CharGlyphProp(hdc, (ScriptCache *)*psc, psa, pwcChars, cChars, pwOutGlyphs, *pcGlyphs, pwLogClust, pCharProps, pOutGlyphProps);
|
2010-05-19 14:17:00 +00:00
|
|
|
|
heap_free(rChars);
|
2006-02-20 09:19:32 +00:00
|
|
|
|
}
|
2007-12-12 18:11:28 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TRACE("no glyph translation\n");
|
2010-04-14 15:00:37 +00:00
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
|
|
|
|
int idx = i;
|
2010-05-06 13:28:57 +00:00
|
|
|
|
/* No mirroring done here */
|
2010-04-14 15:00:37 +00:00
|
|
|
|
if (rtl) idx = cChars - 1 - i;
|
|
|
|
|
pwOutGlyphs[i] = pwcChars[idx];
|
2015-08-11 15:54:40 +00:00
|
|
|
|
|
|
|
|
|
/* overwrite some basic control glyphs to blank */
|
|
|
|
|
if (psa && psa->eScript == Script_Control &&
|
|
|
|
|
pwcChars[idx] < ((ScriptCache *)*psc)->tm.tmFirstChar)
|
|
|
|
|
{
|
|
|
|
|
if (pwcChars[idx] == 0x0009 || pwcChars[idx] == 0x000A ||
|
|
|
|
|
pwcChars[idx] == 0x000D || pwcChars[idx] >= 0x001C)
|
|
|
|
|
pwOutGlyphs[i] = ((ScriptCache *)*psc)->sfp.wgBlank;
|
|
|
|
|
}
|
2010-04-14 15:00:37 +00:00
|
|
|
|
}
|
2006-02-20 09:19:32 +00:00
|
|
|
|
}
|
2007-12-12 18:11:28 +00:00
|
|
|
|
|
2006-12-28 15:12:45 +00:00
|
|
|
|
return S_OK;
|
2006-02-14 16:38:20 +00:00
|
|
|
|
}
|
2006-02-20 09:19:32 +00:00
|
|
|
|
|
2011-05-12 18:57:26 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptShape (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Produce glyphs and visual attributes for a run.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
|
* pwcChars [I] Array of characters specifying the run.
|
|
|
|
|
* cChars [I] Number of characters in pwcChars.
|
|
|
|
|
* cMaxGlyphs [I] Length of pwOutGlyphs.
|
|
|
|
|
* psa [I/O] Script analysis.
|
|
|
|
|
* pwOutGlyphs [O] Array of glyphs.
|
|
|
|
|
* pwLogClust [O] Array of logical cluster info.
|
|
|
|
|
* psva [O] Array of visual attributes.
|
|
|
|
|
* pcGlyphs [O] Number of glyphs returned.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptShape(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcChars,
|
|
|
|
|
int cChars, int cMaxGlyphs,
|
|
|
|
|
SCRIPT_ANALYSIS *psa, WORD *pwOutGlyphs, WORD *pwLogClust,
|
|
|
|
|
SCRIPT_VISATTR *psva, int *pcGlyphs)
|
|
|
|
|
{
|
|
|
|
|
HRESULT hr;
|
|
|
|
|
int i;
|
|
|
|
|
SCRIPT_CHARPROP *charProps;
|
|
|
|
|
SCRIPT_GLYPHPROP *glyphProps;
|
|
|
|
|
|
|
|
|
|
if (!psva || !pcGlyphs) return E_INVALIDARG;
|
|
|
|
|
if (cChars > cMaxGlyphs) return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
charProps = heap_alloc_zero(sizeof(SCRIPT_CHARPROP)*cChars);
|
|
|
|
|
if (!charProps) return E_OUTOFMEMORY;
|
|
|
|
|
glyphProps = heap_alloc_zero(sizeof(SCRIPT_GLYPHPROP)*cMaxGlyphs);
|
2011-12-06 20:54:25 +00:00
|
|
|
|
if (!glyphProps)
|
|
|
|
|
{
|
|
|
|
|
heap_free(charProps);
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
}
|
2011-05-12 18:57:26 +00:00
|
|
|
|
|
|
|
|
|
hr = ScriptShapeOpenType(hdc, psc, psa, scriptInformation[psa->eScript].scriptTag, 0, NULL, NULL, 0, pwcChars, cChars, cMaxGlyphs, pwLogClust, charProps, pwOutGlyphs, glyphProps, pcGlyphs);
|
|
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < *pcGlyphs; i++)
|
|
|
|
|
psva[i] = glyphProps[i].sva;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
heap_free(charProps);
|
|
|
|
|
heap_free(glyphProps);
|
|
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-14 16:38:20 +00:00
|
|
|
|
/***********************************************************************
|
2011-05-12 18:57:32 +00:00
|
|
|
|
* ScriptPlaceOpenType (USP10.@)
|
2006-02-14 16:38:20 +00:00
|
|
|
|
*
|
2007-01-23 10:03:26 +00:00
|
|
|
|
* Produce advance widths for a run.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
2016-04-05 09:39:23 +00:00
|
|
|
|
* psa [I/O] Script analysis.
|
2011-05-12 18:57:32 +00:00
|
|
|
|
* tagScript [I] The OpenType tag for the Script
|
|
|
|
|
* tagLangSys [I] The OpenType tag for the Language
|
|
|
|
|
* rcRangeChars[I] Array of Character counts in each range
|
|
|
|
|
* rpRangeProperties [I] Array of TEXTRANGE_PROPERTIES structures
|
|
|
|
|
* cRanges [I] Count of ranges
|
|
|
|
|
* pwcChars [I] Array of characters specifying the run.
|
|
|
|
|
* pwLogClust [I] Array of logical cluster info
|
|
|
|
|
* pCharProps [I] Array of character property values
|
|
|
|
|
* cChars [I] Number of characters in pwcChars.
|
|
|
|
|
* pwGlyphs [I] Array of glyphs.
|
|
|
|
|
* pGlyphProps [I] Array of attributes for the retrieved glyphs
|
|
|
|
|
* cGlyphs [I] Count of Glyphs
|
2007-01-23 10:03:26 +00:00
|
|
|
|
* piAdvance [O] Array of advance widths.
|
|
|
|
|
* pGoffset [O] Glyph offsets.
|
|
|
|
|
* pABC [O] Combined ABC width.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2006-02-14 16:38:20 +00:00
|
|
|
|
*/
|
2011-05-12 18:57:32 +00:00
|
|
|
|
|
|
|
|
|
HRESULT WINAPI ScriptPlaceOpenType( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa,
|
|
|
|
|
OPENTYPE_TAG tagScript, OPENTYPE_TAG tagLangSys,
|
|
|
|
|
int *rcRangeChars, TEXTRANGE_PROPERTIES **rpRangeProperties,
|
|
|
|
|
int cRanges, const WCHAR *pwcChars, WORD *pwLogClust,
|
|
|
|
|
SCRIPT_CHARPROP *pCharProps, int cChars,
|
|
|
|
|
const WORD *pwGlyphs, const SCRIPT_GLYPHPROP *pGlyphProps,
|
|
|
|
|
int cGlyphs, int *piAdvance,
|
|
|
|
|
GOFFSET *pGoffset, ABC *pABC
|
|
|
|
|
)
|
2006-02-14 16:38:20 +00:00
|
|
|
|
{
|
2006-12-28 15:12:45 +00:00
|
|
|
|
HRESULT hr;
|
2008-11-19 21:28:04 +00:00
|
|
|
|
int i;
|
2014-05-08 15:04:42 +00:00
|
|
|
|
static int once = 0;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
2011-05-12 18:57:32 +00:00
|
|
|
|
TRACE("(%p, %p, %p, %s, %s, %p, %p, %d, %s, %p, %p, %d, %p, %p, %d, %p %p %p)\n",
|
|
|
|
|
hdc, psc, psa,
|
|
|
|
|
debugstr_an((char*)&tagScript,4), debugstr_an((char*)&tagLangSys,4),
|
|
|
|
|
rcRangeChars, rpRangeProperties, cRanges, debugstr_wn(pwcChars, cChars),
|
|
|
|
|
pwLogClust, pCharProps, cChars, pwGlyphs, pGlyphProps, cGlyphs, piAdvance,
|
|
|
|
|
pGoffset, pABC);
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
2011-05-12 18:57:32 +00:00
|
|
|
|
if (!pGlyphProps) return E_INVALIDARG;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2009-09-03 12:50:17 +00:00
|
|
|
|
if (!pGoffset) return E_FAIL;
|
2008-09-12 12:02:12 +00:00
|
|
|
|
|
2011-05-12 18:57:32 +00:00
|
|
|
|
if (cRanges)
|
2014-05-08 15:04:42 +00:00
|
|
|
|
if (!once++) FIXME("Ranges not supported yet\n");
|
2011-05-12 18:57:32 +00:00
|
|
|
|
|
|
|
|
|
((ScriptCache *)*psc)->userScript = tagScript;
|
|
|
|
|
((ScriptCache *)*psc)->userLang = tagLangSys;
|
|
|
|
|
|
2007-12-12 18:11:28 +00:00
|
|
|
|
if (pABC) memset(pABC, 0, sizeof(ABC));
|
2008-10-09 13:17:29 +00:00
|
|
|
|
for (i = 0; i < cGlyphs; i++)
|
2007-12-12 09:44:42 +00:00
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
ABC abc;
|
2016-02-10 10:59:39 +00:00
|
|
|
|
if (pGlyphProps[i].sva.fZeroWidth)
|
|
|
|
|
{
|
|
|
|
|
abc.abcA = abc.abcB = abc.abcC = 0;
|
|
|
|
|
}
|
|
|
|
|
else if (!get_cache_glyph_widths(psc, pwGlyphs[i], &abc))
|
2007-12-12 09:44:42 +00:00
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (!hdc) return E_PENDING;
|
|
|
|
|
if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE) && !psa->fNoGlyphIndex)
|
|
|
|
|
{
|
|
|
|
|
if (!GetCharABCWidthsI(hdc, 0, 1, (WORD *)&pwGlyphs[i], &abc)) return S_FALSE;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
INT width;
|
|
|
|
|
if (!GetCharWidth32W(hdc, pwGlyphs[i], pwGlyphs[i], &width)) return S_FALSE;
|
|
|
|
|
abc.abcB = width;
|
|
|
|
|
abc.abcA = abc.abcC = 0;
|
|
|
|
|
}
|
|
|
|
|
set_cache_glyph_widths(psc, pwGlyphs[i], &abc);
|
2007-12-12 18:11:28 +00:00
|
|
|
|
}
|
|
|
|
|
if (pABC)
|
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
pABC->abcA += abc.abcA;
|
|
|
|
|
pABC->abcB += abc.abcB;
|
|
|
|
|
pABC->abcC += abc.abcC;
|
2007-12-12 09:44:42 +00:00
|
|
|
|
}
|
2007-12-12 18:11:28 +00:00
|
|
|
|
/* FIXME: set to more reasonable values */
|
2009-09-03 12:50:17 +00:00
|
|
|
|
pGoffset[i].du = pGoffset[i].dv = 0;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (piAdvance) piAdvance[i] = abc.abcA + abc.abcB + abc.abcC;
|
2007-12-12 09:44:42 +00:00
|
|
|
|
}
|
2006-04-20 11:50:44 +00:00
|
|
|
|
|
2012-07-16 12:23:49 +00:00
|
|
|
|
SHAPE_ApplyOpenTypePositions(hdc, (ScriptCache *)*psc, psa, pwGlyphs, cGlyphs, piAdvance, pGoffset);
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (pABC) TRACE("Total for run: abcA=%d, abcB=%d, abcC=%d\n", pABC->abcA, pABC->abcB, pABC->abcC);
|
2007-12-09 20:39:19 +00:00
|
|
|
|
return S_OK;
|
2006-02-14 16:38:20 +00:00
|
|
|
|
}
|
2006-02-14 16:38:47 +00:00
|
|
|
|
|
2011-05-12 18:57:32 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptPlace (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Produce advance widths for a run.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
|
* pwGlyphs [I] Array of glyphs.
|
|
|
|
|
* cGlyphs [I] Number of glyphs in pwGlyphs.
|
|
|
|
|
* psva [I] Array of visual attributes.
|
|
|
|
|
* psa [I/O] String analysis.
|
|
|
|
|
* piAdvance [O] Array of advance widths.
|
|
|
|
|
* pGoffset [O] Glyph offsets.
|
|
|
|
|
* pABC [O] Combined ABC width.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs,
|
|
|
|
|
int cGlyphs, const SCRIPT_VISATTR *psva,
|
|
|
|
|
SCRIPT_ANALYSIS *psa, int *piAdvance, GOFFSET *pGoffset, ABC *pABC )
|
|
|
|
|
{
|
|
|
|
|
HRESULT hr;
|
|
|
|
|
SCRIPT_GLYPHPROP *glyphProps;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p, %d, %p, %p, %p, %p, %p)\n", hdc, psc, pwGlyphs, cGlyphs, psva, psa,
|
|
|
|
|
piAdvance, pGoffset, pABC);
|
|
|
|
|
|
|
|
|
|
if (!psva) return E_INVALIDARG;
|
|
|
|
|
if (!pGoffset) return E_FAIL;
|
|
|
|
|
|
|
|
|
|
glyphProps = heap_alloc(sizeof(SCRIPT_GLYPHPROP)*cGlyphs);
|
|
|
|
|
if (!glyphProps) return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < cGlyphs; i++)
|
|
|
|
|
glyphProps[i].sva = psva[i];
|
|
|
|
|
|
|
|
|
|
hr = ScriptPlaceOpenType(hdc, psc, psa, scriptInformation[psa->eScript].scriptTag, 0, NULL, NULL, 0, NULL, NULL, NULL, 0, pwGlyphs, glyphProps, cGlyphs, piAdvance, pGoffset, pABC);
|
|
|
|
|
|
|
|
|
|
heap_free(glyphProps);
|
|
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-14 16:38:47 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetCMap (USP10.@)
|
|
|
|
|
*
|
2007-01-02 15:11:10 +00:00
|
|
|
|
* Retrieve glyph indices.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
|
* pwcInChars [I] Array of Unicode characters.
|
|
|
|
|
* cChars [I] Number of characters in pwcInChars.
|
|
|
|
|
* dwFlags [I] Flags.
|
|
|
|
|
* pwOutGlyphs [O] Buffer to receive the array of glyph indices.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2006-02-14 16:38:47 +00:00
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars,
|
2007-01-02 15:11:10 +00:00
|
|
|
|
int cChars, DWORD dwFlags, WORD *pwOutGlyphs)
|
2006-02-14 16:38:47 +00:00
|
|
|
|
{
|
2006-12-28 15:12:45 +00:00
|
|
|
|
HRESULT hr;
|
2008-11-19 21:28:04 +00:00
|
|
|
|
int i;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
2007-01-02 14:31:34 +00:00
|
|
|
|
TRACE("(%p,%p,%s,%d,0x%x,%p)\n", hdc, psc, debugstr_wn(pwcInChars, cChars),
|
|
|
|
|
cChars, dwFlags, pwOutGlyphs);
|
2006-04-30 13:44:30 +00:00
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-02-22 12:24:52 +00:00
|
|
|
|
|
2010-05-05 16:51:52 +00:00
|
|
|
|
hr = S_OK;
|
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE))
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
2010-05-06 13:28:57 +00:00
|
|
|
|
WCHAR inChar;
|
|
|
|
|
if (dwFlags == SGCM_RTL)
|
|
|
|
|
inChar = mirror_char(pwcInChars[i]);
|
|
|
|
|
else
|
|
|
|
|
inChar = pwcInChars[i];
|
|
|
|
|
if (!(pwOutGlyphs[i] = get_cache_glyph(psc, inChar)))
|
2008-10-09 13:17:29 +00:00
|
|
|
|
{
|
|
|
|
|
WORD glyph;
|
|
|
|
|
if (!hdc) return E_PENDING;
|
2010-05-06 13:28:57 +00:00
|
|
|
|
if (GetGlyphIndicesW(hdc, &inChar, 1, &glyph, GGI_MARK_NONEXISTING_GLYPHS) == GDI_ERROR) return S_FALSE;
|
2010-05-05 16:51:52 +00:00
|
|
|
|
if (glyph == 0xffff)
|
|
|
|
|
{
|
|
|
|
|
hr = S_FALSE;
|
|
|
|
|
glyph = 0x0;
|
|
|
|
|
}
|
2010-05-06 13:28:57 +00:00
|
|
|
|
pwOutGlyphs[i] = set_cache_glyph(psc, inChar, glyph);
|
2008-10-09 13:17:29 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TRACE("no glyph translation\n");
|
2010-05-06 13:28:57 +00:00
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
|
|
|
|
WCHAR inChar;
|
|
|
|
|
if (dwFlags == SGCM_RTL)
|
|
|
|
|
inChar = mirror_char(pwcInChars[i]);
|
|
|
|
|
else
|
|
|
|
|
inChar = pwcInChars[i];
|
|
|
|
|
pwOutGlyphs[i] = inChar;
|
|
|
|
|
}
|
2008-10-09 13:17:29 +00:00
|
|
|
|
}
|
2010-05-05 16:51:52 +00:00
|
|
|
|
return hr;
|
2006-02-14 16:38:47 +00:00
|
|
|
|
}
|
2006-02-21 09:47:39 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptTextOut (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UINT fuOptions,
|
|
|
|
|
const RECT *lprc, const SCRIPT_ANALYSIS *psa, const WCHAR *pwcReserved,
|
2006-12-28 15:12:45 +00:00
|
|
|
|
int iReserved, const WORD *pwGlyphs, int cGlyphs, const int *piAdvance,
|
2006-02-21 09:47:39 +00:00
|
|
|
|
const int *piJustify, const GOFFSET *pGoffset)
|
|
|
|
|
{
|
2007-12-09 20:39:19 +00:00
|
|
|
|
HRESULT hr = S_OK;
|
2013-01-11 11:09:21 +00:00
|
|
|
|
INT i, dir = 1;
|
2012-07-16 12:24:02 +00:00
|
|
|
|
INT *lpDx;
|
2013-01-11 11:09:19 +00:00
|
|
|
|
WORD *reordered_glyphs = (WORD *)pwGlyphs;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
|
2016-04-05 09:39:22 +00:00
|
|
|
|
TRACE("(%p, %p, %d, %d, %08x, %s, %p, %p, %d, %p, %d, %p, %p, %p)\n",
|
|
|
|
|
hdc, psc, x, y, fuOptions, wine_dbgstr_rect(lprc), psa, pwcReserved, iReserved, pwGlyphs, cGlyphs,
|
2006-04-30 13:44:30 +00:00
|
|
|
|
piAdvance, piJustify, pGoffset);
|
|
|
|
|
|
2008-05-01 15:42:03 +00:00
|
|
|
|
if (!hdc || !psc) return E_INVALIDARG;
|
2006-12-28 15:12:45 +00:00
|
|
|
|
if (!piAdvance || !psa || !pwGlyphs) return E_INVALIDARG;
|
2007-12-09 20:39:19 +00:00
|
|
|
|
|
2006-04-30 13:44:30 +00:00
|
|
|
|
fuOptions &= ETO_CLIPPED + ETO_OPAQUE;
|
2010-05-08 03:10:26 +00:00
|
|
|
|
fuOptions |= ETO_IGNORELANGUAGE;
|
2006-04-30 13:44:30 +00:00
|
|
|
|
if (!psa->fNoGlyphIndex) /* Have Glyphs? */
|
2006-10-13 00:19:42 +00:00
|
|
|
|
fuOptions |= ETO_GLYPH_INDEX; /* Say don't do translation to glyph */
|
2006-04-30 13:44:30 +00:00
|
|
|
|
|
2012-07-16 12:24:02 +00:00
|
|
|
|
lpDx = heap_alloc(cGlyphs * sizeof(INT) * 2);
|
2013-01-11 11:09:19 +00:00
|
|
|
|
if (!lpDx) return E_OUTOFMEMORY;
|
2013-01-08 16:05:31 +00:00
|
|
|
|
fuOptions |= ETO_PDY;
|
2012-07-16 12:24:02 +00:00
|
|
|
|
|
2013-01-11 11:09:19 +00:00
|
|
|
|
if (psa->fRTL && psa->fLogicalOrder)
|
|
|
|
|
{
|
|
|
|
|
reordered_glyphs = heap_alloc( cGlyphs * sizeof(WORD) );
|
|
|
|
|
if (!reordered_glyphs)
|
|
|
|
|
{
|
|
|
|
|
heap_free( lpDx );
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < cGlyphs; i++)
|
|
|
|
|
reordered_glyphs[i] = pwGlyphs[cGlyphs - 1 - i];
|
2013-01-11 11:09:21 +00:00
|
|
|
|
dir = -1;
|
2013-01-11 11:09:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-16 12:24:02 +00:00
|
|
|
|
for (i = 0; i < cGlyphs; i++)
|
|
|
|
|
{
|
2013-01-11 11:09:21 +00:00
|
|
|
|
int orig_index = (dir > 0) ? i : cGlyphs - 1 - i;
|
|
|
|
|
lpDx[i * 2] = piAdvance[orig_index];
|
2013-01-08 16:05:31 +00:00
|
|
|
|
lpDx[i * 2 + 1] = 0;
|
|
|
|
|
|
2013-01-11 11:09:20 +00:00
|
|
|
|
if (pGoffset)
|
2012-07-16 12:24:02 +00:00
|
|
|
|
{
|
2013-01-11 11:09:20 +00:00
|
|
|
|
if (i == 0)
|
|
|
|
|
{
|
2013-01-11 11:09:21 +00:00
|
|
|
|
x += pGoffset[orig_index].du * dir;
|
2013-01-14 13:17:15 +00:00
|
|
|
|
y += pGoffset[orig_index].dv;
|
2013-01-11 11:09:20 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-01-11 11:09:21 +00:00
|
|
|
|
lpDx[(i - 1) * 2] += pGoffset[orig_index].du * dir;
|
2013-01-14 13:17:15 +00:00
|
|
|
|
lpDx[(i - 1) * 2 + 1] += pGoffset[orig_index].dv;
|
2013-01-11 11:09:20 +00:00
|
|
|
|
}
|
2013-01-11 11:09:21 +00:00
|
|
|
|
lpDx[i * 2] -= pGoffset[orig_index].du * dir;
|
2013-01-14 13:17:15 +00:00
|
|
|
|
lpDx[i * 2 + 1] -= pGoffset[orig_index].dv;
|
2012-07-16 12:24:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-11 11:09:19 +00:00
|
|
|
|
if (!ExtTextOutW(hdc, x, y, fuOptions, lprc, reordered_glyphs, cGlyphs, lpDx))
|
|
|
|
|
hr = S_FALSE;
|
2006-04-30 13:44:30 +00:00
|
|
|
|
|
2013-01-11 11:09:19 +00:00
|
|
|
|
if (reordered_glyphs != pwGlyphs) heap_free( reordered_glyphs );
|
2012-07-16 12:24:02 +00:00
|
|
|
|
heap_free(lpDx);
|
|
|
|
|
|
2007-12-09 20:39:19 +00:00
|
|
|
|
return hr;
|
2006-02-21 09:47:39 +00:00
|
|
|
|
}
|
2006-07-19 19:45:24 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptCacheGetHeight (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Retrieve the height of the font in the cache.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
|
* height [O] Receives font height.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*/
|
2006-12-23 10:07:55 +00:00
|
|
|
|
HRESULT WINAPI ScriptCacheGetHeight(HDC hdc, SCRIPT_CACHE *psc, LONG *height)
|
2006-07-19 19:45:24 +00:00
|
|
|
|
{
|
2006-12-28 15:12:45 +00:00
|
|
|
|
HRESULT hr;
|
2006-07-19 19:45:24 +00:00
|
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", hdc, psc, height);
|
|
|
|
|
|
2006-12-28 15:12:45 +00:00
|
|
|
|
if (!height) return E_INVALIDARG;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-07-19 19:45:24 +00:00
|
|
|
|
|
2007-01-23 10:03:12 +00:00
|
|
|
|
*height = get_cache_height(psc);
|
2006-07-19 19:45:24 +00:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2006-08-04 12:55:30 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetGlyphABCWidth (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Retrieve the width of a glyph.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* hdc [I] Device context.
|
|
|
|
|
* psc [I/O] Opaque pointer to a script cache.
|
|
|
|
|
* glyph [I] Glyph to retrieve the width for.
|
|
|
|
|
* abc [O] ABC widths of the glyph.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptGetGlyphABCWidth(HDC hdc, SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
|
|
|
|
|
{
|
2008-10-09 13:17:29 +00:00
|
|
|
|
HRESULT hr;
|
2006-08-04 12:55:30 +00:00
|
|
|
|
|
|
|
|
|
TRACE("(%p, %p, 0x%04x, %p)\n", hdc, psc, glyph, abc);
|
|
|
|
|
|
2009-09-03 12:50:17 +00:00
|
|
|
|
if (!abc) return E_INVALIDARG;
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-08-04 12:55:30 +00:00
|
|
|
|
|
2008-10-09 13:17:29 +00:00
|
|
|
|
if (!get_cache_glyph_widths(psc, glyph, abc))
|
|
|
|
|
{
|
|
|
|
|
if (!hdc) return E_PENDING;
|
|
|
|
|
if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE))
|
|
|
|
|
{
|
|
|
|
|
if (!GetCharABCWidthsI(hdc, 0, 1, &glyph, abc)) return S_FALSE;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
INT width;
|
|
|
|
|
if (!GetCharWidth32W(hdc, glyph, glyph, &width)) return S_FALSE;
|
|
|
|
|
abc->abcB = width;
|
|
|
|
|
abc->abcA = abc->abcC = 0;
|
|
|
|
|
}
|
|
|
|
|
set_cache_glyph_widths(psc, glyph, abc);
|
|
|
|
|
}
|
|
|
|
|
return S_OK;
|
2006-08-04 12:55:30 +00:00
|
|
|
|
}
|
2006-09-28 15:00:19 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptLayout (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Map embedding levels to visual and/or logical order.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* runs [I] Size of level array.
|
|
|
|
|
* level [I] Array of embedding levels.
|
|
|
|
|
* vistolog [O] Map of embedding levels from visual to logical order.
|
|
|
|
|
* logtovis [O] Map of embedding levels from logical to visual order.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptLayout(int runs, const BYTE *level, int *vistolog, int *logtovis)
|
|
|
|
|
{
|
2010-04-13 19:49:20 +00:00
|
|
|
|
int* indexs;
|
|
|
|
|
int ich;
|
2006-09-28 15:00:19 +00:00
|
|
|
|
|
2007-01-02 14:31:34 +00:00
|
|
|
|
TRACE("(%d, %p, %p, %p)\n", runs, level, vistolog, logtovis);
|
2006-09-28 15:00:19 +00:00
|
|
|
|
|
|
|
|
|
if (!level || (!vistolog && !logtovis))
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
2010-04-13 19:49:20 +00:00
|
|
|
|
indexs = heap_alloc(sizeof(int) * runs);
|
|
|
|
|
if (!indexs)
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
if (vistolog)
|
2006-09-28 15:00:19 +00:00
|
|
|
|
{
|
2010-04-13 19:49:20 +00:00
|
|
|
|
for( ich = 0; ich < runs; ich++)
|
|
|
|
|
indexs[ich] = ich;
|
|
|
|
|
|
|
|
|
|
ich = 0;
|
|
|
|
|
while (ich < runs)
|
|
|
|
|
ich += BIDI_ReorderV2lLevel(0, indexs+ich, level+ich, runs - ich, FALSE);
|
2016-02-10 10:09:44 +00:00
|
|
|
|
memcpy(vistolog, indexs, runs * sizeof(*vistolog));
|
2010-04-13 19:49:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (logtovis)
|
|
|
|
|
{
|
|
|
|
|
for( ich = 0; ich < runs; ich++)
|
|
|
|
|
indexs[ich] = ich;
|
|
|
|
|
|
|
|
|
|
ich = 0;
|
|
|
|
|
while (ich < runs)
|
|
|
|
|
ich += BIDI_ReorderL2vLevel(0, indexs+ich, level+ich, runs - ich, FALSE);
|
2016-02-10 10:09:44 +00:00
|
|
|
|
memcpy(logtovis, indexs, runs * sizeof(*logtovis));
|
2006-09-28 15:00:19 +00:00
|
|
|
|
}
|
2010-04-13 19:49:20 +00:00
|
|
|
|
heap_free(indexs);
|
|
|
|
|
|
2006-09-28 15:00:19 +00:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2006-10-06 10:43:49 +00:00
|
|
|
|
|
2006-12-24 11:47:15 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringGetLogicalWidths (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Returns logical widths from a string analysis.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* ssa [I] string analysis.
|
|
|
|
|
* piDx [O] logical widths returned.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: a non-zero HRESULT.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptStringGetLogicalWidths(SCRIPT_STRING_ANALYSIS ssa, int *piDx)
|
|
|
|
|
{
|
|
|
|
|
int i, j, next = 0;
|
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("%p, %p\n", ssa, piDx);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return S_FALSE;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
|
2006-12-24 11:47:15 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
{
|
2011-10-06 13:35:59 +00:00
|
|
|
|
int cChar = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
|
2011-10-17 15:40:46 +00:00
|
|
|
|
int direction = 1;
|
|
|
|
|
|
|
|
|
|
if (analysis->pItem[i].a.fRTL && ! analysis->pItem[i].a.fLogicalOrder)
|
|
|
|
|
direction = -1;
|
|
|
|
|
|
2011-10-06 13:35:59 +00:00
|
|
|
|
for (j = 0; j < cChar; j++)
|
2006-12-24 11:47:15 +00:00
|
|
|
|
{
|
2011-10-17 15:40:46 +00:00
|
|
|
|
int k;
|
2011-10-06 13:35:59 +00:00
|
|
|
|
int glyph = analysis->glyphs[i].pwLogClust[j];
|
2011-10-17 15:40:46 +00:00
|
|
|
|
int clust_size = get_cluster_size(analysis->glyphs[i].pwLogClust,
|
|
|
|
|
cChar, j, direction, NULL, NULL);
|
2011-10-17 15:40:53 +00:00
|
|
|
|
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);
|
|
|
|
|
|
2011-10-17 15:40:46 +00:00
|
|
|
|
for (k = 0; k < clust_size; k++)
|
|
|
|
|
{
|
2011-10-17 15:40:53 +00:00
|
|
|
|
piDx[next] = advance / clust_size;
|
2011-10-17 15:40:46 +00:00
|
|
|
|
next++;
|
|
|
|
|
if (k) j++;
|
|
|
|
|
}
|
2006-12-24 11:47:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-06 10:43:49 +00:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringValidate (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Validate a string analysis.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* ssa [I] string analysis.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: S_FALSE if invalid sequences are found
|
|
|
|
|
* or a non-zero HRESULT if it fails.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptStringValidate(SCRIPT_STRING_ANALYSIS ssa)
|
|
|
|
|
{
|
2007-01-02 14:26:32 +00:00
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return E_INVALIDARG;
|
|
|
|
|
return (analysis->invalid) ? S_FALSE : S_OK;
|
2006-10-06 10:43:49 +00:00
|
|
|
|
}
|
2006-12-23 10:07:55 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptString_pSize (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Retrieve width and height of an analysed string.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* ssa [I] string analysis.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: Pointer to a SIZE structure.
|
|
|
|
|
* Failure: NULL
|
|
|
|
|
*/
|
|
|
|
|
const SIZE * WINAPI ScriptString_pSize(SCRIPT_STRING_ANALYSIS ssa)
|
|
|
|
|
{
|
2008-11-19 21:28:04 +00:00
|
|
|
|
int i, j;
|
2006-12-23 10:07:55 +00:00
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return NULL;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_GLYPHS)) return NULL;
|
2006-12-23 10:07:55 +00:00
|
|
|
|
|
|
|
|
|
if (!analysis->sz)
|
|
|
|
|
{
|
2007-12-10 22:53:07 +00:00
|
|
|
|
if (!(analysis->sz = heap_alloc(sizeof(SIZE)))) return NULL;
|
2011-10-10 19:59:36 +00:00
|
|
|
|
analysis->sz->cy = analysis->glyphs[0].sc->tm.tmHeight;
|
2006-12-23 10:07:55 +00:00
|
|
|
|
|
|
|
|
|
analysis->sz->cx = 0;
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
2011-10-10 19:59:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (analysis->glyphs[i].sc->tm.tmHeight > analysis->sz->cy)
|
|
|
|
|
analysis->sz->cy = analysis->glyphs[i].sc->tm.tmHeight;
|
2006-12-23 10:07:55 +00:00
|
|
|
|
for (j = 0; j < analysis->glyphs[i].numGlyphs; j++)
|
|
|
|
|
analysis->sz->cx += analysis->glyphs[i].piAdvance[j];
|
2011-10-10 19:59:36 +00:00
|
|
|
|
}
|
2006-12-23 10:07:55 +00:00
|
|
|
|
}
|
|
|
|
|
return analysis->sz;
|
|
|
|
|
}
|
2006-12-23 16:19:31 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptString_pLogAttr (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Retrieve logical attributes of an analysed string.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* ssa [I] string analysis.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: Pointer to an array of SCRIPT_LOGATTR structures.
|
|
|
|
|
* Failure: NULL
|
|
|
|
|
*/
|
|
|
|
|
const SCRIPT_LOGATTR * WINAPI ScriptString_pLogAttr(SCRIPT_STRING_ANALYSIS ssa)
|
|
|
|
|
{
|
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return NULL;
|
2011-09-08 17:50:03 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_BREAK)) return NULL;
|
2006-12-23 16:19:31 +00:00
|
|
|
|
return analysis->logattrs;
|
|
|
|
|
}
|
2007-01-03 11:12:29 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptString_pcOutChars (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Retrieve the length of a string after clipping.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* ssa [I] String analysis.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: Pointer to the length.
|
|
|
|
|
* Failure: NULL
|
|
|
|
|
*/
|
|
|
|
|
const int * WINAPI ScriptString_pcOutChars(SCRIPT_STRING_ANALYSIS ssa)
|
|
|
|
|
{
|
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return NULL;
|
|
|
|
|
return &analysis->clip_len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringGetOrder (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Retrieve a glyph order map.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* ssa [I] String analysis.
|
|
|
|
|
* order [I/O] Array of glyph positions.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: a non-zero HRESULT.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptStringGetOrder(SCRIPT_STRING_ANALYSIS ssa, UINT *order)
|
|
|
|
|
{
|
2008-11-19 21:28:04 +00:00
|
|
|
|
int i, j;
|
|
|
|
|
unsigned int k;
|
2007-01-03 11:12:29 +00:00
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return S_FALSE;
|
2011-09-08 17:50:10 +00:00
|
|
|
|
if (!(analysis->dwFlags & SSA_GLYPHS)) return S_FALSE;
|
2007-01-03 11:12:29 +00:00
|
|
|
|
|
|
|
|
|
/* FIXME: handle RTL scripts */
|
|
|
|
|
for (i = 0, k = 0; i < analysis->numItems; i++)
|
|
|
|
|
for (j = 0; j < analysis->glyphs[i].numGlyphs; j++, k++)
|
|
|
|
|
order[k] = k;
|
|
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2007-02-18 18:38:07 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetLogicalWidths (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Convert advance widths to logical widths.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* sa [I] Script analysis.
|
|
|
|
|
* nbchars [I] Number of characters.
|
|
|
|
|
* nbglyphs [I] Number of glyphs.
|
|
|
|
|
* glyph_width [I] Array of glyph widths.
|
|
|
|
|
* log_clust [I] Array of logical clusters.
|
|
|
|
|
* sva [I] Visual attributes.
|
|
|
|
|
* widths [O] Array of logical widths.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: a non-zero HRESULT.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptGetLogicalWidths(const SCRIPT_ANALYSIS *sa, int nbchars, int nbglyphs,
|
|
|
|
|
const int *glyph_width, const WORD *log_clust,
|
|
|
|
|
const SCRIPT_VISATTR *sva, int *widths)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p, %d, %d, %p, %p, %p, %p)\n",
|
|
|
|
|
sa, nbchars, nbglyphs, glyph_width, log_clust, sva, widths);
|
|
|
|
|
|
|
|
|
|
/* FIXME */
|
|
|
|
|
for (i = 0; i < nbchars; i++) widths[i] = glyph_width[i];
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2009-11-21 12:07:36 +00:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptApplyLogicalWidth (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
* Generate glyph advance widths.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* dx [I] Array of logical advance widths.
|
|
|
|
|
* num_chars [I] Number of characters.
|
|
|
|
|
* num_glyphs [I] Number of glyphs.
|
|
|
|
|
* log_clust [I] Array of logical clusters.
|
|
|
|
|
* sva [I] Visual attributes.
|
|
|
|
|
* advance [I] Array of glyph advance widths.
|
|
|
|
|
* sa [I] Script analysis.
|
|
|
|
|
* abc [I/O] Summed ABC widths.
|
|
|
|
|
* justify [O] Array of glyph advance widths.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: a non-zero HRESULT.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptApplyLogicalWidth(const int *dx, int num_chars, int num_glyphs,
|
|
|
|
|
const WORD *log_clust, const SCRIPT_VISATTR *sva,
|
|
|
|
|
const int *advance, const SCRIPT_ANALYSIS *sa,
|
|
|
|
|
ABC *abc, int *justify)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
FIXME("(%p, %d, %d, %p, %p, %p, %p, %p, %p)\n",
|
|
|
|
|
dx, num_chars, num_glyphs, log_clust, sva, advance, sa, abc, justify);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < num_chars; i++) justify[i] = advance[i];
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2009-11-21 12:08:08 +00:00
|
|
|
|
|
|
|
|
|
HRESULT WINAPI ScriptJustify(const SCRIPT_VISATTR *sva, const int *advance,
|
|
|
|
|
int num_glyphs, int dx, int min_kashida, int *justify)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
FIXME("(%p, %p, %d, %d, %d, %p)\n", sva, advance, num_glyphs, dx, min_kashida, justify);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < num_glyphs; i++) justify[i] = advance[i];
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2011-12-22 16:46:34 +00:00
|
|
|
|
|
|
|
|
|
HRESULT WINAPI ScriptGetFontScriptTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa, int cMaxTags, OPENTYPE_TAG *pScriptTags, int *pcTags)
|
|
|
|
|
{
|
|
|
|
|
HRESULT hr;
|
|
|
|
|
if (!pScriptTags || !pcTags || cMaxTags == 0) return E_INVALIDARG;
|
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
|
|
|
|
|
|
|
|
|
return SHAPE_GetFontScriptTags(hdc, (ScriptCache *)*psc, psa, cMaxTags, pScriptTags, pcTags);
|
|
|
|
|
}
|
2012-01-03 12:51:07 +00:00
|
|
|
|
|
|
|
|
|
HRESULT WINAPI ScriptGetFontLanguageTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript, int cMaxTags, OPENTYPE_TAG *pLangSysTags, int *pcTags)
|
|
|
|
|
{
|
|
|
|
|
HRESULT hr;
|
|
|
|
|
if (!pLangSysTags || !pcTags || cMaxTags == 0) return E_INVALIDARG;
|
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
|
|
|
|
|
|
|
|
|
return SHAPE_GetFontLanguageTags(hdc, (ScriptCache *)*psc, psa, tagScript, cMaxTags, pLangSysTags, pcTags);
|
|
|
|
|
}
|
2012-01-03 12:51:23 +00:00
|
|
|
|
|
|
|
|
|
HRESULT WINAPI ScriptGetFontFeatureTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANALYSIS *psa, OPENTYPE_TAG tagScript, OPENTYPE_TAG tagLangSys, int cMaxTags, OPENTYPE_TAG *pFeatureTags, int *pcTags)
|
|
|
|
|
{
|
|
|
|
|
HRESULT hr;
|
|
|
|
|
if (!pFeatureTags || !pcTags || cMaxTags == 0) return E_INVALIDARG;
|
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
|
|
|
|
|
|
|
|
|
return SHAPE_GetFontFeatureTags(hdc, (ScriptCache *)*psc, psa, tagScript, tagLangSys, cMaxTags, pFeatureTags, pcTags);
|
|
|
|
|
}
|