3 * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
8 #include "MorphTables.h"
9 #include "SubtableProcessor.h"
10 #include "NonContextualGlyphSubst.h"
11 #include "NonContextualGlyphSubstProc.h"
12 #include "SingleTableProcessor.h"
13 #include "LEGlyphStorage.h"
18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SingleTableProcessor
)
20 SingleTableProcessor::SingleTableProcessor()
24 SingleTableProcessor::SingleTableProcessor(const MorphSubtableHeader
*moprhSubtableHeader
)
25 : NonContextualGlyphSubstitutionProcessor(moprhSubtableHeader
)
27 const NonContextualGlyphSubstitutionHeader
*header
= (const NonContextualGlyphSubstitutionHeader
*) moprhSubtableHeader
;
29 singleTableLookupTable
= (const SingleTableLookupTable
*) &header
->table
;
32 SingleTableProcessor::~SingleTableProcessor()
36 void SingleTableProcessor::process(LEGlyphStorage
&glyphStorage
)
38 const LookupSingle
*entries
= singleTableLookupTable
->entries
;
40 le_int32 glyphCount
= glyphStorage
.getGlyphCount();
42 for (glyph
= 0; glyph
< glyphCount
; glyph
+= 1) {
43 const LookupSingle
*lookupSingle
= singleTableLookupTable
->lookupSingle(entries
, glyphStorage
[glyph
]);
45 if (lookupSingle
!= NULL
) {
46 glyphStorage
[glyph
] = SWAPW(lookupSingle
->value
);