diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-04-20 18:13:48 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-04-20 18:13:48 +0000 |
commit | e5786f530f9555469c01435f86039b06aa53feba (patch) | |
tree | c868e8d32282422d7d445b729db95c3fcdafb6d0 /Build/source/libs/icu/icu-xetex/layout/CoverageTables.cpp | |
parent | ebaa1768b43c8606d923d2e861b5286b74207b3e (diff) |
new build system: build icu libs and xetex plus misc updates
git-svn-id: svn://tug.org/texlive/trunk@12759 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-xetex/layout/CoverageTables.cpp')
-rw-r--r-- | Build/source/libs/icu/icu-xetex/layout/CoverageTables.cpp | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-xetex/layout/CoverageTables.cpp b/Build/source/libs/icu/icu-xetex/layout/CoverageTables.cpp new file mode 100644 index 00000000000..e5f1597f864 --- /dev/null +++ b/Build/source/libs/icu/icu-xetex/layout/CoverageTables.cpp @@ -0,0 +1,91 @@ +/* + * + * (C) Copyright IBM Corp. 1998-2006 - All Rights Reserved + * + */ + +#include "LETypes.h" +#include "OpenTypeTables.h" +#include "OpenTypeUtilities.h" +#include "CoverageTables.h" +#include "LESwaps.h" + +U_NAMESPACE_BEGIN + +le_int32 CoverageTable::getGlyphCoverage(LEGlyphID glyphID) const +{ + switch(SWAPW(coverageFormat)) + { + case 0: + return -1; + + case 1: + { + const CoverageFormat1Table *f1Table = (const CoverageFormat1Table *) this; + + return f1Table->getGlyphCoverage(glyphID); + } + + case 2: + { + const CoverageFormat2Table *f2Table = (const CoverageFormat2Table *) this; + + return f2Table->getGlyphCoverage(glyphID); + } + + default: + return -1; + } +} + +le_int32 CoverageFormat1Table::getGlyphCoverage(LEGlyphID glyphID) const +{ + TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID); + le_uint16 count = SWAPW(glyphCount); + le_uint8 bit = OpenTypeUtilities::highBit(count); + le_uint16 power = 1 << bit; + le_uint16 extra = count - power; + le_uint16 probe = power; + le_uint16 index = 0; + + if (count == 0) { + return -1; + } + + if (SWAPW(glyphArray[extra]) <= ttGlyphID) { + index = extra; + } + + while (probe > (1 << 0)) { + probe >>= 1; + + if (SWAPW(glyphArray[index + probe]) <= ttGlyphID) { + index += probe; + } + } + + if (SWAPW(glyphArray[index]) == ttGlyphID) { + return index; + } + + return -1; +} + +le_int32 CoverageFormat2Table::getGlyphCoverage(LEGlyphID glyphID) const +{ + TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID); + le_uint16 count = SWAPW(rangeCount); + le_int32 rangeIndex = + OpenTypeUtilities::getGlyphRangeIndex(ttGlyphID, rangeRecordArray, count); + + if (rangeIndex < 0) { + return -1; + } + + TTGlyphID firstInRange = SWAPW(rangeRecordArray[rangeIndex].firstGlyph); + le_uint16 startCoverageIndex = SWAPW(rangeRecordArray[rangeIndex].rangeValue); + + return startCoverageIndex + (ttGlyphID - firstInRange); +} + +U_NAMESPACE_END |