hb-ot-map-private.hh 4.5 KB
Newer Older
B
Behdad Esfahbod 已提交
1
/*
B
Behdad Esfahbod 已提交
2 3
 * Copyright © 2009,2010  Red Hat, Inc.
 * Copyright © 2010  Google, Inc.
B
Behdad Esfahbod 已提交
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
 *
 *  This is part of HarfBuzz, a text shaping 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
 * Google Author(s): Behdad Esfahbod
 */

#ifndef HB_OT_MAP_PRIVATE_HH
#define HB_OT_MAP_PRIVATE_HH

32
#include "hb-buffer-private.hh"
B
Behdad Esfahbod 已提交
33 34 35 36 37 38 39 40

#include "hb-ot-layout.h"

HB_BEGIN_DECLS


static const hb_tag_t table_tags[2] = {HB_OT_TAG_GSUB, HB_OT_TAG_GPOS};

41
struct hb_ot_map_t {
B
Behdad Esfahbod 已提交
42

B
Behdad Esfahbod 已提交
43 44
  private:

B
Behdad Esfahbod 已提交
45 46
  struct feature_info_t {
    hb_tag_t tag;
47 48 49 50
    unsigned int seq; /* sequence#, used for stable sorting only */
    unsigned int max_value;
    bool global; /* whether the feature applies value to every glyph in the buffer */
    unsigned int default_value; /* for non-global features, what should the unset glyphs take */
B
Behdad Esfahbod 已提交
51

B
Behdad Esfahbod 已提交
52 53
    static int cmp (const feature_info_t *a, const feature_info_t *b)
    { return (a->tag != b->tag) ?  (a->tag < b->tag ? -1 : 1) : (a->seq < b->seq ? -1 : 1); }
B
Behdad Esfahbod 已提交
54 55 56 57 58 59 60
  };

  struct feature_map_t {
    hb_tag_t tag; /* should be first for our bsearch to work */
    unsigned int index[2]; /* GSUB, GPOS */
    unsigned int shift;
    hb_mask_t mask;
61
    hb_mask_t _1_mask; /* mask for value=1, for quick access */
B
Behdad Esfahbod 已提交
62

B
Behdad Esfahbod 已提交
63 64
    static int cmp (const feature_map_t *a, const feature_map_t *b)
    { return a->tag < b->tag ? -1 : a->tag > b->tag ? 1 : 0; }
B
Behdad Esfahbod 已提交
65 66 67 68 69 70
  };

  struct lookup_map_t {
    unsigned int index;
    hb_mask_t mask;

B
Behdad Esfahbod 已提交
71 72
    static int cmp (const lookup_map_t *a, const lookup_map_t *b)
    { return a->index < b->index ? -1 : a->index > b->index ? 1 : 0; }
B
Behdad Esfahbod 已提交
73 74
  };

75
  HB_INTERNAL void add_lookups (hb_face_t    *face,
B
Behdad Esfahbod 已提交
76 77 78
				unsigned int  table_index,
				unsigned int  feature_index,
				hb_mask_t     mask);
B
Behdad Esfahbod 已提交
79 80


B
Behdad Esfahbod 已提交
81
  public:
B
Behdad Esfahbod 已提交
82

B
Behdad Esfahbod 已提交
83
  void add_feature (hb_tag_t tag, unsigned int value, bool global)
B
Behdad Esfahbod 已提交
84
  {
85 86
    feature_info_t *info = feature_infos.push();
    if (unlikely (!info)) return;
B
Behdad Esfahbod 已提交
87
    info->tag = tag;
88
    info->seq = feature_infos.len;
89
    info->max_value = value;
B
Behdad Esfahbod 已提交
90
    info->global = global;
91
    info->default_value = global ? value : 0;
B
Behdad Esfahbod 已提交
92 93
  }

B
Behdad Esfahbod 已提交
94 95 96
  inline void add_bool_feature (hb_tag_t tag, bool global = true)
  { add_feature (tag, 1, global); }

97
  HB_INTERNAL void compile (hb_face_t *face,
98
			    const hb_segment_properties_t *props);
B
Behdad Esfahbod 已提交
99

100
  inline hb_mask_t get_global_mask (void) const { return global_mask; }
B
Behdad Esfahbod 已提交
101

102
  inline hb_mask_t get_mask (hb_tag_t tag, unsigned int *shift = NULL) const {
103
    const feature_map_t *map = feature_maps.bsearch (&tag);
B
Behdad Esfahbod 已提交
104 105
    if (shift) *shift = map ? map->shift : 0;
    return map ? map->mask : 0;
B
Behdad Esfahbod 已提交
106 107
  }

108
  inline hb_mask_t get_1_mask (hb_tag_t tag) const {
109
    const feature_map_t *map = feature_maps.bsearch (&tag);
110 111 112
    return map ? map->_1_mask : 0;
  }

113
  inline void substitute (hb_face_t *face, hb_buffer_t *buffer) const {
114
    for (unsigned int i = 0; i < lookup_maps[0].len; i++)
115
      hb_ot_layout_substitute_lookup (face, buffer, lookup_maps[0][i].index, lookup_maps[0][i].mask);
B
Behdad Esfahbod 已提交
116 117
  }

118
  inline void position (hb_font_t *font, hb_face_t *face, hb_buffer_t *buffer) const {
119
    for (unsigned int i = 0; i < lookup_maps[1].len; i++)
120
      hb_ot_layout_position_lookup (font, buffer, lookup_maps[1][i].index, lookup_maps[1][i].mask);
B
Behdad Esfahbod 已提交
121 122
  }

B
Behdad Esfahbod 已提交
123 124 125 126 127 128 129
  inline void finish (void) {
    feature_infos.finish ();
    feature_maps.finish ();
    lookup_maps[0].finish ();
    lookup_maps[1].finish ();
  }

B
Behdad Esfahbod 已提交
130 131 132 133
  private:

  hb_mask_t global_mask;

134 135
  hb_prealloced_array_t<feature_info_t,8> feature_infos; /* used before compile() only */
  hb_prealloced_array_t<feature_map_t, 8> feature_maps;
B
Behdad Esfahbod 已提交
136

137
  hb_prealloced_array_t<lookup_map_t, 32> lookup_maps[2]; /* GSUB/GPOS */
B
Behdad Esfahbod 已提交
138 139 140 141 142 143 144
};



HB_END_DECLS

#endif /* HB_OT_MAP_PRIVATE_HH */