blob: 7d49db2a72d973fb4cb867114d82bc004d4ae97e [file] [log] [blame]
/*
* @(#)SegmentSingleProcessor.cpp 1.6 00/03/15
*
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
*
*/
#include "LETypes.h"
#include "MorphTables.h"
#include "SubtableProcessor.h"
#include "NonContextualGlyphSubst.h"
#include "NonContextualGlyphSubstProc.h"
#include "SegmentSingleProcessor.h"
#include "LESwaps.h"
U_NAMESPACE_BEGIN
SegmentSingleProcessor::SegmentSingleProcessor()
{
}
SegmentSingleProcessor::SegmentSingleProcessor(const MorphSubtableHeader *morphSubtableHeader)
: NonContextualGlyphSubstitutionProcessor(morphSubtableHeader)
{
const NonContextualGlyphSubstitutionHeader *header = (const NonContextualGlyphSubstitutionHeader *) morphSubtableHeader;
segmentSingleLookupTable = (const SegmentSingleLookupTable *) &header->table;
}
SegmentSingleProcessor::~SegmentSingleProcessor()
{
}
void SegmentSingleProcessor::process(LEGlyphID *glyphs, le_int32 *charIndices, le_int32 glyphCount)
{
const LookupSegment *segments = segmentSingleLookupTable->segments;
le_int32 glyph;
for (glyph = 0; glyph < glyphCount; glyph += 1) {
const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segments, glyphs[glyph]);
if (lookupSegment != NULL) {
glyphs[glyph] += SWAPW(lookupSegment->value);
}
}
}
U_NAMESPACE_END