]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | /* |
b75a7d8f | 2 | * |
57a6839d | 3 | * (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved |
b75a7d8f A |
4 | * |
5 | */ | |
6 | ||
7 | #include "LETypes.h" | |
8 | #include "MorphTables.h" | |
9 | #include "SubtableProcessor.h" | |
10 | #include "NonContextualGlyphSubst.h" | |
11 | #include "NonContextualGlyphSubstProc.h" | |
12 | #include "SimpleArrayProcessor.h" | |
374ca955 | 13 | #include "LEGlyphStorage.h" |
b75a7d8f A |
14 | #include "LESwaps.h" |
15 | ||
16 | U_NAMESPACE_BEGIN | |
17 | ||
374ca955 | 18 | UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SimpleArrayProcessor) |
b75a7d8f A |
19 | |
20 | SimpleArrayProcessor::SimpleArrayProcessor() | |
21 | { | |
22 | } | |
23 | ||
57a6839d A |
24 | SimpleArrayProcessor::SimpleArrayProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success) |
25 | : NonContextualGlyphSubstitutionProcessor(morphSubtableHeader, success) | |
b75a7d8f | 26 | { |
57a6839d A |
27 | LEReferenceTo<NonContextualGlyphSubstitutionHeader> header(morphSubtableHeader, success); |
28 | simpleArrayLookupTable = LEReferenceTo<SimpleArrayLookupTable>(morphSubtableHeader, success, (const SimpleArrayLookupTable*)&header->table); | |
b75a7d8f A |
29 | } |
30 | ||
31 | SimpleArrayProcessor::~SimpleArrayProcessor() | |
32 | { | |
33 | } | |
34 | ||
57a6839d | 35 | void SimpleArrayProcessor::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) |
b75a7d8f | 36 | { |
374ca955 | 37 | le_int32 glyphCount = glyphStorage.getGlyphCount(); |
b75a7d8f | 38 | le_int32 glyph; |
57a6839d A |
39 | |
40 | LEReferenceToArrayOf<LookupValue> valueArray(simpleArrayLookupTable, success, (const LookupValue*)&simpleArrayLookupTable->valueArray, LE_UNBOUNDED_ARRAY); | |
b75a7d8f | 41 | |
57a6839d | 42 | for (glyph = 0; LE_SUCCESS(success) && (glyph < glyphCount); glyph += 1) { |
374ca955 A |
43 | LEGlyphID thisGlyph = glyphStorage[glyph]; |
44 | if (LE_GET_GLYPH(thisGlyph) < 0xFFFF) { | |
57a6839d A |
45 | TTGlyphID newGlyph = SWAPW(valueArray.getObject(LE_GET_GLYPH(thisGlyph),success)); |
46 | glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph); | |
b75a7d8f A |
47 | } |
48 | } | |
49 | } | |
50 | ||
51 | U_NAMESPACE_END |