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
|
|
|
|
2013-10-18 16:44:54 +02:00
|
|
|
enum hb_ot_shape_zero_width_marks_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_UNICODE_EARLY,
|
|
|
|
HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_UNICODE_LATE,
|
|
|
|
HB_OT_SHAPE_ZERO_WIDTH_MARKS_BY_GDEF_EARLY,
|
|
|
|
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) \
|
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (indic) \
|
2013-02-11 19:36:23 +01:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (myanmar) \
|
2013-02-12 18:14:10 +01:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (sea) \
|
2012-04-10 16:52:07 +02:00
|
|
|
HB_COMPLEX_SHAPER_IMPLEMENT (thai) \
|
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);
|
|
|
|
|
|
|
|
|
2012-07-31 03:08:51 +02:00
|
|
|
/* normalization_preference()
|
2012-08-02 15:38:28 +02:00
|
|
|
* Called during shape().
|
2012-11-13 21:35:35 +01:00
|
|
|
* May be NULL.
|
2012-07-31 03:08:51 +02:00
|
|
|
*/
|
|
|
|
hb_ot_shape_normalization_mode_t
|
2012-11-13 21:35:35 +01:00
|
|
|
(*normalization_preference) (const hb_segment_properties_t *props);
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
2013-10-18 16:44:54 +02:00
|
|
|
/* zero_width_marks_preference()
|
|
|
|
* Called during shape().
|
|
|
|
*/
|
|
|
|
hb_ot_shape_zero_width_marks_t
|
|
|
|
(*zero_width_marks_preference) (const hb_segment_properties_t *props);
|
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:
|
|
|
|
|
2012-11-13 03:36:10 +01:00
|
|
|
/* For Arabic script, use the Arabic shaper even if no OT script tag was found.
|
|
|
|
* This is because we do fallback shaping for Arabic script (and not others). */
|
2012-11-13 03:27:42 +01:00
|
|
|
if (planner->map.chosen_script[0] != HB_OT_TAG_DEFAULT_SCRIPT ||
|
|
|
|
planner->props.script == HB_SCRIPT_ARABIC)
|
|
|
|
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
|
|
|
#if 0
|
|
|
|
/* Note:
|
|
|
|
* Currently we don't have a separate Hangul shaper. The default shaper handles
|
|
|
|
* Hangul by enabling jamo features. We may want to implement a separate shaper
|
|
|
|
* in the future. See this thread for details of what such a shaper would do:
|
|
|
|
*
|
|
|
|
* http://lists.freedesktop.org/archives/harfbuzz/2013-April/003070.html
|
|
|
|
*/
|
|
|
|
/* Unicode-1.1 additions */
|
|
|
|
case HB_SCRIPT_HANGUL:
|
|
|
|
|
|
|
|
return &_hb_ot_complex_shaper_hangul;
|
|
|
|
#endif
|
|
|
|
|
2012-04-07 21:06:55 +02:00
|
|
|
|
|
|
|
/* ^--- Add new shapers here */
|
|
|
|
|
|
|
|
|
2011-09-08 19:35:17 +02:00
|
|
|
#if 0
|
|
|
|
/* Note:
|
|
|
|
*
|
|
|
|
* These disabled scripts are listed in ucd/IndicSyllabicCategory.txt, but according
|
2012-03-07 18:56:22 +01:00
|
|
|
* to Martin Hosken and Jonathan Kew do not require complex shaping.
|
|
|
|
*
|
|
|
|
* TODO We should automate figuring out which scripts do not need complex shaping
|
2011-09-08 19:35:17 +02:00
|
|
|
*
|
|
|
|
* TODO We currently keep data for these scripts in our indic table. Need to fix the
|
|
|
|
* generator to not do that.
|
2011-06-02 23:43:12 +02:00
|
|
|
*/
|
2011-09-08 19:35:17 +02:00
|
|
|
|
2012-03-07 23:13:25 +01:00
|
|
|
|
2011-09-08 19:35:17 +02:00
|
|
|
/* Simple? */
|
2012-03-07 23:13:25 +01:00
|
|
|
|
|
|
|
/* Unicode-3.2 additions */
|
2012-03-07 18:21:28 +01:00
|
|
|
case HB_SCRIPT_BUHID:
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_HANUNOO:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
|
|
|
/* Unicode-5.1 additions */
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_SAURASHTRA:
|
|
|
|
|
2012-03-07 23:13:25 +01:00
|
|
|
/* Unicode-6.0 additions */
|
|
|
|
case HB_SCRIPT_BATAK:
|
|
|
|
case HB_SCRIPT_BRAHMI:
|
|
|
|
|
|
|
|
|
2011-09-08 19:35:17 +02:00
|
|
|
/* Simple */
|
2012-03-07 23:13:25 +01:00
|
|
|
|
|
|
|
/* Unicode-1.1 additions */
|
2012-05-09 12:37:27 +02:00
|
|
|
/* These have their own shaper now. */
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_LAO:
|
2012-03-07 23:13:25 +01:00
|
|
|
case HB_SCRIPT_THAI:
|
|
|
|
|
|
|
|
/* Unicode-2.0 additions */
|
|
|
|
case HB_SCRIPT_TIBETAN:
|
|
|
|
|
|
|
|
/* Unicode-3.2 additions */
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_TAGALOG:
|
|
|
|
case HB_SCRIPT_TAGBANWA:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
|
|
|
/* Unicode-4.0 additions */
|
|
|
|
case HB_SCRIPT_LIMBU:
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_TAI_LE:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
|
|
|
/* Unicode-4.1 additions */
|
2012-11-15 00:05:19 +01:00
|
|
|
case HB_SCRIPT_KHAROSHTHI:
|
2012-03-07 23:13:25 +01:00
|
|
|
case HB_SCRIPT_SYLOTI_NAGRI:
|
|
|
|
|
|
|
|
/* Unicode-5.1 additions */
|
|
|
|
case HB_SCRIPT_KAYAH_LI:
|
|
|
|
|
|
|
|
/* Unicode-5.2 additions */
|
2011-09-08 19:35:17 +02:00
|
|
|
case HB_SCRIPT_TAI_VIET:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
/* Unicode-5.0 additions */
|
|
|
|
case HB_SCRIPT_BALINESE:
|
|
|
|
|
|
|
|
/* Unicode-5.1 additions */
|
|
|
|
case HB_SCRIPT_LEPCHA:
|
|
|
|
case HB_SCRIPT_REJANG:
|
2011-06-02 23:43:12 +02:00
|
|
|
case HB_SCRIPT_SUNDANESE:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
|
|
|
/* Unicode-5.2 additions */
|
|
|
|
case HB_SCRIPT_JAVANESE:
|
|
|
|
case HB_SCRIPT_KAITHI:
|
2012-11-12 22:34:17 +01:00
|
|
|
case HB_SCRIPT_MEETEI_MAYEK:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
2013-02-12 18:14:10 +01:00
|
|
|
/* Unicode-6.0 additions */
|
2012-11-12 22:34:17 +01:00
|
|
|
|
2012-03-07 23:13:25 +01:00
|
|
|
/* Unicode-6.1 additions */
|
|
|
|
case HB_SCRIPT_CHAKMA:
|
|
|
|
case HB_SCRIPT_SHARADA:
|
2012-03-07 18:56:22 +01:00
|
|
|
case HB_SCRIPT_TAKRI:
|
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,
|
|
|
|
* use the default shaper. Otherwise, use the Indic 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! */
|
2013-02-12 16:31:14 +01:00
|
|
|
if (planner->map.chosen_script[0] == HB_TAG ('D','F','L','T'))
|
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:
|
2013-02-11 19:36:23 +01:00
|
|
|
/* For Myanmar, we only want to use the Myanmar shaper if the "new" script
|
2012-11-13 03:36:10 +01:00
|
|
|
* tag is found. For "old" script tag we want to use the default shaper. */
|
2012-11-14 22:38:16 +01:00
|
|
|
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;
|
2012-11-13 03:27:42 +01:00
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_default;
|
2013-02-12 18:14:10 +01:00
|
|
|
|
|
|
|
/* Unicode-4.1 additions */
|
2013-10-17 18:16:14 +02:00
|
|
|
case HB_SCRIPT_BUGINESE:
|
2013-02-12 18:14:10 +01:00
|
|
|
case HB_SCRIPT_NEW_TAI_LUE:
|
|
|
|
|
|
|
|
/* Unicode-5.1 additions */
|
|
|
|
case HB_SCRIPT_CHAM:
|
|
|
|
|
|
|
|
/* Unicode-5.2 additions */
|
|
|
|
case HB_SCRIPT_TAI_THAM:
|
|
|
|
|
|
|
|
/* If the designer designed the font for the 'DFLT' script,
|
|
|
|
* use the default shaper. Otherwise, use the Indic shaper.
|
|
|
|
* Note that for some simple scripts, there may not be *any*
|
|
|
|
* GSUB/GPOS needed, so there may be no scripts found! */
|
|
|
|
if (planner->map.chosen_script[0] == HB_TAG ('D','F','L','T'))
|
|
|
|
return &_hb_ot_complex_shaper_default;
|
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_sea;
|
2011-07-21 18:23:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-12 22:50:36 +02:00
|
|
|
#endif /* HB_OT_SHAPE_COMPLEX_PRIVATE_HH */
|