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
|
|
|
|
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) \
|
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.
|
|
|
|
*/
|
|
|
|
hb_bool_t (*decompose) (hb_unicode_funcs_t *unicode,
|
|
|
|
hb_codepoint_t ab,
|
|
|
|
hb_codepoint_t *a,
|
|
|
|
hb_codepoint_t *b);
|
|
|
|
|
|
|
|
/* compose()
|
|
|
|
* Called during shape()'s normalization.
|
|
|
|
* May be NULL.
|
|
|
|
*/
|
|
|
|
hb_bool_t (*compose) (hb_unicode_funcs_t *unicode,
|
|
|
|
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
|
|
|
|
2012-08-01 05:41:06 +02:00
|
|
|
bool zero_width_attached_marks;
|
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:
|
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
|
|
|
|
|
|
|
|
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-4.1 additions */
|
|
|
|
case HB_SCRIPT_BUGINESE:
|
|
|
|
case HB_SCRIPT_NEW_TAI_LUE:
|
|
|
|
|
|
|
|
/* Unicode-5.0 additions */
|
|
|
|
case HB_SCRIPT_BALINESE:
|
|
|
|
|
|
|
|
/* Unicode-5.1 additions */
|
|
|
|
case HB_SCRIPT_CHAM:
|
|
|
|
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:
|
2011-06-02 23:43:12 +02:00
|
|
|
case HB_SCRIPT_TAI_THAM:
|
2012-03-07 23:13:25 +01:00
|
|
|
|
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
|
|
|
|
2012-11-14 22:38:16 +01:00
|
|
|
/* Only use Indic shaper if the font has Indic tables. */
|
2012-11-15 01:24:05 +01:00
|
|
|
if (planner->map.found_script[0])
|
2012-11-14 22:38:16 +01:00
|
|
|
return &_hb_ot_complex_shaper_indic;
|
2012-11-15 01:24:05 +01:00
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_default;
|
2012-11-14 22:38:16 +01:00
|
|
|
|
|
|
|
case HB_SCRIPT_KHMER:
|
|
|
|
/* If the font has 'liga', let the generic shaper do it. */
|
2012-11-15 01:24:05 +01:00
|
|
|
if (!planner->map.found_script[0] ||
|
|
|
|
hb_ot_layout_language_find_feature (planner->face, HB_OT_TAG_GSUB,
|
|
|
|
planner->map.script_index[0],
|
|
|
|
planner->map.language_index[0],
|
|
|
|
HB_TAG ('l','i','g','a'), NULL))
|
2012-11-14 22:38:16 +01:00
|
|
|
return &_hb_ot_complex_shaper_default;
|
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_indic;
|
|
|
|
|
|
|
|
|
|
|
|
case HB_SCRIPT_MYANMAR:
|
2012-11-13 03:36:10 +01:00
|
|
|
/* For Myanmar, we only want to use the Indic shaper if the "new" script
|
|
|
|
* 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'))
|
2012-11-13 03:27:42 +01:00
|
|
|
return &_hb_ot_complex_shaper_indic;
|
|
|
|
else
|
|
|
|
return &_hb_ot_complex_shaper_default;
|
2011-07-21 18:23:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-12 22:50:36 +02:00
|
|
|
#endif /* HB_OT_SHAPE_COMPLEX_PRIVATE_HH */
|