2018-03-31 14:21:36 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Ebrahim Byagowi
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-04-01 09:46:42 +02:00
|
|
|
#ifndef HB_AAT_LAYOUT_FEAT_TABLE_HH
|
|
|
|
#define HB_AAT_LAYOUT_FEAT_TABLE_HH
|
2018-03-31 14:21:36 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-aat-layout-common.hh"
|
2018-03-31 14:21:36 +02:00
|
|
|
|
2018-04-12 11:08:19 +02:00
|
|
|
/*
|
|
|
|
* feat -- Feature Name
|
|
|
|
* https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6feat.html
|
|
|
|
*/
|
2018-03-31 14:21:36 +02:00
|
|
|
#define HB_AAT_TAG_feat HB_TAG('f','e','a','t')
|
|
|
|
|
|
|
|
|
|
|
|
namespace AAT {
|
|
|
|
|
2018-04-12 11:08:19 +02:00
|
|
|
|
2018-04-01 09:46:42 +02:00
|
|
|
struct SettingName
|
|
|
|
{
|
2018-11-25 07:14:40 +01:00
|
|
|
friend struct FeatureName;
|
|
|
|
|
2018-11-24 16:46:56 +01:00
|
|
|
int cmp (hb_aat_layout_feature_selector_t key) const
|
2018-11-24 17:02:04 +01:00
|
|
|
{ return (int) key - (int) setting; }
|
2018-03-31 14:21:36 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_aat_layout_feature_selector_t get_selector () const
|
2018-11-25 07:14:40 +01:00
|
|
|
{ return (hb_aat_layout_feature_selector_t) (unsigned) setting; }
|
|
|
|
|
2019-07-30 02:14:23 +02:00
|
|
|
hb_aat_layout_feature_selector_info_t get_info (hb_aat_layout_feature_selector_t default_selector) const
|
2018-11-25 07:14:40 +01:00
|
|
|
{
|
2019-07-30 02:14:23 +02:00
|
|
|
return {
|
|
|
|
nameIndex,
|
|
|
|
(hb_aat_layout_feature_selector_t) (unsigned int) setting,
|
|
|
|
default_selector == HB_AAT_LAYOUT_FEATURE_SELECTOR_INVALID
|
|
|
|
? (hb_aat_layout_feature_selector_t) (setting + 1)
|
|
|
|
: default_selector,
|
|
|
|
0
|
|
|
|
};
|
2018-11-25 07:14:40 +01:00
|
|
|
}
|
2018-11-17 11:53:11 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2018-11-17 11:53:11 +01:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2022-07-11 22:01:52 +02:00
|
|
|
return_trace (c->check_struct (this));
|
2018-11-17 11:53:11 +01:00
|
|
|
}
|
2018-11-17 09:00:50 +01:00
|
|
|
|
|
|
|
protected:
|
2018-04-01 09:46:42 +02:00
|
|
|
HBUINT16 setting; /* The setting. */
|
|
|
|
NameID nameIndex; /* The name table index for the setting's name. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
|
|
|
};
|
2018-11-24 16:46:56 +01:00
|
|
|
DECLARE_NULL_NAMESPACE_BYTES (AAT, SettingName);
|
2018-04-01 09:46:42 +02:00
|
|
|
|
2018-11-01 10:44:29 +01:00
|
|
|
struct feat;
|
|
|
|
|
2018-04-01 09:46:42 +02:00
|
|
|
struct FeatureName
|
|
|
|
{
|
2018-11-24 16:54:40 +01:00
|
|
|
int cmp (hb_aat_layout_feature_type_t key) const
|
2018-11-24 17:02:04 +01:00
|
|
|
{ return (int) key - (int) feature; }
|
2018-11-01 10:44:29 +01:00
|
|
|
|
2018-03-31 14:21:36 +02:00
|
|
|
enum {
|
2018-11-24 17:00:42 +01:00
|
|
|
Exclusive = 0x8000, /* If set, the feature settings are mutually exclusive. */
|
|
|
|
NotDefault = 0x4000, /* If clear, then the setting with an index of 0 in
|
2018-03-31 14:21:36 +02:00
|
|
|
* the setting name array for this feature should
|
|
|
|
* be taken as the default for the feature
|
|
|
|
* (if one is required). If set, then bits 0-15 of this
|
|
|
|
* featureFlags field contain the index of the setting
|
|
|
|
* which is to be taken as the default. */
|
2018-11-24 17:00:42 +01:00
|
|
|
IndexMask = 0x00FF /* If bits 30 and 31 are set, then these sixteen bits
|
2018-03-31 14:21:36 +02:00
|
|
|
* indicate the index of the setting in the setting name
|
|
|
|
* array for this feature which should be taken
|
|
|
|
* as the default. */
|
|
|
|
};
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_selector_infos (unsigned int start_offset,
|
|
|
|
unsigned int *selectors_count, /* IN/OUT. May be NULL. */
|
|
|
|
hb_aat_layout_feature_selector_info_t *selectors, /* OUT. May be NULL. */
|
|
|
|
unsigned int *pdefault_index, /* OUT. May be NULL. */
|
|
|
|
const void *base) const
|
2018-11-01 10:44:29 +01:00
|
|
|
{
|
2018-11-25 07:14:40 +01:00
|
|
|
hb_array_t< const SettingName> settings_table = (base+settingTableZ).as_array (nSettings);
|
|
|
|
|
|
|
|
static_assert (Index::NOT_FOUND_INDEX == HB_AAT_LAYOUT_NO_SELECTOR_INDEX, "");
|
|
|
|
|
|
|
|
hb_aat_layout_feature_selector_t default_selector = HB_AAT_LAYOUT_FEATURE_SELECTOR_INVALID;
|
|
|
|
unsigned int default_index = Index::NOT_FOUND_INDEX;
|
|
|
|
if (featureFlags & Exclusive)
|
2018-11-01 10:44:29 +01:00
|
|
|
{
|
2018-11-25 07:14:40 +01:00
|
|
|
default_index = (featureFlags & NotDefault) ? featureFlags & IndexMask : 0;
|
|
|
|
default_selector = settings_table[default_index].get_selector ();
|
2018-11-17 09:00:50 +01:00
|
|
|
}
|
2018-11-25 07:14:40 +01:00
|
|
|
if (pdefault_index)
|
|
|
|
*pdefault_index = default_index;
|
|
|
|
|
|
|
|
if (selectors_count)
|
2018-11-17 09:00:50 +01:00
|
|
|
{
|
2019-07-30 02:14:23 +02:00
|
|
|
+ settings_table.sub_array (start_offset, selectors_count)
|
|
|
|
| hb_map ([=] (const SettingName& setting) { return setting.get_info (default_selector); })
|
|
|
|
| hb_sink (hb_array (selectors, *selectors_count))
|
|
|
|
;
|
2018-11-01 10:44:29 +01:00
|
|
|
}
|
2018-12-22 00:46:51 +01:00
|
|
|
return settings_table.length;
|
2018-11-01 10:44:29 +01:00
|
|
|
}
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_aat_layout_feature_type_t get_feature_type () const
|
2018-11-17 09:00:50 +01:00
|
|
|
{ return (hb_aat_layout_feature_type_t) (unsigned int) feature; }
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_ot_name_id_t get_feature_name_id () const { return nameIndex; }
|
2018-11-17 09:00:50 +01:00
|
|
|
|
2020-03-31 00:20:30 +02:00
|
|
|
bool is_exclusive () const { return featureFlags & Exclusive; }
|
|
|
|
|
2020-04-02 15:39:13 +02:00
|
|
|
/* A FeatureName with no settings is meaningless */
|
2020-04-02 21:35:40 +02:00
|
|
|
bool has_data () const { return nSettings; }
|
2020-04-02 15:39:13 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c, const void *base) const
|
2018-11-10 15:38:11 +01:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (likely (c->check_struct (this) &&
|
2018-11-17 09:00:50 +01:00
|
|
|
(base+settingTableZ).sanitize (c, nSettings)));
|
2018-11-10 15:38:11 +01:00
|
|
|
}
|
|
|
|
|
2018-03-31 14:21:36 +02:00
|
|
|
protected:
|
|
|
|
HBUINT16 feature; /* Feature type. */
|
|
|
|
HBUINT16 nSettings; /* The number of records in the setting name array. */
|
2021-03-31 20:49:14 +02:00
|
|
|
NNOffset32To<UnsizedArrayOf<SettingName>>
|
2018-11-17 09:00:50 +01:00
|
|
|
settingTableZ; /* Offset in bytes from the beginning of this table to
|
2018-03-31 14:21:36 +02:00
|
|
|
* this feature's setting name array. The actual type of
|
|
|
|
* record this offset refers to will depend on the
|
|
|
|
* exclusivity value, as described below. */
|
|
|
|
HBUINT16 featureFlags; /* Single-bit flags associated with the feature type. */
|
|
|
|
HBINT16 nameIndex; /* The name table index for the feature's name.
|
|
|
|
* This index has values greater than 255 and
|
|
|
|
* less than 32768. */
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (12);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct feat
|
|
|
|
{
|
2019-01-22 12:08:57 +01:00
|
|
|
static constexpr hb_tag_t tableTag = HB_AAT_TAG_feat;
|
2018-03-31 14:21:36 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_data () const { return version.to_int (); }
|
2018-11-24 16:54:40 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_feature_types (unsigned int start_offset,
|
|
|
|
unsigned int *count,
|
|
|
|
hb_aat_layout_feature_type_t *features) const
|
2018-11-01 10:44:29 +01:00
|
|
|
{
|
2019-07-30 02:14:23 +02:00
|
|
|
if (count)
|
2018-11-17 09:00:50 +01:00
|
|
|
{
|
2019-07-30 02:14:23 +02:00
|
|
|
+ namesZ.as_array (featureNameCount).sub_array (start_offset, count)
|
|
|
|
| hb_map (&FeatureName::get_feature_type)
|
|
|
|
| hb_sink (hb_array (features, *count))
|
|
|
|
;
|
2018-11-17 09:00:50 +01:00
|
|
|
}
|
|
|
|
return featureNameCount;
|
|
|
|
}
|
|
|
|
|
2020-04-02 15:39:13 +02:00
|
|
|
bool exposes_feature (hb_aat_layout_feature_type_t feature_type) const
|
|
|
|
{ return get_feature (feature_type).has_data (); }
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
const FeatureName& get_feature (hb_aat_layout_feature_type_t feature_type) const
|
2019-07-25 23:42:06 +02:00
|
|
|
{ return namesZ.bsearch (featureNameCount, feature_type); }
|
2018-11-16 22:37:09 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_ot_name_id_t get_feature_name_id (hb_aat_layout_feature_type_t feature) const
|
2018-11-17 09:00:50 +01:00
|
|
|
{ return get_feature (feature).get_feature_name_id (); }
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_selector_infos (hb_aat_layout_feature_type_t feature_type,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *selectors_count, /* IN/OUT. May be NULL. */
|
|
|
|
hb_aat_layout_feature_selector_info_t *selectors, /* OUT. May be NULL. */
|
|
|
|
unsigned int *default_index /* OUT. May be NULL. */) const
|
2018-11-16 22:37:09 +01:00
|
|
|
{
|
2018-11-25 07:14:40 +01:00
|
|
|
return get_feature (feature_type).get_selector_infos (start_offset, selectors_count, selectors,
|
|
|
|
default_index, this);
|
2018-11-01 10:44:29 +01:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2018-03-31 14:21:36 +02:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-04-18 09:39:37 +02:00
|
|
|
return_trace (likely (c->check_struct (this) &&
|
2018-11-25 07:14:40 +01:00
|
|
|
version.major == 1 &&
|
2018-11-17 09:00:50 +01:00
|
|
|
namesZ.sanitize (c, featureNameCount, this)));
|
2018-03-31 14:21:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
FixedVersion<>version; /* Version number of the feature name table
|
|
|
|
* (0x00010000 for the current version). */
|
|
|
|
HBUINT16 featureNameCount;
|
|
|
|
/* The number of entries in the feature name array. */
|
|
|
|
HBUINT16 reserved1; /* Reserved (set to zero). */
|
|
|
|
HBUINT32 reserved2; /* Reserved (set to zero). */
|
2018-11-24 16:54:40 +01:00
|
|
|
SortedUnsizedArrayOf<FeatureName>
|
2018-11-17 09:00:50 +01:00
|
|
|
namesZ; /* The feature name array. */
|
2018-03-31 14:21:36 +02:00
|
|
|
public:
|
2019-09-06 22:41:12 +02:00
|
|
|
DEFINE_SIZE_ARRAY (12, namesZ);
|
2018-03-31 14:21:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace AAT */
|
|
|
|
|
2018-04-01 09:46:42 +02:00
|
|
|
#endif /* HB_AAT_LAYOUT_FEAT_TABLE_HH */
|