Path: blob/master/src/java.desktop/share/native/libharfbuzz/hb-fallback-shape.cc
41149 views
/*1* Copyright © 2011 Google, Inc.2*3* This is part of HarfBuzz, a text shaping library.4*5* Permission is hereby granted, without written agreement and without6* license or royalty fees, to use, copy, modify, and distribute this7* software and its documentation for any purpose, provided that the8* above copyright notice and the following two paragraphs appear in9* all copies of this software.10*11* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR12* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES13* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN14* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH15* DAMAGE.16*17* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,18* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND19* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS20* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO21* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.22*23* Google Author(s): Behdad Esfahbod24*/2526#include "hb-shaper-impl.hh"2728#ifndef HB_NO_FALLBACK_SHAPE2930/*31* shaper face data32*/3334struct hb_fallback_face_data_t {};3536hb_fallback_face_data_t *37_hb_fallback_shaper_face_data_create (hb_face_t *face HB_UNUSED)38{39return (hb_fallback_face_data_t *) HB_SHAPER_DATA_SUCCEEDED;40}4142void43_hb_fallback_shaper_face_data_destroy (hb_fallback_face_data_t *data HB_UNUSED)44{45}464748/*49* shaper font data50*/5152struct hb_fallback_font_data_t {};5354hb_fallback_font_data_t *55_hb_fallback_shaper_font_data_create (hb_font_t *font HB_UNUSED)56{57return (hb_fallback_font_data_t *) HB_SHAPER_DATA_SUCCEEDED;58}5960void61_hb_fallback_shaper_font_data_destroy (hb_fallback_font_data_t *data HB_UNUSED)62{63}646566/*67* shaper68*/6970hb_bool_t71_hb_fallback_shape (hb_shape_plan_t *shape_plan HB_UNUSED,72hb_font_t *font,73hb_buffer_t *buffer,74const hb_feature_t *features HB_UNUSED,75unsigned int num_features HB_UNUSED)76{77/* TODO78*79* - Apply fallback kern.80* - Handle Variation Selectors?81* - Apply normalization?82*83* This will make the fallback shaper into a dumb "TrueType"84* shaper which many people unfortunately still request.85*/8687hb_codepoint_t space;88bool has_space = (bool) font->get_nominal_glyph (' ', &space);8990buffer->clear_positions ();9192hb_direction_t direction = buffer->props.direction;93hb_unicode_funcs_t *unicode = buffer->unicode;94unsigned int count = buffer->len;95hb_glyph_info_t *info = buffer->info;96hb_glyph_position_t *pos = buffer->pos;97for (unsigned int i = 0; i < count; i++)98{99if (has_space && unicode->is_default_ignorable (info[i].codepoint)) {100info[i].codepoint = space;101pos[i].x_advance = 0;102pos[i].y_advance = 0;103continue;104}105(void) font->get_nominal_glyph (info[i].codepoint, &info[i].codepoint);106font->get_glyph_advance_for_direction (info[i].codepoint,107direction,108&pos[i].x_advance,109&pos[i].y_advance);110font->subtract_glyph_origin_for_direction (info[i].codepoint,111direction,112&pos[i].x_offset,113&pos[i].y_offset);114}115116if (HB_DIRECTION_IS_BACKWARD (direction))117hb_buffer_reverse (buffer);118119buffer->safe_to_break_all ();120121return true;122}123124#endif125126127