2000-11-28 20:56:52 +00:00
|
|
|
/*
|
2003-04-29 00:15:07 +00:00
|
|
|
* @(#)Features.cpp 1.4 00/03/15
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
2003-06-03 20:58:22 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
|
2000-11-28 20:56:52 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "LETypes.h"
|
2002-03-01 22:24:10 +00:00
|
|
|
#include "OpenTypeUtilities.h"
|
2000-11-28 20:56:52 +00:00
|
|
|
#include "OpenTypeTables.h"
|
|
|
|
#include "Features.h"
|
|
|
|
#include "LESwaps.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
const FeatureTable *FeatureListTable::getFeatureTable(le_uint16 featureIndex, LETag *featureTag) const
|
2000-11-28 20:56:52 +00:00
|
|
|
{
|
2001-01-19 00:30:17 +00:00
|
|
|
if (featureIndex >= SWAPW(featureCount)) {
|
2000-11-28 20:56:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Offset featureTableOffset = featureRecordArray[featureIndex].featureTableOffset;
|
|
|
|
|
|
|
|
*featureTag = SWAPT(featureRecordArray[featureIndex].featureTag);
|
|
|
|
|
2001-01-19 00:30:17 +00:00
|
|
|
return (const FeatureTable *) ((char *) this + SWAPW(featureTableOffset));
|
2000-11-28 20:56:52 +00:00
|
|
|
}
|
|
|
|
|
2003-04-29 00:15:07 +00:00
|
|
|
/*
|
|
|
|
* Note: according to the OpenType Spec. v 1.4, the entries in the Feature
|
|
|
|
* List Table are sorted alphabetically by feature tag; however, there seem
|
|
|
|
* to be some fonts which have an unsorted list; that's why the binary search
|
|
|
|
* is #if 0'd out and replaced by a linear search.
|
|
|
|
*
|
|
|
|
* Also note: as of ICU 2.6, this method isn't called anyhow...
|
|
|
|
*/
|
2002-03-01 22:24:10 +00:00
|
|
|
const FeatureTable *FeatureListTable::getFeatureTable(LETag featureTag) const
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
Offset featureTableOffset =
|
|
|
|
OpenTypeUtilities::getTagOffset(featureTag, (TagAndOffsetRecord *) featureRecordArray, SWAPW(featureCount));
|
|
|
|
|
|
|
|
if (featureTableOffset == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (const FeatureTable *) ((char *) this + SWAPW(featureTableOffset));
|
|
|
|
#else
|
|
|
|
int count = SWAPW(featureCount);
|
|
|
|
|
|
|
|
for (int i = 0; i < count; i += 1) {
|
2003-04-29 00:15:07 +00:00
|
|
|
if (SWAPT(featureRecordArray[i].featureTag) == featureTag) {
|
|
|
|
return (const FeatureTable *) ((char *) this + SWAPW(featureRecordArray[i].featureTableOffset));
|
|
|
|
}
|
2002-03-01 22:24:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_END
|