2000-11-28 20:56:52 +00:00
|
|
|
/*
|
2000-12-21 02:44:45 +00:00
|
|
|
* @(#)ContextualGlyphSubstProc.cpp 1.6 00/03/15
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
2001-01-19 00:30:17 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "MorphTables.h"
|
|
|
|
#include "StateTables.h"
|
|
|
|
#include "MorphStateTables.h"
|
|
|
|
#include "SubtableProcessor.h"
|
|
|
|
#include "StateTableProcessor.h"
|
2000-12-21 02:44:45 +00:00
|
|
|
#include "ContextualGlyphSubstProc.h"
|
2000-11-28 20:56:52 +00:00
|
|
|
#include "LESwaps.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
ContextualGlyphSubstitutionProcessor::ContextualGlyphSubstitutionProcessor(const MorphSubtableHeader *morphSubtableHeader)
|
2000-11-28 20:56:52 +00:00
|
|
|
: StateTableProcessor(morphSubtableHeader)
|
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
contextualGlyphSubstitutionHeader = (const ContextualGlyphSubstitutionHeader *) morphSubtableHeader;
|
2000-11-28 20:56:52 +00:00
|
|
|
substitutionTableOffset = SWAPW(contextualGlyphSubstitutionHeader->substitutionTableOffset);
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
entryTable = (const ContextualGlyphSubstitutionStateEntry *) ((char *) &stateTableHeader->stHeader + entryTableOffset);
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ContextualGlyphSubstitutionProcessor::~ContextualGlyphSubstitutionProcessor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextualGlyphSubstitutionProcessor::beginStateTable()
|
|
|
|
{
|
|
|
|
markGlyph = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ByteOffset ContextualGlyphSubstitutionProcessor::processStateEntry(LEGlyphID *glyphs, le_int32 * charIndices, le_int32 &currGlyph, le_int32 glyphCount, EntryTableIndex index)
|
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
const ContextualGlyphSubstitutionStateEntry *entry = &entryTable[index];
|
2000-11-28 20:56:52 +00:00
|
|
|
ByteOffset newState = SWAPW(entry->newStateOffset);
|
|
|
|
le_int16 flags = SWAPW(entry->flags);
|
|
|
|
WordOffset markOffset = SWAPW(entry->markOffset);
|
|
|
|
WordOffset currOffset = SWAPW(entry->currOffset);
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (markOffset != 0) {
|
|
|
|
const le_int16 *table = (const le_int16 *) ((char *) &stateTableHeader->stHeader + markOffset * 2);
|
2000-11-28 20:56:52 +00:00
|
|
|
le_int16 newGlyph = table[glyphs[markGlyph]];
|
|
|
|
|
|
|
|
glyphs[markGlyph] = SWAPW(newGlyph);
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (currOffset != 0) {
|
|
|
|
const le_int16 *table = (const le_int16 *) ((char *) &stateTableHeader->stHeader + currOffset * 2);
|
2000-11-28 20:56:52 +00:00
|
|
|
le_int16 newGlyph = table[glyphs[currGlyph]];
|
|
|
|
|
|
|
|
glyphs[currGlyph] = SWAPW(newGlyph);
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (flags & cgsSetMark) {
|
2000-11-28 20:56:52 +00:00
|
|
|
markGlyph = currGlyph;
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (!(flags & cgsDontAdvance)) {
|
2000-11-28 20:56:52 +00:00
|
|
|
// should handle reverse too!
|
|
|
|
currGlyph += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newState;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextualGlyphSubstitutionProcessor::endStateTable()
|
|
|
|
{
|
|
|
|
}
|
2001-10-16 00:39:01 +00:00
|
|
|
|
|
|
|
U_NAMESPACE_END
|