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-16 20:08:10 +01:00
|
|
|
hb_aat_layout_feature_selector_t get_selector (void) const
|
2018-11-25 07:14:40 +01:00
|
|
|
{ return (hb_aat_layout_feature_selector_t) (unsigned) setting; }
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
void get_info (hb_aat_layout_feature_selector_info_t *s,
|
2018-11-25 07:14:40 +01:00
|
|
|
hb_aat_layout_feature_selector_t default_selector) const
|
|
|
|
{
|
|
|
|
s->name_id = nameIndex;
|
|
|
|
|
|
|
|
s->enable = (hb_aat_layout_feature_selector_t) (unsigned int) setting;
|
|
|
|
s->disable = default_selector == HB_AAT_LAYOUT_FEATURE_SELECTOR_INVALID ?
|
|
|
|
(hb_aat_layout_feature_selector_t) (s->enable + 1) :
|
|
|
|
default_selector;
|
2018-11-17 09:00:50 +01:00
|
|
|
|
2018-11-25 07:14:40 +01:00
|
|
|
s->reserved = 0;
|
|
|
|
}
|
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);
|
|
|
|
return_trace (likely (c->check_struct (this)));
|
|
|
|
}
|
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
|
|
|
{
|
2018-11-25 07:14:40 +01:00
|
|
|
hb_array_t<const SettingName> arr = settings_table.sub_array (start_offset, selectors_count);
|
|
|
|
unsigned int count = arr.len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
settings_table[start_offset + i].get_info (&selectors[i], default_selector);
|
2018-11-01 10:44:29 +01:00
|
|
|
}
|
2018-11-25 07:14:40 +01:00
|
|
|
return settings_table.len;
|
2018-11-01 10:44:29 +01:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_aat_layout_feature_type_t get_feature_type (void) const
|
2018-11-17 09:00:50 +01:00
|
|
|
{ return (hb_aat_layout_feature_type_t) (unsigned int) feature; }
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_ot_name_id_t get_feature_name_id (void) const { return nameIndex; }
|
2018-11-17 09:00:50 +01: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. */
|
2018-09-15 19:43:33 +02:00
|
|
|
LOffsetTo<UnsizedArrayOf<SettingName>, false>
|
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
|
|
|
|
{
|
2018-11-29 21:04:34 +01:00
|
|
|
enum { tableTag = HB_AAT_TAG_feat };
|
2018-03-31 14:21:36 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool has_data (void) 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
|
|
|
{
|
2018-11-17 09:00:50 +01:00
|
|
|
unsigned int feature_count = featureNameCount;
|
|
|
|
if (count && *count)
|
|
|
|
{
|
|
|
|
unsigned int len = MIN (feature_count - start_offset, *count);
|
|
|
|
for (unsigned int i = 0; i < len; i++)
|
|
|
|
features[i] = namesZ[i + start_offset].get_feature_type ();
|
|
|
|
*count = len;
|
|
|
|
}
|
|
|
|
return featureNameCount;
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
const FeatureName& get_feature (hb_aat_layout_feature_type_t feature_type) const
|
2018-11-17 09:00:50 +01:00
|
|
|
{
|
2018-11-25 07:14:40 +01: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:
|
|
|
|
DEFINE_SIZE_STATIC (24);
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace AAT */
|
|
|
|
|
2018-04-01 09:46:42 +02:00
|
|
|
#endif /* HB_AAT_LAYOUT_FEAT_TABLE_HH */
|