| /* |
| * Copyright (C) 2007,2008,2009 Red Hat, Inc. |
| * |
| * This is part of HarfBuzz, an OpenType Layout engine 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. |
| * |
| * Red Hat Author(s): Behdad Esfahbod |
| */ |
| |
| #ifndef HB_OT_LAYOUT_GPOS_PRIVATE_H |
| #define HB_OT_LAYOUT_GPOS_PRIVATE_H |
| |
| #include "hb-ot-layout-gsubgpos-private.h" |
| |
| |
| /* Shared Tables: ValueRecord, Anchor Table, and MarkArray */ |
| |
| typedef SHORT Value; |
| typedef Value ValueRecord[]; |
| |
| struct ValueFormat : USHORT |
| { |
| enum |
| { |
| xPlacement = 0x0001, /* Includes horizontal adjustment for placement */ |
| yPlacement = 0x0002, /* Includes vertical adjustment for placement */ |
| xAdvance = 0x0004, /* Includes horizontal adjustment for advance */ |
| yAdvance = 0x0008, /* Includes vertical adjustment for advance */ |
| xPlaDevice = 0x0010, /* Includes horizontal Device table for placement */ |
| yPlaDevice = 0x0020, /* Includes vertical Device table for placement */ |
| xAdvDevice = 0x0040, /* Includes horizontal Device table for advance */ |
| yAdvDevice = 0x0080, /* Includes vertical Device table for advance */ |
| reserved = 0xF000, /* For future use */ |
| }; |
| |
| inline unsigned int get_len () const |
| { |
| return _hb_popcount32 ((unsigned int) *this); |
| } |
| |
| const void apply_value (hb_ot_layout_t *layout, |
| const char *base, |
| const Value *values, |
| HB_Position glyph_pos) const |
| { |
| unsigned int x_ppem, y_ppem; |
| hb_16dot16_t x_scale, y_scale; |
| unsigned int pixel_value; |
| unsigned int format = *this; |
| |
| if (!format) |
| return; |
| |
| /* All fields are options. Only those available advance the value |
| * pointer. */ |
| #if 0 |
| struct ValueRecord { |
| SHORT xPlacement; /* Horizontal adjustment for |
| * placement--in design units */ |
| SHORT yPlacement; /* Vertical adjustment for |
| * placement--in design units */ |
| SHORT xAdvance; /* Horizontal adjustment for |
| * advance--in design units (only used |
| * for horizontal writing) */ |
| SHORT yAdvance; /* Vertical adjustment for advance--in |
| * design units (only used for vertical |
| * writing) */ |
| Offset xPlaDevice; /* Offset to Device table for |
| * horizontal placement--measured from |
| * beginning of PosTable (may be NULL) */ |
| Offset yPlaDevice; /* Offset to Device table for vertical |
| * placement--measured from beginning |
| * of PosTable (may be NULL) */ |
| Offset xAdvDevice; /* Offset to Device table for |
| * horizontal advance--measured from |
| * beginning of PosTable (may be NULL) */ |
| Offset yAdvDevice; /* Offset to Device table for vertical |
| * advance--measured from beginning of |
| * PosTable (may be NULL) */ |
| }; |
| #endif |
| |
| x_scale = layout->gpos_info.x_scale; |
| y_scale = layout->gpos_info.y_scale; |
| /* design units -> fractional pixel */ |
| if (format & xPlacement) |
| glyph_pos->x_pos += x_scale * *(USHORT*)values++ / 0x10000; |
| if (format & yPlacement) |
| glyph_pos->y_pos += y_scale * *(USHORT*)values++ / 0x10000; |
| if (format & xAdvance) |
| glyph_pos->x_advance += x_scale * *(USHORT*)values++ / 0x10000; |
| if (format & yAdvance) |
| glyph_pos->y_advance += y_scale * *(USHORT*)values++ / 0x10000; |
| |
| if (HB_LIKELY (!layout->gpos_info.dvi)) |
| { |
| x_ppem = layout->gpos_info.x_ppem; |
| y_ppem = layout->gpos_info.y_ppem; |
| /* pixel -> fractional pixel */ |
| if (format & xPlaDevice) |
| glyph_pos->x_pos += (base+*(OffsetTo<Device>*)values++).get_delta (x_ppem) << 6; |
| if (format & yPlaDevice) |
| glyph_pos->y_pos += (base+*(OffsetTo<Device>*)values++).get_delta (y_ppem) << 6; |
| if (format & xAdvDevice) |
| glyph_pos->x_advance += (base+*(OffsetTo<Device>*)values++).get_delta (x_ppem) << 6; |
| if (format & yAdvDevice) |
| glyph_pos->y_advance += (base+*(OffsetTo<Device>*)values++).get_delta (y_ppem) << 6; |
| } |
| } |
| }; |
| ASSERT_SIZE (ValueFormat, 2); |
| |
| |
| struct AnchorFormat1 |
| { |
| friend struct Anchor; |
| |
| private: |
| inline void get_anchor (hb_ot_layout_t *layout, hb_codepoint_t glyph_id, |
| hb_position_t *x, hb_position_t *y) const |
| { |
| *x = layout->gpos_info.x_scale * xCoordinate / 0x10000; |
| *y = layout->gpos_info.y_scale * yCoordinate / 0x10000; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| SHORT xCoordinate; /* Horizontal value--in design units */ |
| SHORT yCoordinate; /* Vertical value--in design units */ |
| }; |
| ASSERT_SIZE (AnchorFormat1, 6); |
| |
| struct AnchorFormat2 |
| { |
| friend struct Anchor; |
| |
| private: |
| inline void get_anchor (hb_ot_layout_t *layout, hb_codepoint_t glyph_id, |
| hb_position_t *x, hb_position_t *y) const |
| { |
| /* TODO Contour */ |
| *x = layout->gpos_info.x_scale * xCoordinate / 0x10000; |
| *y = layout->gpos_info.y_scale * yCoordinate / 0x10000; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 2 */ |
| SHORT xCoordinate; /* Horizontal value--in design units */ |
| SHORT yCoordinate; /* Vertical value--in design units */ |
| USHORT anchorPoint; /* Index to glyph contour point */ |
| }; |
| ASSERT_SIZE (AnchorFormat2, 8); |
| |
| struct AnchorFormat3 |
| { |
| friend struct Anchor; |
| |
| private: |
| inline void get_anchor (hb_ot_layout_t *layout, hb_codepoint_t glyph_id, |
| hb_position_t *x, hb_position_t *y) const |
| { |
| *x = layout->gpos_info.x_scale * xCoordinate / 0x10000; |
| *y = layout->gpos_info.y_scale * yCoordinate / 0x10000; |
| |
| if (!layout->gpos_info.dvi) |
| { |
| *x += (this+xDeviceTable).get_delta (layout->gpos_info.x_ppem) << 6; |
| *y += (this+yDeviceTable).get_delta (layout->gpos_info.y_ppem) << 6; |
| } |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 3 */ |
| SHORT xCoordinate; /* Horizontal value--in design units */ |
| SHORT yCoordinate; /* Vertical value--in design units */ |
| OffsetTo<Device> |
| xDeviceTable; /* Offset to Device table for X |
| * coordinate-- from beginning of |
| * Anchor table (may be NULL) */ |
| OffsetTo<Device> |
| yDeviceTable; /* Offset to Device table for Y |
| * coordinate-- from beginning of |
| * Anchor table (may be NULL) */ |
| }; |
| ASSERT_SIZE (AnchorFormat3, 10); |
| |
| struct Anchor |
| { |
| inline void get_anchor (hb_ot_layout_t *layout, hb_codepoint_t glyph_id, |
| hb_position_t *x, hb_position_t *y) const |
| { |
| *x = *y = 0; |
| switch (u.format) { |
| case 1: u.format1->get_anchor (layout, glyph_id, x, y); return; |
| case 2: u.format2->get_anchor (layout, glyph_id, x, y); return; |
| case 3: u.format3->get_anchor (layout, glyph_id, x, y); return; |
| default: return; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| AnchorFormat1 format1[]; |
| AnchorFormat2 format2[]; |
| AnchorFormat3 format3[]; |
| } u; |
| }; |
| ASSERT_SIZE (Anchor, 2); |
| |
| |
| struct MarkRecord |
| { |
| friend struct MarkArray; |
| |
| private: |
| USHORT klass; /* Class defined for this mark */ |
| OffsetTo<Anchor> |
| markAnchor; /* Offset to Anchor table--from |
| * beginning of MarkArray table */ |
| }; |
| ASSERT_SIZE (MarkRecord, 4); |
| |
| struct MarkArray |
| { |
| inline unsigned int get_class (unsigned int index) const { return markRecord[index].klass; } |
| inline const Anchor& get_anchor (unsigned int index) const { return this+markRecord[index].markAnchor; } |
| |
| private: |
| ArrayOf<MarkRecord> |
| markRecord; /* Array of MarkRecords--in Coverage order */ |
| }; |
| ASSERT_SIZE (MarkArray, 2); |
| |
| |
| /* Lookups */ |
| |
| struct SinglePosFormat1 |
| { |
| friend struct SinglePos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (index == NOT_COVERED)) |
| return false; |
| |
| valueFormat.apply_value (layout, (const char *) this, values, CURPOSITION ()); |
| return true; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| OffsetTo<Coverage> |
| coverage; /* Offset to Coverage table--from |
| * beginning of subtable */ |
| ValueFormat valueFormat; /* Defines the types of data in the |
| * ValueRecord */ |
| ValueRecord values; /* Defines positioning |
| * value(s)--applied to all glyphs in |
| * the Coverage table */ |
| }; |
| ASSERT_SIZE (SinglePosFormat1, 6); |
| |
| struct SinglePosFormat2 |
| { |
| friend struct SinglePos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (index == NOT_COVERED)) |
| return false; |
| |
| if (HB_LIKELY (index >= valueCount)) |
| return false; |
| |
| valueFormat.apply_value (layout, (const char *) this, |
| values + index * valueFormat.get_len (), |
| CURPOSITION ()); |
| return true; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 2 */ |
| OffsetTo<Coverage> |
| coverage; /* Offset to Coverage table--from |
| * beginning of subtable */ |
| ValueFormat valueFormat; /* Defines the types of data in the |
| * ValueRecord */ |
| USHORT valueCount; /* Number of ValueRecords */ |
| ValueRecord values; /* Array of ValueRecords--positioning |
| * values applied to glyphs */ |
| }; |
| ASSERT_SIZE (SinglePosFormat2, 8); |
| |
| struct SinglePos |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| switch (u.format) { |
| case 1: return u.format1->apply (APPLY_ARG); |
| case 2: return u.format2->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| SinglePosFormat1 format1[]; |
| SinglePosFormat2 format2[]; |
| } u; |
| }; |
| ASSERT_SIZE (SinglePos, 2); |
| |
| |
| struct PairValueRecord |
| { |
| friend struct PairPosFormat1; |
| |
| private: |
| GlyphID secondGlyph; /* GlyphID of second glyph in the |
| * pair--first glyph is listed in the |
| * Coverage table */ |
| ValueRecord values; /* Positioning data for the first glyph |
| * followed by for second glyph */ |
| }; |
| ASSERT_SIZE (PairValueRecord, 2); |
| |
| struct PairSet |
| { |
| friend struct PairPosFormat1; |
| |
| private: |
| USHORT len; /* Number of PairValueRecords */ |
| /* XXX */ |
| PairValueRecord |
| array[]; /* Array of PairValueRecords--ordered |
| * by GlyphID of the second glyph */ |
| }; |
| ASSERT_SIZE (PairSet, 2); |
| |
| struct PairPosFormat1 |
| { |
| friend struct PairPos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
| if (HB_UNLIKELY (buffer->in_pos + 2 > end)) |
| return false; |
| |
| unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (index == NOT_COVERED)) |
| return false; |
| |
| unsigned int j = buffer->in_pos + 1; |
| while (!_hb_ot_layout_check_glyph_property (layout, IN_ITEM (j), lookup_flag, &property)) |
| { |
| if (HB_UNLIKELY (j == end)) |
| return false; |
| j++; |
| } |
| |
| const PairSet &pair_set = this+pairSet[index]; |
| |
| unsigned int len1 = valueFormat1.get_len (); |
| unsigned int len2 = valueFormat2.get_len (); |
| unsigned int record_len = 1 + len1 + len2; |
| |
| unsigned int count = pair_set.len; |
| const PairValueRecord *record = pair_set.array; |
| for (unsigned int i = 0; i < count; i++) |
| { |
| if (IN_GLYPH (j) == record->secondGlyph) |
| { |
| valueFormat1.apply_value (layout, (const char *) this, record->values, CURPOSITION ()); |
| valueFormat2.apply_value (layout, (const char *) this, record->values + len1, POSITION (j)); |
| if (len2) |
| j++; |
| buffer->in_pos = j; |
| return true; |
| } |
| record += record_len; |
| } |
| |
| return false; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| OffsetTo<Coverage> |
| coverage; /* Offset to Coverage table--from |
| * beginning of subtable */ |
| ValueFormat valueFormat1; /* Defines the types of data in |
| * ValueRecord1--for the first glyph |
| * in the pair--may be zero (0) */ |
| ValueFormat valueFormat2; /* Defines the types of data in |
| * ValueRecord2--for the second glyph |
| * in the pair--may be zero (0) */ |
| OffsetArrayOf<PairSet> |
| pairSet; /* Array of PairSet tables |
| * ordered by Coverage Index */ |
| }; |
| ASSERT_SIZE (PairPosFormat1, 10); |
| |
| struct PairPosFormat2 |
| { |
| friend struct PairPos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length); |
| if (HB_UNLIKELY (buffer->in_pos + 2 > end)) |
| return false; |
| |
| unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (index == NOT_COVERED)) |
| return false; |
| |
| unsigned int j = buffer->in_pos + 1; |
| while (!_hb_ot_layout_check_glyph_property (layout, IN_ITEM (j), lookup_flag, &property)) |
| { |
| if (HB_UNLIKELY (j == end)) |
| return false; |
| j++; |
| } |
| |
| unsigned int len1 = valueFormat1.get_len (); |
| unsigned int len2 = valueFormat2.get_len (); |
| unsigned int record_len = len1 + len2; |
| |
| unsigned int klass1 = (this+classDef1) (IN_CURGLYPH ()); |
| unsigned int klass2 = (this+classDef2) (IN_GLYPH (j)); |
| if (HB_UNLIKELY (klass1 >= class1Count || klass2 >= class2Count)) |
| return false; |
| |
| const Value *v = values + record_len * (klass1 * class2Count + klass2); |
| valueFormat1.apply_value (layout, (const char *) this, v, CURPOSITION ()); |
| valueFormat2.apply_value (layout, (const char *) this, v + len1, POSITION (j)); |
| |
| if (len2) |
| j++; |
| buffer->in_pos = j; |
| |
| return true; |
| } |
| |
| |
| private: |
| USHORT format; /* Format identifier--format = 2 */ |
| OffsetTo<Coverage> |
| coverage; /* Offset to Coverage table--from |
| * beginning of subtable */ |
| ValueFormat valueFormat1; /* ValueRecord definition--for the |
| * first glyph of the pair--may be zero |
| * (0) */ |
| ValueFormat valueFormat2; /* ValueRecord definition--for the |
| * second glyph of the pair--may be |
| * zero (0) */ |
| OffsetTo<ClassDef> |
| classDef1; /* Offset to ClassDef table--from |
| * beginning of PairPos subtable--for |
| * the first glyph of the pair */ |
| OffsetTo<ClassDef> |
| classDef2; /* Offset to ClassDef table--from |
| * beginning of PairPos subtable--for |
| * the second glyph of the pair */ |
| USHORT class1Count; /* Number of classes in ClassDef1 |
| * table--includes Class0 */ |
| USHORT class2Count; /* Number of classes in ClassDef2 |
| * table--includes Class0 */ |
| ValueRecord values; /* Matrix of value pairs: |
| * class1-major, class2-minor, |
| * Each entry has value1 and value2 */ |
| }; |
| ASSERT_SIZE (PairPosFormat2, 16); |
| |
| struct PairPos |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| switch (u.format) { |
| case 1: return u.format1->apply (APPLY_ARG); |
| case 2: return u.format2->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| PairPosFormat1 format1[]; |
| PairPosFormat2 format2[]; |
| } u; |
| }; |
| ASSERT_SIZE (PairPos, 2); |
| |
| |
| struct EntryExitRecord |
| { |
| OffsetTo<Anchor> |
| entryAnchor; /* Offset to EntryAnchor table--from |
| * beginning of CursivePos |
| * subtable--may be NULL */ |
| OffsetTo<Anchor> |
| exitAnchor; /* Offset to ExitAnchor table--from |
| * beginning of CursivePos |
| * subtable--may be NULL */ |
| }; |
| ASSERT_SIZE (EntryExitRecord, 4); |
| |
| struct CursivePosFormat1 |
| { |
| friend struct CursivePos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| /* Now comes the messiest part of the whole OpenType |
| specification. At first glance, cursive connections seem easy |
| to understand, but there are pitfalls! The reason is that |
| the specs don't mention how to compute the advance values |
| resp. glyph offsets. I was told it would be an omission, to |
| be fixed in the next OpenType version... Again many thanks to |
| Andrei Burago <andreib@microsoft.com> for clarifications. |
| |
| Consider the following example: |
| |
| | xadv1 | |
| +---------+ |
| | | |
| +-----+--+ 1 | |
| | | .| | |
| | 0+--+------+ |
| | 2 | |
| | | |
| 0+--------+ |
| | xadv2 | |
| |
| glyph1: advance width = 12 |
| anchor point = (3,1) |
| |
| glyph2: advance width = 11 |
| anchor point = (9,4) |
| |
| LSB is 1 for both glyphs (so the boxes drawn above are glyph |
| bboxes). Writing direction is R2L; `0' denotes the glyph's |
| coordinate origin. |
| |
| Now the surprising part: The advance width of the *left* glyph |
| (resp. of the *bottom* glyph) will be modified, no matter |
| whether the writing direction is L2R or R2L (resp. T2B or |
| B2T)! This assymetry is caused by the fact that the glyph's |
| coordinate origin is always the lower left corner for all |
| writing directions. |
| |
| Continuing the above example, we can compute the new |
| (horizontal) advance width of glyph2 as |
| |
| 9 - 3 = 6 , |
| |
| and the new vertical offset of glyph2 as |
| |
| 1 - 4 = -3 . |
| |
| |
| Vertical writing direction is far more complicated: |
| |
| a) Assuming that we recompute the advance height of the lower glyph: |
| |
| -- |
| +---------+ |
| -- | | |
| +-----+--+ 1 | yadv1 |
| | | .| | |
| yadv2 | 0+--+------+ -- BSB1 -- |
| | 2 | -- -- y_offset |
| | | |
| BSB2 -- 0+--------+ -- |
| -- -- |
| |
| glyph1: advance height = 6 |
| anchor point = (3,1) |
| |
| glyph2: advance height = 7 |
| anchor point = (9,4) |
| |
| TSB is 1 for both glyphs; writing direction is T2B. |
| |
| |
| BSB1 = yadv1 - (TSB1 + ymax1) |
| BSB2 = yadv2 - (TSB2 + ymax2) |
| y_offset = y2 - y1 |
| |
| vertical advance width of glyph2 |
| = y_offset + BSB2 - BSB1 |
| = (y2 - y1) + (yadv2 - (TSB2 + ymax2)) - (yadv1 - (TSB1 + ymax1)) |
| = y2 - y1 + yadv2 - TSB2 - ymax2 - (yadv1 - TSB1 - ymax1) |
| = y2 - y1 + yadv2 - TSB2 - ymax2 - yadv1 + TSB1 + ymax1 |
| |
| |
| b) Assuming that we recompute the advance height of the upper glyph: |
| |
| -- -- |
| +---------+ -- TSB1 |
| -- -- | | |
| TSB2 -- +-----+--+ 1 | yadv1 ymax1 |
| | | .| | |
| yadv2 | 0+--+------+ -- -- |
| ymax2 | 2 | -- y_offset |
| | | |
| -- 0+--------+ -- |
| -- |
| |
| glyph1: advance height = 6 |
| anchor point = (3,1) |
| |
| glyph2: advance height = 7 |
| anchor point = (9,4) |
| |
| TSB is 1 for both glyphs; writing direction is T2B. |
| |
| y_offset = y2 - y1 |
| |
| vertical advance width of glyph2 |
| = TSB1 + ymax1 + y_offset - (TSB2 + ymax2) |
| = TSB1 + ymax1 + y2 - y1 - TSB2 - ymax2 |
| |
| |
| Comparing a) with b) shows that b) is easier to compute. I'll wait |
| for a reply from Andrei to see what should really be implemented... |
| |
| Since horizontal advance widths or vertical advance heights |
| can be used alone but not together, no ambiguity occurs. */ |
| |
| struct hb_ot_layout_t::gpos_info_t *gpi = &layout->gpos_info; |
| hb_codepoint_t last_pos = gpi->last; |
| gpi->last = HB_OT_GPOS_NO_LAST; |
| |
| /* We don't handle mark glyphs here. */ |
| if (property == HB_OT_LAYOUT_GLYPH_CLASS_MARK) |
| return false; |
| |
| unsigned int index = (this+coverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (index == NOT_COVERED)) |
| return false; |
| |
| const EntryExitRecord &record = entryExitRecord[index]; |
| |
| hb_position_t entry_x, entry_y, exit_x, exit_y; |
| |
| if (last_pos == HB_OT_GPOS_NO_LAST || !record.entryAnchor) |
| goto end; |
| |
| (this+record.entryAnchor).get_anchor (layout, IN_CURGLYPH (), &entry_x, &entry_y); |
| |
| if (gpi->r2l) |
| { |
| POSITION (buffer->in_pos)->x_advance = entry_x - gpi->anchor_x; |
| POSITION (buffer->in_pos)->new_advance = TRUE; |
| } |
| else |
| { |
| POSITION (last_pos)->x_advance = gpi->anchor_x - entry_x; |
| POSITION (last_pos)->new_advance = TRUE; |
| } |
| |
| if (lookup_flag & LookupFlag::RightToLeft) |
| { |
| POSITION (last_pos)->cursive_chain = last_pos - buffer->in_pos; |
| POSITION (last_pos)->y_pos = entry_y - gpi->anchor_y; |
| } |
| else |
| { |
| POSITION (buffer->in_pos)->cursive_chain = buffer->in_pos - last_pos; |
| POSITION (buffer->in_pos)->y_pos = gpi->anchor_y - entry_y; |
| } |
| |
| end: |
| if (record.exitAnchor) |
| { |
| gpi->last = buffer->in_pos; |
| (this+record.exitAnchor).get_anchor (layout, IN_CURGLYPH (), &gpi->anchor_x, &gpi->anchor_y); |
| } |
| |
| buffer->in_pos++; |
| return true; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| OffsetTo<Coverage> |
| coverage; /* Offset to Coverage table--from |
| * beginning of subtable */ |
| ArrayOf<EntryExitRecord> |
| entryExitRecord; /* Array of EntryExit records--in |
| * Coverage Index order */ |
| }; |
| ASSERT_SIZE (CursivePosFormat1, 6); |
| |
| struct CursivePos |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| switch (u.format) { |
| case 1: return u.format1->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| CursivePosFormat1 format1[]; |
| } u; |
| }; |
| ASSERT_SIZE (CursivePos, 2); |
| |
| |
| struct BaseArray |
| { |
| friend struct MarkBasePosFormat1; |
| |
| private: |
| USHORT len; /* Number of rows */ |
| OffsetTo<Anchor> |
| matrix[]; /* Matrix of offsets to Anchor tables-- |
| * from beginning of BaseArray table-- |
| * base-major--in order of |
| * BaseCoverage Index--, mark-minor-- |
| * ordered by class--zero-based. */ |
| }; |
| ASSERT_SIZE (BaseArray, 2); |
| |
| struct MarkBasePosFormat1 |
| { |
| friend struct MarkBasePos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| if (lookup_flag & LookupFlag::IgnoreBaseGlyphs) |
| return false; |
| |
| unsigned int mark_index = (this+markCoverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (mark_index == NOT_COVERED)) |
| return false; |
| |
| /* now we search backwards for a non-mark glyph */ |
| unsigned int count = buffer->in_pos; |
| unsigned int i = 1, j = count - 1; |
| while (i <= count) |
| { |
| property = _hb_ot_layout_get_glyph_property (layout, IN_GLYPH (j)); |
| if (!(property == HB_OT_LAYOUT_GLYPH_CLASS_MARK || property & LookupFlag::MarkAttachmentType)) |
| break; |
| i++, j--; |
| } |
| if (HB_UNLIKELY (i > buffer->in_pos)) |
| return false; |
| |
| /* The following assertion is too strong -- at least for mangal.ttf. */ |
| #if 0 |
| if (property != HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH) |
| return false; |
| #endif |
| |
| unsigned int base_index = (this+baseCoverage) (IN_GLYPH (j)); |
| if (base_index == NOT_COVERED) |
| return false; |
| |
| const MarkArray& mark_array = this+markArray; |
| const BaseArray& base_array = this+baseArray; |
| |
| unsigned int mark_class = mark_array.get_class (mark_index); |
| const Anchor& mark_anchor = mark_array.get_anchor (mark_index); |
| |
| if (HB_UNLIKELY (mark_class >= classCount || base_index >= base_array.len)) |
| return false; |
| |
| hb_position_t mark_x, mark_y, base_x, base_y; |
| |
| mark_anchor.get_anchor (layout, IN_CURGLYPH (), &mark_x, &mark_y); |
| unsigned int index = base_index * classCount + mark_class; |
| (&base_array+base_array.matrix[index]).get_anchor (layout, IN_GLYPH (j), &base_x, &base_y); |
| |
| HB_Position o = POSITION (buffer->in_pos); |
| o->x_pos = base_x - mark_x; |
| o->y_pos = base_y - mark_y; |
| o->x_advance = 0; |
| o->y_advance = 0; |
| o->back = i; |
| |
| buffer->in_pos++; |
| return true; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| OffsetTo<Coverage> |
| markCoverage; /* Offset to MarkCoverage table--from |
| * beginning of MarkBasePos subtable */ |
| OffsetTo<Coverage> |
| baseCoverage; /* Offset to BaseCoverage table--from |
| * beginning of MarkBasePos subtable */ |
| USHORT classCount; /* Number of classes defined for marks */ |
| OffsetTo<MarkArray> |
| markArray; /* Offset to MarkArray table--from |
| * beginning of MarkBasePos subtable */ |
| OffsetTo<BaseArray> |
| baseArray; /* Offset to BaseArray table--from |
| * beginning of MarkBasePos subtable */ |
| }; |
| ASSERT_SIZE (MarkBasePosFormat1, 12); |
| |
| struct MarkBasePos |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| switch (u.format) { |
| case 1: return u.format1->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| MarkBasePosFormat1 format1[]; |
| } u; |
| }; |
| ASSERT_SIZE (MarkBasePos, 2); |
| |
| |
| struct LigatureAttach |
| { |
| friend struct MarkLigPosFormat1; |
| |
| private: |
| USHORT len; /* Number of ComponentRecords in this |
| * ligature, ie. number of rows */ |
| OffsetTo<Anchor> |
| matrix[]; /* Matrix of offsets to Anchor tables-- |
| * from beginning of LigatureAttach table-- |
| * component-major--in order of |
| * writing direction--, mark-minor-- |
| * ordered by class--zero-based. */ |
| }; |
| ASSERT_SIZE (LigatureAttach, 2); |
| |
| typedef OffsetArrayOf<LigatureAttach> LigatureArray; |
| /* Array of LigatureAttach |
| * tables ordered by |
| * LigatureCoverage Index */ |
| ASSERT_SIZE (LigatureArray, 2); |
| |
| struct MarkLigPosFormat1 |
| { |
| friend struct MarkLigPos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| if (lookup_flag & LookupFlag::IgnoreLigatures) |
| return false; |
| |
| unsigned int mark_index = (this+markCoverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (mark_index == NOT_COVERED)) |
| return false; |
| |
| /* now we search backwards for a non-mark glyph */ |
| unsigned int count = buffer->in_pos; |
| unsigned int i = 1, j = count - 1; |
| while (i <= count) |
| { |
| property = _hb_ot_layout_get_glyph_property (layout, IN_GLYPH (j)); |
| if (!(property == HB_OT_LAYOUT_GLYPH_CLASS_MARK || property & LookupFlag::MarkAttachmentType)) |
| break; |
| i++, j--; |
| } |
| if (HB_UNLIKELY (i > buffer->in_pos)) |
| return false; |
| |
| /* The following assertion is too strong -- at least for mangal.ttf. */ |
| #if 0 |
| if (property != HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE) |
| return false; |
| #endif |
| |
| unsigned int lig_index = (this+ligatureCoverage) (IN_GLYPH (j)); |
| if (lig_index == NOT_COVERED) |
| return false; |
| |
| const MarkArray& mark_array = this+markArray; |
| const LigatureArray& lig_array = this+ligatureArray; |
| |
| unsigned int mark_class = mark_array.get_class (mark_index); |
| const Anchor& mark_anchor = mark_array.get_anchor (mark_index); |
| |
| if (HB_UNLIKELY (mark_class >= classCount || lig_index >= lig_array.len)) |
| return false; |
| |
| const LigatureAttach& lig_attach = &lig_array+lig_array[lig_index]; |
| count = lig_attach.len; |
| if (HB_UNLIKELY (!count)) |
| return false; |
| |
| unsigned int comp_index; |
| /* We must now check whether the ligature ID of the current mark glyph |
| * is identical to the ligature ID of the found ligature. If yes, we |
| * can directly use the component index. If not, we attach the mark |
| * glyph to the last component of the ligature. */ |
| if (IN_LIGID (j) == IN_LIGID (buffer->in_pos)) |
| { |
| comp_index = IN_COMPONENT (buffer->in_pos); |
| if (comp_index >= count) |
| comp_index = count - 1; |
| } |
| else |
| comp_index = count - 1; |
| |
| hb_position_t mark_x, mark_y, lig_x, lig_y; |
| |
| mark_anchor.get_anchor (layout, IN_CURGLYPH (), &mark_x, &mark_y); |
| unsigned int index = comp_index * classCount + mark_class; |
| (&lig_attach+lig_attach.matrix[index]).get_anchor (layout, IN_GLYPH (j), &lig_x, &lig_y); |
| |
| HB_Position o = POSITION (buffer->in_pos); |
| o->x_pos = lig_x - mark_x; |
| o->y_pos = lig_y - mark_y; |
| o->x_advance = 0; |
| o->y_advance = 0; |
| o->back = i; |
| |
| buffer->in_pos++; |
| return true; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| OffsetTo<Coverage> |
| markCoverage; /* Offset to Mark Coverage table--from |
| * beginning of MarkLigPos subtable */ |
| OffsetTo<Coverage> |
| ligatureCoverage; /* Offset to Ligature Coverage |
| * table--from beginning of MarkLigPos |
| * subtable */ |
| USHORT classCount; /* Number of defined mark classes */ |
| OffsetTo<MarkArray> |
| markArray; /* Offset to MarkArray table--from |
| * beginning of MarkLigPos subtable */ |
| OffsetTo<LigatureArray> |
| ligatureArray; /* Offset to LigatureArray table--from |
| * beginning of MarkLigPos subtable */ |
| }; |
| ASSERT_SIZE (MarkLigPosFormat1, 12); |
| |
| struct MarkLigPos |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| switch (u.format) { |
| case 1: return u.format1->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| MarkLigPosFormat1 format1[]; |
| } u; |
| }; |
| ASSERT_SIZE (MarkLigPos, 2); |
| |
| |
| struct Mark2Array |
| { |
| friend struct MarkMarkPosFormat1; |
| |
| private: |
| USHORT len; /* Number of rows */ |
| OffsetTo<Anchor> |
| matrix[]; /* Matrix of offsets to Anchor tables-- |
| * from beginning of Mark2Array table-- |
| * mark2-major--in order of |
| * Mark2Coverage Index--, mark1-minor-- |
| * ordered by class--zero-based. */ |
| }; |
| ASSERT_SIZE (Mark2Array, 2); |
| |
| struct MarkMarkPosFormat1 |
| { |
| friend struct MarkMarkPos; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| if (lookup_flag & LookupFlag::IgnoreMarks) |
| return false; |
| |
| unsigned int mark1_index = (this+mark1Coverage) (IN_CURGLYPH ()); |
| if (HB_LIKELY (mark1_index == NOT_COVERED)) |
| return false; |
| |
| /* now we search backwards for a suitable mark glyph until a non-mark glyph */ |
| unsigned int count = buffer->in_pos; |
| unsigned int i = 1, j = count - 1; |
| while (i <= count) |
| { |
| property = _hb_ot_layout_get_glyph_property (layout, IN_GLYPH (j)); |
| if (!(property == HB_OT_LAYOUT_GLYPH_CLASS_MARK || property & LookupFlag::MarkAttachmentType)) |
| return false; |
| if (!(lookup_flag & LookupFlag::MarkAttachmentType) || |
| (lookup_flag & LookupFlag::MarkAttachmentType) == property) |
| break; |
| i++, j--; |
| } |
| if (HB_UNLIKELY (i > buffer->in_pos)) |
| return false; |
| |
| unsigned int mark2_index = (this+mark2Coverage) (IN_GLYPH (j)); |
| if (mark2_index == NOT_COVERED) |
| return false; |
| |
| const MarkArray& mark1_array = this+mark1Array; |
| const Mark2Array& mark2_array = this+mark2Array; |
| |
| unsigned int mark1_class = mark1_array.get_class (mark1_index); |
| const Anchor& mark1_anchor = mark1_array.get_anchor (mark1_index); |
| |
| if (HB_UNLIKELY (mark1_class >= classCount || mark2_index >= mark2_array.len)) |
| return false; |
| |
| hb_position_t mark1_x, mark1_y, mark2_x, mark2_y; |
| |
| mark1_anchor.get_anchor (layout, IN_CURGLYPH (), &mark1_x, &mark1_y); |
| unsigned int index = mark2_index * classCount + mark1_class; |
| (&mark2_array+mark2_array.matrix[index]).get_anchor (layout, IN_GLYPH (j), &mark2_x, &mark2_y); |
| |
| HB_Position o = POSITION (buffer->in_pos); |
| o->x_pos = mark2_x - mark1_x; |
| o->y_pos = mark2_y - mark1_y; |
| o->x_advance = 0; |
| o->y_advance = 0; |
| o->back = i; |
| |
| buffer->in_pos++; |
| return true; |
| } |
| |
| private: |
| USHORT format; /* Format identifier--format = 1 */ |
| OffsetTo<Coverage> |
| mark1Coverage; /* Offset to Combining Mark1 Coverage |
| * table--from beginning of MarkMarkPos |
| * subtable */ |
| OffsetTo<Coverage> |
| mark2Coverage; /* Offset to Combining Mark2 Coverage |
| * table--from beginning of MarkMarkPos |
| * subtable */ |
| USHORT classCount; /* Number of defined mark classes */ |
| OffsetTo<MarkArray> |
| mark1Array; /* Offset to Mark1Array table--from |
| * beginning of MarkMarkPos subtable */ |
| OffsetTo<Mark2Array> |
| mark2Array; /* Offset to Mark2Array table--from |
| * beginning of MarkMarkPos subtable */ |
| }; |
| ASSERT_SIZE (MarkMarkPosFormat1, 12); |
| |
| struct MarkMarkPos |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| switch (u.format) { |
| case 1: return u.format1->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; /* Format identifier */ |
| MarkMarkPosFormat1 format1[]; |
| } u; |
| }; |
| ASSERT_SIZE (MarkMarkPos, 2); |
| |
| |
| static inline bool position_lookup (APPLY_ARG_DEF, unsigned int lookup_index); |
| |
| struct ContextPos : Context |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| return Context::apply (APPLY_ARG, position_lookup); |
| } |
| }; |
| ASSERT_SIZE (ContextPos, 2); |
| |
| struct ChainContextPos : ChainContext |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const |
| { |
| return ChainContext::apply (APPLY_ARG, position_lookup); |
| } |
| }; |
| ASSERT_SIZE (ChainContextPos, 2); |
| |
| |
| struct ExtensionPos : Extension |
| { |
| friend struct PosLookupSubTable; |
| |
| private: |
| inline bool apply (APPLY_ARG_DEF) const; |
| }; |
| ASSERT_SIZE (ExtensionPos, 2); |
| |
| |
| |
| /* |
| * PosLookup |
| */ |
| |
| |
| struct PosLookupSubTable |
| { |
| friend struct PosLookup; |
| |
| enum { |
| Single = 1, |
| Pair = 2, |
| Cursive = 3, |
| MarkBase = 4, |
| MarkLig = 5, |
| MarkMark = 6, |
| Context = 7, |
| ChainContext = 8, |
| Extension = 9, |
| }; |
| |
| bool apply (APPLY_ARG_DEF, unsigned int lookup_type) const |
| { |
| switch (lookup_type) { |
| case Single: return u.single->apply (APPLY_ARG); |
| case Pair: return u.pair->apply (APPLY_ARG); |
| case Cursive: return u.cursive->apply (APPLY_ARG); |
| case MarkBase: return u.markBase->apply (APPLY_ARG); |
| case MarkLig: return u.markLig->apply (APPLY_ARG); |
| case MarkMark: return u.markMark->apply (APPLY_ARG); |
| case Context: return u.context->apply (APPLY_ARG); |
| case ChainContext: return u.chainContext->apply (APPLY_ARG); |
| case Extension: return u.extension->apply (APPLY_ARG); |
| default:return false; |
| } |
| } |
| |
| private: |
| union { |
| USHORT format; |
| SinglePos single[]; |
| PairPos pair[]; |
| CursivePos cursive[]; |
| MarkBasePos markBase[]; |
| MarkLigPos markLig[]; |
| MarkMarkPos markMark[]; |
| ContextPos context[]; |
| ChainContextPos chainContext[]; |
| ExtensionPos extension[]; |
| } u; |
| }; |
| ASSERT_SIZE (PosLookupSubTable, 2); |
| |
| |
| struct PosLookup : Lookup |
| { |
| inline const PosLookupSubTable& get_subtable (unsigned int i) const |
| { |
| return (const PosLookupSubTable&) Lookup::get_subtable (i); |
| } |
| |
| /* Like get_type(), but looks through extension lookups. |
| * Never returns Extension */ |
| inline unsigned int get_effective_type (void) const |
| { |
| unsigned int type = get_type (); |
| |
| if (HB_UNLIKELY (type == PosLookupSubTable::Extension)) |
| { |
| unsigned int count = get_subtable_count (); |
| type = get_subtable(0).u.extension->get_type (); |
| /* The spec says all subtables should have the same type. |
| * This is specially important if one has a reverse type! */ |
| for (unsigned int i = 1; i < count; i++) |
| if (get_subtable(i).u.extension->get_type () != type) |
| return 0; |
| } |
| |
| return type; |
| } |
| |
| inline bool apply_once (hb_ot_layout_t *layout, |
| hb_buffer_t *buffer, |
| unsigned int context_length, |
| unsigned int nesting_level_left) const |
| { |
| unsigned int lookup_type = get_type (); |
| unsigned int lookup_flag = get_flag (); |
| unsigned int property; |
| |
| if (!_hb_ot_layout_check_glyph_property (layout, IN_CURITEM (), lookup_flag, &property)) |
| return false; |
| |
| for (unsigned int i = 0; i < get_subtable_count (); i++) |
| if (get_subtable (i).apply (APPLY_ARG, lookup_type)) |
| return true; |
| |
| return false; |
| } |
| |
| bool apply_string (hb_ot_layout_t *layout, |
| hb_buffer_t *buffer, |
| hb_ot_layout_feature_mask_t mask) const |
| { |
| bool ret = false; |
| |
| if (HB_UNLIKELY (!buffer->in_length)) |
| return false; |
| |
| layout->gpos_info.last = HB_OT_GPOS_NO_LAST; /* no last valid glyph for cursive pos. */ |
| |
| buffer->in_pos = 0; |
| while (buffer->in_pos < buffer->in_length) |
| { |
| bool done; |
| if (~IN_PROPERTIES (buffer->in_pos) & mask) |
| { |
| done = apply_once (layout, buffer, NO_CONTEXT, MAX_NESTING_LEVEL); |
| ret |= done; |
| } |
| else |
| { |
| done = false; |
| /* Contrary to properties defined in GDEF, user-defined properties |
| will always stop a possible cursive positioning. */ |
| layout->gpos_info.last = HB_OT_GPOS_NO_LAST; |
| } |
| |
| if (!done) |
| buffer->in_pos++; |
| } |
| |
| return ret; |
| } |
| }; |
| ASSERT_SIZE (PosLookup, 6); |
| |
| |
| /* |
| * GPOS |
| */ |
| |
| struct GPOS : GSUBGPOS |
| { |
| static const hb_tag_t Tag = HB_TAG ('G','P','O','S'); |
| |
| static inline const GPOS& get_for_data (const char *data) |
| { |
| return (const GPOS&) GSUBGPOS::get_for_data (data); |
| } |
| |
| inline const PosLookup& get_lookup (unsigned int i) const |
| { |
| return (const PosLookup&) GSUBGPOS::get_lookup (i); |
| } |
| |
| inline bool position_lookup (hb_ot_layout_t *layout, |
| hb_buffer_t *buffer, |
| unsigned int lookup_index, |
| hb_ot_layout_feature_mask_t mask) const |
| { |
| return get_lookup (lookup_index).apply_string (layout, buffer, mask); |
| } |
| |
| }; |
| ASSERT_SIZE (GPOS, 10); |
| |
| |
| /* Out-of-class implementation for methods recursing */ |
| |
| inline bool ExtensionPos::apply (APPLY_ARG_DEF) const |
| { |
| unsigned int lookup_type = get_type (); |
| |
| if (HB_UNLIKELY (lookup_type == PosLookupSubTable::Extension)) |
| return false; |
| |
| return ((PosLookupSubTable&) get_subtable ()).apply (APPLY_ARG, lookup_type); |
| } |
| |
| static inline bool position_lookup (APPLY_ARG_DEF, unsigned int lookup_index) |
| { |
| const GPOS &gpos = *(layout->gpos); |
| const PosLookup &l = gpos.get_lookup (lookup_index); |
| |
| if (HB_UNLIKELY (nesting_level_left == 0)) |
| return false; |
| nesting_level_left--; |
| |
| if (HB_UNLIKELY (context_length < 1)) |
| return false; |
| |
| return l.apply_once (layout, buffer, context_length, nesting_level_left); |
| } |
| |
| |
| #endif /* HB_OT_LAYOUT_GPOS_PRIVATE_H */ |