| /* |
| * 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. |
| * |
| * Author(s): Khaled Hosny |
| */ |
| |
| #include "hb.hh" |
| |
| #ifdef HAVE_KBTS |
| |
| #include "hb-shaper-impl.hh" |
| |
| #define KB_TEXT_SHAPE_IMPLEMENTATION |
| #define KB_TEXT_SHAPE_STATIC |
| #define KB_TEXT_SHAPE_NO_CRT |
| #define KBTS_MALLOC(a, b) hb_malloc(b) |
| #define KBTS_FREE(a, b) hb_free(b) |
| #define KBTS_MEMCPY hb_memcpy |
| #define KBTS_MEMSET hb_memset |
| |
| #pragma GCC diagnostic push |
| #pragma GCC diagnostic ignored "-Wcast-align" |
| #pragma GCC diagnostic ignored "-Wunused-function" |
| #pragma GCC diagnostic ignored "-Wsign-compare" |
| #include "kb_text_shape.h" |
| #pragma GCC diagnostic pop |
| |
| |
| hb_kbts_face_data_t * |
| _hb_kbts_shaper_face_data_create (hb_face_t *face) |
| { |
| hb_blob_t *blob = hb_face_reference_blob (face); |
| |
| unsigned int blob_length; |
| const char *blob_data = hb_blob_get_data (blob, &blob_length); |
| if (unlikely (!blob_length)) |
| { |
| DEBUG_MSG (KBTS, blob, "Empty blob"); |
| hb_blob_destroy (blob); |
| return nullptr; |
| } |
| |
| kbts_font *kb_font = (kbts_font *) hb_calloc (1, sizeof (kbts_font)); |
| if (unlikely (!kb_font)) |
| { |
| hb_blob_destroy (blob); |
| return nullptr; |
| } |
| |
| *kb_font = kbts_FontFromMemory((void *)blob_data, blob_length, face->index, nullptr, nullptr); |
| hb_blob_destroy (blob); |
| blob = nullptr; |
| |
| if (unlikely (!kbts_FontIsValid (kb_font))) |
| { |
| DEBUG_MSG (KBTS, face, "Failed create font from data"); |
| kbts_FreeFont (kb_font); |
| hb_free (kb_font); |
| return nullptr; |
| } |
| |
| return (hb_kbts_face_data_t *) kb_font; |
| } |
| |
| void |
| _hb_kbts_shaper_face_data_destroy (hb_kbts_face_data_t *data) |
| { |
| kbts_font *font = (kbts_font *) data; |
| |
| assert (kbts_FontIsValid (font)); |
| |
| kbts_FreeFont (font); |
| hb_free (font); |
| } |
| |
| hb_kbts_font_data_t * |
| _hb_kbts_shaper_font_data_create (hb_font_t *font) |
| { |
| return (hb_kbts_font_data_t *) HB_SHAPER_DATA_SUCCEEDED; |
| } |
| |
| void |
| _hb_kbts_shaper_font_data_destroy (hb_kbts_font_data_t *data) |
| { |
| } |
| |
| hb_bool_t |
| _hb_kbts_shape (hb_shape_plan_t *shape_plan, |
| hb_font_t *font, |
| hb_buffer_t *buffer, |
| const hb_feature_t *features, |
| unsigned int num_features) |
| { |
| hb_face_t *face = font->face; |
| kbts_font *kb_font = (kbts_font *) (const void *) face->data.kbts; |
| |
| kbts_direction kb_direction; |
| switch (buffer->props.direction) |
| { |
| case HB_DIRECTION_LTR: kb_direction = KBTS_DIRECTION_LTR; break; |
| case HB_DIRECTION_RTL: kb_direction = KBTS_DIRECTION_RTL; break; |
| case HB_DIRECTION_TTB: |
| case HB_DIRECTION_BTT: |
| DEBUG_MSG (KBTS, face, "Vertical direction is not supported"); |
| return false; |
| default: |
| case HB_DIRECTION_INVALID: |
| DEBUG_MSG (KBTS, face, "Invalid direction"); |
| return false; |
| } |
| |
| kbts_glyph_storage kb_glyph_storage; |
| if (unlikely (!kbts_InitializeGlyphStorage (&kb_glyph_storage, nullptr, nullptr))) |
| return false; |
| |
| kbts_script kb_script = KBTS_SCRIPT_DONT_KNOW; |
| kbts_language kb_language = KBTS_LANGUAGE_DEFAULT; |
| { |
| hb_tag_t scripts[HB_OT_MAX_TAGS_PER_SCRIPT]; |
| hb_tag_t language; |
| unsigned int script_count = ARRAY_LENGTH (scripts); |
| unsigned int language_count = 1; |
| |
| hb_ot_tags_from_script_and_language (buffer->props.script, buffer->props.language, |
| &script_count, scripts, |
| &language_count, &language); |
| |
| for (unsigned int i = 0; i < script_count && scripts[i] != HB_TAG_NONE; ++i) |
| { |
| kb_script = kbts_ScriptTagToScript (hb_uint32_swap (scripts[i])); |
| if (kb_script != KBTS_SCRIPT_DONT_KNOW) |
| break; |
| } |
| |
| if (language_count) |
| kb_language = (kbts_language) hb_uint32_swap (language); |
| } |
| |
| for (size_t i = 0; i < buffer->len; ++i) |
| { |
| kbts_glyph_config *kb_config = nullptr; |
| if (num_features) |
| { |
| hb_vector_t<kbts_feature_override> kb_features; |
| for (unsigned int j = 0; j < num_features; ++j) |
| { |
| if (hb_in_range<size_t> (i, features[j].start, features[j].end)) |
| kb_features.push<kbts_feature_override>({ hb_uint32_swap (features[j].tag), (int)features[j].value }); |
| } |
| if (kb_features) |
| kb_config = kbts_CreateGlyphConfig (kb_features.arrayZ, kb_features.length, nullptr, nullptr); |
| } |
| kbts_PushGlyph (&kb_glyph_storage, kb_font, buffer->info[i].codepoint, kb_config, buffer->info[i].cluster); |
| } |
| |
| uint32_t glyph_count = 0; |
| kbts_glyph *kb_glyph = nullptr; |
| kbts_glyph_iterator kb_output; |
| hb_glyph_info_t *info; |
| hb_glyph_position_t *pos; |
| |
| kbts_shape_config *kb_shape_config = kbts_CreateShapeConfig (kb_font, kb_script, kb_language, nullptr, nullptr); |
| hb_bool_t res = kbts_ShapeDirect (kb_shape_config, &kb_glyph_storage, kb_direction, |
| nullptr, nullptr, &kb_output) == KBTS_SHAPE_ERROR_NONE; |
| if (unlikely (!res)) |
| goto done; |
| |
| for (auto it = kb_output; kbts_GlyphIteratorNext (&it, &kb_glyph); ) |
| glyph_count += 1; |
| |
| hb_buffer_set_content_type (buffer, HB_BUFFER_CONTENT_TYPE_GLYPHS); |
| hb_buffer_set_length (buffer, glyph_count); |
| |
| buffer->clear_positions (); |
| |
| info = buffer->info; |
| pos = buffer->pos; |
| |
| for (auto it = kb_output; kbts_GlyphIteratorNext (&it, &kb_glyph); info++, pos++) |
| { |
| info->codepoint = kb_glyph->Id; |
| info->cluster = kb_glyph->UserIdOrCodepointIndex; |
| pos->x_advance = font->em_scalef_x (kb_glyph->AdvanceX); |
| pos->y_advance = font->em_scalef_y (kb_glyph->AdvanceY); |
| pos->x_offset = font->em_scalef_x (kb_glyph->OffsetX); |
| pos->y_offset = font->em_scalef_y (kb_glyph->OffsetY); |
| } |
| |
| done: |
| kbts_DestroyShapeConfig (kb_shape_config); |
| while (kbts_GlyphIteratorNext (&kb_output, &kb_glyph)) |
| kbts_DestroyGlyphConfig (kb_glyph->Config); |
| kbts_FreeAllGlyphs (&kb_glyph_storage); |
| |
| buffer->clear_glyph_flags (); |
| buffer->unsafe_to_break (); |
| |
| return res; |
| } |
| |
| #endif |