]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | /* |
b75a7d8f | 2 | * |
374ca955 | 3 | * (C) Copyright IBM Corp. 1998-2004 - 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 "SegmentSingleProcessor.h" | |
374ca955 | 13 | #include "LEGlyphStorage.h" |
b75a7d8f A |
14 | #include "LESwaps.h" |
15 | ||
16 | U_NAMESPACE_BEGIN | |
17 | ||
374ca955 | 18 | UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SegmentSingleProcessor) |
b75a7d8f A |
19 | |
20 | SegmentSingleProcessor::SegmentSingleProcessor() | |
21 | { | |
22 | } | |
23 | ||
24 | SegmentSingleProcessor::SegmentSingleProcessor(const MorphSubtableHeader *morphSubtableHeader) | |
25 | : NonContextualGlyphSubstitutionProcessor(morphSubtableHeader) | |
26 | { | |
27 | const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader; | |
28 | ||
29 | segmentSingleLookupTable = (const SegmentSingleLookupTable *) &header->table; | |
30 | } | |
31 | ||
32 | SegmentSingleProcessor::~SegmentSingleProcessor() | |
33 | { | |
34 | } | |
35 | ||
374ca955 | 36 | void SegmentSingleProcessor::process(LEGlyphStorage &glyphStorage) |
b75a7d8f A |
37 | { |
38 | const LookupSegment *segments = segmentSingleLookupTable->segments; | |
374ca955 | 39 | le_int32 glyphCount = glyphStorage.getGlyphCount(); |
b75a7d8f A |
40 | le_int32 glyph; |
41 | ||
42 | for (glyph = 0; glyph < glyphCount; glyph += 1) { | |
374ca955 A |
43 | LEGlyphID thisGlyph = glyphStorage[glyph]; |
44 | const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segments, thisGlyph); | |
b75a7d8f A |
45 | |
46 | if (lookupSegment != NULL) { | |
374ca955 | 47 | TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value); |
b75a7d8f | 48 | |
374ca955 | 49 | glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph); |
b75a7d8f A |
50 | } |
51 | } | |
52 | } | |
53 | ||
54 | U_NAMESPACE_END |