sl@0
|
1 |
/*
|
sl@0
|
2 |
*
|
sl@0
|
3 |
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
|
sl@0
|
4 |
*
|
sl@0
|
5 |
*/
|
sl@0
|
6 |
|
sl@0
|
7 |
#include "LETypes.h"
|
sl@0
|
8 |
#include "MorphTables.h"
|
sl@0
|
9 |
#include "SubtableProcessor.h"
|
sl@0
|
10 |
#include "NonContextualGlyphSubst.h"
|
sl@0
|
11 |
#include "NonContextualGlyphSubstProc.h"
|
sl@0
|
12 |
#include "TrimmedArrayProcessor.h"
|
sl@0
|
13 |
#include "LEGlyphStorage.h"
|
sl@0
|
14 |
#include "LESwaps.h"
|
sl@0
|
15 |
|
sl@0
|
16 |
U_NAMESPACE_BEGIN
|
sl@0
|
17 |
|
sl@0
|
18 |
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(TrimmedArrayProcessor)
|
sl@0
|
19 |
|
sl@0
|
20 |
TrimmedArrayProcessor::TrimmedArrayProcessor()
|
sl@0
|
21 |
{
|
sl@0
|
22 |
}
|
sl@0
|
23 |
|
sl@0
|
24 |
TrimmedArrayProcessor::TrimmedArrayProcessor(const MorphSubtableHeader *morphSubtableHeader)
|
sl@0
|
25 |
: NonContextualGlyphSubstitutionProcessor(morphSubtableHeader)
|
sl@0
|
26 |
{
|
sl@0
|
27 |
const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader;
|
sl@0
|
28 |
|
sl@0
|
29 |
trimmedArrayLookupTable = (const TrimmedArrayLookupTable *) &header->table;
|
sl@0
|
30 |
firstGlyph = SWAPW(trimmedArrayLookupTable->firstGlyph);
|
sl@0
|
31 |
lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount);
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
TrimmedArrayProcessor::~TrimmedArrayProcessor()
|
sl@0
|
35 |
{
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
void TrimmedArrayProcessor::process(LEGlyphStorage &glyphStorage)
|
sl@0
|
39 |
{
|
sl@0
|
40 |
le_int32 glyphCount = glyphStorage.getGlyphCount();
|
sl@0
|
41 |
le_int32 glyph;
|
sl@0
|
42 |
|
sl@0
|
43 |
for (glyph = 0; glyph < glyphCount; glyph += 1) {
|
sl@0
|
44 |
LEGlyphID thisGlyph = glyphStorage[glyph];
|
sl@0
|
45 |
TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph);
|
sl@0
|
46 |
|
sl@0
|
47 |
if ((ttGlyph > firstGlyph) && (ttGlyph < lastGlyph)) {
|
sl@0
|
48 |
TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]);
|
sl@0
|
49 |
|
sl@0
|
50 |
glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
}
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
U_NAMESPACE_END
|