hb-ot-layout-gdef-private.h 7.9 KB
Newer Older
B
Behdad Esfahbod 已提交
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
/*
 * Copyright (C) 2007,2008  Red Hat, Inc.
 *
 *  This is part of HarfBuzz, an OpenType Layout engine library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Red Hat Author(s): Behdad Esfahbod
 */

27 28
#ifndef HB_OT_LAYOUT_GDEF_PRIVATE_H
#define HB_OT_LAYOUT_GDEF_PRIVATE_H
B
Behdad Esfahbod 已提交
29

B
Behdad Esfahbod 已提交
30
#include "hb-ot-layout-private.h"
B
Behdad Esfahbod 已提交
31

32
#include "hb-ot-layout-open-private.h"
B
Behdad Esfahbod 已提交
33

34 35

#define DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP(Type, name) \
B
Behdad Esfahbod 已提交
36
  inline const Type& name (hb_ot_layout_glyph_t glyph_id) { \
37
    const Coverage &c = get_coverage (); \
B
Behdad Esfahbod 已提交
38
    hb_ot_layout_coverage_t c_index = c.get_coverage (glyph_id); \
39 40 41 42
    return (*this)[c_index]; \
  }


B
Behdad Esfahbod 已提交
43 44 45 46 47 48 49
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;
};

50 51 52
/*
 * Attachment List Table
 */
B
Behdad Esfahbod 已提交
53

54
struct AttachPoint {
B
Minor  
Behdad Esfahbod 已提交
55 56 57 58

  friend struct AttachList;

  private:
59 60 61 62 63 64 65 66 67 68
  /* 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);
B
Behdad Esfahbod 已提交
69

70
struct AttachList {
B
Minor  
Behdad Esfahbod 已提交
71 72 73 74

  friend struct GDEF;

  private:
B
Behdad Esfahbod 已提交
75
  /* const AttachPoint& get_attach_points (hb_ot_layout_glyph_t glyph_id); */
76
  DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP (AttachPoint, get_attach_points);
B
Behdad Esfahbod 已提交
77

78 79 80 81
  private:
  /* AttachPoint tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (AttachPoint, attachPoint, glyphCount);
  DEFINE_ACCESSOR (Coverage, get_coverage, coverage);
B
Behdad Esfahbod 已提交
82

83
 private:
B
Behdad Esfahbod 已提交
84 85 86 87 88 89 90 91
  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 */
};
92
DEFINE_NULL_ASSERT_SIZE (AttachList, 4);
B
Behdad Esfahbod 已提交
93 94 95 96 97 98 99

/*
 * Ligature Caret Table
 */

struct CaretValueFormat1 {

B
Minor  
Behdad Esfahbod 已提交
100 101 102
  friend struct CaretValue;

  private:
B
Behdad Esfahbod 已提交
103
  inline int get_caret_value (int ppem) const {
B
Behdad Esfahbod 已提交
104
    return /* TODO garbage */ coordinate / ppem;
B
Behdad Esfahbod 已提交
105
  }
B
Behdad Esfahbod 已提交
106 107 108 109

  private:
  USHORT	caretValueFormat;	/* Format identifier--format = 1 */
  SHORT		coordinate;		/* X or Y value, in design units */
B
Behdad Esfahbod 已提交
110
};
111
ASSERT_SIZE (CaretValueFormat1, 4);
B
Behdad Esfahbod 已提交
112 113 114

struct CaretValueFormat2 {

B
Minor  
Behdad Esfahbod 已提交
115 116 117
  friend struct CaretValue;

  private:
B
Behdad Esfahbod 已提交
118
  inline int get_caret_value (int ppem) const {
B
Behdad Esfahbod 已提交
119
    return /* TODO garbage */ 0 / ppem;
B
Behdad Esfahbod 已提交
120
  }
B
Behdad Esfahbod 已提交
121 122 123 124

  private:
  USHORT	caretValueFormat;	/* Format identifier--format = 2 */
  USHORT	caretValuePoint;	/* Contour point index on glyph */
B
Behdad Esfahbod 已提交
125
};
126
ASSERT_SIZE (CaretValueFormat2, 4);
B
Behdad Esfahbod 已提交
127 128

struct CaretValueFormat3 {
B
Behdad Esfahbod 已提交
129

B
Minor  
Behdad Esfahbod 已提交
130 131 132
  friend struct CaretValue;

  private:
133
  inline const Device& get_device (void) const {
134
    if (HB_UNLIKELY (!deviceTable)) return NullDevice;
135
    return *(const Device*)((const char*)this + deviceTable);
B
Behdad Esfahbod 已提交
136 137
  }

B
Behdad Esfahbod 已提交
138
  inline int get_caret_value (int ppem) const {
139
    return /* TODO garbage */ (coordinate + get_device().get_delta (ppem)) / ppem;
B
Behdad Esfahbod 已提交
140 141 142
  }

  private:
B
Behdad Esfahbod 已提交
143 144 145 146 147 148
  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 */
};
149
ASSERT_SIZE (CaretValueFormat3, 6);
B
Behdad Esfahbod 已提交
150 151 152 153

struct CaretValue {
  DEFINE_NON_INSTANTIABLE(CaretValue);

B
Minor  
Behdad Esfahbod 已提交
154
  unsigned int get_size (void) const {
B
Behdad Esfahbod 已提交
155 156 157 158 159 160 161 162 163
    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 */
B
Minor  
Behdad Esfahbod 已提交
164
  int get_caret_value (int ppem) const {
B
Behdad Esfahbod 已提交
165 166 167 168 169 170 171 172
    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;
    }
  }

B
Behdad Esfahbod 已提交
173
  private:
B
Behdad Esfahbod 已提交
174 175 176 177 178
  union {
  USHORT	caretValueFormat;	/* Format identifier */
  CaretValueFormat1	format1;
  CaretValueFormat2	format2;
  CaretValueFormat3	format3;
B
Behdad Esfahbod 已提交
179
  /* FIXME old HarfBuzz code has a format 4 here! */
B
Behdad Esfahbod 已提交
180 181
  } u;
};
182 183 184
DEFINE_NULL (CaretValue, 2);

struct LigGlyph {
B
Minor  
Behdad Esfahbod 已提交
185 186 187 188

  friend struct LigCaretList;

  private:
189 190 191
  /* Caret value tables, in increasing coordinate order */
  DEFINE_OFFSET_ARRAY_TYPE (CaretValue, caretValue, caretCount);
  /* TODO */
B
Behdad Esfahbod 已提交
192

193 194 195 196 197 198 199 200 201
  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);
B
Behdad Esfahbod 已提交
202

203
struct LigCaretList {
B
Minor  
Behdad Esfahbod 已提交
204 205 206 207

  friend struct GDEF;

  private:
B
Behdad Esfahbod 已提交
208
  /* const LigGlyph& get_lig_glyph (hb_ot_layout_glyph_t glyph_id); */
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
  DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP (LigGlyph, get_lig_glyph);

  private:
  /* AttachPoint tables, in Coverage Index order */
  DEFINE_OFFSET_ARRAY_TYPE (LigGlyph, ligGlyph, ligGlyphCount);
  DEFINE_ACCESSOR (Coverage, get_coverage, coverage);

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

227
/*
B
Behdad Esfahbod 已提交
228
 * GDEF
229
 */
B
Behdad Esfahbod 已提交
230

B
Behdad Esfahbod 已提交
231
struct GDEF {
B
Minor  
Behdad Esfahbod 已提交
232
  static const hb_tag_t Tag		= HB_TAG ('G','D','E','F');
233

B
Behdad Esfahbod 已提交
234 235
  STATIC_DEFINE_GET_FOR_DATA (GDEF);
  /* XXX check version here? */
B
Behdad Esfahbod 已提交
236 237 238 239 240 241 242

  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. */
B
Behdad Esfahbod 已提交
243
  inline int get_glyph_class (hb_ot_layout_glyph_t glyph_id) const {
B
Minor  
Behdad Esfahbod 已提交
244
    return get_glyph_class_def ().get_class (glyph_id);
B
Behdad Esfahbod 已提交
245 246 247
  }

  /* Returns 0 if not found. */
B
Behdad Esfahbod 已提交
248
  inline int get_mark_attachment_type (hb_ot_layout_glyph_t glyph_id) const {
B
Minor  
Behdad Esfahbod 已提交
249
    return get_mark_attach_class_def ().get_class (glyph_id);
B
Behdad Esfahbod 已提交
250 251 252 253 254 255 256 257 258
  }

  /* 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
259
					 * GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
260 261
  Offset	attachList;		/* Offset to list of glyphs with
					 * attachment points--from beginning
262
					 * of GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
263 264
  Offset	ligCaretList;		/* Offset to list of positioning points
					 * for ligature carets--from beginning
265
					 * of GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
266 267
  Offset	markAttachClassDef;	/* Offset to class definition table for
					 * mark attachment type--from beginning
268
					 * of GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
269
};
B
Behdad Esfahbod 已提交
270
DEFINE_NULL_ASSERT_SIZE (GDEF, 12);
B
Behdad Esfahbod 已提交
271

272
#endif /* HB_OT_LAYOUT_GDEF_PRIVATE_H */