2010-10-09 01:18:16 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2009,2010 Red Hat, Inc.
|
2012-07-30 08:38:39 +02:00
|
|
|
* Copyright © 2010,2011,2012 Google, Inc.
|
2010-10-09 01:18:16 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2010-10-12 22:00:21 +02:00
|
|
|
#include "hb-buffer-private.hh"
|
2010-10-09 01:18:16 +02:00
|
|
|
|
2012-07-30 08:38:39 +02:00
|
|
|
#include "hb-ot-layout-private.hh"
|
2010-10-09 01:18:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
static const hb_tag_t table_tags[2] = {HB_OT_TAG_GSUB, HB_OT_TAG_GPOS};
|
|
|
|
|
2011-05-28 00:13:31 +02:00
|
|
|
struct hb_ot_map_t
|
|
|
|
{
|
|
|
|
friend struct hb_ot_map_builder_t;
|
2010-10-09 01:18:16 +02:00
|
|
|
|
2010-10-09 01:43:48 +02:00
|
|
|
public:
|
2010-10-09 01:18:16 +02:00
|
|
|
|
2012-08-02 11:27:46 +02:00
|
|
|
struct feature_map_t {
|
|
|
|
hb_tag_t tag; /* should be first for our bsearch to work */
|
|
|
|
unsigned int index[2]; /* GSUB/GPOS */
|
|
|
|
unsigned int stage[2]; /* GSUB/GPOS */
|
|
|
|
unsigned int shift;
|
|
|
|
hb_mask_t mask;
|
|
|
|
hb_mask_t _1_mask; /* mask for value=1, for quick access */
|
|
|
|
|
|
|
|
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; }
|
|
|
|
};
|
|
|
|
|
|
|
|
struct lookup_map_t {
|
|
|
|
unsigned int index;
|
|
|
|
hb_mask_t mask;
|
|
|
|
|
|
|
|
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; }
|
|
|
|
};
|
|
|
|
|
2012-08-02 16:07:58 +02:00
|
|
|
typedef void (*pause_func_t) (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer);
|
2012-08-02 11:27:46 +02:00
|
|
|
|
|
|
|
struct pause_map_t {
|
|
|
|
unsigned int num_lookups; /* Cumulative */
|
2012-08-02 15:44:18 +02:00
|
|
|
pause_func_t callback;
|
2012-08-02 11:27:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-08-05 01:49:05 +02:00
|
|
|
hb_ot_map_t (void) { memset (this, 0, sizeof (*this)); }
|
|
|
|
|
2010-10-13 21:54:06 +02:00
|
|
|
inline hb_mask_t get_global_mask (void) const { return global_mask; }
|
2010-10-09 01:18:16 +02:00
|
|
|
|
2012-07-19 22:20:21 +02:00
|
|
|
inline hb_mask_t get_mask (hb_tag_t feature_tag, unsigned int *shift = NULL) const {
|
|
|
|
const feature_map_t *map = features.bsearch (&feature_tag);
|
2010-10-09 01:43:48 +02:00
|
|
|
if (shift) *shift = map ? map->shift : 0;
|
|
|
|
return map ? map->mask : 0;
|
2010-10-09 01:18:16 +02:00
|
|
|
}
|
|
|
|
|
2012-07-19 22:20:21 +02:00
|
|
|
inline hb_mask_t get_1_mask (hb_tag_t feature_tag) const {
|
|
|
|
const feature_map_t *map = features.bsearch (&feature_tag);
|
2010-10-13 21:54:06 +02:00
|
|
|
return map ? map->_1_mask : 0;
|
|
|
|
}
|
|
|
|
|
2012-08-02 11:27:46 +02:00
|
|
|
inline unsigned int get_feature_index (unsigned int table_index, hb_tag_t feature_tag) const {
|
2012-07-19 22:20:21 +02:00
|
|
|
const feature_map_t *map = features.bsearch (&feature_tag);
|
|
|
|
return map ? map->index[table_index] : HB_OT_LAYOUT_NO_FEATURE_INDEX;
|
|
|
|
}
|
|
|
|
|
2012-08-02 11:27:46 +02:00
|
|
|
inline unsigned int get_feature_stage (unsigned int table_index, hb_tag_t feature_tag) const {
|
|
|
|
const feature_map_t *map = features.bsearch (&feature_tag);
|
|
|
|
return map ? map->stage[table_index] : (unsigned int) -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
|
|
|
|
const struct lookup_map_t **plookups, unsigned int *lookup_count) const {
|
|
|
|
if (unlikely (stage == (unsigned int) -1)) {
|
|
|
|
*plookups = NULL;
|
|
|
|
*lookup_count = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert (stage <= pauses[table_index].len);
|
|
|
|
unsigned int start = stage ? pauses[table_index][stage - 1].num_lookups : 0;
|
|
|
|
unsigned int end = stage < pauses[table_index].len ? pauses[table_index][stage].num_lookups : lookups[table_index].len;
|
|
|
|
*plookups = &lookups[table_index][start];
|
|
|
|
*lookup_count = end - start;
|
|
|
|
}
|
|
|
|
|
2011-07-31 03:08:10 +02:00
|
|
|
inline hb_tag_t get_chosen_script (unsigned int table_index) const
|
|
|
|
{ return chosen_script[table_index]; }
|
|
|
|
|
2012-08-02 16:07:58 +02:00
|
|
|
HB_INTERNAL void substitute_closure (const struct hb_ot_shape_plan_t *plan, hb_face_t *face, hb_set_t *glyphs) const;
|
|
|
|
HB_INTERNAL void substitute (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
|
|
|
|
HB_INTERNAL void position (const struct hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const;
|
2012-04-24 22:56:37 +02:00
|
|
|
|
2011-05-11 20:19:18 +02:00
|
|
|
inline void finish (void) {
|
2011-05-28 00:13:31 +02:00
|
|
|
features.finish ();
|
|
|
|
lookups[0].finish ();
|
|
|
|
lookups[1].finish ();
|
2011-07-08 03:07:41 +02:00
|
|
|
pauses[0].finish ();
|
|
|
|
pauses[1].finish ();
|
2011-05-11 20:19:18 +02:00
|
|
|
}
|
|
|
|
|
2011-05-28 00:13:31 +02:00
|
|
|
|
2012-08-02 11:27:46 +02:00
|
|
|
private:
|
2011-07-08 03:07:41 +02:00
|
|
|
|
2011-05-28 00:13:31 +02:00
|
|
|
HB_INTERNAL void add_lookups (hb_face_t *face,
|
|
|
|
unsigned int table_index,
|
|
|
|
unsigned int feature_index,
|
|
|
|
hb_mask_t mask);
|
|
|
|
|
|
|
|
hb_mask_t global_mask;
|
|
|
|
|
2011-07-31 02:57:01 +02:00
|
|
|
hb_tag_t chosen_script[2];
|
2011-05-28 00:13:31 +02:00
|
|
|
hb_prealloced_array_t<feature_map_t, 8> features;
|
|
|
|
hb_prealloced_array_t<lookup_map_t, 32> lookups[2]; /* GSUB/GPOS */
|
2011-07-08 03:07:41 +02:00
|
|
|
hb_prealloced_array_t<pause_map_t, 1> pauses[2]; /* GSUB/GPOS */
|
2011-05-28 00:13:31 +02:00
|
|
|
};
|
2010-10-09 01:18:16 +02:00
|
|
|
|
|
|
|
|
2011-07-07 22:20:35 +02:00
|
|
|
struct hb_ot_map_builder_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2011-08-05 01:49:05 +02:00
|
|
|
hb_ot_map_builder_t (void) { memset (this, 0, sizeof (*this)); }
|
|
|
|
|
2012-09-05 05:06:38 +02:00
|
|
|
HB_INTERNAL void add_feature (hb_tag_t tag, unsigned int value, bool global, bool has_fallback = false);
|
2011-07-07 22:20:35 +02:00
|
|
|
|
2012-09-05 05:06:38 +02:00
|
|
|
inline void add_bool_feature (hb_tag_t tag, bool global = true, bool has_fallback = false)
|
|
|
|
{ add_feature (tag, 1, global, has_fallback); }
|
2011-07-07 22:20:35 +02:00
|
|
|
|
2012-08-02 15:44:18 +02:00
|
|
|
inline void add_gsub_pause (hb_ot_map_t::pause_func_t pause_func)
|
|
|
|
{ add_pause (0, pause_func); }
|
|
|
|
inline void add_gpos_pause (hb_ot_map_t::pause_func_t pause_func)
|
|
|
|
{ add_pause (1, pause_func); }
|
2011-07-08 03:07:41 +02:00
|
|
|
|
2011-07-07 22:20:35 +02:00
|
|
|
HB_INTERNAL void compile (hb_face_t *face,
|
|
|
|
const hb_segment_properties_t *props,
|
|
|
|
struct hb_ot_map_t &m);
|
|
|
|
|
|
|
|
inline void finish (void) {
|
|
|
|
feature_infos.finish ();
|
2011-07-08 03:07:41 +02:00
|
|
|
pauses[0].finish ();
|
|
|
|
pauses[1].finish ();
|
2011-07-07 22:20:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
struct feature_info_t {
|
|
|
|
hb_tag_t tag;
|
|
|
|
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 */
|
2012-09-05 05:06:38 +02:00
|
|
|
bool has_fallback; /* whether to allocate bits even if feature not found */
|
2011-07-07 22:20:35 +02:00
|
|
|
unsigned int default_value; /* for non-global features, what should the unset glyphs take */
|
2011-07-08 03:07:41 +02:00
|
|
|
unsigned int stage[2]; /* GSUB/GPOS */
|
2011-07-07 22:20:35 +02:00
|
|
|
|
|
|
|
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); }
|
|
|
|
};
|
|
|
|
|
2011-07-08 03:07:41 +02:00
|
|
|
struct pause_info_t {
|
|
|
|
unsigned int stage;
|
2012-08-02 15:44:18 +02:00
|
|
|
hb_ot_map_t::pause_func_t callback;
|
2011-07-08 03:07:41 +02:00
|
|
|
};
|
|
|
|
|
2012-08-02 15:44:18 +02:00
|
|
|
HB_INTERNAL void add_pause (unsigned int table_index, hb_ot_map_t::pause_func_t pause_func);
|
2011-07-08 03:22:08 +02:00
|
|
|
|
2011-07-08 03:07:41 +02:00
|
|
|
unsigned int current_stage[2]; /* GSUB/GPOS */
|
|
|
|
hb_prealloced_array_t<feature_info_t,16> feature_infos;
|
|
|
|
hb_prealloced_array_t<pause_info_t, 1> pauses[2]; /* GSUB/GPOS */
|
2011-07-07 22:20:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-10-09 01:18:16 +02:00
|
|
|
|
|
|
|
#endif /* HB_OT_MAP_PRIVATE_HH */
|