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 "SegmentArrayProcessor.h"
13 #include "LEGlyphStorage.h"
18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SegmentArrayProcessor
)
20 SegmentArrayProcessor::SegmentArrayProcessor()
24 SegmentArrayProcessor::SegmentArrayProcessor(const MorphSubtableHeader
*morphSubtableHeader
)
25 : NonContextualGlyphSubstitutionProcessor(morphSubtableHeader
)
27 const NonContextualGlyphSubstitutionHeader
*header
= (const NonContextualGlyphSubstitutionHeader
*) morphSubtableHeader
;
29 segmentArrayLookupTable
= (const SegmentArrayLookupTable
*) &header
->table
;
32 SegmentArrayProcessor::~SegmentArrayProcessor()
36 void SegmentArrayProcessor::process(LEGlyphStorage
&glyphStorage
)
38 const LookupSegment
*segments
= segmentArrayLookupTable
->segments
;
39 le_int32 glyphCount
= glyphStorage
.getGlyphCount();
42 for (glyph
= 0; glyph
< glyphCount
; glyph
+= 1) {
43 LEGlyphID thisGlyph
= glyphStorage
[glyph
];
44 const LookupSegment
*lookupSegment
= segmentArrayLookupTable
->lookupSegment(segments
, thisGlyph
);
46 if (lookupSegment
!= NULL
) {
47 TTGlyphID firstGlyph
= SWAPW(lookupSegment
->firstGlyph
);
48 le_int16 offset
= SWAPW(lookupSegment
->value
);
51 TTGlyphID
*glyphArray
= (TTGlyphID
*) ((char *) subtableHeader
+ offset
);
52 TTGlyphID newGlyph
= SWAPW(glyphArray
[LE_GET_GLYPH(thisGlyph
) - firstGlyph
]);
54 glyphStorage
[glyph
] = LE_SET_GLYPH(thisGlyph
, newGlyph
);