A major refresh of the TrueType driver : - some #ifdefs were included in order to _not_ compile support for the bytecode interpreter when FT_CONFIG_OPTION_BYTECODE_INTERPRETER is not defined in "ttconfig.h" - the glyph loader has been seriously re-designed. It is now smaller, simpler and should load composites a bit faster - works with the TrueType debugger
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531
diff --git a/src/truetype/truetype.c b/src/truetype/truetype.c
index e5fe884..c160aee 100644
--- a/src/truetype/truetype.c
+++ b/src/truetype/truetype.c
@@ -44,7 +44,9 @@
#include <ttdriver.c> /* driver interface */
#include <ttpload.c> /* tables loader */
#include <ttgload.c> /* glyph loader */
-#include <ttinterp.c> /* bytecode interpreter */
#include <ttobjs.c> /* object manager */
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+#include <ttinterp.c> /* bytecode interpreter */
+#endif
/* END */
diff --git a/src/truetype/ttconfig.h b/src/truetype/ttconfig.h
index cdb4f6e..eba0de3 100644
--- a/src/truetype/ttconfig.h
+++ b/src/truetype/ttconfig.h
@@ -30,6 +30,17 @@
/*************************************************************************/
/* */
+ /* Define TT_CONFIG_OPTION_BYTECODE_INTERPRETER if you want to compile */
+ /* a bytecode interpreter in the TrueType driver. Note that there are */
+ /* important patent issues related to the use of the interpreter. */
+ /* */
+ /* By undefining this, you'll only compile the code necessary to load */
+ /* TrueType glyphs without hinting.. */
+ /* */
+#undef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+
+ /*************************************************************************/
+ /* */
/* Define TT_CONFIG_OPTION_INTERPRETER_SWITCH to compile the TrueType */
/* bytecode interpreter with a huge switch statement, rather than a */
/* call table. This results in smaller and faster code for a number of */
@@ -46,7 +57,7 @@
/* Define TT_CONFIG_OPTION_EMBEDDED_BITMAPS if you want to support */
/* embedded bitmaps in the TrueType/OpenType driver. */
/* */
-#define TT_CONFIG_OPTION_EMBEDDED_BITMAPS
+#undef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
/*************************************************************************/
@@ -55,8 +66,10 @@
/* load and enumerate the glyph Postscript names in a TrueType or */
/* OpenType file. */
/* */
-#define TT_CONFIG_OPTION_POSTSCRIPT_NAMES
+#undef TT_CONFIG_OPTION_POSTSCRIPT_NAMES
+ /* The maximum number of sub-glyphs in a TrueType composite glyph */
+#define TT_MAX_SUBGLYPHS 32
#define TT_USE_FIXED
diff --git a/src/truetype/ttdriver.c b/src/truetype/ttdriver.c
index fdf9dff..d61d8e3 100644
--- a/src/truetype/ttdriver.c
+++ b/src/truetype/ttdriver.c
@@ -683,7 +683,7 @@
EXPORT_FUNC
FT_DriverInterface* getDriverInterface( void )
{
- return &truetype_driver_interface;
+ return &tt_driver_interface;
}
#endif /* CONFIG_OPTION_DYNAMIC_DRIVERS */
diff --git a/src/truetype/ttdriver.h b/src/truetype/ttdriver.h
index 16e20c3..199934f 100644
--- a/src/truetype/ttdriver.h
+++ b/src/truetype/ttdriver.h
@@ -26,115 +26,10 @@
#include <ttnameid.h>
- /*************************************************************************/
- /* */
- /* <FuncType> */
- /* TTDriver_getFontData */
- /* */
- /* <Description> */
- /* Returns either a single font table or the whole font file into */
- /* caller's memory. This function mimics the GetFontData() API */
- /* function found in Windows. */
- /* */
- /* <Input> */
- /* face :: A handle to the source TrueType face object. */
- /* */
- /* tag :: A 32-bit integer used to name the table you want to */
- /* read. Use the macro MAKE_TT_TAG (defined in freetype.h) */
- /* to create one. Use the value 0 if you want to access */
- /* the whole file instead. */
- /* */
- /* offset :: The offset from the start of the table or file from */
- /* which you want to read bytes. */
- /* */
- /* buffer :: The address of the target/read buffer where data will be */
- /* copied. */
- /* */
- /* <InOut> */
- /* length :: The length in bytes of the data to read. If it is set */
- /* to 0 when this function is called, it will return */
- /* immediately, setting the value of `length' to the */
- /* requested table's size (or the whole font file if the */
- /* tag is 0). It is thus possible to allocate and read an */
- /* arbitrary table in two successive calls. */
- /* <Return> */
- /* TrueType error code. 0 means success. */
- /* */
- typedef TT_Error (*TTDriver_getFontData)( TT_Face face,
- TT_ULong tag,
- TT_ULong offset,
- void* buffer,
- TT_Long* length );
-
-
- /*************************************************************************/
- /* */
- /* <FuncType> */
- /* TTDriver_getFaceWidths */
- /* */
- /* <Description> */
- /* Returns the widths and/or heights of a given range of glyph from */
- /* a face. */
- /* */
- /* <Input> */
- /* face :: A handle to the source FreeType face object. */
- /* */
- /* first_glyph :: The first glyph in the range. */
- /* */
- /* last_glyph :: The last glyph in the range. */
- /* */
- /* <Output> */
- /* widths :: The address of the table receiving the widths */
- /* expressed in font units (UShorts). Set this */
- /* parameter to NULL if you're not interested in these */
- /* values. */
- /* */
- /* heights :: The address of the table receiving the heights */
- /* expressed in font units (UShorts). Set this */
- /* parameter to NULL if you're not interested in these */
- /* values. */
- /* */
- /* <Return> */
- /* Error code. 0 means success. */
- /* */
- typedef TT_Error (*TTDriver_getFaceWidths)( TT_Face face,
- TT_UShort first_glyph,
- TT_UShort last_glyph,
- TT_UShort* widths,
- TT_UShort* heights );
-
-
-
- /*************************************************************************/
- /* */
- /* <Struct> */
- /* TT_DriverInterface */
- /* */
- /* <Description> */
- /* The TrueType-specific interface of this driver. Note that some of */
- /* the methods defined here are optional, as they're only used for */
- /* for specific tasks of the driver. */
- /* */
- /* <Fields> */
- /* get_font_data :: See the declaration of TTDriver_getFontData(). */
- /* get_face_widths :: See the declaration of */
- /* TTDriver_getFaceWidths(). */
- /* */
- typedef struct TT_DriverInterface_
- {
- TTDriver_getFontData get_font_data;
- TTDriver_getFaceWidths get_face_widths;
-
- } TT_DriverInterface;
-
-
EXPORT_DEF
- const FT_DriverInterface tt_driver_interface;
+ const FT_DriverInterface ttz_driver_interface;
- EXPORT_DEF
- const TT_DriverInterface tt_format_interface;
-
#endif /* TTDRIVER_H */
diff --git a/src/truetype/ttgload.c b/src/truetype/ttgload.c
index bf24b4d..f62d579 100644
--- a/src/truetype/ttgload.c
+++ b/src/truetype/ttgload.c
@@ -25,8 +25,10 @@
#include <ttgload.h>
#include <tttags.h>
-#include <ttinterp.h>
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+#include <ttinterp.h>
+#endif
/* required for the tracing mode */
#undef FT_COMPONENT
@@ -49,41 +51,15 @@
#define USE_MY_METRICS 0x200
-#undef SCALE_X
-#define SCALE_X( distance ) FT_MulFix( distance, exec->metrics.x_scale )
-
-#undef SCALE_Y
-#define SCALE_Y( distance ) FT_MulFix( distance, exec->metrics.y_scale )
-
/*************************************************************************/
- /* */
- /* <Function> */
- /* TT_Get_Metrics */
- /* */
- /* <Description> */
/* Returns the horizontal or vertical metrics in font units for a */
/* given glyph. The metrics are the left side bearing (resp. top */
/* side bearing) and advance width (resp. advance height). */
/* */
- /* <Input> */
- /* header :: A pointer to either the horizontal or vertical metrics */
- /* structure. */
- /* */
- /* index :: The glyph index. */
- /* */
- /* <Output> */
- /* bearing :: The bearing, either left side or top side. */
- /* */
- /* advance :: The advance width resp. advance height. */
- /* */
- /* <Note> */
- /* This function will much probably move to another component in the */
- /* near future, but I haven't decided which yet. */
- /* */
LOCAL_FUNC
void TT_Get_Metrics( TT_HoriHeader* header,
- TT_UShort index,
+ TT_UInt index,
TT_Short* bearing,
TT_UShort* advance )
{
@@ -106,30 +82,13 @@
/*************************************************************************/
- /* */
- /* <Function> */
- /* Get_HMetrics */
- /* */
- /* <Description> */
/* Returns the horizontal metrics in font units for a given glyph. */
/* If `check' is true, take care of monospaced fonts by returning the */
/* advance width maximum. */
/* */
- /* <Input> */
- /* face :: A handle to the target source face. */
- /* */
- /* index :: The glyph index. */
- /* */
- /* check :: If set, handle monospaced fonts. */
- /* */
- /* <Output> */
- /* lsb :: The left side bearing. */
- /* */
- /* aw :: The advance width. */
- /* */
static
void Get_HMetrics( TT_Face face,
- TT_UShort index,
+ TT_UInt index,
TT_Bool check,
TT_Short* lsb,
TT_UShort* aw )
@@ -142,22 +101,9 @@
/*************************************************************************/
- /* */
- /* <Function> */
- /* Get_Advance_Widths */
- /* */
- /* <Description> */
/* Returns the advance width table for a given pixel size if it is */
/* found in the font's `hdmx' table (if any). */
/* */
- /* <Input> */
- /* face :: A handle to the target source face. */
- /* */
- /* ppem :: The pixel size. */
- /* */
- /* <Return> */
- /* A pointer to the advance with table. NULL if it doesn't exist. */
- /* */
static
TT_Byte* Get_Advance_Widths( TT_Face face,
TT_UShort ppem )
@@ -181,31 +127,15 @@
/*************************************************************************/
- /* */
- /* <Function> */
- /* translate_array */
- /* */
- /* <Description> */
/* Translates an array of coordinates. */
/* */
- /* <Input> */
- /* n :: The number of points to translate. */
- /* */
- /* delta_x :: The horizontal coordinate of the shift vector. */
- /* */
- /* delta_y :: The vertical coordinate of the shift vector. */
- /* */
- /* <InOut> */
- /* coords :: The vector array to translate. */
- /* */
static
- void translate_array( TT_UShort n,
+ void translate_array( TT_UInt n,
TT_Vector* coords,
TT_Pos delta_x,
TT_Pos delta_y )
{
- TT_UShort k;
-
+ TT_UInt k;
if ( delta_x )
for ( k = 0; k < n; k++ )
@@ -217,28 +147,17 @@
}
+
/*************************************************************************/
- /* */
- /* <Function> */
- /* mount_zone */
- /* */
- /* <Description> */
/* Mounts one glyph zone on top of another. This is needed to */
/* assemble composite glyphs. */
/* */
- /* <Input> */
- /* source :: The source glyph zone. */
- /* */
- /* <Output> */
- /* target :: The target glyph zone. */
- /* */
static
void mount_zone( TT_GlyphZone* source,
TT_GlyphZone* target )
{
- TT_UShort np;
- TT_Short nc;
-
+ TT_UInt np;
+ TT_Int nc;
np = source->n_points;
nc = source->n_contours;
@@ -254,6 +173,9 @@
}
+#undef IS_HINTED
+#define IS_HINTED(flags) ((flags & FT_LOAD_NO_HINTING) == 0)
+
/*************************************************************************/
/* */
/* <Function> */
@@ -265,35 +187,23 @@
/* glyphs elements will be loaded with routine. */
/* */
static
- TT_Error Load_Simple_Glyph( TT_ExecContext exec,
- FT_Stream stream,
- TT_ULong byte_count,
- TT_Short n_contours,
- TT_Short left_contours,
- TT_UShort left_points,
- TT_UInt load_flags,
- TT_SubGlyphRec* subg,
- TT_Bool debug )
+ TT_Error Load_Simple( TT_Loader* load,
+ TT_UInt byte_count,
+ TT_Int n_contours,
+ TT_Bool debug )
{
TT_Error error;
- TT_GlyphZone* pts;
- TT_Short k;
- TT_UShort j;
- TT_UShort n_points, n_ins;
- TT_Face face;
- TT_Byte* flag;
- TT_Vector* vec;
- TT_F26Dot6 x, y;
-
- TT_Vector *pp1, *pp2;
-
-
- face = exec->face;
+ FT_Stream stream = load->stream;
+ TT_GlyphZone* zone = &load->zone;
+ TT_Face face = load->face;
+ TT_UShort n_ins;
+ TT_Int n, n_points;
+
/*********************************************************************/
/* simple check */
- if ( n_contours > left_contours )
+ if ( n_contours > load->left_contours )
{
FT_TRACE0(( "ERROR: Glyph index %ld has %d contours > left %d\n",
subg->index,
@@ -303,8 +213,7 @@
}
/* preparing the execution context */
- mount_zone( &subg->zone, &exec->pts );
-
+ mount_zone( &load->base, zone );
/*********************************************************************/
/* reading the contours endpoints */
@@ -312,12 +221,12 @@
if ( ACCESS_Frame( byte_count ) )
return error;
- for ( k = 0; k < n_contours; k++ )
- exec->pts.contours[k] = GET_UShort();
+ for ( n = 0; n < n_contours; n++ )
+ zone->contours[n] = GET_UShort();
n_points = 0;
if ( n_contours > 0 )
- n_points = exec->pts.contours[n_contours - 1] + 1;
+ n_points = zone->contours[n_contours - 1] + 1;
/*********************************************************************/
@@ -325,7 +234,7 @@
n_ins = GET_UShort();
- if ( n_points > left_points )
+ if ( n_points > load->left_points )
{
FT_TRACE0(( "ERROR: Too many points in glyph %ld\n", subg->index ));
error = TT_Err_Too_Many_Points;
@@ -347,34 +256,32 @@
error = TT_Err_Too_Many_Ins;
goto Fail;
}
- MEM_Copy( exec->glyphIns, stream->cursor, n_ins );
- stream->cursor += n_ins;
- error = TT_Set_CodeRange( exec, tt_coderange_glyph,
- exec->glyphIns, n_ins );
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ MEM_Copy( load->exec->glyphIns, stream->cursor, n_ins );
+
+ error = TT_Set_CodeRange( load->exec, tt_coderange_glyph,
+ load->exec->glyphIns, n_ins );
if (error) goto Fail;
+#endif
+ stream->cursor += n_ins;
/*********************************************************************/
/* reading the point flags */
-
- j = 0;
- flag = exec->pts.touch;
-
- while ( j < n_points )
- {
- TT_Byte c, cnt;
-
- flag[j] = c = GET_Byte();
- j++;
- if ( c & 8 )
+ {
+ TT_Byte* flag = load->zone.touch;
+ TT_Byte* limit = flag + n_points;
+ TT_Byte c, count;
+
+ for (; flag < limit; flag++)
{
- cnt = GET_Byte();
- while( cnt > 0 )
+ *flag = c = GET_Byte();
+ if ( c & 8 )
{
- flag[j++] = c;
- cnt--;
+ for ( count = GET_Byte(); count > 0; count-- )
+ *++flag = c;
}
}
}
@@ -382,49 +289,53 @@
/*********************************************************************/
/* reading the X coordinates */
- x = 0;
- vec = exec->pts.org;
-
- for ( j = 0; j < n_points; j++ )
{
- if ( flag[j] & 2 )
- {
- if ( flag[j] & 16 )
- x += GET_Byte();
- else
- x -= GET_Byte();
- }
- else
+ TT_Vector* vec = zone->org;
+ TT_Vector* limit = vec + n_points;
+ TT_Byte* flag = zone->touch;
+ TT_Pos x = 0;
+
+ for ( ; vec < limit; vec++, flag++ )
{
- if ( (flag[j] & 16) == 0 )
- x += GET_Short();
+ TT_Pos y = 0;
+
+ if ( *flag & 2 )
+ {
+ y = GET_Byte();
+ if ((*flag & 16) == 0) y = -y;
+ }
+ else if ((*flag & 16) == 0)
+ y = GET_Short();
+
+ x += y;
+ vec->x = x;
}
-
- vec[j].x = x;
}
-
/*********************************************************************/
/* reading the YX coordinates */
-
- y = 0;
- for ( j = 0; j < n_points; j++ )
{
- if ( flag[j] & 4 )
- {
- if ( flag[j] & 32 )
- y += GET_Byte();
- else
- y -= GET_Byte();
- }
- else
+ TT_Vector* vec = zone->org;
+ TT_Vector* limit = vec + n_points;
+ TT_Byte* flag = zone->touch;
+ TT_Pos x = 0;
+
+ for ( ; vec < limit; vec++, flag++ )
{
- if ( (flag[j] & 32) == 0 )
- y += GET_Short();
+ TT_Pos y = 0;
+
+ if ( *flag & 4 )
+ {
+ y = GET_Byte();
+ if ((*flag & 32) == 0) y = -y;
+ }
+ else if ((*flag & 32) == 0)
+ y = GET_Short();
+
+ x += y;
+ vec->y = x;
}
-
- vec[j].y = y;
}
FORGET_Frame();
@@ -435,79 +346,93 @@
/* Now add the two shadow points at n and n + 1. */
/* We need the left side bearing and advance width. */
- /* pp1 = xMin - lsb */
- pp1 = vec + n_points;
- pp1->x = subg->bbox.xMin - subg->left_bearing;
- pp1->y = 0;
-
- /* pp2 = pp1 + aw */
- pp2 = pp1 + 1;
- pp2->x = pp1->x + subg->advance;
- pp2->y = 0;
+ {
+ TT_Vector* pp1;
+ TT_Vector* pp2;
+
+ /* pp1 = xMin - lsb */
+ pp1 = zone->org + n_points;
+ pp1->x = load->bbox.xMin - load->left_bearing;
+ pp1->y = 0;
+
+ /* pp2 = pp1 + aw */
+ pp2 = pp1 + 1;
+ pp2->x = pp1->x + load->advance;
+ pp2->y = 0;
- /* clear the touch flags */
- for ( j = 0; j < n_points; j++ )
- exec->pts.touch[j] &= FT_Curve_Tag_On;
-
- exec->pts.touch[n_points ] = 0;
- exec->pts.touch[n_points + 1] = 0;
+ /* clear the touch flags */
+ for ( n = 0; n < n_points; n++ )
+ zone->touch[n] &= FT_Curve_Tag_On;
+ zone->touch[n_points ] = 0;
+ zone->touch[n_points + 1] = 0;
+ }
/* Note that we return two more points that are not */
/* part of the glyph outline. */
- n_points += 2;
+ zone->n_points = n_points;
+ zone->n_contours = n_contours;
+ n_points += 2;
+ /*******************************************/
/* now eventually scale and hint the glyph */
- pts = &exec->pts;
- pts->n_points = n_points;
- pts->n_contours = n_contours;
-
- if (load_flags & FT_LOAD_NO_SCALE)
+ if (load->load_flags & FT_LOAD_NO_SCALE)
{
/* no scaling, just copy the orig arrays into the cur ones */
- org_to_cur( n_points, pts );
+ org_to_cur( n_points, zone );
}
else
{
+ TT_Vector* vec = zone->org;
+ TT_Vector* limit = vec + n_points;
+ TT_Fixed x_scale = load->size->root.metrics.x_scale;
+ TT_Fixed y_scale = load->size->root.metrics.y_scale;
+
/* first scale the glyph points */
- for ( j = 0; j < n_points; j++ )
+ for (; vec < limit; vec++)
{
- pts->org[j].x = SCALE_X( pts->org[j].x );
- pts->org[j].y = SCALE_Y( pts->org[j].y );
+ vec->x = FT_MulFix( vec->x, x_scale );
+ vec->y = FT_MulFix( vec->y, y_scale );
}
/* if hinting, round pp1, and shift the glyph accordingly */
- if ( subg->is_hinted )
+ if ( !IS_HINTED(load->load_flags) )
+ {
+ org_to_cur( n_points, zone );
+ }
+ else
{
- x = pts->org[n_points - 2].x;
+ TT_Pos x = zone->org[n_points-2].x;
x = ((x + 32) & -64) - x;
- translate_array( n_points, pts->org, x, 0 );
+ translate_array( n_points, zone->org, x, 0 );
- org_to_cur( n_points, pts );
+ org_to_cur( n_points, zone );
- pts->cur[n_points - 1].x = (pts->cur[n_points - 1].x + 32) & -64;
+ zone->cur[n_points-1].x = (zone->cur[n_points-1].x + 32) & -64;
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
/* now consider hinting */
if ( n_ins > 0 )
{
- exec->is_composite = FALSE;
- exec->pedantic_hinting = load_flags & FT_LOAD_PEDANTIC;
+ load->exec->is_composite = FALSE;
+ load->exec->pedantic_hinting = (TT_Bool)(load->load_flags & FT_LOAD_PEDANTIC);
+ load->exec->pts = *zone;
+ load->exec->pts.n_points += 2;
- error = TT_Run_Context( exec, debug );
- if ( error && exec->pedantic_hinting )
+ error = TT_Run_Context( load->exec, debug );
+ if ( error && load->exec->pedantic_hinting )
return error;
}
+#endif
}
- else
- org_to_cur( n_points, pts );
}
/* save glyph phantom points */
- if ( !subg->preserve_pps )
+ if ( !load->preserve_pps )
{
- subg->pp1 = pts->cur[n_points - 2];
- subg->pp2 = pts->cur[n_points - 1];
+ load->pp1 = zone->cur[n_points - 2];
+ load->pp2 = zone->cur[n_points - 1];
}
return TT_Err_Ok;
@@ -518,683 +443,304 @@
}
- /*************************************************************************/
- /* */
- /* <Function> */
- /* Load_Composite_End */
- /* */
- /* <Description> */
- /* Finalizes the loading process of a composite glyph element. This */
- /* function is used for the `Load_End' state of TT_Load_Glyph(). */
- /* */
- static
- TT_Error Load_Composite_End( TT_UShort n_points,
- TT_Short n_contours,
- TT_ExecContext exec,
- TT_SubGlyphRec* subg,
- FT_Stream stream,
- TT_UInt load_flags,
- TT_Bool debug )
- {
- TT_Error error;
-
- TT_UShort k, n_ins;
- TT_GlyphZone* pts;
-
- if ( subg->is_hinted &&
- subg->element_flag & WE_HAVE_INSTR )
- {
- if ( READ_UShort( n_ins ) ) /* read size of instructions */
- return error;
-
- FT_TRACE4(( "Instructions size = %d\n", n_ins ));
-
- if ( n_ins > exec->face->max_profile.maxSizeOfInstructions )
- {
- FT_TRACE0(( "Too many instructions in composite glyph %ld\n",
- subg->index ));
- return TT_Err_Too_Many_Ins;
- }
-
- if ( FILE_Read( exec->glyphIns, n_ins ) )
- return error;
-
- error = TT_Set_CodeRange( exec,
- tt_coderange_glyph,
- exec->glyphIns,
- n_ins );
- if ( error )
- return error;
- }
- else
- n_ins = 0;
-
-
- /* prepare the execution context */
- n_points += 2;
- exec->pts = subg->zone;
- pts = &exec->pts;
-
- pts->n_points = n_points;
- pts->n_contours = n_contours;
-
- /* add phantom points */
- pts->cur[n_points - 2] = subg->pp1;
- pts->cur[n_points - 1] = subg->pp2;
-
- pts->touch[n_points - 1] = 0;
- pts->touch[n_points - 2] = 0;
-
- /* if hinting, round the phantom points */
- if ( subg->is_hinted )
- {
- pts->cur[n_points - 2].x = ((subg->pp1.x + 32) & -64);
- pts->cur[n_points - 1].x = ((subg->pp2.x + 32) & -64);
- }
-
- for ( k = 0; k < n_points; k++ )
- pts->touch[k] &= FT_Curve_Tag_On;
- cur_to_org( n_points, pts );
-
- /* now consider hinting */
- if ( subg->is_hinted && n_ins > 0 )
- {
- exec->is_composite = TRUE;
- exec->pedantic_hinting = load_flags & FT_LOAD_PEDANTIC;
- error = TT_Run_Context( exec, debug );
- if ( error && exec->pedantic_hinting )
- return error;
- }
-
- /* save glyph origin and advance points */
- subg->pp1 = pts->cur[n_points - 2];
- subg->pp2 = pts->cur[n_points - 1];
-
- return TT_Err_Ok;
- }
/*************************************************************************/
/* */
/* <Function> */
- /* Init_Glyph_Component */
+ /* load_truetype_glyph */
/* */
/* <Description> */
- /* Initializes a glyph component for further processing. */
+ /* Loads a given truetype glyph. Handles composites and uses a */
+ /* TT_Loader object.. */
/* */
static
- void Init_Glyph_Component( TT_SubGlyphRec* element,
- TT_SubGlyphRec* original,
- TT_ExecContext exec )
- {
- element->index = -1;
- element->is_scaled = FALSE;
- element->is_hinted = FALSE;
-
- if ( original )
- mount_zone( &original->zone, &element->zone );
- else
- element->zone = exec->pts;
-
- element->zone.n_contours = 0;
- element->zone.n_points = 0;
-
- element->arg1 = 0;
- element->arg2 = 0;
-
- element->element_flag = 0;
- element->preserve_pps = FALSE;
-
- element->transform.xx = 0x10000;
- element->transform.xy = 0;
- element->transform.yx = 0;
- element->transform.yy = 0x10000;
-
- element->transform.ox = 0;
- element->transform.oy = 0;
-
- element->left_bearing = 0;
- element->advance = 0;
- }
-
-
- /*************************************************************************/
- /* */
- /* <Function> */
- /* TT_Load_Glyph */
- /* */
- /* <Description> */
- /* A function used to load a single glyph within a given glyph slot, */
- /* for a given size. */
- /* */
- /* <Input> */
- /* glyph :: A handle to a target slot object where the glyph */
- /* will be loaded. */
- /* */
- /* size :: A handle to the source face size at which the glyph */
- /* must be scaled/loaded. */
- /* */
- /* glyph_index :: The index of the glyph in the font file. */
- /* */
- /* load_flags :: A flag indicating what to load for this glyph. The */
- /* FT_LOAD_XXX constants can be used to control the */
- /* glyph loading process (e.g., whether the outline */
- /* should be scaled, whether to load bitmaps or not, */
- /* whether to hint the outline, etc). */
- /* <Output> */
- /* result :: A set of bit flags indicating the type of data that */
- /* was loaded in the glyph slot (outline or bitmap, */
- /* etc). */
- /* */
- /* You can set this field to 0 if you don't want this */
- /* information. */
- /* */
- /* <Return> */
- /* FreeType error code. 0 means success. */
- /* */
- LOCAL_FUNC
- TT_Error TT_Load_Glyph( TT_Size size,
- TT_GlyphSlot glyph,
- TT_UShort glyph_index,
- TT_UInt load_flags )
+ TT_Error load_truetype_glyph( TT_Loader* loader,
+ TT_UInt glyph_index )
{
- typedef enum TPhases_
- {
- Load_Exit,
- Load_Glyph,
- Load_Header,
- Load_Simple,
- Load_Composite,
- Load_End
-
- } TPhases;
-
- TT_Error error = 0;
- FT_Stream stream;
-
- TT_Face face;
-
- TT_UShort num_points;
- TT_Short num_contours;
- TT_UShort left_points;
- TT_Short left_contours;
-
- TT_ULong load_top;
- TT_Long k, l;
- TT_Int new_flags;
- TT_UShort index;
- TT_UShort u;
- TT_Long count;
-
- TT_Long glyph_offset, offset;
-
- TT_F26Dot6 x, y, nx, ny;
-
- TT_Fixed xx, xy, yx, yy;
- TT_BBox bbox;
-
- TT_ExecContext exec;
-
- TT_SubGlyphRec *subglyph, *subglyph2;
-
- TT_GlyphZone base_pts;
-
- TPhases phase;
- TT_Byte* widths;
- TT_Int num_elem_points;
-
- SFNT_Interface* sfnt;
+ FT_Stream stream = loader->stream;
+ TT_Error error;
+ TT_Face face = loader->face;
+ TT_ULong offset;
+ FT_SubGlyph subglyphs[ TT_MAX_SUBGLYPHS ];
+ TT_Int num_subglyphs = 0, contours_count;
+ TT_UInt index, num_points, num_contours, count;
+ TT_Fixed x_scale, y_scale;
+ TT_ULong ins_offset;
- /* first of all, check arguments */
- if ( !glyph )
- return TT_Err_Invalid_Glyph_Handle;
-
- face = (TT_Face)glyph->face;
- if ( !face )
- return TT_Err_Invalid_Glyph_Handle;
+ /* check glyph index */
+ index = (TT_UInt)glyph_index;
+ if ( index >= (TT_UInt)face->root.num_glyphs )
+ {
+ error = TT_Err_Invalid_Glyph_Index;
+ goto Fail;
+ }
- sfnt = (SFNT_Interface*)face->sfnt;
- stream = face->root.stream;
- count = 0;
+ num_contours = 0;
+ num_points = 0;
+ ins_offset = 0;
- if ( glyph_index >= face->root.num_glyphs )
- return TT_Err_Invalid_Glyph_Index;
-
- if ( !size || (load_flags & FT_LOAD_NO_SCALE) )
+ x_scale = 0x10000;
+ y_scale = 0x10000;
{
- size = NULL;
- load_flags |= FT_LOAD_NO_SCALE |
- FT_LOAD_NO_HINTING |
- FT_LOAD_NO_BITMAP;
+ x_scale = loader->size->root.metrics.x_scale;
+ y_scale = loader->size->root.metrics.y_scale;
}
- /* Try to load embedded bitmap if any */
- if ( size && (load_flags & FT_LOAD_NO_BITMAP) == 0 && sfnt->load_sbits )
+ /* get horizontal metrics */
{
- TT_SBit_Metrics metrics;
-
- error = sfnt->load_sbit_image( face,
- size->root.metrics.x_ppem,
- size->root.metrics.y_ppem,
- glyph_index,
- stream,
- &glyph->bitmap,
- &metrics );
- if ( !error )
- {
- glyph->outline.n_points = 0;
- glyph->outline.n_contours = 0;
-
- glyph->metrics.width = (TT_Pos)metrics.width << 6;
- glyph->metrics.height = (TT_Pos)metrics.height << 6;
-
- glyph->metrics.horiBearingX = (TT_Pos)metrics.horiBearingX << 6;
- glyph->metrics.horiBearingY = (TT_Pos)metrics.horiBearingY << 6;
- glyph->metrics.horiAdvance = (TT_Pos)metrics.horiAdvance << 6;
+ TT_Short left_bearing;
+ TT_UShort advance_width;
- glyph->metrics.vertBearingX = (TT_Pos)metrics.vertBearingX << 6;
- glyph->metrics.vertBearingY = (TT_Pos)metrics.vertBearingY << 6;
- glyph->metrics.vertAdvance = (TT_Pos)metrics.vertAdvance << 6;
+ Get_HMetrics( face, index, TRUE,
+ &left_bearing,
+ &advance_width );
- glyph->format = ft_glyph_format_bitmap;
- return error;
- }
+ loader->left_bearing = left_bearing;
+ loader->advance = advance_width;
}
- if ( load_flags & FT_LOAD_NO_OUTLINE )
- return ( error ? error : TT_Err_Unavailable_Bitmap );
+ /* load glyph header */
+ offset = face->glyph_locations[index];
+ count = 0;
+ if (index < (TT_UInt)face->num_locations-1)
+ count = face->glyph_locations[index+1] - offset;
+
- error = face->goto_table( face, TTAG_glyf, stream, 0 );
- if (error)
+ if (count == 0)
{
- FT_ERROR(( "TT.GLoad: could not access glyph table\n" ));
- return error;
+ /* as described by Frederic Loyer, these are spaces, and */
+ /* not the unknown glyph. */
+ loader->bbox.xMin = 0;
+ loader->bbox.xMax = 0;
+ loader->bbox.yMin = 0;
+ loader->bbox.yMax = 0;
+
+ loader->pp1.x = 0;
+ loader->pp2.x = loader->advance;
+
+ if ( (loader->load_flags & FT_LOAD_NO_SCALE)==0 )
+ loader->pp2.x = FT_MulFix( loader->pp2.x, x_scale );
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ loader->exec->glyphSize = 0;
+#endif
+ goto Load_End;
}
- glyph_offset = FILE_Pos();
+ offset = loader->glyf_offset + offset;
- /* query new execution context */
-
- if ( size && size->debug )
- exec = size->context;
- else
- exec = TT_New_Context( face );
-
- if ( !exec )
- return TT_Err_Could_Not_Find_Context;
-
- TT_Load_Context( exec, face, size );
-
- if ( size )
- {
- /* load default graphics state - if needed */
- if ( size->GS.instruct_control & 2 )
- exec->GS = tt_default_graphics_state;
-
- glyph->outline.high_precision = ( size->root.metrics.y_ppem < 24 );
- }
-
- /* save its critical pointers, as they'll be modified during load */
- base_pts = exec->pts;
+ /* read first glyph header */
+ if ( FILE_Seek( offset ) || ACCESS_Frame( 10L ) )
+ goto Fail;
- /* init variables */
- left_points = face->root.max_points; /* remove phantom points */
- left_contours = face->root.max_contours;
+ contours_count = GET_Short();
- num_points = 0;
- num_contours = 0;
+ loader->bbox.xMin = GET_Short();
+ loader->bbox.yMin = GET_Short();
+ loader->bbox.xMax = GET_Short();
+ loader->bbox.yMax = GET_Short();
- load_top = 0;
- subglyph = exec->loadStack;
+ FORGET_Frame();
- Init_Glyph_Component( subglyph, NULL, exec );
+ FT_TRACE6(( "Glyph %ld\n", index ));
+ FT_TRACE6(( " # of contours : %d\n", num_contours ));
+ FT_TRACE6(( " xMin: %4d xMax: %4d\n", loader->bbox.xMin,
+ loader->bbox.xMax ));
+ FT_TRACE6(( " yMin: %4d yMax: %4d\n", loader->bbox.yMin,
+ loader->bbox.yMax ));
+ FT_TRACE6(( "-" ));
- subglyph->index = glyph_index;
- subglyph->is_hinted = !(load_flags & FT_LOAD_NO_HINTING);
+ count -= 10;
- /* when the cvt program has disabled hinting, the argument */
- /* is ignored. */
- if ( size && (size->GS.instruct_control & 1) )
- subglyph->is_hinted = FALSE;
+ if ( contours_count > loader->left_contours )
+ {
+ FT_TRACE0(( "ERROR: Too many contours for glyph %ld\n", index ));
+ error = TT_Err_Too_Many_Contours;
+ goto Fail;
+ }
- /* Main loading loop */
+ loader->pp1.x = loader->bbox.xMin - loader->left_bearing;
+ loader->pp1.y = 0;
+ loader->pp2.x = loader->pp1.x + loader->advance;
+ loader->pp2.y = 0;
+
+ if ((loader->load_flags & FT_LOAD_NO_SCALE)==0)
+ {
+ loader->pp1.x = FT_MulFix( loader->pp1.x, x_scale );
+ loader->pp2.x = FT_MulFix( loader->pp2.x, x_scale );
+ }
- phase = Load_Glyph;
- index = 0;
+ /*************************************************************************/
+ /*************************************************************************/
+ /*************************************************************************/
- while ( phase != Load_Exit )
+ /**********************************************************************/
+ /* if it is a simple glyph, load it */
+ if (contours_count >= 0)
{
- subglyph = exec->loadStack + load_top;
-
- switch ( phase )
+ TT_UInt num_base_points;
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ error = Load_Simple( loader,
+ count,
+ contours_count,
+ (TT_Bool)( loader->size &&
+ loader->size->debug ) );
+#else
+ error = Load_Simple( loader, count, contours_count, 0 );
+#endif
+ if ( error )
+ goto Fail;
+
+ /* Note: We could have put the simple loader source there */
+ /* but the code is fat enough already :-) */
+ num_points = loader->zone.n_points;
+ num_contours = loader->zone.n_contours;
+
+ num_base_points = loader->base.n_points;
{
+ TT_UInt k;
+ for ( k = 0; k < num_contours; k++ )
+ loader->zone.contours[k] += num_base_points;
+ }
- /************************************************************/
- /* */
- /* Load_Glyph state */
- /* */
- /* reading a glyph's generic data, checking whether the */
- /* glyph is cached already (not implemented yet) */
- /* */
- /* exit states: Load_Header and Load_End */
- /* */
- case Load_Glyph:
- /* check glyph index and table */
-
- index = (TT_UInt)subglyph->index;
- if ( index >= face->root.num_glyphs )
- {
- error = TT_Err_Invalid_Glyph_Index;
- goto Fail;
- }
-
- /* get horizontal metrics */
- {
- TT_Short left_bearing;
- TT_UShort advance_width;
-
- Get_HMetrics( face, index, TRUE,
- &left_bearing,
- &advance_width );
-
- subglyph->left_bearing = left_bearing;
- subglyph->advance = advance_width;
- }
-
- phase = Load_Header;
-
- /************************************************************/
- /* */
- /* Load_Header state */
- /* */
- /* reading a glyph's generic header to determine whether */
- /* it is a simple or composite glyph */
- /* */
- /* exit states: Load_Simple and Load_Composite */
- /* */
- case Load_Header:
- /* load glyph */
-
- offset = face->glyph_locations[index];
- count = 0;
- if (index < face->num_locations-1)
- count = face->glyph_locations[index+1] - offset;
-
- if (count == 0)
- {
- /* as described by Frederic Loyer, these are spaces, and */
- /* not the unknown glyph. */
-
- num_contours = 0;
- num_points = 0;
-
- subglyph->bbox.xMin = 0;
- subglyph->bbox.xMax = 0;
- subglyph->bbox.yMin = 0;
- subglyph->bbox.yMax = 0;
-
- subglyph->pp1.x = 0;
- subglyph->pp2.x = subglyph->advance;
-
- if ( !(load_flags & FT_LOAD_NO_SCALE) )
- subglyph->pp2.x = SCALE_X( subglyph->pp2.x );
-
- exec->glyphSize = 0;
- phase = Load_End;
- break;
- }
-
- offset = glyph_offset + offset;
-
- /* read first glyph header */
- if ( FILE_Seek( offset ) ||
- ACCESS_Frame( 10L ) )
- goto Fail_File;
-
- num_contours = GET_Short();
-
- subglyph->bbox.xMin = GET_Short();
- subglyph->bbox.yMin = GET_Short();
- subglyph->bbox.xMax = GET_Short();
- subglyph->bbox.yMax = GET_Short();
-
- FORGET_Frame();
-
- FT_TRACE6(( "Glyph %ld\n", index ));
- FT_TRACE6(( " # of contours : %d\n", num_contours ));
- FT_TRACE6(( " xMin: %4d xMax: %4d\n",
- subglyph->bbox.xMin,
- subglyph->bbox.xMax ));
- FT_TRACE6(( " yMin: %4d yMax: %4d\n",
- subglyph->bbox.yMin,
- subglyph->bbox.yMax ));
- FT_TRACE6(( "-" ));
-
- count -= 10;
-
- if ( num_contours > left_contours )
- {
- FT_TRACE0(( "ERROR: Too many contours for glyph %ld\n", index ));
- error = TT_Err_Too_Many_Contours;
- goto Fail;
- }
+ loader->base.n_points += num_points;
+ loader->base.n_contours += num_contours;
- subglyph->pp1.x = subglyph->bbox.xMin - subglyph->left_bearing;
- subglyph->pp1.y = 0;
- subglyph->pp2.x = subglyph->pp1.x + subglyph->advance;
- if (!(load_flags & FT_LOAD_NO_SCALE))
- {
- subglyph->pp1.x = SCALE_X( subglyph->pp1.x );
- subglyph->pp2.x = SCALE_X( subglyph->pp2.x );
- }
+ loader->zone.n_points = 0;
+ loader->zone.n_contours = 0;
- /* is it a simple glyph ? */
- if ( num_contours < 0 )
- {
- phase = Load_Composite;
- break;
- }
+ loader->left_points -= num_points;
+ loader->left_contours -= num_contours;
+ }
+ /*************************************************************************/
+ /*************************************************************************/
+ /*************************************************************************/
- phase = Load_Simple;
+ /************************************************************************/
+ else /* otherwise, load a composite !! */
+ {
+ /* for each subglyph, read composite header */
+ FT_SubGlyph* subglyph = subglyphs;
+
+ if (ACCESS_Frame(count)) goto Fail;
+
+ num_subglyphs = 0;
+ do
+ {
+ TT_Fixed xx, xy, yy, yx;
- /************************************************************/
- /* */
- /* Load_Simple state */
- /* */
- /* reading a simple glyph (num_contours must be set to */
- /* the glyph's number of contours.) */
- /* */
- /* exit state: Load_End */
- /* */
- case Load_Simple:
- new_flags = load_flags;
-
- /* disable hinting when scaling */
- if ( !subglyph->is_hinted )
- new_flags |= FT_LOAD_NO_HINTING;
-
- error = Load_Simple_Glyph( exec,
- stream,
- count,
- num_contours,
- left_contours,
- left_points,
- new_flags,
- subglyph,
- (TT_Bool)(size && size->debug &&
- load_top == 0) );
- if ( error )
- goto Fail;
-
- /* Note: We could have put the simple loader source there */
- /* but the code is fat enough already :-) */
-
- num_points = exec->pts.n_points - 2;
-
- phase = Load_End;
- break;
-
- /************************************************************/
- /* */
- /* Load_Composite state */
- /* */
- /* reading a composite glyph header and pushing a new */
- /* load element on the stack. */
- /* */
- /* exit state: Load_Glyph */
- /* */
- case Load_Composite:
-
- /* create a new element on the stack */
- load_top++;
-
- if ( load_top > face->max_components )
- {
- error = TT_Err_Invalid_Composite;
- goto Fail;
- }
-
- subglyph2 = exec->loadStack + load_top;
-
- Init_Glyph_Component( subglyph2, subglyph, NULL );
- subglyph2->is_hinted = subglyph->is_hinted;
-
- /* now read composite header */
-
- if ( ACCESS_Frame( 4L ) )
- goto Fail_File;
-
- subglyph->element_flag = new_flags = GET_UShort();
-
- subglyph2->index = GET_UShort();
-
- FORGET_Frame();
-
- k = 1+1;
-
- if ( new_flags & ARGS_ARE_WORDS )
- k *= 2;
-
- if ( new_flags & WE_HAVE_A_SCALE )
- k += 2;
-
- else if ( new_flags & WE_HAVE_AN_XY_SCALE )
- k += 4;
-
- else if ( new_flags & WE_HAVE_A_2X2 )
- k += 8;
-
- if ( ACCESS_Frame( k ) )
- goto Fail_File;
+ subglyph->arg1 = subglyph->arg2 = 0;
+
+ subglyph->flags = GET_UShort();
+ subglyph->index = GET_UShort();
- if ( new_flags & ARGS_ARE_WORDS )
+ /* read arguments */
+ if (subglyph->flags & ARGS_ARE_WORDS)
{
- k = GET_Short();
- l = GET_Short();
+ subglyph->arg1 = GET_Short();
+ subglyph->arg2 = GET_Short();
}
else
{
- k = GET_Char();
- l = GET_Char();
- }
-
- subglyph->arg1 = k;
- subglyph->arg2 = l;
-
- if ( new_flags & ARGS_ARE_XY_VALUES )
- {
- subglyph->transform.ox = k;
- subglyph->transform.oy = l;
+ subglyph->arg1 = GET_Char();
+ subglyph->arg2 = GET_Char();
}
-
- xx = 0x10000;
- xy = 0;
- yx = 0;
- yy = 0x10000;
-
- if ( new_flags & WE_HAVE_A_SCALE )
+
+ /* read transform */
+ xx = yy = 0x10000;
+ xy = yx = 0;
+
+ if (subglyph->flags & WE_HAVE_A_SCALE)
{
xx = (TT_Fixed)GET_Short() << 2;
yy = xx;
- subglyph2->is_scaled = TRUE;
}
- else if ( new_flags & WE_HAVE_AN_XY_SCALE )
+ else if (subglyph->flags & WE_HAVE_AN_XY_SCALE)
{
xx = (TT_Fixed)GET_Short() << 2;
yy = (TT_Fixed)GET_Short() << 2;
- subglyph2->is_scaled = TRUE;
}
- else if ( new_flags & WE_HAVE_A_2X2 )
+ else if (subglyph->flags & WE_HAVE_A_2X2)
{
xx = (TT_Fixed)GET_Short() << 2;
xy = (TT_Fixed)GET_Short() << 2;
yx = (TT_Fixed)GET_Short() << 2;
yy = (TT_Fixed)GET_Short() << 2;
- subglyph2->is_scaled = TRUE;
}
-
- FORGET_Frame();
-
+
subglyph->transform.xx = xx;
subglyph->transform.xy = xy;
subglyph->transform.yx = yx;
subglyph->transform.yy = yy;
+
+ subglyph++;
+ num_subglyphs++;
+ if (num_subglyphs >= TT_MAX_SUBGLYPHS)
+ break;
+ }
+ while (subglyph[-1].flags & MORE_COMPONENTS);
- k = FT_MulFix( xx, yy ) - FT_MulFix( xy, yx );
-
- /* disable hinting in case of scaling/slanting */
- if ( ABS( k ) != 0x10000 )
- subglyph2->is_hinted = FALSE;
-
- subglyph->file_offset = FILE_Pos();
-
- phase = Load_Glyph;
- break;
-
- /************************************************************/
- /* */
- /* Load_End state */
- /* */
- /* after loading a glyph, apply transformation and offset */
- /* where necessary, pop element and continue or stop */
- /* process. */
- /* */
- /* exit states: Load_Composite and Load_Exit */
- /* */
- case Load_End:
- if ( load_top > 0 )
- {
- subglyph2 = subglyph;
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ {
+ /* we must undo the ACCESS_Frame in order to point to the */
+ /* composite instructions, if we find some .. */
+ /* we will process them later.. */
+ ins_offset = FILE_Pos() + stream->cursor - stream->limit;
+ FORGET_Frame();
+ }
+#endif
- load_top--;
- subglyph = exec->loadStack + load_top;
+ /*************************************************************************/
+ /*************************************************************************/
+ /*************************************************************************/
- /* check advance width and left side bearing */
+ /*********************************************************************/
+ /* Now, read each subglyph independently.. */
+ {
+ TT_Int n, num_base_points, num_new_points;
+
+ subglyph = subglyphs;
+ for ( n = 0; n < num_subglyphs; n++, subglyph++ )
+ {
+ TT_Vector pp1, pp2;
+ TT_Pos x, y;
+
+ pp1 = loader->pp1;
+ pp2 = loader->pp2;
- if ( !subglyph->preserve_pps &&
- subglyph->element_flag & USE_MY_METRICS )
+ num_base_points = loader->base.n_points;
+
+ error = load_truetype_glyph( loader, subglyph->index );
+ if ((subglyph->flags & USE_MY_METRICS) == 0)
{
- subglyph->left_bearing = subglyph2->left_bearing;
- subglyph->advance = subglyph2->advance;
-
- subglyph->pp1 = subglyph2->pp1;
- subglyph->pp2 = subglyph2->pp2;
-
- subglyph->preserve_pps = TRUE;
+ loader->pp1 = pp1;
+ loader->pp2 = pp2;
}
-
- /* apply scale */
-
- if ( subglyph2->is_scaled )
+
+ num_points = loader->base.n_points;
+ num_contours = loader->base.n_contours;
+
+ num_new_points = num_points - num_base_points;
+
+ /********************************************************/
+ /* now perform the transform required for this subglyph */
+
+ if ( subglyph->flags & ( WE_HAVE_A_SCALE |
+ WE_HAVE_AN_XY_SCALE |
+ WE_HAVE_A_2X2 ) )
{
- TT_Vector* cur = subglyph2->zone.cur;
- TT_Vector* org = subglyph2->zone.org;
+ TT_Vector* cur = loader->zone.cur;
+ TT_Vector* org = loader->zone.org;
+ TT_Vector* limit = cur + num_new_points;
-
- for ( u = 0; u < num_points; u++ )
+ for ( ; cur < limit; cur++, org++ )
{
+ TT_Pos nx, ny;
+
nx = FT_MulFix( cur->x, subglyph->transform.xx ) +
FT_MulFix( cur->y, subglyph->transform.yx );
@@ -1212,55 +758,39 @@
org->x = nx;
org->y = ny;
-
- cur++;
- org++;
}
}
- /* adjust counts */
-
- num_elem_points = subglyph->zone.n_points;
-
- for ( k = 0; k < num_contours; k++ )
- subglyph2->zone.contours[k] += num_elem_points;
-
- subglyph->zone.n_points += num_points;
- subglyph->zone.n_contours += num_contours;
-
- left_points -= num_points;
- left_contours -= num_contours;
-
/* apply offset */
- if ( !(subglyph->element_flag & ARGS_ARE_XY_VALUES) )
+ if ( !(subglyph->flags & ARGS_ARE_XY_VALUES) )
{
- k = subglyph->arg1;
- l = subglyph->arg2;
+ TT_Int k = subglyph->arg1;
+ TT_UInt l = subglyph->arg2;
- if ( k >= num_elem_points ||
- l >= num_points )
+ if ( k >= num_base_points ||
+ l >= (TT_UInt)num_new_points )
{
error = TT_Err_Invalid_Composite;
goto Fail;
}
- l += num_elem_points;
+ l += num_base_points;
- x = subglyph->zone.cur[k].x - subglyph->zone.cur[l].x;
- y = subglyph->zone.cur[k].y - subglyph->zone.cur[l].y;
+ x = loader->base.cur[k].x - loader->base.cur[l].x;
+ y = loader->base.cur[k].y - loader->base.cur[l].y;
}
else
{
- x = subglyph->transform.ox;
- y = subglyph->transform.oy;
+ x = subglyph->arg1;
+ y = subglyph->arg2;
- if (!(load_flags & FT_LOAD_NO_SCALE))
+ if (!(loader->load_flags & FT_LOAD_NO_SCALE))
{
- x = SCALE_X( x );
- y = SCALE_Y( y );
+ x = FT_MulFix( x, x_scale );
+ y = FT_MulFix( y, y_scale );
- if ( subglyph->element_flag & ROUND_XY_TO_GRID )
+ if ( subglyph->flags & ROUND_XY_TO_GRID )
{
x = (x + 32) & -64;
y = (y + 32) & -64;
@@ -1268,58 +798,157 @@
}
}
- translate_array( num_points, subglyph2->zone.cur, x, y );
-
- cur_to_org( num_points, &subglyph2->zone );
-
- num_points = subglyph->zone.n_points;
- num_contours = subglyph->zone.n_contours;
-
- /* check for last component */
+ translate_array( num_new_points, loader->zone.cur, x, y );
+ cur_to_org( num_new_points, &loader->zone );
+ }
+
+ /*************************************************************************/
+ /*************************************************************************/
+ /*************************************************************************/
- if ( FILE_Seek( subglyph->file_offset ) )
- goto Fail_File;
+ /* we have finished loading all sub-glyphs, now, look for */
+ /* instructions for this composite !! */
- if ( subglyph->element_flag & MORE_COMPONENTS )
- phase = Load_Composite;
- else
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ subglyph--;
+ if (num_subglyphs > 0 && subglyph->flags & WE_HAVE_INSTR)
+ {
+ TT_UShort n_ins;
+ TT_ExecContext exec = loader->exec;
+ TT_UInt n_points = loader->base.n_points;
+ TT_GlyphZone* pts;
+ TT_Vector* pp1;
+
+ /* read size of instructions */
+ if ( FILE_Seek( ins_offset ) ||
+ READ_UShort(n_ins) ) goto Fail;
+ FT_TRACE4(( "Instructions size = %d\n", n_ins ));
+
+ /* check it */
+ if ( n_ins > face->max_profile.maxSizeOfInstructions )
+ {
+ FT_TRACE0(( "Too many instructions in composite glyph %ld\n",
+ subglyph->index ));
+ return TT_Err_Too_Many_Ins;
+ }
+
+ /* read the instructions */
+ if ( FILE_Read( exec->glyphIns, n_ins ) )
+ goto Fail;
+
+ error = TT_Set_CodeRange( exec,
+ tt_coderange_glyph,
+ exec->glyphIns,
+ n_ins );
+ if ( error ) goto Fail;
+
+ /* prepare the execution context */
+ exec->pts = loader->base;
+ pts = &exec->pts;
+
+ pts->n_points = num_points + 2;
+ pts->n_contours = num_contours;
+
+ /* add phantom points */
+ pp1 = pts->cur + num_points;
+ pp1[0] = loader->pp1;
+ pp1[1] = loader->pp2;
+
+ pts->touch[num_points - 1] = 0;
+ pts->touch[num_points - 2] = 0;
+
+ /* if hinting, round the phantom points */
+ if ( IS_HINTED(loader->load_flags) )
+ {
+ pp1[0].x = ((loader->pp1.x + 32) & -64);
+ pp1[1].x = ((loader->pp2.x + 32) & -64);
+ }
+
+ {
+ TT_UInt k;
+ for ( k = 0; k < n_points; k++ )
+ pts->touch[k] &= FT_Curve_Tag_On;
+ }
+
+ cur_to_org( n_points, pts );
+
+ /* now consider hinting */
+ if ( IS_HINTED(loader->load_flags) && n_ins > 0 )
{
- error = Load_Composite_End( num_points,
- num_contours,
- exec,
- subglyph,
- stream,
- load_flags,
- (TT_Bool)(size && size->debug &&
- load_top == 0) );
- if ( error )
+ exec->is_composite = TRUE;
+ exec->pedantic_hinting =
+ (TT_Bool)(loader->load_flags & FT_LOAD_PEDANTIC);
+
+ error = TT_Run_Context( exec, loader->size->debug );
+ if ( error && exec->pedantic_hinting )
goto Fail;
-
- phase = Load_End;
}
+
+ /* save glyph origin and advance points */
+ loader->pp1 = pp1[0];
+ loader->pp2 = pp1[1];
}
- else
- phase = Load_Exit;
-
- break;
-
- case Load_Exit:
- break;
+#endif
+
}
}
- /* finally, copy the points arrays to the glyph object */
+ /*************************************************************************/
+ /*************************************************************************/
+ /*************************************************************************/
+ /*************************************************************************/
+
+ Load_End:
+ error = TT_Err_Ok;
+
+ Fail:
+ return error;
+ }
- exec->pts = base_pts;
- for ( u = 0; u < num_points + 2; u++ )
+
+
+
+ static
+ void compute_glyph_metrics( TT_Loader* loader,
+ TT_UInt glyph_index )
+ {
+ TT_UInt num_points = loader->base.n_points;
+ TT_UInt num_contours = loader->base.n_contours;
+ TT_BBox bbox;
+ TT_Face face = loader->face;
+ TT_Fixed x_scale, y_scale;
+ TT_GlyphSlot glyph = loader->glyph;
+ TT_Size size = loader->size;
+
+ /* when a simple glyph was loaded, the value of */
+ /* "base.n_points" and "base.n_contours" is 0, we must */
+ /* take those in the "zone" instead.. */
+ if ( num_points == 0 && num_contours == 0 )
+ {
+ num_points = loader->zone.n_points;
+ num_contours = loader->zone.n_contours;
+ }
+
+ x_scale = 0x10000;
+ y_scale = 0x10000;
+ if ( (loader->load_flags & FT_LOAD_NO_SCALE) == 0)
{
- glyph->outline.points[u] = exec->pts.cur[u];
- glyph->outline.flags [u] = exec->pts.touch[u];
+ x_scale = size->root.metrics.x_scale;
+ y_scale = size->root.metrics.y_scale;
}
+
+ {
+ TT_UInt u;
+ for ( u = 0; u < num_points + 2; u++ )
+ {
+ glyph->outline.points[u] = loader->base.cur[u];
+ glyph->outline.flags [u] = loader->base.touch[u];
+ }
- for ( k = 0; k < num_contours; k++ )
- glyph->outline.contours[k] = exec->pts.contours[k];
+ for ( u = 0; u < num_contours; u++ )
+ glyph->outline.contours[u] = loader->base.contours[u];
+ }
glyph->outline.n_points = num_points;
glyph->outline.n_contours = num_contours;
@@ -1328,12 +957,12 @@
/* translate array so that (0,0) is the glyph's origin */
translate_array( (TT_UShort)(num_points + 2),
glyph->outline.points,
- -subglyph->pp1.x,
+ -loader->pp1.x,
0 );
FT_Get_Outline_CBox( &glyph->outline, &bbox );
- if ( subglyph->is_hinted )
+ if ( IS_HINTED(loader->load_flags) )
{
/* grid-fit the bounding box */
bbox.xMin &= -64;
@@ -1348,17 +977,16 @@
TT_Pos left_bearing;
TT_Pos advance;
-
- left_bearing = subglyph->left_bearing;
- advance = subglyph->advance;
+ left_bearing = loader->left_bearing;
+ advance = loader->advance;
if ( face->postscript.isFixedPitch )
advance = face->horizontal.advance_Width_Max;
- if ( !(load_flags & FT_LOAD_NO_SCALE) )
+ if ( !(loader->load_flags & FT_LOAD_NO_SCALE) )
{
- left_bearing = SCALE_X( left_bearing );
- advance = SCALE_X( advance );
+ left_bearing = FT_MulFix( left_bearing, x_scale );
+ advance = FT_MulFix( advance, x_scale );
}
glyph->metrics2.horiBearingX = left_bearing;
@@ -1367,7 +995,7 @@
glyph->metrics.horiBearingX = bbox.xMin;
glyph->metrics.horiBearingY = bbox.yMax;
- glyph->metrics.horiAdvance = subglyph->pp2.x - subglyph->pp1.x;
+ glyph->metrics.horiAdvance = loader->pp2.x - loader->pp1.x;
/* Now take care of vertical metrics. In the case where there is */
/* no vertical information within the font (relatively common), make */
@@ -1430,16 +1058,17 @@
TT_Get_Outline_BBox() */
/* scale the metrics */
- if ( !(load_flags & FT_LOAD_NO_SCALE) )
+ if ( !(loader->load_flags & FT_LOAD_NO_SCALE) )
{
- Top = SCALE_Y( top_bearing );
- top = SCALE_Y( top_bearing + subglyph->bbox.yMax ) - bbox.yMax;
- advance = SCALE_Y( advance_height );
+ Top = FT_MulFix( top_bearing, y_scale );
+ top = FT_MulFix( top_bearing + loader->bbox.yMax, y_scale )
+ - bbox.yMax;
+ advance = FT_MulFix( advance_height, y_scale );
}
else
{
Top = top_bearing;
- top = top_bearing + subglyph->bbox.yMax - bbox.yMax;
+ top = top_bearing + loader->bbox.yMax - bbox.yMax;
advance = advance_height;
}
@@ -1452,7 +1081,7 @@
left = ( bbox.xMin - bbox.xMax ) / 2;
/* grid-fit them if necessary */
- if ( subglyph->is_hinted )
+ if ( IS_HINTED(loader->load_flags) )
{
left &= -64;
top = (top + 63) & -64;
@@ -1465,36 +1094,198 @@
}
/* Adjust advance width to the value contained in the hdmx table. */
- if ( !exec->face->postscript.isFixedPitch && size &&
- subglyph->is_hinted )
+ if ( !face->postscript.isFixedPitch && size &&
+ IS_HINTED(loader->load_flags) )
{
- widths = Get_Advance_Widths( exec->face,
- exec->size->root.metrics.x_ppem );
+ TT_Byte* widths = Get_Advance_Widths( face,
+ size->root.metrics.x_ppem );
if ( widths )
glyph->metrics.horiAdvance = widths[glyph_index] << 6;
}
- glyph->outline.dropout_mode = (TT_Char)exec->GS.scan_type;
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ glyph->outline.dropout_mode = (TT_Char)loader->exec->GS.scan_type;
+#else
+ glyph->outline.dropout_mode = 2;
+#endif
/* set glyph dimensions */
glyph->metrics.width = bbox.xMax - bbox.xMin;
glyph->metrics.height = bbox.yMax - bbox.yMin;
glyph->format = ft_glyph_format_outline;
+ }
- error = TT_Err_Ok;
- Fail_File:
- Fail:
- /* reset the execution context */
- exec->pts = base_pts;
+
+
+
+
+
+
+
+
+ LOCAL_FUNC
+ TT_Error TT_Load_Glyph( TT_Size size,
+ TT_GlyphSlot glyph,
+ TT_UShort glyph_index,
+ TT_UInt load_flags )
+ {
+ SFNT_Interface* sfnt;
+ TT_Face face;
+ FT_Stream stream;
+ FT_Memory memory;
+ TT_Error error;
+ TT_Loader loader;
+
+ face = (TT_Face)glyph->face;
+ sfnt = (SFNT_Interface*)face->sfnt;
+ stream = face->root.stream;
+ memory = face->root.memory;
+ error = 0;
+
+ if ( !size || (load_flags & FT_LOAD_NO_SCALE) )
+ {
+ size = NULL;
+ load_flags |= FT_LOAD_NO_SCALE |
+ FT_LOAD_NO_HINTING |
+ FT_LOAD_NO_BITMAP;
+ }
+
+#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
+ /*********************************************************************/
+ /* Try to load embedded bitmap if any */
+ if ( size && (load_flags & FT_LOAD_NO_BITMAP) == 0 && sfnt->load_sbits )
+ {
+ TT_SBit_Metrics metrics;
+
+ error = sfnt->load_sbit_image( face,
+ size->root.metrics.x_ppem,
+ size->root.metrics.y_ppem,
+ glyph_index,
+ stream,
+ &glyph->bitmap,
+ &metrics );
+ if ( !error )
+ {
+ glyph->outline.n_points = 0;
+ glyph->outline.n_contours = 0;
+
+ glyph->metrics.width = (TT_Pos)metrics.width << 6;
+ glyph->metrics.height = (TT_Pos)metrics.height << 6;
+
+ glyph->metrics.horiBearingX = (TT_Pos)metrics.horiBearingX << 6;
+ glyph->metrics.horiBearingY = (TT_Pos)metrics.horiBearingY << 6;
+ glyph->metrics.horiAdvance = (TT_Pos)metrics.horiAdvance << 6;
+
+ glyph->metrics.vertBearingX = (TT_Pos)metrics.vertBearingX << 6;
+ glyph->metrics.vertBearingY = (TT_Pos)metrics.vertBearingY << 6;
+ glyph->metrics.vertAdvance = (TT_Pos)metrics.vertAdvance << 6;
+
+ glyph->format = ft_glyph_format_bitmap;
+ return error;
+ }
+ }
+#endif /* TT_CONFIG_OPTION_EMBEDDED_BITMAPS */
+
+ if ( load_flags & FT_LOAD_NO_OUTLINE )
+ return ( error ? error : TT_Err_Unavailable_Bitmap );
+
+ /* seek to the beginning of the glyph table. For Type 43 fonts */
+ /* the table might be accessed from a Postscript stream or something */
+ /* else... */
+ error = face->goto_table( face, TTAG_glyf, stream, 0 );
+ if (error)
+ {
+ FT_ERROR(( "TT.GLoad: could not access glyph table\n" ));
+ return error;
+ }
+
+ MEM_Set( &loader, 0, sizeof(loader) );
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ if ( size )
+ {
+ /* query new execution context */
+ loader.exec = size->debug ? size->context : TT_New_Context(face);
+ if ( !loader.exec )
+ return TT_Err_Could_Not_Find_Context;
+
+ TT_Load_Context( loader.exec, face, size );
+
+ /* load default graphics state - if needed */
+ if ( size->GS.instruct_control & 2 )
+ loader.exec->GS = tt_default_graphics_state;
+ }
+#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
+
+ if (size)
+ glyph->outline.high_precision = ( size->root.metrics.y_ppem < 24 );
+
+ /************************************************************************/
+ /* let's initialise our loader now */
+ error = TT_New_GlyphZone( memory, &loader.base,
+ face->root.max_points, face->root.max_contours );
+ if (error) return error;
+
+ loader.left_points = face->root.max_points;
+ loader.left_contours = face->root.max_contours;
+ loader.load_flags = load_flags;
+
+ loader.face = face;
+ loader.size = size;
+ loader.glyph = glyph;
+ loader.stream = stream;
+
+ loader.glyf_offset = FILE_Pos();
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ /* when the cvt program has disabled hinting, the argument */
+ /* is ignored. */
+ if ( size && (size->GS.instruct_control & 1) )
+ loader.load_flags |= FT_LOAD_NO_HINTING;
+#endif
+
+ /* Main loading loop */
+ error = load_truetype_glyph( &loader, glyph_index );
+ if (!error)
+ compute_glyph_metrics( &loader, glyph_index );
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
if ( !size || !size->debug )
- TT_Done_Context( exec );
+ TT_Done_Context( loader.exec );
+#endif
+ TT_Done_GlyphZone( memory, &loader.base );
return error;
}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
/* END */
diff --git a/src/truetype/ttgload.h b/src/truetype/ttgload.h
index d544cee..3dcdabf 100644
--- a/src/truetype/ttgload.h
+++ b/src/truetype/ttgload.h
@@ -21,10 +21,47 @@
#include <ttobjs.h>
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+#include <ttinterp.h>
+#endif
+
#ifdef __cplusplus
extern "C" {
#endif
+ typedef struct TT_Loader_
+ {
+ TT_Face face;
+ TT_Size size;
+ TT_GlyphSlot glyph;
+
+ TT_ULong load_flags;
+
+ FT_Stream stream;
+ TT_Int byte_len;
+ TT_Int left_points;
+ TT_Int left_contours;
+
+ TT_BBox bbox;
+ TT_Int left_bearing;
+ TT_Int advance;
+ TT_Bool preserve_pps;
+ TT_Vector pp1;
+ TT_Vector pp2;
+
+ TT_ULong glyf_offset;
+
+ /* the zone where we load our glyphs */
+ TT_GlyphZone base;
+ TT_GlyphZone zone;
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+ TT_ExecContext exec;
+ TT_Byte* instructions;
+#endif
+
+ } TT_Loader;
+
/*************************************************************************/
/* */
@@ -53,7 +90,7 @@
/* */
LOCAL_DEF
void TT_Get_Metrics( TT_HoriHeader* header,
- TT_UShort index,
+ TT_UInt index,
TT_Short* bearing,
TT_UShort* advance );
diff --git a/src/truetype/ttobjs.c b/src/truetype/ttobjs.c
index 262f3e1..aa7b03b 100644
--- a/src/truetype/ttobjs.c
+++ b/src/truetype/ttobjs.c
@@ -21,13 +21,18 @@
#include <ftcalc.h>
#include <ftstream.h>
#include <ttnameid.h>
+#include <tttags.h>
#include <sfnt.h>
+#include <ttobjs.h>
#include <ttpload.h>
-#include <ttinterp.h>
#include <tterrors.h>
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+#include <ttinterp.h>
+#endif
+
/* required by tracing mode */
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttobjs
@@ -442,14 +447,16 @@
LOCAL_DEF
TT_Error TT_Init_Size( TT_Size size )
{
+ TT_Error error = 0;
+
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
TT_Face face = (TT_Face)size->root.face;
FT_Memory memory = face->root.memory;
- TT_Error error;
TT_Int i;
- TT_UShort n_twilight;
- TT_MaxProfile* maxp = &face->max_profile;
TT_ExecContext exec;
+ TT_UShort n_twilight;
+ TT_MaxProfile* maxp = &face->max_profile;
size->ttmetrics.valid = FALSE;
@@ -587,14 +594,19 @@
if ( !size->debug )
TT_Done_Context( exec );
+#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
+
size->ttmetrics.valid = FALSE;
return error;
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
Fail_Exec:
if ( !size->debug )
TT_Done_Context( exec );
Fail_Memory:
+#endif
+
TT_Done_Size( size );
return error;
}
@@ -614,9 +626,9 @@
LOCAL_FUNC
void TT_Done_Size( TT_Size size )
{
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
FT_Memory memory = size->root.face->memory;
-
if ( size->debug )
{
/* the debug context must be deleted by the debugger itself */
@@ -643,6 +655,7 @@
size->max_func = 0;
size->max_ins = 0;
+#endif
size->ttmetrics.valid = FALSE;
}
@@ -663,10 +676,8 @@
LOCAL_DEF
TT_Error TT_Reset_Size( TT_Size size )
{
- TT_ExecContext exec;
- TT_Error error;
- TT_UShort i, j;
- TT_Face face;
+ TT_Face face;
+ TT_Error error = TT_Err_Ok;
FT_Size_Metrics* metrics;
@@ -713,72 +724,79 @@
metrics->max_advance = ( FT_MulFix( face->root.max_advance_width,
metrics->x_scale ) + 32 ) & -64;
- /* Scale the cvt values to the new ppem. */
- /* We use by default the y ppem to scale the CVT. */
-
- for ( i = 0; i < size->cvt_size; i++ )
- size->cvt[i] = FT_MulFix( face->cvt[i], size->ttmetrics.scale );
-
- /* All twilight points are originally zero */
- for ( j = 0; j < size->twilight.n_points; j++ )
- {
- size->twilight.org[j].x = 0;
- size->twilight.org[j].y = 0;
- size->twilight.cur[j].x = 0;
- size->twilight.cur[j].y = 0;
- }
-
- /* clear storage area */
- for ( i = 0; i < size->storage_size; i++ )
- size->storage[i] = 0;
-
- size->GS = tt_default_graphics_state;
-
- /* get execution context and run prep program */
- if ( size->debug )
- exec = size->context;
- else
- exec = TT_New_Context( face );
- /* debugging instances have their own context */
-
- if ( !exec )
- return TT_Err_Could_Not_Find_Context;
-
- TT_Load_Context( exec, face, size );
-
- TT_Set_CodeRange( exec,
- tt_coderange_cvt,
- face->cvt_program,
- face->cvt_program_size );
-
- TT_Clear_CodeRange( exec, tt_coderange_glyph );
-
- exec->instruction_trap = FALSE;
-
- exec->top = 0;
- exec->callTop = 0;
-
- if ( face->cvt_program_size > 0 )
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
{
- error = TT_Goto_CodeRange( exec, tt_coderange_cvt, 0 );
- if ( error )
- goto Fin;
-
+ TT_ExecContext exec;
+ TT_UInt i, j;
+
+ /* Scale the cvt values to the new ppem. */
+ /* We use by default the y ppem to scale the CVT. */
+
+ for ( i = 0; i < size->cvt_size; i++ )
+ size->cvt[i] = FT_MulFix( face->cvt[i], size->ttmetrics.scale );
+
+ /* All twilight points are originally zero */
+ for ( j = 0; j < size->twilight.n_points; j++ )
+ {
+ size->twilight.org[j].x = 0;
+ size->twilight.org[j].y = 0;
+ size->twilight.cur[j].x = 0;
+ size->twilight.cur[j].y = 0;
+ }
+
+ /* clear storage area */
+ for ( i = 0; i < size->storage_size; i++ )
+ size->storage[i] = 0;
+
+ size->GS = tt_default_graphics_state;
+
+ /* get execution context and run prep program */
+ if ( size->debug )
+ exec = size->context;
+ else
+ exec = TT_New_Context( face );
+ /* debugging instances have their own context */
+
+ if ( !exec )
+ return TT_Err_Could_Not_Find_Context;
+
+ TT_Load_Context( exec, face, size );
+
+ TT_Set_CodeRange( exec,
+ tt_coderange_cvt,
+ face->cvt_program,
+ face->cvt_program_size );
+
+ TT_Clear_CodeRange( exec, tt_coderange_glyph );
+
+ exec->instruction_trap = FALSE;
+
+ exec->top = 0;
+ exec->callTop = 0;
+
+ if ( face->cvt_program_size > 0 )
+ {
+ error = TT_Goto_CodeRange( exec, tt_coderange_cvt, 0 );
+ if ( error )
+ goto Fin;
+
+ if ( !size->debug )
+ error = face->interpreter( exec );
+ }
+ else
+ error = TT_Err_Ok;
+
+ size->GS = exec->GS;
+ /* save default graphics state */
+
+ Fin:
+ TT_Save_Context( exec, size );
+
if ( !size->debug )
- error = face->interpreter( exec );
+ TT_Done_Context( exec );
+ /* debugging instances keep their context */
}
- else
- error = TT_Err_Ok;
-
- size->GS = exec->GS;
- /* save default graphics state */
-
- Fin:
- TT_Save_Context( exec, size );
-
- if ( !size->debug )
- TT_Done_Context( exec );
- /* debugging instances keep their context */
+#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
if ( !error )
size->ttmetrics.valid = TRUE;
@@ -888,12 +906,14 @@
TT_Done_Extensions( driver );
#endif
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
/* destroy the execution context */
if ( driver->context )
{
TT_Destroy_Context( driver->context, driver->root.memory );
driver->context = NULL;
}
+#endif
}
diff --git a/src/truetype/ttobjs.h b/src/truetype/ttobjs.h
index e4befb5..257a3b6 100644
--- a/src/truetype/ttobjs.h
+++ b/src/truetype/ttobjs.h
@@ -330,6 +330,7 @@
TT_Size_Metrics ttmetrics;
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
TT_UInt num_function_defs; /* number of function definitions */
TT_UInt max_function_defs;
TT_DefArray function_defs; /* table of function definitions */
@@ -362,6 +363,8 @@
TT_Bool debug;
TT_ExecContext context;
+#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
+
} TT_SizeRec;