f2fbc8c394
X-SVN-Rev: 33535
97 lines
1.9 KiB
C
97 lines
1.9 KiB
C
/*
|
|
*
|
|
* (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#ifndef __LOOKUPTABLES_H
|
|
#define __LOOKUPTABLES_H
|
|
|
|
/**
|
|
* \file
|
|
* \internal
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "LayoutTables.h"
|
|
#include "LETableReference.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
enum LookupTableFormat
|
|
{
|
|
ltfSimpleArray = 0,
|
|
ltfSegmentSingle = 2,
|
|
ltfSegmentArray = 4,
|
|
ltfSingleTable = 6,
|
|
ltfTrimmedArray = 8
|
|
};
|
|
|
|
typedef le_int16 LookupValue;
|
|
|
|
struct LookupTable
|
|
{
|
|
le_int16 format;
|
|
};
|
|
|
|
struct LookupSegment
|
|
{
|
|
TTGlyphID lastGlyph;
|
|
TTGlyphID firstGlyph;
|
|
LookupValue value;
|
|
};
|
|
|
|
struct LookupSingle
|
|
{
|
|
TTGlyphID glyph;
|
|
LookupValue value;
|
|
};
|
|
|
|
struct BinarySearchLookupTable : LookupTable
|
|
{
|
|
le_int16 unitSize;
|
|
le_int16 nUnits;
|
|
le_int16 searchRange;
|
|
le_int16 entrySelector;
|
|
le_int16 rangeShift;
|
|
|
|
const LookupSegment *lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const;
|
|
|
|
const LookupSingle *lookupSingle(const LETableReference &base, const LookupSingle *entries, LEGlyphID glyph, LEErrorCode &success) const;
|
|
};
|
|
|
|
struct SimpleArrayLookupTable : LookupTable
|
|
{
|
|
LookupValue valueArray[ANY_NUMBER];
|
|
};
|
|
LE_VAR_ARRAY(SimpleArrayLookupTable, valueArray)
|
|
|
|
struct SegmentSingleLookupTable : BinarySearchLookupTable
|
|
{
|
|
LookupSegment segments[ANY_NUMBER];
|
|
};
|
|
LE_VAR_ARRAY(SegmentSingleLookupTable, segments)
|
|
|
|
struct SegmentArrayLookupTable : BinarySearchLookupTable
|
|
{
|
|
LookupSegment segments[ANY_NUMBER];
|
|
};
|
|
LE_VAR_ARRAY(SegmentArrayLookupTable, segments)
|
|
|
|
struct SingleTableLookupTable : BinarySearchLookupTable
|
|
{
|
|
LookupSingle entries[ANY_NUMBER];
|
|
};
|
|
LE_VAR_ARRAY(SingleTableLookupTable, entries)
|
|
|
|
struct TrimmedArrayLookupTable : LookupTable
|
|
{
|
|
TTGlyphID firstGlyph;
|
|
TTGlyphID glyphCount;
|
|
LookupValue valueArray[ANY_NUMBER];
|
|
};
|
|
LE_VAR_ARRAY(TrimmedArrayLookupTable, valueArray)
|
|
|
|
U_NAMESPACE_END
|
|
#endif
|