Behdad Esfahbod | affaf8a | 2012-08-07 22:41:38 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2011,2012 Google, Inc. |
| 3 | * |
| 4 | * This is part of HarfBuzz, a text shaping library. |
| 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
| 24 | * Google Author(s): Behdad Esfahbod |
| 25 | */ |
| 26 | |
Behdad Esfahbod | 9c929ab | 2012-08-08 14:33:37 -0400 | [diff] [blame] | 27 | #include "hb-ot-shape-fallback-private.hh" |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 28 | #include "hb-ot-layout-gsubgpos-private.hh" |
Behdad Esfahbod | affaf8a | 2012-08-07 22:41:38 -0400 | [diff] [blame] | 29 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 30 | static unsigned int |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 31 | recategorize_combining_class (hb_codepoint_t u, |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 32 | unsigned int klass) |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 33 | { |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 34 | if (klass >= 200) |
| 35 | return klass; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 36 | |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 37 | /* Thai / Lao need some per-character work. */ |
Behdad Esfahbod | 7627100 | 2014-07-11 14:54:42 -0400 | [diff] [blame] | 38 | if ((u & ~0xFF) == 0x0E00u) |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 39 | { |
| 40 | if (unlikely (klass == 0)) |
| 41 | { |
| 42 | switch (u) |
| 43 | { |
Behdad Esfahbod | 7627100 | 2014-07-11 14:54:42 -0400 | [diff] [blame] | 44 | case 0x0E31u: |
| 45 | case 0x0E34u: |
| 46 | case 0x0E35u: |
| 47 | case 0x0E36u: |
| 48 | case 0x0E37u: |
| 49 | case 0x0E47u: |
| 50 | case 0x0E4Cu: |
| 51 | case 0x0E4Du: |
| 52 | case 0x0E4Eu: |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 53 | klass = HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT; |
| 54 | break; |
| 55 | |
Behdad Esfahbod | 7627100 | 2014-07-11 14:54:42 -0400 | [diff] [blame] | 56 | case 0x0EB1u: |
| 57 | case 0x0EB4u: |
| 58 | case 0x0EB5u: |
| 59 | case 0x0EB6u: |
| 60 | case 0x0EB7u: |
| 61 | case 0x0EBBu: |
| 62 | case 0x0ECCu: |
| 63 | case 0x0ECDu: |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 64 | klass = HB_UNICODE_COMBINING_CLASS_ABOVE; |
| 65 | break; |
| 66 | |
Behdad Esfahbod | 7627100 | 2014-07-11 14:54:42 -0400 | [diff] [blame] | 67 | case 0x0EBCu: |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 68 | klass = HB_UNICODE_COMBINING_CLASS_BELOW; |
| 69 | break; |
| 70 | } |
| 71 | } else { |
| 72 | /* Thai virama is below-right */ |
Behdad Esfahbod | 7627100 | 2014-07-11 14:54:42 -0400 | [diff] [blame] | 73 | if (u == 0x0E3Au) |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 74 | klass = HB_UNICODE_COMBINING_CLASS_BELOW_RIGHT; |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | switch (klass) |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 79 | { |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 80 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 81 | /* Hebrew */ |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 82 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 83 | case HB_MODIFIED_COMBINING_CLASS_CCC10: /* sheva */ |
| 84 | case HB_MODIFIED_COMBINING_CLASS_CCC11: /* hataf segol */ |
| 85 | case HB_MODIFIED_COMBINING_CLASS_CCC12: /* hataf patah */ |
| 86 | case HB_MODIFIED_COMBINING_CLASS_CCC13: /* hataf qamats */ |
| 87 | case HB_MODIFIED_COMBINING_CLASS_CCC14: /* hiriq */ |
| 88 | case HB_MODIFIED_COMBINING_CLASS_CCC15: /* tsere */ |
| 89 | case HB_MODIFIED_COMBINING_CLASS_CCC16: /* segol */ |
| 90 | case HB_MODIFIED_COMBINING_CLASS_CCC17: /* patah */ |
| 91 | case HB_MODIFIED_COMBINING_CLASS_CCC18: /* qamats */ |
| 92 | case HB_MODIFIED_COMBINING_CLASS_CCC20: /* qubuts */ |
| 93 | case HB_MODIFIED_COMBINING_CLASS_CCC22: /* meteg */ |
| 94 | return HB_UNICODE_COMBINING_CLASS_BELOW; |
| 95 | |
| 96 | case HB_MODIFIED_COMBINING_CLASS_CCC23: /* rafe */ |
| 97 | return HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE; |
| 98 | |
| 99 | case HB_MODIFIED_COMBINING_CLASS_CCC24: /* shin dot */ |
| 100 | return HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT; |
| 101 | |
| 102 | case HB_MODIFIED_COMBINING_CLASS_CCC25: /* sin dot */ |
| 103 | case HB_MODIFIED_COMBINING_CLASS_CCC19: /* holam */ |
| 104 | return HB_UNICODE_COMBINING_CLASS_ABOVE_LEFT; |
| 105 | |
| 106 | case HB_MODIFIED_COMBINING_CLASS_CCC26: /* point varika */ |
| 107 | return HB_UNICODE_COMBINING_CLASS_ABOVE; |
| 108 | |
| 109 | case HB_MODIFIED_COMBINING_CLASS_CCC21: /* dagesh */ |
| 110 | break; |
| 111 | |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 112 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 113 | /* Arabic and Syriac */ |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 114 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 115 | case HB_MODIFIED_COMBINING_CLASS_CCC27: /* fathatan */ |
| 116 | case HB_MODIFIED_COMBINING_CLASS_CCC28: /* dammatan */ |
| 117 | case HB_MODIFIED_COMBINING_CLASS_CCC30: /* fatha */ |
| 118 | case HB_MODIFIED_COMBINING_CLASS_CCC31: /* damma */ |
| 119 | case HB_MODIFIED_COMBINING_CLASS_CCC33: /* shadda */ |
| 120 | case HB_MODIFIED_COMBINING_CLASS_CCC34: /* sukun */ |
| 121 | case HB_MODIFIED_COMBINING_CLASS_CCC35: /* superscript alef */ |
| 122 | case HB_MODIFIED_COMBINING_CLASS_CCC36: /* superscript alaph */ |
| 123 | return HB_UNICODE_COMBINING_CLASS_ABOVE; |
| 124 | |
| 125 | case HB_MODIFIED_COMBINING_CLASS_CCC29: /* kasratan */ |
| 126 | case HB_MODIFIED_COMBINING_CLASS_CCC32: /* kasra */ |
| 127 | return HB_UNICODE_COMBINING_CLASS_BELOW; |
| 128 | |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 129 | |
| 130 | /* Thai */ |
| 131 | |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 132 | case HB_MODIFIED_COMBINING_CLASS_CCC103: /* sara u / sara uu */ |
Behdad Esfahbod | 5a7f187 | 2012-08-30 22:53:29 -0400 | [diff] [blame] | 133 | return HB_UNICODE_COMBINING_CLASS_BELOW_RIGHT; |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 134 | |
| 135 | case HB_MODIFIED_COMBINING_CLASS_CCC107: /* mai */ |
Behdad Esfahbod | 5a7f187 | 2012-08-30 22:53:29 -0400 | [diff] [blame] | 136 | return HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT; |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 137 | |
| 138 | |
| 139 | /* Lao */ |
| 140 | |
| 141 | case HB_MODIFIED_COMBINING_CLASS_CCC118: /* sign u / sign uu */ |
Behdad Esfahbod | 7e99e4f | 2012-11-14 14:09:46 -0800 | [diff] [blame] | 142 | return HB_UNICODE_COMBINING_CLASS_BELOW; |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 143 | |
| 144 | case HB_MODIFIED_COMBINING_CLASS_CCC122: /* mai */ |
Behdad Esfahbod | 7e99e4f | 2012-11-14 14:09:46 -0800 | [diff] [blame] | 145 | return HB_UNICODE_COMBINING_CLASS_ABOVE; |
Behdad Esfahbod | 56c9e7c | 2012-08-09 21:12:30 -0400 | [diff] [blame] | 146 | |
| 147 | |
| 148 | /* Tibetan */ |
| 149 | |
| 150 | case HB_MODIFIED_COMBINING_CLASS_CCC129: /* sign aa */ |
| 151 | return HB_UNICODE_COMBINING_CLASS_BELOW; |
| 152 | |
| 153 | case HB_MODIFIED_COMBINING_CLASS_CCC130: /* sign i*/ |
| 154 | return HB_UNICODE_COMBINING_CLASS_ABOVE; |
| 155 | |
| 156 | case HB_MODIFIED_COMBINING_CLASS_CCC132: /* sign u */ |
| 157 | return HB_UNICODE_COMBINING_CLASS_BELOW; |
| 158 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 159 | } |
| 160 | |
Behdad Esfahbod | 1d581ec | 2012-09-01 20:06:26 -0400 | [diff] [blame] | 161 | return klass; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 162 | } |
| 163 | |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 164 | void |
Behdad Esfahbod | 0beb66e | 2012-12-05 18:46:04 -0500 | [diff] [blame] | 165 | _hb_ot_shape_fallback_position_recategorize_marks (const hb_ot_shape_plan_t *plan HB_UNUSED, |
| 166 | hb_font_t *font HB_UNUSED, |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 167 | hb_buffer_t *buffer) |
| 168 | { |
| 169 | unsigned int count = buffer->len; |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 170 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 171 | for (unsigned int i = 0; i < count; i++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 172 | if (_hb_glyph_info_get_general_category (&info[i]) == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK) { |
| 173 | unsigned int combining_class = _hb_glyph_info_get_modified_combining_class (&info[i]); |
| 174 | combining_class = recategorize_combining_class (info[i].codepoint, combining_class); |
| 175 | _hb_glyph_info_set_modified_combining_class (&info[i], combining_class); |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 176 | } |
| 177 | } |
| 178 | |
| 179 | |
| 180 | static void |
| 181 | zero_mark_advances (hb_buffer_t *buffer, |
| 182 | unsigned int start, |
| 183 | unsigned int end) |
| 184 | { |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 185 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 186 | for (unsigned int i = start; i < end; i++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 187 | if (_hb_glyph_info_get_general_category (&info[i]) == HB_UNICODE_GENERAL_CATEGORY_NON_SPACING_MARK) |
Behdad Esfahbod | 3992b5e | 2012-09-01 19:20:41 -0400 | [diff] [blame] | 188 | { |
| 189 | buffer->pos[i].x_advance = 0; |
| 190 | buffer->pos[i].y_advance = 0; |
| 191 | } |
| 192 | } |
| 193 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 194 | static inline void |
| 195 | position_mark (const hb_ot_shape_plan_t *plan, |
| 196 | hb_font_t *font, |
| 197 | hb_buffer_t *buffer, |
| 198 | hb_glyph_extents_t &base_extents, |
| 199 | unsigned int i, |
| 200 | unsigned int combining_class) |
| 201 | { |
| 202 | hb_glyph_extents_t mark_extents; |
Behdad Esfahbod | 4c8ac4f | 2012-08-08 17:44:19 -0400 | [diff] [blame] | 203 | if (!font->get_glyph_extents (buffer->info[i].codepoint, |
| 204 | &mark_extents)) |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 205 | return; |
| 206 | |
| 207 | hb_position_t y_gap = font->y_scale / 16; |
| 208 | |
| 209 | hb_glyph_position_t &pos = buffer->pos[i]; |
| 210 | pos.x_offset = pos.y_offset = 0; |
| 211 | |
| 212 | |
| 213 | /* We dont position LEFT and RIGHT marks. */ |
| 214 | |
| 215 | /* X positioning */ |
| 216 | switch (combining_class) |
| 217 | { |
| 218 | case HB_UNICODE_COMBINING_CLASS_DOUBLE_BELOW: |
| 219 | case HB_UNICODE_COMBINING_CLASS_DOUBLE_ABOVE: |
Behdad Esfahbod | daf13af | 2012-08-10 16:38:44 -0400 | [diff] [blame] | 220 | if (buffer->props.direction == HB_DIRECTION_LTR) { |
| 221 | pos.x_offset += base_extents.x_bearing - mark_extents.width / 2 - mark_extents.x_bearing; |
| 222 | break; |
| 223 | } else if (buffer->props.direction == HB_DIRECTION_RTL) { |
| 224 | pos.x_offset += base_extents.x_bearing + base_extents.width - mark_extents.width / 2 - mark_extents.x_bearing; |
| 225 | break; |
| 226 | } |
| 227 | /* Fall through */ |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 228 | |
Behdad Esfahbod | e1ba628 | 2012-08-27 16:28:05 -0400 | [diff] [blame] | 229 | default: |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 230 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW: |
| 231 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE: |
| 232 | case HB_UNICODE_COMBINING_CLASS_BELOW: |
| 233 | case HB_UNICODE_COMBINING_CLASS_ABOVE: |
| 234 | /* Center align. */ |
| 235 | pos.x_offset += base_extents.x_bearing + (base_extents.width - mark_extents.width) / 2 - mark_extents.x_bearing; |
| 236 | break; |
| 237 | |
| 238 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW_LEFT: |
| 239 | case HB_UNICODE_COMBINING_CLASS_BELOW_LEFT: |
| 240 | case HB_UNICODE_COMBINING_CLASS_ABOVE_LEFT: |
| 241 | /* Left align. */ |
| 242 | pos.x_offset += base_extents.x_bearing - mark_extents.x_bearing; |
| 243 | break; |
| 244 | |
| 245 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE_RIGHT: |
| 246 | case HB_UNICODE_COMBINING_CLASS_BELOW_RIGHT: |
| 247 | case HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT: |
| 248 | /* Right align. */ |
| 249 | pos.x_offset += base_extents.x_bearing + base_extents.width - mark_extents.width - mark_extents.x_bearing; |
| 250 | break; |
| 251 | } |
| 252 | |
| 253 | /* Y positioning */ |
| 254 | switch (combining_class) |
| 255 | { |
| 256 | case HB_UNICODE_COMBINING_CLASS_DOUBLE_BELOW: |
| 257 | case HB_UNICODE_COMBINING_CLASS_BELOW_LEFT: |
| 258 | case HB_UNICODE_COMBINING_CLASS_BELOW: |
| 259 | case HB_UNICODE_COMBINING_CLASS_BELOW_RIGHT: |
| 260 | /* Add gap, fall-through. */ |
| 261 | base_extents.height -= y_gap; |
| 262 | |
| 263 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW_LEFT: |
| 264 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_BELOW: |
Behdad Esfahbod | 8177da2 | 2013-10-18 15:50:29 +0200 | [diff] [blame] | 265 | pos.y_offset = base_extents.y_bearing + base_extents.height - mark_extents.y_bearing; |
Behdad Esfahbod | 0193649 | 2013-10-18 16:08:53 +0200 | [diff] [blame] | 266 | /* Never shift up "below" marks. */ |
Behdad Esfahbod | dba9580 | 2013-10-18 15:57:36 +0200 | [diff] [blame] | 267 | if ((y_gap > 0) == (pos.y_offset > 0)) |
| 268 | { |
| 269 | base_extents.height -= pos.y_offset; |
| 270 | pos.y_offset = 0; |
| 271 | } |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 272 | base_extents.height += mark_extents.height; |
| 273 | break; |
| 274 | |
| 275 | case HB_UNICODE_COMBINING_CLASS_DOUBLE_ABOVE: |
| 276 | case HB_UNICODE_COMBINING_CLASS_ABOVE_LEFT: |
| 277 | case HB_UNICODE_COMBINING_CLASS_ABOVE: |
| 278 | case HB_UNICODE_COMBINING_CLASS_ABOVE_RIGHT: |
| 279 | /* Add gap, fall-through. */ |
| 280 | base_extents.y_bearing += y_gap; |
| 281 | base_extents.height -= y_gap; |
| 282 | |
| 283 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE: |
| 284 | case HB_UNICODE_COMBINING_CLASS_ATTACHED_ABOVE_RIGHT: |
Behdad Esfahbod | 8177da2 | 2013-10-18 15:50:29 +0200 | [diff] [blame] | 285 | pos.y_offset = base_extents.y_bearing - (mark_extents.y_bearing + mark_extents.height); |
Behdad Esfahbod | 0193649 | 2013-10-18 16:08:53 +0200 | [diff] [blame] | 286 | /* Don't shift down "above" marks too much. */ |
| 287 | if ((y_gap > 0) != (pos.y_offset > 0)) |
| 288 | { |
| 289 | unsigned int correction = -pos.y_offset / 2; |
| 290 | base_extents.y_bearing += correction; |
| 291 | base_extents.height -= correction; |
| 292 | pos.y_offset += correction; |
| 293 | } |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 294 | base_extents.y_bearing -= mark_extents.height; |
| 295 | base_extents.height += mark_extents.height; |
| 296 | break; |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | static inline void |
| 301 | position_around_base (const hb_ot_shape_plan_t *plan, |
| 302 | hb_font_t *font, |
| 303 | hb_buffer_t *buffer, |
| 304 | unsigned int base, |
| 305 | unsigned int end) |
| 306 | { |
Behdad Esfahbod | f679171 | 2012-09-06 17:22:31 -0400 | [diff] [blame] | 307 | hb_direction_t horiz_dir = HB_DIRECTION_INVALID; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 308 | hb_glyph_extents_t base_extents; |
Behdad Esfahbod | 4c8ac4f | 2012-08-08 17:44:19 -0400 | [diff] [blame] | 309 | if (!font->get_glyph_extents (buffer->info[base].codepoint, |
| 310 | &base_extents)) |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 311 | { |
| 312 | /* If extents don't work, zero marks and go home. */ |
| 313 | zero_mark_advances (buffer, base + 1, end); |
| 314 | return; |
| 315 | } |
| 316 | base_extents.x_bearing += buffer->pos[base].x_offset; |
| 317 | base_extents.y_bearing += buffer->pos[base].y_offset; |
| 318 | |
Behdad Esfahbod | 3ddf892 | 2013-10-18 00:02:43 +0200 | [diff] [blame] | 319 | unsigned int lig_id = _hb_glyph_info_get_lig_id (&buffer->info[base]); |
| 320 | unsigned int num_lig_components = _hb_glyph_info_get_lig_num_comps (&buffer->info[base]); |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 321 | |
| 322 | hb_position_t x_offset = 0, y_offset = 0; |
Behdad Esfahbod | d345313 | 2012-08-10 16:34:04 -0400 | [diff] [blame] | 323 | if (HB_DIRECTION_IS_FORWARD (buffer->props.direction)) { |
| 324 | x_offset -= buffer->pos[base].x_advance; |
| 325 | y_offset -= buffer->pos[base].y_advance; |
| 326 | } |
Behdad Esfahbod | f679171 | 2012-09-06 17:22:31 -0400 | [diff] [blame] | 327 | |
| 328 | hb_glyph_extents_t component_extents = base_extents; |
| 329 | unsigned int last_lig_component = (unsigned int) -1; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 330 | unsigned int last_combining_class = 255; |
Behdad Esfahbod | c26a52f | 2012-11-04 16:48:45 -0800 | [diff] [blame] | 331 | hb_glyph_extents_t cluster_extents = base_extents; /* Initialization is just to shut gcc up. */ |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 332 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 333 | for (unsigned int i = base + 1; i < end; i++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 334 | if (_hb_glyph_info_get_modified_combining_class (&info[i])) |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 335 | { |
Behdad Esfahbod | f679171 | 2012-09-06 17:22:31 -0400 | [diff] [blame] | 336 | if (num_lig_components > 1) { |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 337 | unsigned int this_lig_id = _hb_glyph_info_get_lig_id (&info[i]); |
| 338 | unsigned int this_lig_component = _hb_glyph_info_get_lig_comp (&info[i]) - 1; |
Behdad Esfahbod | f679171 | 2012-09-06 17:22:31 -0400 | [diff] [blame] | 339 | /* Conditions for attaching to the last component. */ |
| 340 | if (!lig_id || lig_id != this_lig_id || this_lig_component >= num_lig_components) |
| 341 | this_lig_component = num_lig_components - 1; |
| 342 | if (last_lig_component != this_lig_component) |
| 343 | { |
| 344 | last_lig_component = this_lig_component; |
| 345 | last_combining_class = 255; |
| 346 | component_extents = base_extents; |
| 347 | if (unlikely (horiz_dir == HB_DIRECTION_INVALID)) { |
| 348 | if (HB_DIRECTION_IS_HORIZONTAL (plan->props.direction)) |
| 349 | horiz_dir = plan->props.direction; |
| 350 | else |
| 351 | horiz_dir = hb_script_get_horizontal_direction (plan->props.script); |
| 352 | } |
| 353 | if (horiz_dir == HB_DIRECTION_LTR) |
| 354 | component_extents.x_bearing += (this_lig_component * component_extents.width) / num_lig_components; |
| 355 | else |
| 356 | component_extents.x_bearing += ((num_lig_components - 1 - this_lig_component) * component_extents.width) / num_lig_components; |
| 357 | component_extents.width /= num_lig_components; |
| 358 | } |
| 359 | } |
| 360 | |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 361 | unsigned int this_combining_class = _hb_glyph_info_get_modified_combining_class (&info[i]); |
Behdad Esfahbod | f679171 | 2012-09-06 17:22:31 -0400 | [diff] [blame] | 362 | if (last_combining_class != this_combining_class) |
| 363 | { |
| 364 | last_combining_class = this_combining_class; |
| 365 | cluster_extents = component_extents; |
| 366 | } |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 367 | |
Behdad Esfahbod | 667218a | 2012-08-27 17:00:44 -0400 | [diff] [blame] | 368 | position_mark (plan, font, buffer, cluster_extents, i, this_combining_class); |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 369 | |
| 370 | buffer->pos[i].x_advance = 0; |
| 371 | buffer->pos[i].y_advance = 0; |
| 372 | buffer->pos[i].x_offset += x_offset; |
| 373 | buffer->pos[i].y_offset += y_offset; |
| 374 | |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 375 | } else { |
Behdad Esfahbod | d345313 | 2012-08-10 16:34:04 -0400 | [diff] [blame] | 376 | if (HB_DIRECTION_IS_FORWARD (buffer->props.direction)) { |
| 377 | x_offset -= buffer->pos[i].x_advance; |
| 378 | y_offset -= buffer->pos[i].y_advance; |
| 379 | } else { |
| 380 | x_offset += buffer->pos[i].x_advance; |
| 381 | y_offset += buffer->pos[i].y_advance; |
| 382 | } |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 383 | } |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | static inline void |
| 387 | position_cluster (const hb_ot_shape_plan_t *plan, |
| 388 | hb_font_t *font, |
| 389 | hb_buffer_t *buffer, |
| 390 | unsigned int start, |
| 391 | unsigned int end) |
| 392 | { |
| 393 | if (end - start < 2) |
| 394 | return; |
| 395 | |
| 396 | /* Find the base glyph */ |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 397 | hb_glyph_info_t *info = buffer->info; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 398 | for (unsigned int i = start; i < end; i++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 399 | if (!HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&info[i]))) |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 400 | { |
Behdad Esfahbod | 525c685 | 2012-09-06 16:02:07 -0400 | [diff] [blame] | 401 | /* Find mark glyphs */ |
| 402 | unsigned int j; |
| 403 | for (j = i + 1; j < end; j++) |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 404 | if (!HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&info[j]))) |
Behdad Esfahbod | 525c685 | 2012-09-06 16:02:07 -0400 | [diff] [blame] | 405 | break; |
| 406 | |
| 407 | position_around_base (plan, font, buffer, i, j); |
| 408 | |
| 409 | i = j - 1; |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 410 | } |
| 411 | } |
| 412 | |
Behdad Esfahbod | affaf8a | 2012-08-07 22:41:38 -0400 | [diff] [blame] | 413 | void |
Behdad Esfahbod | 9c929ab | 2012-08-08 14:33:37 -0400 | [diff] [blame] | 414 | _hb_ot_shape_fallback_position (const hb_ot_shape_plan_t *plan, |
Behdad Esfahbod | affaf8a | 2012-08-07 22:41:38 -0400 | [diff] [blame] | 415 | hb_font_t *font, |
| 416 | hb_buffer_t *buffer) |
| 417 | { |
Behdad Esfahbod | 2175693 | 2012-08-08 01:20:45 -0400 | [diff] [blame] | 418 | unsigned int start = 0; |
| 419 | unsigned int last_cluster = buffer->info[0].cluster; |
| 420 | unsigned int count = buffer->len; |
| 421 | for (unsigned int i = 1; i < count; i++) |
| 422 | if (buffer->info[i].cluster != last_cluster) { |
| 423 | position_cluster (plan, font, buffer, start, i); |
| 424 | start = i; |
| 425 | last_cluster = buffer->info[i].cluster; |
| 426 | } |
| 427 | position_cluster (plan, font, buffer, start, count); |
Behdad Esfahbod | affaf8a | 2012-08-07 22:41:38 -0400 | [diff] [blame] | 428 | } |
Behdad Esfahbod | ba87b8f | 2013-02-21 15:23:39 -0500 | [diff] [blame] | 429 | |
| 430 | |
| 431 | /* Performs old-style TrueType kerning. */ |
| 432 | void |
| 433 | _hb_ot_shape_fallback_kern (const hb_ot_shape_plan_t *plan, |
| 434 | hb_font_t *font, |
| 435 | hb_buffer_t *buffer) |
| 436 | { |
Behdad Esfahbod | 5497a8a | 2013-12-22 20:48:53 -0500 | [diff] [blame] | 437 | if (!plan->has_kern) return; |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 438 | |
Behdad Esfahbod | bac1dd6 | 2013-05-02 18:52:24 -0400 | [diff] [blame] | 439 | OT::hb_apply_context_t c (1, font, buffer); |
Behdad Esfahbod | 5497a8a | 2013-12-22 20:48:53 -0500 | [diff] [blame] | 440 | c.set_lookup_mask (plan->kern_mask); |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 441 | c.set_lookup_props (OT::LookupFlag::IgnoreMarks); |
Behdad Esfahbod | ba87b8f | 2013-02-21 15:23:39 -0500 | [diff] [blame] | 442 | |
Behdad Esfahbod | 7cd33f2 | 2014-07-17 14:22:11 -0400 | [diff] [blame^] | 443 | unsigned int count = buffer->len; |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 444 | hb_glyph_info_t *info = buffer->info; |
| 445 | hb_glyph_position_t *pos = buffer->pos; |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 446 | for (unsigned int idx = 0; idx < count;) |
Behdad Esfahbod | ba87b8f | 2013-02-21 15:23:39 -0500 | [diff] [blame] | 447 | { |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 448 | OT::hb_apply_context_t::skipping_forward_iterator_t skippy_iter (&c, idx, 1); |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 449 | if (!skippy_iter.next ()) |
Behdad Esfahbod | ba87b8f | 2013-02-21 15:23:39 -0500 | [diff] [blame] | 450 | { |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 451 | idx++; |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 452 | continue; |
Behdad Esfahbod | ba87b8f | 2013-02-21 15:23:39 -0500 | [diff] [blame] | 453 | } |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 454 | |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 455 | hb_position_t x_kern, y_kern; |
| 456 | font->get_glyph_kerning_for_direction (info[idx].codepoint, |
| 457 | info[skippy_iter.idx].codepoint, |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 458 | buffer->props.direction, |
| 459 | &x_kern, &y_kern); |
| 460 | |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 461 | if (x_kern) |
| 462 | { |
| 463 | hb_position_t kern1 = x_kern >> 1; |
| 464 | hb_position_t kern2 = x_kern - kern1; |
| 465 | pos[idx].x_advance += kern1; |
| 466 | pos[skippy_iter.idx].x_advance += kern2; |
| 467 | pos[skippy_iter.idx].x_offset += kern2; |
| 468 | } |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 469 | |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 470 | if (y_kern) |
| 471 | { |
| 472 | hb_position_t kern1 = y_kern >> 1; |
| 473 | hb_position_t kern2 = y_kern - kern1; |
| 474 | pos[idx].y_advance += kern1; |
| 475 | pos[skippy_iter.idx].y_advance += kern2; |
| 476 | pos[skippy_iter.idx].y_offset += kern2; |
| 477 | } |
Behdad Esfahbod | d46606e | 2013-02-21 15:39:57 -0500 | [diff] [blame] | 478 | |
Behdad Esfahbod | 6b03e3c | 2013-10-27 21:04:55 +0100 | [diff] [blame] | 479 | idx = skippy_iter.idx; |
Behdad Esfahbod | ba87b8f | 2013-02-21 15:23:39 -0500 | [diff] [blame] | 480 | } |
| 481 | } |