Refactor hb_shape a bit
This commit is contained in:
parent
001fc2d2aa
commit
26d7a75752
|
@ -30,6 +30,9 @@
|
||||||
|
|
||||||
#include "hb-buffer-private.h"
|
#include "hb-buffer-private.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* Prepare */
|
||||||
|
|
||||||
static inline hb_bool_t
|
static inline hb_bool_t
|
||||||
is_variation_selector (hb_codepoint_t unicode)
|
is_variation_selector (hb_codepoint_t unicode)
|
||||||
{
|
{
|
||||||
|
@ -65,6 +68,9 @@ hb_ensure_native_direction (hb_buffer_t *buffer)
|
||||||
return original_direction;
|
return original_direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Substitute */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hb_mirror_chars (hb_buffer_t *buffer)
|
hb_mirror_chars (hb_buffer_t *buffer)
|
||||||
{
|
{
|
||||||
|
@ -99,6 +105,35 @@ hb_map_glyphs (hb_font_t *font,
|
||||||
IN_CURGLYPH() = hb_font_get_glyph (font, face, IN_CURGLYPH(), 0);
|
IN_CURGLYPH() = hb_font_get_glyph (font, face, IN_CURGLYPH(), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
hb_substitute_default (hb_font_t *font,
|
||||||
|
hb_face_t *face,
|
||||||
|
hb_buffer_t *buffer)
|
||||||
|
{
|
||||||
|
hb_mirror_chars (buffer);
|
||||||
|
hb_map_glyphs (font, face, buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
hb_substitute_complex (hb_font_t *font,
|
||||||
|
hb_face_t *face,
|
||||||
|
hb_buffer_t *buffer)
|
||||||
|
{
|
||||||
|
/* TODO GSUB */
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
hb_substitute_fallback (hb_font_t *font,
|
||||||
|
hb_face_t *face,
|
||||||
|
hb_buffer_t *buffer)
|
||||||
|
{
|
||||||
|
/* TODO Arabic */
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Position */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hb_position_default (hb_font_t *font,
|
hb_position_default (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
|
@ -117,6 +152,23 @@ hb_position_default (hb_font_t *font,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
hb_position_complex (hb_font_t *font,
|
||||||
|
hb_face_t *face,
|
||||||
|
hb_buffer_t *buffer)
|
||||||
|
{
|
||||||
|
/* TODO GPOS */
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
hb_position_fallback (hb_font_t *font,
|
||||||
|
hb_face_t *face,
|
||||||
|
hb_buffer_t *buffer)
|
||||||
|
{
|
||||||
|
/* TODO Mark pos */
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hb_truetype_kern (hb_font_t *font,
|
hb_truetype_kern (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
|
@ -136,6 +188,17 @@ hb_truetype_kern (hb_font_t *font,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
hb_position_fallback_visual (hb_font_t *font,
|
||||||
|
hb_face_t *face,
|
||||||
|
hb_buffer_t *buffer)
|
||||||
|
{
|
||||||
|
hb_truetype_kern (font, face, buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Shape */
|
||||||
|
|
||||||
void
|
void
|
||||||
hb_shape (hb_font_t *font,
|
hb_shape (hb_font_t *font,
|
||||||
hb_face_t *face,
|
hb_face_t *face,
|
||||||
|
@ -144,32 +207,30 @@ hb_shape (hb_font_t *font,
|
||||||
unsigned int num_features)
|
unsigned int num_features)
|
||||||
{
|
{
|
||||||
hb_direction_t original_direction;
|
hb_direction_t original_direction;
|
||||||
hb_bool_t complex_positioning_applied;
|
hb_bool_t substitute_fallback, position_fallback;
|
||||||
|
|
||||||
hb_form_clusters (buffer);
|
hb_form_clusters (buffer);
|
||||||
original_direction = hb_ensure_native_direction (buffer);
|
original_direction = hb_ensure_native_direction (buffer);
|
||||||
|
|
||||||
hb_mirror_chars (buffer);
|
hb_substitute_default (font, face, buffer);
|
||||||
|
|
||||||
/* OT preprocess */
|
substitute_fallback = !hb_substitute_complex (font, face, buffer);
|
||||||
|
|
||||||
hb_map_glyphs (font, face, buffer);
|
if (substitute_fallback)
|
||||||
/* ccmp+... */
|
hb_substitute_fallback (font, face, buffer);
|
||||||
|
|
||||||
/* script-specific */
|
|
||||||
|
|
||||||
/* GSUB */
|
|
||||||
|
|
||||||
hb_position_default (font, face, buffer);
|
hb_position_default (font, face, buffer);
|
||||||
|
|
||||||
/* GPOS */
|
position_fallback = !hb_position_complex (font, face, buffer);
|
||||||
complex_positioning_applied = FALSE;
|
|
||||||
|
if (position_fallback)
|
||||||
|
hb_position_fallback (font, face, buffer);
|
||||||
|
|
||||||
if (HB_DIRECTION_IS_BACKWARD (buffer->direction))
|
if (HB_DIRECTION_IS_BACKWARD (buffer->direction))
|
||||||
hb_buffer_reverse (buffer);
|
hb_buffer_reverse (buffer);
|
||||||
|
|
||||||
if (!complex_positioning_applied)
|
if (position_fallback)
|
||||||
hb_truetype_kern (font, face, buffer);
|
hb_position_fallback_visual (font, face, buffer);
|
||||||
|
|
||||||
buffer->direction = original_direction;
|
buffer->direction = original_direction;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue