2005-07-27 13:02:52 +02:00
|
|
|
|
/*
|
|
|
|
|
* Implementation of Uniscribe Script Processor (usp10.dll)
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2005 Steven Edwards for CodeWeavers
|
2006-12-23 15:19:30 +01:00
|
|
|
|
* Copyright 2006 Hans Leidekker
|
2010-04-13 21:49:07 +02:00
|
|
|
|
* Copyright 2010 CodeWeavers, Aric Stewart
|
2005-07-27 13:02:52 +02: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 14:49:52 +02:00
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-07-27 13:02:52 +02: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>
|
|
|
|
|
|
2005-08-10 11:51:40 +02:00
|
|
|
|
#include "windef.h"
|
|
|
|
|
#include "winbase.h"
|
2005-11-28 11:52:55 +01:00
|
|
|
|
#include "wingdi.h"
|
2005-08-10 11:51:40 +02:00
|
|
|
|
#include "winuser.h"
|
2006-09-07 08:42:56 +02:00
|
|
|
|
#include "winnls.h"
|
2005-08-10 11:51:40 +02:00
|
|
|
|
#include "usp10.h"
|
2005-07-27 13:02:52 +02:00
|
|
|
|
|
2010-04-13 21:49:07 +02:00
|
|
|
|
#include "usp10_internal.h"
|
|
|
|
|
|
2005-07-27 13:02:52 +02:00
|
|
|
|
#include "wine/debug.h"
|
2006-12-23 11:50:47 +01:00
|
|
|
|
#include "wine/unicode.h"
|
2005-07-27 13:02:52 +02:00
|
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
|
|
|
|
|
|
2010-08-12 21:57:06 +02:00
|
|
|
|
typedef struct _scriptRange
|
|
|
|
|
{
|
|
|
|
|
WORD script;
|
|
|
|
|
WORD rangeFirst;
|
|
|
|
|
WORD rangeLast;
|
|
|
|
|
WORD numericScript;
|
|
|
|
|
WORD punctScript;
|
|
|
|
|
} scriptRange;
|
|
|
|
|
|
|
|
|
|
static const scriptRange scriptRanges[] = {
|
|
|
|
|
/* Basic Latin: U+0000–U+007A */
|
|
|
|
|
/* 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 */
|
|
|
|
|
{ Script_Latin, 0x00, 0x2af , Script_Numeric, Script_Punctuation},
|
2010-08-23 20:58:00 +02:00
|
|
|
|
/* Greek: U+0370–U+03FF */
|
|
|
|
|
{ Script_Greek, 0x370, 0x3ff, 0, 0},
|
2010-08-23 20:58:07 +02:00
|
|
|
|
/* Cyrillic: U+0400–U+04FF */
|
|
|
|
|
/* Cyrillic Supplement: U+0500–U+052F */
|
|
|
|
|
{ Script_Cyrillic, 0x400, 0x52f, 0, 0},
|
2010-08-23 20:58:13 +02:00
|
|
|
|
/* Armenian: U+0530–U+058F */
|
|
|
|
|
{ Script_Armenian, 0x530, 0x58f, 0, 0},
|
2010-08-12 21:57:06 +02: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 20:57:52 +02:00
|
|
|
|
/* Thaana: U+0780–U+07BF */
|
|
|
|
|
{ Script_Thaana, 0x780, 0x7bf, 0, 0},
|
2010-08-24 18:55:11 +02:00
|
|
|
|
/* Sinhala: U+0D80–U+0DFF */
|
|
|
|
|
{ Script_Sinhala, 0xd80, 0xdff, 0, 0},
|
2010-08-24 18:55:33 +02:00
|
|
|
|
/* Thai: U+0E00–U+0E7F */
|
|
|
|
|
{ Script_Thai, 0xe00, 0xe7f, Script_Thai_Numeric, 0},
|
2010-08-24 18:55:41 +02:00
|
|
|
|
/* Lao: U+0E80–U+0EFF */
|
|
|
|
|
{ Script_Lao, 0xe80, 0xeff, Script_Lao_Numeric, 0},
|
2010-08-24 18:55:18 +02:00
|
|
|
|
/* Tibetan: U+0F00–U+0FFF */
|
|
|
|
|
{ Script_Tibetan, 0xf00, 0xfff, Script_Tibetan_Numeric, 0},
|
2010-08-23 20:58:21 +02:00
|
|
|
|
/* Georgian: U+10A0–U+10FF */
|
|
|
|
|
{ Script_Georgian, 0x10a0, 0x10ff, 0, 0},
|
2010-08-12 21:57:06 +02:00
|
|
|
|
/* Phonetic Extensions: U+1D00–U+1DBF */
|
|
|
|
|
{ Script_Latin, 0x1d00, 0x1dbf, 0, 0},
|
|
|
|
|
/* Latin Extended Additional: U+1E00–U+1EFF */
|
|
|
|
|
{ Script_Latin, 0x1e00, 0x1eff, 0, 0},
|
2010-08-23 20:58:00 +02:00
|
|
|
|
/* Greek Extended: U+1F00–U+1FFF */
|
|
|
|
|
{ Script_Greek, 0x1f00, 0x1fff, 0, 0},
|
2010-08-12 21:57:06 +02:00
|
|
|
|
/* Latin Extended-C: U+2C60–U+2C7F */
|
|
|
|
|
{ Script_Latin, 0x2c60, 0x2c7f, 0, 0},
|
2010-08-23 20:58:21 +02:00
|
|
|
|
/* Georgian: U+2D00–U+2D2F */
|
|
|
|
|
{ Script_Georgian, 0x2d00, 0x2d2f, 0, 0},
|
2010-08-23 20:58:07 +02:00
|
|
|
|
/* Cyrillic Extended-A: U+2DE0–U+2DFF */
|
|
|
|
|
{ Script_Cyrillic, 0x2de0, 0x2dff, 0, 0},
|
|
|
|
|
/* Cyrillic Extended-B: U+A640–U+A69F */
|
|
|
|
|
{ Script_Cyrillic, 0xa640, 0xa69f, 0, 0},
|
2010-08-12 21:57:06 +02:00
|
|
|
|
/* Modifier Tone Letters: U+A700–U+A71F */
|
|
|
|
|
/* Latin Extended-D: U+A720–U+A7FF */
|
|
|
|
|
{ Script_Latin, 0xa700, 0xa7ff, 0, 0},
|
2010-08-24 18:55:27 +02:00
|
|
|
|
/* Phags-pa: U+A840–U+A87F */
|
|
|
|
|
{ Script_Phags_pa, 0xa840, 0xa87f, 0, 0},
|
2010-08-12 21:57:06 +02:00
|
|
|
|
/* Latin Ligatures: U+FB00–U+FB06 */
|
|
|
|
|
{ Script_Latin, 0xfb00, 0xfb06, 0, 0},
|
2010-08-23 20:58:13 +02:00
|
|
|
|
/* Armenian ligatures U+FB13..U+FB17 */
|
|
|
|
|
{ Script_Armenian, 0xfb13, 0xfb17, 0, 0},
|
2010-08-12 21:57:06 +02: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},
|
|
|
|
|
/* Arabic Presentation Forms-B: U+FE70–U+FEFF*/
|
|
|
|
|
{ Script_Arabic, 0xfe70, 0xfeff, 0, 0},
|
|
|
|
|
/* END */
|
|
|
|
|
{ SCRIPT_UNDEFINED, 0, 0, 0}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct _scriptData
|
|
|
|
|
{
|
|
|
|
|
SCRIPT_ANALYSIS a;
|
|
|
|
|
SCRIPT_PROPERTIES props;
|
|
|
|
|
} scriptData;
|
|
|
|
|
|
|
|
|
|
/* the must be in order so that the index matches the Script value */
|
|
|
|
|
static const scriptData scriptInformation[] = {
|
|
|
|
|
{{SCRIPT_UNDEFINED, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
|
|
|
|
{{Script_Latin, 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}},
|
|
|
|
|
{{Script_CR, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
|
|
|
|
{{Script_Numeric, 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, 0, 0, 0}},
|
|
|
|
|
{{Script_Control, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ENGLISH, 0, 1, 0, 0, ANSI_CHARSET, 1, 0, 0, 0, 0, 0, 1, 0, 0}},
|
|
|
|
|
{{Script_Punctuation, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_NEUTRAL, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
|
|
|
|
{{Script_Arabic, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ARABIC, 0, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 1, 1, 0}},
|
|
|
|
|
{{Script_Arabic_Numeric, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ARABIC, 1, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0}},
|
|
|
|
|
{{Script_Hebrew, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_HEBREW, 0, 1, 0, 1, HEBREW_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
|
|
|
|
{{Script_Syriac, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_SYRIAC, 0, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 1, 0, 0, 1, 0}},
|
|
|
|
|
{{Script_Persian, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_PERSIAN, 1, 1, 0, 0, ARABIC_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-23 20:57:52 +02:00
|
|
|
|
{{Script_Thaana, 1, 1, 0, 0, 0, 0, { 1,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_DIVEHI, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-23 20:58:00 +02:00
|
|
|
|
{{Script_Greek, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_GREEK, 0, 0, 0, 0, GREEK_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-23 20:58:07 +02:00
|
|
|
|
{{Script_Cyrillic, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_RUSSIAN, 0, 0, 0, 0, RUSSIAN_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-23 20:58:13 +02:00
|
|
|
|
{{Script_Armenian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_ARMENIAN, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0}},
|
2010-08-23 20:58:21 +02:00
|
|
|
|
{{Script_Georgian, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_GEORGIAN, 0, 0, 0, 0, ANSI_CHARSET, 0, 0, 0, 0, 0, 0, 1, 0, 0}},
|
2010-08-24 18:55:11 +02:00
|
|
|
|
{{Script_Sinhala, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_SINHALESE, 0, 1, 0, 1, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-24 18:55:18 +02:00
|
|
|
|
{{Script_Tibetan, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_TIBETAN, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 0}},
|
|
|
|
|
{{Script_Tibetan_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_TIBETAN, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-24 18:55:27 +02:00
|
|
|
|
{{Script_Phags_pa, 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}},
|
2010-08-24 18:55:33 +02:00
|
|
|
|
{{Script_Thai, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_THAI, 0, 1, 1, 1, THAI_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 1}},
|
|
|
|
|
{{Script_Thai_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_THAI, 1, 1, 0, 0, THAI_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-24 18:55:41 +02:00
|
|
|
|
{{Script_Lao, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_LAO, 0, 1, 1, 1, DEFAULT_CHARSET, 0, 0, 1, 0, 1, 0, 0, 0, 0}},
|
|
|
|
|
{{Script_Lao_Numeric, 0, 0, 0, 0, 0, 0, { 0,0,0,0,0,0,0,0,0,0,0}},
|
|
|
|
|
{LANG_LAO, 1, 1, 0, 0, DEFAULT_CHARSET, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
|
2010-08-12 21:57:06 +02:00
|
|
|
|
};
|
|
|
|
|
|
2006-12-23 15:19:30 +01:00
|
|
|
|
static const SCRIPT_PROPERTIES *script_props[] =
|
|
|
|
|
{
|
2010-08-12 21:57:29 +02: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 20:58:00 +02:00
|
|
|
|
&scriptInformation[10].props, &scriptInformation[11].props,
|
2010-08-23 20:58:13 +02:00
|
|
|
|
&scriptInformation[12].props, &scriptInformation[13].props,
|
2010-08-24 18:55:11 +02:00
|
|
|
|
&scriptInformation[14].props, &scriptInformation[15].props,
|
2010-08-24 18:55:18 +02:00
|
|
|
|
&scriptInformation[16].props, &scriptInformation[17].props,
|
2010-08-24 18:55:33 +02:00
|
|
|
|
&scriptInformation[18].props, &scriptInformation[19].props,
|
2010-08-24 18:55:41 +02:00
|
|
|
|
&scriptInformation[20].props, &scriptInformation[21].props,
|
|
|
|
|
&scriptInformation[22].props, &scriptInformation[23].props
|
2006-12-23 15:19:30 +01:00
|
|
|
|
};
|
2006-02-16 12:06:18 +01:00
|
|
|
|
|
2006-12-16 03:28:07 +01:00
|
|
|
|
typedef struct {
|
|
|
|
|
int numGlyphs;
|
|
|
|
|
WORD* glyphs;
|
|
|
|
|
WORD* pwLogClust;
|
|
|
|
|
int* piAdvance;
|
|
|
|
|
SCRIPT_VISATTR* psva;
|
|
|
|
|
GOFFSET* pGoffset;
|
|
|
|
|
ABC* abc;
|
|
|
|
|
} StringGlyphs;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2008-10-09 15:17:29 +02:00
|
|
|
|
HDC hdc;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
BOOL invalid;
|
2007-01-03 12:12:29 +01:00
|
|
|
|
int clip_len;
|
2007-01-03 12:12:03 +01:00
|
|
|
|
ScriptCache *sc;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
int cItems;
|
|
|
|
|
int cMaxGlyphs;
|
|
|
|
|
SCRIPT_ITEM* pItem;
|
|
|
|
|
int numItems;
|
|
|
|
|
StringGlyphs* glyphs;
|
2006-12-23 17:19:31 +01:00
|
|
|
|
SCRIPT_LOGATTR* logattrs;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
SIZE* sz;
|
|
|
|
|
} StringAnalysis;
|
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
static inline void *heap_alloc(SIZE_T size)
|
2007-01-03 12:12:17 +01:00
|
|
|
|
{
|
|
|
|
|
return HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
static inline void *heap_alloc_zero(SIZE_T size)
|
2007-01-03 12:12:17 +01:00
|
|
|
|
{
|
|
|
|
|
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
|
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
static inline void *heap_realloc_zero(LPVOID mem, SIZE_T size)
|
2007-01-03 12:12:17 +01:00
|
|
|
|
{
|
|
|
|
|
return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size);
|
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
static inline BOOL heap_free(LPVOID mem)
|
2007-01-03 12:12:17 +01:00
|
|
|
|
{
|
2007-12-10 23:53:07 +01:00
|
|
|
|
return HeapFree(GetProcessHeap(), 0, mem);
|
2007-01-03 12:12:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline WCHAR get_cache_default_char(SCRIPT_CACHE *psc)
|
2007-01-23 11:03:12 +01:00
|
|
|
|
{
|
2007-12-12 19:11:28 +01:00
|
|
|
|
return ((ScriptCache *)*psc)->tm.tmDefaultChar;
|
2007-01-23 11:03:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline LONG get_cache_height(SCRIPT_CACHE *psc)
|
2007-01-23 11:03:12 +01:00
|
|
|
|
{
|
2007-12-12 19:11:28 +01:00
|
|
|
|
return ((ScriptCache *)*psc)->tm.tmHeight;
|
2007-01-23 11:03:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline BYTE get_cache_pitch_family(SCRIPT_CACHE *psc)
|
2007-01-23 11:03:12 +01:00
|
|
|
|
{
|
2007-12-12 19:11:28 +01:00
|
|
|
|
return ((ScriptCache *)*psc)->tm.tmPitchAndFamily;
|
|
|
|
|
}
|
2007-01-23 11:03:12 +01:00
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline WORD get_cache_glyph(SCRIPT_CACHE *psc, WCHAR c)
|
2007-12-12 19:11:28 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02:00
|
|
|
|
WORD *block = ((ScriptCache *)*psc)->glyphs[c >> GLYPH_BLOCK_SHIFT];
|
|
|
|
|
|
|
|
|
|
if (!block) return 0;
|
|
|
|
|
return block[c & GLYPH_BLOCK_MASK];
|
2007-01-23 11:03:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline WORD set_cache_glyph(SCRIPT_CACHE *psc, WCHAR c, WORD glyph)
|
2006-12-28 16:12:45 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02:00
|
|
|
|
WORD **block = &((ScriptCache *)*psc)->glyphs[c >> GLYPH_BLOCK_SHIFT];
|
2007-01-23 11:03:12 +01:00
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if (!*block && !(*block = heap_alloc_zero(sizeof(WORD) * GLYPH_BLOCK_SIZE))) return 0;
|
|
|
|
|
return ((*block)[c & GLYPH_BLOCK_MASK] = glyph);
|
2006-12-28 16:12:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline BOOL get_cache_glyph_widths(SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
|
2007-12-09 21:39:19 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static const ABC nil;
|
|
|
|
|
ABC *block = ((ScriptCache *)*psc)->widths[glyph >> GLYPH_BLOCK_SHIFT];
|
2007-12-09 21:39:19 +01:00
|
|
|
|
|
2008-10-09 15:17:29 +02: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 21:39:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
static inline BOOL set_cache_glyph_widths(SCRIPT_CACHE *psc, WORD glyph, ABC *abc)
|
2007-12-09 21:39:19 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02: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;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
if (!GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(LOGFONTW), &sc->lf))
|
|
|
|
|
{
|
|
|
|
|
heap_free(sc);
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
|
|
|
|
*psc = sc;
|
|
|
|
|
TRACE("<- %p\n", sc);
|
|
|
|
|
return S_OK;
|
2007-12-09 21:39:19 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-06 15:28:57 +02:00
|
|
|
|
static WCHAR mirror_char( WCHAR ch )
|
|
|
|
|
{
|
|
|
|
|
extern const WCHAR wine_mirror_map[];
|
|
|
|
|
return ch + wine_mirror_map[wine_mirror_map[ch >> 8] + (ch & 0xff)];
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-12 21:57:06 +02:00
|
|
|
|
static WORD get_char_script( WCHAR ch)
|
|
|
|
|
{
|
|
|
|
|
WORD type = 0;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (ch == 0xc || ch == 0x20 || ch == 0x202f)
|
|
|
|
|
return Script_CR;
|
|
|
|
|
|
|
|
|
|
GetStringTypeW(CT_CTYPE1, &ch, 1, &type);
|
|
|
|
|
|
|
|
|
|
if (type == 0)
|
|
|
|
|
return SCRIPT_UNDEFINED;
|
|
|
|
|
|
|
|
|
|
if (type & C1_CNTRL)
|
|
|
|
|
return Script_Control;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2006-05-12 00:34:55 +02:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* DllMain
|
|
|
|
|
*
|
|
|
|
|
*/
|
2005-07-27 13:02:52 +02:00
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
|
|
|
|
|
{
|
2007-01-03 12:12:43 +01:00
|
|
|
|
switch(fdwReason)
|
|
|
|
|
{
|
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
|
DisableThreadLibraryCalls(hInstDLL);
|
|
|
|
|
break;
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
|
|
|
break;
|
2005-07-27 13:02:52 +02:00
|
|
|
|
}
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-09 17:16:57 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptFreeCache (USP10.@)
|
|
|
|
|
*
|
2007-01-02 16:11:10 +01:00
|
|
|
|
* Free a script cache.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* psc [I/O] Script cache.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2006-01-09 17:16:57 +01:00
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptFreeCache(SCRIPT_CACHE *psc)
|
|
|
|
|
{
|
2006-02-20 10:19:32 +01:00
|
|
|
|
TRACE("%p\n", psc);
|
2006-01-09 17:16:57 +01:00
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if (psc && *psc)
|
2007-01-02 16:11:10 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02:00
|
|
|
|
unsigned int i;
|
|
|
|
|
for (i = 0; i < GLYPH_MAX / GLYPH_BLOCK_SIZE; i++)
|
|
|
|
|
{
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->glyphs[i]);
|
|
|
|
|
heap_free(((ScriptCache *)*psc)->widths[i]);
|
|
|
|
|
}
|
2010-05-19 16:16:45 +02:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->GSUB_Table);
|
2010-08-12 21:58:14 +02:00
|
|
|
|
heap_free(((ScriptCache *)*psc)->features);
|
2008-10-09 15:17:29 +02:00
|
|
|
|
heap_free(*psc);
|
|
|
|
|
*psc = NULL;
|
2006-02-20 10:19:32 +01:00
|
|
|
|
}
|
2007-01-02 16:11:10 +01:00
|
|
|
|
return S_OK;
|
2006-01-09 17:16:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetProperties (USP10.@)
|
|
|
|
|
*
|
2006-12-23 15:19:30 +01: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 20:14:04 +01:00
|
|
|
|
*/
|
2006-12-23 15:19:30 +01:00
|
|
|
|
HRESULT WINAPI ScriptGetProperties(const SCRIPT_PROPERTIES ***props, int *num)
|
2005-07-27 13:02:52 +02:00
|
|
|
|
{
|
2006-12-23 15:19:30 +01:00
|
|
|
|
TRACE("(%p,%p)\n", props, num);
|
2006-01-09 17:16:57 +01:00
|
|
|
|
|
2006-12-23 15:19:30 +01:00
|
|
|
|
if (!props && !num) return E_INVALIDARG;
|
2006-05-16 21:12:16 +02:00
|
|
|
|
|
2006-12-23 15:19:30 +01:00
|
|
|
|
if (num) *num = sizeof(script_props)/sizeof(script_props[0]);
|
|
|
|
|
if (props) *props = script_props;
|
|
|
|
|
|
|
|
|
|
return S_OK;
|
2005-07-27 13:02:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetFontProperties (USP10.@)
|
|
|
|
|
*
|
2007-01-02 16:11:10 +01: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 20:14:04 +01:00
|
|
|
|
*/
|
2005-08-01 11:18:53 +02:00
|
|
|
|
HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp)
|
|
|
|
|
{
|
2006-12-28 16:12:45 +01:00
|
|
|
|
HRESULT hr;
|
2006-04-13 10:38:31 +02:00
|
|
|
|
|
2006-04-20 13:50:44 +02:00
|
|
|
|
TRACE("%p,%p,%p\n", hdc, psc, sfp);
|
2006-04-21 08:00:14 +02:00
|
|
|
|
|
2006-12-28 16:12:45 +01:00
|
|
|
|
if (!sfp) return E_INVALIDARG;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
2006-04-13 10:38:31 +02:00
|
|
|
|
if (sfp->cBytes != sizeof(SCRIPT_FONTPROPERTIES))
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
2005-08-01 11:18:53 +02:00
|
|
|
|
/* return something sensible? */
|
2006-12-28 16:12:45 +01:00
|
|
|
|
sfp->wgBlank = 0;
|
2007-01-23 11:03:12 +01:00
|
|
|
|
sfp->wgDefault = get_cache_default_char(psc);
|
2006-12-28 16:12:45 +01:00
|
|
|
|
sfp->wgInvalid = 0;
|
|
|
|
|
sfp->wgKashida = 0xffff;
|
2006-04-21 08:00:14 +02:00
|
|
|
|
sfp->iKashidaWidth = 0;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
|
|
|
|
return S_OK;
|
2005-08-01 11:18:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptRecordDigitSubstitution (USP10.@)
|
|
|
|
|
*
|
2006-09-07 08:42:56 +02: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 20:14:04 +01:00
|
|
|
|
*/
|
2006-09-07 08:42:56 +02:00
|
|
|
|
HRESULT WINAPI ScriptRecordDigitSubstitution(LCID locale, SCRIPT_DIGITSUBSTITUTE *sds)
|
2005-07-27 13:02:52 +02:00
|
|
|
|
{
|
2006-09-07 08:42:56 +02:00
|
|
|
|
DWORD plgid, sub;
|
|
|
|
|
|
2006-10-05 00:58:37 +02:00
|
|
|
|
TRACE("0x%x, %p\n", locale, sds);
|
2006-09-07 08:42:56 +02: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 12:12:43 +01:00
|
|
|
|
|
2006-09-07 08:42:56 +02:00
|
|
|
|
locale = ConvertDefaultLocale(locale);
|
|
|
|
|
|
|
|
|
|
if (!IsValidLocale(locale, LCID_INSTALLED))
|
|
|
|
|
return E_INVALIDARG;
|
2007-01-03 12:12:43 +01:00
|
|
|
|
|
2006-09-07 08:42:56 +02: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 13:02:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptApplyDigitSubstitution (USP10.@)
|
|
|
|
|
*
|
2006-09-07 08:42:56 +02: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 20:14:04 +01:00
|
|
|
|
*/
|
2006-09-07 08:42:56 +02:00
|
|
|
|
HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE *sds,
|
|
|
|
|
SCRIPT_CONTROL *sc, SCRIPT_STATE *ss)
|
2005-07-27 13:02:52 +02:00
|
|
|
|
{
|
2006-09-07 08:42:56 +02: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 13:02:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptItemize (USP10.@)
|
|
|
|
|
*
|
2007-01-03 12:12:43 +01:00
|
|
|
|
* 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.
|
2005-11-23 20:14:04 +01:00
|
|
|
|
*/
|
2007-01-03 12:12:43 +01:00
|
|
|
|
HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
|
|
|
|
|
const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
|
2005-07-27 13:02:52 +02:00
|
|
|
|
SCRIPT_ITEM *pItems, int *pcItems)
|
|
|
|
|
{
|
2006-02-18 16:00:29 +01:00
|
|
|
|
|
2006-08-08 10:57:37 +02:00
|
|
|
|
#define Numeric_space 0x0020
|
|
|
|
|
|
2010-09-09 18:47:04 +02:00
|
|
|
|
int cnt = 0, index = 0, str = 0;
|
2006-08-08 10:57:37 +02:00
|
|
|
|
int New_Script = SCRIPT_UNDEFINED;
|
2010-04-13 21:49:07 +02:00
|
|
|
|
WORD *levels = NULL;
|
2010-09-09 18:47:04 +02:00
|
|
|
|
WORD *strength = NULL;
|
2010-04-29 14:32:03 +02:00
|
|
|
|
WORD baselevel = 0;
|
2006-08-08 10:57:37 +02:00
|
|
|
|
|
|
|
|
|
TRACE("%s,%d,%d,%p,%p,%p,%p\n", debugstr_wn(pwcInChars, cInChars), cInChars, cMaxItems,
|
2005-07-27 13:02:52 +02:00
|
|
|
|
psControl, psState, pItems, pcItems);
|
2006-01-09 17:16:57 +01:00
|
|
|
|
|
|
|
|
|
if (!pwcInChars || !cInChars || !pItems || cMaxItems < 2)
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
2010-04-13 21:49:07 +02:00
|
|
|
|
if (psState && psControl)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
levels = heap_alloc_zero(cInChars * sizeof(WORD));
|
|
|
|
|
if (!levels)
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
BIDI_DetermineLevels(pwcInChars, cInChars, psState, psControl, levels);
|
2010-04-29 14:32:03 +02:00
|
|
|
|
baselevel = levels[0];
|
2010-04-13 21:49:07 +02:00
|
|
|
|
for (i = 0; i < cInChars; i++)
|
|
|
|
|
if (levels[i]!=levels[0])
|
|
|
|
|
break;
|
2010-09-09 18:47:04 +02:00
|
|
|
|
if (i >= cInChars && !odd(baselevel))
|
2010-04-13 21:49:07 +02:00
|
|
|
|
{
|
|
|
|
|
heap_free(levels);
|
|
|
|
|
levels = NULL;
|
|
|
|
|
}
|
2010-09-09 18:47:04 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!psControl->fMergeNeutralItems)
|
|
|
|
|
{
|
|
|
|
|
strength = heap_alloc_zero(cInChars * sizeof(WORD));
|
|
|
|
|
BIDI_GetStrengths(pwcInChars, cInChars, psControl, strength);
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-04-13 21:49:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-09 22:27:43 +02:00
|
|
|
|
while (pwcInChars[cnt] == Numeric_space && cnt < cInChars)
|
|
|
|
|
cnt++;
|
|
|
|
|
|
|
|
|
|
if (cnt == cInChars) /* All Spaces */
|
|
|
|
|
{
|
|
|
|
|
cnt = 0;
|
|
|
|
|
New_Script = get_char_script(pwcInChars[cnt]);
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-24 12:37:36 +01:00
|
|
|
|
pItems[index].iCharPos = 0;
|
2010-08-12 21:57:06 +02:00
|
|
|
|
pItems[index].a = scriptInformation[get_char_script(pwcInChars[cnt])].a;
|
2006-12-24 12:37:36 +01:00
|
|
|
|
|
2010-09-09 22:27:43 +02:00
|
|
|
|
if (strength)
|
|
|
|
|
str = strength[cnt];
|
|
|
|
|
|
|
|
|
|
cnt = 0;
|
2010-04-13 21:49:07 +02:00
|
|
|
|
if (levels)
|
|
|
|
|
{
|
|
|
|
|
pItems[index].a.fRTL = odd(levels[cnt]);
|
|
|
|
|
pItems[index].a.fLayoutRTL = odd(levels[cnt]);
|
|
|
|
|
pItems[index].a.s.uBidiLevel = levels[cnt];
|
|
|
|
|
}
|
2010-08-12 21:57:06 +02:00
|
|
|
|
else if (!pItems[index].a.s.uBidiLevel)
|
2010-04-29 14:32:03 +02:00
|
|
|
|
{
|
|
|
|
|
pItems[index].a.s.uBidiLevel = baselevel;
|
|
|
|
|
pItems[index].a.fLayoutRTL = odd(baselevel);
|
|
|
|
|
pItems[index].a.fRTL = odd(baselevel);
|
|
|
|
|
}
|
2010-04-13 21:49:07 +02:00
|
|
|
|
|
2010-09-09 18:47:04 +02: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 11:20:41 +01:00
|
|
|
|
pItems[index].iCharPos);
|
2006-08-08 10:57:37 +02:00
|
|
|
|
|
2009-01-06 11:20:41 +01:00
|
|
|
|
for (cnt=1; cnt < cInChars; cnt++)
|
2006-08-08 10:57:37 +02:00
|
|
|
|
{
|
2010-09-09 18:47:04 +02:00
|
|
|
|
if (levels && (levels[cnt] == pItems[index].a.s.uBidiLevel && (!strength || (strength[cnt] == 0 || strength[cnt] == str))))
|
2010-04-13 21:49:07 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
2010-08-12 21:57:06 +02:00
|
|
|
|
if(pwcInChars[cnt] != Numeric_space)
|
|
|
|
|
New_Script = get_char_script(pwcInChars[cnt]);
|
2010-09-09 22:27:43 +02:00
|
|
|
|
else if (levels)
|
|
|
|
|
{
|
|
|
|
|
int j = 1;
|
|
|
|
|
while (cnt + j < cInChars - 1 && pwcInChars[cnt+j] == Numeric_space)
|
|
|
|
|
j++;
|
|
|
|
|
New_Script = get_char_script(pwcInChars[cnt+j]);
|
|
|
|
|
}
|
2007-01-03 12:12:43 +01:00
|
|
|
|
|
2010-09-09 18:47:04 +02:00
|
|
|
|
if ((levels && (levels[cnt] != pItems[index].a.s.uBidiLevel || (strength && (strength[cnt] != str)))) || New_Script != pItems[index].a.eScript || New_Script == Script_Control)
|
2006-08-08 10:57:37 +02:00
|
|
|
|
{
|
2010-09-13 10:45:50 +02:00
|
|
|
|
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 18:47:04 +02:00
|
|
|
|
|
|
|
|
|
if (strength && strength[cnt] != 0)
|
|
|
|
|
str = strength[cnt];
|
|
|
|
|
|
2006-08-08 10:57:37 +02:00
|
|
|
|
index++;
|
|
|
|
|
if (index+1 > cMaxItems)
|
|
|
|
|
return E_OUTOFMEMORY;
|
2006-12-24 12:37:36 +01:00
|
|
|
|
|
2006-08-08 10:57:37 +02:00
|
|
|
|
pItems[index].iCharPos = cnt;
|
2006-12-24 12:37:36 +01:00
|
|
|
|
memset(&pItems[index].a, 0, sizeof(SCRIPT_ANALYSIS));
|
|
|
|
|
|
2010-08-12 21:57:06 +02:00
|
|
|
|
pItems[index].a = scriptInformation[New_Script].a;
|
2010-04-13 21:49:07 +02:00
|
|
|
|
if (levels)
|
|
|
|
|
{
|
|
|
|
|
pItems[index].a.fRTL = odd(levels[cnt]);
|
|
|
|
|
pItems[index].a.fLayoutRTL = odd(levels[cnt]);
|
|
|
|
|
pItems[index].a.s.uBidiLevel = levels[cnt];
|
|
|
|
|
}
|
2010-08-12 21:57:06 +02:00
|
|
|
|
else if (!pItems[index].a.s.uBidiLevel)
|
2010-04-29 14:32:03 +02:00
|
|
|
|
{
|
|
|
|
|
pItems[index].a.s.uBidiLevel = baselevel;
|
|
|
|
|
pItems[index].a.fLayoutRTL = odd(baselevel);
|
|
|
|
|
pItems[index].a.fRTL = odd(baselevel);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-06 11:20:41 +01:00
|
|
|
|
TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos);
|
2006-08-08 10:57:37 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2006-02-18 16:00:29 +01:00
|
|
|
|
|
2006-10-13 02:19:42 +02: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 16:00:29 +01:00
|
|
|
|
* checks the n+1 structure */
|
2010-04-27 14:43:34 +02:00
|
|
|
|
index++;
|
|
|
|
|
memset(&pItems[index].a, 0, sizeof(SCRIPT_ANALYSIS));
|
2006-12-24 12:37:36 +01:00
|
|
|
|
|
2010-04-27 14:43:34 +02:00
|
|
|
|
TRACE("index=%d cnt=%d iCharPos=%d\n", index, cnt, pItems[index].iCharPos);
|
2006-02-18 16:00:29 +01:00
|
|
|
|
|
|
|
|
|
/* Set one SCRIPT_STATE item being returned */
|
2010-04-27 14:43:34 +02:00
|
|
|
|
if (index + 1 > cMaxItems) return E_OUTOFMEMORY;
|
|
|
|
|
if (pcItems) *pcItems = index;
|
2006-02-18 16:00:29 +01:00
|
|
|
|
|
|
|
|
|
/* Set SCRIPT_ITEM */
|
2010-04-27 14:43:34 +02:00
|
|
|
|
pItems[index].iCharPos = cnt; /* the last item contains the ptr to the lastchar */
|
2010-04-13 21:49:07 +02:00
|
|
|
|
heap_free(levels);
|
2010-09-09 18:47:04 +02:00
|
|
|
|
heap_free(strength);
|
2006-08-08 10:57:37 +02:00
|
|
|
|
return S_OK;
|
2005-07-27 13:02:52 +02:00
|
|
|
|
}
|
2005-11-15 13:02:16 +01:00
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringAnalyse (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2007-01-03 12:12:29 +01: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 13:02:16 +01:00
|
|
|
|
{
|
2007-01-03 12:12:17 +01:00
|
|
|
|
HRESULT hr = E_OUTOFMEMORY;
|
|
|
|
|
StringAnalysis *analysis = NULL;
|
|
|
|
|
int i, num_items = 255;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%d,%d,%d,0x%x,%d,%p,%p,%p,%p,%p,%p)\n",
|
2007-01-03 12:12:17 +01:00
|
|
|
|
hdc, pString, cString, cGlyphs, iCharset, dwFlags, iReqWidth,
|
|
|
|
|
psControl, psState, piDx, pTabdef, pbInClass, pssa);
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
2007-01-03 12:12:29 +01:00
|
|
|
|
if (iCharset != -1)
|
|
|
|
|
{
|
|
|
|
|
FIXME("Only Unicode strings are supported\n");
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
2007-01-03 12:12:17 +01:00
|
|
|
|
if (cString < 1 || !pString) return E_INVALIDARG;
|
|
|
|
|
if ((dwFlags & SSA_GLYPHS) && !hdc) return E_PENDING;
|
2006-12-24 12:39:27 +01:00
|
|
|
|
|
2007-12-10 23:53:07 +01: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 13:02:16 +01:00
|
|
|
|
|
2007-01-03 12:12:29 +01:00
|
|
|
|
/* FIXME: handle clipping */
|
|
|
|
|
analysis->clip_len = cString;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
analysis->hdc = hdc;
|
2007-01-03 12:12:29 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
hr = ScriptItemize(pString, cString, num_items, psControl, psState, analysis->pItem,
|
|
|
|
|
&analysis->numItems);
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
while (hr == E_OUTOFMEMORY)
|
|
|
|
|
{
|
|
|
|
|
SCRIPT_ITEM *tmp;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
num_items *= 2;
|
2007-12-10 23:53:07 +01:00
|
|
|
|
if (!(tmp = heap_realloc_zero(analysis->pItem, num_items * sizeof(SCRIPT_ITEM) + 1)))
|
2007-01-03 12:12:17 +01:00
|
|
|
|
goto error;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
analysis->pItem = tmp;
|
|
|
|
|
hr = ScriptItemize(pString, cString, num_items, psControl, psState, analysis->pItem,
|
|
|
|
|
&analysis->numItems);
|
2006-12-16 03:28:07 +01:00
|
|
|
|
}
|
2008-09-12 14:02:12 +02:00
|
|
|
|
if (hr != S_OK) goto error;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
if ((analysis->logattrs = heap_alloc(sizeof(SCRIPT_LOGATTR) * cString)))
|
2006-12-23 17:19:31 +01:00
|
|
|
|
ScriptBreak(pString, cString, (SCRIPT_STRING_ANALYSIS)analysis, analysis->logattrs);
|
2007-01-03 12:12:17 +01:00
|
|
|
|
else
|
|
|
|
|
goto error;
|
2006-12-23 17:19:31 +01:00
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
if (!(analysis->glyphs = heap_alloc_zero(sizeof(StringGlyphs) * analysis->numItems)))
|
2007-01-03 12:12:17 +01:00
|
|
|
|
goto error;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
2006-12-16 03:28:07 +01:00
|
|
|
|
{
|
2007-01-03 12:12:03 +01:00
|
|
|
|
SCRIPT_CACHE *sc = (SCRIPT_CACHE *)&analysis->sc;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
int cChar = analysis->pItem[i+1].iCharPos - analysis->pItem[i].iCharPos;
|
|
|
|
|
int numGlyphs = 1.5 * cChar + 16;
|
2007-12-10 23:53:07 +01:00
|
|
|
|
WORD *glyphs = heap_alloc_zero(sizeof(WORD) * numGlyphs);
|
|
|
|
|
WORD *pwLogClust = heap_alloc_zero(sizeof(WORD) * cChar);
|
|
|
|
|
int *piAdvance = heap_alloc_zero(sizeof(int) * numGlyphs);
|
|
|
|
|
SCRIPT_VISATTR *psva = heap_alloc_zero(sizeof(SCRIPT_VISATTR) * cChar);
|
|
|
|
|
GOFFSET *pGoffset = heap_alloc_zero(sizeof(GOFFSET) * numGlyphs);
|
|
|
|
|
ABC *abc = heap_alloc_zero(sizeof(ABC));
|
2006-12-16 03:28:07 +01:00
|
|
|
|
int numGlyphsReturned;
|
|
|
|
|
|
|
|
|
|
/* FIXME: non unicode strings */
|
2010-03-28 11:28:31 +02:00
|
|
|
|
const WCHAR* pStr = (const WCHAR*)pString;
|
2006-12-16 03:28:07 +01:00
|
|
|
|
hr = ScriptShape(hdc, sc, &pStr[analysis->pItem[i].iCharPos],
|
|
|
|
|
cChar, numGlyphs, &analysis->pItem[i].a,
|
|
|
|
|
glyphs, pwLogClust, psva, &numGlyphsReturned);
|
|
|
|
|
hr = ScriptPlace(hdc, sc, glyphs, numGlyphsReturned, psva, &analysis->pItem[i].a,
|
|
|
|
|
piAdvance, pGoffset, abc);
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*pssa = analysis;
|
|
|
|
|
return S_OK;
|
2007-01-03 12:12:17 +01:00
|
|
|
|
|
|
|
|
|
error:
|
2007-12-10 23:53:07 +01:00
|
|
|
|
heap_free(analysis->glyphs);
|
|
|
|
|
heap_free(analysis->logattrs);
|
|
|
|
|
heap_free(analysis->pItem);
|
|
|
|
|
heap_free(analysis->sc);
|
|
|
|
|
heap_free(analysis);
|
2007-01-03 12:12:17 +01:00
|
|
|
|
return hr;
|
2005-11-15 13:02:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2006-05-23 14:15:15 +02:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringOut (USP10.@)
|
|
|
|
|
*
|
2006-12-29 12:37:16 +01: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
|
|
|
|
|
* uOptions [I] flags controling output processing
|
|
|
|
|
* 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 14:15:15 +02:00
|
|
|
|
*/
|
2006-12-29 12:37:16 +01:00
|
|
|
|
HRESULT WINAPI ScriptStringOut(SCRIPT_STRING_ANALYSIS ssa,
|
|
|
|
|
int iX,
|
2006-05-23 14:15:15 +02:00
|
|
|
|
int iY,
|
|
|
|
|
UINT uOptions,
|
|
|
|
|
const RECT *prc,
|
|
|
|
|
int iMinSel,
|
2006-12-29 12:37:16 +01:00
|
|
|
|
int iMaxSel,
|
2006-05-23 14:15:15 +02:00
|
|
|
|
BOOL fDisabled)
|
|
|
|
|
{
|
2006-12-29 12:37:16 +01:00
|
|
|
|
StringAnalysis *analysis;
|
|
|
|
|
WORD *glyphs;
|
|
|
|
|
int item, cnt, x;
|
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p,%d,%d,0x%1x,%p,%d,%d,%d)\n",
|
2006-05-23 14:15:15 +02:00
|
|
|
|
ssa, iX, iY, uOptions, prc, iMinSel, iMaxSel, fDisabled);
|
2006-12-29 12:37:16 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
if (!(analysis = ssa)) return E_INVALIDARG;
|
2006-12-29 12:37:16 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get storage for the output buffer for the consolidated strings
|
|
|
|
|
*/
|
|
|
|
|
cnt = 0;
|
2007-01-03 12:12:17 +01:00
|
|
|
|
for (item = 0; item < analysis->numItems; item++)
|
2006-12-29 12:37:16 +01:00
|
|
|
|
{
|
|
|
|
|
cnt += analysis->glyphs[item].numGlyphs;
|
2006-05-23 14:15:15 +02:00
|
|
|
|
}
|
2007-12-10 23:53:07 +01:00
|
|
|
|
if (!(glyphs = heap_alloc(sizeof(WCHAR) * cnt))) return E_OUTOFMEMORY;
|
2006-12-29 12:37:16 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ScriptStringOut only processes glyphs hence set ETO_GLYPH_INDEX
|
|
|
|
|
*/
|
|
|
|
|
uOptions |= ETO_GLYPH_INDEX;
|
|
|
|
|
analysis->pItem[0].a.fNoGlyphIndex = FALSE; /* say that we have glyphs */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copy the string items into the output buffer
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
TRACE("numItems %d\n", analysis->numItems);
|
|
|
|
|
|
|
|
|
|
cnt = 0;
|
|
|
|
|
for (item = 0; item < analysis->numItems; item++)
|
|
|
|
|
{
|
|
|
|
|
memcpy(&glyphs[cnt], analysis->glyphs[item].glyphs,
|
|
|
|
|
sizeof(WCHAR) * analysis->glyphs[item].numGlyphs);
|
|
|
|
|
|
|
|
|
|
TRACE("Item %d, Glyphs %d ", item, analysis->glyphs[item].numGlyphs);
|
|
|
|
|
for (x = cnt; x < analysis->glyphs[item].numGlyphs + cnt; x ++)
|
|
|
|
|
TRACE("%04x", glyphs[x]);
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
|
|
|
|
|
cnt += analysis->glyphs[item].numGlyphs; /* point to the end of the copied text */
|
|
|
|
|
}
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
hr = ScriptTextOut(analysis->hdc, (SCRIPT_CACHE *)&analysis->sc, iX, iY,
|
2007-01-03 12:12:03 +01:00
|
|
|
|
uOptions, prc, &analysis->pItem->a, NULL, 0, glyphs, cnt,
|
|
|
|
|
analysis->glyphs->piAdvance, NULL, analysis->glyphs->pGoffset);
|
2006-12-29 12:37:16 +01:00
|
|
|
|
TRACE("ScriptTextOut hr=%08x\n", hr);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Free the output buffer and script cache
|
|
|
|
|
*/
|
2007-12-10 23:53:07 +01:00
|
|
|
|
heap_free(glyphs);
|
2006-12-29 12:37:16 +01:00
|
|
|
|
return hr;
|
2006-05-23 14:15:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2006-07-18 11:35:07 +02:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringCPtoX (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptStringCPtoX(SCRIPT_STRING_ANALYSIS ssa, int icp, BOOL fTrailing, int* pX)
|
|
|
|
|
{
|
2006-12-16 03:28:25 +01:00
|
|
|
|
int i, j;
|
|
|
|
|
int runningX = 0;
|
|
|
|
|
int runningCp = 0;
|
|
|
|
|
StringAnalysis* analysis = ssa;
|
2010-10-29 20:48:48 +02:00
|
|
|
|
BOOL itemTrailing;
|
2007-01-03 12:12:43 +01:00
|
|
|
|
|
2006-12-16 03:28:25 +01:00
|
|
|
|
TRACE("(%p), %d, %d, (%p)\n", ssa, icp, fTrailing, pX);
|
|
|
|
|
|
2007-01-03 12:12:43 +01:00
|
|
|
|
if (!ssa || !pX) return S_FALSE;
|
2006-12-16 03:28:25 +01:00
|
|
|
|
|
|
|
|
|
/* icp out of range */
|
|
|
|
|
if(icp < 0)
|
|
|
|
|
{
|
|
|
|
|
analysis->invalid = TRUE;
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for(i=0; i<analysis->numItems; i++)
|
|
|
|
|
{
|
2010-10-29 20:48:48 +02:00
|
|
|
|
if (analysis->pItem[i].a.fRTL)
|
|
|
|
|
itemTrailing = !fTrailing;
|
|
|
|
|
else
|
|
|
|
|
itemTrailing = fTrailing;
|
2006-12-16 03:28:25 +01:00
|
|
|
|
for(j=0; j<analysis->glyphs[i].numGlyphs; j++)
|
|
|
|
|
{
|
2010-10-29 20:48:48 +02:00
|
|
|
|
if(runningCp == icp && itemTrailing == FALSE)
|
2006-12-16 03:28:25 +01:00
|
|
|
|
{
|
|
|
|
|
*pX = runningX;
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
runningX += analysis->glyphs[i].piAdvance[j];
|
2010-10-29 20:48:48 +02:00
|
|
|
|
if(runningCp == icp && itemTrailing == TRUE)
|
2006-12-16 03:28:25 +01:00
|
|
|
|
{
|
|
|
|
|
*pX = runningX;
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
runningCp++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* icp out of range */
|
|
|
|
|
analysis->invalid = TRUE;
|
|
|
|
|
return E_INVALIDARG;
|
2006-07-18 11:35:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringXtoCP (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptStringXtoCP(SCRIPT_STRING_ANALYSIS ssa, int iX, int* piCh, int* piTrailing)
|
|
|
|
|
{
|
2006-12-16 03:28:17 +01:00
|
|
|
|
StringAnalysis* analysis = ssa;
|
|
|
|
|
int i;
|
|
|
|
|
int j;
|
|
|
|
|
int runningX = 0;
|
|
|
|
|
int runningCp = 0;
|
|
|
|
|
int width;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p), %d, (%p), (%p)\n", ssa, iX, piCh, piTrailing);
|
|
|
|
|
|
2007-01-03 12:12:43 +01:00
|
|
|
|
if (!ssa || !piCh || !piTrailing) return S_FALSE;
|
2006-12-16 03:28:17 +01:00
|
|
|
|
|
|
|
|
|
/* out of range */
|
|
|
|
|
if(iX < 0)
|
|
|
|
|
{
|
2010-10-29 20:48:48 +02:00
|
|
|
|
if (analysis->pItem[0].a.fRTL)
|
|
|
|
|
{
|
|
|
|
|
*piCh = 1;
|
|
|
|
|
*piTrailing = FALSE;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*piCh = -1;
|
|
|
|
|
*piTrailing = TRUE;
|
|
|
|
|
}
|
2007-01-03 12:12:43 +01:00
|
|
|
|
return S_OK;
|
2006-12-16 03:28:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for(i=0; i<analysis->numItems; i++)
|
|
|
|
|
{
|
|
|
|
|
for(j=0; j<analysis->glyphs[i].numGlyphs; j++)
|
|
|
|
|
{
|
|
|
|
|
width = analysis->glyphs[i].piAdvance[j];
|
|
|
|
|
if(iX < (runningX + width))
|
|
|
|
|
{
|
|
|
|
|
*piCh = runningCp;
|
|
|
|
|
if((iX - runningX) > width/2)
|
|
|
|
|
*piTrailing = TRUE;
|
|
|
|
|
else
|
|
|
|
|
*piTrailing = FALSE;
|
2010-10-29 20:48:48 +02:00
|
|
|
|
|
|
|
|
|
if (analysis->pItem[i].a.fRTL)
|
|
|
|
|
*piTrailing = !*piTrailing;
|
2006-12-16 03:28:17 +01:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
runningX += width;
|
|
|
|
|
runningCp++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* out of range */
|
|
|
|
|
*piCh = analysis->pItem[analysis->numItems].iCharPos;
|
|
|
|
|
*piTrailing = FALSE;
|
|
|
|
|
|
2006-07-18 11:35:07 +02:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-16 03:28:17 +01:00
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptStringFree (USP10.@)
|
|
|
|
|
*
|
2007-01-02 16:11:10 +01:00
|
|
|
|
* Free a string analysis.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* pssa [I] string analysis.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: Non-zero HRESULT value.
|
2005-11-23 20:14:04 +01:00
|
|
|
|
*/
|
2006-12-16 03:28:11 +01:00
|
|
|
|
HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa)
|
|
|
|
|
{
|
|
|
|
|
StringAnalysis* analysis;
|
|
|
|
|
BOOL invalid;
|
|
|
|
|
int i;
|
2007-01-02 16:11:10 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
TRACE("(%p)\n", pssa);
|
2006-12-16 03:28:11 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
if (!pssa || !(analysis = *pssa)) return E_INVALIDARG;
|
2009-12-07 09:18:58 +01:00
|
|
|
|
|
2006-12-16 03:28:11 +01:00
|
|
|
|
invalid = analysis->invalid;
|
2009-12-07 09:18:58 +01:00
|
|
|
|
ScriptFreeCache((SCRIPT_CACHE *)&analysis->sc);
|
2006-12-16 03:28:11 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
2006-12-16 03:28:11 +01:00
|
|
|
|
{
|
2007-12-10 23:53:07 +01:00
|
|
|
|
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);
|
2006-12-16 03:28:11 +01:00
|
|
|
|
}
|
|
|
|
|
|
2007-12-10 23:53:07 +01:00
|
|
|
|
heap_free(analysis->glyphs);
|
|
|
|
|
heap_free(analysis->pItem);
|
|
|
|
|
heap_free(analysis->logattrs);
|
|
|
|
|
heap_free(analysis->sz);
|
|
|
|
|
heap_free(analysis->sc);
|
|
|
|
|
heap_free(analysis);
|
2006-12-16 03:28:11 +01:00
|
|
|
|
|
2007-01-03 12:12:17 +01:00
|
|
|
|
if (invalid) return E_INVALIDARG;
|
2006-06-07 15:05:14 +02:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* 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)
|
|
|
|
|
{
|
2006-07-20 14:16:50 +02:00
|
|
|
|
int item;
|
|
|
|
|
int iPosX;
|
|
|
|
|
float fMaxPosX = 0;
|
|
|
|
|
TRACE("(%d,%d,%d,%d,%p,%p,%p,%p,%p)\n",
|
2006-06-07 15:05:14 +02:00
|
|
|
|
iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance,
|
|
|
|
|
psa, piX);
|
2006-07-20 14:16:50 +02:00
|
|
|
|
for (item=0; item < cGlyphs; item++) /* total piAdvance */
|
|
|
|
|
fMaxPosX += piAdvance[item];
|
|
|
|
|
iPosX = (fMaxPosX/cGlyphs)*(iCP+fTrailing);
|
|
|
|
|
if (iPosX > fMaxPosX)
|
|
|
|
|
iPosX = fMaxPosX;
|
|
|
|
|
*piX = iPosX; /* Return something in range */
|
|
|
|
|
|
|
|
|
|
TRACE("*piX=%d\n", *piX);
|
2006-06-07 15:05:14 +02:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptXtoCP (USP10.@)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
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)
|
|
|
|
|
{
|
2006-07-20 14:16:50 +02:00
|
|
|
|
int item;
|
2006-12-12 06:23:53 +01:00
|
|
|
|
int iPosX;
|
2006-07-20 14:16:50 +02:00
|
|
|
|
float fMaxPosX = 1;
|
|
|
|
|
float fAvePosX;
|
|
|
|
|
TRACE("(%d,%d,%d,%p,%p,%p,%p,%p,%p)\n",
|
2006-06-07 15:05:14 +02:00
|
|
|
|
iX, cChars, cGlyphs, pwLogClust, psva, piAdvance,
|
|
|
|
|
psa, piCP, piTrailing);
|
2006-07-20 14:16:50 +02:00
|
|
|
|
if (iX < 0) /* iX is before start of run */
|
|
|
|
|
{
|
|
|
|
|
*piCP = -1;
|
|
|
|
|
*piTrailing = TRUE;
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2006-06-07 15:05:14 +02:00
|
|
|
|
|
2006-07-20 14:16:50 +02:00
|
|
|
|
for (item=0; item < cGlyphs; item++) /* total piAdvance */
|
|
|
|
|
fMaxPosX += piAdvance[item];
|
|
|
|
|
|
|
|
|
|
if (iX >= fMaxPosX) /* iX too large */
|
|
|
|
|
{
|
|
|
|
|
*piCP = cChars;
|
|
|
|
|
*piTrailing = FALSE;
|
|
|
|
|
return S_OK;
|
2007-01-03 12:12:43 +01:00
|
|
|
|
}
|
2006-07-20 14:16:50 +02:00
|
|
|
|
|
|
|
|
|
fAvePosX = fMaxPosX / cGlyphs;
|
2006-12-12 06:23:53 +01:00
|
|
|
|
iPosX = fAvePosX;
|
|
|
|
|
for (item = 1; item < cGlyphs && iPosX < iX; item++)
|
|
|
|
|
iPosX += fAvePosX;
|
2006-07-20 14:16:50 +02:00
|
|
|
|
if (iPosX - iX > fAvePosX/2)
|
|
|
|
|
*piTrailing = 0;
|
|
|
|
|
else
|
2006-12-14 17:59:46 +01:00
|
|
|
|
*piTrailing = 1; /* yep we are over halfway */
|
2007-01-03 12:12:43 +01:00
|
|
|
|
|
2006-07-20 14:16:50 +02:00
|
|
|
|
*piCP = item -1; /* Return character position */
|
|
|
|
|
TRACE("*piCP=%d iPposX=%d\n", *piCP, iPosX);
|
2006-06-07 15:05:14 +02:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptBreak (USP10.@)
|
|
|
|
|
*
|
2006-12-23 11:50:47 +01:00
|
|
|
|
* Retrieve line break information.
|
|
|
|
|
*
|
|
|
|
|
* PARAMS
|
|
|
|
|
* chars [I] Array of characters.
|
|
|
|
|
* sa [I] String analysis.
|
|
|
|
|
* la [I] Array of logical attribute structures.
|
|
|
|
|
*
|
|
|
|
|
* RETURNS
|
|
|
|
|
* Success: S_OK
|
|
|
|
|
* Failure: S_FALSE
|
2006-06-07 15:05:14 +02:00
|
|
|
|
*/
|
2006-12-23 11:50:47 +01:00
|
|
|
|
HRESULT WINAPI ScriptBreak(const WCHAR *chars, int count, const SCRIPT_ANALYSIS *sa, SCRIPT_LOGATTR *la)
|
2006-06-07 15:05:14 +02:00
|
|
|
|
{
|
2008-11-19 22:28:04 +01:00
|
|
|
|
int i;
|
2006-06-07 15:05:14 +02:00
|
|
|
|
|
2007-01-02 15:31:34 +01:00
|
|
|
|
TRACE("(%s, %d, %p, %p)\n", debugstr_wn(chars, count), count, sa, la);
|
2006-12-23 11:50:47 +01:00
|
|
|
|
|
|
|
|
|
if (!la) return S_FALSE;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
memset(&la[i], 0, sizeof(SCRIPT_LOGATTR));
|
|
|
|
|
|
2006-12-28 02:23:45 +01:00
|
|
|
|
/* FIXME: set the other flags */
|
2009-01-06 11:20:26 +01:00
|
|
|
|
la[i].fWhiteSpace = (chars[i] == ' ');
|
2006-12-23 11:50:47 +01:00
|
|
|
|
la[i].fCharStop = 1;
|
2009-01-06 11:20:26 +01:00
|
|
|
|
|
|
|
|
|
if (i > 0 && la[i - 1].fWhiteSpace)
|
|
|
|
|
{
|
|
|
|
|
la[i].fSoftBreak = 1;
|
|
|
|
|
la[i].fWordStop = 1;
|
|
|
|
|
}
|
2006-12-23 11:50:47 +01:00
|
|
|
|
}
|
2006-06-07 15:05:14 +02:00
|
|
|
|
return S_OK;
|
2005-11-15 13:02:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-23 20:14:04 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptIsComplex (USP10.@)
|
2010-08-12 21:57:50 +02:00
|
|
|
|
*
|
2006-08-04 11:41:58 +02: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 20:14:04 +01:00
|
|
|
|
*
|
|
|
|
|
*/
|
2006-08-04 11:41:58 +02:00
|
|
|
|
HRESULT WINAPI ScriptIsComplex(const WCHAR *chars, int len, DWORD flag)
|
|
|
|
|
{
|
2008-11-19 22:28:04 +01:00
|
|
|
|
int i;
|
2006-08-04 11:41:58 +02:00
|
|
|
|
|
2006-10-05 00:58:37 +02:00
|
|
|
|
TRACE("(%s,%d,0x%x)\n", debugstr_wn(chars, len), len, flag);
|
2006-08-04 11:41:58 +02:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
|
{
|
2010-08-12 21:57:50 +02:00
|
|
|
|
int script;
|
|
|
|
|
|
|
|
|
|
if ((flag & SIC_ASCIIDIGIT) && chars[i] >= 0x30 && chars[i] <= 0x39)
|
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
|
|
script = get_char_script(chars[i]);
|
|
|
|
|
if ((scriptInformation[script].props.fComplex && (flag & SIC_COMPLEX))||
|
|
|
|
|
(!scriptInformation[script].props.fComplex && (flag & SIC_NEUTRAL)))
|
|
|
|
|
return S_OK;
|
2006-08-04 11:41:58 +02:00
|
|
|
|
}
|
|
|
|
|
return S_FALSE;
|
2005-11-15 13:02:16 +01:00
|
|
|
|
}
|
2006-04-20 13:50:44 +02:00
|
|
|
|
|
2006-02-14 17:38:20 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptShape (USP10.@)
|
|
|
|
|
*
|
2007-01-23 11:03:26 +01:00
|
|
|
|
* 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.
|
2007-12-12 10:44:42 +01:00
|
|
|
|
* psa [I/O] Script analysis.
|
2007-01-23 11:03:26 +01:00
|
|
|
|
* 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.
|
2006-02-14 17:38:20 +01:00
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptShape(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcChars,
|
|
|
|
|
int cChars, int cMaxGlyphs,
|
2006-12-28 16:12:45 +01:00
|
|
|
|
SCRIPT_ANALYSIS *psa, WORD *pwOutGlyphs, WORD *pwLogClust,
|
2006-02-14 17:38:20 +01:00
|
|
|
|
SCRIPT_VISATTR *psva, int *pcGlyphs)
|
|
|
|
|
{
|
2006-12-28 16:12:45 +01:00
|
|
|
|
HRESULT hr;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
unsigned int i;
|
2010-04-14 17:00:37 +02:00
|
|
|
|
BOOL rtl;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
2009-01-06 11:21:07 +01:00
|
|
|
|
TRACE("(%p, %p, %s, %d, %d, %p, %p, %p, %p, %p)\n", hdc, psc, debugstr_wn(pwcChars, cChars),
|
|
|
|
|
cChars, cMaxGlyphs, psa, pwOutGlyphs, pwLogClust, psva, pcGlyphs);
|
|
|
|
|
|
2006-02-24 10:13:51 +01:00
|
|
|
|
if (psa) TRACE("psa values: %d, %d, %d, %d, %d, %d, %d\n", psa->eScript, psa->fRTL, psa->fLayoutRTL,
|
2006-12-28 16:12:45 +01:00
|
|
|
|
psa->fLinkBefore, psa->fLinkAfter, psa->fLogicalOrder, psa->fNoGlyphIndex);
|
|
|
|
|
|
2007-12-12 10:44:42 +01:00
|
|
|
|
if (!psva || !pcGlyphs) return E_INVALIDARG;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
if (cChars > cMaxGlyphs) return E_OUTOFMEMORY;
|
2010-04-14 17:00:37 +02:00
|
|
|
|
rtl = (!psa->fLogicalOrder && psa->fRTL);
|
2008-09-12 14:02:12 +02:00
|
|
|
|
|
2007-12-12 10:44:42 +01:00
|
|
|
|
*pcGlyphs = cChars;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2009-09-03 14:50:17 +02:00
|
|
|
|
if (!pwLogClust) return E_FAIL;
|
2007-12-09 21:39:19 +01:00
|
|
|
|
|
2010-08-12 21:59:04 +02: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 */
|
|
|
|
|
psva[i].uJustification = (pwcChars[idx] == ' ') ? SCRIPT_JUSTIFY_BLANK : SCRIPT_JUSTIFY_CHARACTER;
|
|
|
|
|
psva[i].fClusterStart = 1;
|
|
|
|
|
psva[i].fDiacritic = 0;
|
|
|
|
|
psva[i].fZeroWidth = 0;
|
|
|
|
|
psva[i].fReserved = 0;
|
|
|
|
|
psva[i].fShapeReserved = 0;
|
|
|
|
|
|
|
|
|
|
pwLogClust[i] = idx;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-08 20:30:46 +02:00
|
|
|
|
if (!psa->fNoGlyphIndex)
|
2007-12-12 19:11:28 +01:00
|
|
|
|
{
|
2010-09-09 22:27:57 +02:00
|
|
|
|
WCHAR *rChars;
|
|
|
|
|
if ((hr = SHAPE_CheckFontForRequiredFeatures(hdc, (ScriptCache *)*psc, psa)) != S_OK) return hr;
|
|
|
|
|
|
|
|
|
|
rChars = heap_alloc(sizeof(WCHAR) * cChars);
|
2010-05-21 21:11:30 +02:00
|
|
|
|
if (!rChars) return E_OUTOFMEMORY;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
2010-04-14 17:00:37 +02:00
|
|
|
|
int idx = i;
|
2010-05-06 15:28:57 +02:00
|
|
|
|
WCHAR chInput;
|
2010-04-14 17:00:37 +02:00
|
|
|
|
if (rtl) idx = cChars - 1 - i;
|
2010-05-06 15:28:57 +02:00
|
|
|
|
if (psa->fRTL)
|
|
|
|
|
chInput = mirror_char(pwcChars[idx]);
|
|
|
|
|
else
|
|
|
|
|
chInput = pwcChars[idx];
|
|
|
|
|
if (!(pwOutGlyphs[i] = get_cache_glyph(psc, chInput)))
|
2008-10-09 15:17:29 +02:00
|
|
|
|
{
|
|
|
|
|
WORD glyph;
|
|
|
|
|
if (!hdc) return E_PENDING;
|
2010-05-06 15:28:57 +02:00
|
|
|
|
if (GetGlyphIndicesW(hdc, &chInput, 1, &glyph, 0) == GDI_ERROR) return S_FALSE;
|
|
|
|
|
pwOutGlyphs[i] = set_cache_glyph(psc, chInput, glyph);
|
2008-10-09 15:17:29 +02:00
|
|
|
|
}
|
2010-05-19 16:17:00 +02:00
|
|
|
|
rChars[i] = chInput;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
}
|
2010-09-08 20:30:46 +02:00
|
|
|
|
|
|
|
|
|
if (get_cache_pitch_family(psc) & TMPF_TRUETYPE)
|
|
|
|
|
{
|
|
|
|
|
SHAPE_ContextualShaping(hdc, (ScriptCache *)*psc, psa, rChars, cChars, pwOutGlyphs, pcGlyphs, cMaxGlyphs, pwLogClust);
|
|
|
|
|
SHAPE_ApplyDefaultOpentypeFeatures(hdc, (ScriptCache *)*psc, psa, pwOutGlyphs, pcGlyphs, cMaxGlyphs, cChars, pwLogClust);
|
|
|
|
|
}
|
2010-05-19 16:17:00 +02:00
|
|
|
|
heap_free(rChars);
|
2006-02-20 10:19:32 +01:00
|
|
|
|
}
|
2007-12-12 19:11:28 +01:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TRACE("no glyph translation\n");
|
2010-04-14 17:00:37 +02:00
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
|
|
|
|
int idx = i;
|
2010-05-06 15:28:57 +02:00
|
|
|
|
/* No mirroring done here */
|
2010-04-14 17:00:37 +02:00
|
|
|
|
if (rtl) idx = cChars - 1 - i;
|
|
|
|
|
pwOutGlyphs[i] = pwcChars[idx];
|
|
|
|
|
}
|
2006-02-20 10:19:32 +01:00
|
|
|
|
}
|
2007-12-12 19:11:28 +01:00
|
|
|
|
|
2006-12-28 16:12:45 +01:00
|
|
|
|
return S_OK;
|
2006-02-14 17:38:20 +01:00
|
|
|
|
}
|
2006-02-20 10:19:32 +01:00
|
|
|
|
|
2006-02-14 17:38:20 +01:00
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptPlace (USP10.@)
|
|
|
|
|
*
|
2007-01-23 11:03:26 +01:00
|
|
|
|
* 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.
|
2006-02-14 17:38:20 +01:00
|
|
|
|
*/
|
|
|
|
|
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 )
|
|
|
|
|
{
|
2006-12-28 16:12:45 +01:00
|
|
|
|
HRESULT hr;
|
2008-11-19 22:28:04 +01:00
|
|
|
|
int i;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
2009-01-06 11:21:07 +01:00
|
|
|
|
TRACE("(%p, %p, %p, %d, %p, %p, %p, %p, %p)\n", hdc, psc, pwGlyphs, cGlyphs, psva, psa,
|
|
|
|
|
piAdvance, pGoffset, pABC);
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
2007-12-12 10:44:42 +01:00
|
|
|
|
if (!psva) return E_INVALIDARG;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2009-09-03 14:50:17 +02:00
|
|
|
|
if (!pGoffset) return E_FAIL;
|
2008-09-12 14:02:12 +02:00
|
|
|
|
|
2007-12-12 19:11:28 +01:00
|
|
|
|
if (pABC) memset(pABC, 0, sizeof(ABC));
|
2008-10-09 15:17:29 +02:00
|
|
|
|
for (i = 0; i < cGlyphs; i++)
|
2007-12-12 10:44:42 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02:00
|
|
|
|
ABC abc;
|
|
|
|
|
if (!get_cache_glyph_widths(psc, pwGlyphs[i], &abc))
|
2007-12-12 10:44:42 +01:00
|
|
|
|
{
|
2008-10-09 15:17:29 +02: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 19:11:28 +01:00
|
|
|
|
}
|
|
|
|
|
if (pABC)
|
|
|
|
|
{
|
2008-10-09 15:17:29 +02:00
|
|
|
|
pABC->abcA += abc.abcA;
|
|
|
|
|
pABC->abcB += abc.abcB;
|
|
|
|
|
pABC->abcC += abc.abcC;
|
2007-12-12 10:44:42 +01:00
|
|
|
|
}
|
2007-12-12 19:11:28 +01:00
|
|
|
|
/* FIXME: set to more reasonable values */
|
2009-09-03 14:50:17 +02:00
|
|
|
|
pGoffset[i].du = pGoffset[i].dv = 0;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if (piAdvance) piAdvance[i] = abc.abcA + abc.abcB + abc.abcC;
|
2007-12-12 10:44:42 +01:00
|
|
|
|
}
|
2006-04-20 13:50:44 +02:00
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if (pABC) TRACE("Total for run: abcA=%d, abcB=%d, abcC=%d\n", pABC->abcA, pABC->abcB, pABC->abcC);
|
2007-12-09 21:39:19 +01:00
|
|
|
|
return S_OK;
|
2006-02-14 17:38:20 +01:00
|
|
|
|
}
|
2006-02-14 17:38:47 +01:00
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* ScriptGetCMap (USP10.@)
|
|
|
|
|
*
|
2007-01-02 16:11:10 +01: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 17:38:47 +01:00
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars,
|
2007-01-02 16:11:10 +01:00
|
|
|
|
int cChars, DWORD dwFlags, WORD *pwOutGlyphs)
|
2006-02-14 17:38:47 +01:00
|
|
|
|
{
|
2006-12-28 16:12:45 +01:00
|
|
|
|
HRESULT hr;
|
2008-11-19 22:28:04 +01:00
|
|
|
|
int i;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
2007-01-02 15:31:34 +01:00
|
|
|
|
TRACE("(%p,%p,%s,%d,0x%x,%p)\n", hdc, psc, debugstr_wn(pwcInChars, cChars),
|
|
|
|
|
cChars, dwFlags, pwOutGlyphs);
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-02-22 13:24:52 +01:00
|
|
|
|
|
2010-05-05 18:51:52 +02:00
|
|
|
|
hr = S_OK;
|
|
|
|
|
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((get_cache_pitch_family(psc) & TMPF_TRUETYPE))
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < cChars; i++)
|
|
|
|
|
{
|
2010-05-06 15:28:57 +02: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 15:17:29 +02:00
|
|
|
|
{
|
|
|
|
|
WORD glyph;
|
|
|
|
|
if (!hdc) return E_PENDING;
|
2010-05-06 15:28:57 +02:00
|
|
|
|
if (GetGlyphIndicesW(hdc, &inChar, 1, &glyph, GGI_MARK_NONEXISTING_GLYPHS) == GDI_ERROR) return S_FALSE;
|
2010-05-05 18:51:52 +02:00
|
|
|
|
if (glyph == 0xffff)
|
|
|
|
|
{
|
|
|
|
|
hr = S_FALSE;
|
|
|
|
|
glyph = 0x0;
|
|
|
|
|
}
|
2010-05-06 15:28:57 +02:00
|
|
|
|
pwOutGlyphs[i] = set_cache_glyph(psc, inChar, glyph);
|
2008-10-09 15:17:29 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TRACE("no glyph translation\n");
|
2010-05-06 15:28:57 +02: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 15:17:29 +02:00
|
|
|
|
}
|
2010-05-05 18:51:52 +02:00
|
|
|
|
return hr;
|
2006-02-14 17:38:47 +01:00
|
|
|
|
}
|
2006-02-21 10:47:39 +01: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 16:12:45 +01:00
|
|
|
|
int iReserved, const WORD *pwGlyphs, int cGlyphs, const int *piAdvance,
|
2006-02-21 10:47:39 +01:00
|
|
|
|
const int *piJustify, const GOFFSET *pGoffset)
|
|
|
|
|
{
|
2007-12-09 21:39:19 +01:00
|
|
|
|
HRESULT hr = S_OK;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
|
2007-01-02 15:31:34 +01:00
|
|
|
|
TRACE("(%p, %p, %d, %d, %04x, %p, %p, %p, %d, %p, %d, %p, %p, %p)\n",
|
2006-04-30 15:44:30 +02:00
|
|
|
|
hdc, psc, x, y, fuOptions, lprc, psa, pwcReserved, iReserved, pwGlyphs, cGlyphs,
|
|
|
|
|
piAdvance, piJustify, pGoffset);
|
|
|
|
|
|
2008-05-01 17:42:03 +02:00
|
|
|
|
if (!hdc || !psc) return E_INVALIDARG;
|
2006-12-28 16:12:45 +01:00
|
|
|
|
if (!piAdvance || !psa || !pwGlyphs) return E_INVALIDARG;
|
2007-12-09 21:39:19 +01:00
|
|
|
|
|
2006-04-30 15:44:30 +02:00
|
|
|
|
fuOptions &= ETO_CLIPPED + ETO_OPAQUE;
|
2010-05-08 05:10:26 +02:00
|
|
|
|
fuOptions |= ETO_IGNORELANGUAGE;
|
2006-04-30 15:44:30 +02:00
|
|
|
|
if (!psa->fNoGlyphIndex) /* Have Glyphs? */
|
2006-10-13 02:19:42 +02:00
|
|
|
|
fuOptions |= ETO_GLYPH_INDEX; /* Say don't do translation to glyph */
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
2010-05-05 20:30:33 +02:00
|
|
|
|
if (psa->fRTL && psa->fLogicalOrder)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
WORD *rtlGlyphs;
|
|
|
|
|
|
|
|
|
|
rtlGlyphs = heap_alloc(cGlyphs * sizeof(WORD));
|
|
|
|
|
if (!rtlGlyphs)
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < cGlyphs; i++)
|
|
|
|
|
rtlGlyphs[i] = pwGlyphs[cGlyphs-1-i];
|
|
|
|
|
|
|
|
|
|
if (!ExtTextOutW(hdc, x, y, fuOptions, lprc, rtlGlyphs, cGlyphs, NULL))
|
|
|
|
|
hr = S_FALSE;
|
|
|
|
|
heap_free(rtlGlyphs);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
if (!ExtTextOutW(hdc, x, y, fuOptions, lprc, pwGlyphs, cGlyphs, NULL))
|
|
|
|
|
hr = S_FALSE;
|
2006-04-30 15:44:30 +02:00
|
|
|
|
|
2007-12-09 21:39:19 +01:00
|
|
|
|
return hr;
|
2006-02-21 10:47:39 +01:00
|
|
|
|
}
|
2006-07-19 21:45:24 +02: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 11:07:55 +01:00
|
|
|
|
HRESULT WINAPI ScriptCacheGetHeight(HDC hdc, SCRIPT_CACHE *psc, LONG *height)
|
2006-07-19 21:45:24 +02:00
|
|
|
|
{
|
2006-12-28 16:12:45 +01:00
|
|
|
|
HRESULT hr;
|
2006-07-19 21:45:24 +02:00
|
|
|
|
|
|
|
|
|
TRACE("(%p, %p, %p)\n", hdc, psc, height);
|
|
|
|
|
|
2006-12-28 16:12:45 +01:00
|
|
|
|
if (!height) return E_INVALIDARG;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-07-19 21:45:24 +02:00
|
|
|
|
|
2007-01-23 11:03:12 +01:00
|
|
|
|
*height = get_cache_height(psc);
|
2006-07-19 21:45:24 +02:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2006-08-04 14:55:30 +02: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 15:17:29 +02:00
|
|
|
|
HRESULT hr;
|
2006-08-04 14:55:30 +02:00
|
|
|
|
|
|
|
|
|
TRACE("(%p, %p, 0x%04x, %p)\n", hdc, psc, glyph, abc);
|
|
|
|
|
|
2009-09-03 14:50:17 +02:00
|
|
|
|
if (!abc) return E_INVALIDARG;
|
2008-10-09 15:17:29 +02:00
|
|
|
|
if ((hr = init_script_cache(hdc, psc)) != S_OK) return hr;
|
2006-08-04 14:55:30 +02:00
|
|
|
|
|
2008-10-09 15:17:29 +02: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 14:55:30 +02:00
|
|
|
|
}
|
2006-09-28 17:00:19 +02: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.
|
|
|
|
|
*
|
|
|
|
|
* BUGS
|
|
|
|
|
* This stub works correctly for any sequence of a single
|
|
|
|
|
* embedding level but not for sequences of different
|
|
|
|
|
* embedding levels, i.e. mixtures of RTL and LTR scripts.
|
|
|
|
|
*/
|
|
|
|
|
HRESULT WINAPI ScriptLayout(int runs, const BYTE *level, int *vistolog, int *logtovis)
|
|
|
|
|
{
|
2010-04-13 21:49:20 +02:00
|
|
|
|
int* indexs;
|
|
|
|
|
int ich;
|
2006-09-28 17:00:19 +02:00
|
|
|
|
|
2007-01-02 15:31:34 +01:00
|
|
|
|
TRACE("(%d, %p, %p, %p)\n", runs, level, vistolog, logtovis);
|
2006-09-28 17:00:19 +02:00
|
|
|
|
|
|
|
|
|
if (!level || (!vistolog && !logtovis))
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
2010-04-13 21:49:20 +02:00
|
|
|
|
indexs = heap_alloc(sizeof(int) * runs);
|
|
|
|
|
if (!indexs)
|
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (vistolog)
|
2006-09-28 17:00:19 +02:00
|
|
|
|
{
|
2010-04-13 21:49:20 +02: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);
|
|
|
|
|
for (ich = 0; ich < runs; ich++)
|
|
|
|
|
vistolog[ich] = indexs[ich];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
for (ich = 0; ich < runs; ich++)
|
|
|
|
|
logtovis[ich] = indexs[ich];
|
2006-09-28 17:00:19 +02:00
|
|
|
|
}
|
2010-04-13 21:49:20 +02:00
|
|
|
|
heap_free(indexs);
|
|
|
|
|
|
2006-09-28 17:00:19 +02:00
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
2006-10-06 12:43:49 +02:00
|
|
|
|
|
2006-12-24 12:47:15 +01: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;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
{
|
|
|
|
|
for (j = 0; j < analysis->glyphs[i].numGlyphs; j++)
|
|
|
|
|
{
|
|
|
|
|
piDx[next] = analysis->glyphs[i].piAdvance[j];
|
|
|
|
|
next++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-06 12:43:49 +02: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 15:26:32 +01:00
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return E_INVALIDARG;
|
|
|
|
|
return (analysis->invalid) ? S_FALSE : S_OK;
|
2006-10-06 12:43:49 +02:00
|
|
|
|
}
|
2006-12-23 11:07:55 +01: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 22:28:04 +01:00
|
|
|
|
int i, j;
|
2006-12-23 11:07:55 +01:00
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return NULL;
|
|
|
|
|
|
|
|
|
|
if (!analysis->sz)
|
|
|
|
|
{
|
2007-12-10 23:53:07 +01:00
|
|
|
|
if (!(analysis->sz = heap_alloc(sizeof(SIZE)))) return NULL;
|
2007-12-12 19:11:28 +01:00
|
|
|
|
analysis->sz->cy = analysis->sc->tm.tmHeight;
|
2006-12-23 11:07:55 +01:00
|
|
|
|
|
|
|
|
|
analysis->sz->cx = 0;
|
|
|
|
|
for (i = 0; i < analysis->numItems; i++)
|
|
|
|
|
for (j = 0; j < analysis->glyphs[i].numGlyphs; j++)
|
|
|
|
|
analysis->sz->cx += analysis->glyphs[i].piAdvance[j];
|
|
|
|
|
}
|
|
|
|
|
return analysis->sz;
|
|
|
|
|
}
|
2006-12-23 17:19:31 +01: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;
|
|
|
|
|
return analysis->logattrs;
|
|
|
|
|
}
|
2007-01-03 12:12:29 +01: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 22:28:04 +01:00
|
|
|
|
int i, j;
|
|
|
|
|
unsigned int k;
|
2007-01-03 12:12:29 +01:00
|
|
|
|
StringAnalysis *analysis = ssa;
|
|
|
|
|
|
|
|
|
|
TRACE("(%p)\n", ssa);
|
|
|
|
|
|
|
|
|
|
if (!analysis) return S_FALSE;
|
|
|
|
|
|
|
|
|
|
/* 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 19:38:07 +01: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 13:07:36 +01: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 13:08:08 +01: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;
|
|
|
|
|
}
|