2018-10-23 23:31:51 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Google, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_AAT_MAP_HH
|
|
|
|
#define HB_AAT_MAP_HH
|
|
|
|
|
|
|
|
#include "hb.hh"
|
|
|
|
|
|
|
|
|
|
|
|
struct hb_aat_map_t
|
|
|
|
{
|
|
|
|
friend struct hb_aat_map_builder_t;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
void init ()
|
2018-10-23 23:31:51 +02:00
|
|
|
{
|
|
|
|
memset (this, 0, sizeof (*this));
|
|
|
|
chain_flags.init ();
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
void fini () { chain_flags.fini (); }
|
2018-10-23 23:31:51 +02:00
|
|
|
|
|
|
|
public:
|
2018-12-27 23:56:22 +01:00
|
|
|
hb_vector_t<hb_mask_t> chain_flags;
|
2018-10-23 23:31:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct hb_aat_map_builder_t
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
HB_INTERNAL hb_aat_map_builder_t (hb_face_t *face_,
|
2022-07-18 05:56:56 +02:00
|
|
|
const hb_segment_properties_t props_) :
|
2022-07-18 05:32:27 +02:00
|
|
|
face (face_),
|
2022-07-18 05:56:56 +02:00
|
|
|
props (props_) {}
|
2018-10-23 23:31:51 +02:00
|
|
|
|
|
|
|
HB_INTERNAL void add_feature (hb_tag_t tag, unsigned int value=1);
|
|
|
|
|
2018-11-13 00:48:10 +01:00
|
|
|
HB_INTERNAL void compile (hb_aat_map_t &m);
|
2018-10-23 23:31:51 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
struct feature_info_t
|
|
|
|
{
|
2018-11-01 19:08:54 +01:00
|
|
|
hb_aat_layout_feature_type_t type;
|
2018-11-23 09:35:06 +01:00
|
|
|
hb_aat_layout_feature_selector_t setting;
|
2020-03-31 00:20:30 +02:00
|
|
|
bool is_exclusive;
|
2018-10-23 23:31:51 +02:00
|
|
|
unsigned seq; /* For stable sorting only. */
|
|
|
|
|
2019-04-12 23:50:03 +02:00
|
|
|
HB_INTERNAL static int cmp (const void *pa, const void *pb)
|
2018-10-23 23:31:51 +02:00
|
|
|
{
|
|
|
|
const feature_info_t *a = (const feature_info_t *) pa;
|
|
|
|
const feature_info_t *b = (const feature_info_t *) pb;
|
2020-03-31 00:20:30 +02:00
|
|
|
if (a->type != b->type) return (a->type < b->type ? -1 : 1);
|
|
|
|
if (!a->is_exclusive &&
|
2020-04-20 11:42:45 +02:00
|
|
|
(a->setting & ~1) != (b->setting & ~1)) return (a->setting < b->setting ? -1 : 1);
|
2020-03-31 00:20:30 +02:00
|
|
|
return (a->seq < b->seq ? -1 : a->seq > b->seq ? 1 : 0);
|
2018-10-23 23:31:51 +02:00
|
|
|
}
|
|
|
|
|
2020-03-31 00:20:30 +02:00
|
|
|
/* compares type & setting only, not is_exclusive flag or seq number */
|
|
|
|
int cmp (const feature_info_t& f) const
|
2018-10-23 23:31:51 +02:00
|
|
|
{
|
2020-03-31 00:20:30 +02:00
|
|
|
return (f.type != type) ? (f.type < type ? -1 : 1) :
|
2020-04-20 11:42:45 +02:00
|
|
|
(f.setting != setting) ? (f.setting < setting ? -1 : 1) : 0;
|
2018-10-23 23:31:51 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
hb_face_t *face;
|
2022-07-18 05:32:27 +02:00
|
|
|
hb_segment_properties_t props;
|
2018-10-23 23:31:51 +02:00
|
|
|
|
|
|
|
public:
|
2019-01-08 00:33:04 +01:00
|
|
|
hb_sorted_vector_t<feature_info_t> features;
|
2018-10-23 23:31:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HB_AAT_MAP_HH */
|