/* * Copyright (C) 2010 Google, Inc. * * 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 */ #include "hb-ot-shape-complex-private.hh" HB_BEGIN_DECLS /* buffer var allocations */ #define arabic_shaping_action() var2.u32 /* arabic shaping action */ /* * Bits used in the joining tables */ enum { JOINING_TYPE_U = 0, JOINING_TYPE_R = 1, JOINING_TYPE_D = 2, JOINING_TYPE_C = JOINING_TYPE_D, JOINING_GROUP_ALAPH = 3, JOINING_GROUP_DALATH_RISH = 4, NUM_STATE_MACHINE_COLS = 5, /* We deliberately don't have a JOINING_TYPE_L since that's unused in Unicode. */ JOINING_TYPE_T = 6, JOINING_TYPE_X = 7 /* means: use general-category to choose between U or T. */ }; /* * Joining types: */ #include "hb-ot-shape-complex-arabic-table.h" static unsigned int get_joining_type (hb_codepoint_t u, hb_category_t gen_cat) { /* TODO Macroize the magic bit operations */ if (likely (JOINING_TABLE_FIRST <= u && u <= JOINING_TABLE_LAST)) { unsigned int j_type = joining_table[u - JOINING_TABLE_FIRST]; if (likely (j_type != JOINING_TYPE_X)) return j_type; } /* Mongolian joining data is not in ArabicJoining.txt yet */ if (unlikely (0x1800 <= u && u <= 0x18AF)) { /* All letters, SIBE SYLLABLE BOUNDARY MARKER, and NIRUGU are D */ if (gen_cat == HB_CATEGORY_OTHER_LETTER || u == 0x1807 || u == 0x180A) return JOINING_TYPE_D; } if (unlikely ((u & ~(0x200C^0x200D)) == 0x200C)) { return u == 0x200C ? JOINING_TYPE_U : JOINING_TYPE_C; } return ((1<script == HB_SCRIPT_SYRIAC ? SYRIAC_NUM_FEATURES : COMMON_NUM_FEATURES; for (unsigned int i = 0; i < num_features; i++) plan->map.add_bool_feature (arabic_syriac_features[i], false); } void _hb_ot_shape_complex_setup_masks_arabic (hb_ot_shape_context_t *c) { unsigned int count = c->buffer->len; unsigned int prev = 0, state = 0; for (unsigned int i = 0; i < count; i++) { unsigned int this_type = get_joining_type (c->buffer->info[i].codepoint, (hb_category_t) c->buffer->info[i].general_category()); if (unlikely (this_type == JOINING_TYPE_T)) { c->buffer->info[i].arabic_shaping_action() = NONE; continue; } const arabic_state_table_entry *entry = &arabic_state_table[state][this_type]; if (entry->prev_action != NONE) c->buffer->info[prev].arabic_shaping_action() = entry->prev_action; c->buffer->info[i].arabic_shaping_action() = entry->curr_action; prev = i; state = entry->next_state; } hb_mask_t mask_array[TOTAL_NUM_FEATURES + 1] = {0}; unsigned int num_masks = c->buffer->props.script == HB_SCRIPT_SYRIAC ? SYRIAC_NUM_FEATURES : COMMON_NUM_FEATURES; for (unsigned int i = 0; i < num_masks; i++) mask_array[i] = c->plan->map.get_1_mask (arabic_syriac_features[i]); for (unsigned int i = 0; i < count; i++) c->buffer->info[i].mask |= mask_array[c->buffer->info[i].arabic_shaping_action()]; } HB_END_DECLS