harfbuzz/src/harfbuzz-gdef-private.h

217 lines
6.1 KiB
C
Raw Normal View History

2006-12-28 12:42:37 +01:00
#ifndef HARFBUZZ_GDEF_PRIVATE_H
#define HARFBUZZ_GDEF_PRIVATE_H
2007-07-06 17:29:21 +02:00
#include "harfbuzz-open-private.h"
2006-12-28 12:42:37 +01:00
2007-07-06 17:29:21 +02:00
struct GlyphClassDef : ClassDef {
static const uint16_t BaseGlyph = 0x0001u;
static const uint16_t LigatureGlyph = 0x0002u;
static const uint16_t MarkGlyph = 0x0003u;
static const uint16_t ComponentGlyph = 0x0004u;
};
2008-01-23 06:20:48 +01:00
struct AttachPoint;
2007-07-06 17:29:21 +02:00
struct AttachList {
2008-01-23 06:20:48 +01:00
/* AttachPoint tables, in Coverage Index order */
/* TODO get attach lists */
/* DEFINE_INDIRECT_OFFSET_ARRAY_TYPE (AttachPoint, attachPoint, glyphCount, get_coverage);
// get_coverage
inline Coverage* get_default_language_system (void) {
if (!defaultLangSys)
return NULL;
return (LangSys *)((char*)this + defaultLangSys);
}
*/
2007-07-06 17:29:21 +02:00
2008-01-23 06:20:48 +01:00
private:
2007-07-06 17:29:21 +02:00
Offset coverage; /* Offset to Coverage table -- from
* beginning of AttachList table */
USHORT glyphCount; /* Number of glyphs with attachment
* points */
Offset attachPoint[]; /* Array of offsets to AttachPoint
* tables--from beginning of AttachList
* table--in Coverage Index order */
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (AttachList, 4);
2007-07-06 17:29:21 +02:00
struct AttachPoint {
2008-01-23 06:20:48 +01:00
/* TODO */
2007-07-06 17:29:21 +02:00
2008-01-23 06:20:48 +01:00
private:
2007-07-06 17:29:21 +02:00
USHORT pointCount; /* Number of attachment points on
* this glyph */
USHORT pointIndex[]; /* Array of contour point indices--in
* increasing numerical order */
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (AttachPoint, 2);
2007-07-06 17:29:21 +02:00
/*
* Ligature Caret Table
*/
struct CaretValue;
struct LigCaretList {
2008-01-23 06:20:48 +01:00
/* TODO */
2007-07-06 17:29:21 +02:00
2008-01-23 06:20:48 +01:00
private:
2007-07-06 17:29:21 +02:00
Offset coverage; /* Offset to Coverage table--from
* beginning of LigCaretList table */
USHORT ligGlyphCount; /* Number of ligature glyphs */
Offset ligGlyph[]; /* Array of offsets to LigGlyph
* tables--from beginning of
* LigCaretList table--in Coverage
* Index order */
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (LigCaretList, 4);
2007-07-06 17:29:21 +02:00
struct LigGlyph {
/* Caret value tables, in increasing coordinate order */
DEFINE_OFFSET_ARRAY_TYPE (CaretValue, caretValue, caretCount);
2008-01-23 06:20:48 +01:00
/* TODO */
2007-07-06 17:29:21 +02:00
2008-01-23 06:20:48 +01:00
private:
2007-07-06 17:29:21 +02:00
USHORT caretCount; /* Number of CaretValues for this
* ligature (components - 1) */
Offset caretValue[]; /* Array of offsets to CaretValue
* tables--from beginning of LigGlyph
* table--in increasing coordinate
* order */
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (LigGlyph, 2);
2007-07-06 17:29:21 +02:00
struct CaretValueFormat1 {
inline int get_caret_value (int ppem) const {
2008-01-23 06:20:48 +01:00
return /* TODO garbage */ coordinate / ppem;
2007-07-06 17:29:21 +02:00
}
2008-01-23 06:20:48 +01:00
private:
USHORT caretValueFormat; /* Format identifier--format = 1 */
SHORT coordinate; /* X or Y value, in design units */
2007-07-06 17:29:21 +02:00
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (CaretValueFormat1, 4);
2007-07-06 17:29:21 +02:00
struct CaretValueFormat2 {
inline int get_caret_value (int ppem) const {
2008-01-23 06:20:48 +01:00
return /* TODO garbage */ 0 / ppem;
2007-07-06 17:29:21 +02:00
}
2008-01-23 06:20:48 +01:00
private:
USHORT caretValueFormat; /* Format identifier--format = 2 */
USHORT caretValuePoint; /* Contour point index on glyph */
2007-07-06 17:29:21 +02:00
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (CaretValueFormat2, 4);
2007-07-06 17:29:21 +02:00
struct CaretValueFormat3 {
2008-01-23 06:20:48 +01:00
2007-07-06 17:29:21 +02:00
inline const Device* get_device (void) const {
return (const Device*)((const char*)this + deviceTable);
}
2008-01-23 06:20:48 +01:00
inline int get_caret_value (int ppem) const {
return /* TODO garbage */ (coordinate + get_device()->get_delta (ppem)) / ppem;
}
private:
2007-07-06 17:29:21 +02:00
USHORT caretValueFormat; /* Format identifier--format = 3 */
SHORT coordinate; /* X or Y value, in design units */
Offset deviceTable; /* Offset to Device table for X or Y
* value--from beginning of CaretValue
* table */
};
2008-01-23 06:20:48 +01:00
ASSERT_SIZE (CaretValueFormat3, 6);
2007-07-06 17:29:21 +02:00
struct CaretValue {
DEFINE_NON_INSTANTIABLE(CaretValue);
inline unsigned int get_size (void) const {
switch (u.caretValueFormat) {
case 1: return sizeof (u.format1);
case 2: return sizeof (u.format2);
case 3: return sizeof (u.format3);
default:return sizeof (u.caretValueFormat);
}
}
/* XXX we need access to a load-contour-point vfunc here */
inline int get_caret_value (int ppem) const {
switch (u.caretValueFormat) {
case 1: return u.format1.get_caret_value(ppem);
case 2: return u.format2.get_caret_value(ppem);
case 3: return u.format3.get_caret_value(ppem);
default:return 0;
}
}
2008-01-23 06:20:48 +01:00
private:
2007-07-06 17:29:21 +02:00
union {
USHORT caretValueFormat; /* Format identifier */
CaretValueFormat1 format1;
CaretValueFormat2 format2;
CaretValueFormat3 format3;
2008-01-23 06:20:48 +01:00
/* FIXME old HarfBuzz code has a format 4 here! */
2007-07-06 17:29:21 +02:00
} u;
};
2006-12-28 12:42:37 +01:00
2008-01-23 07:38:10 +01:00
#define DEFINE_ACCESSOR0(const, Type, name, Name) \
inline const Type* name (void) const { \
if (!Name) return NULL; \
return (const Type *)((const char*)this + Name); \
}
#define DEFINE_ACCESSOR(Type, name, Name) \
DEFINE_ACCESSOR0(const, Type, name, Name) \
DEFINE_ACCESSOR0( , Type, name, Name)
struct GDEFHeader {
2008-01-23 08:01:37 +01:00
static const hb_tag_t GDEFTag = HB_TAG ('G','D','E','F');
STATIC_DEFINE_GET_FOR_DATA (GDEFHeader);
2008-01-23 07:38:10 +01:00
DEFINE_ACCESSOR (ClassDef, get_glyph_class_def, glyphClassDef);
DEFINE_ACCESSOR (AttachList, get_attach_list, attachList);
DEFINE_ACCESSOR (LigCaretList, get_lig_caret_list, ligCaretList);
DEFINE_ACCESSOR (ClassDef, get_mark_attach_class_def, markAttachClassDef);
/* Returns 0 if not found. */
inline int get_glyph_class (uint16_t glyph_id) const {
const ClassDef *class_def = get_glyph_class_def ();
if (!class_def) return 0;
return class_def->get_class (glyph_id);
}
/* Returns 0 if not found. */
inline int get_mark_attachment_type (uint16_t glyph_id) const {
const ClassDef *class_def = get_mark_attach_class_def ();
if (!class_def) return 0;
return class_def->get_class (glyph_id);
}
/* TODO get_attach and get_lig_caret */
private:
Fixed version; /* Version of the GDEF table--initially
* 0x00010000 */
Offset glyphClassDef; /* Offset to class definition table
* for glyph type--from beginning of
* GDEF header (may be NULL) */
Offset attachList; /* Offset to list of glyphs with
* attachment points--from beginning
* of GDEF header (may be NULL) */
Offset ligCaretList; /* Offset to list of positioning points
* for ligature carets--from beginning
* of GDEF header (may be NULL) */
Offset markAttachClassDef; /* Offset to class definition table for
* mark attachment type--from beginning
* of GDEF header (may be NULL) */
};
ASSERT_SIZE (GDEFHeader, 12);
2006-12-28 12:42:37 +01:00
#endif /* HARFBUZZ_GDEF_PRIVATE_H */