2000-11-28 20:56:52 +00:00
|
|
|
/*
|
|
|
|
*
|
2004-04-12 18:51:31 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
#include "GlyphDefinitionTables.h"
|
|
|
|
#include "GlyphPositionAdjustments.h"
|
|
|
|
#include "GlyphIterator.h"
|
2004-04-12 18:51:31 +00:00
|
|
|
#include "LEGlyphStorage.h"
|
2000-11-28 20:56:52 +00:00
|
|
|
#include "Lookups.h"
|
|
|
|
#include "LESwaps.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2004-04-12 18:51:31 +00:00
|
|
|
GlyphIterator::GlyphIterator(LEGlyphStorage &theGlyphStorage, GlyphPositionAdjustment *theGlyphPositionAdjustments, le_bool rightToLeft, le_uint16 theLookupFlags, LETag theFeatureTag,
|
2001-01-19 00:30:17 +00:00
|
|
|
const GlyphDefinitionTableHeader *theGlyphDefinitionTableHeader)
|
2004-04-12 18:51:31 +00:00
|
|
|
: direction(1), position(-1), nextLimit(-1), prevLimit(-1),
|
2002-06-10 23:40:33 +00:00
|
|
|
cursiveFirstPosition(-1), cursiveLastPosition(-1), cursiveBaselineAdjustment(0),
|
2004-04-12 18:51:31 +00:00
|
|
|
glyphStorage(theGlyphStorage), glyphPositionAdjustments(theGlyphPositionAdjustments),
|
|
|
|
srcIndex(-1), destIndex(-1), lookupFlags(theLookupFlags), featureTag(theFeatureTag),
|
|
|
|
glyphClassDefinitionTable(NULL), markAttachClassDefinitionTable(NULL)
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
{
|
2004-05-07 23:29:16 +00:00
|
|
|
le_int32 glyphCount = glyphStorage.getGlyphCount();
|
2004-04-12 18:51:31 +00:00
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (theGlyphDefinitionTableHeader != NULL) {
|
2000-11-28 20:56:52 +00:00
|
|
|
glyphClassDefinitionTable = theGlyphDefinitionTableHeader->getGlyphClassDefinitionTable();
|
|
|
|
markAttachClassDefinitionTable = theGlyphDefinitionTableHeader->getMarkAttachClassDefinitionTable();
|
|
|
|
}
|
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
nextLimit = glyphCount;
|
2004-04-12 18:51:31 +00:00
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (rightToLeft) {
|
2000-11-28 20:56:52 +00:00
|
|
|
direction = -1;
|
2004-04-12 18:51:31 +00:00
|
|
|
position = glyphCount;
|
2000-11-28 20:56:52 +00:00
|
|
|
nextLimit = -1;
|
2004-04-12 18:51:31 +00:00
|
|
|
prevLimit = glyphCount;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GlyphIterator::GlyphIterator(GlyphIterator &that)
|
2004-04-12 18:51:31 +00:00
|
|
|
: glyphStorage(that.glyphStorage)
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2002-06-10 23:40:33 +00:00
|
|
|
direction = that.direction;
|
|
|
|
position = that.position;
|
|
|
|
nextLimit = that.nextLimit;
|
|
|
|
prevLimit = that.prevLimit;
|
|
|
|
|
|
|
|
cursiveFirstPosition = that.cursiveFirstPosition;
|
|
|
|
cursiveLastPosition = that.cursiveLastPosition;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
glyphPositionAdjustments = that.glyphPositionAdjustments;
|
2003-11-25 23:41:24 +00:00
|
|
|
srcIndex = that.srcIndex;
|
|
|
|
destIndex = that.destIndex;
|
2000-11-28 20:56:52 +00:00
|
|
|
lookupFlags = that.lookupFlags;
|
|
|
|
featureTag = that.featureTag;
|
|
|
|
glyphClassDefinitionTable = that.glyphClassDefinitionTable;
|
|
|
|
markAttachClassDefinitionTable = that.markAttachClassDefinitionTable;
|
|
|
|
}
|
|
|
|
|
2003-03-07 23:33:41 +00:00
|
|
|
GlyphIterator::GlyphIterator(GlyphIterator &that, LETag newFeatureTag)
|
2004-04-12 18:51:31 +00:00
|
|
|
: glyphStorage(that.glyphStorage)
|
2003-03-07 23:33:41 +00:00
|
|
|
{
|
|
|
|
direction = that.direction;
|
|
|
|
position = that.position;
|
|
|
|
nextLimit = that.nextLimit;
|
|
|
|
prevLimit = that.prevLimit;
|
|
|
|
|
|
|
|
cursiveFirstPosition = that.cursiveFirstPosition;
|
|
|
|
cursiveLastPosition = that.cursiveLastPosition;
|
|
|
|
|
|
|
|
glyphPositionAdjustments = that.glyphPositionAdjustments;
|
2004-05-07 23:29:16 +00:00
|
|
|
srcIndex = that.srcIndex;
|
|
|
|
destIndex = that.destIndex;
|
2003-03-07 23:33:41 +00:00
|
|
|
lookupFlags = that.lookupFlags;
|
|
|
|
featureTag = newFeatureTag;
|
|
|
|
glyphClassDefinitionTable = that.glyphClassDefinitionTable;
|
|
|
|
markAttachClassDefinitionTable = that.markAttachClassDefinitionTable;
|
|
|
|
}
|
|
|
|
|
2000-11-28 20:56:52 +00:00
|
|
|
GlyphIterator::GlyphIterator(GlyphIterator &that, le_uint16 newLookupFlags)
|
2004-04-12 18:51:31 +00:00
|
|
|
: glyphStorage(that.glyphStorage)
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2002-06-10 23:40:33 +00:00
|
|
|
direction = that.direction;
|
|
|
|
position = that.position;
|
|
|
|
nextLimit = that.nextLimit;
|
|
|
|
prevLimit = that.prevLimit;
|
|
|
|
|
|
|
|
|
|
|
|
cursiveFirstPosition = that.cursiveFirstPosition;
|
|
|
|
cursiveLastPosition = that.cursiveLastPosition;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
glyphPositionAdjustments = that.glyphPositionAdjustments;
|
2004-05-07 23:29:16 +00:00
|
|
|
srcIndex = that.srcIndex;
|
|
|
|
destIndex = that.destIndex;
|
2000-11-28 20:56:52 +00:00
|
|
|
lookupFlags = newLookupFlags;
|
|
|
|
featureTag = that.featureTag;
|
|
|
|
glyphClassDefinitionTable = that.glyphClassDefinitionTable;
|
|
|
|
markAttachClassDefinitionTable = that.markAttachClassDefinitionTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
GlyphIterator::~GlyphIterator()
|
|
|
|
{
|
2004-05-07 23:29:16 +00:00
|
|
|
// nothing to do, right?
|
2003-09-24 21:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::reset(le_uint16 newLookupFlags, LETag newFeatureTag)
|
|
|
|
{
|
2004-05-07 23:29:16 +00:00
|
|
|
position = prevLimit;
|
|
|
|
featureTag = newFeatureTag;
|
|
|
|
lookupFlags = newLookupFlags;
|
2003-09-24 21:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LEGlyphID *GlyphIterator::insertGlyphs(le_int32 count)
|
|
|
|
{
|
2004-05-07 23:29:16 +00:00
|
|
|
return glyphStorage.insertGlyphs(position, count);
|
2003-09-24 21:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
le_int32 GlyphIterator::applyInsertions()
|
|
|
|
{
|
2004-05-07 23:29:16 +00:00
|
|
|
le_int32 newGlyphCount = glyphStorage.applyInsertions();
|
2003-09-24 21:05:40 +00:00
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
if (direction < 0) {
|
|
|
|
prevLimit = newGlyphCount;
|
|
|
|
} else {
|
|
|
|
nextLimit = newGlyphCount;
|
|
|
|
}
|
2003-09-24 21:05:40 +00:00
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
return newGlyphCount;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_int32 GlyphIterator::getCurrStreamPosition() const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
|
|
|
return position;
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_bool GlyphIterator::isRightToLeft() const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
|
|
|
return direction < 0;
|
|
|
|
}
|
|
|
|
|
2001-09-20 00:37:55 +00:00
|
|
|
le_bool GlyphIterator::ignoresMarks() const
|
|
|
|
{
|
|
|
|
return (lookupFlags & lfIgnoreMarks) != 0;
|
|
|
|
}
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
le_bool GlyphIterator::baselineIsLogicalEnd() const
|
|
|
|
{
|
|
|
|
return (lookupFlags & lfBaselineIsLogicalEnd) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
le_bool GlyphIterator::hasCursiveFirstExitPoint() const
|
|
|
|
{
|
|
|
|
return cursiveFirstPosition >= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
le_bool GlyphIterator::hasCursiveLastExitPoint() const
|
|
|
|
{
|
|
|
|
return cursiveLastPosition >= 0;
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
LEGlyphID GlyphIterator::getCurrGlyphID() const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
if (direction < 0) {
|
|
|
|
if (position <= nextLimit || position >= prevLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return 0xFFFF;
|
|
|
|
}
|
2001-01-19 00:30:17 +00:00
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return 0xFFFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
return glyphStorage[position];
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
LEGlyphID GlyphIterator::getCursiveLastGlyphID() const
|
|
|
|
{
|
|
|
|
if (direction < 0) {
|
|
|
|
if (cursiveLastPosition <= nextLimit || cursiveLastPosition >= prevLimit) {
|
|
|
|
return 0xFFFF;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (cursiveLastPosition <= prevLimit || cursiveLastPosition >= nextLimit) {
|
|
|
|
return 0xFFFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
return glyphStorage[cursiveLastPosition];
|
2002-06-10 23:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::getCursiveLastExitPoint(LEPoint &exitPoint) const
|
|
|
|
{
|
|
|
|
if (cursiveLastPosition >= 0) {
|
|
|
|
exitPoint = cursiveLastExitPoint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float GlyphIterator::getCursiveBaselineAdjustment() const
|
|
|
|
{
|
|
|
|
return cursiveBaselineAdjustment;
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
void GlyphIterator::getCurrGlyphPositionAdjustment(GlyphPositionAdjustment &adjustment) const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
|
|
|
if (direction < 0)
|
|
|
|
{
|
|
|
|
if (position <= nextLimit || position >= prevLimit)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2001-01-19 00:30:17 +00:00
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
adjustment = glyphPositionAdjustments[position];
|
|
|
|
}
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
void GlyphIterator::getCursiveLastPositionAdjustment(GlyphPositionAdjustment &adjustment) const
|
|
|
|
{
|
|
|
|
if (direction < 0)
|
|
|
|
{
|
|
|
|
if (cursiveLastPosition <= nextLimit || cursiveLastPosition >= prevLimit)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (cursiveLastPosition <= prevLimit || cursiveLastPosition >= nextLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
adjustment = glyphPositionAdjustments[cursiveLastPosition];
|
|
|
|
}
|
|
|
|
|
2003-02-05 00:05:40 +00:00
|
|
|
void GlyphIterator::setCurrGlyphID(TTGlyphID glyphID)
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2004-05-07 23:29:16 +00:00
|
|
|
LEGlyphID glyph = glyphStorage[position];
|
2004-04-12 18:51:31 +00:00
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
glyphStorage[position] = LE_SET_GLYPH(glyph, glyphID);
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::setCurrStreamPosition(le_int32 newPosition)
|
|
|
|
{
|
2002-06-10 23:40:33 +00:00
|
|
|
cursiveFirstPosition = -1;
|
|
|
|
cursiveLastPosition = -1;
|
|
|
|
cursiveBaselineAdjustment = 0;
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (direction < 0) {
|
|
|
|
if (newPosition >= prevLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
position = prevLimit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (newPosition <= nextLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
position = nextLimit;
|
|
|
|
return;
|
|
|
|
}
|
2001-01-19 00:30:17 +00:00
|
|
|
} else {
|
|
|
|
if (newPosition <= prevLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
position = prevLimit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (newPosition >= nextLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
position = nextLimit;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
position = newPosition - direction;
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::setCurrGlyphPositionAdjustment(const GlyphPositionAdjustment *adjustment)
|
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
if (direction < 0) {
|
|
|
|
if (position <= nextLimit || position >= prevLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-01-19 00:30:17 +00:00
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
glyphPositionAdjustments[position] = *adjustment;
|
|
|
|
}
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
void GlyphIterator::setCurrGlyphBaseOffset(le_int32 baseOffset)
|
|
|
|
{
|
|
|
|
if (direction < 0) {
|
|
|
|
if (position <= nextLimit || position >= prevLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
glyphPositionAdjustments[position].setBaseOffset(baseOffset);
|
|
|
|
}
|
|
|
|
|
2000-11-28 20:56:52 +00:00
|
|
|
void GlyphIterator::adjustCurrGlyphPositionAdjustment(float xPlacementAdjust, float yPlacementAdjust,
|
|
|
|
float xAdvanceAdjust, float yAdvanceAdjust)
|
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
if (direction < 0) {
|
|
|
|
if (position <= nextLimit || position >= prevLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-01-19 00:30:17 +00:00
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
glyphPositionAdjustments[position].adjustXPlacement(xPlacementAdjust);
|
|
|
|
glyphPositionAdjustments[position].adjustYPlacement(yPlacementAdjust);
|
|
|
|
glyphPositionAdjustments[position].adjustXAdvance(xAdvanceAdjust);
|
|
|
|
glyphPositionAdjustments[position].adjustYAdvance(yAdvanceAdjust);
|
|
|
|
}
|
|
|
|
|
2002-06-10 23:40:33 +00:00
|
|
|
void GlyphIterator::setCursiveFirstExitPoint()
|
|
|
|
{
|
|
|
|
if (direction < 0) {
|
|
|
|
if (position <= nextLimit || position >= prevLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cursiveFirstPosition = position;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::resetCursiveLastExitPoint()
|
|
|
|
{
|
|
|
|
if ((lookupFlags & lfBaselineIsLogicalEnd) != 0 && cursiveFirstPosition >= 0 && cursiveLastPosition >= 0) {
|
|
|
|
le_int32 savePosition = position, saveLimit = nextLimit;
|
|
|
|
|
|
|
|
position = cursiveFirstPosition - direction;
|
|
|
|
nextLimit = cursiveLastPosition + direction;
|
|
|
|
|
|
|
|
while (nextInternal()) {
|
|
|
|
glyphPositionAdjustments[position].adjustYPlacement(-cursiveBaselineAdjustment);
|
|
|
|
}
|
|
|
|
|
|
|
|
position = savePosition;
|
|
|
|
nextLimit = saveLimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursiveLastPosition = -1;
|
2002-06-20 22:23:58 +00:00
|
|
|
cursiveFirstPosition = -1;
|
2002-06-10 23:40:33 +00:00
|
|
|
cursiveBaselineAdjustment = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::setCursiveLastExitPoint(LEPoint &exitPoint)
|
|
|
|
{
|
|
|
|
if (direction < 0) {
|
|
|
|
if (position <= nextLimit || position >= prevLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (position <= prevLimit || position >= nextLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cursiveLastPosition = position;
|
|
|
|
cursiveLastExitPoint = exitPoint;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::setCursiveBaselineAdjustment(float adjustment)
|
|
|
|
{
|
|
|
|
cursiveBaselineAdjustment = adjustment;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GlyphIterator::adjustCursiveLastGlyphPositionAdjustment(float xPlacementAdjust, float yPlacementAdjust,
|
|
|
|
float xAdvanceAdjust, float yAdvanceAdjust)
|
|
|
|
{
|
|
|
|
if (direction < 0) {
|
|
|
|
if (cursiveLastPosition <= nextLimit || cursiveLastPosition >= prevLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (cursiveLastPosition <= prevLimit || cursiveLastPosition >= nextLimit) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
glyphPositionAdjustments[cursiveLastPosition].adjustXPlacement(xPlacementAdjust);
|
|
|
|
glyphPositionAdjustments[cursiveLastPosition].adjustYPlacement(yPlacementAdjust);
|
|
|
|
glyphPositionAdjustments[cursiveLastPosition].adjustXAdvance(xAdvanceAdjust);
|
|
|
|
glyphPositionAdjustments[cursiveLastPosition].adjustYAdvance(yAdvanceAdjust);
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_bool GlyphIterator::filterGlyph(le_uint32 index) const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2004-04-12 18:51:31 +00:00
|
|
|
LEGlyphID glyphID = glyphStorage[index];
|
2000-11-28 20:56:52 +00:00
|
|
|
le_int32 glyphClass = gcdNoGlyphClass;
|
|
|
|
|
2003-02-05 00:05:40 +00:00
|
|
|
if (LE_GET_GLYPH(glyphID) >= 0xFFFE) {
|
2003-12-08 22:43:41 +00:00
|
|
|
return TRUE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if (glyphClassDefinitionTable != NULL) {
|
2000-11-28 20:56:52 +00:00
|
|
|
glyphClass = glyphClassDefinitionTable->getGlyphClass(glyphID);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (glyphClass)
|
|
|
|
{
|
|
|
|
case gcdNoGlyphClass:
|
2003-12-08 22:43:41 +00:00
|
|
|
return FALSE;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
case gcdSimpleGlyph:
|
|
|
|
return (lookupFlags & lfIgnoreBaseGlyphs) != 0;
|
|
|
|
|
|
|
|
case gcdLigatureGlyph:
|
|
|
|
return (lookupFlags & lfIgnoreLigatures) != 0;
|
|
|
|
|
|
|
|
case gcdMarkGlyph:
|
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
if ((lookupFlags & lfIgnoreMarks) != 0) {
|
2003-12-08 22:43:41 +00:00
|
|
|
return TRUE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
le_uint16 markAttachType = (lookupFlags & lfMarkAttachTypeMask) >> lfMarkAttachTypeShift;
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
if ((markAttachType != 0) && (markAttachClassDefinitionTable != NULL)) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return markAttachClassDefinitionTable->getGlyphClass(glyphID) != markAttachType;
|
|
|
|
}
|
|
|
|
|
2003-12-08 22:43:41 +00:00
|
|
|
return FALSE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case gcdComponentGlyph:
|
|
|
|
return (lookupFlags & lfIgnoreBaseGlyphs) != 0;
|
|
|
|
|
|
|
|
default:
|
2003-12-08 22:43:41 +00:00
|
|
|
return FALSE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-17 22:17:16 +00:00
|
|
|
static const LETag emptyTag = 0;
|
|
|
|
static const LETag defaultTag = 0xFFFFFFFF;
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_bool GlyphIterator::hasFeatureTag() const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
if (featureTag == defaultTag || featureTag == emptyTag) {
|
2003-12-08 22:43:41 +00:00
|
|
|
return TRUE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
2004-05-07 23:29:16 +00:00
|
|
|
LEErrorCode success = LE_NO_ERROR;
|
2004-04-12 18:51:31 +00:00
|
|
|
const LETag *tagList = (const LETag *) glyphStorage.getAuxData(position, success);
|
2002-04-02 03:41:50 +00:00
|
|
|
|
2004-04-14 18:49:57 +00:00
|
|
|
if (tagList != NULL) {
|
|
|
|
for (le_int32 tag = 0; tagList[tag] != emptyTag; tag += 1) {
|
|
|
|
if (tagList[tag] == featureTag) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-04-02 03:41:50 +00:00
|
|
|
}
|
|
|
|
}
|
2000-11-28 20:56:52 +00:00
|
|
|
|
2003-12-08 22:43:41 +00:00
|
|
|
return FALSE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
le_bool GlyphIterator::findFeatureTag()
|
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
while (nextInternal()) {
|
|
|
|
if (hasFeatureTag()) {
|
2000-11-28 20:56:52 +00:00
|
|
|
prevInternal();
|
2003-12-08 22:43:41 +00:00
|
|
|
return TRUE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-08 22:43:41 +00:00
|
|
|
return FALSE;
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
le_bool GlyphIterator::nextInternal(le_uint32 delta)
|
|
|
|
{
|
|
|
|
le_int32 newPosition = position;
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
while (newPosition != nextLimit && delta > 0) {
|
|
|
|
do {
|
2000-11-28 20:56:52 +00:00
|
|
|
newPosition += direction;
|
2001-01-19 00:30:17 +00:00
|
|
|
} while (newPosition != nextLimit && filterGlyph(newPosition));
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
delta -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
position = newPosition;
|
|
|
|
|
|
|
|
return position != nextLimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
le_bool GlyphIterator::next(le_uint32 delta)
|
|
|
|
{
|
|
|
|
return nextInternal(delta) && hasFeatureTag();
|
|
|
|
}
|
|
|
|
|
|
|
|
le_bool GlyphIterator::prevInternal(le_uint32 delta)
|
|
|
|
{
|
|
|
|
le_int32 newPosition = position;
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
while (newPosition != prevLimit && delta > 0) {
|
|
|
|
do {
|
2000-11-28 20:56:52 +00:00
|
|
|
newPosition -= direction;
|
2001-01-19 00:30:17 +00:00
|
|
|
} while (newPosition != prevLimit && filterGlyph(newPosition));
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
delta -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
position = newPosition;
|
|
|
|
|
|
|
|
return position != prevLimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
le_bool GlyphIterator::prev(le_uint32 delta)
|
|
|
|
{
|
|
|
|
return prevInternal(delta) && hasFeatureTag();
|
|
|
|
}
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
le_int32 GlyphIterator::getMarkComponent(le_int32 markPosition) const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
|
|
|
le_int32 component = 0;
|
2002-06-22 00:34:39 +00:00
|
|
|
le_int32 posn;
|
|
|
|
|
|
|
|
for (posn = position; posn != markPosition; posn += direction) {
|
2004-04-12 18:51:31 +00:00
|
|
|
if (glyphStorage[posn] == 0xFFFE) {
|
2002-06-22 00:34:39 +00:00
|
|
|
component += 1;
|
|
|
|
}
|
|
|
|
}
|
2000-11-28 20:56:52 +00:00
|
|
|
|
|
|
|
return component;
|
|
|
|
}
|
|
|
|
|
2002-06-22 00:34:39 +00:00
|
|
|
// This is basically prevInternal except that it
|
|
|
|
// doesn't take a delta argument, and it doesn't
|
|
|
|
// filter out 0xFFFE glyphs.
|
|
|
|
le_bool GlyphIterator::findMark2Glyph()
|
|
|
|
{
|
|
|
|
le_int32 newPosition = position;
|
|
|
|
|
|
|
|
do {
|
|
|
|
newPosition -= direction;
|
2004-04-12 18:51:31 +00:00
|
|
|
} while (newPosition != prevLimit && glyphStorage[newPosition] != 0xFFFE && filterGlyph(newPosition));
|
2002-06-22 00:34:39 +00:00
|
|
|
|
|
|
|
position = newPosition;
|
|
|
|
|
|
|
|
return position != prevLimit;
|
|
|
|
}
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_END
|