3 * (C) Copyright IBM Corp. and others 1998-2015 - All Rights Reserved
8 #include "MorphTables.h"
9 #include "SubtableProcessor2.h"
10 #include "NonContextualGlyphSubst.h"
11 #include "NonContextualGlyphSubstProc2.h"
12 #include "SegmentSingleProcessor2.h"
13 #include "LEGlyphStorage.h"
18 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SegmentSingleProcessor2
)
20 SegmentSingleProcessor2::SegmentSingleProcessor2()
24 SegmentSingleProcessor2::SegmentSingleProcessor2(const LEReferenceTo
<MorphSubtableHeader2
> &morphSubtableHeader
, LEErrorCode
&success
)
25 : NonContextualGlyphSubstitutionProcessor2(morphSubtableHeader
, success
)
27 const LEReferenceTo
<NonContextualGlyphSubstitutionHeader2
> header(morphSubtableHeader
, success
);
29 segmentSingleLookupTable
= LEReferenceTo
<SegmentSingleLookupTable
>(morphSubtableHeader
, success
, &header
->table
);
32 SegmentSingleProcessor2::~SegmentSingleProcessor2()
36 void SegmentSingleProcessor2::process(LEGlyphStorage
&glyphStorage
, LEErrorCode
&success
)
38 const LookupSegment
*segments
= segmentSingleLookupTable
->segments
;
39 le_int32 glyphCount
= glyphStorage
.getGlyphCount();
42 if (LE_FAILURE(success
)) return;
44 for (glyph
= 0; glyph
< glyphCount
; glyph
+= 1) {
45 LEGlyphID thisGlyph
= glyphStorage
[glyph
];
46 const LookupSegment
*lookupSegment
= segmentSingleLookupTable
->lookupSegment(segmentSingleLookupTable
, segments
, thisGlyph
, success
);
48 if (lookupSegment
!= NULL
&& LE_SUCCESS(success
)) {
49 TTGlyphID newGlyph
= (TTGlyphID
) LE_GET_GLYPH(thisGlyph
) + SWAPW(lookupSegment
->value
);
51 glyphStorage
[glyph
] = LE_SET_GLYPH(thisGlyph
, newGlyph
);