hb-font-private.hh 4.8 KB
Newer Older
1
/*
B
Behdad Esfahbod 已提交
2 3
 * Copyright © 2009  Red Hat, Inc.
 * Copyright © 2011  Google, Inc.
4
 *
B
Behdad Esfahbod 已提交
5
 *  This is part of HarfBuzz, a text shaping library.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 * 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
B
Behdad Esfahbod 已提交
26
 * Google Author(s): Behdad Esfahbod
27 28
 */

29 30
#ifndef HB_FONT_PRIVATE_HH
#define HB_FONT_PRIVATE_HH
31

32
#include "hb-private.hh"
33 34

#include "hb-font.h"
35
#include "hb-object-private.hh"
36
#include "hb-shaper-private.hh"
37 38


B
Behdad Esfahbod 已提交
39

40
/*
B
Behdad Esfahbod 已提交
41
 * hb_font_funcs_t
42 43
 */

44 45 46 47
#define HB_FONT_FUNCS_IMPLEMENT_CALLBACKS \
  HB_FONT_FUNC_IMPLEMENT (glyph) \
  HB_FONT_FUNC_IMPLEMENT (glyph_h_advance) \
  HB_FONT_FUNC_IMPLEMENT (glyph_v_advance) \
B
Behdad Esfahbod 已提交
48
  HB_FONT_FUNC_IMPLEMENT (glyph_h_origin) \
49
  HB_FONT_FUNC_IMPLEMENT (glyph_v_origin) \
B
Behdad Esfahbod 已提交
50 51
  HB_FONT_FUNC_IMPLEMENT (glyph_h_kerning) \
  HB_FONT_FUNC_IMPLEMENT (glyph_v_kerning) \
52
  HB_FONT_FUNC_IMPLEMENT (glyph_extents) \
B
Behdad Esfahbod 已提交
53
  HB_FONT_FUNC_IMPLEMENT (glyph_contour_point) \
54 55
  HB_FONT_FUNC_IMPLEMENT (glyph_name) \
  HB_FONT_FUNC_IMPLEMENT (glyph_from_name) \
B
Behdad Esfahbod 已提交
56
  /* ^--- Add new callbacks here */
57

58
struct hb_font_funcs_t {
B
Behdad Esfahbod 已提交
59
  hb_object_header_t header;
60
  ASSERT_POD ();
B
Behdad Esfahbod 已提交
61 62 63 64

  hb_bool_t immutable;

  /* Don't access these directly.  Call hb_font_get_*() instead. */
65

66
  struct {
67 68 69
#define HB_FONT_FUNC_IMPLEMENT(name) hb_font_get_##name##_func_t name;
    HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
70 71 72
  } get;

  struct {
73 74 75
#define HB_FONT_FUNC_IMPLEMENT(name) void *name;
    HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
76 77
  } user_data;

78
  struct {
79 80 81
#define HB_FONT_FUNC_IMPLEMENT(name) hb_destroy_func_t name;
    HB_FONT_FUNCS_IMPLEMENT_CALLBACKS
#undef HB_FONT_FUNC_IMPLEMENT
82
  } destroy;
83 84 85 86 87 88 89
};


/*
 * hb_face_t
 */

90
struct hb_face_t {
91
  hb_object_header_t header;
92
  ASSERT_POD ();
93

94 95
  hb_bool_t immutable;

96 97 98
  hb_reference_table_func_t  reference_table;
  void                      *user_data;
  hb_destroy_func_t          destroy;
99

B
Behdad Esfahbod 已提交
100
  struct hb_ot_layout_t *ot_layout;
101

B
Behdad Esfahbod 已提交
102
  unsigned int index;
103
  unsigned int upem;
104 105

  struct hb_shaper_data_t shaper_data;
106 107
};

108 109 110 111
#define HB_SHAPER_IMPLEMENT(shaper) HB_SHAPER_DATA_PROTOTYPE(shaper, face);
#include "hb-shaper-list.hh"
#undef HB_SHAPER_IMPLEMENT

112 113 114 115 116

/*
 * hb_font_t
 */

117
struct hb_font_t {
118
  hb_object_header_t header;
119
  ASSERT_POD ();
120

121 122
  hb_bool_t immutable;

123
  hb_font_t *parent;
124 125
  hb_face_t *face;

126 127
  int x_scale;
  int y_scale;
128 129 130

  unsigned int x_ppem;
  unsigned int y_ppem;
B
Behdad Esfahbod 已提交
131

B
Behdad Esfahbod 已提交
132 133
  hb_font_funcs_t   *klass;
  void              *user_data;
134
  hb_destroy_func_t  destroy;
135

136 137
  struct hb_shaper_data_t shaper_data;

138 139

  /* Convert from font-space to user-space */
B
Minor  
Behdad Esfahbod 已提交
140 141
  inline hb_position_t em_scale_x (int16_t v) { return em_scale (v, this->x_scale); }
  inline hb_position_t em_scale_y (int16_t v) { return em_scale (v, this->y_scale); }
142

143 144 145 146 147 148 149 150 151 152 153 154
  /* Convert from parent-font user-space to our user-space */
  inline hb_position_t parent_scale_x_distance (hb_position_t v) {
    if (unlikely (parent && parent->x_scale != x_scale))
      return v * (int64_t) this->x_scale / this->parent->x_scale;
    return v;
  }
  inline hb_position_t parent_scale_y_distance (hb_position_t v) {
    if (unlikely (parent && parent->y_scale != y_scale))
      return v * (int64_t) this->y_scale / this->parent->y_scale;
    return v;
  }
  inline hb_position_t parent_scale_x_position (hb_position_t v) {
155
    return parent_scale_x_distance (v);
156 157
  }
  inline hb_position_t parent_scale_y_position (hb_position_t v) {
158
    return parent_scale_y_distance (v);
159 160 161 162 163 164 165 166 167 168 169 170
  }

  inline void parent_scale_distance (hb_position_t *x, hb_position_t *y) {
    *x = parent_scale_x_distance (*x);
    *y = parent_scale_y_distance (*y);
  }
  inline void parent_scale_position (hb_position_t *x, hb_position_t *y) {
    *x = parent_scale_x_position (*x);
    *y = parent_scale_y_position (*y);
  }


171
  private:
B
Behdad Esfahbod 已提交
172
  inline hb_position_t em_scale (int16_t v, int scale) { return v * (int64_t) scale / hb_face_get_upem (this->face); }
173 174
};

175 176 177
#define HB_SHAPER_IMPLEMENT(shaper) HB_SHAPER_DATA_PROTOTYPE(shaper, font);
#include "hb-shaper-list.hh"
#undef HB_SHAPER_IMPLEMENT
178 179


180
#endif /* HB_FONT_PRIVATE_HH */