summaryrefslogtreecommitdiff
path: root/src/harfbuzz-gdef-private.h
blob: 6e0f4e31d77e20478fc4d4dceb72c7408fedab91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#ifndef HARFBUZZ_GDEF_PRIVATE_H
#define HARFBUZZ_GDEF_PRIVATE_H

#include "harfbuzz-open-private.h"

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;
};

/*
 * Attachment List Table
 */

struct AttachPoint {
  /* countour point indices, in increasing numerical order */
  DEFINE_ARRAY_TYPE (USHORT, pointIndex, pointCount);

  private:
  USHORT	pointCount;		/* Number of attachment points on
					 * this glyph */
  USHORT	pointIndex[];		/* Array of contour point indices--in
					 * increasing numerical order */
};
DEFINE_NULL_ASSERT_SIZE (AttachPoint, 2);

struct AttachList {

  inline const AttachPoint* get_attach_points (uint16_t glyph_id) {
    const Coverage &c = get_coverage ();
    int c_index = c.get_coverage (glyph_id);
    return &(*this)[c_index];
  }

  private:
  /* AttachPoint tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (AttachPoint, attachPoint, glyphCount);
  DEFINE_ACCESSOR (Coverage, get_coverage, coverage);

  private:
  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 */
};
DEFINE_NULL_ASSERT_SIZE (AttachList, 4);

/*
 * Ligature Caret Table
 */

struct CaretValue;

struct LigCaretList {
  /* TODO */

  private:
  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 */
};
DEFINE_NULL_ASSERT_SIZE (LigCaretList, 4);

struct CaretValueFormat1 {

  inline int get_caret_value (int ppem) const {
    return /* TODO garbage */ coordinate / ppem;
  }

  private:
  USHORT	caretValueFormat;	/* Format identifier--format = 1 */
  SHORT		coordinate;		/* X or Y value, in design units */
};
DEFINE_NULL_ASSERT_SIZE (CaretValueFormat1, 4);

struct CaretValueFormat2 {

  inline int get_caret_value (int ppem) const {
    return /* TODO garbage */ 0 / ppem;
  }

  private:
  USHORT	caretValueFormat;	/* Format identifier--format = 2 */
  USHORT	caretValuePoint;	/* Contour point index on glyph */
};
DEFINE_NULL_ASSERT_SIZE (CaretValueFormat2, 4);

struct CaretValueFormat3 {

  inline const Device& get_device (void) const {
    if (!deviceTable) return NullDevice;
    return *(const Device*)((const char*)this + deviceTable);
  }

  inline int get_caret_value (int ppem) const {
    return /* TODO garbage */ (coordinate + get_device().get_delta (ppem)) / ppem;
  }

  private:
  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 */
};
DEFINE_NULL_ASSERT_SIZE (CaretValueFormat3, 6);

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;
    }
  }

  private:
  union {
  USHORT	caretValueFormat;	/* Format identifier */
  CaretValueFormat1	format1;
  CaretValueFormat2	format2;
  CaretValueFormat3	format3;
  /* FIXME old HarfBuzz code has a format 4 here! */
  } u;
};
DEFINE_NULL (CaretValue, 2);

struct LigGlyph {
  /* Caret value tables, in increasing coordinate order */
  DEFINE_OFFSET_ARRAY_TYPE (CaretValue, caretValue, caretCount);
  /* TODO */

  private:
  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 */
};
DEFINE_NULL_ASSERT_SIZE (LigGlyph, 2);

/*
 * GDEF Header
 */

struct GDEFHeader {
  static const hb_tag_t GDEFTag		= HB_TAG ('G','D','E','F');

  STATIC_DEFINE_GET_FOR_DATA (GDEFHeader);

  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 ();
    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 ();
    return class_def.get_class (glyph_id);
  }

  /* TODO get_glyph_property */

  /* 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) */
};
DEFINE_NULL_ASSERT_SIZE (GDEFHeader, 12);

#endif /* HARFBUZZ_GDEF_PRIVATE_H */