2 * Opentype font interfaces for the Uniscribe Script Processor (usp10.dll)
4 * Copyright 2012 CodeWeavers, Aric Stewart
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "usp10_internal.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(uniscribe
);
28 #ifdef WORDS_BIGENDIAN
29 #define GET_BE_WORD(x) (x)
30 #define GET_BE_DWORD(x) (x)
32 #define GET_BE_WORD(x) RtlUshortByteSwap(x)
33 #define GET_BE_DWORD(x) RtlUlongByteSwap(x)
36 #define round(x) (((x) < 0) ? (int)((x) - 0.5) : (int)((x) + 0.5))
38 /* These are all structures needed for the cmap format 12 table */
39 #define CMAP_TAG MS_MAKE_TAG('c', 'm', 'a', 'p')
45 } CMAP_EncodingRecord
;
50 CMAP_EncodingRecord tables
[1];
57 } CMAP_SegmentedCoverage_group
;
65 CMAP_SegmentedCoverage_group groups
[1];
66 } CMAP_SegmentedCoverage
;
68 /* These are all structures needed for the GDEF table */
69 enum {BaseGlyph
=1, LigatureGlyph
, MarkGlyph
, ComponentGlyph
};
76 WORD MarkAttachClassDef
;
83 WORD ClassValueArray
[1];
90 } OT_ClassRangeRecord
;
95 OT_ClassRangeRecord ClassRangeRecord
[1];
98 /* These are all structures needed for the GSUB table */
114 OT_ScriptRecord ScriptRecord
[1];
125 OT_LangSysRecord LangSysRecord
[1];
129 WORD LookupOrder
; /* Reserved */
130 WORD ReqFeatureIndex
;
132 WORD FeatureIndex
[1];
142 OT_FeatureRecord FeatureRecord
[1];
146 WORD FeatureParams
; /* Reserved */
148 WORD LookupListIndex
[1];
167 } OT_CoverageFormat1
;
172 WORD StartCoverageIndex
;
178 OT_RangeRecord RangeRecord
[1];
179 } OT_CoverageFormat2
;
182 WORD SubstFormat
; /* = 1 */
185 } GSUB_SingleSubstFormat1
;
188 WORD SubstFormat
; /* = 2 */
192 }GSUB_SingleSubstFormat2
;
195 WORD SubstFormat
; /* = 1 */
199 }GSUB_MultipleSubstFormat1
;
207 WORD SubstFormat
; /* = 1 */
211 }GSUB_LigatureSubstFormat1
;
226 WORD LookupListIndex
;
228 }GSUB_SubstLookupRecord
;
231 WORD SubstFormat
; /* = 1 */
233 WORD ChainSubRuleSetCount
;
234 WORD ChainSubRuleSet
[1];
235 }GSUB_ChainContextSubstFormat1
;
238 WORD SubstFormat
; /* = 3 */
239 WORD BacktrackGlyphCount
;
241 }GSUB_ChainContextSubstFormat3_1
;
244 WORD InputGlyphCount
;
246 }GSUB_ChainContextSubstFormat3_2
;
249 WORD LookaheadGlyphCount
;
251 }GSUB_ChainContextSubstFormat3_3
;
255 GSUB_SubstLookupRecord SubstLookupRecord
[1];
256 }GSUB_ChainContextSubstFormat3_4
;
259 WORD SubstFormat
; /* = 1 */
261 WORD AlternateSetCount
;
262 WORD AlternateSet
[1];
263 } GSUB_AlternateSubstFormat1
;
270 /* These are all structures needed for the GPOS table */
290 } GPOS_AnchorFormat1
;
297 } GPOS_AnchorFormat2
;
305 } GPOS_AnchorFormat3
;
323 } GPOS_SinglePosFormat1
;
331 } GPOS_SinglePosFormat2
;
339 WORD PairSetOffset
[1];
340 } GPOS_PairPosFormat1
;
351 WORD Class1Record
[1];
352 } GPOS_PairPosFormat2
;
358 } GPOS_PairValueRecord
;
362 GPOS_PairValueRecord PairValueRecord
[1];
368 } GPOS_EntryExitRecord
;
374 GPOS_EntryExitRecord EntryExitRecord
[1];
375 } GPOS_CursivePosFormat1
;
384 } GPOS_MarkBasePosFormat1
;
392 GPOS_BaseRecord BaseRecord
[1];
402 GPOS_MarkRecord MarkRecord
[1];
408 WORD LigatureCoverage
;
412 } GPOS_MarkLigPosFormat1
;
416 WORD LigatureAttach
[1];
417 } GPOS_LigatureArray
;
420 WORD LigatureAnchor
[1];
421 } GPOS_ComponentRecord
;
425 GPOS_ComponentRecord ComponentRecord
[1];
426 } GPOS_LigatureAttach
;
435 } GPOS_MarkMarkPosFormat1
;
443 GPOS_Mark2Record Mark2Record
[1];
448 WORD LookupListIndex
;
449 } GPOS_PosLookupRecord
;
453 WORD BacktrackGlyphCount
;
455 } GPOS_ChainContextPosFormat3_1
;
458 WORD InputGlyphCount
;
460 } GPOS_ChainContextPosFormat3_2
;
463 WORD LookaheadGlyphCount
;
465 } GPOS_ChainContextPosFormat3_3
;
469 GPOS_PosLookupRecord PosLookupRecord
[1];
470 } GPOS_ChainContextPosFormat3_4
;
474 WORD ExtensionLookupType
;
475 DWORD ExtensionOffset
;
476 } GPOS_ExtensionPosFormat1
;
482 static VOID
*load_CMAP_format12_table(HDC hdc
, ScriptCache
*psc
)
484 CMAP_Header
*CMAP_Table
= NULL
;
488 if (!psc
->CMAP_Table
)
490 length
= GetFontData(hdc
, CMAP_TAG
, 0, NULL
, 0);
491 if (length
!= GDI_ERROR
)
493 psc
->CMAP_Table
= HeapAlloc(GetProcessHeap(),0,length
);
494 GetFontData(hdc
, CMAP_TAG
, 0, psc
->CMAP_Table
, length
);
495 TRACE("Loaded cmap table of %i bytes\n",length
);
501 CMAP_Table
= psc
->CMAP_Table
;
503 for (i
= 0; i
< GET_BE_WORD(CMAP_Table
->numTables
); i
++)
505 if ( (GET_BE_WORD(CMAP_Table
->tables
[i
].platformID
) == 3) &&
506 (GET_BE_WORD(CMAP_Table
->tables
[i
].encodingID
) == 10) )
508 CMAP_SegmentedCoverage
*format
= (CMAP_SegmentedCoverage
*)(((BYTE
*)CMAP_Table
) + GET_BE_DWORD(CMAP_Table
->tables
[i
].offset
));
509 if (GET_BE_WORD(format
->format
) == 12)
516 static int compare_group(const void *a
, const void* b
)
518 const DWORD
*chr
= a
;
519 const CMAP_SegmentedCoverage_group
*group
= b
;
521 if (*chr
< GET_BE_DWORD(group
->startCharCode
))
523 if (*chr
> GET_BE_DWORD(group
->endCharCode
))
528 DWORD
OpenType_CMAP_GetGlyphIndex(HDC hdc
, ScriptCache
*psc
, DWORD utf32c
, LPWORD pgi
, DWORD flags
)
530 /* BMP: use gdi32 for ease */
531 if (utf32c
< 0x10000)
534 return GetGlyphIndicesW(hdc
,&ch
, 1, pgi
, flags
);
537 if (!psc
->CMAP_format12_Table
)
538 psc
->CMAP_format12_Table
= load_CMAP_format12_table(hdc
, psc
);
540 if (flags
& GGI_MARK_NONEXISTING_GLYPHS
)
545 if (psc
->CMAP_format12_Table
)
547 CMAP_SegmentedCoverage
*format
= NULL
;
548 CMAP_SegmentedCoverage_group
*group
= NULL
;
550 format
= (CMAP_SegmentedCoverage
*)psc
->CMAP_format12_Table
;
552 group
= bsearch(&utf32c
, format
->groups
, GET_BE_DWORD(format
->nGroups
),
553 sizeof(CMAP_SegmentedCoverage_group
), compare_group
);
557 DWORD offset
= utf32c
- GET_BE_DWORD(group
->startCharCode
);
558 *pgi
= GET_BE_DWORD(group
->startGlyphID
) + offset
;
569 static WORD
OT_get_glyph_class(const void *table
, WORD glyph
)
572 const OT_ClassDefFormat1
*cf1
= table
;
574 if (!table
) return 0;
576 if (GET_BE_WORD(cf1
->ClassFormat
) == 1)
578 if (glyph
>= GET_BE_WORD(cf1
->StartGlyph
))
580 int index
= glyph
- GET_BE_WORD(cf1
->StartGlyph
);
581 if (index
< GET_BE_WORD(cf1
->GlyphCount
))
582 class = GET_BE_WORD(cf1
->ClassValueArray
[index
]);
585 else if (GET_BE_WORD(cf1
->ClassFormat
) == 2)
587 const OT_ClassDefFormat2
*cf2
= table
;
589 top
= GET_BE_WORD(cf2
->ClassRangeCount
);
590 for (i
= 0; i
< top
; i
++)
592 if (glyph
>= GET_BE_WORD(cf2
->ClassRangeRecord
[i
].Start
) &&
593 glyph
<= GET_BE_WORD(cf2
->ClassRangeRecord
[i
].End
))
595 class = GET_BE_WORD(cf2
->ClassRangeRecord
[i
].Class
);
601 ERR("Unknown Class Format %i\n",GET_BE_WORD(cf1
->ClassFormat
));
606 void OpenType_GDEF_UpdateGlyphProps(ScriptCache
*psc
, const WORD
*pwGlyphs
, const WORD cGlyphs
, WORD
* pwLogClust
, const WORD cChars
, SCRIPT_GLYPHPROP
*pGlyphProp
)
609 void *glyph_class_table
= NULL
;
613 const GDEF_Header
*header
= psc
->GDEF_Table
;
614 WORD offset
= GET_BE_WORD( header
->GlyphClassDef
);
616 glyph_class_table
= (BYTE
*)psc
->GDEF_Table
+ offset
;
619 for (i
= 0; i
< cGlyphs
; i
++)
625 k
= USP10_FindGlyphInLogClust(pwLogClust
, cChars
, i
);
628 for (; k
< cChars
&& pwLogClust
[k
] == i
; k
++)
632 class = OT_get_glyph_class( glyph_class_table
, pwGlyphs
[i
] );
638 pGlyphProp
[i
].sva
.fClusterStart
= 1;
639 pGlyphProp
[i
].sva
.fDiacritic
= 0;
640 pGlyphProp
[i
].sva
.fZeroWidth
= 0;
643 pGlyphProp
[i
].sva
.fClusterStart
= 1;
644 pGlyphProp
[i
].sva
.fDiacritic
= 0;
645 pGlyphProp
[i
].sva
.fZeroWidth
= 0;
648 pGlyphProp
[i
].sva
.fClusterStart
= 0;
649 pGlyphProp
[i
].sva
.fDiacritic
= 1;
650 pGlyphProp
[i
].sva
.fZeroWidth
= 1;
653 pGlyphProp
[i
].sva
.fClusterStart
= 0;
654 pGlyphProp
[i
].sva
.fDiacritic
= 0;
655 pGlyphProp
[i
].sva
.fZeroWidth
= 0;
658 ERR("Unknown glyph class %i\n",class);
659 pGlyphProp
[i
].sva
.fClusterStart
= 1;
660 pGlyphProp
[i
].sva
.fDiacritic
= 0;
661 pGlyphProp
[i
].sva
.fZeroWidth
= 0;
665 pGlyphProp
[i
].sva
.fClusterStart
= 0;
672 static INT
GSUB_apply_lookup(const OT_LookupList
* lookup
, INT lookup_index
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
);
674 static INT
GSUB_is_glyph_covered(LPCVOID table
, UINT glyph
)
676 const OT_CoverageFormat1
* cf1
;
680 if (GET_BE_WORD(cf1
->CoverageFormat
) == 1)
682 int count
= GET_BE_WORD(cf1
->GlyphCount
);
684 TRACE("Coverage Format 1, %i glyphs\n",count
);
685 for (i
= 0; i
< count
; i
++)
686 if (glyph
== GET_BE_WORD(cf1
->GlyphArray
[i
]))
690 else if (GET_BE_WORD(cf1
->CoverageFormat
) == 2)
692 const OT_CoverageFormat2
* cf2
;
695 cf2
= (const OT_CoverageFormat2
*)cf1
;
697 count
= GET_BE_WORD(cf2
->RangeCount
);
698 TRACE("Coverage Format 2, %i ranges\n",count
);
699 for (i
= 0; i
< count
; i
++)
701 if (glyph
< GET_BE_WORD(cf2
->RangeRecord
[i
].Start
))
703 if ((glyph
>= GET_BE_WORD(cf2
->RangeRecord
[i
].Start
)) &&
704 (glyph
<= GET_BE_WORD(cf2
->RangeRecord
[i
].End
)))
706 return (GET_BE_WORD(cf2
->RangeRecord
[i
].StartCoverageIndex
) +
707 glyph
- GET_BE_WORD(cf2
->RangeRecord
[i
].Start
));
713 ERR("Unknown CoverageFormat %i\n",GET_BE_WORD(cf1
->CoverageFormat
));
718 static INT
GSUB_apply_SingleSubst(const OT_LookupTable
*look
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
721 TRACE("Single Substitution Subtable\n");
723 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
726 const GSUB_SingleSubstFormat1
*ssf1
;
727 offset
= GET_BE_WORD(look
->SubTable
[j
]);
728 ssf1
= (const GSUB_SingleSubstFormat1
*)((const BYTE
*)look
+offset
);
729 if (GET_BE_WORD(ssf1
->SubstFormat
) == 1)
731 int offset
= GET_BE_WORD(ssf1
->Coverage
);
732 TRACE(" subtype 1, delta %i\n", GET_BE_WORD(ssf1
->DeltaGlyphID
));
733 if (GSUB_is_glyph_covered((const BYTE
*)ssf1
+offset
, glyphs
[glyph_index
]) != -1)
735 TRACE(" Glyph 0x%x ->",glyphs
[glyph_index
]);
736 glyphs
[glyph_index
] = glyphs
[glyph_index
] + GET_BE_WORD(ssf1
->DeltaGlyphID
);
737 TRACE(" 0x%x\n",glyphs
[glyph_index
]);
738 return glyph_index
+ write_dir
;
743 const GSUB_SingleSubstFormat2
*ssf2
;
747 ssf2
= (const GSUB_SingleSubstFormat2
*)ssf1
;
748 offset
= GET_BE_WORD(ssf1
->Coverage
);
749 TRACE(" subtype 2, glyph count %i\n", GET_BE_WORD(ssf2
->GlyphCount
));
750 index
= GSUB_is_glyph_covered((const BYTE
*)ssf2
+offset
, glyphs
[glyph_index
]);
751 TRACE(" Coverage index %i\n",index
);
754 if (glyphs
[glyph_index
] == GET_BE_WORD(ssf2
->Substitute
[index
]))
755 return GSUB_E_NOGLYPH
;
757 TRACE(" Glyph is 0x%x ->",glyphs
[glyph_index
]);
758 glyphs
[glyph_index
] = GET_BE_WORD(ssf2
->Substitute
[index
]);
759 TRACE("0x%x\n",glyphs
[glyph_index
]);
760 return glyph_index
+ write_dir
;
764 return GSUB_E_NOGLYPH
;
767 static INT
GSUB_apply_MultipleSubst(const OT_LookupTable
*look
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
770 TRACE("Multiple Substitution Subtable\n");
772 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
775 const GSUB_MultipleSubstFormat1
*msf1
;
776 offset
= GET_BE_WORD(look
->SubTable
[j
]);
777 msf1
= (const GSUB_MultipleSubstFormat1
*)((const BYTE
*)look
+offset
);
779 offset
= GET_BE_WORD(msf1
->Coverage
);
780 index
= GSUB_is_glyph_covered((const BYTE
*)msf1
+offset
, glyphs
[glyph_index
]);
783 const GSUB_Sequence
*seq
;
786 offset
= GET_BE_WORD(msf1
->Sequence
[index
]);
787 seq
= (const GSUB_Sequence
*)((const BYTE
*)msf1
+offset
);
788 sub_count
= GET_BE_WORD(seq
->GlyphCount
);
789 TRACE(" Glyph 0x%x (+%i)->",glyphs
[glyph_index
],(sub_count
-1));
791 for (j
= (*glyph_count
)+(sub_count
-1); j
> glyph_index
; j
--)
792 glyphs
[j
] =glyphs
[j
-(sub_count
-1)];
794 for (j
= 0; j
< sub_count
; j
++)
796 glyphs
[glyph_index
+ (sub_count
-1) - j
] = GET_BE_WORD(seq
->Substitute
[j
]);
798 glyphs
[glyph_index
+ j
] = GET_BE_WORD(seq
->Substitute
[j
]);
800 *glyph_count
= *glyph_count
+ (sub_count
- 1);
802 if (TRACE_ON(uniscribe
))
804 for (j
= 0; j
< sub_count
; j
++)
805 TRACE(" 0x%x",glyphs
[glyph_index
+j
]);
809 return glyph_index
+ (sub_count
* write_dir
);
812 return GSUB_E_NOGLYPH
;
815 static INT
GSUB_apply_AlternateSubst(const OT_LookupTable
*look
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
818 TRACE("Alternate Substitution Subtable\n");
820 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
823 const GSUB_AlternateSubstFormat1
*asf1
;
826 offset
= GET_BE_WORD(look
->SubTable
[j
]);
827 asf1
= (const GSUB_AlternateSubstFormat1
*)((const BYTE
*)look
+offset
);
828 offset
= GET_BE_WORD(asf1
->Coverage
);
830 index
= GSUB_is_glyph_covered((const BYTE
*)asf1
+offset
, glyphs
[glyph_index
]);
833 const GSUB_AlternateSet
*as
;
834 offset
= GET_BE_WORD(asf1
->AlternateSet
[index
]);
835 as
= (const GSUB_AlternateSet
*)((const BYTE
*)asf1
+offset
);
836 FIXME("%i alternates, picking index 0\n",GET_BE_WORD(as
->GlyphCount
));
837 if (glyphs
[glyph_index
] == GET_BE_WORD(as
->Alternate
[0]))
838 return GSUB_E_NOGLYPH
;
840 TRACE(" Glyph 0x%x ->",glyphs
[glyph_index
]);
841 glyphs
[glyph_index
] = GET_BE_WORD(as
->Alternate
[0]);
842 TRACE(" 0x%x\n",glyphs
[glyph_index
]);
843 return glyph_index
+ write_dir
;
846 return GSUB_E_NOGLYPH
;
849 static INT
GSUB_apply_LigatureSubst(const OT_LookupTable
*look
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
853 TRACE("Ligature Substitution Subtable\n");
854 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
856 const GSUB_LigatureSubstFormat1
*lsf1
;
859 offset
= GET_BE_WORD(look
->SubTable
[j
]);
860 lsf1
= (const GSUB_LigatureSubstFormat1
*)((const BYTE
*)look
+offset
);
861 offset
= GET_BE_WORD(lsf1
->Coverage
);
862 index
= GSUB_is_glyph_covered((const BYTE
*)lsf1
+offset
, glyphs
[glyph_index
]);
863 TRACE(" Coverage index %i\n",index
);
866 const GSUB_LigatureSet
*ls
;
869 offset
= GET_BE_WORD(lsf1
->LigatureSet
[index
]);
870 ls
= (const GSUB_LigatureSet
*)((const BYTE
*)lsf1
+offset
);
871 count
= GET_BE_WORD(ls
->LigatureCount
);
872 TRACE(" LigatureSet has %i members\n",count
);
873 for (k
= 0; k
< count
; k
++)
875 const GSUB_Ligature
*lig
;
876 int CompCount
,l
,CompIndex
;
878 offset
= GET_BE_WORD(ls
->Ligature
[k
]);
879 lig
= (const GSUB_Ligature
*)((const BYTE
*)ls
+offset
);
880 CompCount
= GET_BE_WORD(lig
->CompCount
) - 1;
881 CompIndex
= glyph_index
+write_dir
;
882 for (l
= 0; l
< CompCount
&& CompIndex
>= 0 && CompIndex
< *glyph_count
; l
++)
885 CompGlyph
= GET_BE_WORD(lig
->Component
[l
]);
886 if (CompGlyph
!= glyphs
[CompIndex
])
888 CompIndex
+= write_dir
;
892 int replaceIdx
= glyph_index
;
894 replaceIdx
= glyph_index
- CompCount
;
896 TRACE(" Glyph is 0x%x (+%i) ->",glyphs
[glyph_index
],CompCount
);
897 glyphs
[replaceIdx
] = GET_BE_WORD(lig
->LigGlyph
);
898 TRACE("0x%x\n",glyphs
[replaceIdx
]);
902 for (j
= replaceIdx
+ 1; j
< *glyph_count
; j
++)
903 glyphs
[j
] =glyphs
[j
+CompCount
];
904 *glyph_count
= *glyph_count
- CompCount
;
906 return replaceIdx
+ write_dir
;
911 return GSUB_E_NOGLYPH
;
914 static INT
GSUB_apply_ChainContextSubst(const OT_LookupList
* lookup
, const OT_LookupTable
*look
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
918 TRACE("Chaining Contextual Substitution Subtable\n");
919 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
921 const GSUB_ChainContextSubstFormat1
*ccsf1
;
923 int dirLookahead
= write_dir
;
924 int dirBacktrack
= -1 * write_dir
;
926 offset
= GET_BE_WORD(look
->SubTable
[j
]);
927 ccsf1
= (const GSUB_ChainContextSubstFormat1
*)((const BYTE
*)look
+offset
);
928 if (GET_BE_WORD(ccsf1
->SubstFormat
) == 1)
932 FIXME(" TODO: subtype 1 (Simple context glyph substitution)\n");
935 else if (GET_BE_WORD(ccsf1
->SubstFormat
) == 2)
939 FIXME(" TODO: subtype 2 (Class-based Chaining Context Glyph Substitution)\n");
942 else if (GET_BE_WORD(ccsf1
->SubstFormat
) == 3)
946 const GSUB_ChainContextSubstFormat3_1
*ccsf3_1
;
947 const GSUB_ChainContextSubstFormat3_2
*ccsf3_2
;
948 const GSUB_ChainContextSubstFormat3_3
*ccsf3_3
;
949 const GSUB_ChainContextSubstFormat3_4
*ccsf3_4
;
950 int newIndex
= glyph_index
;
952 ccsf3_1
= (const GSUB_ChainContextSubstFormat3_1
*)ccsf1
;
954 TRACE(" subtype 3 (Coverage-based Chaining Context Glyph Substitution)\n");
956 for (k
= 0; k
< GET_BE_WORD(ccsf3_1
->BacktrackGlyphCount
); k
++)
958 offset
= GET_BE_WORD(ccsf3_1
->Coverage
[k
]);
959 if (GSUB_is_glyph_covered((const BYTE
*)ccsf3_1
+offset
, glyphs
[glyph_index
+ (dirBacktrack
* (k
+1))]) == -1)
962 if (k
!= GET_BE_WORD(ccsf3_1
->BacktrackGlyphCount
))
964 TRACE("Matched Backtrack\n");
966 ccsf3_2
= (const GSUB_ChainContextSubstFormat3_2
*)((BYTE
*)ccsf1
+
967 FIELD_OFFSET(GSUB_ChainContextSubstFormat3_1
, Coverage
[GET_BE_WORD(ccsf3_1
->BacktrackGlyphCount
)]));
969 indexGlyphs
= GET_BE_WORD(ccsf3_2
->InputGlyphCount
);
970 for (k
= 0; k
< indexGlyphs
; k
++)
972 offset
= GET_BE_WORD(ccsf3_2
->Coverage
[k
]);
973 if (GSUB_is_glyph_covered((const BYTE
*)ccsf3_1
+offset
, glyphs
[glyph_index
+ (write_dir
* k
)]) == -1)
976 if (k
!= indexGlyphs
)
978 TRACE("Matched IndexGlyphs\n");
980 ccsf3_3
= (const GSUB_ChainContextSubstFormat3_3
*)((BYTE
*)ccsf3_2
+
981 FIELD_OFFSET(GSUB_ChainContextSubstFormat3_2
, Coverage
[GET_BE_WORD(ccsf3_2
->InputGlyphCount
)]));
983 for (k
= 0; k
< GET_BE_WORD(ccsf3_3
->LookaheadGlyphCount
); k
++)
985 offset
= GET_BE_WORD(ccsf3_3
->Coverage
[k
]);
986 if (GSUB_is_glyph_covered((const BYTE
*)ccsf3_1
+offset
, glyphs
[glyph_index
+ (dirLookahead
* (indexGlyphs
+ k
))]) == -1)
989 if (k
!= GET_BE_WORD(ccsf3_3
->LookaheadGlyphCount
))
991 TRACE("Matched LookAhead\n");
993 ccsf3_4
= (const GSUB_ChainContextSubstFormat3_4
*)((BYTE
*)ccsf3_3
+
994 FIELD_OFFSET(GSUB_ChainContextSubstFormat3_3
, Coverage
[GET_BE_WORD(ccsf3_3
->LookaheadGlyphCount
)]));
996 if (GET_BE_WORD(ccsf3_4
->SubstCount
))
998 for (k
= 0; k
< GET_BE_WORD(ccsf3_4
->SubstCount
); k
++)
1000 int lookupIndex
= GET_BE_WORD(ccsf3_4
->SubstLookupRecord
[k
].LookupListIndex
);
1001 int SequenceIndex
= GET_BE_WORD(ccsf3_4
->SubstLookupRecord
[k
].SequenceIndex
) * write_dir
;
1003 TRACE("SUBST: %i -> %i %i\n",k
, SequenceIndex
, lookupIndex
);
1004 newIndex
= GSUB_apply_lookup(lookup
, lookupIndex
, glyphs
, glyph_index
+ SequenceIndex
, write_dir
, glyph_count
);
1007 ERR("Chain failed to generate a glyph\n");
1013 else return GSUB_E_NOGLYPH
;
1019 static INT
GSUB_apply_lookup(const OT_LookupList
* lookup
, INT lookup_index
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
1022 const OT_LookupTable
*look
;
1024 offset
= GET_BE_WORD(lookup
->Lookup
[lookup_index
]);
1025 look
= (const OT_LookupTable
*)((const BYTE
*)lookup
+ offset
);
1026 TRACE("type %i, flag %x, subtables %i\n",GET_BE_WORD(look
->LookupType
),GET_BE_WORD(look
->LookupFlag
),GET_BE_WORD(look
->SubTableCount
));
1027 switch(GET_BE_WORD(look
->LookupType
))
1030 return GSUB_apply_SingleSubst(look
, glyphs
, glyph_index
, write_dir
, glyph_count
);
1032 return GSUB_apply_MultipleSubst(look
, glyphs
, glyph_index
, write_dir
, glyph_count
);
1034 return GSUB_apply_AlternateSubst(look
, glyphs
, glyph_index
, write_dir
, glyph_count
);
1036 return GSUB_apply_LigatureSubst(look
, glyphs
, glyph_index
, write_dir
, glyph_count
);
1038 return GSUB_apply_ChainContextSubst(lookup
, look
, glyphs
, glyph_index
, write_dir
, glyph_count
);
1040 FIXME("We do not handle SubType %i\n",GET_BE_WORD(look
->LookupType
));
1042 return GSUB_E_NOGLYPH
;
1045 INT
OpenType_apply_GSUB_lookup(LPCVOID table
, INT lookup_index
, WORD
*glyphs
, INT glyph_index
, INT write_dir
, INT
*glyph_count
)
1047 const GSUB_Header
*header
= (const GSUB_Header
*)table
;
1048 const OT_LookupList
*lookup
= (const OT_LookupList
*)((const BYTE
*)header
+ GET_BE_WORD(header
->LookupList
));
1050 return GSUB_apply_lookup(lookup
, lookup_index
, glyphs
, glyph_index
, write_dir
, glyph_count
);
1056 static INT
GPOS_apply_lookup(ScriptCache
*psc
, LPOUTLINETEXTMETRICW lpotm
, LPLOGFONTW lplogfont
, const SCRIPT_ANALYSIS
*analysis
, INT
* piAdvance
,
1057 const OT_LookupList
* lookup
, INT lookup_index
, const WORD
*glyphs
, INT glyph_index
, INT glyph_count
, GOFFSET
*pGoffset
);
1059 static INT
GPOS_get_device_table_value(const OT_DeviceTable
*DeviceTable
, WORD ppem
)
1061 static const WORD mask
[3] = {3,0xf,0xff};
1062 if (DeviceTable
&& ppem
>= GET_BE_WORD(DeviceTable
->StartSize
) && ppem
<= GET_BE_WORD(DeviceTable
->EndSize
))
1064 int format
= GET_BE_WORD(DeviceTable
->DeltaFormat
);
1065 int index
= ppem
- GET_BE_WORD(DeviceTable
->StartSize
);
1067 TRACE("device table, format %i, index %i\n",format
, index
);
1068 index
= index
<< format
;
1069 value
= (DeviceTable
->DeltaValue
[index
/sizeof(WORD
)] << (index
%sizeof(WORD
)))&mask
[format
-1];
1070 TRACE("offset %i, value %i\n",index
, value
);
1071 if (value
> mask
[format
-1]/2)
1072 value
= -1 * ((mask
[format
-1]+1) - value
);
1078 static VOID
GPOS_get_anchor_values(LPCVOID table
, LPPOINT pt
, WORD ppem
)
1080 const GPOS_AnchorFormat1
* anchor1
= (const GPOS_AnchorFormat1
*)table
;
1082 switch (GET_BE_WORD(anchor1
->AnchorFormat
))
1086 TRACE("Anchor Format 1\n");
1087 pt
->x
= (short)GET_BE_WORD(anchor1
->XCoordinate
);
1088 pt
->y
= (short)GET_BE_WORD(anchor1
->YCoordinate
);
1093 const GPOS_AnchorFormat2
* anchor2
= (const GPOS_AnchorFormat2
*)table
;
1094 TRACE("Anchor Format 2\n");
1095 pt
->x
= (short)GET_BE_WORD(anchor2
->XCoordinate
);
1096 pt
->y
= (short)GET_BE_WORD(anchor2
->YCoordinate
);
1102 const GPOS_AnchorFormat3
* anchor3
= (const GPOS_AnchorFormat3
*)table
;
1103 TRACE("Anchor Format 3\n");
1104 pt
->x
= (short)GET_BE_WORD(anchor3
->XCoordinate
);
1105 pt
->y
= (short)GET_BE_WORD(anchor3
->YCoordinate
);
1106 offset
= GET_BE_WORD(anchor3
->XDeviceTable
);
1107 TRACE("ppem %i\n",ppem
);
1110 const OT_DeviceTable
* DeviceTableX
= NULL
;
1111 DeviceTableX
= (const OT_DeviceTable
*)((const BYTE
*)anchor3
+ offset
);
1112 pt
->x
+= GPOS_get_device_table_value(DeviceTableX
, ppem
);
1114 offset
= GET_BE_WORD(anchor3
->YDeviceTable
);
1117 const OT_DeviceTable
* DeviceTableY
= NULL
;
1118 DeviceTableY
= (const OT_DeviceTable
*)((const BYTE
*)anchor3
+ offset
);
1119 pt
->y
+= GPOS_get_device_table_value(DeviceTableY
, ppem
);
1124 ERR("Unknown Anchor Format %i\n",GET_BE_WORD(anchor1
->AnchorFormat
));
1130 static void GPOS_convert_design_units_to_device(LPOUTLINETEXTMETRICW lpotm
, LPLOGFONTW lplogfont
, int desX
, int desY
, double *devX
, double *devY
)
1132 int emHeight
= lpotm
->otmTextMetrics
.tmAscent
+ lpotm
->otmTextMetrics
.tmDescent
- lpotm
->otmTextMetrics
.tmInternalLeading
;
1134 TRACE("emHeight %i lfWidth %i\n",emHeight
, lplogfont
->lfWidth
);
1135 *devX
= (desX
* emHeight
) / (double)lpotm
->otmEMSquare
;
1136 *devY
= (desY
* emHeight
) / (double)lpotm
->otmEMSquare
;
1137 if (lplogfont
->lfWidth
)
1138 FIXME("Font with lfWidth set no handled properly\n");
1141 static INT
GPOS_get_value_record(WORD ValueFormat
, const WORD data
[], GPOS_ValueRecord
*record
)
1144 if (ValueFormat
& 0x0001) { if (data
) record
->XPlacement
= GET_BE_WORD(data
[offset
]); offset
++; }
1145 if (ValueFormat
& 0x0002) { if (data
) record
->YPlacement
= GET_BE_WORD(data
[offset
]); offset
++; }
1146 if (ValueFormat
& 0x0004) { if (data
) record
->XAdvance
= GET_BE_WORD(data
[offset
]); offset
++; }
1147 if (ValueFormat
& 0x0008) { if (data
) record
->YAdvance
= GET_BE_WORD(data
[offset
]); offset
++; }
1148 if (ValueFormat
& 0x0010) { if (data
) record
->XPlaDevice
= GET_BE_WORD(data
[offset
]); offset
++; }
1149 if (ValueFormat
& 0x0020) { if (data
) record
->YPlaDevice
= GET_BE_WORD(data
[offset
]); offset
++; }
1150 if (ValueFormat
& 0x0040) { if (data
) record
->XAdvDevice
= GET_BE_WORD(data
[offset
]); offset
++; }
1151 if (ValueFormat
& 0x0080) { if (data
) record
->YAdvDevice
= GET_BE_WORD(data
[offset
]); offset
++; }
1155 static VOID
GPOS_get_value_record_offsets(const BYTE
* head
, GPOS_ValueRecord
*ValueRecord
, WORD ValueFormat
, INT ppem
, LPPOINT ptPlacement
, LPPOINT ptAdvance
)
1157 if (ValueFormat
& 0x0001) ptPlacement
->x
+= (short)ValueRecord
->XPlacement
;
1158 if (ValueFormat
& 0x0002) ptPlacement
->y
+= (short)ValueRecord
->YPlacement
;
1159 if (ValueFormat
& 0x0004) ptAdvance
->x
+= (short)ValueRecord
->XAdvance
;
1160 if (ValueFormat
& 0x0008) ptAdvance
->y
+= (short)ValueRecord
->YAdvance
;
1161 if (ValueFormat
& 0x0010) ptPlacement
->x
+= GPOS_get_device_table_value((const OT_DeviceTable
*)(head
+ ValueRecord
->XPlaDevice
), ppem
);
1162 if (ValueFormat
& 0x0020) ptPlacement
->y
+= GPOS_get_device_table_value((const OT_DeviceTable
*)(head
+ ValueRecord
->YPlaDevice
), ppem
);
1163 if (ValueFormat
& 0x0040) ptAdvance
->x
+= GPOS_get_device_table_value((const OT_DeviceTable
*)(head
+ ValueRecord
->XAdvDevice
), ppem
);
1164 if (ValueFormat
& 0x0080) ptAdvance
->y
+= GPOS_get_device_table_value((const OT_DeviceTable
*)(head
+ ValueRecord
->YAdvDevice
), ppem
);
1165 if (ValueFormat
& 0xFF00) FIXME("Unhandled Value Format %x\n",ValueFormat
&0xFF00);
1168 static const BYTE
*GPOS_get_subtable(const OT_LookupTable
*look
, int index
)
1170 int offset
= GET_BE_WORD(look
->SubTable
[index
]);
1172 if (GET_BE_WORD(look
->LookupType
) == 9)
1174 const GPOS_ExtensionPosFormat1
*ext
= (const GPOS_ExtensionPosFormat1
*)((const BYTE
*)look
+ offset
);
1175 if (GET_BE_WORD(ext
->PosFormat
) == 1)
1177 offset
+= GET_BE_DWORD(ext
->ExtensionOffset
);
1181 FIXME("Unhandled Extension Positioning Format %i\n",GET_BE_WORD(ext
->PosFormat
));
1184 return (const BYTE
*)look
+ offset
;
1187 static VOID
GPOS_apply_SingleAdjustment(const OT_LookupTable
*look
, const SCRIPT_ANALYSIS
*analysis
, const WORD
*glyphs
, INT glyph_index
,
1188 INT glyph_count
, INT ppem
, LPPOINT ptAdjust
, LPPOINT ptAdvance
)
1192 TRACE("Single Adjustment Positioning Subtable\n");
1194 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1196 const GPOS_SinglePosFormat1
*spf1
= (const GPOS_SinglePosFormat1
*)GPOS_get_subtable(look
, j
);
1198 if (GET_BE_WORD(spf1
->PosFormat
) == 1)
1200 offset
= GET_BE_WORD(spf1
->Coverage
);
1201 if (GSUB_is_glyph_covered((const BYTE
*)spf1
+offset
, glyphs
[glyph_index
]) != -1)
1203 GPOS_ValueRecord ValueRecord
= {0,0,0,0,0,0,0,0};
1204 WORD ValueFormat
= GET_BE_WORD(spf1
->ValueFormat
);
1205 GPOS_get_value_record(ValueFormat
, spf1
->Value
, &ValueRecord
);
1206 GPOS_get_value_record_offsets((const BYTE
*)spf1
, &ValueRecord
, ValueFormat
, ppem
, ptAdjust
, ptAdvance
);
1207 TRACE("Glyph Adjusted by %i,%i\n",ValueRecord
.XPlacement
,ValueRecord
.YPlacement
);
1210 else if (GET_BE_WORD(spf1
->PosFormat
) == 2)
1213 const GPOS_SinglePosFormat2
*spf2
;
1214 spf2
= (const GPOS_SinglePosFormat2
*)spf1
;
1215 offset
= GET_BE_WORD(spf2
->Coverage
);
1216 index
= GSUB_is_glyph_covered((const BYTE
*)spf2
+offset
, glyphs
[glyph_index
]);
1220 GPOS_ValueRecord ValueRecord
= {0,0,0,0,0,0,0,0};
1221 WORD ValueFormat
= GET_BE_WORD(spf2
->ValueFormat
);
1222 size
= GPOS_get_value_record(ValueFormat
, spf2
->Value
, &ValueRecord
);
1225 offset
= size
* index
;
1226 GPOS_get_value_record(ValueFormat
, &spf2
->Value
[offset
], &ValueRecord
);
1228 GPOS_get_value_record_offsets((const BYTE
*)spf2
, &ValueRecord
, ValueFormat
, ppem
, ptAdjust
, ptAdvance
);
1229 TRACE("Glyph Adjusted by %i,%i\n",ValueRecord
.XPlacement
,ValueRecord
.YPlacement
);
1233 FIXME("Single Adjustment Positioning: Format %i Unhandled\n",GET_BE_WORD(spf1
->PosFormat
));
1237 static void apply_pair_value( const void *pos_table
, WORD val_fmt1
, WORD val_fmt2
, const WORD
*pair
,
1238 INT ppem
, POINT
*adjust
, POINT
*advance
)
1240 GPOS_ValueRecord val_rec1
= {0,0,0,0,0,0,0,0};
1241 GPOS_ValueRecord val_rec2
= {0,0,0,0,0,0,0,0};
1244 size
= GPOS_get_value_record( val_fmt1
, pair
, &val_rec1
);
1245 GPOS_get_value_record( val_fmt2
, pair
+ size
, &val_rec2
);
1249 GPOS_get_value_record_offsets( pos_table
, &val_rec1
, val_fmt1
, ppem
, adjust
, advance
);
1250 TRACE( "Glyph 1 resulting cumulative offset is %i,%i design units\n", adjust
[0].x
, adjust
[0].y
);
1251 TRACE( "Glyph 1 resulting cumulative advance is %i,%i design units\n", advance
[0].x
, advance
[0].y
);
1255 GPOS_get_value_record_offsets( pos_table
, &val_rec2
, val_fmt2
, ppem
, adjust
+ 1, advance
+ 1 );
1256 TRACE( "Glyph 2 resulting cumulative offset is %i,%i design units\n", adjust
[1].x
, adjust
[1].y
);
1257 TRACE( "Glyph 2 resulting cumulative advance is %i,%i design units\n", advance
[1].x
, advance
[1].y
);
1261 static INT
GPOS_apply_PairAdjustment(const OT_LookupTable
*look
, const SCRIPT_ANALYSIS
*analysis
, const WORD
*glyphs
, INT glyph_index
,
1262 INT glyph_count
, INT ppem
, LPPOINT ptAdjust
, LPPOINT ptAdvance
)
1265 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1267 if (glyph_index
+ write_dir
< 0 || glyph_index
+ write_dir
>= glyph_count
) return glyph_index
+ 1;
1269 TRACE("Pair Adjustment Positioning Subtable\n");
1271 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1273 const GPOS_PairPosFormat1
*ppf1
= (const GPOS_PairPosFormat1
*)GPOS_get_subtable(look
, j
);
1275 if (GET_BE_WORD(ppf1
->PosFormat
) == 1)
1278 WORD ValueFormat1
= GET_BE_WORD(ppf1
->ValueFormat1
);
1279 WORD ValueFormat2
= GET_BE_WORD(ppf1
->ValueFormat2
);
1280 INT val_fmt1_size
= GPOS_get_value_record( ValueFormat1
, NULL
, NULL
);
1281 INT val_fmt2_size
= GPOS_get_value_record( ValueFormat2
, NULL
, NULL
);
1282 offset
= GET_BE_WORD(ppf1
->Coverage
);
1283 index
= GSUB_is_glyph_covered((const BYTE
*)ppf1
+offset
, glyphs
[glyph_index
]);
1284 if (index
!= -1 && index
< GET_BE_WORD(ppf1
->PairSetCount
))
1288 const GPOS_PairSet
*ps
;
1289 const GPOS_PairValueRecord
*pair_val_rec
;
1290 offset
= GET_BE_WORD(ppf1
->PairSetOffset
[index
]);
1291 ps
= (const GPOS_PairSet
*)((const BYTE
*)ppf1
+offset
);
1292 pair_count
= GET_BE_WORD(ps
->PairValueCount
);
1293 pair_val_rec
= ps
->PairValueRecord
;
1294 for (k
= 0; k
< pair_count
; k
++)
1296 WORD second_glyph
= GET_BE_WORD(pair_val_rec
->SecondGlyph
);
1297 if (glyphs
[glyph_index
+write_dir
] == second_glyph
)
1300 TRACE("Format 1: Found Pair %x,%x\n",glyphs
[glyph_index
],glyphs
[glyph_index
+write_dir
]);
1301 apply_pair_value( ppf1
, ValueFormat1
, ValueFormat2
, pair_val_rec
->Value1
, ppem
, ptAdjust
, ptAdvance
);
1302 if (ValueFormat2
) next
++;
1303 return glyph_index
+ next
;
1305 pair_val_rec
= (const GPOS_PairValueRecord
*)(pair_val_rec
->Value1
+ val_fmt1_size
+ val_fmt2_size
);
1309 else if (GET_BE_WORD(ppf1
->PosFormat
) == 2)
1311 const GPOS_PairPosFormat2
*ppf2
= (const GPOS_PairPosFormat2
*)ppf1
;
1313 WORD ValueFormat1
= GET_BE_WORD( ppf2
->ValueFormat1
);
1314 WORD ValueFormat2
= GET_BE_WORD( ppf2
->ValueFormat2
);
1315 INT val_fmt1_size
= GPOS_get_value_record( ValueFormat1
, NULL
, NULL
);
1316 INT val_fmt2_size
= GPOS_get_value_record( ValueFormat2
, NULL
, NULL
);
1317 WORD class1_count
= GET_BE_WORD( ppf2
->Class1Count
);
1318 WORD class2_count
= GET_BE_WORD( ppf2
->Class2Count
);
1320 offset
= GET_BE_WORD( ppf2
->Coverage
);
1321 index
= GSUB_is_glyph_covered( (const BYTE
*)ppf2
+ offset
, glyphs
[glyph_index
] );
1324 WORD class1
, class2
;
1325 class1
= OT_get_glyph_class( (const BYTE
*)ppf2
+ GET_BE_WORD(ppf2
->ClassDef1
), glyphs
[glyph_index
] );
1326 class2
= OT_get_glyph_class( (const BYTE
*)ppf2
+ GET_BE_WORD(ppf2
->ClassDef2
), glyphs
[glyph_index
+ write_dir
] );
1327 if (class1
< class1_count
&& class2
< class2_count
)
1329 const WORD
*pair_val
= ppf2
->Class1Record
+ (class1
* class2_count
+ class2
) * (val_fmt1_size
+ val_fmt2_size
);
1332 TRACE( "Format 2: Found Pair %x,%x\n", glyphs
[glyph_index
], glyphs
[glyph_index
+ write_dir
] );
1334 apply_pair_value( ppf2
, ValueFormat1
, ValueFormat2
, pair_val
, ppem
, ptAdjust
, ptAdvance
);
1335 if (ValueFormat2
) next
++;
1336 return glyph_index
+ next
;
1341 FIXME("Pair Adjustment Positioning: Format %i Unhandled\n",GET_BE_WORD(ppf1
->PosFormat
));
1343 return glyph_index
+1;
1346 static VOID
GPOS_apply_CursiveAttachment(const OT_LookupTable
*look
, const SCRIPT_ANALYSIS
*analysis
, const WORD
*glyphs
, INT glyph_index
,
1347 INT glyph_count
, INT ppem
, LPPOINT pt
)
1350 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1352 if (glyph_index
+ write_dir
< 0 || glyph_index
+ write_dir
>= glyph_count
) return;
1354 TRACE("Cursive Attachment Positioning Subtable\n");
1356 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1358 const GPOS_CursivePosFormat1
*cpf1
= (const GPOS_CursivePosFormat1
*)GPOS_get_subtable(look
, j
);
1359 if (GET_BE_WORD(cpf1
->PosFormat
) == 1)
1361 int index_exit
, index_entry
;
1362 WORD offset
= GET_BE_WORD( cpf1
->Coverage
);
1363 index_exit
= GSUB_is_glyph_covered((const BYTE
*)cpf1
+offset
, glyphs
[glyph_index
]);
1364 if (index_exit
!= -1 && cpf1
->EntryExitRecord
[index_exit
].ExitAnchor
!= 0)
1366 index_entry
= GSUB_is_glyph_covered((const BYTE
*)cpf1
+offset
, glyphs
[glyph_index
+write_dir
]);
1367 if (index_entry
!= -1 && cpf1
->EntryExitRecord
[index_entry
].EntryAnchor
!= 0)
1369 POINT exit_pt
, entry_pt
;
1370 offset
= GET_BE_WORD(cpf1
->EntryExitRecord
[index_exit
].ExitAnchor
);
1371 GPOS_get_anchor_values((const BYTE
*)cpf1
+ offset
, &exit_pt
, ppem
);
1372 offset
= GET_BE_WORD(cpf1
->EntryExitRecord
[index_entry
].EntryAnchor
);
1373 GPOS_get_anchor_values((const BYTE
*)cpf1
+ offset
, &entry_pt
, ppem
);
1374 TRACE("Found linkage %x[%i,%i] %x[%i,%i]\n",glyphs
[glyph_index
], exit_pt
.x
,exit_pt
.y
, glyphs
[glyph_index
+write_dir
], entry_pt
.x
, entry_pt
.y
);
1375 pt
->x
= entry_pt
.x
- exit_pt
.x
;
1376 pt
->y
= entry_pt
.y
- exit_pt
.y
;
1382 FIXME("Cursive Attachment Positioning: Format %i Unhandled\n",GET_BE_WORD(cpf1
->PosFormat
));
1387 static int GPOS_apply_MarkToBase(ScriptCache
*psc
, const OT_LookupTable
*look
, const SCRIPT_ANALYSIS
*analysis
, const WORD
*glyphs
, INT glyph_index
, INT glyph_count
, INT ppem
, LPPOINT pt
)
1390 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1391 void *glyph_class_table
= NULL
;
1394 if (psc
->GDEF_Table
)
1396 const GDEF_Header
*header
= psc
->GDEF_Table
;
1397 WORD offset
= GET_BE_WORD( header
->GlyphClassDef
);
1399 glyph_class_table
= (BYTE
*)psc
->GDEF_Table
+ offset
;
1402 TRACE("MarkToBase Attachment Positioning Subtable\n");
1404 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1406 const GPOS_MarkBasePosFormat1
*mbpf1
= (const GPOS_MarkBasePosFormat1
*)GPOS_get_subtable(look
, j
);
1407 if (GET_BE_WORD(mbpf1
->PosFormat
) == 1)
1409 int offset
= GET_BE_WORD(mbpf1
->MarkCoverage
);
1411 mark_index
= GSUB_is_glyph_covered((const BYTE
*)mbpf1
+offset
, glyphs
[glyph_index
]);
1412 if (mark_index
!= -1)
1415 int base_glyph
= glyph_index
- write_dir
;
1417 if (glyph_class_table
)
1419 while (OT_get_glyph_class(glyph_class_table
, glyphs
[base_glyph
]) == MarkGlyph
&& base_glyph
> 0 && base_glyph
< glyph_count
)
1420 base_glyph
-= write_dir
;
1423 offset
= GET_BE_WORD(mbpf1
->BaseCoverage
);
1424 base_index
= GSUB_is_glyph_covered((const BYTE
*)mbpf1
+offset
, glyphs
[base_glyph
]);
1425 if (base_index
!= -1)
1427 const GPOS_MarkArray
*ma
;
1428 const GPOS_MarkRecord
*mr
;
1429 const GPOS_BaseArray
*ba
;
1430 const GPOS_BaseRecord
*br
;
1432 int class_count
= GET_BE_WORD(mbpf1
->ClassCount
);
1433 int baserecord_size
;
1436 TRACE("Mark %x(%i) and base %x(%i)\n",glyphs
[glyph_index
], mark_index
, glyphs
[base_glyph
], base_index
);
1437 offset
= GET_BE_WORD(mbpf1
->MarkArray
);
1438 ma
= (const GPOS_MarkArray
*)((const BYTE
*)mbpf1
+ offset
);
1439 if (mark_index
> GET_BE_WORD(ma
->MarkCount
))
1441 ERR("Mark index exeeded mark count\n");
1444 mr
= &ma
->MarkRecord
[mark_index
];
1445 mark_class
= GET_BE_WORD(mr
->Class
);
1446 TRACE("Mark Class %i total classes %i\n",mark_class
,class_count
);
1447 offset
= GET_BE_WORD(mbpf1
->BaseArray
);
1448 ba
= (const GPOS_BaseArray
*)((const BYTE
*)mbpf1
+ offset
);
1449 baserecord_size
= class_count
* sizeof(WORD
);
1450 br
= (const GPOS_BaseRecord
*)((const BYTE
*)ba
+ sizeof(WORD
) + (baserecord_size
* base_index
));
1451 offset
= GET_BE_WORD(br
->BaseAnchor
[mark_class
]);
1452 GPOS_get_anchor_values((const BYTE
*)ba
+ offset
, &base_pt
, ppem
);
1453 offset
= GET_BE_WORD(mr
->MarkAnchor
);
1454 GPOS_get_anchor_values((const BYTE
*)ma
+ offset
, &mark_pt
, ppem
);
1455 TRACE("Offset on base is %i,%i design units\n",base_pt
.x
,base_pt
.y
);
1456 TRACE("Offset on mark is %i,%i design units\n",mark_pt
.x
, mark_pt
.y
);
1457 pt
->x
+= base_pt
.x
- mark_pt
.x
;
1458 pt
->y
+= base_pt
.y
- mark_pt
.y
;
1459 TRACE("Resulting cumulative offset is %i,%i design units\n",pt
->x
,pt
->y
);
1465 FIXME("Unhandled Mark To Base Format %i\n",GET_BE_WORD(mbpf1
->PosFormat
));
1470 static VOID
GPOS_apply_MarkToLigature(const OT_LookupTable
*look
, const SCRIPT_ANALYSIS
*analysis
, const WORD
*glyphs
, INT glyph_index
,
1471 INT glyph_count
, INT ppem
, LPPOINT pt
)
1474 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1476 TRACE("MarkToLigature Attachment Positioning Subtable\n");
1478 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1480 const GPOS_MarkLigPosFormat1
*mlpf1
= (const GPOS_MarkLigPosFormat1
*)GPOS_get_subtable(look
, j
);
1481 if (GET_BE_WORD(mlpf1
->PosFormat
) == 1)
1483 int offset
= GET_BE_WORD(mlpf1
->MarkCoverage
);
1485 mark_index
= GSUB_is_glyph_covered((const BYTE
*)mlpf1
+offset
, glyphs
[glyph_index
]);
1486 if (mark_index
!= -1)
1489 offset
= GET_BE_WORD(mlpf1
->LigatureCoverage
);
1490 ligature_index
= GSUB_is_glyph_covered((const BYTE
*)mlpf1
+offset
, glyphs
[glyph_index
- write_dir
]);
1491 if (ligature_index
!= -1)
1493 const GPOS_MarkArray
*ma
;
1494 const GPOS_MarkRecord
*mr
;
1496 const GPOS_LigatureArray
*la
;
1497 const GPOS_LigatureAttach
*lt
;
1499 int class_count
= GET_BE_WORD(mlpf1
->ClassCount
);
1500 int component_count
;
1506 TRACE("Mark %x(%i) and ligature %x(%i)\n",glyphs
[glyph_index
], mark_index
, glyphs
[glyph_index
- write_dir
], ligature_index
);
1507 offset
= GET_BE_WORD(mlpf1
->MarkArray
);
1508 ma
= (const GPOS_MarkArray
*)((const BYTE
*)mlpf1
+ offset
);
1509 if (mark_index
> GET_BE_WORD(ma
->MarkCount
))
1511 ERR("Mark index exeeded mark count\n");
1514 mr
= &ma
->MarkRecord
[mark_index
];
1515 mark_class
= GET_BE_WORD(mr
->Class
);
1516 TRACE("Mark Class %i total classes %i\n",mark_class
,class_count
);
1517 offset
= GET_BE_WORD(mlpf1
->LigatureArray
);
1518 la
= (const GPOS_LigatureArray
*)((const BYTE
*)mlpf1
+ offset
);
1519 if (ligature_index
> GET_BE_WORD(la
->LigatureCount
))
1521 ERR("Ligature index exeeded ligature count\n");
1524 offset
= GET_BE_WORD(la
->LigatureAttach
[ligature_index
]);
1525 lt
= (const GPOS_LigatureAttach
*)((const BYTE
*)la
+ offset
);
1527 component_count
= GET_BE_WORD(lt
->ComponentCount
);
1528 component_size
= class_count
* sizeof(WORD
);
1530 for (i
= 0; i
< component_count
&& !offset
; i
++)
1533 const GPOS_ComponentRecord
*cr
= (const GPOS_ComponentRecord
*)((const BYTE
*)lt
->ComponentRecord
+ (component_size
* i
));
1534 for (k
= 0; k
< class_count
&& !offset
; k
++)
1535 offset
= GET_BE_WORD(cr
->LigatureAnchor
[k
]);
1536 cr
= (const GPOS_ComponentRecord
*)((const BYTE
*)cr
+ component_size
);
1540 ERR("Failed to find avalible ligature connection point\n");
1544 GPOS_get_anchor_values((const BYTE
*)lt
+ offset
, &ligature_pt
, ppem
);
1545 offset
= GET_BE_WORD(mr
->MarkAnchor
);
1546 GPOS_get_anchor_values((const BYTE
*)ma
+ offset
, &mark_pt
, ppem
);
1547 TRACE("Offset on ligature is %i,%i design units\n",ligature_pt
.x
,ligature_pt
.y
);
1548 TRACE("Offset on mark is %i,%i design units\n",mark_pt
.x
, mark_pt
.y
);
1549 pt
->x
+= ligature_pt
.x
- mark_pt
.x
;
1550 pt
->y
+= ligature_pt
.y
- mark_pt
.y
;
1551 TRACE("Resulting cumulative offset is %i,%i design units\n",pt
->x
,pt
->y
);
1556 FIXME("Unhandled Mark To Ligature Format %i\n",GET_BE_WORD(mlpf1
->PosFormat
));
1560 static BOOL
GPOS_apply_MarkToMark(const OT_LookupTable
*look
, const SCRIPT_ANALYSIS
*analysis
, const WORD
*glyphs
, INT glyph_index
,
1561 INT glyph_count
, INT ppem
, LPPOINT pt
)
1565 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1567 TRACE("MarkToMark Attachment Positioning Subtable\n");
1569 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1571 const GPOS_MarkMarkPosFormat1
*mmpf1
= (const GPOS_MarkMarkPosFormat1
*)GPOS_get_subtable(look
, j
);
1572 if (GET_BE_WORD(mmpf1
->PosFormat
) == 1)
1574 int offset
= GET_BE_WORD(mmpf1
->Mark1Coverage
);
1576 mark_index
= GSUB_is_glyph_covered((const BYTE
*)mmpf1
+offset
, glyphs
[glyph_index
]);
1577 if (mark_index
!= -1)
1580 offset
= GET_BE_WORD(mmpf1
->Mark2Coverage
);
1581 mark2_index
= GSUB_is_glyph_covered((const BYTE
*)mmpf1
+offset
, glyphs
[glyph_index
- write_dir
]);
1582 if (mark2_index
!= -1)
1584 const GPOS_MarkArray
*ma
;
1585 const GPOS_MarkRecord
*mr
;
1586 const GPOS_Mark2Array
*m2a
;
1587 const GPOS_Mark2Record
*m2r
;
1589 int class_count
= GET_BE_WORD(mmpf1
->ClassCount
);
1590 int mark2record_size
;
1593 TRACE("Mark %x(%i) and Mark2 %x(%i)\n",glyphs
[glyph_index
], mark_index
, glyphs
[glyph_index
- write_dir
], mark2_index
);
1594 offset
= GET_BE_WORD(mmpf1
->Mark1Array
);
1595 ma
= (const GPOS_MarkArray
*)((const BYTE
*)mmpf1
+ offset
);
1596 if (mark_index
> GET_BE_WORD(ma
->MarkCount
))
1598 ERR("Mark index exceeded mark count\n");
1601 mr
= &ma
->MarkRecord
[mark_index
];
1602 mark_class
= GET_BE_WORD(mr
->Class
);
1603 TRACE("Mark Class %i total classes %i\n",mark_class
,class_count
);
1604 offset
= GET_BE_WORD(mmpf1
->Mark2Array
);
1605 m2a
= (const GPOS_Mark2Array
*)((const BYTE
*)mmpf1
+ offset
);
1606 mark2record_size
= class_count
* sizeof(WORD
);
1607 m2r
= (const GPOS_Mark2Record
*)((const BYTE
*)m2a
+ sizeof(WORD
) + (mark2record_size
* mark2_index
));
1608 offset
= GET_BE_WORD(m2r
->Mark2Anchor
[mark_class
]);
1609 GPOS_get_anchor_values((const BYTE
*)m2a
+ offset
, &mark2_pt
, ppem
);
1610 offset
= GET_BE_WORD(mr
->MarkAnchor
);
1611 GPOS_get_anchor_values((const BYTE
*)ma
+ offset
, &mark_pt
, ppem
);
1612 TRACE("Offset on mark2 is %i,%i design units\n",mark2_pt
.x
,mark2_pt
.y
);
1613 TRACE("Offset on mark is %i,%i design units\n",mark_pt
.x
, mark_pt
.y
);
1614 pt
->x
+= mark2_pt
.x
- mark_pt
.x
;
1615 pt
->y
+= mark2_pt
.y
- mark_pt
.y
;
1616 TRACE("Resulting cumulative offset is %i,%i design units\n",pt
->x
,pt
->y
);
1622 FIXME("Unhandled Mark To Mark Format %i\n",GET_BE_WORD(mmpf1
->PosFormat
));
1627 static INT
GPOS_apply_ChainContextPos(ScriptCache
*psc
, LPOUTLINETEXTMETRICW lpotm
, LPLOGFONTW lplogfont
, const SCRIPT_ANALYSIS
*analysis
, INT
* piAdvance
,
1628 const OT_LookupList
*lookup
, const OT_LookupTable
*look
, const WORD
*glyphs
, INT glyph_index
,
1629 INT glyph_count
, INT ppem
, GOFFSET
*pGoffset
)
1632 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1634 TRACE("Chaining Contextual Positioning Subtable\n");
1636 for (j
= 0; j
< GET_BE_WORD(look
->SubTableCount
); j
++)
1639 const GPOS_ChainContextPosFormat3_1
*ccpf3
= (GPOS_ChainContextPosFormat3_1
*)GPOS_get_subtable(look
, j
);
1640 int dirLookahead
= write_dir
;
1641 int dirBacktrack
= -1 * write_dir
;
1643 if (GET_BE_WORD(ccpf3
->PosFormat
) == 1)
1647 FIXME(" TODO: subtype 1 (Simple Chaining Context Glyph Positioning)\n");
1650 else if (GET_BE_WORD(ccpf3
->PosFormat
) == 2)
1654 FIXME(" TODO: subtype 2 (Class-based Chaining Context Glyph Positioning)\n");
1657 else if (GET_BE_WORD(ccpf3
->PosFormat
) == 3)
1661 const GPOS_ChainContextPosFormat3_2
*ccpf3_2
;
1662 const GPOS_ChainContextPosFormat3_3
*ccpf3_3
;
1663 const GPOS_ChainContextPosFormat3_4
*ccpf3_4
;
1665 TRACE(" subtype 3 (Coverage-based Chaining Context Glyph Positioning)\n");
1667 for (k
= 0; k
< GET_BE_WORD(ccpf3
->BacktrackGlyphCount
); k
++)
1669 offset
= GET_BE_WORD(ccpf3
->Coverage
[k
]);
1670 if (GSUB_is_glyph_covered((const BYTE
*)ccpf3
+offset
, glyphs
[glyph_index
+ (dirBacktrack
* (k
+1))]) == -1)
1673 if (k
!= GET_BE_WORD(ccpf3
->BacktrackGlyphCount
))
1675 TRACE("Matched Backtrack\n");
1677 ccpf3_2
= (const GPOS_ChainContextPosFormat3_2
*)((BYTE
*)ccpf3
+
1678 FIELD_OFFSET(GPOS_ChainContextPosFormat3_1
, Coverage
[GET_BE_WORD(ccpf3
->BacktrackGlyphCount
)]));
1680 indexGlyphs
= GET_BE_WORD(ccpf3_2
->InputGlyphCount
);
1681 for (k
= 0; k
< indexGlyphs
; k
++)
1683 offset
= GET_BE_WORD(ccpf3_2
->Coverage
[k
]);
1684 if (GSUB_is_glyph_covered((const BYTE
*)ccpf3
+offset
, glyphs
[glyph_index
+ (write_dir
* k
)]) == -1)
1687 if (k
!= indexGlyphs
)
1689 TRACE("Matched IndexGlyphs\n");
1691 ccpf3_3
= (const GPOS_ChainContextPosFormat3_3
*)((BYTE
*)ccpf3_2
+
1692 FIELD_OFFSET(GPOS_ChainContextPosFormat3_2
, Coverage
[GET_BE_WORD(ccpf3_2
->InputGlyphCount
)]));
1694 for (k
= 0; k
< GET_BE_WORD(ccpf3_3
->LookaheadGlyphCount
); k
++)
1696 offset
= GET_BE_WORD(ccpf3_3
->Coverage
[k
]);
1697 if (GSUB_is_glyph_covered((const BYTE
*)ccpf3
+offset
, glyphs
[glyph_index
+ (dirLookahead
* (indexGlyphs
+ k
))]) == -1)
1700 if (k
!= GET_BE_WORD(ccpf3_3
->LookaheadGlyphCount
))
1702 TRACE("Matched LookAhead\n");
1704 ccpf3_4
= (const GPOS_ChainContextPosFormat3_4
*)((BYTE
*)ccpf3_3
+
1705 FIELD_OFFSET(GPOS_ChainContextPosFormat3_3
, Coverage
[GET_BE_WORD(ccpf3_3
->LookaheadGlyphCount
)]));
1707 if (GET_BE_WORD(ccpf3_4
->PosCount
))
1709 for (k
= 0; k
< GET_BE_WORD(ccpf3_4
->PosCount
); k
++)
1711 int lookupIndex
= GET_BE_WORD(ccpf3_4
->PosLookupRecord
[k
].LookupListIndex
);
1712 int SequenceIndex
= GET_BE_WORD(ccpf3_4
->PosLookupRecord
[k
].SequenceIndex
) * write_dir
;
1714 TRACE("Position: %i -> %i %i\n",k
, SequenceIndex
, lookupIndex
);
1715 GPOS_apply_lookup(psc
, lpotm
, lplogfont
, analysis
, piAdvance
, lookup
, lookupIndex
, glyphs
, glyph_index
+ SequenceIndex
, glyph_count
, pGoffset
);
1717 return glyph_index
+ indexGlyphs
+ GET_BE_WORD(ccpf3_3
->LookaheadGlyphCount
);
1719 else return glyph_index
+ 1;
1722 FIXME("Unhandled Chaining Contextual Positioning Format %i\n",GET_BE_WORD(ccpf3
->PosFormat
));
1724 return glyph_index
+ 1;
1727 static INT
GPOS_apply_lookup(ScriptCache
*psc
, LPOUTLINETEXTMETRICW lpotm
, LPLOGFONTW lplogfont
, const SCRIPT_ANALYSIS
*analysis
, INT
* piAdvance
, const OT_LookupList
* lookup
, INT lookup_index
, const WORD
*glyphs
, INT glyph_index
, INT glyph_count
, GOFFSET
*pGoffset
)
1730 const OT_LookupTable
*look
;
1731 int ppem
= lpotm
->otmTextMetrics
.tmAscent
+ lpotm
->otmTextMetrics
.tmDescent
- lpotm
->otmTextMetrics
.tmInternalLeading
;
1734 offset
= GET_BE_WORD(lookup
->Lookup
[lookup_index
]);
1735 look
= (const OT_LookupTable
*)((const BYTE
*)lookup
+ offset
);
1736 type
= GET_BE_WORD(look
->LookupType
);
1737 TRACE("type %i, flag %x, subtables %i\n",type
,GET_BE_WORD(look
->LookupFlag
),GET_BE_WORD(look
->SubTableCount
));
1740 if (GET_BE_WORD(look
->SubTableCount
))
1742 const GPOS_ExtensionPosFormat1
*ext
= (const GPOS_ExtensionPosFormat1
*)((const BYTE
*)look
+ GET_BE_WORD(look
->SubTable
[0]));
1743 if (GET_BE_WORD(ext
->PosFormat
) == 1)
1745 type
= GET_BE_WORD(ext
->ExtensionLookupType
);
1746 TRACE("extension type %i\n",type
);
1750 FIXME("Unhandled Extension Positioning Format %i\n",GET_BE_WORD(ext
->PosFormat
));
1755 WARN("lookup type is Extension Positioning but no extension subtable exists\n");
1763 POINT adjust
= {0,0};
1764 POINT advance
= {0,0};
1765 GPOS_apply_SingleAdjustment(look
, analysis
, glyphs
, glyph_index
, glyph_count
, ppem
, &adjust
, &advance
);
1766 if (adjust
.x
|| adjust
.y
)
1768 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, adjust
.x
, adjust
.y
, &devX
, &devY
);
1769 pGoffset
[glyph_index
].du
+= round(devX
);
1770 pGoffset
[glyph_index
].dv
+= round(devY
);
1772 if (advance
.x
|| advance
.y
)
1774 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, advance
.x
, advance
.y
, &devX
, &devY
);
1775 piAdvance
[glyph_index
] += round(devX
);
1777 FIXME("Unhandled adjustment to Y advancement\n");
1783 POINT advance
[2]= {{0,0},{0,0}};
1784 POINT adjust
[2]= {{0,0},{0,0}};
1787 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1788 int offset_sign
= (analysis
->fRTL
&& analysis
->fLogicalOrder
) ? -1 : 1;
1790 index
= GPOS_apply_PairAdjustment(look
, analysis
, glyphs
, glyph_index
, glyph_count
, ppem
, adjust
, advance
);
1791 if (adjust
[0].x
|| adjust
[0].y
)
1793 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, adjust
[0].x
, adjust
[0].y
, &devX
, &devY
);
1794 pGoffset
[glyph_index
].du
+= round(devX
) * offset_sign
;
1795 pGoffset
[glyph_index
].dv
+= round(devY
);
1797 if (advance
[0].x
|| advance
[0].y
)
1799 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, advance
[0].x
, advance
[0].y
, &devX
, &devY
);
1800 piAdvance
[glyph_index
] += round(devX
);
1802 if (adjust
[1].x
|| adjust
[1].y
)
1804 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, adjust
[1].x
, adjust
[1].y
, &devX
, &devY
);
1805 pGoffset
[glyph_index
+ write_dir
].du
+= round(devX
) * offset_sign
;
1806 pGoffset
[glyph_index
+ write_dir
].dv
+= round(devY
);
1808 if (advance
[1].x
|| advance
[1].y
)
1810 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, advance
[1].x
, advance
[1].y
, &devX
, &devY
);
1811 piAdvance
[glyph_index
+ write_dir
] += round(devX
);
1819 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1821 GPOS_apply_CursiveAttachment(look
, analysis
, glyphs
, glyph_index
, glyph_count
, ppem
, &desU
);
1822 if (desU
.x
|| desU
.y
)
1824 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, desU
.x
, desU
.y
, &devX
, &devY
);
1825 /* Windows does not appear to apply X offsets here */
1826 pGoffset
[glyph_index
].dv
= round(devY
) + pGoffset
[glyph_index
+write_dir
].dv
;
1834 int base_index
= GPOS_apply_MarkToBase(psc
, look
, analysis
, glyphs
, glyph_index
, glyph_count
, ppem
, &desU
);
1835 if (base_index
!= -1)
1837 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, desU
.x
, desU
.y
, &devX
, &devY
);
1838 if (!analysis
->fRTL
) pGoffset
[glyph_index
].du
= round(devX
) - piAdvance
[base_index
];
1841 if (analysis
->fLogicalOrder
) devX
*= -1;
1842 pGoffset
[glyph_index
].du
= round(devX
);
1844 pGoffset
[glyph_index
].dv
= round(devY
);
1852 GPOS_apply_MarkToLigature(look
, analysis
, glyphs
, glyph_index
, glyph_count
, ppem
, &desU
);
1853 if (desU
.x
|| desU
.y
)
1855 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, desU
.x
, desU
.y
, &devX
, &devY
);
1856 pGoffset
[glyph_index
].du
= (round(devX
) - piAdvance
[glyph_index
-1]);
1857 pGoffset
[glyph_index
].dv
= round(devY
);
1865 int write_dir
= (analysis
->fRTL
&& !analysis
->fLogicalOrder
) ? -1 : 1;
1866 if (GPOS_apply_MarkToMark(look
, analysis
, glyphs
, glyph_index
, glyph_count
, ppem
, &desU
))
1868 GPOS_convert_design_units_to_device(lpotm
, lplogfont
, desU
.x
, desU
.y
, &devX
, &devY
);
1869 if (analysis
->fRTL
&& analysis
->fLogicalOrder
) devX
*= -1;
1870 pGoffset
[glyph_index
].du
= round(devX
) + pGoffset
[glyph_index
- write_dir
].du
;
1871 pGoffset
[glyph_index
].dv
= round(devY
) + pGoffset
[glyph_index
- write_dir
].dv
;
1877 return GPOS_apply_ChainContextPos(psc
, lpotm
, lplogfont
, analysis
, piAdvance
, lookup
, look
, glyphs
, glyph_index
, glyph_count
, ppem
, pGoffset
);
1880 FIXME("We do not handle SubType %i\n",type
);
1882 return glyph_index
+1;
1885 INT
OpenType_apply_GPOS_lookup(ScriptCache
*psc
, LPOUTLINETEXTMETRICW lpotm
, LPLOGFONTW lplogfont
, const SCRIPT_ANALYSIS
*analysis
, INT
* piAdvance
, INT lookup_index
, const WORD
*glyphs
, INT glyph_index
, INT glyph_count
, GOFFSET
*pGoffset
)
1887 const GPOS_Header
*header
= (const GPOS_Header
*)psc
->GPOS_Table
;
1888 const OT_LookupList
*lookup
= (const OT_LookupList
*)((const BYTE
*)header
+ GET_BE_WORD(header
->LookupList
));
1890 return GPOS_apply_lookup(psc
, lpotm
, lplogfont
, analysis
, piAdvance
, lookup
, lookup_index
, glyphs
, glyph_index
, glyph_count
, pGoffset
);
1893 static void GSUB_initialize_script_cache(ScriptCache
*psc
)
1897 if (psc
->GSUB_Table
)
1899 const OT_ScriptList
*script
;
1900 const GSUB_Header
* header
= (const GSUB_Header
*)psc
->GSUB_Table
;
1901 script
= (const OT_ScriptList
*)((const BYTE
*)header
+ GET_BE_WORD(header
->ScriptList
));
1902 psc
->script_count
= GET_BE_WORD(script
->ScriptCount
);
1903 TRACE("initializing %i scripts in this font\n",psc
->script_count
);
1904 if (psc
->script_count
)
1906 psc
->scripts
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(LoadedScript
) * psc
->script_count
);
1907 for (i
= 0; i
< psc
->script_count
; i
++)
1909 int offset
= GET_BE_WORD(script
->ScriptRecord
[i
].Script
);
1910 psc
->scripts
[i
].tag
= MS_MAKE_TAG(script
->ScriptRecord
[i
].ScriptTag
[0], script
->ScriptRecord
[i
].ScriptTag
[1], script
->ScriptRecord
[i
].ScriptTag
[2], script
->ScriptRecord
[i
].ScriptTag
[3]);
1911 psc
->scripts
[i
].gsub_table
= ((const BYTE
*)script
+ offset
);
1917 static void GPOS_expand_script_cache(ScriptCache
*psc
)
1920 const OT_ScriptList
*script
;
1921 const GPOS_Header
* header
= (const GPOS_Header
*)psc
->GPOS_Table
;
1926 script
= (const OT_ScriptList
*)((const BYTE
*)header
+ GET_BE_WORD(header
->ScriptList
));
1927 count
= GET_BE_WORD(script
->ScriptCount
);
1932 if (!psc
->script_count
)
1934 psc
->script_count
= count
;
1935 TRACE("initializing %i scripts in this font\n",psc
->script_count
);
1936 if (psc
->script_count
)
1938 psc
->scripts
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(LoadedScript
) * psc
->script_count
);
1939 for (i
= 0; i
< psc
->script_count
; i
++)
1941 int offset
= GET_BE_WORD(script
->ScriptRecord
[i
].Script
);
1942 psc
->scripts
[i
].tag
= MS_MAKE_TAG(script
->ScriptRecord
[i
].ScriptTag
[0], script
->ScriptRecord
[i
].ScriptTag
[1], script
->ScriptRecord
[i
].ScriptTag
[2], script
->ScriptRecord
[i
].ScriptTag
[3]);
1943 psc
->scripts
[i
].gpos_table
= ((const BYTE
*)script
+ offset
);
1949 for (i
= 0; i
< count
; i
++)
1952 int offset
= GET_BE_WORD(script
->ScriptRecord
[i
].Script
);
1953 OPENTYPE_TAG tag
= MS_MAKE_TAG(script
->ScriptRecord
[i
].ScriptTag
[0], script
->ScriptRecord
[i
].ScriptTag
[1], script
->ScriptRecord
[i
].ScriptTag
[2], script
->ScriptRecord
[i
].ScriptTag
[3]);
1954 for (j
= 0; j
< psc
->script_count
; j
++)
1956 if (psc
->scripts
[j
].tag
== tag
)
1958 psc
->scripts
[j
].gpos_table
= ((const BYTE
*)script
+ offset
);
1962 if (j
== psc
->script_count
)
1964 psc
->script_count
++;
1965 psc
->scripts
= HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,psc
->scripts
, sizeof(LoadedScript
) * psc
->script_count
);
1966 psc
->scripts
[j
].tag
= tag
;
1967 psc
->scripts
[j
].gpos_table
= ((const BYTE
*)script
+ offset
);
1973 static void _initialize_script_cache(ScriptCache
*psc
)
1975 if (!psc
->scripts_initialized
)
1977 GSUB_initialize_script_cache(psc
);
1978 GPOS_expand_script_cache(psc
);
1979 psc
->scripts_initialized
= TRUE
;
1983 HRESULT
OpenType_GetFontScriptTags(ScriptCache
*psc
, OPENTYPE_TAG searchingFor
, int cMaxTags
, OPENTYPE_TAG
*pScriptTags
, int *pcTags
)
1988 _initialize_script_cache(psc
);
1990 *pcTags
= psc
->script_count
;
1992 if (!searchingFor
&& cMaxTags
< *pcTags
)
1994 else if (searchingFor
)
1995 rc
= USP_E_SCRIPT_NOT_IN_FONT
;
1997 for (i
= 0; i
< psc
->script_count
; i
++)
2000 pScriptTags
[i
] = psc
->scripts
[i
].tag
;
2004 if (searchingFor
== psc
->scripts
[i
].tag
)
2006 pScriptTags
[0] = psc
->scripts
[i
].tag
;
2016 static void GSUB_initialize_language_cache(LoadedScript
*script
)
2020 if (script
->gsub_table
)
2023 const OT_Script
* table
= script
->gsub_table
;
2024 script
->language_count
= GET_BE_WORD(table
->LangSysCount
);
2025 offset
= GET_BE_WORD(table
->DefaultLangSys
);
2028 script
->default_language
.tag
= MS_MAKE_TAG('d','f','l','t');
2029 script
->default_language
.gsub_table
= (const BYTE
*)table
+ offset
;
2032 if (script
->language_count
)
2034 TRACE("Deflang %p, LangCount %i\n",script
->default_language
.gsub_table
, script
->language_count
);
2036 script
->languages
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(LoadedLanguage
) * script
->language_count
);
2038 for (i
= 0; i
< script
->language_count
; i
++)
2040 int offset
= GET_BE_WORD(table
->LangSysRecord
[i
].LangSys
);
2041 script
->languages
[i
].tag
= MS_MAKE_TAG(table
->LangSysRecord
[i
].LangSysTag
[0], table
->LangSysRecord
[i
].LangSysTag
[1], table
->LangSysRecord
[i
].LangSysTag
[2], table
->LangSysRecord
[i
].LangSysTag
[3]);
2042 script
->languages
[i
].gsub_table
= ((const BYTE
*)table
+ offset
);
2048 static void GPOS_expand_language_cache(LoadedScript
*script
)
2051 const OT_Script
* table
= script
->gpos_table
;
2057 offset
= GET_BE_WORD(table
->DefaultLangSys
);
2059 script
->default_language
.gpos_table
= (const BYTE
*)table
+ offset
;
2061 count
= GET_BE_WORD(table
->LangSysCount
);
2063 TRACE("Deflang %p, LangCount %i\n",script
->default_language
.gpos_table
, count
);
2068 if (!script
->language_count
)
2071 script
->language_count
= count
;
2073 script
->languages
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(LoadedLanguage
) * script
->language_count
);
2075 for (i
= 0; i
< script
->language_count
; i
++)
2077 int offset
= GET_BE_WORD(table
->LangSysRecord
[i
].LangSys
);
2078 script
->languages
[i
].tag
= MS_MAKE_TAG(table
->LangSysRecord
[i
].LangSysTag
[0], table
->LangSysRecord
[i
].LangSysTag
[1], table
->LangSysRecord
[i
].LangSysTag
[2], table
->LangSysRecord
[i
].LangSysTag
[3]);
2079 script
->languages
[i
].gpos_table
= ((const BYTE
*)table
+ offset
);
2085 for (i
= 0; i
< count
; i
++)
2087 int offset
= GET_BE_WORD(table
->LangSysRecord
[i
].LangSys
);
2088 OPENTYPE_TAG tag
= MS_MAKE_TAG(table
->LangSysRecord
[i
].LangSysTag
[0], table
->LangSysRecord
[i
].LangSysTag
[1], table
->LangSysRecord
[i
].LangSysTag
[2], table
->LangSysRecord
[i
].LangSysTag
[3]);
2090 for (j
= 0; j
< script
->language_count
; j
++)
2092 if (script
->languages
[j
].tag
== tag
)
2094 script
->languages
[j
].gpos_table
= ((const BYTE
*)table
+ offset
);
2098 if (j
== script
->language_count
)
2100 script
->language_count
++;
2101 script
->languages
= HeapReAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,script
->languages
, sizeof(LoadedLanguage
) * script
->language_count
);
2102 script
->languages
[j
].tag
= tag
;
2103 script
->languages
[j
].gpos_table
= ((const BYTE
*)table
+ offset
);
2109 static void _initialize_language_cache(LoadedScript
*script
)
2111 if (!script
->languages_initialized
)
2113 GSUB_initialize_language_cache(script
);
2114 GPOS_expand_language_cache(script
);
2115 script
->languages_initialized
= TRUE
;
2119 HRESULT
OpenType_GetFontLanguageTags(ScriptCache
*psc
, OPENTYPE_TAG script_tag
, OPENTYPE_TAG searchingFor
, int cMaxTags
, OPENTYPE_TAG
*pLanguageTags
, int *pcTags
)
2123 LoadedScript
*script
= NULL
;
2125 _initialize_script_cache(psc
);
2127 for (i
= 0; i
< psc
->script_count
; i
++)
2129 if (psc
->scripts
[i
].tag
== script_tag
)
2131 script
= &psc
->scripts
[i
];
2137 return E_INVALIDARG
;
2139 _initialize_language_cache(script
);
2141 if (!searchingFor
&& cMaxTags
< script
->language_count
)
2143 else if (searchingFor
)
2146 *pcTags
= script
->language_count
;
2148 for (i
= 0; i
< script
->language_count
; i
++)
2151 pLanguageTags
[i
] = script
->languages
[i
].tag
;
2155 if (searchingFor
== script
->languages
[i
].tag
)
2157 pLanguageTags
[0] = script
->languages
[i
].tag
;
2165 if (script
->default_language
.gsub_table
)
2168 pLanguageTags
[i
] = script
->default_language
.tag
;
2170 if (searchingFor
&& FAILED(rc
))
2172 pLanguageTags
[0] = script
->default_language
.tag
;
2175 *pcTags
= (*pcTags
) + 1;
2182 static void GSUB_initialize_feature_cache(LPCVOID table
, LoadedLanguage
*language
)
2186 if (language
->gsub_table
)
2188 const OT_LangSys
*lang
= language
->gsub_table
;
2189 const GSUB_Header
*header
= (const GSUB_Header
*)table
;
2190 const OT_FeatureList
*feature_list
;
2192 language
->feature_count
= GET_BE_WORD(lang
->FeatureCount
);
2193 TRACE("%i features\n",language
->feature_count
);
2195 if (language
->feature_count
)
2197 language
->features
= HeapAlloc(GetProcessHeap(),0,sizeof(LoadedFeature
)*language
->feature_count
);
2199 feature_list
= (const OT_FeatureList
*)((const BYTE
*)header
+ GET_BE_WORD(header
->FeatureList
));
2201 for (i
= 0; i
< language
->feature_count
; i
++)
2203 const OT_Feature
*feature
;
2205 int index
= GET_BE_WORD(lang
->FeatureIndex
[i
]);
2207 language
->features
[i
].tag
= MS_MAKE_TAG(feature_list
->FeatureRecord
[index
].FeatureTag
[0], feature_list
->FeatureRecord
[index
].FeatureTag
[1], feature_list
->FeatureRecord
[index
].FeatureTag
[2], feature_list
->FeatureRecord
[index
].FeatureTag
[3]);
2208 language
->features
[i
].feature
= ((const BYTE
*)feature_list
+ GET_BE_WORD(feature_list
->FeatureRecord
[index
].Feature
));
2209 feature
= (const OT_Feature
*)language
->features
[i
].feature
;
2210 language
->features
[i
].lookup_count
= GET_BE_WORD(feature
->LookupCount
);
2211 language
->features
[i
].lookups
= HeapAlloc(GetProcessHeap(),0,sizeof(WORD
) * language
->features
[i
].lookup_count
);
2212 for (j
= 0; j
< language
->features
[i
].lookup_count
; j
++)
2213 language
->features
[i
].lookups
[j
] = GET_BE_WORD(feature
->LookupListIndex
[j
]);
2214 language
->features
[i
].tableType
= FEATURE_GSUB_TABLE
;
2220 static void GPOS_expand_feature_cache(LPCVOID table
, LoadedLanguage
*language
)
2223 const OT_LangSys
*lang
= language
->gpos_table
;
2224 const GPOS_Header
*header
= (const GPOS_Header
*)table
;
2225 const OT_FeatureList
*feature_list
;
2230 count
= GET_BE_WORD(lang
->FeatureCount
);
2231 feature_list
= (const OT_FeatureList
*)((const BYTE
*)header
+ GET_BE_WORD(header
->FeatureList
));
2233 TRACE("%i features\n",count
);
2238 if (!language
->feature_count
)
2240 language
->feature_count
= count
;
2242 if (language
->feature_count
)
2244 language
->features
= HeapAlloc(GetProcessHeap(),0,sizeof(LoadedFeature
)*language
->feature_count
);
2246 for (i
= 0; i
< language
->feature_count
; i
++)
2248 const OT_Feature
*feature
;
2250 int index
= GET_BE_WORD(lang
->FeatureIndex
[i
]);
2252 language
->features
[i
].tag
= MS_MAKE_TAG(feature_list
->FeatureRecord
[index
].FeatureTag
[0], feature_list
->FeatureRecord
[index
].FeatureTag
[1], feature_list
->FeatureRecord
[index
].FeatureTag
[2], feature_list
->FeatureRecord
[index
].FeatureTag
[3]);
2253 language
->features
[i
].feature
= ((const BYTE
*)feature_list
+ GET_BE_WORD(feature_list
->FeatureRecord
[index
].Feature
));
2254 feature
= (const OT_Feature
*)language
->features
[i
].feature
;
2255 language
->features
[i
].lookup_count
= GET_BE_WORD(feature
->LookupCount
);
2256 language
->features
[i
].lookups
= HeapAlloc(GetProcessHeap(),0,sizeof(WORD
) * language
->features
[i
].lookup_count
);
2257 for (j
= 0; j
< language
->features
[i
].lookup_count
; j
++)
2258 language
->features
[i
].lookups
[j
] = GET_BE_WORD(feature
->LookupListIndex
[j
]);
2259 language
->features
[i
].tableType
= FEATURE_GPOS_TABLE
;
2265 language
->features
= HeapReAlloc(GetProcessHeap(),0,language
->features
, sizeof(LoadedFeature
)*(language
->feature_count
+ count
));
2267 for (i
= 0; i
< count
; i
++)
2269 const OT_Feature
*feature
;
2271 int index
= GET_BE_WORD(lang
->FeatureIndex
[i
]);
2272 int idx
= language
->feature_count
+ i
;
2274 language
->features
[idx
].tag
= MS_MAKE_TAG(feature_list
->FeatureRecord
[index
].FeatureTag
[0], feature_list
->FeatureRecord
[index
].FeatureTag
[1], feature_list
->FeatureRecord
[index
].FeatureTag
[2], feature_list
->FeatureRecord
[index
].FeatureTag
[3]);
2275 language
->features
[idx
].feature
= ((const BYTE
*)feature_list
+ GET_BE_WORD(feature_list
->FeatureRecord
[index
].Feature
));
2276 feature
= (const OT_Feature
*)language
->features
[idx
].feature
;
2277 language
->features
[idx
].lookup_count
= GET_BE_WORD(feature
->LookupCount
);
2278 language
->features
[idx
].lookups
= HeapAlloc(GetProcessHeap(),0,sizeof(WORD
) * language
->features
[idx
].lookup_count
);
2279 for (j
= 0; j
< language
->features
[idx
].lookup_count
; j
++)
2280 language
->features
[idx
].lookups
[j
] = GET_BE_WORD(feature
->LookupListIndex
[j
]);
2281 language
->features
[idx
].tableType
= FEATURE_GPOS_TABLE
;
2283 language
->feature_count
+= count
;
2287 static void _initialize_feature_cache(ScriptCache
*psc
, LoadedLanguage
*language
)
2289 if (!language
->features_initialized
)
2291 GSUB_initialize_feature_cache(psc
->GSUB_Table
, language
);
2292 GPOS_expand_feature_cache(psc
->GPOS_Table
, language
);
2293 language
->features_initialized
= TRUE
;
2297 HRESULT
OpenType_GetFontFeatureTags(ScriptCache
*psc
, OPENTYPE_TAG script_tag
, OPENTYPE_TAG language_tag
, BOOL filtered
, OPENTYPE_TAG searchingFor
, char tableType
, int cMaxTags
, OPENTYPE_TAG
*pFeatureTags
, int *pcTags
, LoadedFeature
** feature
)
2301 LoadedScript
*script
= NULL
;
2302 LoadedLanguage
*language
= NULL
;
2304 _initialize_script_cache(psc
);
2306 for (i
= 0; i
< psc
->script_count
; i
++)
2308 if (psc
->scripts
[i
].tag
== script_tag
)
2310 script
= &psc
->scripts
[i
];
2321 return E_INVALIDARG
;
2324 _initialize_language_cache(script
);
2326 if ((script
->default_language
.gsub_table
|| script
->default_language
.gpos_table
) && script
->default_language
.tag
== language_tag
)
2327 language
= &script
->default_language
;
2330 for (i
= 0; i
< script
->language_count
; i
++)
2332 if (script
->languages
[i
].tag
== language_tag
)
2334 language
= &script
->languages
[i
];
2346 _initialize_feature_cache(psc
, language
);
2351 for (i
= 0; i
< language
->feature_count
; i
++)
2352 if (language
->features
[i
].tableType
== tableType
)
2353 *pcTags
= (*pcTags
)+1;
2356 *pcTags
= language
->feature_count
;
2358 if (!searchingFor
&& cMaxTags
< *pcTags
)
2360 else if (searchingFor
)
2363 for (i
= 0; i
< language
->feature_count
; i
++)
2367 if (!tableType
|| language
->features
[i
].tableType
== tableType
)
2368 pFeatureTags
[i
] = language
->features
[i
].tag
;
2373 if ((searchingFor
== language
->features
[i
].tag
) &&
2374 (!tableType
|| language
->features
[i
].tableType
== tableType
))
2376 pFeatureTags
[0] = language
->features
[i
].tag
;
2379 *feature
= &language
->features
[i
];