usp10: Update pwLogClust with glyph transformations.
[wine] / dlls / usp10 / usp10_internal.h
1 /*
2  * Implementation of Uniscribe Script Processor (usp10.dll)
3  *
4  * Copyright 2010 CodeWeavers, Aric Stewart
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  */
21
22 #define Script_Latin   1
23 #define Script_CR      2
24 #define Script_Numeric 3
25 #define Script_Control 4
26 #define Script_Punctuation 5
27 #define Script_Arabic  6
28 #define Script_Arabic_Numeric  7
29 #define Script_Hebrew  8
30 #define Script_Syriac  9
31 #define Script_Persian 10
32
33 #define GLYPH_BLOCK_SHIFT 8
34 #define GLYPH_BLOCK_SIZE  (1UL << GLYPH_BLOCK_SHIFT)
35 #define GLYPH_BLOCK_MASK  (GLYPH_BLOCK_SIZE - 1)
36 #define GLYPH_MAX         65536
37
38 typedef struct {
39     char    tag[4];
40     LPCVOID  feature;
41 } LoadedFeature;
42
43 typedef struct {
44     LOGFONTW lf;
45     TEXTMETRICW tm;
46     WORD *glyphs[GLYPH_MAX / GLYPH_BLOCK_SIZE];
47     ABC *widths[GLYPH_MAX / GLYPH_BLOCK_SIZE];
48     LPVOID GSUB_Table;
49     INT feature_count;
50     LoadedFeature *features;
51 } ScriptCache;
52
53 #define odd(x) ((x) & 1)
54
55 BOOL BIDI_DetermineLevels( LPCWSTR lpString, INT uCount, const SCRIPT_STATE *s,
56                 const SCRIPT_CONTROL *c, WORD *lpOutLevels );
57
58 INT BIDI_ReorderV2lLevel(int level, int *pIndexs, const BYTE* plevel, int cch, BOOL fReverse);
59 INT BIDI_ReorderL2vLevel(int level, int *pIndexs, const BYTE* plevel, int cch, BOOL fReverse);
60 void SHAPE_ContextualShaping(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WCHAR* pwcChars, INT cChars, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, WORD *pwLogClust);
61 void SHAPE_ApplyDefaultOpentypeFeatures(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *psa, WORD* pwOutGlyphs, INT* pcGlyphs, INT cMaxGlyphs, INT cChars, WORD *pwLogClust);