2010-10-12 22:50:36 +02:00
|
|
|
/*
|
2012-03-07 23:13:25 +01:00
|
|
|
* Copyright © 2010,2011,2012 Google, Inc.
|
2010-10-12 22:50:36 +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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2022-06-03 10:54:33 +02:00
|
|
|
#ifndef HB_OT_SHAPER_HH
|
|
|
|
#define HB_OT_SHAPER_HH
|
2010-10-12 22:50:36 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2010-10-12 22:50:36 +02:00
|
|
|
|
2018-10-02 13:11:18 +02:00
|
|
|
#include "hb-ot-layout.hh"
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-ot-shape.hh"
|
|
|
|
#include "hb-ot-shape-normalize.hh"
|
2010-10-12 22:50:36 +02:00
|
|
|
|
|
|
|
|
2022-06-03 10:46:58 +02:00
|
|
|
/* buffer var allocations, used by all OT shapers */
|
|
|
|
#define ot_shaper_var_u8_category() var2.u8[2]
|
|
|
|
#define ot_shaper_var_u8_auxiliary() var2.u8[3]
|
2011-07-28 22:48:43 +02:00
|
|
|
|
2011-07-08 04:25:25 +02:00
|
|
|
|
2022-06-03 10:45:04 +02:00
|
|
|
#define HB_OT_SHAPE_MAX_COMBINING_MARKS 32
|
2017-10-04 14:47:10 +02:00
|
|
|
|
2013-10-28 00:20:59 +01:00
|
|
|
enum hb_ot_shape_zero_width_marks_type_t {
|
Adjust mark advance-width zeroing logic for Myanmar
Before, we were zeroing advance width of attached marks for
non-Indic scripts, and not doing it for Indic.
We have now three different behaviors, which seem to better
reflect what Uniscribe is doing:
- For Indic, no explicit zeroing happens whatsoever, which
is the same as before,
- For Myanmar, zero advance width of glyphs marked as marks
*in GDEF*, and do that *before* applying GPOS. This seems
to be what the new Win8 Myanmar shaper does,
- For everything else, zero advance width of glyphs that are
from General_Category=Mn Unicode characters, and do so
before applying GPOS. This seems to be what Uniscribe does
for Latin at least.
With these changes, positioning of all tests matches for Myanmar,
except for the glitch in Uniscribe not applying 'mark'. See preivous
commit.
2013-02-12 15:44:57 +01:00
|
|
|
HB_OT_SHAPE_ZERO_WIDTH_MARKS_NONE,
|
2013-05-20 15:11:35 +02:00
|
|
|
HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY,
|
2015-12-17 18:47:35 +01:00
|
|
|
HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_LATE
|
Adjust mark advance-width zeroing logic for Myanmar
Before, we were zeroing advance width of attached marks for
non-Indic scripts, and not doing it for Indic.
We have now three different behaviors, which seem to better
reflect what Uniscribe is doing:
- For Indic, no explicit zeroing happens whatsoever, which
is the same as before,
- For Myanmar, zero advance width of glyphs marked as marks
*in GDEF*, and do that *before* applying GPOS. This seems
to be what the new Win8 Myanmar shaper does,
- For everything else, zero advance width of glyphs that are
from General_Category=Mn Unicode characters, and do so
before applying GPOS. This seems to be what Uniscribe does
for Latin at least.
With these changes, positioning of all tests matches for Myanmar,
except for the glitch in Uniscribe not applying 'mark'. See preivous
commit.
2013-02-12 15:44:57 +01:00
|
|
|
};
|
|
|
|
|
2012-07-31 03:08:51 +02:00
|
|
|
|
|
|
|
/* Master OT shaper list */
|
2022-06-03 10:40:54 +02:00
|
|
|
#define HB_OT_SHAPERS_IMPLEMENT_SHAPERS \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (arabic) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (default) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (dumber) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (hangul) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (hebrew) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (indic) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (khmer) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (myanmar) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (myanmar_zawgyi) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (thai) \
|
|
|
|
HB_OT_SHAPER_IMPLEMENT (use) \
|
2019-12-10 01:10:34 +01:00
|
|
|
/* ^--- Add new shapers here; keep sorted. */
|
2011-07-08 05:42:40 +02:00
|
|
|
|
2012-07-31 03:08:51 +02:00
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
struct hb_ot_shaper_t
|
2012-07-31 03:08:51 +02:00
|
|
|
{
|
|
|
|
/* collect_features()
|
|
|
|
* Called during shape_plan().
|
2012-08-02 15:38:28 +02:00
|
|
|
* Shapers should use plan->map to add their features and callbacks.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-07-31 03:08:51 +02:00
|
|
|
*/
|
2012-08-02 15:38:28 +02:00
|
|
|
void (*collect_features) (hb_ot_shape_planner_t *plan);
|
2012-07-31 03:08:51 +02:00
|
|
|
|
|
|
|
/* override_features()
|
|
|
|
* Called during shape_plan().
|
2012-08-02 15:38:28 +02:00
|
|
|
* Shapers should use plan->map to override features and add callbacks after
|
2012-07-31 03:08:51 +02:00
|
|
|
* common features are added.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-07-31 03:08:51 +02:00
|
|
|
*/
|
2012-08-02 15:38:28 +02:00
|
|
|
void (*override_features) (hb_ot_shape_planner_t *plan);
|
2012-07-31 03:08:51 +02:00
|
|
|
|
2012-08-02 16:46:34 +02:00
|
|
|
|
|
|
|
/* data_create()
|
|
|
|
* Called at the end of shape_plan().
|
|
|
|
* Whatever shapers return will be accessible through plan->data later.
|
2017-10-15 12:11:08 +02:00
|
|
|
* If nullptr is returned, means a plan failure.
|
2012-08-12 00:34:13 +02:00
|
|
|
*/
|
2012-08-02 16:46:34 +02:00
|
|
|
void *(*data_create) (const hb_ot_shape_plan_t *plan);
|
|
|
|
|
|
|
|
/* data_destroy()
|
|
|
|
* Called when the shape_plan is being destroyed.
|
|
|
|
* plan->data is passed here for destruction.
|
2017-10-15 12:11:08 +02:00
|
|
|
* If nullptr is returned, means a plan failure.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-11-13 21:35:35 +01:00
|
|
|
*/
|
2012-08-02 16:46:34 +02:00
|
|
|
void (*data_destroy) (void *data);
|
|
|
|
|
2012-08-12 00:34:13 +02:00
|
|
|
|
|
|
|
/* preprocess_text()
|
|
|
|
* Called during shape().
|
|
|
|
* Shapers can use to modify text before shaping starts.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-08-12 00:34:13 +02:00
|
|
|
*/
|
|
|
|
void (*preprocess_text) (const hb_ot_shape_plan_t *plan,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_font_t *font);
|
|
|
|
|
2015-11-05 22:24:15 +01:00
|
|
|
/* postprocess_glyphs()
|
|
|
|
* Called during shape().
|
|
|
|
* Shapers can use to modify glyphs after shaping ends.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2015-11-05 22:24:15 +01:00
|
|
|
*/
|
|
|
|
void (*postprocess_glyphs) (const hb_ot_shape_plan_t *plan,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_font_t *font);
|
|
|
|
|
2012-08-12 00:34:13 +02:00
|
|
|
|
2012-11-13 21:35:35 +01:00
|
|
|
/* decompose()
|
|
|
|
* Called during shape()'s normalization.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-11-13 21:35:35 +01:00
|
|
|
*/
|
2012-11-16 21:39:23 +01:00
|
|
|
bool (*decompose) (const hb_ot_shape_normalize_context_t *c,
|
|
|
|
hb_codepoint_t ab,
|
|
|
|
hb_codepoint_t *a,
|
|
|
|
hb_codepoint_t *b);
|
2012-11-13 21:35:35 +01:00
|
|
|
|
|
|
|
/* compose()
|
|
|
|
* Called during shape()'s normalization.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-11-13 21:35:35 +01:00
|
|
|
*/
|
2012-11-16 21:39:23 +01:00
|
|
|
bool (*compose) (const hb_ot_shape_normalize_context_t *c,
|
|
|
|
hb_codepoint_t a,
|
|
|
|
hb_codepoint_t b,
|
|
|
|
hb_codepoint_t *ab);
|
2012-07-31 03:08:51 +02:00
|
|
|
|
|
|
|
/* setup_masks()
|
2012-08-02 15:38:28 +02:00
|
|
|
* Called during shape().
|
2012-07-31 03:08:51 +02:00
|
|
|
* Shapers should use map to get feature masks and set on buffer.
|
2012-08-12 00:34:13 +02:00
|
|
|
* Shapers may NOT modify characters.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2012-07-31 03:08:51 +02:00
|
|
|
*/
|
2012-08-02 15:38:28 +02:00
|
|
|
void (*setup_masks) (const hb_ot_shape_plan_t *plan,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_font_t *font);
|
2012-08-01 05:08:25 +02:00
|
|
|
|
2017-10-04 14:47:10 +02:00
|
|
|
/* reorder_marks()
|
|
|
|
* Called during shape().
|
|
|
|
* Shapers can use to modify ordering of combining marks.
|
2018-10-13 12:30:05 +02:00
|
|
|
* May be NULL.
|
2017-10-04 14:47:10 +02:00
|
|
|
*/
|
|
|
|
void (*reorder_marks) (const hb_ot_shape_plan_t *plan,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
unsigned int start,
|
|
|
|
unsigned int end);
|
|
|
|
|
2022-07-13 21:34:11 +02:00
|
|
|
/* gpos_tag()
|
|
|
|
* If not HB_TAG_NONE, then must match found GPOS script tag for
|
|
|
|
* GPOS to be applied. Otherwise, fallback positioning will be used.
|
|
|
|
*/
|
|
|
|
hb_tag_t gpos_tag;
|
|
|
|
|
|
|
|
hb_ot_shape_normalization_mode_t normalization_preference;
|
|
|
|
|
2013-10-28 00:20:59 +01:00
|
|
|
hb_ot_shape_zero_width_marks_type_t zero_width_marks;
|
Adjust mark advance-width zeroing logic for Myanmar
Before, we were zeroing advance width of attached marks for
non-Indic scripts, and not doing it for Indic.
We have now three different behaviors, which seem to better
reflect what Uniscribe is doing:
- For Indic, no explicit zeroing happens whatsoever, which
is the same as before,
- For Myanmar, zero advance width of glyphs marked as marks
*in GDEF*, and do that *before* applying GPOS. This seems
to be what the new Win8 Myanmar shaper does,
- For everything else, zero advance width of glyphs that are
from General_Category=Mn Unicode characters, and do so
before applying GPOS. This seems to be what Uniscribe does
for Latin at least.
With these changes, positioning of all tests matches for Myanmar,
except for the glitch in Uniscribe not applying 'mark'. See preivous
commit.
2013-02-12 15:44:57 +01:00
|
|
|
|
2012-11-14 22:48:26 +01:00
|
|
|
bool fallback_position;
|
2011-07-08 04:25:25 +02:00
|
|
|
};
|
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
#define HB_OT_SHAPER_IMPLEMENT(name) extern HB_INTERNAL const hb_ot_shaper_t _hb_ot_shaper_##name;
|
2022-06-03 10:40:54 +02:00
|
|
|
HB_OT_SHAPERS_IMPLEMENT_SHAPERS
|
|
|
|
#undef HB_OT_SHAPER_IMPLEMENT
|
2012-07-31 03:08:51 +02:00
|
|
|
|
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
static inline const hb_ot_shaper_t *
|
2022-06-03 10:48:34 +02:00
|
|
|
hb_ot_shaper_categorize (const hb_ot_shape_planner_t *planner)
|
2010-10-12 22:50:36 +02:00
|
|
|
{
|
2012-11-13 03:23:38 +01:00
|
|
|
switch ((hb_tag_t) planner->props.script)
|
2011-04-19 05:40:21 +02:00
|
|
|
{
|
2011-07-08 05:42:40 +02:00
|
|
|
default:
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_default;
|
2011-07-08 05:42:40 +02:00
|
|
|
|
2012-04-07 21:06:55 +02:00
|
|
|
|
2012-03-07 22:51:29 +01:00
|
|
|
/* Unicode-1.1 additions */
|
2010-10-12 22:50:36 +02:00
|
|
|
case HB_SCRIPT_ARABIC:
|
2013-08-09 20:34:54 +02:00
|
|
|
|
|
|
|
/* Unicode-3.0 additions */
|
2011-06-02 23:43:12 +02:00
|
|
|
case HB_SCRIPT_SYRIAC:
|
2012-03-07 22:51:29 +01:00
|
|
|
|
2012-11-13 03:36:10 +01:00
|
|
|
/* For Arabic script, use the Arabic shaper even if no OT script tag was found.
|
2015-04-23 13:45:02 +02:00
|
|
|
* This is because we do fallback shaping for Arabic script (and not others).
|
|
|
|
* But note that Arabic shaping is applicable only to horizontal layout; for
|
|
|
|
* vertical text, just use the generic shaper instead. */
|
|
|
|
if ((planner->map.chosen_script[0] != HB_OT_TAG_DEFAULT_SCRIPT ||
|
|
|
|
planner->props.script == HB_SCRIPT_ARABIC) &&
|
|
|
|
HB_DIRECTION_IS_HORIZONTAL(planner->props.direction))
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_arabic;
|
2012-11-13 03:27:42 +01:00
|
|
|
else
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_default;
|
2010-10-12 22:50:36 +02:00
|
|
|
|
2012-04-07 21:06:55 +02:00
|
|
|
|
2012-04-10 16:52:07 +02:00
|
|
|
/* Unicode-1.1 additions */
|
|
|
|
case HB_SCRIPT_THAI:
|
|
|
|
case HB_SCRIPT_LAO:
|
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_thai;
|
2012-04-10 16:52:07 +02:00
|
|
|
|
|
|
|
|
2013-04-05 18:38:58 +02:00
|
|
|
/* Unicode-1.1 additions */
|
|
|
|
case HB_SCRIPT_HANGUL:
|
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_hangul;
|
2013-04-05 18:38:58 +02:00
|
|
|
|
2012-04-07 21:06:55 +02:00
|
|
|
|
2013-12-31 09:49:15 +01:00
|
|
|
/* Unicode-1.1 additions */
|
|
|
|
case HB_SCRIPT_HEBREW:
|
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_hebrew;
|
2013-12-31 09:49:15 +01:00
|
|
|
|
|
|
|
|
2012-03-07 23:13:25 +01:00
|
|
|
/* Unicode-1.1 additions */
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_BENGALI:
|
2011-06-02 23:43:12 +02:00
|
|
|
case HB_SCRIPT_DEVANAGARI:
|
|
|
|
case HB_SCRIPT_GUJARATI:
|
|
|
|
case HB_SCRIPT_GURMUKHI:
|
|
|
|
case HB_SCRIPT_KANNADA:
|
|
|
|
case HB_SCRIPT_MALAYALAM:
|
2012-01-19 21:15:21 +01:00
|
|
|
case HB_SCRIPT_ORIYA:
|
2012-03-07 23:13:25 +01:00
|
|
|
case HB_SCRIPT_TAMIL:
|
|
|
|
case HB_SCRIPT_TELUGU:
|
|
|
|
|
2013-02-12 16:31:14 +01:00
|
|
|
/* If the designer designed the font for the 'DFLT' script,
|
2017-10-02 18:21:27 +02:00
|
|
|
* (or we ended up arbitrarily pick 'latn'), use the default shaper.
|
|
|
|
* Otherwise, use the specific shaper.
|
2018-10-11 23:51:21 +02:00
|
|
|
*
|
|
|
|
* If it's indy3 tag, send to USE. */
|
2017-10-02 18:21:27 +02:00
|
|
|
if (planner->map.chosen_script[0] == HB_TAG ('D','F','L','T') ||
|
|
|
|
planner->map.chosen_script[0] == HB_TAG ('l','a','t','n'))
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_default;
|
2018-10-11 23:51:21 +02:00
|
|
|
else if ((planner->map.chosen_script[0] & 0x000000FF) == '3')
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_use;
|
2013-02-12 16:31:14 +01:00
|
|
|
else
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_indic;
|
2012-11-14 22:38:16 +01:00
|
|
|
|
|
|
|
case HB_SCRIPT_KHMER:
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_khmer;
|
2012-11-14 22:38:16 +01:00
|
|
|
|
|
|
|
case HB_SCRIPT_MYANMAR:
|
2018-11-22 20:45:46 +01:00
|
|
|
/* If the designer designed the font for the 'DFLT' script,
|
|
|
|
* (or we ended up arbitrarily pick 'latn'), use the default shaper.
|
|
|
|
* Otherwise, use the specific shaper.
|
|
|
|
*
|
|
|
|
* If designer designed for 'mymr' tag, also send to default
|
|
|
|
* shaper. That's tag used from before Myanmar shaping spec
|
|
|
|
* was developed. The shaping spec uses 'mym2' tag. */
|
|
|
|
if (planner->map.chosen_script[0] == HB_TAG ('D','F','L','T') ||
|
|
|
|
planner->map.chosen_script[0] == HB_TAG ('l','a','t','n') ||
|
|
|
|
planner->map.chosen_script[0] == HB_TAG ('m','y','m','r'))
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_default;
|
2018-11-22 20:45:46 +01:00
|
|
|
else
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_myanmar;
|
2013-02-12 18:14:10 +01:00
|
|
|
|
2015-07-21 11:02:04 +02:00
|
|
|
|
2022-11-24 20:46:04 +01:00
|
|
|
#ifndef HB_NO_OT_SHAPER_MYANMAR_ZAWGYI
|
2020-06-29 11:07:20 +02:00
|
|
|
#define HB_SCRIPT_MYANMAR_ZAWGYI ((hb_script_t) HB_TAG ('Q','a','a','g'))
|
2018-11-22 20:46:39 +01:00
|
|
|
case HB_SCRIPT_MYANMAR_ZAWGYI:
|
2020-06-29 11:07:20 +02:00
|
|
|
/* https://github.com/harfbuzz/harfbuzz/issues/1162 */
|
2018-11-22 20:46:39 +01:00
|
|
|
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_myanmar_zawgyi;
|
2022-11-24 20:46:04 +01:00
|
|
|
#endif
|
2018-11-22 20:46:39 +01:00
|
|
|
|
|
|
|
|
2015-07-21 11:02:04 +02:00
|
|
|
/* Unicode-2.0 additions */
|
2018-10-02 18:43:29 +02:00
|
|
|
case HB_SCRIPT_TIBETAN:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-3.0 additions */
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_MONGOLIAN:
|
2018-10-01 12:23:39 +02:00
|
|
|
case HB_SCRIPT_SINHALA:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-3.2 additions */
|
|
|
|
case HB_SCRIPT_BUHID:
|
|
|
|
case HB_SCRIPT_HANUNOO:
|
|
|
|
case HB_SCRIPT_TAGALOG:
|
|
|
|
case HB_SCRIPT_TAGBANWA:
|
|
|
|
|
|
|
|
/* Unicode-4.0 additions */
|
|
|
|
case HB_SCRIPT_LIMBU:
|
|
|
|
case HB_SCRIPT_TAI_LE:
|
|
|
|
|
|
|
|
/* Unicode-4.1 additions */
|
2015-07-21 18:46:06 +02:00
|
|
|
case HB_SCRIPT_BUGINESE:
|
2015-07-21 11:02:04 +02:00
|
|
|
case HB_SCRIPT_KHAROSHTHI:
|
|
|
|
case HB_SCRIPT_SYLOTI_NAGRI:
|
|
|
|
case HB_SCRIPT_TIFINAGH:
|
|
|
|
|
|
|
|
/* Unicode-5.0 additions */
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_BALINESE:
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_NKO:
|
|
|
|
case HB_SCRIPT_PHAGS_PA:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-5.1 additions */
|
2015-07-21 18:46:06 +02:00
|
|
|
case HB_SCRIPT_CHAM:
|
2015-07-21 11:02:04 +02:00
|
|
|
case HB_SCRIPT_KAYAH_LI:
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_LEPCHA:
|
|
|
|
case HB_SCRIPT_REJANG:
|
2015-07-21 11:02:04 +02:00
|
|
|
case HB_SCRIPT_SAURASHTRA:
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_SUNDANESE:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-5.2 additions */
|
|
|
|
case HB_SCRIPT_EGYPTIAN_HIEROGLYPHS:
|
2016-05-06 16:52:27 +02:00
|
|
|
case HB_SCRIPT_JAVANESE:
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_KAITHI:
|
|
|
|
case HB_SCRIPT_MEETEI_MAYEK:
|
2015-07-21 18:46:06 +02:00
|
|
|
case HB_SCRIPT_TAI_THAM:
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_TAI_VIET:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-6.0 additions */
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_BATAK:
|
2015-07-21 11:02:04 +02:00
|
|
|
case HB_SCRIPT_BRAHMI:
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_MANDAIC:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-6.1 additions */
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_CHAKMA:
|
2020-08-13 19:37:45 +02:00
|
|
|
case HB_SCRIPT_MIAO:
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_SHARADA:
|
|
|
|
case HB_SCRIPT_TAKRI:
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-7.0 additions */
|
|
|
|
case HB_SCRIPT_DUPLOYAN:
|
|
|
|
case HB_SCRIPT_GRANTHA:
|
|
|
|
case HB_SCRIPT_KHOJKI:
|
|
|
|
case HB_SCRIPT_KHUDAWADI:
|
|
|
|
case HB_SCRIPT_MAHAJANI:
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_MANICHAEAN:
|
2015-07-21 11:02:04 +02:00
|
|
|
case HB_SCRIPT_MODI:
|
|
|
|
case HB_SCRIPT_PAHAWH_HMONG:
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_PSALTER_PAHLAVI:
|
2015-07-21 11:02:04 +02:00
|
|
|
case HB_SCRIPT_SIDDHAM:
|
|
|
|
case HB_SCRIPT_TIRHUTA:
|
|
|
|
|
2016-05-06 13:08:18 +02:00
|
|
|
/* Unicode-8.0 additions */
|
|
|
|
case HB_SCRIPT_AHOM:
|
2020-08-13 19:37:45 +02:00
|
|
|
case HB_SCRIPT_MULTANI:
|
2016-05-06 13:08:18 +02:00
|
|
|
|
|
|
|
/* Unicode-9.0 additions */
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_ADLAM:
|
2016-05-06 13:08:18 +02:00
|
|
|
case HB_SCRIPT_BHAIKSUKI:
|
|
|
|
case HB_SCRIPT_MARCHEN:
|
|
|
|
case HB_SCRIPT_NEWA:
|
|
|
|
|
2017-10-02 16:12:18 +02:00
|
|
|
/* Unicode-10.0 additions */
|
|
|
|
case HB_SCRIPT_MASARAM_GONDI:
|
|
|
|
case HB_SCRIPT_SOYOMBO:
|
|
|
|
case HB_SCRIPT_ZANABAZAR_SQUARE:
|
|
|
|
|
2018-06-06 02:31:46 +02:00
|
|
|
/* Unicode-11.0 additions */
|
|
|
|
case HB_SCRIPT_DOGRA:
|
|
|
|
case HB_SCRIPT_GUNJALA_GONDI:
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_HANIFI_ROHINGYA:
|
2018-06-06 02:31:46 +02:00
|
|
|
case HB_SCRIPT_MAKASAR:
|
2020-08-13 19:37:45 +02:00
|
|
|
case HB_SCRIPT_MEDEFAIDRIN:
|
|
|
|
case HB_SCRIPT_OLD_SOGDIAN:
|
2020-08-30 01:41:40 +02:00
|
|
|
case HB_SCRIPT_SOGDIAN:
|
2018-06-06 02:31:46 +02:00
|
|
|
|
2019-03-06 18:37:25 +01:00
|
|
|
/* Unicode-12.0 additions */
|
2020-08-13 19:37:45 +02:00
|
|
|
case HB_SCRIPT_ELYMAIC:
|
2019-03-06 18:37:25 +01:00
|
|
|
case HB_SCRIPT_NANDINAGARI:
|
2020-08-13 19:37:45 +02:00
|
|
|
case HB_SCRIPT_NYIAKENG_PUACHUE_HMONG:
|
|
|
|
case HB_SCRIPT_WANCHO:
|
2019-03-06 18:37:25 +01:00
|
|
|
|
2020-03-15 20:59:31 +01:00
|
|
|
/* Unicode-13.0 additions */
|
|
|
|
case HB_SCRIPT_CHORASMIAN:
|
|
|
|
case HB_SCRIPT_DIVES_AKURU:
|
2021-09-15 02:56:37 +02:00
|
|
|
case HB_SCRIPT_KHITAN_SMALL_SCRIPT:
|
|
|
|
case HB_SCRIPT_YEZIDI:
|
2020-03-15 20:59:31 +01:00
|
|
|
|
2021-09-15 00:31:42 +02:00
|
|
|
/* Unicode-14.0 additions */
|
|
|
|
case HB_SCRIPT_CYPRO_MINOAN:
|
|
|
|
case HB_SCRIPT_OLD_UYGHUR:
|
|
|
|
case HB_SCRIPT_TANGSA:
|
|
|
|
case HB_SCRIPT_TOTO:
|
|
|
|
case HB_SCRIPT_VITHKUQI:
|
|
|
|
|
2022-08-28 00:09:08 +02:00
|
|
|
/* Unicode-15.0 additions */
|
|
|
|
case HB_SCRIPT_KAWI:
|
|
|
|
case HB_SCRIPT_NAG_MUNDARI:
|
|
|
|
|
2015-07-21 18:31:43 +02:00
|
|
|
/* If the designer designed the font for the 'DFLT' script,
|
2017-10-02 18:21:27 +02:00
|
|
|
* (or we ended up arbitrarily pick 'latn'), use the default shaper.
|
|
|
|
* Otherwise, use the specific shaper.
|
2015-07-21 18:31:43 +02:00
|
|
|
* Note that for some simple scripts, there may not be *any*
|
|
|
|
* GSUB/GPOS needed, so there may be no scripts found! */
|
2017-10-02 18:21:27 +02:00
|
|
|
if (planner->map.chosen_script[0] == HB_TAG ('D','F','L','T') ||
|
|
|
|
planner->map.chosen_script[0] == HB_TAG ('l','a','t','n'))
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_default;
|
2015-07-21 18:31:43 +02:00
|
|
|
else
|
2022-06-03 10:42:34 +02:00
|
|
|
return &_hb_ot_shaper_use;
|
2011-07-21 18:23:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-03 10:54:33 +02:00
|
|
|
#endif /* HB_OT_SHAPER_HH */
|