blob: d69aac0efe9efcf7d6af8f6611a7aad8b38237a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
*
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
*
*/
#include "LETypes.h"
#include "OpenTypeTables.h"
#include "OpenTypeUtilities.h"
#include "ClassDefinitionTables.h"
#include "LESwaps.h"
U_NAMESPACE_BEGIN
le_int32 ClassDefinitionTable::getGlyphClass(LEGlyphID glyphID) const
{
switch(SWAPW(classFormat)) {
case 0:
return 0;
case 1:
{
const ClassDefFormat1Table *f1Table = (const ClassDefFormat1Table *) this;
return f1Table->getGlyphClass(glyphID);
}
case 2:
{
const ClassDefFormat2Table *f2Table = (const ClassDefFormat2Table *) this;
return f2Table->getGlyphClass(glyphID);
}
default:
return 0;
}
}
le_bool ClassDefinitionTable::hasGlyphClass(le_int32 glyphClass) const
{
switch(SWAPW(classFormat)) {
case 0:
return 0;
case 1:
{
const ClassDefFormat1Table *f1Table = (const ClassDefFormat1Table *) this;
return f1Table->hasGlyphClass(glyphClass);
}
case 2:
{
const ClassDefFormat2Table *f2Table = (const ClassDefFormat2Table *) this;
return f2Table->hasGlyphClass(glyphClass);
}
default:
return 0;
}
}
le_int32 ClassDefFormat1Table::getGlyphClass(LEGlyphID glyphID) const
{
TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
TTGlyphID firstGlyph = SWAPW(startGlyph);
TTGlyphID lastGlyph = firstGlyph + SWAPW(glyphCount);
if (ttGlyphID > firstGlyph && ttGlyphID < lastGlyph) {
return SWAPW(classValueArray[ttGlyphID - firstGlyph]);
}
return 0;
}
le_bool ClassDefFormat1Table::hasGlyphClass(le_int32 glyphClass) const
{
le_uint16 count = SWAPW(glyphCount);
int i;
for (i = 0; i < count; i += 1) {
if (SWAPW(classValueArray[i]) == glyphClass) {
return TRUE;
}
}
return FALSE;
}
le_int32 ClassDefFormat2Table::getGlyphClass(LEGlyphID glyphID) const
{
TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyphID);
le_uint16 rangeCount = SWAPW(classRangeCount);
le_int32 rangeIndex =
OpenTypeUtilities::getGlyphRangeIndex(ttGlyph, classRangeRecordArray, rangeCount);
if (rangeIndex < 0) {
return 0;
}
return SWAPW(classRangeRecordArray[rangeIndex].rangeValue);
}
le_bool ClassDefFormat2Table::hasGlyphClass(le_int32 glyphClass) const
{
le_uint16 rangeCount = SWAPW(classRangeCount);
int i;
for (i = 0; i < rangeCount; i += 1) {
if (SWAPW(classRangeRecordArray[i].rangeValue) == glyphClass) {
return TRUE;
}
}
return FALSE;
}
U_NAMESPACE_END
|