hb-ot-layout-gdef-private.h 6.4 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2
 * Copyright (C) 2007,2008,2009  Red Hat, Inc.
B
Behdad Esfahbod 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 *  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

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

32

B
Behdad Esfahbod 已提交
33
#define DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP(Type, array, name) \
B
Behdad Esfahbod 已提交
34
  inline const Type& name (hb_codepoint_t glyph) { return this+array[(this+coverage)(glyph)]; }
35 36


B
Behdad Esfahbod 已提交
37 38
struct GlyphClassDef : ClassDef
{
B
Behdad Esfahbod 已提交
39 40 41 42 43 44
  enum {
    BaseGlyph		= 0x0001u,
    LigatureGlyph	= 0x0002u,
    MarkGlyph		= 0x0003u,
    ComponentGlyph	= 0x0004u,
  };
B
Behdad Esfahbod 已提交
45 46
};

47 48 49
/*
 * Attachment List Table
 */
B
Behdad Esfahbod 已提交
50

B
Behdad Esfahbod 已提交
51 52
struct AttachPoint
{
B
Behdad Esfahbod 已提交
53 54
  ArrayOf<USHORT>
		pointIndex;		/* Array of contour point indices--in
55 56
					 * increasing numerical order */
};
57
ASSERT_SIZE (AttachPoint, 2);
B
Behdad Esfahbod 已提交
58

B
Behdad Esfahbod 已提交
59 60
struct AttachList
{
B
Behdad Esfahbod 已提交
61
  /* const AttachPoint& get_attach_points (hb_codepoint_t glyph); */
B
Behdad Esfahbod 已提交
62
  DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP (AttachPoint, attachPoint, get_attach_points);
B
Behdad Esfahbod 已提交
63

64
 private:
65 66
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table -- from
B
Behdad Esfahbod 已提交
67
					 * beginning of AttachList table */
B
Behdad Esfahbod 已提交
68 69 70
  OffsetArrayOf<AttachPoint>
		attachPoint;		/* Array of AttachPoint tables
					 * in Coverage Index order */
B
Behdad Esfahbod 已提交
71
};
72
ASSERT_SIZE (AttachList, 4);
B
Behdad Esfahbod 已提交
73 74 75 76 77

/*
 * Ligature Caret Table
 */

B
Behdad Esfahbod 已提交
78 79
struct CaretValueFormat1
{
B
Minor  
Behdad Esfahbod 已提交
80 81 82
  friend struct CaretValue;

  private:
B
Behdad Esfahbod 已提交
83 84 85
  inline int get_caret_value (int ppem) const
  {
    /* XXX unsigned int */
B
Behdad Esfahbod 已提交
86
    return /* TODO garbage */ coordinate / ppem;
B
Behdad Esfahbod 已提交
87
  }
B
Behdad Esfahbod 已提交
88 89 90 91

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

B
Behdad Esfahbod 已提交
95 96
struct CaretValueFormat2
{
B
Minor  
Behdad Esfahbod 已提交
97 98 99
  friend struct CaretValue;

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

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

B
Behdad Esfahbod 已提交
111 112
struct CaretValueFormat3
{
B
Minor  
Behdad Esfahbod 已提交
113 114 115
  friend struct CaretValue;

  private:
B
Behdad Esfahbod 已提交
116 117
  inline const Device& get_device (void) const
  {
118
    if (HB_UNLIKELY (!deviceTable)) return Null(Device);
B
Behdad Esfahbod 已提交
119
    return (const Device&)*((const char*)this + deviceTable);
B
Behdad Esfahbod 已提交
120 121
  }

B
Behdad Esfahbod 已提交
122 123
  inline int get_caret_value (int ppem) const
  {
124
    return /* TODO garbage */ (coordinate + get_device().get_delta (ppem)) / ppem;
B
Behdad Esfahbod 已提交
125 126 127
  }

  private:
B
Behdad Esfahbod 已提交
128 129 130 131 132 133
  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 */
};
134
ASSERT_SIZE (CaretValueFormat3, 6);
B
Behdad Esfahbod 已提交
135

B
Behdad Esfahbod 已提交
136 137
struct CaretValue
{
B
Behdad Esfahbod 已提交
138
  /* XXX  we need access to a load-contour-point vfunc here */
B
Behdad Esfahbod 已提交
139 140
  int get_caret_value (int ppem) const
  {
B
Behdad Esfahbod 已提交
141 142 143 144
    switch (u.format) {
    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);
B
Behdad Esfahbod 已提交
145 146 147 148
    default:return 0;
    }
  }

B
Behdad Esfahbod 已提交
149
  private:
B
Behdad Esfahbod 已提交
150
  union {
B
Behdad Esfahbod 已提交
151 152 153 154
  USHORT		format;		/* Format identifier */
  CaretValueFormat1	format1[];
  CaretValueFormat2	format2[];
  CaretValueFormat3	format3[];
B
Behdad Esfahbod 已提交
155 156
  } u;
};
B
Behdad Esfahbod 已提交
157
ASSERT_SIZE (CaretValue, 2);
158

B
Behdad Esfahbod 已提交
159 160
struct LigGlyph
{
B
Minor  
Behdad Esfahbod 已提交
161 162
  friend struct LigCaretList;

B
Behdad Esfahbod 已提交
163
  private:
B
Behdad Esfahbod 已提交
164 165 166
  OffsetArrayOf<CaretValue>
		caret;			/* Array of CaretValue tables
					 * in increasing coordinate order */
167
};
168
ASSERT_SIZE (LigGlyph, 2);
B
Behdad Esfahbod 已提交
169

B
Behdad Esfahbod 已提交
170 171
struct LigCaretList
{
B
Minor  
Behdad Esfahbod 已提交
172 173 174
  friend struct GDEF;

  private:
B
Behdad Esfahbod 已提交
175
  /* const LigGlyph& get_lig_glyph (hb_codepoint_t glyph); */
B
Behdad Esfahbod 已提交
176
  DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP (LigGlyph, ligGlyph, get_lig_glyph);
177 178

  private:
179 180
  OffsetTo<Coverage>
		coverage;		/* Offset to Coverage table--from
181
					 * beginning of LigCaretList table */
B
Behdad Esfahbod 已提交
182 183 184
  OffsetArrayOf<LigGlyph>
		ligGlyph;		/* Array of LigGlyph tables
					 * in Coverage Index order */
185
};
186
ASSERT_SIZE (LigCaretList, 4);
187

188
/*
B
Behdad Esfahbod 已提交
189
 * GDEF
190
 */
B
Behdad Esfahbod 已提交
191

B
Behdad Esfahbod 已提交
192 193
struct GDEF
{
B
Minor  
Behdad Esfahbod 已提交
194
  static const hb_tag_t Tag		= HB_TAG ('G','D','E','F');
195

B
Behdad Esfahbod 已提交
196 197 198 199 200 201 202
  enum {
    UnclassifiedGlyph	= 0,
    BaseGlyph		= 1,
    LigatureGlyph	= 2,
    MarkGlyph		= 3,
    ComponentGlyph	= 4,
  };
B
Behdad Esfahbod 已提交
203

B
Behdad Esfahbod 已提交
204 205
  STATIC_DEFINE_GET_FOR_DATA (GDEF);
  /* XXX check version here? */
B
Behdad Esfahbod 已提交
206

B
Behdad Esfahbod 已提交
207
  inline bool has_glyph_classes () const { return glyphClassDef != 0; }
B
Behdad Esfahbod 已提交
208
  inline hb_ot_layout_class_t get_glyph_class (hb_codepoint_t glyph) const { return glyphClassDef(this).get_class (glyph); }
B
Behdad Esfahbod 已提交
209

B
Behdad Esfahbod 已提交
210
  inline bool has_mark_attachment_types () const { return markAttachClassDef != 0; }
B
Behdad Esfahbod 已提交
211
  inline hb_ot_layout_class_t get_mark_attachment_type (hb_codepoint_t glyph) const { return markAttachClassDef(this).get_class (glyph); }
B
Behdad Esfahbod 已提交
212 213

  /* TODO get_attach and get_lig_caret */
B
Behdad Esfahbod 已提交
214 215
  inline bool has_attach_list () const { return attachList != 0; }
  inline bool has_lig_caret_list () const { return ligCaretList != 0; }
B
Behdad Esfahbod 已提交
216

B
Behdad Esfahbod 已提交
217
  private:
B
Behdad Esfahbod 已提交
218 219
  Fixed		version;		/* Version of the GDEF table--initially
					 * 0x00010000 */
B
Behdad Esfahbod 已提交
220 221
  OffsetTo<ClassDef>
		glyphClassDef;		/* Offset to class definition table
B
Behdad Esfahbod 已提交
222
					 * for glyph type--from beginning of
223
					 * GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
224 225
  OffsetTo<AttachList>
		attachList;		/* Offset to list of glyphs with
B
Behdad Esfahbod 已提交
226
					 * attachment points--from beginning
227
					 * of GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
228 229
  OffsetTo<LigCaretList>
		ligCaretList;		/* Offset to list of positioning points
B
Behdad Esfahbod 已提交
230
					 * for ligature carets--from beginning
231
					 * of GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
232 233
  OffsetTo<ClassDef>
		markAttachClassDef;	/* Offset to class definition table for
B
Behdad Esfahbod 已提交
234
					 * mark attachment type--from beginning
235
					 * of GDEF header (may be Null) */
B
Behdad Esfahbod 已提交
236
};
237
ASSERT_SIZE (GDEF, 12);
B
Behdad Esfahbod 已提交
238

239

240
#endif /* HB_OT_LAYOUT_GDEF_PRIVATE_H */