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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_OT_SHAPE_COMPLEX_PRIVATE_HH
|
|
|
|
#define HB_OT_SHAPE_COMPLEX_PRIVATE_HH
|
|
|
|
|
2011-04-21 00:50:27 +02:00
|
|
|
#include "hb-private.hh"
|
2010-10-12 22:50:36 +02:00
|
|
|
|
2012-08-02 15:38:28 +02:00
|
|
|
#include "hb-ot-shape-private.hh"
|
2012-04-05 23:25:19 +02:00
|
|
|
#include "hb-ot-shape-normalize-private.hh"
|
2010-10-12 22:50:36 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-07-28 22:48:43 +02:00
|
|
|
/* buffer var allocations, used by complex shapers */
|
2012-08-10 03:48:55 +02:00
|
|
|
#define complex_var_u8_0() var2.u8[2]
|
|
|
|
#define complex_var_u8_1() var2.u8[3]
|
2011-07-28 22:48:43 +02:00
|
|
|
|
2011-07-08 04:25:25 +02:00
|
|
|
|
2017-10-04 14:47:10 +02:00
|
|
|
#define HB_OT_SHAPE_COMPLEX_MAX_COMBINING_MARKS 32
|
|
|
|
|
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 */
|
2011-07-08 05:42:40 +02:00
|
|
|
#define HB_COMPLEX_SHAPERS_IMPLEMENT_SHAPERS \
|
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (default) /* should be first */ \
|
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (arabic) \
|
2013-12-31 08:55:40 +01:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (hangul) \
|
2013-12-31 09:49:15 +01:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (hebrew) \
|
2014-07-27 01:17:44 +02:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (myanmar_old) \
|
2011-07-08 05:42:40 +02:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (indic) \
|
2013-02-11 19:36:23 +01:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (myanmar) \
|
2012-04-10 16:52:07 +02:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (thai) \
|
2013-12-31 09:49:15 +01:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (tibetan) \
|
2015-07-21 11:02:04 +02:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (use) \
|
2011-07-08 05:42:40 +02:00
|
|
|
/* ^--- Add new shapers here */
|
|
|
|
|
2012-07-31 03:08:51 +02:00
|
|
|
|
|
|
|
struct hb_ot_complex_shaper_t
|
|
|
|
{
|
|
|
|
char name[8];
|
|
|
|
|
|
|
|
/* 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.
|
2012-11-13 21:35:35 +01: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.
|
2012-11-13 21:35:35 +01: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.
|
|
|
|
* If NULL 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.
|
|
|
|
* If NULL is returned, means a plan failure.
|
2012-11-13 21:35:35 +01:00
|
|
|
* May be NULL.
|
|
|
|
*/
|
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.
|
2012-11-13 21:35:35 +01: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.
|
|
|
|
* May be NULL.
|
|
|
|
*/
|
|
|
|
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
|
|
|
|
2013-12-31 09:04:35 +01:00
|
|
|
hb_ot_shape_normalization_mode_t normalization_preference;
|
2012-11-13 21:35:35 +01:00
|
|
|
|
|
|
|
/* decompose()
|
|
|
|
* Called during shape()'s normalization.
|
|
|
|
* May be NULL.
|
|
|
|
*/
|
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.
|
|
|
|
* May be NULL.
|
|
|
|
*/
|
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.
|
2012-11-13 21:35:35 +01: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
|
|
|
|
2016-12-22 21:40:19 +01:00
|
|
|
/* disable_otl()
|
|
|
|
* Called during shape().
|
|
|
|
* If set and returns true, GDEF/GSUB/GPOS of the font are ignored
|
|
|
|
* and fallback operations used.
|
|
|
|
* May be NULL.
|
|
|
|
*/
|
|
|
|
bool (*disable_otl) (const hb_ot_shape_plan_t *plan);
|
|
|
|
|
2017-10-04 14:47:10 +02:00
|
|
|
/* reorder_marks()
|
|
|
|
* Called during shape().
|
|
|
|
* Shapers can use to modify ordering of combining marks.
|
|
|
|
* May be NULL.
|
|
|
|
*/
|
|
|
|
void (*reorder_marks) (const hb_ot_shape_plan_t *plan,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
unsigned int start,
|
|
|
|
unsigned int end);
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2012-07-31 03:08:51 +02:00
|
|
|
#define HB_COMPLEX_SHAPER_IMPLEMENT(name) extern HB_INTERNAL const hb_ot_complex_shaper_t _hb_ot_complex_shaper_##name;
|
|
|
|
HB_COMPLEX_SHAPERS_IMPLEMENT_SHAPERS
|
|
|
|
#undef HB_COMPLEX_SHAPER_IMPLEMENT
|
|
|
|
|
|
|
|
|
|
|
|
static inline const hb_ot_complex_shaper_t *
|
2012-11-13 03:23:38 +01:00
|
|
|
hb_ot_shape_complex_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:
|
2012-07-31 03:08:51 +02:00
|
|
|
return &_hb_ot_complex_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 */
|
2010-12-22 00:36:25 +01:00
|
|
|
case HB_SCRIPT_MONGOLIAN:
|
2011-06-02 23:43:12 +02:00
|
|
|
case HB_SCRIPT_SYRIAC:
|
2012-03-07 22:51:29 +01:00
|
|
|
|
|
|
|
/* Unicode-5.0 additions */
|
|
|
|
case HB_SCRIPT_NKO:
|
2012-11-02 04:05:04 +01:00
|
|
|
case HB_SCRIPT_PHAGS_PA:
|
2012-03-07 22:51:29 +01:00
|
|
|
|
|
|
|
/* Unicode-6.0 additions */
|
|
|
|
case HB_SCRIPT_MANDAIC:
|
|
|
|
|
2014-04-29 00:09:30 +02:00
|
|
|
/* Unicode-7.0 additions */
|
|
|
|
case HB_SCRIPT_MANICHAEAN:
|
|
|
|
case HB_SCRIPT_PSALTER_PAHLAVI:
|
|
|
|
|
2017-01-26 23:50:14 +01:00
|
|
|
/* Unicode-9.0 additions */
|
|
|
|
case HB_SCRIPT_ADLAM:
|
|
|
|
|
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))
|
2012-11-13 03:27:42 +01:00
|
|
|
return &_hb_ot_complex_shaper_arabic;
|
|
|
|
else
|
|
|
|
return &_hb_ot_complex_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:
|
|
|
|
|
2012-07-31 03:08:51 +02:00
|
|
|
return &_hb_ot_complex_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:
|
|
|
|
|
|
|
|
return &_hb_ot_complex_shaper_hangul;
|
|
|
|
|
2012-04-07 21:06:55 +02:00
|
|
|
|
2013-12-31 09:49:15 +01:00
|
|
|
/* Unicode-2.0 additions */
|
|
|
|
case HB_SCRIPT_TIBETAN:
|
|
|
|
|
|
|
|
return &_hb_ot_complex_shaper_tibetan;
|
|
|
|
|
|
|
|
|
|
|
|
/* Unicode-1.1 additions */
|
|
|
|
case HB_SCRIPT_HEBREW:
|
|
|
|
|
|
|
|
return &_hb_ot_complex_shaper_hebrew;
|
|
|
|
|
|
|
|
|
2012-04-07 21:06:55 +02:00
|
|
|
/* ^--- Add new shapers here */
|
|
|
|
|
2011-09-08 19:35:17 +02:00
|
|
|
#if 0
|
2012-03-07 23:13:25 +01:00
|
|
|
/* Unicode-4.1 additions */
|
2015-01-18 23:30:08 +01:00
|
|
|
case HB_SCRIPT_NEW_TAI_LUE:
|
2011-09-08 19:35:17 +02:00
|
|
|
#endif
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
/* Unicode-3.0 additions */
|
2011-06-02 23:43:12 +02:00
|
|
|
case HB_SCRIPT_SINHALA:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
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.
|
2013-02-12 18:14:10 +01: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'))
|
2012-11-15 01:24:05 +01:00
|
|
|
return &_hb_ot_complex_shaper_default;
|
2013-02-12 16:31:14 +01:00
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_indic;
|
2012-11-14 22:38:16 +01:00
|
|
|
|
|
|
|
case HB_SCRIPT_KHMER:
|
2012-11-21 07:04:15 +01:00
|
|
|
/* A number of Khmer fonts in the wild don't have a 'pref' feature,
|
|
|
|
* and as such won't shape properly via the Indic shaper;
|
|
|
|
* however, they typically have 'liga' / 'clig' features that implement
|
|
|
|
* the necessary "reordering" by means of ligature substitutions.
|
|
|
|
* So we send such pref-less fonts through the generic shaper instead. */
|
|
|
|
if (planner->map.found_script[0] &&
|
2012-11-15 01:24:05 +01:00
|
|
|
hb_ot_layout_language_find_feature (planner->face, HB_OT_TAG_GSUB,
|
|
|
|
planner->map.script_index[0],
|
|
|
|
planner->map.language_index[0],
|
2012-11-21 07:04:15 +01:00
|
|
|
HB_TAG ('p','r','e','f'),
|
|
|
|
NULL))
|
2012-11-14 22:38:16 +01:00
|
|
|
return &_hb_ot_complex_shaper_indic;
|
2012-11-21 07:04:15 +01:00
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_default;
|
2012-11-14 22:38:16 +01:00
|
|
|
|
|
|
|
case HB_SCRIPT_MYANMAR:
|
|
|
|
if (planner->map.chosen_script[0] == HB_TAG ('m','y','m','2'))
|
2013-02-11 19:36:23 +01:00
|
|
|
return &_hb_ot_complex_shaper_myanmar;
|
2014-07-27 01:17:44 +02:00
|
|
|
else if (planner->map.chosen_script[0] == HB_TAG ('m','y','m','r'))
|
|
|
|
return &_hb_ot_complex_shaper_myanmar_old;
|
2012-11-13 03:27:42 +01:00
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_default;
|
2013-02-12 18:14:10 +01:00
|
|
|
|
2015-07-21 11:02:04 +02:00
|
|
|
|
|
|
|
/* Unicode-2.0 additions */
|
|
|
|
//case HB_SCRIPT_TIBETAN:
|
|
|
|
|
|
|
|
/* Unicode-3.0 additions */
|
|
|
|
//case HB_SCRIPT_MONGOLIAN:
|
|
|
|
//case HB_SCRIPT_SINHALA:
|
|
|
|
|
|
|
|
/* 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:
|
2015-07-21 11:02:04 +02:00
|
|
|
//case HB_SCRIPT_NKO:
|
|
|
|
//case HB_SCRIPT_PHAGS_PA:
|
|
|
|
|
|
|
|
/* 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:
|
|
|
|
//case HB_SCRIPT_MANDAIC:
|
|
|
|
|
|
|
|
/* Unicode-6.1 additions */
|
2015-07-21 18:24:18 +02:00
|
|
|
case HB_SCRIPT_CHAKMA:
|
|
|
|
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:
|
|
|
|
//case HB_SCRIPT_MANICHAEAN:
|
|
|
|
case HB_SCRIPT_MODI:
|
|
|
|
case HB_SCRIPT_PAHAWH_HMONG:
|
|
|
|
//case HB_SCRIPT_PSALTER_PAHLAVI:
|
|
|
|
case HB_SCRIPT_SIDDHAM:
|
|
|
|
case HB_SCRIPT_TIRHUTA:
|
|
|
|
|
2016-05-06 13:08:18 +02:00
|
|
|
/* Unicode-8.0 additions */
|
|
|
|
case HB_SCRIPT_AHOM:
|
|
|
|
//case HB_SCRIPT_MULTANI:
|
|
|
|
|
|
|
|
/* Unicode-9.0 additions */
|
|
|
|
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:
|
|
|
|
|
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'))
|
2015-07-21 18:31:43 +02:00
|
|
|
return &_hb_ot_complex_shaper_default;
|
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_use;
|
2011-07-21 18:23:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-12 22:50:36 +02:00
|
|
|
#endif /* HB_OT_SHAPE_COMPLEX_PRIVATE_HH */
|