3 * (C) Copyright IBM Corp. and others 1998-2013 - All Rights Reserved
8 #include "MorphTables.h"
9 #include "SubtableProcessor2.h"
10 #include "NonContextualGlyphSubst.h"
11 #include "NonContextualGlyphSubstProc2.h"
12 #include "SingleTableProcessor2.h"
13 #include "LEGlyphStorage.h"
18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SingleTableProcessor2
)
20 SingleTableProcessor2::SingleTableProcessor2()
24 SingleTableProcessor2::SingleTableProcessor2(const MorphSubtableHeader2
*moprhSubtableHeader
)
25 : NonContextualGlyphSubstitutionProcessor2(moprhSubtableHeader
)
27 const NonContextualGlyphSubstitutionHeader2
*header
= (const NonContextualGlyphSubstitutionHeader2
*) moprhSubtableHeader
;
29 singleTableLookupTable
= (const SingleTableLookupTable
*) &header
->table
;
32 SingleTableProcessor2::~SingleTableProcessor2()
36 void SingleTableProcessor2::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
);