558f768bbe
X-SVN-Rev: 3316
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
/*
|
|
* @(#)SegmentSingleProcessor.cpp 1.6 00/03/15
|
|
*
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "MorphTables.h"
|
|
#include "SubtableProcessor.h"
|
|
#include "NonContextualGlyphSubst.h"
|
|
#include "NonContextualGlyphSubstProc.h"
|
|
#include "SegmentSingleProcessor.h"
|
|
#include "LESwaps.h"
|
|
|
|
SegmentSingleProcessor::SegmentSingleProcessor()
|
|
{
|
|
}
|
|
|
|
SegmentSingleProcessor::SegmentSingleProcessor(MorphSubtableHeader *morphSubtableHeader)
|
|
: NonContextualGlyphSubstitutionProcessor(morphSubtableHeader)
|
|
{
|
|
NonContextualGlyphSubstitutionHeader *header = (NonContextualGlyphSubstitutionHeader *) morphSubtableHeader;
|
|
|
|
segmentSingleLookupTable = (SegmentSingleLookupTable *) &header->table;
|
|
}
|
|
|
|
SegmentSingleProcessor::~SegmentSingleProcessor()
|
|
{
|
|
}
|
|
|
|
void SegmentSingleProcessor::process(LEGlyphID *glyphs, le_int32 *charIndices, le_int32 glyphCount)
|
|
{
|
|
LookupSegment *segments = segmentSingleLookupTable->segments;
|
|
le_int32 glyph;
|
|
|
|
for (glyph = 0; glyph < glyphCount; glyph += 1)
|
|
{
|
|
LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segments, glyphs[glyph]);
|
|
|
|
if (lookupSegment != NULL)
|
|
{
|
|
glyphs[glyph] += SWAPW(lookupSegment->value);
|
|
}
|
|
}
|
|
}
|