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 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237
|
/*--------------------------------------------------------------------
*
* Copyright (c) 2009-2025 by the GMT Team (https://www.generic-mapping-tools.org/team.html)
* See LICENSE.TXT file for copying and redistribution conditions.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3 or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* Contact info: www.generic-mapping-tools.org
*--------------------------------------------------------------------*/
/* PSL: PostScript Light
*
* PSL is a library of plot functions that create PostScript.
* All the routines write their output to the same plotting file,
* which can be dumped to a Postscript output device (laserwriters).
* PSL can handle and mix text, line-drawings, and bit-map graphics
* in both black/white and color. Colors are specified with r,g,b
* values in the range 0-1.
*
* PSL conforms to the Encapsulated PostScript Files Specification V 3.0.
*
* C considerations:
* Include postscriptlight.h in your program.
* All floating point data are assumed to be of type double.
* All integer data are assumed to be of type long.
*
* FORTRAN considerations:
* All floating point data are assumed to be DOUBLE PRECISION
* All integer data are assumed to be a long INTEGER, i.e. INTEGER*8
*
* When passing (from FORTRAN to C) a fixed-length character variable which has
* blanks at the end, append '\0' (null character) after the last non-blank
* character. This is so that C will know where the character string ends.
* It is NOT sufficient to pass, for example, "string(1:string_length)".
*
* List of API functions:
*
* PSL_beginaxes
* PSL_beginclipping : Clips plot outside the specified polygon
* PSL_beginlayer : Place begin object group DSC comment.
* PSL_beginplot : Initialize parameters for a new plot.
* PSL_beginsession : Creates a new PSL session
* PSL_copy : Writes the given string as is to the PS output
* PSL_endaxes : Turns off mapping of user coordinates to PS units
* PSL_endclipping : Restores previous clipping path
* PSL_endlayer : Place end object group DSC comment.
* PSL_endplot : Close plotfile
* PSL_endsession : Terminates the PSL session
* PSL_getplot : Return string with entire PS code
* PSL_plotarc : Plots a circular arc
* PSL_plotaxis : Plots an axis with tickmarks and annotation/label
* PSL_plotbitimage : Plots a 1-bit image or imagemask
* PSL_plotcolorimage : Plots a 24-bit 2-D image using the colorimage operator
* PSL_plotepsimage : Inserts EPS image
* PSL_plotline : Plots a line
* PSL_plotparagraph : Plots a text paragraph
* PSL_plotparagraphbox : Plots a box beneath a text paragraph
* PSL_plotpoint : Absolute or relative move to new position (pen up or down)
* PSL_plotpolygon : Creates a polygon and optionally fills it
* PSL_plotsegment : Plots a 2-point straight line segment
* PSL_plotsymbol : Plots a geometric symbol and [optionally] fills it
* PSL_plottext : Plots textstring
* PSL_plottextbox : Draw a filled box around a textstring
* PSL_plottextline : Place labels along paths (straight or curved), set clip path, draw line
* PSL_loadeps : Read EPS file into string
* PSL_command : Writes a given PostScript statement to the plot file
* PSL_comment : Writes a comment statement to the plot file
* PSL_makecolor : Returns string with PostScript command to set a new color
* PSL_makepen : Returns string with PostScript command to set a new pen
* PSL_setcolor : Sets the pen color or pattern
* PSL_setcurrentpoint : Sets the current point
* PSL_setdefaults : Change several PSL session default values
* PSL_setdash : Specify pattern for dashed line
* PSL_setfill : Sets the fill color or pattern
* PSL_setfont : Changes current font and possibly re-encodes it to current encoding
* PSL_setformat : Changes # of decimals used in color and gray specs [3]
* PSL_setlinecap : Changes the line cap setting
* PSL_setlinejoin : Changes the line join setting
* PSL_setlinewidth : Sets a new linewidth
* PSL_setmiterlimit : Changes the miter limit setting for joins
* PSL_setimage : Sets up an image pattern fill in PS
* PSL_setorigin : Translates/rotates the coordinate system
* PSL_setparagraph : Sets parameters used to typeset text paragraphs
* PSL_settransparencymode : Set a new mode for how transparency is understoody
* PSL_settransparency : Set a new transparency
* PSL_defpen : Encodes a pen with attributes by name in the PS output
* PSL_definteger : Encodes an integer by name in the PS output
* PSL_defpoints : Encodes a pointsize by name in the PS output
* PSL_defcolor : Encodes a rgb color by name in the PS output
* PSL_deftextdim : Sets variables for text height and width in the PS output
* PSL_defunits: : Encodes a dimension by name in the PS output
*
* For information about usage, syntax etc, see the postscriptlight documentation
*
* Authors: Paul Wessel, Dept. of Geology and Geophysics, SOEST, U Hawaii
* pwessel@hawaii.edu
* Remko Scharroo, EUMETSAT, Darmstadt, Germany
* Remko.Scharroo@eumetsat.int
* Date: 13-OCT-2017
* Version: 6.0 [64-bit enabled API edition, decoupled from GMT]
*
* Thanks to J. Goff and L. Parkes for their contributions to an earlier version.
*
*/
/*--------------------------------------------------------------------
* SYSTEM HEADER FILES
*--------------------------------------------------------------------*/
#include <float.h>
#include <limits.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <stdarg.h>
#include <stdbool.h>
#include <inttypes.h> /* Exact-width integer types */
#include "postscriptlight.h"
#ifdef HAVE_CTYPE_H_
# include <ctype.h>
#endif
#ifdef HAVE_ASSERT_H_
# include <assert.h>
#else
# define assert(e) ((void)0)
#endif
#ifdef HAVE_UNISTD_H_
# include <unistd.h>
#endif
#ifdef __CYGWIN__ /* See http://gmt.soest.hawaii.edu/boards/1/topics/5428 */
#ifdef __x86_64
#define lrint(x) ((long int)(int)lrint(x))
#endif
#endif
/*
* Windows headers
*/
#ifdef HAVE_IO_H_
# include <io.h>
#endif
#ifdef HAVE_PROCESS_H_
# include <process.h>
#endif
#ifdef HAVE_ZLIB
# include <zlib.h>
#endif
#ifndef PATH_MAX
# define PATH_MAX 1024
#endif
/* Size prefixes for printf/scanf for size_t and ptrdiff_t */
#ifdef _MSC_VER
# define PRIuS "Iu" /* printf size_t */
#else
# define PRIuS "zu" /* printf size_t */
#endif
#if _WIN32
#include <fcntl.h> /* for _O_TEXT and _O_BINARY */
#endif
/* Define bswap32 */
#undef bswap32
#ifdef HAVE___BUILTIN_BSWAP32
# define bswap32 __builtin_bswap32
#elif defined __GNUC__ && (defined __i386__ || defined __x86_64__)
# define bswap32 gnuc_bswap32
static inline uint32_t inline_bswap32 (uint32_t x) {
return
(((x & 0xFF000000U) >> 24) |
((x & 0x00FF0000U) >> 8) |
((x & 0x0000FF00U) << 8) |
((x & 0x000000FFU) << 24));
}
static inline uint32_t gnuc_bswap32(uint32_t x) {
if (__builtin_constant_p(x))
x = inline_bswap32(x);
else
__asm__("bswap %0" : "+r" (x));
return x;
}
#elif defined HAVE__BYTESWAP_ULONG /* HAVE___BUILTIN_BSWAP32 */
# define bswap32 _byteswap_ulong
#else /* HAVE___BUILTIN_BSWAP32 */
static inline uint32_t inline_bswap32 (uint32_t x) {
return
(((x & 0xFF000000U) >> 24) |
((x & 0x00FF0000U) >> 8) |
((x & 0x0000FF00U) << 8) |
((x & 0x000000FFU) << 24));
}
# define bswap32 inline_bswap32
#endif /* HAVE___BUILTIN_BSWAP32 */
#define PSL_M_unused(x) (void)(x)
/* ISO Font encodings. Ensure that the order of PSL_ISO_names matches order of includes below */
static char *PSL_ISO_name[] = {
"PSL_Standard",
"PSL_Standard+",
"PSL_ISOLatin1",
"PSL_ISOLatin1+",
"PSL_ISO-8859-1",
"PSL_ISO-8859-2",
"PSL_ISO-8859-3",
"PSL_ISO-8859-4",
"PSL_ISO-8859-5",
"PSL_ISO-8859-6",
"PSL_ISO-8859-7",
"PSL_ISO-8859-8",
"PSL_ISO-8859-9",
"PSL_ISO-8859-10",
"PSL_ISO-8859-11",
"PSL_ISO-8859-13",
"PSL_ISO-8859-14",
"PSL_ISO-8859-15",
"PSL_ISO-8859-16",
NULL
};
static char *PSL_ISO_encoding[] = {
#include "PSL_Standard.h"
#include "PSL_Standard+.h"
#include "PSL_ISOLatin1.h"
#include "PSL_ISOLatin1+.h"
#include "PSL_ISO-8859-1.h"
#include "PSL_ISO-8859-2.h"
#include "PSL_ISO-8859-3.h"
#include "PSL_ISO-8859-4.h"
#include "PSL_ISO-8859-5.h"
#include "PSL_ISO-8859-6.h"
#include "PSL_ISO-8859-7.h"
#include "PSL_ISO-8859-8.h"
#include "PSL_ISO-8859-9.h"
#include "PSL_ISO-8859-10.h"
#include "PSL_ISO-8859-11.h"
#include "PSL_ISO-8859-13.h"
#include "PSL_ISO-8859-14.h"
#include "PSL_ISO-8859-15.h"
#include "PSL_ISO-8859-16.h"
NULL
};
/* Include the 90 hardwired hachure patterns */
#include "PSL_patterns.h"
/* Listing of "Standard" 35 PostScript fonts found on most PS printers
* plus the 4 Japanese fonts we have supported since GMT 3.
* The fontheight is the height of A for unit fontsize. */
#define PSL_N_STANDARD_FONTS 39
static struct PSL_FONT PSL_standard_fonts[PSL_N_STANDARD_FONTS] = {
#include "standard_adobe_fonts.h"
};
/*--------------------------------------------------------------------
* STANDARD CONSTANTS MACRO DEFINITIONS
*--------------------------------------------------------------------*/
#ifndef true
#define true 1
#endif
#ifndef false
#define false 0
#endif
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
#ifndef R2D
#define R2D (180.0/M_PI)
#endif
#ifndef D2R
#define D2R (M_PI/180.0)
#endif
#ifndef M_SQRT2
#define M_SQRT2 1.41421356237309504880
#endif
#ifndef MIN
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#endif
#ifndef MAX
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
#endif
/* GMT normally gets these macros from unistd.h */
#ifndef HAVE_UNISTD_H_
# define R_OK 4
# define W_OK 2
# ifdef WIN32
# define X_OK R_OK /* X_OK == 1 crashes on Windows */
# else
# define X_OK 1
# endif
# define F_OK 0
#endif /* !HAVE_UNISTD_H_ */
/* access is usually in unistd.h; we use a macro here
* since the same function under WIN32 is prefixed with _
* and defined in io.h */
#if defined HAVE__ACCESS && !defined HAVE_ACCESS
# define access _access
#endif
#if defined HAVE_STRTOK_S && !defined HAVE_STRTOK_R
# define strtok_r strtok_s
#elif !defined HAVE_STRTOK_R
/* define custom function */
#endif
/* getpid is usually in unistd.h; we use a macro here
* since the same function under WIN32 is prefixed with _
* and defined in process.h */
#if defined HAVE__GETPID && !defined HAVE_GETPID
# define getpid _getpid
#endif
/*--------------------------------------------------------------------
* PSL CONSTANTS MACRO DEFINITIONS
*--------------------------------------------------------------------*/
#define PS_LANGUAGE_LEVEL 2
#define PSL_Version "5.0"
#define PSL_SMALL 1.0e-10
#define PSL_PAGE_HEIGHT_IN_PTS 842 /* A4 height */
#define PSL_PEN_LEN 128 /* Style length string */
#define PSL_SUBSUP_SIZE 0.7 /* Relative size of sub/sup-script to normal size */
#define PSL_SCAPS_SIZE 0.85 /* Relative size of small caps to normal size */
#define PSL_SUB_DOWN 0.25 /* Baseline shift down in font size for subscript */
#define PSL_SUP_UP_LC 0.35 /* Baseline shift up in font size for superscript after lowercase letter */
#define PSL_SUP_UP_UC 0.35 /* Baseline shift up in font size for superscript after uppercase letter */
#define PSL_ASCII_ES 27 /* ASCII code for escape (used to prevent +? strings in plain text from being seen as modifiers) */
#if 0
/* These are potential revisions to some of the settings above but remains to be tested */
#define PSL_SUBSUP_SIZE 0.58 /* Relative size of sub/sup-script to normal size */
#define PSL_SCAPS_SIZE 0.80 /* Relative size of small caps to normal size */
#define PSL_SUB_DOWN 0.25 /* Baseline shift down in font size for subscript */
#define PSL_SUP_UP_LC 0.35 /* Baseline shift up in font size for superscript after lowercase letter */
#define PSL_SUP_UP_UC 0.45 /* Baseline shift up in font size for superscript after uppercase letter */
#define PSL_SUBSUP_SIZE 0.58 /* Relative size of sub/sup-script to normal size */
#define PSL_SCAPS_SIZE 0.80 /* Relative size of small caps to normal size */
#define PSL_SUB_DOWN 0.33 /* Baseline shift down in font size for subscript */
#define PSL_SUP_UP 0.33 /* Baseline shift up in font size for superscript */
#endif
/*--------------------------------------------------------------------
* PSL FUNCTION MACRO DEFINITIONS
*--------------------------------------------------------------------*/
#define PSL_s255(s) (s * 255.0) /* Conversion from 0-1 to 0-255 range */
#define PSL_u255(s) ((unsigned char)rint(PSL_s255(s))) /* Conversion from 0-1 to 0-255 range */
#define PSL_t255(t) PSL_u255(t[0]),PSL_u255(t[1]),PSL_u255(t[2]) /* ... same for triplet */
#define PSL_q255(q) PSL_u255(q[0]),PSL_u255(q[1]),PSL_u255(q[2]),PSL_u255(q[3]) /* ... same for quadruplet */
#define PSL_YIQ(rgb) (0.299 * rgb[0] + 0.587 * rgb[1] + 0.114 * rgb[2]) /* How B/W TV's convert RGB to Gray */
#define PSL_eq(a,b) (fabs((a)-(b)) < PSL_SMALL) /* If two color component are ~identical */
#define PSL_is_gray(rgb) (PSL_eq(rgb[0],rgb[1]) && PSL_eq(rgb[1],rgb[2])) /* If the rgb is a color and not gray */
#define PSL_same_rgb(a,b) (PSL_eq(a[0],b[0]) && PSL_eq(a[1],b[1]) && PSL_eq(a[2],b[2]) && PSL_eq(a[3],b[3])) /* If two colors are ~identical */
#define PSL_rgb_copy(a,b) memcpy((void*)a,(void*)b,4*sizeof(double)); /* Copy RGB[T] triplets: a = b */
#define PSL_memory(C,ptr,n,type) (type*)psl_memory(C,(void*)ptr,(size_t)(n),sizeof(type)) /* Easier macro for psl_memory */
/* Special macros and structure for PSL_plotparagraph */
#define PSL_NO_SPACE 0
#define PSL_ONE_SPACE 1
#define PSL_COMPOSITE_1 8
#define PSL_COMPOSITE_2 16
#define PSL_COMPOSITE_2_FNT 64
#define PSL_SYMBOL_FONT 12
#define PSL_CHUNK 2048
#define PSL_CLOSE_INTERIOR 16
/* Indices for use with PSL->current.sup_up[] */
#define PSL_LC 0
#define PSL_UC 1
/* Arguments for psl_convert_path */
#define PSL_SHORTEN_PATH 0 /* Will apply one of two shortening algorithm to the integer PSL coordinates */
#define PSL_CONVERT_PATH 1 /* Will only convert to PSL integer coordinates but no shortening takes place */
struct PSL_WORD { /* Used for type-setting text */
int font_no;
int flag;
int index;
int baseshift;
int fontsize;
double rgb[4];
char *txt;
};
struct PSL_COLOR {
double rgb[4]; /* r/g/b plus alpha (PDF only) */
};
/* Special macros and structure for color(sic) maps-> */
#define PSL_INDEX_BITS 8 /* PostScript indices may be 12 bit */
/* But we only do 8 bits for now. */
#define PSL_MAX_COLORS (1<<PSL_INDEX_BITS)
typedef struct
{
size_t ncolors;
unsigned char colors[PSL_MAX_COLORS][3];
} *psl_colormap_t;
typedef struct
{
unsigned char *buffer;
psl_colormap_t colormap;
} *psl_indexed_image_t;
typedef struct {
size_t nbytes;
int depth;
unsigned char *buffer;
} *psl_byte_stream_t;
/* These are used when the PDF pdfmark or Ghostscript extensions for transparency is used:
* Adobe: https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/pdfmarkReference_v9.pdf
* Ghostscript: https://www.ghostscript.com/doc/current/Language.htm#Transparency
*
* From gs 9.53 their transparency model takes two transparencies (stroke and fill) while before
* it only took one. The pdfmark took two but we simply duplicated it since GMT itself only dealt
* with one transparency for both. From GMT 6.2.0 we will allow these two transparencies to be set
* individually if the user so selects. Note: We do not support any of the soft masks/shapes stuff.
*/
#define N_PDF_TRANSPARENCY_MODES 16
static const char *PDF_transparency_modes[N_PDF_TRANSPARENCY_MODES] = {
"Color", "ColorBurn", "ColorDodge", "Darken",
"Difference", "Exclusion", "HardLight", "Hue",
"Lighten", "Luminosity", "Multiply", "Normal",
"Overlay", "Saturation", "SoftLight", "Screen"
};
#ifdef WIN32
#ifndef HAVE_STRSEP
/* Copyright (C) 2004, 2007, 2009-2012 Free Software Foundation, Inc.
Written by Yoann Vandoorselaere <yoann@prelude-ids.org>.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
char *strsep (char **stringp, const char *delim) {
char *start = *stringp;
char *ptr;
if (start == NULL)
return NULL;
/* Optimize the case of no delimiters. */
if (delim[0] == '\0') {
*stringp = NULL;
return start;
}
/* Optimize the case of one delimiter. */
if (delim[1] == '\0')
ptr = strchr (start, delim[0]);
else
/* The general case. */
ptr = strpbrk (start, delim);
if (ptr == NULL) {
*stringp = NULL;
return start;
}
*ptr = '\0';
*stringp = ptr + 1;
return start;
}
#endif /* ifndef HAVE_STRSEP */
/* SUpport for differences between UNIX and DOS paths */
static void psl_strlshift (char *string, size_t n) {
/* Left shift a string by n characters */
size_t len;
assert (string != NULL); /* NULL pointer */
if ((len = strlen(string)) <= n ) {
/* String shorter than shift width */
*string = '\0'; /* Truncate entire string */
return;
}
/* Move entire string back */
memmove(string, string + n, len + 1);
}
static void psl_strrepc (char *string, int c, int r) {
/* Replaces all occurrences of c in the string with r */
assert (string != NULL); /* NULL pointer */
do {
if (*string == c)
*string = (char)r;
} while (*(++string)); /* repeat until \0 reached */
}
/* Turn '/c/dir/...' paths into 'c:/dir/...'
* Must do it in a loop since dir may be several ';'-separated dirs */
static void psl_dos_path_fix (char *dir) {
size_t n, k;
if (!dir || (n = strlen (dir)) < 2U)
/* Given NULL or too short dir to work */
return;
if (!strncmp (dir, "/cygdrive/", 10U))
/* May happen for example when Cygwin sets GMT_SHAREDIR */
psl_strlshift (dir, 9); /* Chop '/cygdrive' */
/* Replace dumb backslashes with slashes */
psl_strrepc (dir, '\\', '/');
/* If dir begins with '/' and is 2 long, as in '/c', replace with 'c:' */
if (n == 2U && dir[0] == '/') {
dir[0] = dir[1];
dir[1] = ':';
return;
}
/* If dir is longer than 2 and, e.g., '/c/', replace with 'c:/' */
if (n > 2U && dir[0] == '/' && dir[2] == '/' && isalpha ((int)dir[1])) {
dir[0] = dir[1];
dir[1] = ':';
}
/* Do the same with dirs separated by ';' but do not replace '/c/j/...' with 'c:j:/...' */
for (k = 4; k < n-2; k++) {
if ( (dir[k-1] == ';' && dir[k] == '/' && dir[k+2] == '/' && isalpha ((int)dir[k+1])) ) {
dir[k] = dir[k+1];
dir[k+1] = ':';
}
}
/* Replace ...:C:/... by ...;C:/... as that was a multi-path set by an e.g. bash shell (msys or cygwin) */
for (k = 4; k < n-2; k++) {
if ((dir[k-1] == ':' && dir[k+1] == ':' && dir[k+2] == '/' && isalpha ((int)dir[k])) )
dir[k-1] = ';';
else if ((dir[k-1] == ':' && dir[k] == '/' && dir[k+2] == '/' && isalpha ((int)dir[k+1])) ) {
/* The form ...:/C/... will become ...;C:/... */
dir[k-1] = ';';
dir[k] = dir[k+1];
dir[k+1] = ':';
}
}
}
#else
# define psl_dos_path_fix(e) ((void)0) /* dummy function */
#endif
/* ----------------------------------------------------------------------
* Support functions used in PSL_* functions.
* ----------------------------------------------------------------------
*/
static void *psl_memory (struct PSL_CTRL *PSL, void *prev_addr, size_t nelem, size_t size) {
/* Multi-functional memory allocation subroutine.
If prev_addr is NULL, allocate new memory of nelem elements of size bytes.
Ignore when nelem == 0.
If prev_addr exists, reallocate the memory to a larger or smaller chunk of nelem elements of size bytes.
When nelem = 0, free the memory.
*/
void *tmp = NULL;
const char *m_unit[4] = {"bytes", "kb", "Mb", "Gb"};
double mem;
int k;
if (prev_addr) {
if (nelem == 0) { /* Take care of n == 0 */
PSL_free (prev_addr);
return (NULL);
}
if ((tmp = realloc ( prev_addr, nelem * size)) == NULL) {
mem = (double)(nelem * size);
k = 0;
while (mem >= 1024.0 && k < 3) mem /= 1024.0, k++;
PSL_message (PSL, PSL_MSG_ERROR, "Error: Could not reallocate more memory [%.2f %s, %" PRIuS " items of %" PRIuS " bytes]\n",
mem, m_unit[k], nelem, size);
return (NULL);
}
}
else {
if (nelem == 0) return (NULL); /* Take care of n = 0 */
if ((tmp = calloc (nelem, size)) == NULL) {
mem = (double)(nelem * size);
k = 0;
while (mem >= 1024.0 && k < 3) mem /= 1024.0, k++;
PSL_message (PSL, PSL_MSG_ERROR, "Error: Could not allocate memory [%.2f %s, %" PRIuS " items of %" PRIuS " bytes]\n",
mem, m_unit[k], nelem, size);
return (NULL);
}
}
return (tmp);
}
/* Things to do with UTF8 */
/* Try to convert UTF-8 accented characters to PostScriptLight octal codes.
* This depends on which character set we have. We will limit this to just
* Standard, Standard+, ISOILatin1, and ISOLatin1+. Of these, Standard will
* only work for some of the encoded letters while the three others should
* all be fine.
* We also handle the differences between hyphens and minus symbol.
* In ISOLatin1 the hyphen key on the keyboard results in a minus sign while
* in Standard it gives a hyphen. In GMT we want minus signs in annotations
* contours and other numerical negative values. This behavior is controlled
* by the setting in PSL_settextmode. */
static unsigned int psl_ut8_code_to_ISOLatin (char code) {
/* This is called when the previous character in a string has octal 0303 */
unsigned int kode = (unsigned char)code;
return (kode >= 0200 && kode <= 0277) ? kode += 64 : 0;
}
static void psl_fix_utf8 (struct PSL_CTRL *PSL, char *in_string) {
/* Given in_string check if UTF8 characters are present and if so replace with PSL octal codes. Assumes ISOLatin1+ */
unsigned int k, kout, use, utf8_codes = 0;
bool do_minus = (PSL->current.use_minus == PSL_TXTMODE_MINUS);
char *out_string = NULL;
if (!strncmp (PSL->init.encoding, "Standard+", 9U) && do_minus) { /* For Standard+ encoding we may need to swap leading minus values encoded as hyphen with the actual minus symbol */
for (k = 0; in_string[k]; k++) {
if ((k == 0 || in_string[k-1] != '@') && in_string[k] == 0055) /* Found a hyphen which we interpret to be a minus sign */
in_string[k] = 0224; /* Minus is octal 224 in Standard+ but not present in just Standard */
}
}
if (strncmp (PSL->init.encoding, "ISOLatin1", 9U)) return; /* Do nothing unless ISOLatin[+] */
for (k = 0; in_string[k]; k++) {
if ((unsigned char)(in_string[k]) == 0303 || (unsigned char)(in_string[k]) == 0305)
utf8_codes++; /* Count them up */
else if (k == 0 || in_string[k-1] != '@') {
if ((unsigned char)in_string[k] == 0255 && do_minus)
in_string[k] = 0055; /* Minus symbol is octal 0055 in ISOLatin1 */
else if ((unsigned char)in_string[k] == 0055 && !do_minus)
in_string[k] = 0255; /* Hyphen symbol is octal 0255 in ISOLatin1 */
}
}
if (utf8_codes == 0) return; /* Nothing to do */
out_string = PSL_memory (PSL, NULL, strlen(in_string) + 1, char); /* Get a new string of same length (extra byte for '\0') */
for (k = kout = 0; in_string[k]; k++) {
if ((unsigned char)(in_string[k]) == 0303) { /* Found octal 303 */
k++; /* Skip the control code */
if ((use = psl_ut8_code_to_ISOLatin (in_string[k]))) /* Found a 2-char utf8 combo, replace with single octal code from our table */
out_string[kout++] = use;
else { /* Not a recognized code - just output both as they were given */
out_string[kout++] = in_string[k-1];
out_string[kout++] = in_string[k];
}
}
else if ((unsigned char)(in_string[k]) == 0305) { /* Found Ydieresis, ae, AE, L&l-slash and the S,Z,s,z carons */
k++; /* Skip the control code */
switch ((unsigned char)in_string[k]) { /* These 9 chars are placed all over the table so must have individual cases */
case 0201: use = 0203; break; /* Lslash */
case 0202: use = 0213; break; /* lslash */
case 0222: use = 0200; break; /* ae */
case 0223: use = 0210; break; /* AE */
case 0240: use = 0206; break; /* Scaron */
case 0241: use = 0177; break; /* scaron */
case 0270: use = 0211; break; /* Ydieresis */
case 0275: use = 0212; break; /* Zcaron */
case 0276: use = 0037; break; /* zcaron */
default: use = 0; break; /* Not one of the recognized ones in our table */
}
if (use) /* Found a 2-char utf8 combo */
out_string[kout++] = use;
else { /* Not a recognized code - just output both as they were given */
out_string[kout++] = in_string[k-1];
out_string[kout++] = in_string[k];
}
}
else /* Just output char as was given */
out_string[kout++] = in_string[k];
}
memset (in_string, 0, strlen (in_string)); /* Set old in_string to NULL */
strncpy (in_string, out_string, strlen (out_string)); /* Overwrite old string with possibly adjusted string */
PSL_free (out_string);
}
/* This one is NOT static since needed in psimage, at least for now */
unsigned char *psl_gray_encode (struct PSL_CTRL *PSL, size_t *nbytes, unsigned char *input) {
/* Recode RGB stream as gray-scale stream */
size_t in, out, nout;
unsigned char *output = NULL;
nout = *nbytes / 3;
output = PSL_memory (PSL, NULL, nout, unsigned char);
for (in = out = 0; in < *nbytes; out++, in += 3) output[out] = (char) lrint (PSL_YIQ ((&input[in])));
*nbytes = nout;
return (output);
}
/* Define local (static) support functions called inside the public PSL functions */
static int psl_ix (struct PSL_CTRL *PSL, double x) {
/* Convert user x to PS dots */
return (PSL->internal.x0 + (int)lrint (x * PSL->internal.x2ix));
}
static int psl_iy (struct PSL_CTRL *PSL, double y) {
/* Convert user y to PS dots */
return (PSL->internal.y0 + (int)lrint (y * PSL->internal.y2iy));
}
static double psl_ix10 (struct PSL_CTRL *PSL, double x) {
/* Convert user x to PS dots with 1 decimal point */
return (PSL->internal.x0 + 0.1 *lrint (10.0 * x * PSL->internal.x2ix));
}
static double psl_iy10 (struct PSL_CTRL *PSL, double y) {
/* Convert user y to PS dots with 1 decimal point */
return (PSL->internal.y0 + 0.1 * lrint (10.0 * y * PSL->internal.y2iy));
}
static int psl_iz (struct PSL_CTRL *PSL, double z) {
/* Convert user distances to PS dots */
return ((int)lrint (z * PSL->internal.dpu));
}
static int psl_ip (struct PSL_CTRL *PSL, double p) {
/* Convert PS points to PS dots */
return ((int)lrint (p * PSL->internal.dpp));
}
static int psl_convert_path_new (struct PSL_CTRL *PSL, double *x, double *y, int n, int *ix, int *iy, int mode) {
/* Simplifies the (x,y) array by converting it to pixel coordinates (ix,iy)
* and eliminating repeating points and intermediate points along straight
* line segments. The result is the fewest points needed to draw the path
* and still look exactly like the original path. However, if mode == 1 we do
* no shortening. */
int i, k, dx, dy;
int d, db, bx, by, j, ij;
if (n < 2) return (n); /* Not a path to start with */
for (i = 0; i < n; i++) { /* Convert all coordinates to integers at current scale */
ix[i] = psl_ix (PSL, x[i]);
iy[i] = psl_iy (PSL, y[i]);
}
if (mode == PSL_CONVERT_PATH) return (n); /* No shortening */
/* Skip intermediate points that are "close" to the line between point i and point j, where
"close" is defined as less than 1 "dot" (the PostScript resolution) in either direction.
A point is always close when it coincides with one of the end points (i or j).
An intermediate point is also considered "far" when it is beyond i or j.
Algorithm requires that |dx by - bx dy| >= max(|dx|,|dy|) for points to be "far".
*/
for (i = k = 0, j = 2; j < n; j++) {
dx = ix[j] - ix[i];
dy = iy[j] - iy[i];
d = MAX(abs((int)dx),abs((int)dy));
/* We know that d can be zero. That is OK, since it will only happen when (dx,dy) = (0,0).
And in that cases all intermediate points will always be "far" */
for (ij = j - 1; ij > i; ij--) {
bx = ix[ij] - ix[i];
/* Check if the intermediate point is outside the x-range between points i and j.
In case of a vertical line, any point with a different x-coordinate is "far" */
if (dx > 0) {
if (bx < 0 || bx > dx) break;
}
else {
if (bx > 0 || bx < dx) break;
}
by = iy[ij] - iy[i];
/* Check if the intermediate point is outside the y-range between points i and j.
In case of a horizontal line, any point with a different y-coordinate is "far" */
if (dy > 0) {
if (by < 0 || by > dy) break;
}
else {
if (by > 0 || by < dy) break;
}
/* Generic case where the intermediate point is within the x- and y-range */
db = abs((int)(dx * by) - (int)(bx * dy));
if (db >= d) break; /* Point ij is "far" from line connecting i and j */
}
if (ij > i) { /* Some intermediate point failed test */
i = j - 1;
k++;
ix[k] = ix[i];
iy[k] = iy[i];
}
}
/* We have gotten to the last point. If this is a duplicate, skip it */
if (ix[k] != ix[n-1] || iy[k] != iy[n-1]) {
k++;
ix[k] = ix[n-1];
iy[k] = iy[n-1];
}
k++;
return (k);
}
static int psl_convert_path_old (struct PSL_CTRL *PSL, double *x, double *y, int n, int *ix, int *iy, int mode) {
/* Simplifies the (x,y) array by converting it to pixel coordinates (ix,iy)
* and eliminating repeating points and intermediate points along straight
* line segments. The result is the fewest points needed to draw the path
* and still look exactly like the original path. However, if mode == 1 we do
* no shortening. */
int i, k, dx, dy;
int old_dir = 0, new_dir;
double old_slope = -DBL_MAX, new_slope;
/* These seeds for old_slope and old_dir make sure that first point gets saved */
if (n < 2) return (n); /* Not a path to start with */
for (i = 0; i < n; i++) { /* Convert all coordinates to integers at current scale */
ix[i] = psl_ix (PSL, x[i]);
iy[i] = psl_iy (PSL, y[i]);
}
if (mode == PSL_CONVERT_PATH) return (n); /* No shortening */
/* The only truly unique point is the starting point; all else must show increments
* relative to the previous point */
/* First point is the anchor. We will find at least one point, unless all points are the same */
for (i = k = 0; i < n - 1; i++) {
dx = ix[i+1] - ix[i];
dy = iy[i+1] - iy[i];
if (dx == 0 && dy == 0) continue; /* Skip duplicates */
new_slope = (dx == 0) ? copysign (DBL_MAX, (double)dy) : ((double)dy) / ((double)dx);
new_dir = (dx >= 0) ? 1 : -1;
if (new_slope != old_slope || new_dir != old_dir) {
ix[k] = ix[i];
iy[k] = iy[i];
k++;
old_slope = new_slope;
old_dir = new_dir;
}
}
/* If all points are the same, we get here with k = 0, so we can exit here now with 1 point */
if (k < 1) return (1);
/* Last point (k cannot be < 1 so k-1 >= 0) */
if (ix[k-1] != ix[n-1] || iy[k-1] != iy[n-1]) { /* Do not do slope check on last point since we must end there */
ix[k] = ix[n-1];
iy[k] = iy[n-1];
k++;
}
return (k);
}
/* Addressing issue https://github.com/GenericMappingTools/gmt/issues/439 for long DCW polygons.
#define N_LENGTH_THRESHOLD 100000000 meant we only did new path but now we try 50000 as cutoff */
#define N_LENGTH_THRESHOLD 50000
static int psl_convert_path (struct PSL_CTRL *PSL, double *x, double *y, int n, int *ix, int *iy, int mode) {
if (n > N_LENGTH_THRESHOLD)
return psl_convert_path_old (PSL, x, y, n, ix, iy, mode);
else
return psl_convert_path_new (PSL, x, y, n, ix, iy, mode);
}
static int psl_forcelinewidth (struct PSL_CTRL *PSL, double linewidth) {
if (linewidth < 0.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Selected linewidth is negative (%g), ignored\n", linewidth);
return (PSL_BAD_WIDTH);
}
PSL_command (PSL, "%d W\n", psl_ip (PSL, linewidth));
PSL->current.linewidth = linewidth;
return (PSL_NO_ERROR);
}
static void psl_set_real_array (struct PSL_CTRL *PSL, const char *prefix, double *array, int n) {
/* These are raw and not scaled */
int i;
PSL_command (PSL, "/PSL_%s [ ", prefix);
for (i = 0; i < n; i++) {
PSL_command (PSL, "%.2f ", array[i]);
if (((i+1)%10) == 0) PSL_command (PSL, "\n\t");
}
PSL_command (PSL, "] def\n");
}
void psl_set_int_array (struct PSL_CTRL *PSL, const char *prefix, int *array, int n) {
/* These are raw and not scaled */
int i;
PSL_command (PSL, "/PSL_%s [ ", prefix);
for (i = 0; i < n; i++) {
PSL_command (PSL, "%d ", array[i]);
if (((i+1)%10) == 0) PSL_command (PSL, "\n\t");
}
PSL_command (PSL, "] def\n");
}
void psl_set_txt_array (struct PSL_CTRL *PSL, const char *prefix, char *array[], int n) {
int i;
char *outtext = NULL;
PSL_command (PSL, "/PSL_%s [\n", prefix);
for (i = 0; i < n; i++) {
outtext = psl_prepare_text (PSL, array[i]); /* Expand escape codes and fix utf-8 characters */
PSL_command (PSL, "\t(%s)\n", outtext);
PSL_free (outtext);
}
PSL_command (PSL, "] def\n", n);
}
static void psl_set_reducedpath_arrays (struct PSL_CTRL *PSL, double *x, double *y, int npath, int *n, int *m, int *node) {
/* These are used by PSL_plottextline. We make sure there are no point pairs that would yield dx = dy = 0 (repeat point)
* at the resolution we are using (0.01 DPI units), hence a new n (possibly shorter) is returned. */
int i, j, k, p, ii, kk, this_i, this_j, last_i, last_j, i_offset = 0, k_offset = 0, n_skipped, ntot = 0, *new_n = NULL;
char *use = NULL;
if (x == NULL || y == NULL) return; /* No path */
for (p = 0; p < npath; p++) ntot += n[p]; /* Determine total number of points */
/* Since we need dx/dy from these we preprocess to avoid any nasty surprises with repeat points */
use = PSL_memory (PSL, NULL, ntot, char);
new_n = PSL_memory (PSL, NULL, npath, int);
for (p = 0; p < npath; p++) {
this_i = this_j = INT_MAX;
for (ii = j = n_skipped = k = 0; ii < n[p]; ii++) {
last_i = this_i; last_j = this_j;
i = ii + i_offset; /* Index into concatenated x,y arrays */
this_i = 100 * psl_ix (PSL, x[i]); /* Simulates the digits written by a %.2lf format */
this_j = 100 * psl_iy (PSL, y[i]);
if (this_i == last_i && this_j == last_j) /* Repeat point, skip it */
n_skipped++;
else { /* Not a repeat point, use it */
use[i] = true;
j++;
}
kk = k + k_offset; /* Index into concatenated node array */
if (k < m[p] && node[kk] == ii && n_skipped) { /* Adjust node pointer since we are removing points and upsetting the node order */
node[kk++] -= n_skipped;
k++;
}
}
new_n[p] = j;
i_offset += n[p];
k_offset += m[p];
}
/* For curved lines for text placement we use 10 times the precision in the coordinates since we will
* be taking derivatives to compute angles and thus need higher precision than integer PS coordinates */
PSL_comment (PSL, "Set concatenated coordinate arrays for line segments:\n");
PSL_command (PSL, "/PSL_path_x [ ");
for (i = k = 0; i < ntot; i++) {
if (!use[i]) continue;
PSL_command (PSL, "%g ", psl_ix10 (PSL, x[i]));
k++;
if ((k%10) == 0) PSL_command (PSL, "\n\t");
}
PSL_command (PSL, "] def\n");
PSL_command (PSL, "/PSL_path_y [ ");
for (i = k = 0; i < ntot; i++) {
if (!use[i]) continue;
PSL_command (PSL, "%g ", psl_iy10 (PSL, y[i]));
k++;
if ((k%10) == 0) PSL_command (PSL, "\n\t");
}
PSL_command (PSL, "] def\n");
PSL_comment (PSL, "Set array with number of points per line segments:\n");
psl_set_int_array (PSL, "path_n", new_n, npath);
if (k > PSL_MaxOpStack_Size) PSL_message (PSL, PSL_MSG_WARNING, "Warning: PSL array placed has %d items - may exceed gs_init.ps MaxOpStack setting [%d].\n", k, PSL_MaxOpStack_Size);
/* Free up temp arrays */
PSL_free (use);
PSL_free (new_n);
return;
}
static void psl_set_path_arrays (struct PSL_CTRL *PSL, const char *prefix, double *x, double *y, int npath, int *n) {
/* Set coordinates arrays in PS units */
int i, ntot = 0;
char txt[64] = {""};
if (x == NULL || y == NULL) return; /* No path */
for (i = 0; i < npath; i++) ntot += n[i]; /* Determine total number of points */
PSL_comment (PSL, "Set coordinate arrays for text label placements:\n");
PSL_command (PSL, "/PSL_%s_x [ ", prefix);
for (i = 0; i < ntot; i++) {
PSL_command (PSL, "%d ", psl_ix (PSL, x[i]));
if (((i+1)%10) == 0) PSL_command (PSL, "\n\t");
}
PSL_command (PSL, "] def\n");
PSL_command (PSL, "/PSL_%s_y [ ", prefix);
for (i = 0; i < ntot; i++) {
PSL_command (PSL, "%d ", psl_iy (PSL, y[i]));
if (((i+1)%10) == 0) PSL_command (PSL, "\n\t");
}
PSL_command (PSL, "] def\n");
sprintf (txt, "%s_n", prefix);
psl_set_int_array (PSL, txt, n, npath);
}
static void psl_set_attr_arrays (struct PSL_CTRL *PSL, int *node, double *angle, char **txt, int npath, int m[]) {
/* This function sets PSL arrays for attributes needed to place contour labels and quoted text labels.
* node: specifies where along each segments there should be labels [NULL if not curved text]
* angle: specifies angle of text for each item
* txt: is the text labels for each item
* npath: the number of segments (curved text) or number of text items (straight text)
* m: array of length npath with number of labels per segment
*/
int i, nlab = 0;
for (i = 0; i < npath; i++) nlab += m[i]; /* Determine total number of labels */
if (node != NULL) { /* Curved text has node array */
PSL_comment (PSL, "Set array with nodes of PSL_path_x|y for text placement:\n");
psl_set_int_array (PSL, "label_node", node, nlab);
PSL_comment (PSL, "Set array with number of labels per line segment:\n");
psl_set_int_array (PSL, "label_n", m, npath);
}
PSL_comment (PSL, "Set array with baseline angle for each text label:\n");
psl_set_real_array (PSL, "label_angle", angle, nlab);
PSL_comment (PSL, "Set array with the text labels:\n");
psl_set_txt_array (PSL, "label_str", txt, nlab);
return;
}
static void psl_rgb_to_hsv (double rgb[], double hsv[]) {
double diff;
int i, imax = 0, imin = 0;
/* This had checks using rgb value in doubles (e.g. (max_v == xr)), which failed always on some compilers.
Changed to integer logic: 2009-02-05 by RS.
*/
for (i = 1; i < 3; i++) {
if (rgb[i] > rgb[imax]) imax = i;
if (rgb[i] < rgb[imin]) imin = i;
}
diff = rgb[imax] - rgb[imin];
hsv[0] = 0.0;
hsv[1] = (PSL_eq(rgb[imax],0.0)) ? 0.0 : diff / rgb[imax];
hsv[2] = rgb[imax];
if (PSL_eq(hsv[1],0.0)) return; /* Hue is undefined */
hsv[0] = 120.0 * imax + 60.0 * (rgb[(imax + 1) % 3] - rgb[(imax + 2) % 3]) / diff;
if (hsv[0] < 0.0) hsv[0] += 360.0;
if (hsv[0] > 360.0) hsv[0] -= 360.0;
hsv[0] /= 360.0; /* All h,s,v values in PostScript are 0-1 range */
}
#if 0 /* Not used */
static void psl_cmyk_to_rgb (double rgb[], double cmyk[]) {
/* Plain conversion; no undercolor removal or blackgeneration */
/* CMYK is in 0-1, RGB will be in 0-1 range */
int i;
for (i = 0; i < 3; i++) rgb[i] = 1.0 - cmyk[i] - cmyk[3];
}
#endif
static void psl_rgb_to_cmyk_char (unsigned char rgb[], unsigned char cmyk[]) {
/* Plain conversion; no undercolor removal or blackgeneration */
/* RGB is in 0-255, CMYK will be in 0-255 range */
int i;
for (i = 0; i < 3; i++) cmyk[i] = 255 - rgb[i];
cmyk[3] = MIN (cmyk[0], MIN (cmyk[1], cmyk[2])); /* Black */
for (i = 0; i < 3; i++) cmyk[i] -= cmyk[3];
}
static void psl_rgb_to_cmyk (double rgb[], double cmyk[]) {
/* Plain conversion; no undercolor removal or blackgeneration */
/* RGB is in 0-1, CMYK will be in 0-1 range */
int i;
for (i = 0; i < 3; i++) cmyk[i] = 1.0 - rgb[i];
cmyk[3] = MIN (cmyk[0], MIN (cmyk[1], cmyk[2])); /* Black */
for (i = 0; i < 3; i++) cmyk[i] -= cmyk[3];
for (i = 0; i < 4; i++) {
if (cmyk[i] < 0.0005) cmyk[i] = 0.0; /* Needs some explanation... */
}
}
static unsigned char *psl_cmyk_encode (struct PSL_CTRL *PSL, size_t *nbytes, unsigned char *input) {
/* Recode RGB stream as CMYK stream */
size_t in, out, nout;
unsigned char *output = NULL;
nout = *nbytes / 3 * 4;
output = PSL_memory (PSL, NULL, nout, unsigned char);
for (in = out = 0; in < *nbytes; out += 4, in += 3) psl_rgb_to_cmyk_char (&input[in], &output[out]);
*nbytes = nout;
return (output);
}
static void psl_remove_spaces (char *label[], int n_labels, int m[]) {
int i, k, j, n_tot = n_labels;
if (m)
for (i = 0; i < n_labels; i++) n_tot += m[i]; /* Count number of labels */
for (i = 0; i < n_tot; i++) { /* Strip leading and trailing blanks */
for (k = 0; label[i][k] == ' '; k++); /* Count # of leading blanks */
if (k > 0) { /* Shift text to start, eliminating spaces */
j = 0;
while (label[i][k]) {
label[i][j] = label[i][j+k];
j++;
}
label[i][j] = 0;
}
/* Then strip off trailing blanks, if any */
for (j = (int)strlen (label[i]) - 1; label[i][j] == ' '; j--) label[i][j] = 0;
}
}
static void psl_prepare_buffer (struct PSL_CTRL *C, size_t len) {
/* Ensure buffer is large enough to accept additional text of length len */
size_t new_len = C->internal.n + len; /* Need a buffer at least this large */
if (new_len < C->internal.n_alloc) return; /* Already have a buffer that is large enough */
while (new_len > C->internal.n_alloc) /* Wind past what is needed, growing by 1.75 */
C->internal.n_alloc = (size_t)(C->internal.n_alloc * 1.75);
if ((C->internal.buffer = PSL_memory (C, C->internal.buffer, C->internal.n_alloc, char)) == NULL) {
PSL_message (C, PSL_MSG_ERROR, "Error: Could not allocate %d additional buffer space - this will not end well\n", len);
}
}
static size_t psl_a85_encode (struct PSL_CTRL *PSL, const unsigned char *src_buf, size_t nbytes) {
/* Encode 4-byte binary data from src_buf to 5-byte ASCII85
* Special cases: 0x00000000 is encoded as z
* Encoded data is stored in dst_buf and written to file in
* one go, which is faster than writing one char at a time.
* The function returns the output buffer size. */
size_t dst_buf_size;
unsigned char *dst_buf, *dst_ptr;
const unsigned char *src_ptr = src_buf, *src_end = src_buf + nbytes;
const unsigned int max_line_len = 95; /* number of chars after which a newline is inserted */
if (!nbytes)
/* Ignore empty input */
return 0;
/* dst_buf has to be large enough to hold data + line endings */
dst_buf_size = (size_t)(nbytes * 1.25 + 1); /* output buffer is at least 1.25 times larger */
dst_buf_size += dst_buf_size / max_line_len + 4; /* add more space for '\n' and delimiter */
dst_ptr = dst_buf = PSL_memory (PSL, NULL, dst_buf_size, unsigned char); /* output buffer */
do { /* for each quad in src_buf while src_ptr < src_end */
const size_t ilen = nbytes > 4 ? 4 : nbytes, olen = ilen + 1;
static unsigned int line_len = 0;
unsigned int i, n = 0, byte;
int j;
unsigned char quintuple[5] = { 0 };
/* Wrap 4 chars into a 4-byte integer */
for (i = 0; i < ilen; ++i) {
byte = *src_ptr++;
n += byte << (24 - 8*i);
}
if (n == 0 && ilen == 4) {
/* Set the only output byte to "z" */
*dst_ptr++ = 'z';
++line_len;
continue;
}
/* Else determine output 5-tuple */
for (j = 4; j >= 0; --j) {
quintuple[j] = (unsigned char) ((n % 85) + '!');
n = n / 85;
}
/* Copy olen bytes to dst_buf */
memcpy (dst_ptr, quintuple, olen);
line_len += (unsigned int)olen;
dst_ptr += olen;
/* Insert newline when line exceeds 95 characters */
if (line_len + 1 > max_line_len) {
*dst_ptr++ = '\n';
line_len = 0;
}
} while (nbytes -= 4, src_ptr < src_end); /* end do */
{
/* Mark the end of the Adobe ASCII85-encoded string: */
const unsigned char delimiter[] = "~>\n";
memcpy (dst_ptr, delimiter, 3);
dst_ptr += 3;
}
{
/* Write buffer to file and clean up */
const size_t buf_size = dst_ptr - dst_buf;
assert (buf_size <= dst_buf_size); /* check length */
if (PSL->internal.memory) {
psl_prepare_buffer (PSL, buf_size); /* Make sure we have enough memory to hold the entire EPS */
strncat (&(PSL->internal.buffer[PSL->internal.n]), (const char *)dst_buf, buf_size);
PSL->internal.n += buf_size;
}
else
fwrite (dst_buf, sizeof(char), buf_size, PSL->internal.fp);
PSL_free (dst_buf);
return buf_size;
}
}
#define ESC 128
static unsigned char *psl_rle_encode (struct PSL_CTRL *PSL, size_t *nbytes, unsigned char *input) {
/* Run Length Encode a buffer of nbytes. */
size_t count = 0, out = 0, in = 0, i;
unsigned char pixel, *output = NULL;
i = MAX (512, *nbytes) + 136; /* Maximum output length */
output = PSL_memory (PSL, NULL, i, unsigned char);
/* Loop scanning all input bytes. Abort when inflating after processing at least 512 bytes */
while (count < *nbytes && (out < in || out < 512)) {
in = count;
pixel = input[in++];
while (in < *nbytes && in - count < 127 && input[in] == pixel) in++;
if (in - count == 1) { /* No more duplicates. How many non-duplicates were there? */
while (in < *nbytes && (in - count) < 127 && ((input[in] != input[in-1] || in > 1) && input[in] != input[in-2])) in++;
while (in < *nbytes && input[in] == input[in-1]) in--;
output[out++] = (unsigned char)(in - count - 1);
for (i = count; i < in; i++) output[out++] = input[i];
}
else { /* Write out a runlength */
output[out++] = (unsigned char)(count - in + 1);
output[out++] = pixel;
}
count = in;
}
/* Write end of data marker */
output[out++] = 128;
/* Drop the compression when end result is bigger than original */
if (out > in) {
PSL_message (PSL, PSL_MSG_INFORMATION, "RLE inflated %d to %d bytes. No compression done.\n", in, out);
PSL_free (output);
return (NULL);
}
/* Return number of output bytes and output buffer */
PSL_message (PSL, PSL_MSG_INFORMATION, "RLE compressed %d to %d bytes (%.1f%% savings)\n", in, out, 100.0f*(1.0f-(float)out/in));
*nbytes = out;
return (output);
}
static psl_byte_stream_t psl_lzw_putcode (psl_byte_stream_t stream, short int incode) {
static short int eod = 257;
static size_t bit_count = 0;
static size_t bit_buffer = 0;
/* Add incode to buffer and output 1 or 2 bytes */
bit_buffer |= (size_t) incode << (32 - stream->depth - bit_count);
bit_count += stream->depth;
while (bit_count >= 8) {
stream->buffer[stream->nbytes] = (unsigned char)(bit_buffer >> 24);
stream->nbytes++;
bit_buffer <<= 8;
bit_count -= 8;
}
if (incode == eod) { /* Flush buffer */
stream->buffer[stream->nbytes] = (unsigned char)(bit_buffer >> 24);
stream->nbytes++;
bit_buffer = 0;
bit_count = 0;
}
return (stream);
}
static unsigned char *psl_lzw_encode (struct PSL_CTRL *PSL, size_t *nbytes, unsigned char *input) {
/* LZW compress a buffer of nbytes. */
static int ncode = 4096*256;
int i, index;
size_t in = 0;
static short int clear = 256, eod = 257;
short int table = 4095; /* Initial value forces clearing of table on first byte */
short int bmax = 0, pre, oldpre, ext, *code = NULL;
psl_byte_stream_t output;
unsigned char *buffer = NULL;
i = (int)MAX (512, *nbytes) + 8; /* Maximum output length */
output = (psl_byte_stream_t)psl_memory (PSL, NULL, 1U, sizeof (*output));
output->buffer = PSL_memory (PSL, NULL, i, unsigned char);
code = PSL_memory (PSL, NULL, ncode, short int);
output->nbytes = 0;
output->depth = 9;
pre = input[in++];
/* Loop scanning all input bytes. Abort when inflating after processing at least 512 bytes */
while (in < *nbytes && (output->nbytes < in || output->nbytes < 512)) {
if (table >= 4095) { /* Refresh code table */
output = psl_lzw_putcode (output, clear);
memset (code, 0, ncode * sizeof(*code));
table = eod + 1;
bmax = clear * 2;
output->depth = 9;
}
ext = input[in++];
oldpre = pre;
index = (pre << 8) + ext;
pre = code[index];
if (pre == 0) { /* Add new entry to code table */
code[index] = table;
table++;
output = psl_lzw_putcode (output, oldpre);
pre = ext;
if (table == bmax) {
bmax <<= 1;
output->depth++;
}
}
}
/* Output last byte and End-of-Data */
output = psl_lzw_putcode (output, pre);
output = psl_lzw_putcode (output, eod);
/* Drop the compression when end result is bigger than original */
if (output->nbytes > in) {
PSL_message (PSL, PSL_MSG_INFORMATION, "LZW inflated %d to %d bytes. No compression done.\n", in, output->nbytes);
PSL_free (code);
PSL_free (output->buffer);
PSL_free (output);
return (NULL);
}
/* Return number of output bytes and output buffer; release code table */
PSL_message (PSL, PSL_MSG_INFORMATION, "LZW compressed %d to %d bytes (%.1f%% savings)\n", in, output->nbytes, 100.0f*(1.0f-(float)output->nbytes/in));
*nbytes = output->nbytes;
buffer = output->buffer;
PSL_free (code);
PSL_free (output);
return (buffer);
}
static unsigned char *psl_deflate_encode (struct PSL_CTRL *PSL, size_t *nbytes, unsigned char *input) {
/* DEFLATE a buffer of nbytes using ZLIB. */
#ifdef HAVE_ZLIB
const size_t ilen = *nbytes;
size_t olen = *nbytes - 1; /* Output buffer is 1 smaller than input */
unsigned char *output;
int level = PSL->internal.deflate_level == 0 ? Z_DEFAULT_COMPRESSION : PSL->internal.deflate_level; /* Compression level */
int zstatus;
z_stream strm;
/* Initialize zlib for compression */
strm.zalloc = Z_NULL;
strm.zfree = Z_NULL;
strm.opaque = Z_NULL;
if (deflateInit (&strm, level) != Z_OK) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Cannot initialize ZLIB stream: %s", strm.msg);
return NULL;
}
output = PSL_memory (PSL, NULL, olen, unsigned char); /* Allocate output buffer */
strm.avail_in = (int)ilen; /* number of bytes in input buffer */
strm.next_in = input; /* input buffer */
strm.avail_out = (int)olen; /* number of bytes available in output buffer */
strm.next_out = output; /* output buffer */
zstatus = deflate (&strm, Z_FINISH); /* deflate whole chunk */
deflateEnd (&strm); /* deallocate zlib memory */
if (zstatus != Z_STREAM_END) {
/* "compressed" size is larger or other failure */
PSL_message (PSL, PSL_MSG_INFORMATION, "Warning: no deflate compression done.\n");
PSL_free (output);
return NULL;
}
/* Return number of output bytes and output buffer */
olen = olen - strm.avail_out; /* initial size - size left */
PSL_message (PSL, PSL_MSG_INFORMATION, "DEFLATE compressed %" PRIuS " to %" PRIuS " bytes (%.1f%% savings at compression level %d)\n",
ilen, olen, 100.0f*(1.0f-(float)olen/ilen), level == Z_DEFAULT_COMPRESSION ? 6 : level);
*nbytes = olen;
return output;
#else /* HAVE_ZLIB */
/* ZLIB not available */
PSL_M_unused(nbytes);
PSL_M_unused(input);
PSL_message (PSL, PSL_MSG_WARNING, "Cannot DEFLATE because ZLIB is not available.\n");
return NULL;
#endif /* HAVE_ZLIB */
}
static void psl_stream_dump (struct PSL_CTRL *PSL, unsigned char *buffer, int nx, int ny, int nbits, int compress, int encode, int mask) {
/* Writes a stream of bytes in ascii85 or hex, performs RGB to CMYK
* conversion and compression.
* buffer = stream of bytes
* nx, ny = image dimensions in pixels
* nbits = depth of image pixels in bits
* compress = no (0), rle (1), lzw (2), or deflate (3) compression
* encode = ascii85 (0) or hex (1)
* mask = image (0), imagemask (1), or neither (2)
*/
size_t nbytes, i;
unsigned line_length = 0;
unsigned char *buffer1 = NULL, *buffer2 = NULL;
const char *kind_compress[] = {"", "/RunLengthDecode filter", "/LZWDecode filter", "/FlateDecode filter"};
const char *kind_mask[] = {"image", "imagemask"};
nx = abs (nx);
nbytes = ((size_t)nbits * (size_t)nx + 7) / (size_t)8 * (size_t)ny;
/* Transform RGB stream to CMYK or Gray stream */
if (PSL->internal.color_mode == PSL_CMYK && nbits == 24)
buffer1 = psl_cmyk_encode (PSL, &nbytes, buffer);
else if (PSL->internal.color_mode == PSL_GRAY && nbits == 24)
buffer1 = psl_gray_encode (PSL, &nbytes, buffer);
else
buffer1 = buffer;
/* Perform selected compression method */
if (compress == PSL_RLE)
buffer2 = psl_rle_encode (PSL, &nbytes, buffer1);
else if (compress == PSL_LZW)
buffer2 = psl_lzw_encode (PSL, &nbytes, buffer1);
else if (compress == PSL_DEFLATE)
buffer2 = psl_deflate_encode (PSL, &nbytes, buffer1);
else
buffer2 = NULL;
if (!buffer2) { /* If compression failed, or no compression requested */
compress = PSL_NONE;
buffer2 = buffer1;
}
/* Output image dictionary */
if (mask < 2) {
PSL_command (PSL, "/Width %d /Height %d /BitsPerComponent %d\n", nx, ny, MIN(nbits,8));
PSL_command (PSL, " /ImageMatrix [%d 0 0 %d 0 %d] /DataSource currentfile", nx, -ny, ny);
if (encode == PSL_ASCII85) PSL_command (PSL, " /ASCII85Decode filter");
if (compress) PSL_command (PSL, " %s", kind_compress[compress]);
PSL_command (PSL, "\n>> %s\n", kind_mask[mask]);
}
if (encode == PSL_ASCII85) {
/* Convert 4-tuples to ASCII85 5-tuples and write buffer to file */
psl_a85_encode (PSL, buffer2, nbytes);
}
else {
/* Regular hexadecimal encoding */
for (i = 0; i < nbytes; i++) {
PSL_command (PSL, "%02X", buffer2[i]); line_length += 2;
if (line_length > 95) { PSL_command (PSL, "\n"); line_length = 0; }
}
}
if (mask == 2) PSL_command (PSL, "%s", kind_compress[compress]);
/* Clear newly created buffers, but maintain original */
if (buffer2 != buffer1) PSL_free (buffer2);
if (buffer1 != buffer ) PSL_free (buffer1);
}
static int psl_putfont (struct PSL_CTRL *PSL, double fontsize) {
if (fontsize == PSL->current.fontsize) return (PSL_NO_ERROR);
PSL->current.fontsize = fontsize;
PSL_command (PSL, "%d F%d\n", psl_ip (PSL, fontsize), PSL->current.font_no);
return (PSL_NO_ERROR);
}
static int psl_encodefont (struct PSL_CTRL *PSL, int font_no) {
if (PSL->init.encoding == NULL) return (PSL_NO_ERROR); /* Already have StandardEncoding by default */
if (PSL->internal.font[font_no].encoded) return (PSL_NO_ERROR); /* Already re-encoded or should not be re-encoded ever */
/* Re-encode fonts with Standard+ or ISOLatin1[+] encodings */
PSL_command (PSL, "PSL_font_encode %d get 0 eq {%s_Encoding /%s /%s PSL_reencode PSL_font_encode %d 1 put} if", font_no, PSL->init.encoding, PSL->internal.font[font_no].name, PSL->internal.font[font_no].name, font_no);
(PSL->internal.comments) ? PSL_command (PSL, "\t%% Set this font\n") : PSL_command (PSL, "\n");
PSL->internal.font[font_no].encoded = 1;
return (PSL_NO_ERROR);
}
/*! . */
static int psl_getfont (struct PSL_CTRL *PSL, char *name) {
int ret = 0; /* Return Helvetica if we cannot figure it out */
char *c = NULL;
/* Return font number from strings like 33% or Helvetica-Bold% */
if (!name || !name[0] || name[0] == '%') return (-1);
if ((c = strchr (name, '%'))) c[0] = '\0'; /* Chop off trailing % */
if (isdigit ((unsigned char) name[0])) { /* Starts with number */
if (!isdigit ((unsigned char) name[strlen(name)-1]))
ret = -1; /* Starts with digit, ends with something else: cannot be */
else
ret = atoi (name);
if (ret < 0 || ret >= PSL->internal.N_FONTS) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: font number %s outside the valid range - reset to 0\n", name);
ret = 0;
}
}
else { /* Does not start with number. Try known font name */
int i;
char q, *m = NULL;
if ((m = strchr (name, 0255)))
q = m[0];
if (m) m[0] = '-'; /* Temporarily replace hyphen with minus */
for (i = 0; i < PSL->internal.N_FONTS && strcmp (name, PSL->internal.font[i].name); i++);
if (i < PSL->internal.N_FONTS)
ret = i;
else {
PSL_message (PSL, PSL_MSG_ERROR, "Error: font %s not recognized - reset to %s\n", name, PSL->internal.font[0].name);
ret = 0;
}
if (m) m[0] = q; /* Restore hyphen */
}
if (c) c[0] = '%'; /* Restore trailing % */
return (ret);
}
char *psl_prepare_text (struct PSL_CTRL *PSL, char *text) {
/* Adds escapes for misc parenthesis, brackets etc.
Will also translate to some European characters such as the @a, @e
etc escape sequences. Calling function must REMEMBER to free memory
allocated by string */
const char *psl_scandcodes[16][5] = { /* Short-hand conversion for some European characters in both Undefined [0], Standard [1], Standard+ [2], ISOLatin1 [3], and ISOLatin1+ [4] encoding */
{ "AA", "AA" , "\\375", "\\305", "\\305"}, /* Aring */
{ "AE", "\\341", "\\341", "\\306", "\\306"}, /* AE */
{ "OE", "\\351", "\\351", "\\330", "\\330"}, /* Oslash */
{ "aa", "aa" , "\\376", "\\345", "\\345"}, /* aring */
{ "ae", "\\361", "\\361", "\\346", "\\346"}, /* ae */
{ "oe", "\\371", "\\371", "\\370", "\\370"}, /* oslash */
{ "C" , "C" , "\\201", "\\307", "\\307"}, /* Ccedilla */
{ "N" , "N" , "\\204", "\\321", "\\321"}, /* Ntilde */
{ "U" , "UE" , "\\335", "\\334", "\\334"}, /* Udieresis */
{ "c" , "c" , "\\215", "\\347", "\\347"}, /* ccedilla */
{ "n" , "n" , "\\227", "\\361", "\\361"}, /* ntilde */
{ "ss", "\\373", "\\373", "\\337", "\\337"}, /* germandbls */
{ "u" , "ue" , "\\370", "\\374", "\\374"}, /* udieresis */
{ "i" , "i" , "\\354", "\\355", "\\355"}, /* iaccute */
{ "@" , "\\100", "\\100", "\\100", "\\100"}, /* atsign */
{ "*" , "\\312", "\\217", "\\260", "\\260"} /* degree */
};
char *string = NULL;
int i = 0, j = 0, font;
int he = 0; /* PSL Historical Encoding (if any) */
if (!text) return NULL;
psl_encodefont (PSL, PSL->current.font_no);
if (strcmp ("Standard+", PSL->init.encoding) == 0)
he = 2;
else if (strcmp ("Standard", PSL->init.encoding) == 0)
he = 1;
else if (strcmp ("ISOLatin1+", PSL->init.encoding) == 0)
he = 4;
else if (strcmp ("ISOLatin1", PSL->init.encoding) == 0)
he = 3;
string = PSL_memory (PSL, NULL, 2 * PSL_BUFSIZ, char);
while (text[i]) {
if (he && text[i] == '@') {
i++;
switch (text[i]) {
case 'A':
strcat (string, psl_scandcodes[0][he]);
j += (int)strlen(psl_scandcodes[0][he]); i++;
break;
case 'E':
strcat (string, psl_scandcodes[1][he]);
j += (int)strlen(psl_scandcodes[1][he]); i++;
break;
case 'O':
strcat (string, psl_scandcodes[2][he]);
j += (int)strlen(psl_scandcodes[2][he]); i++;
break;
case 'a':
strcat (string, psl_scandcodes[3][he]);
j += (int)strlen(psl_scandcodes[3][he]); i++;
break;
case 'e':
strcat (string, psl_scandcodes[4][he]);
j += (int)strlen(psl_scandcodes[4][he]); i++;
break;
case 'o':
strcat (string, psl_scandcodes[5][he]);
j += (int)strlen(psl_scandcodes[5][he]); i++;
break;
case 'C':
strcat (string, psl_scandcodes[6][he]);
j += (int)strlen(psl_scandcodes[6][he]); i++;
break;
case 'N':
strcat (string, psl_scandcodes[7][he]);
j += (int)strlen(psl_scandcodes[7][he]); i++;
break;
case 'U':
strcat (string, psl_scandcodes[8][he]);
j += (int)strlen(psl_scandcodes[8][he]); i++;
break;
case 'c':
strcat (string, psl_scandcodes[9][he]);
j += (int)strlen(psl_scandcodes[9][he]); i++;
break;
case 'n':
strcat (string, psl_scandcodes[10][he]);
j += (int)strlen(psl_scandcodes[10][he]); i++;
break;
case 's':
strcat (string, psl_scandcodes[11][he]);
j += (int)strlen(psl_scandcodes[11][he]); i++;
break;
case 'u':
strcat (string, psl_scandcodes[12][he]);
j += (int)strlen(psl_scandcodes[12][he]); i++;
break;
case 'i':
strcat (string, psl_scandcodes[13][he]);
j += (int)strlen(psl_scandcodes[13][he]); i++;
break;
case '@':
strcat (string, psl_scandcodes[14][he]);
j += (int)strlen(psl_scandcodes[14][he]); i++;
break;
case '.':
strcat (string, psl_scandcodes[15][he]);
j += (int)strlen(psl_scandcodes[15][he]); i++;
break;
case '%': /* Font switcher */
if ((font = psl_getfont (PSL, &text[i+1])) >= 0)
psl_encodefont (PSL, font);
string[j++] = '@';
string[j++] = text[i++]; /* Just copy over the rest */
while (text[i] != '%') string[j++] = text[i++];
break;
case '~': /* Symbol font toggle */
psl_encodefont (PSL, PSL_SYMBOL_FONT);
/* Intentionally fall through - to place the text? */
default:
string[j++] = '@';
string[j++] = text[i++];
break;
}
}
else {
switch (text[i]) { /* NEED TO BE ESCAPED!!!! for PostScript*/
case '{':
case '}':
case '[':
case ']':
case '(':
case ')':
case '<':
case '>':
if (j > 0 && string[MAX(j-1,0)] == '\\') /* ALREADY ESCAPED... */
string[j++] = text[i++];
else {
strcat(string, "\\"); j++;
string[j++] = text[i++];
}
break;
default:
string[j++] = text[i++];
break;
}
}
}
psl_fix_utf8 (PSL, string);
return (string);
}
static int psl_pattern_cleanup (struct PSL_CTRL *PSL) {
int image_no, k = 0;
for (image_no = 0; image_no < PSL_N_PATTERNS * 2; image_no++)
if (PSL->internal.pattern[image_no].status) k++;
if (k == 0) return (PSL_NO_ERROR);
PSL_comment (PSL, "Undefine patterns and images\n");
for (image_no = 0; image_no < PSL_N_PATTERNS * 2; image_no++) {
if (PSL->internal.pattern[image_no].status) {
PSL_command (PSL, "currentdict /image%d undef\n", image_no+1);
PSL_command (PSL, "currentdict /pattern%d undef\n", image_no+1);
}
}
return (PSL_NO_ERROR);
}
static int psl_patch (struct PSL_CTRL *PSL, double *x, double *y, int np) {
/* Like PSL_plotpolygon but intended for small polygons (< 20 points). No checking for
* shorter path by calling psl_convert_path as in PSL_plotpolygon.
*/
int ix[20], iy[20], i, n, n1;
if (np > 20) return (PSL_plotpolygon (PSL, x, y, np)); /* Must call PSL_plotpolygon instead */
ix[0] = psl_ix (PSL, x[0]); /* Convert inch to absolute pixel position for start of quadrilateral */
iy[0] = psl_iy (PSL, y[0]);
for (i = n = 1, n1 = 0; i < np; i++) { /* Same but check if new point represent a different pixel */
ix[n] = psl_ix (PSL, x[i]);
iy[n] = psl_iy (PSL, y[i]);
if (ix[n] != ix[n1] || iy[n] != iy[n1]) n++, n1++;
}
if (ix[0] == ix[n1] && iy[0] == iy[n1]) n--, n1--; /* Closepath will do this automatically */
if (n < 1) return (PSL_NO_POLYGON); /* 0 points don't make a polygon */
n1 = --n;
for (i = n - 1; i >= 0; i--, n--) PSL_command (PSL, "%d %d ", ix[n] - ix[i], iy[n] - iy[i]);
PSL_command (PSL, "%d %d %d SP\n", n1, ix[0], iy[0]);
PSL_command(PSL, "FO\n"); /* Close polygon and stroke/fill as set by PSL_setfill */
return (PSL_NO_ERROR);
}
static char *psl_getsharepath (struct PSL_CTRL *PSL, const char *subdir, const char *stem, const char *suffix, char *path) {
/* stem is the name of the file, e.g., PSL_custom_fonts.txt
* subdir is an optional subdirectory name in the PSL->internal.SHAREDIR directory.
* suffix is an optional suffix to append to name
* path is the full path to the file in question
* Returns the full pathname if a workable path was found
* Looks for file stem in current directory, PSL->internal.USERDIR, and PSL->internal.SHAREDIR[/subdir]
*/
/* First look in the current working directory */
sprintf (path, "%s%s", stem, suffix);
if (!access (path, R_OK)) return (path); /* Yes, found it in current directory */
/* Do not continue when full pathname is given */
#ifdef WIN32
if (stem[0] == '\\' || stem[1] == ':') return (NULL);
#else
if (stem[0] == '/') return (NULL);
#endif
/* Not found, see if there is a file in the user's PSL->internal.USERDIR directory */
if (PSL->internal.USERDIR) {
sprintf (path, "%s/%s%s", PSL->internal.USERDIR, stem, suffix);
if (!access (path, R_OK)) return (path);
sprintf (path, "%s/cache/%s%s", PSL->internal.USERDIR, stem, suffix);
if (!access (path, R_OK)) return (path);
}
/* Try to get file from PSL->internal.SHAREDIR/subdir */
if (subdir) {
sprintf (path, "%s/%s/%s%s", PSL->internal.SHAREDIR, subdir, stem, suffix);
if (!access (path, R_OK)) return (path);
}
/* Finally try file in PSL->internal.SHAREDIR (for backward compatibility) */
sprintf (path, "%s/%s%s", PSL->internal.SHAREDIR, stem, suffix);
if (!access (path, R_OK)) return (path);
return (NULL); /* No file found, give up */
}
static int psl_place_encoding (struct PSL_CTRL *PSL, const char *encoding) {
/* Write the specified encoding string to file */
int k = 0, match = 0, err = 0;
while (PSL_ISO_name[k] && (match = strcmp (encoding, PSL_ISO_name[k])) != 0) k++;
if (match == 0)
PSL_command (PSL, "%s", PSL_ISO_encoding[k]);
else {
PSL_message (PSL, PSL_MSG_ERROR, "Fatal Error: Could not find ISO encoding %s\n", encoding);
err = -1;
}
return err;
}
/* psl_bulkcopy copies the given long static string (defined in PSL_strings.h)
* to the postscript output verbatim or after stripping comments.
*/
#include "PSL_strings.h" /* Static char copies of the three former include files */
static void psl_bulkcopy (struct PSL_CTRL *PSL, const char *text) {
char *buf = NULL, *string = NULL;
int i;
if (!strcmp (text, "PSL_label"))
string = strdup (PSL_label_str);
else if (!strcmp (text, "PSL_prologue"))
string = strdup (PSL_prologue_str);
else if (!strcmp (text, "PSL_text"))
string = strdup (PSL_text_str);
while ((buf = strsep (&string, "\n")) != NULL) {
if (PSL->internal.comments) {
/* We copy every line, including the comments, except those starting '%-' */
if (buf[0] == '%' && buf[1] == '-') continue;
PSL_command (PSL, "%s\n", buf);
}
else {
/* Here we remove the comments */
i = 0;
while (buf[i] && (buf[i] == ' ' || buf[i] == '\t' || buf[i] == '\n')) i++; /* Find first non-blank character */
if (!buf[i]) continue; /* Blank line, skip */
if (buf[i] == '%' && buf[i+1] != '%') continue; /* Comment line, skip */
/* Output this line, but skip trailing comments (while watching for DSC %% comments) */
/* Find the end of important stuff on the line (i.e., look for start of trailing comments) */
for (i = 1; buf[i] && !(buf[i] == '%' && buf[i-1] != '%'); i++);
i--; /* buf[i] is the last character to be output */
while (i && (buf[i] == ' ' || buf[i] == '\t' || buf[i] == '\n')) i--; /* Remove white-space prior to the comment */
buf[++i] = '\0'; /* Add end-line character and print */
PSL_command (PSL, "%s\n", buf);
}
}
PSL_free (string);
}
static struct PSL_WORD *psl_add_word_part (struct PSL_CTRL *PSL, char *word, int length, int fontno, double fontsize, int sub, int super, int small, int under, int space, double rgb[]) {
/* For flag: bits 1 and 2 give number of spaces to follow (0, 1, or 2)
* bit 3 == 1 [4] means leading TAB
* bit 4 == 1 [8] means Composite 1 character
* bit 5 == 1 [16] means Composite 2 character
* bit 6 == 1 [32] means underline word
* bit 7 == 1 [64] means Composite 2 character has a different font that Composite 1 character
*/
int i = 0;
int c;
int tab = false;
double fs;
struct PSL_WORD *new_word = NULL;
if (!length) length = (int)strlen (word);
while (word[i] && word[i] == '\t') { /* Leading tab(s) means indent once */
tab = true;
i++;
length--;
}
new_word = PSL_memory (PSL, NULL, 1, struct PSL_WORD);
new_word->txt = PSL_memory (PSL, NULL, length+1, char);
fs = fontsize * PSL->internal.dpp;
strncpy (new_word->txt, &word[i], (size_t)length);
new_word->font_no = fontno;
if (small) { /* Small caps is on */
new_word->fontsize = (int)lrint (PSL->current.scapssize * fs);
for (i = 0; new_word->txt[i]; i++) {
c = (int)new_word->txt[i];
new_word->txt[i] = (char) toupper (c);
}
}
else if (super) {
new_word->fontsize = (int)lrint (PSL->current.subsupsize * fs);
new_word->baseshift = (int)lrint (PSL->current.sup_up[PSL_LC] * fs);
}
else if (sub) {
new_word->fontsize = (int)lrint (PSL->current.subsupsize * fs);
new_word->baseshift = (int)lrint (-PSL->current.sub_down * fs);
}
else
new_word->fontsize = (int)lrint (fs);
new_word->flag = space;
if (tab) new_word->flag |= 4; /* 3rd bit indicates tab, then add space after word */
if (under) new_word->flag |= 32; /* 6rd bit indicates underline */
PSL_rgb_copy (new_word->rgb, rgb);
return (new_word);
}
static void psl_freewords (struct PSL_WORD **word, int n_words) {
/* Free all the words and their texts */
int k;
for (k = 0; k < n_words; k++) {
PSL_free (word[k]->txt);
PSL_free (word[k]);
}
}
void psl_got_composite_fontswitch (struct PSL_CTRL *PSL, char *text) {
/* If a composite character is made from two different fonts then we need to flag these.
* E.g., Epsilon time-derivative = @!\277@~145@~ using current and Symbol font.
* Here we need to switch to symbol font for one char, from whatever font we are using.
* We look for such cases and count the occurrences, plus replace the font changing code
* @ (either @~ or @%font% with ASCII escape (27)). */
size_t k;
int n = 0;
for (k = 0; k < strlen (text); k++) {
if (text[k] != '@') continue;
/* Start of an escape sequence */
k++;
if (text[k] != '!') continue; /* Not a composite character request */
k++; /* Step to start of character1 */
if (text[k] == '\\') k += 4; else k++; /* Skip the octal or regular first character */
if (text[k] != '@') continue; /* No font switching in the composite glyph */
/* Here we do have such a thing, and we need to avoid the regular string splitting at @ in PSL_plottext and PSL_deftextdim */
text[k] = PSL_ASCII_ES; /* Replace @ with ASCII ESC code for now */
k++; /* Font code type is ~ or % */
if (text[k] == '~') /* Symbol font */
k++; /* Step to character2 */
else { /* Some random font switch */
k++; /* Step past first % */
while (text[k] != '%') k++; /* Skip past the font name or number */
k++; /* Step to character2 */
}
if (text[k] == '\\') k += 4; else k++; /* Skip the octal or regular second character */
if (text[k] != '@') /* Not ideal, user error presumably */
PSL_message (PSL, PSL_MSG_WARNING, "Warning: psl_got_composite_fontswitch expected a font-change at end of composite character 2\n");
else /* Get passed the font return code */
text[k] = PSL_ASCII_ES; /* Skip to end of text section */
n++; /* Found one of these cases */
}
if (n) PSL_message (PSL, PSL_MSG_DEBUG, "psl_got_composite_fontswitch found %d composite characters with different fonts/char sets\n", n);
}
static int psl_paragraphprocess (struct PSL_CTRL *PSL, double y, double fontsize, char *paragraph) {
/* Typeset one or more paragraphs. Separate paragraphs by adding \r to end of last word in a paragraph.
* This is a subfunction that simply place all the text attributes on the stack.
*/
int n, p, n_scan, last_k = -1, error = 0, old_font, font, font2, after, len, n_alloc_txt, F_flag;
int *font_unique = NULL;
unsigned int i, i1, i0, j, k, n_items, n_font_unique, n_rgb_unique;
size_t n_alloc, n_words = 0;
double old_size, last_rgb[4] = {0.0, 0.0, 0.0, 0.0}, rgb[4] = {0.0, 0.0, 0.0, 0.0};
int sub_on, super_on, scaps_on, symbol_on, font_on, size_on, color_on, under_on, plain_word = false, escape;
char *c = NULL, *clean = NULL, test_char, **text = NULL, *lastp = NULL, *copy = NULL;
const char *sep = " ";
struct PSL_WORD **word = NULL, **rgb_unique = NULL;
if (fontsize == 0.0) return (PSL_NO_ERROR); /* Nothing to do if text has zero size */
sub_on = super_on = scaps_on = symbol_on = font_on = size_on = color_on = under_on = false;
/* Break input string into words (sorta based on old pstext) */
n_alloc = PSL_CHUNK;
text = (char **) PSL_memory (PSL, NULL, n_alloc, char *);
copy = strdup (paragraph); /* Need copy since strtok_r will mess with the text */
psl_got_composite_fontswitch (PSL, copy);
c = strtok_r (copy, sep, &lastp); /* Found first word */
while (c) { /* Found another word */
text[n_words] = strdup (c);
len = (int)strlen(text[n_words]) - 1;
if (text[n_words][len] == '\r') { /* New paragraph */
text[n_words][len] = '\0'; /* chop off CR */
n_words++;
if (n_words == n_alloc) {
n_alloc <<= 1;
text = (char **) PSL_memory (PSL, text, n_alloc, char *);
}
text[n_words] = strdup (""); /* This adds an empty string */
}
n_words++;
if (n_words == n_alloc) {
n_alloc <<= 1;
text = (char **) PSL_memory (PSL, text, n_alloc, char *);
}
c = strtok_r (NULL, sep, &lastp);
}
text = (char **) PSL_memory (PSL, text, n_words, char *);
PSL_free (copy);
/* Now process the words into pieces we can typeset. */
n_alloc = PSL_CHUNK;
old_font = font = PSL->current.font_no;
old_size = fontsize;
PSL_rgb_copy (rgb, PSL->current.rgb[PSL_IS_FONT]); /* Initial font color is current font color */
word = PSL_memory (PSL, NULL, n_alloc, struct PSL_WORD *);
for (i = k = 0; i < n_words; i++) {
clean = psl_prepare_text (PSL, text[i]); /* Escape special characters and European character shorthands */
if ((c = strchr (clean, '@')) != NULL) { /* Found a @ escape command */
i0 = 0;
i1 = (int) (c - clean);
if (i1 > i0)
word[k++] = psl_add_word_part (PSL, &clean[i0], i1 - i0, font, fontsize, sub_on, super_on, scaps_on, under_on, PSL_NO_SPACE, rgb);
if (k == n_alloc) {
n_alloc <<= 1;
word = PSL_memory (PSL, word, n_alloc, struct PSL_WORD *);
}
i1++; /* Skip the @ */
while (clean[i1]) {
escape = (clean[i1-1] == '@'); /* i1 char is an escape argument */
test_char = (escape) ? clean[i1] : 'A'; /* Only use clean[i1] if it is an escape modifier */
plain_word = false;
switch (test_char) {
case '!': /* 2 Composite characters */
i1++;
if (clean[i1] == '\\') { /* First char is Octal code character */
word[k++] = psl_add_word_part (PSL, &clean[i1], 4, font, fontsize, sub_on, super_on, scaps_on, under_on, PSL_COMPOSITE_1, rgb);
i1 += 4;
}
else { /* Regular character */
word[k++] = psl_add_word_part (PSL, &clean[i1], 1, font, fontsize, sub_on, super_on, scaps_on, under_on, PSL_COMPOSITE_1, rgb);
i1++;
}
if (k == n_alloc) {
n_alloc <<= 1;
word = PSL_memory (PSL, word, n_alloc, struct PSL_WORD *);
}
/* Watch out for escaped font change before 2nd character */
if (clean[i1] == PSL_ASCII_ES) { /* Have a font change on either side of 2nd character */
i1++;
if (clean[i1] == '~') /* Toggle the symbol font */
font2 = PSL_SYMBOL_FONT;
else { /* Font switching with @%font% ...@%% */
i1++;
font2 = psl_getfont (PSL, &clean[i1]);
while (clean[i1] != '%') i1++;
}
i1++; /* Now at start of 2nd character */
F_flag = PSL_COMPOSITE_2 | PSL_COMPOSITE_2_FNT;
}
else { /* No 2nd font */
font2 = font;
F_flag = PSL_COMPOSITE_2;
}
if (clean[i1] == '\\') { /* 2nd char is Octal code character */
word[k] = psl_add_word_part (PSL, &clean[i1], 4, font2, fontsize, sub_on, super_on, scaps_on, under_on, F_flag, rgb);
i1 += 4;
}
else { /* Regular character */
word[k] = psl_add_word_part (PSL, &clean[i1], 1, font2, fontsize, sub_on, super_on, scaps_on, under_on, F_flag, rgb);
i1++;
}
if (font2 != font) { /* Skip past the font switcher */
i1++; /* Step over the implicit @ (ASCII 27) */
if (font2 == PSL_SYMBOL_FONT)
i1++; /* Move past the ~ */
else
i1 += 2; /* Move past the %% */
}
if (!clean[i1]) word[k]->flag++; /* New word after this composite */
k++;
if (k == n_alloc) {
n_alloc <<= 1;
word = PSL_memory (PSL, word, n_alloc, struct PSL_WORD *);
}
break;
case '~': /* Toggle symbol font */
i1++;
symbol_on = !symbol_on;
font = (font == PSL_SYMBOL_FONT) ? old_font : PSL_SYMBOL_FONT;
break;
case '%': /* Switch font option */
i1++;
font_on = !font_on;
if (clean[i1] == '%') {
font = old_font;
i1++;
}
else {
old_font = font;
font = psl_getfont (PSL, &clean[i1]);
while (clean[i1] != '%') i1++;
i1++;
}
break;
case '_': /* Toggle Underline */
i1++;
under_on = !under_on;
break;
case '-': /* Toggle Subscript */
i1++;
sub_on = !sub_on;
break;
case '+': /* Toggle Subscript */
i1++;
super_on = !super_on;
break;
case '#': /* Toggle Small caps */
i1++;
scaps_on = !scaps_on;
break;
case ':': /* Change font size */
i1++;
size_on = !size_on;
if (clean[i1] == ':') {
fontsize = old_size;
i1++;
}
else {
fontsize = atof (&clean[i1]);
while (clean[i1] != ':') i1++;
i1++;
}
break;
case ';': /* Change font color */
i1++;
color_on = !color_on;
if (clean[i1] == ';') {
PSL_rgb_copy (rgb, last_rgb);
i1++;
}
else {
PSL_rgb_copy (last_rgb, rgb);
j = i1;
while (clean[j] != ';') j++;
clean[j] = 0;
n_scan = sscanf (&clean[i1], "%lg/%lg/%lg", &rgb[0], &rgb[1], &rgb[2]);
if (n_scan == 1) { /* Got gray shade */
rgb[0] /= 255.0; /* Normalize to 0-1 range */
rgb[1] = rgb[2] = rgb[0];
if (rgb[0] < 0.0 || rgb[0] > 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Normalized gray value < 0 or > 1\n");
error++;
}
}
else if (n_scan == 3) { /* Got r/g/b */
static char *color[3] = {"red", "green", "blue"};
for (p = 0; p < 3; p++) {
rgb[p] /= 255.0; /* Normalize to 0-1 range */
if (rgb[p] < 0.0 || rgb[p] > 1.0) {
error++;
PSL_message (PSL, PSL_MSG_ERROR, "Error: Normalized %s value < 0 or > 1\n", color[p]);
}
}
}
else /* Got crap */
error++;
clean[j] = ';';
i1 = j + 1;
}
break;
default: /* Regular text to copy */
j = i1;
while (clean[j] && clean[j] != '@') j++;
after = (clean[j]) ? PSL_NO_SPACE : 1;
plain_word = true;
word[k++] = psl_add_word_part (PSL, &clean[i1], j-i1, font, fontsize, sub_on, super_on, scaps_on, under_on, after, rgb);
if (k == n_alloc) {
n_alloc <<= 1;
word = PSL_memory (PSL, word, n_alloc, struct PSL_WORD *);
}
i1 = (clean[j]) ? j + 1 : j;
break;
}
while (clean[i1] == '@') i1++; /* SKip @ character */
} /* End loop over word with @ in it */
if (!plain_word && (last_k = k - 1) >= 0) { /* Allow space if text ends with @ commands only */
word[last_k]->flag &= 124; /* Knock of anything unused */
word[last_k]->flag |= 1;
}
}
else { /* Plain word, no worries */
word[k++] = psl_add_word_part (PSL, clean, 0, font, fontsize, sub_on, super_on, scaps_on, under_on, PSL_ONE_SPACE, rgb);
if (k == n_alloc) {
n_alloc <<= 1;
word = PSL_memory (PSL, word, n_alloc, struct PSL_WORD *);
}
}
PSL_free (clean); /* Reclaim this memory */
PSL_free (text[i]); /* Since strdup created it */
} /* End of word loop */
if (sub_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Sub-scripting not terminated [%s]\n", paragraph);
if (super_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Super-scripting not terminated [%s]\n", paragraph);
if (scaps_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Small-caps not terminated [%s]\n", paragraph);
if (symbol_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Symbol font change not terminated [%s]\n", paragraph);
if (size_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font-size change not terminated [%s]\n", paragraph);
if (color_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font-color change not terminated [%s]\n", paragraph);
if (under_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Text underline not terminated [%s]\n", paragraph);
PSL_free (text); /* Reclaim this memory */
n_alloc_txt = k; /* Number of items in word array that might have text allocations */
k--; /* Index of last word */
while (k && !word[k]->txt) k--; /* Skip any blank lines at end */
n_items = k + 1;
for (i0 = 0, i1 = 1 ; i1 < n_items-1; i1++, i0++) { /* Loop for periods ending sentences and indicate 2 spaces to follow */
size_t len = strlen(word[i0]->txt);
if (len > 0 && isupper ((int)word[i1]->txt[0]) && word[i0]->txt[len-1] == '.') {
word[i0]->flag &= 60; /* Sets bits 1 & 2 to zero */
word[i0]->flag |= 2; /* Specify 2 spaces */
}
if (!word[i1]->txt[0]) { /* No space at end of paragraph */
word[i0]->flag &= 60;
word[i1]->flag &= 60;
}
}
if (i1 >= n_items) i1 = n_items - 1; /* one-word fix */
word[i1]->flag &= 60; /* Last word not followed by anything */
/* Set each word's index of the corresponding unique color entry */
rgb_unique = PSL_memory (PSL, NULL, n_items, struct PSL_WORD *);
for (n_rgb_unique = i = 0; i < n_items; i++) {
for (j = 0; j < n_rgb_unique && !PSL_same_rgb(word[i]->rgb,rgb_unique[j]->rgb); j++) {}
if (j == n_rgb_unique) rgb_unique[n_rgb_unique++] = word[i];
word[i]->index = j;
}
/* Replace each word's font with the index of the corresponding unique font entry */
font_unique = PSL_memory (PSL, NULL, n_items, int);
for (n_font_unique = i = 0; i < n_items; i++) {
for (j = 0; j < n_font_unique && word[i]->font_no != font_unique[j]; j++) {}
if (j == n_font_unique) font_unique[n_font_unique++] = word[i]->font_no;
word[i]->font_no = j;
}
/* Time to write out to PS file */
/* Load PSL_text procedures from file for now */
if (!PSL->internal.text_init) {
psl_bulkcopy (PSL, "PSL_text");
PSL->internal.text_init = true;
}
PSL_comment (PSL, "PSL_plotparagraph begin:\n");
PSL_comment (PSL, "Define array of fonts:\n");
PSL_command (PSL, "/PSL_fontname\n");
for (i = 0 ; i < n_font_unique; i++) PSL_command (PSL, "/%s\n", PSL->internal.font[font_unique[i]].name);
PSL_command (PSL, "%d array astore def\n", n_font_unique);
PSL_free (font_unique);
PSL_comment (PSL, "Initialize variables:\n");
PSL_command (PSL, "/PSL_n %d def\n", n_items);
PSL_command (PSL, "/PSL_n1 %d def\n", n_items - 1);
PSL_defunits (PSL, "PSL_y0", y);
PSL_command (PSL, "/PSL_spaces [() ( ) ( ) ] def\n");
PSL_command (PSL, "/PSL_lastfn -1 def\n/PSL_lastfz -1 def\n/PSL_lastfc -1 def\n");
PSL_command (PSL, "/PSL_UL 0 def\n/PSL_show {ashow} def\n");
PSL_comment (PSL, "Define array of words:\n");
PSL_command (PSL, "/PSL_word");
for (i = n = 0 ; i < n_items; i++) {
PSL_command (PSL, "%c(%s)", (n) ? ' ' : '\n', word[i]->txt);
n += (int)strlen (word[i]->txt) + 1; if (n >= 60) n = 0;
}
PSL_command (PSL, "\n%d array astore def\n", n_items);
PSL_comment (PSL, "Define array of word font numbers:\n");
PSL_command (PSL, "/PSL_fnt");
for (i = 0 ; i < n_items; i++) PSL_command (PSL, "%c%d", (i%25) ? ' ' : '\n', word[i]->font_no);
PSL_command (PSL, "\n%d array astore def\n", n_items);
PSL_comment (PSL, "Define array of word fontsizes:\n");
PSL_command (PSL, "/PSL_size");
for (i = 0 ; i < n_items; i++) PSL_command (PSL, "%c%d", (i%15) ? ' ' : '\n', word[i]->fontsize);
PSL_command (PSL, "\n%d array astore def\n", n_items);
PSL_comment (PSL, "Define array of word spaces to follow:\n");
PSL_command (PSL, "/PSL_flag");
for (i = 0 ; i < n_items; i++) PSL_command (PSL, "%c%d", (i%25) ? ' ' : '\n', word[i]->flag);
PSL_command (PSL, "\n%d array astore def\n", n_items);
PSL_comment (PSL, "Define array of word baseline shifts:\n");
PSL_command (PSL, "/PSL_bshift");
for (i = 0 ; i < n_items; i++) PSL_command (PSL, "%c%d", (i%25) ? ' ' : '\n', word[i]->baseshift);
PSL_command (PSL, "\n%d array astore def\n", n_items);
PSL_comment (PSL, "Define array of word colors indices:\n");
PSL_command (PSL, "/PSL_color");
for (i = 0 ; i < n_items; i++) PSL_command (PSL, "%c%d", (i%25) ? ' ' : '\n', word[i]->index);
PSL_command (PSL, "\n%d array astore def\n", n_items);
PSL_comment (PSL, "Define array of word colors:\n");
PSL_command (PSL, "/PSL_rgb\n");
for (i = 0 ; i < n_rgb_unique; i++) PSL_command (PSL, "%.3g %.3g %.3g\n", rgb_unique[i]->rgb[0], rgb_unique[i]->rgb[1], rgb_unique[i]->rgb[2]);
PSL_command (PSL, "%d array astore def\n", 3 * n_rgb_unique);
PSL_free (rgb_unique);
PSL_comment (PSL, "Define array of word widths:\n");
PSL_command (PSL, "/PSL_width %d array def\n", n_items);
PSL_command (PSL, "/PSL_max_word_width 0 def\n");
PSL_command (PSL, "0 1 PSL_n1 {");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Determine word width given the font and fontsize for each word\n" : "\n");
PSL_command (PSL, " /i edef");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Loop index i\n" : "\n");
PSL_command (PSL, " PSL_size i get PSL_fontname PSL_fnt i get get Y");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Get and set font and size\n" : "\n");
PSL_command (PSL, " PSL_width i PSL_word i get stringwidth pop put");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Calculate and store width\n": "\n");
PSL_command (PSL, " PSL_width i get PSL_max_word_width gt { /PSL_max_word_width PSL_width i get def} if");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Keep track of widest word\n": "\n");
PSL_command (PSL, "} for\n");
PSL_command (PSL, "PSL_max_word_width PSL_parwidth gt { /PSL_parwidth PSL_max_word_width def } if");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Auto-widen paragraph width if widest word exceeds it\n": "\n");
PSL_comment (PSL, "Define array of word char counts:\n");
PSL_command (PSL, "/PSL_count %d array def\n", n_items);
PSL_command (PSL, "0 1 PSL_n1 {PSL_count exch dup PSL_word exch get length put} for\n");
PSL_comment (PSL, "For composite chars, set width and count to zero for 2nd char:\n");
PSL_command (PSL, "1 1 PSL_n1 {\n /k edef\n PSL_flag k get 16 and 16 eq {\n");
PSL_command (PSL, " /k1 k 1 sub def\n /w1 PSL_width k1 get def\n /w2 PSL_width k get def\n");
PSL_command (PSL, " PSL_width k1 w1 w2 gt {w1} {w2} ifelse put\n PSL_width k 0 put\n");
PSL_command (PSL, " PSL_count k 0 put\n } if\n} for\n");
psl_freewords (word, n_alloc_txt);
PSL_free (word);
return (error + sub_on|super_on|scaps_on|symbol_on|font_on|size_on|color_on|under_on);
}
static void psl_get_origin (double xt, double yt, double xr, double yr, double r, double *xo, double *yo, double *b1, double *b2) {
/* finds origin so that distance is r to the two points given */
double a0, b0, c0, A, B, C, q, sx1, sx2, sy1, sy2;
a0 = (xt - xr) / (yr - yt);
b0 = 0.5 * (xr*xr + yr*yr - xt*xt - yt*yt)/(yr - yt);
c0 = b0 - yt;
A = 1 + a0*a0;
B = 2*(c0*a0 - xt);
C = xt*xt - r*r + c0*c0;
q = sqrt (B*B - 4*A*C);
sx1 = 0.5* (-B + q)/A;
sx2 = 0.5* (-B - q)/A;
sy1 = b0 + a0 * sx1;
sy2 = b0 + a0 * sx2;
if (hypot (sx1, sy1) < r) {
*xo = sx1;
*yo = sy1;
}
else {
*xo = sx2;
*yo = sy2;
}
*b1 = R2D * atan2 (yr - *yo, xr - *xo);
*b2 = R2D * atan2 (yt - *yo, xt - *xo);
}
static int psl_mathrightangle (struct PSL_CTRL *PSL, double x, double y, double param[]) {
/* Called from psl_matharc for the special case of right angle only; no heads involved */
double size, xx[3], yy[3];
PSL_comment (PSL, "Start of Math right angle\n");
PSL_command (PSL, "V %d %d T %.12g R\n", psl_ix (PSL, x), psl_iy (PSL, y), param[1]);
size = param[0] / M_SQRT2;
xx[0] = xx[1] = size; xx[2] = 0.0;
yy[0] = 0.0; yy[1] = yy[2] = size;
PSL_plotline (PSL, xx, yy, 3, PSL_MOVE|PSL_STROKE);
PSL_command (PSL, "U \n");
PSL_comment (PSL, "End of Math right angle\n");
return (PSL_NO_ERROR);
}
static int psl_matharc (struct PSL_CTRL *PSL, double x, double y, double param[]) {
/* psl_matharc draws a mathematical opening angle indicator with center at
* (x,y), radius, and start,stop angles. At the ends we may plot a vector
* head that is composed of circular arcs. As a special case we can plot
* the straight angle symbol when the angles subtend 90 degrees.
*
* param must hold up to 8 values:
* param[PSL_MATHARC_RADIUS] = radius,
* param[PSL_MATHARC_ANGLE_BEGIN] = begin angle1,
* param[PSL_MATHARC_ANGLE_END] = end angle2,
* param[PSL_MATHARC_HEAD_LENGTH] = headlength,
* param[PSL_MATHARC_HEAD_WIDTH] = headwidth,
* param[PSL_MATHARC_ARC_PENWIDTH] = penwidth(inch)
* param[PSL_MATHARC_HEAD_SHAPE] = vector-shape (0-2),
* param[PSL_MATHARC_STATUS] = status bit flags
* param[PSL_MATHARC_HEAD_TYPE_BEGIN] = begin head type;
* param[PSL_MATHARC_HEAD_TYPE_END] = end head type)
* param[PSL_MATHARC_TRIM_BEGIN] = begin trim (degrees);
* param[PSL_MATHARC_TRIM_END] = end trim (degrees)
* param[PSL_MATHARC_HEAD_PENWIDTH] = head penwidth
* add 4 to param[PSL_MATHARC_HEAD_SHAPE] if you want to use a straight angle
* symbol if the opening is 90. */
int i, side[2], heads, outline, fill, sign[2] = {+1, -1};
unsigned int status, kind[2];
double head_arc_length, head_half_width, arc_width, da, da_c, xt, yt, sa, ca, sb, cb, r, r2, xr, yr, xl, yl, xo, yo, shape, h_penwidth;
double angle[2], tangle[2], off[2], A, B, bo1, bo2, xi, yi, bi1, bi2, xv, yv, rshift[2] = {0.0, 0.0}, circ_r, xx[2], yy[2], trim[2];
char *line[2] = {"N", "P S"}, *dump[2] = {"", "fs"}, *end[2] = {"start", "end"};
status = (unsigned int)lrint (param[PSL_MATHARC_STATUS]);
if (status & PSL_VEC_MARC90 && fabs (90.0 - fabs (param[PSL_MATHARC_ANGLE_END]-param[PSL_MATHARC_ANGLE_BEGIN])) < 1.0e-8) { /* Right angle */
return (psl_mathrightangle (PSL, x, y, param));
}
PSL_comment (PSL, "Start of Math arc\n");
/* Make any adjustments caused by trim */
trim[PSL_BEGIN] = (status & PSL_VEC_OFF_BEGIN) ? param[PSL_MATHARC_TRIM_BEGIN] : 0.0;
trim[PSL_END] = (status & PSL_VEC_OFF_END) ? param[PSL_MATHARC_TRIM_END] : 0.0;
PSL_command (PSL, "V %d %d T\n", psl_ix (PSL, x), psl_iy (PSL, y));
kind[PSL_BEGIN] = (unsigned int)lrint (param[PSL_MATHARC_HEAD_TYPE_BEGIN]);
kind[PSL_END] = (unsigned int)lrint (param[PSL_MATHARC_HEAD_TYPE_END]);
r = param[PSL_MATHARC_RADIUS]; /* Radius of arc in inch */
angle[PSL_BEGIN] = param[PSL_MATHARC_ANGLE_BEGIN] + trim[PSL_BEGIN];
angle[PSL_END] = param[PSL_MATHARC_ANGLE_END] - trim[PSL_END]; /* Start/stop angles of arc, possibly adjusted */
head_arc_length = param[PSL_MATHARC_HEAD_LENGTH]; /* Head length in inch */
head_half_width = 0.5 * param[PSL_MATHARC_HEAD_WIDTH]; /* Head half-width in inch */
arc_width = param[PSL_MATHARC_ARC_PENWIDTH]; /* Arc width in inch */
shape = param[PSL_MATHARC_HEAD_SHAPE]; /* Vector head shape (0-1) */
h_penwidth = param[PSL_MATHARC_HEAD_PENWIDTH];
heads = PSL_vec_head (status); /* 1 = at beginning, 2 = at end, 3 = both */
outline = ((status & PSL_VEC_OUTLINE) > 0);
fill = ((status & PSL_VEC_FILL) > 0);
circ_r = sqrt (head_arc_length * head_half_width / M_PI); /* Same area as vector head */
da = head_arc_length * 180.0 / (M_PI * r); /* Angle corresponding to the arc length */
da_c = circ_r * 180.0 / (M_PI * r); /* Angle corresponding to the circle length */
for (i = 0; i < 2; i++) { /* Possibly shorten angular arc if arrow heads take up space */
side[i] = PSL_vec_side (status, i); /* -1 = left-only, +1 = right-only, 0 = normal head for this end */
tangle[i] = angle[i]; /* Angle if no head is present */
off[i] = (kind[i] == PSL_VEC_ARROW) ? sign[i]*da*(1.0-0.5*shape) : 0.0; /* Arc length from tip to backstop */
if ((heads & (i+1)) && side[i] && kind[i] == PSL_VEC_CIRCLE) off[i] -= 0.5 * sign[i] * da_c;
if (heads & (i+1)) tangle[i] += off[i]; /* Change arc angle by headlength or half-circle arc */
}
side[PSL_BEGIN] = -side[PSL_BEGIN]; /* Because of it was initially implemented */
/* rshift kicks in when we want a half-arrow head. In that case we don't want it to be
* exactly half since the vector line will then stick out 1/2 line thickness. So we adjust
* for this half-thickness by adding/subtracting from the radius accordingly, using r2,
* but only if the two heads agree. */
rshift[PSL_BEGIN] = 0.5 * side[PSL_BEGIN] * arc_width;
rshift[PSL_END] = 0.5 * side[PSL_END] * arc_width;
PSL_setlinewidth (PSL, arc_width * PSL_POINTS_PER_INCH);
PSL_plotarc (PSL, 0.0, 0.0, r, tangle[PSL_BEGIN], tangle[PSL_END], PSL_MOVE | PSL_STROKE); /* Draw the (possibly shortened) arc */
if (status & PSL_VEC_MID_FWD) { /* Want forward-pointing mid-point head instead of at end */
angle[PSL_END] = 0.5 * (angle[PSL_BEGIN] + angle[PSL_END]); heads = 2;
if (kind[PSL_END] == PSL_VEC_ARROW) angle[PSL_END] += 0.5 * da;
tangle[PSL_END] = angle[PSL_END] + off[PSL_END];
}
else if (status & PSL_VEC_MID_BWD) { /* Want backwards-pointing mid-point head instead of at beginning */
angle[PSL_BEGIN] = 0.5 * (angle[PSL_BEGIN] + angle[PSL_END]); heads = 1;
if (kind[PSL_BEGIN] == PSL_VEC_ARROW) angle[PSL_BEGIN] -= 0.5 * da;
tangle[PSL_BEGIN] = angle[PSL_BEGIN] + off[PSL_BEGIN];
}
if (heads) { /* Will draw at least one head */
PSL_setfill (PSL, PSL->current.rgb[PSL_IS_FILL], 1); /* Set fill for head(s) */
PSL_command (PSL, "PSL_vecheadpen\n"); /* Switch to vector head pen */
psl_forcelinewidth (PSL, 2.0 * h_penwidth); /* Force pen width update; double width due to clipping below */
}
for (i = 0; i < 2; i++) { /* For both ends */
if ((heads & (i+1)) == 0) continue; /* No arrow head at this angle */
PSL_comment (PSL, "Mathangle head at %s\n", end[i]);
A = D2R * angle[i]; sa = sin (A); ca = cos (A);
r2 = r + sign[i] * rshift[i];
xt = r2 * ca; yt = r2 * sa; /* Tip coordinates */
switch (kind[i]) {
case PSL_VEC_ARROW:
B = D2R * (angle[i] + sign[i] * da); sb = sin (B); cb = cos (B);
PSL_command (PSL, "V\n"); /* Do this inside gsave/restore since we are clipping */
if (side[i] != +sign[i]) { /* Need right side of arrow head */
xr = (r2 + head_half_width) * cb; yr = (r2 + head_half_width) * sb; /* Outer flank coordinates */
psl_get_origin (xt, yt, xr, yr, r2, &xo, &yo, &bo1, &bo2);
if (i == 0 && bo2 > bo1)
bo2 -= 360.0;
else if (i == 1 && bo1 > bo2)
bo1 -= 360.0;
PSL_plotarc (PSL, xo, yo, r2, bo2, bo1, PSL_MOVE); /* Draw the arrow arc from tip to outside flank */
A = D2R * (tangle[i]); sa = sin (A); ca = cos (A);
xv = r2 * ca - xr; yv = r2 * sa - yr; /* Back point coordinates */
PSL_plotpoint (PSL, xv, yv, PSL_REL); /* Connect to back point */
}
else { /* Draw from tip to center back reduced by shape */
PSL_plotarc (PSL, 0.0, 0.0, r2, angle[i], tangle[i], PSL_MOVE);
}
if (side[i] != -sign[i]) { /* Need left side of arrow head */
xl = (r2 - head_half_width) * cb; yl = (r2 - head_half_width) * sb; /* Inner flank coordinates */
psl_get_origin (xt, yt, xl, yl, r2, &xi, &yi, &bi1, &bi2);
if (i == 0 && bi1 < bi2)
bi1 += 360.0;
else if (i == 1 && bi1 > bi2)
bi1 -= 360.0;
PSL_plotarc (PSL, xi, yi, r2, bi1, bi2, PSL_DRAW); /* Draw the arrow arc from tip to outside flank */
}
else { /* Draw from center back reduced by shape to tip */
PSL_plotarc (PSL, 0.0, 0.0, r2, tangle[i], angle[i], PSL_DRAW);
}
PSL_command (PSL, "P clip %s %s U\n", dump[fill], line[outline]);
break;
case PSL_VEC_CIRCLE:
PSL_command (PSL, "V\n"); /* Do this inside gsave/restore since we are clipping */
if (side[i] == -1) /* Need left side */
PSL_plotarc (PSL, xt, yt, circ_r, angle[i]+90.0, angle[i]+270.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
else if (side[i] == +1) /* Need right side */
PSL_plotarc (PSL, xt, yt, circ_r, angle[i]-90.0, angle[i]+90.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
else
PSL_plotarc (PSL, xt, yt, circ_r, 0.0, 360.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
PSL_command (PSL, "P clip %s %s U\n", dump[fill], line[outline]);
break;
case PSL_VEC_TERMINAL:
xt = r * ca; yt = r * sa; /* Tip coordinates */
xx[0] = xx[1] = xt; yy[0] = yy[1] = yt;
if (side[i] == -1) { /* Need left side */
xx[0] = (r-head_half_width) * ca; yy[0] = (r-head_half_width) * sa;
}
else if (side[i] == +1) { /* Need right side */
xx[1] = (r+head_half_width) * ca; yy[1] = (r+head_half_width) * sa;
}
else {
xx[0] = (r-head_half_width) * ca; yy[0] = (r-head_half_width) * sa;
xx[1] = (r+head_half_width) * ca; yy[1] = (r+head_half_width) * sa;
}
PSL_plotline (PSL, xx, yy, 2, PSL_MOVE|PSL_STROKE); /* Set up path */
break;
}
}
PSL_command (PSL, "U \n");
PSL_comment (PSL, "End of Math arc\n");
return (PSL_NO_ERROR);
}
static int psl_search_userimages (struct PSL_CTRL *PSL, char *imagefile) {
int i = 0;
if (imagefile == NULL) return -1;
while (i < PSL->internal.n_userimages) {
if (!strcmp (PSL->internal.user_image[i], imagefile)) /* Yes, found it */
return (i);
i++; /* No, go to next */
}
return -1; /* Not found */
}
static int psl_pattern_init (struct PSL_CTRL *PSL, int image_no, char *imagefile, unsigned char *image, unsigned int width, unsigned int height, unsigned int depth) {
int k, i;
unsigned char *picture = NULL;
/* image_no is 1-90 (PSL_N_PATTERNS) if a standard PSL pattern, else we examine imagefile.
* User images are numbered PSL_N_PATTERNS+1,2,3 etc. */
k = image_no - 1; /* Array index */
if ((image_no > 0 && image_no <= PSL_N_PATTERNS)) { /* Premade pattern yet not used, assign settings */
if (PSL->internal.pattern[k].status) return (image_no); /* Already initialized this pattern once, just return */
picture = PSL_pattern[k];
}
else { /* User image, check to see if already used */
if (imagefile == NULL) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Gave NULL as imagefile name\n");
return (-1);
}
i = psl_search_userimages (PSL, imagefile); /* i = 0 is the first user image */
if (i >= 0) return (PSL_N_PATTERNS + i + 1); /* Already registered, just return number */
if (PSL->internal.n_userimages > (PSL_N_PATTERNS-1)) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Already maintaining %d user images and cannot accept any more\n", PSL->internal.n_userimages+1);
return (-1);
}
/* Must initialize a previously unused image */
PSL->internal.user_image[PSL->internal.n_userimages] = PSL_memory (PSL, NULL, strlen (imagefile)+1, char);
strcpy (PSL->internal.user_image[PSL->internal.n_userimages], imagefile);
PSL->internal.n_userimages++;
image_no = PSL_N_PATTERNS + PSL->internal.n_userimages;
k = image_no - 1; /* Array index */
picture = image;
}
/* Store size, depth and bogus DPI setting */
PSL->internal.pattern[k].nx = width;
PSL->internal.pattern[k].ny = height;
PSL->internal.pattern[k].depth = depth;
PSL->internal.pattern[k].status = 1;
PSL->internal.pattern[k].dpi = -999;
PSL_comment (PSL, "Define pattern %d\n", image_no);
PSL_command (PSL, "/image%d {<~\n", image_no);
psl_stream_dump (PSL, picture, PSL->internal.pattern[k].nx, PSL->internal.pattern[k].ny, PSL->internal.pattern[k].depth, PSL->internal.compress, PSL_ASCII85, 2);
PSL_command (PSL, "} def\n");
return (image_no);
}
#ifdef PSL_WITH_GMT4_SUPPORT
/* This code is included so we may offer backwards compatibility with GMT 4 old-school
* polygon vectors. It is not documented and should not be used by non-GMT developers.
*/
void psl_vector_v4 (struct PSL_CTRL *PSL, double x, double y, double param[], double rgb[], int outline)
{
/* Old GMT4 vector symbol:
* param[PSL_VEC_XTIP] = xtip;
* param[PSL_VEC_YTIP] = ytip;
* param[PSL_VEC_TAIL_WIDTH] = tailwidth;
* param[PSL_VEC_HEAD_LENGTH] = headlength;
* param[PSL_VEC_HEAD_WIDTH] = headwidth;
* param[PSL_VEC_HEAD_SHAPE] = headshape;
* Will make sure that arrow has a finite width in PS coordinates */
double angle, xtail, ytail, xtip, ytip, tailwidth, headlength, headwidth, headshape;
int w2, length, hw, hl, hl2, hw2, l2;
xtail = x; ytail = y;
xtip = param[PSL_VEC_XTIP];
ytip = param[PSL_VEC_YTIP];
length = psl_iz (PSL, hypot (xtail-xtip, ytail-ytip)); /* Vector length in PS units */
if (length == 0) return; /* NULL vector */
tailwidth = param[PSL_VEC_TAIL_WIDTH];
headlength = param[PSL_VEC_HEAD_LENGTH];
headwidth = param[PSL_VEC_HEAD_WIDTH];
headshape = param[PSL_VEC_HEAD_SHAPE];
if (outline & 8)
PSL_setfill (PSL, rgb, outline - 8);
else
PSL_setfill (PSL, rgb, outline);
angle = atan2 ((ytip-ytail),(xtip-xtail)) * R2D; /* Angle vector makes with horizontal, in radians */
PSL_command (PSL, "V %d %d T ", psl_ix (PSL, xtail), psl_ix (PSL, ytail)); /* Temporarily set tail point the local origin (0, 0) */
if (angle != 0.0) PSL_command (PSL, "%.12g R ", angle); /* Rotate so vector is horizontal in local coordinate system */
w2 = psl_ix (PSL, 0.5 * tailwidth); if (w2 == 0) w2 = 1; /* Half-width of vector tail */
hw = psl_ix (PSL, headwidth); if (hw == 0) hw = 1; /* Width of vector head */
hl = psl_ix (PSL, headlength); /* Length of vector head */
hl2 = psl_ix (PSL, 0.5 * headshape * headlength); /* Cut-in distance due to slanted back-side of arrow head */
hw2 = hw - w2; /* Distance from tail side to head side (vertically) */
if (outline & 8) { /* Double-headed vector */
l2 = length - 2 * hl + 2 * hl2; /* Inside length between start of heads */
PSL_command (PSL, "%d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d Sv U\n",
hl2, hw2, -l2, hl2, -hw2, -hl, hw, hl, hw, -hl2, -hw2, l2, -hl2, hw2, hl, -hw);
}
else { /* Single-headed vector */
l2 = length - hl + hl2; /* Length from tail to start of slanted head */
PSL_command (PSL, "%d %d %d %d %d %d %d %d %d %d %d SV U\n",
-l2, hl2, -hw2, -hl, hw, hl, hw, -hl2, -hw2, l2, -w2);
}
}
#endif
#define FIN_SLANT_COS 0.707106781187 /* I.e., 45 degrees slant */
#define FIN_LENGTH_SCALE 0.66666667 /* 2/3 the length of the vector */
#define FIN_HEIGHT_SCALE 0.5 /* 1/2 the width of the vector */
static int psl_vector (struct PSL_CTRL *PSL, double x, double y, double param[]) {
/* Will make sure that arrow has a finite width in PS coordinates.
* param must hold up to 12 values:
* param[PSL_VEC_XTIP] = xtip;
* param[PSL_VEC_YTIP] = ytip;
* param[PSL_VEC_TAIL_WIDTH] = tailwidth;
* param[PSL_VEC_HEAD_LENGTH] = headlength;
* param[PSL_VEC_HEAD_WIDTH] = headwidth;
* param[PSL_VEC_HEAD_SHAPE] = headshape;
* param[PSL_VEC_STATUS] = status bit flags
* param[PSL_VEC_HEAD_TYPE_BEGIN] = begin head type;
* param[PSL_VEC_HEAD_TYPE_END] = end head type
* param[PSL_VEC_TRIM_BEGIN] = begin trim value;
* param[PSL_VEC_TRIM_END] = end trim value.
* param[PSL_VEC_HEAD_PENWIDTH] = head penwidth
*/
double angle, xtip, ytip, r, s, tailwidth, headlength, headwidth, headshape, length_inch;
double xx[6], yy[6], xc[3], yc[3], off[2], yshift[2], trim[2], xp = 0.0, h_penwidth;
int length, asymmetry[2], n, heads, outline, fill, status, head_check;
unsigned int kind[2];
char *line[2] = {"N", "P S"}, *dump[2] = {"", "fs"};
xtip = param[PSL_VEC_XTIP]; ytip = param[PSL_VEC_YTIP];
length_inch = hypot (x-xtip, y-ytip); /* Vector length in inches */
length = psl_iz (PSL, length_inch); /* Vector length in PS units */
if (length == 0) return (PSL_NO_ERROR); /* NULL vector */
angle = atan2 (ytip-y, xtip-x) * R2D; /* Angle vector makes with horizontal, in degrees */
status = lrint (param[PSL_VEC_STATUS]);
h_penwidth = param[PSL_VEC_HEAD_PENWIDTH];
/* Make any adjustments caused by trim */
trim[PSL_BEGIN] = (status & PSL_VEC_OFF_BEGIN) ? param[PSL_VEC_TRIM_BEGIN] : 0.0;
trim[PSL_END] = (status & PSL_VEC_OFF_END) ? param[PSL_VEC_TRIM_END] : 0.0;
if (fabs (angle) == 90.0) { /* Vertical segment; only adjust y coordinates */
y += copysign (trim[PSL_BEGIN], angle); ytip -= copysign (trim[PSL_END], angle);
}
else { /* General case, use trig */
double s, c, a = angle * D2R;
s = sin (a); c = cos (a);
x += c * trim[PSL_BEGIN]; y += s * trim[PSL_BEGIN];
xtip -= c * trim[PSL_END]; ytip -= s * trim[PSL_END];
}
length_inch = hypot (x-xtip, y-ytip); /* Recalculate vector length in inches */
length = psl_iz (PSL, length_inch); /* Vector length in PS units */
if (length == 0) return (PSL_NO_ERROR); /* NULL vector */
tailwidth = param[PSL_VEC_TAIL_WIDTH];
headlength = param[PSL_VEC_HEAD_LENGTH]; headwidth = 0.5 * param[PSL_VEC_HEAD_WIDTH]; headshape = param[PSL_VEC_HEAD_SHAPE];
kind[PSL_BEGIN] = (unsigned int)lrint (param[PSL_VEC_HEAD_TYPE_BEGIN]);
kind[PSL_END] = (unsigned int)lrint (param[PSL_VEC_HEAD_TYPE_END]);
off[PSL_BEGIN] = (kind[PSL_BEGIN] == PSL_VEC_ARROW) ? 0.5 * (2.0 - headshape) * headlength : 0.0;
off[PSL_END] = (kind[PSL_END] == PSL_VEC_ARROW) ? 0.5 * (2.0 - headshape) * headlength : 0.0;
if (kind[PSL_BEGIN] == PSL_VEC_ARROW_PLAIN) off[PSL_BEGIN] = 0.5 * tailwidth * headlength / headwidth;
else if (kind[PSL_BEGIN] == PSL_VEC_TAIL) off[PSL_BEGIN] = FIN_SLANT_COS * headwidth + FIN_LENGTH_SCALE * headlength - tailwidth;
if (kind[PSL_END] == PSL_VEC_ARROW_PLAIN) off[PSL_END] = 0.5 * tailwidth * headlength / headwidth;
else if (kind[PSL_END] == PSL_VEC_TAIL) off[PSL_END] = FIN_SLANT_COS * headwidth + FIN_LENGTH_SCALE * headlength - tailwidth;
heads = PSL_vec_head (status); /* 1 = at beginning, 2 = at end, 3 = both */
head_check = PSL_vec_headcheck (status); /* nonzero if we should always place a head regardless of length */
if (head_check) { /* Must worry about head size relative to vector length */
double h_length_limit = length_inch; /* Max length of arrow in inches */
if (heads == 3) h_length_limit *= 0.5; /* Split this length between the two heads */
if (heads & 1 && headlength > h_length_limit) heads -= 1; /* No room for head */
if (heads & 2 && headlength > h_length_limit) heads -= 2; /* No room for head */
}
PSL_setlinewidth (PSL, tailwidth * PSL_POINTS_PER_INCH); /* Inherits color from current pen */
outline = ((status & PSL_VEC_OUTLINE) > 0);
fill = ((status & PSL_VEC_FILL) > 0);
asymmetry[PSL_BEGIN] = -PSL_vec_side (status, 0); /* -1 = left-only, +1 = right-only, 0 = normal head at beginning */
asymmetry[PSL_END] = PSL_vec_side (status, 1); /* -1 = left-only, +1 = right-only, 0 = normal head at beginning */
r = sqrt (headlength * headwidth / M_PI); /* Same circle area as vector head */
s = sqrt (headlength * headwidth)/2; /* Same square area as vector head */
PSL_comment (PSL, "Start of Cartesian vector\n");
PSL_command (PSL, "V %d %d T ", psl_ix (PSL, x), psl_iy (PSL, y)); /* Temporarily set tail point the local origin (0, 0) */
if (angle != 0.0) PSL_command (PSL, "%.12g R\n", angle); /* Rotate so vector is horizontal in local coordinate system */
/* Make any adjustments caused by trim */
xx[0] = (heads & 1) ? off[PSL_BEGIN] : 0.0;
xx[1] = (heads & 2) ? length_inch - off[PSL_END] : length_inch;
if (heads & 1 && asymmetry[PSL_BEGIN] && kind[PSL_BEGIN] == PSL_VEC_CIRCLE) xx[0] = -r;
if (heads & 2 && asymmetry[PSL_END] && kind[PSL_END] == PSL_VEC_CIRCLE) xx[1] += r;
if (xx[1] > xx[0]) PSL_plotsegment (PSL, xx[0], 0.0, xx[1], 0.0); /* Draw vector line body unless head length equals or exceeds total length */
if (status & PSL_VEC_MID_FWD) { /* Want forward-pointing mid-point head instead of at end */
xp = -0.5 * length_inch; heads = 2;
if (kind[PSL_END] == PSL_VEC_ARROW) xp += 0.5 * headlength;
}
else if (status & PSL_VEC_MID_BWD) { /* Want backwards-pointing mid-point head instead of at beginning */
xp = 0.5 * length_inch; heads = 1;
if (kind[PSL_BEGIN] == PSL_VEC_ARROW) xp -= 0.5 * headlength;
}
if (heads == 0) { /* No heads requested */
PSL_command (PSL, "U\n");
PSL_comment (PSL, "End of Cartesian vector\n");
return (PSL_NO_ERROR);
}
/* Must switch asymmetry for start head since implemented backwards */
yshift[PSL_BEGIN] = 0.5 * asymmetry[PSL_BEGIN] * tailwidth;
yshift[PSL_END] = 0.5 * asymmetry[PSL_END] * tailwidth;
if (heads & 1) { /* Need head at beginning, pointing backwards */
double f = (kind[PSL_BEGIN] == PSL_VEC_ARROW_PLAIN) ? 4.0 : 2.0;
PSL_comment (PSL, "Cartesian vector head at start\n");
PSL_command (PSL, "PSL_vecheadpen\n"); /* Switch to vector head pen */
psl_forcelinewidth (PSL, f * h_penwidth); /* Force pen width update */
switch (kind[PSL_BEGIN]) {
case PSL_VEC_ARROW:
xx[0] = xp; yy[0] = -yshift[PSL_BEGIN]; n = 1; /* Vector tip */
if (asymmetry[PSL_BEGIN] != +1) { /* Need left side */
xx[n] = xp + headlength; yy[n++] = -headwidth;
}
if (asymmetry[PSL_BEGIN] || headshape != 0.0) { /* Need center back of head */
xx[n] = xp + 0.5 * (2.0 - headshape) * headlength; yy[n++] = -yshift[PSL_BEGIN];
}
if (asymmetry[PSL_BEGIN] != -1) { /* Need right side */
xx[n] = xp + headlength; yy[n++] = headwidth;
}
PSL_plotline (PSL, xx, yy, n, PSL_MOVE); /* Set up path */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
break;
case PSL_VEC_ARROW_PLAIN:
/* Must set up clip path (xc,yc) to ensure tip is at end of vector, AND double
* the pen thickness since half will be clipped. */
n = 0;
xc[0] = xp + headlength; yc[0] = -headwidth;
if (asymmetry[PSL_BEGIN] != +1) { /* Need left side */
xx[n] = xp + headlength; yy[n++] = -headwidth;
}
xx[n] = xp; yy[n++] = -yshift[PSL_BEGIN]; /* Vector tip */
xc[1] = xp; yc[1] = -yshift[PSL_BEGIN]; /* Vector tip */
if (asymmetry[PSL_BEGIN] != -1) { /* Need right side */
xx[n] = xp + headlength; yy[n++] = headwidth;
}
xc[2] = xp + headlength; yc[2] = headwidth;
PSL_command (PSL, "V "); /* Place under gsave/grestore since changing pen */
PSL_plotline (PSL, xc, yc, 3, PSL_MOVE); /* Set up clip path */
PSL_command (PSL, "P clip N ");
PSL_plotline (PSL, xx, yy, n, PSL_MOVE|PSL_STROKE); /* Plot arrow head */
//PSL_setlinewidth (PSL, tailwidth * PSL_POINTS_PER_INCH);
PSL_command (PSL, "U\n");
break;
case PSL_VEC_TAIL:
xx[0] = xp + tailwidth + off[PSL_BEGIN]; yy[0] = -yshift[PSL_BEGIN]; n = 1; /* Vector tip */
if (asymmetry[PSL_BEGIN] != +1) { /* Need left side */
xx[n] = xp + tailwidth - FIN_SLANT_COS * headwidth + off[PSL_BEGIN]; yy[n++] = -FIN_HEIGHT_SCALE * headwidth;
xx[n] = xx[n-1] - FIN_LENGTH_SCALE * headlength; yy[n++] = -FIN_HEIGHT_SCALE * headwidth;
}
xx[n] = xp + tailwidth - FIN_LENGTH_SCALE * headlength + off[PSL_BEGIN]; yy[n++] = -yshift[PSL_BEGIN];
if (asymmetry[PSL_BEGIN] != -1) { /* Need right side */
xx[n] = xp + tailwidth - FIN_SLANT_COS * headwidth - FIN_LENGTH_SCALE * headlength + off[PSL_BEGIN]; yy[n++] = FIN_HEIGHT_SCALE * headwidth;
xx[n] = xx[n-1] + FIN_LENGTH_SCALE * headlength; yy[n++] = FIN_HEIGHT_SCALE * headwidth;
}
PSL_plotline (PSL, xx, yy, n, PSL_MOVE); /* Set up path */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
if (asymmetry[PSL_BEGIN] == 0) { /* Draw feather center */
PSL_command (PSL, "V 0 W ");
xx[1] = xp + tailwidth - headlength + off[PSL_BEGIN]; yy[1] = -yshift[PSL_BEGIN];
PSL_plotsegment (PSL, xx[0], yy[0], xx[1], yy[1]); /* Draw vector line body */
PSL_command (PSL, "U\n");
}
break;
case PSL_VEC_TAIL_PLAIN:
n = 0;
if (asymmetry[PSL_BEGIN] != +1) { /* Need left side */
xx[n] = xp - headlength; yy[n++] = -headwidth;
}
xx[n] = xp; yy[n++] = -yshift[PSL_BEGIN]; /* Vector tip */
if (asymmetry[PSL_BEGIN] != -1) { /* Need right side */
xx[n] = xp - headlength; yy[n++] = headwidth;
}
PSL_plotline (PSL, xx, yy, n, PSL_MOVE|PSL_STROKE); /* Set up path */
break;
case PSL_VEC_CIRCLE:
if (asymmetry[PSL_BEGIN] == -1) /* Need left side */
PSL_plotarc (PSL, xp, 0.0, r, 0.0, 180.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
else if (asymmetry[PSL_BEGIN] == +1) /* Need right side */
PSL_plotarc (PSL, xp, 0.0, r, 180.0, 360.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
else
PSL_plotarc (PSL, xp, 0.0, r, 0.0, 360.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
break;
case PSL_VEC_SQUARE:
xx[0] = xx[3] = xp - s; xx[1] = xx[2] = xp + s;
if (asymmetry[PSL_BEGIN] == -1) { /* Left side */
yy[0] = yy[1] = s;
yy[2] = yy[3] = 0.0;
}
else if (asymmetry[PSL_BEGIN] == +1) { /* Right side */
yy[0] = yy[1] = 0.0;
yy[2] = yy[3] = -s;
}
else {
yy[0] = yy[1] = +s;
yy[2] = yy[3] = -s;
}
PSL_plotline (PSL, xx, yy, 4, PSL_MOVE); /* Set up path */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
break;
case PSL_VEC_TERMINAL:
xx[0] = xx[1] = xp; yy[0] = yy[1] = 0.0; /* Terminal line */
if (asymmetry[PSL_BEGIN] == -1) /* Left side */
yy[1] = headwidth;
else if (asymmetry[PSL_BEGIN] == +1) /* Right side */
yy[1] = -headwidth;
else {
yy[0] = -headwidth;
yy[1] = +headwidth;
}
PSL_plotline (PSL, xx, yy, 2, PSL_MOVE|PSL_STROKE); /* Set up path */
break;
}
}
PSL_command (PSL, "U\n");
if (heads & 2) { /* Need head at end, pointing forwards */
double f = (kind[PSL_END] == PSL_VEC_ARROW_PLAIN) ? 4.0 : 2.0;
PSL_comment (PSL, "Cartesian vector head at end\n");
PSL_command (PSL, "V %d %d T ", psl_ix (PSL, xtip), psl_iy (PSL, ytip)); /* Temporarily set head point the local origin (0, 0) */
if (angle != 0.0) PSL_command (PSL, "%.12g R\n", angle); /* Rotate so vector is horizontal in local coordinate system */
PSL_command (PSL, "PSL_vecheadpen\n"); /* Switch to vector head pen */
psl_forcelinewidth (PSL, f * h_penwidth); /* Force pen width update */
switch (kind[PSL_END]) {
case PSL_VEC_ARROW:
xx[0] = xp; yy[0] = yshift[PSL_END]; n = 1; /* Vector tip */
if (asymmetry[PSL_END] != +1) { /* Need left side */
xx[n] = xp - headlength; yy[n++] = headwidth;
}
if (asymmetry[PSL_END] || headshape != 0.0) { /* Need center back of head */
xx[n] = xp -0.5 * (2.0 - headshape) * headlength; yy[n++] = yshift[PSL_END];
}
if (asymmetry[PSL_END] != -1) { /* Need right side */
xx[n] = xp - headlength; yy[n++] = -headwidth;
}
PSL_plotline (PSL, xx, yy, n, PSL_MOVE); /* Set up path */
PSL_command (PSL, "P clip %s %s \n", dump[fill], line[outline]);
break; /* Finalize, then reset outline parameter */
case PSL_VEC_ARROW_PLAIN:
n = 0;
xc[0] = xp - headlength; yc[0] = -headwidth;
if (asymmetry[PSL_END] != +1) { /* Need left side */
xx[n] = xp - headlength; yy[n++] = -headwidth;
}
xx[n] = xp; yy[n++] = -yshift[PSL_END]; /* Vector tip */
xc[1] = xp; yc[1] = -yshift[PSL_END]; /* Vector tip */
if (asymmetry[PSL_END] != -1) { /* Need right side */
xx[n] = xp - headlength; yy[n++] = headwidth;
}
xc[2] = xp - headlength; yc[2] = headwidth;
PSL_command (PSL, "V "); /* Place under gsave/grestore since changing pen */
PSL_plotline (PSL, xc, yc, 3, PSL_MOVE); /* Set up clip path */
PSL_command (PSL, "P clip N ");
PSL_plotline (PSL, xx, yy, n, PSL_MOVE|PSL_STROKE); /* Plot arrow head */
//PSL_setlinewidth (PSL, tailwidth * PSL_POINTS_PER_INCH);
PSL_command (PSL, "U\n");
break;
case PSL_VEC_TAIL:
xx[0] = xp - tailwidth - off[PSL_END]; yy[0] = -yshift[PSL_END]; n = 1; /* Vector tip */
if (asymmetry[PSL_END] != +1) { /* Need left side */
xx[n] = xp - tailwidth + FIN_SLANT_COS * headwidth - off[PSL_END]; yy[n++] = -FIN_HEIGHT_SCALE * headwidth;
xx[n] = xx[n-1] + FIN_LENGTH_SCALE * headlength; yy[n++] = -FIN_HEIGHT_SCALE * headwidth;
}
xx[n] = xp - tailwidth + FIN_LENGTH_SCALE * headlength - off[PSL_END]; yy[n++] = -yshift[PSL_END];
if (asymmetry[PSL_END] != -1) { /* Need right side */
xx[n] = xp - tailwidth + FIN_SLANT_COS * headwidth + FIN_LENGTH_SCALE * headlength - off[PSL_END]; yy[n++] = FIN_HEIGHT_SCALE * headwidth;
xx[n] = xx[n-1] - FIN_LENGTH_SCALE * headlength; yy[n++] = FIN_HEIGHT_SCALE * headwidth;
}
PSL_plotline (PSL, xx, yy, n, PSL_MOVE); /* Set up path */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
if (asymmetry[PSL_END] == 0) { /* Draw feather center */
PSL_command (PSL, "V 0 W ");
xx[1] = xp - tailwidth + headlength - off[PSL_END]; yy[1] = -yshift[PSL_END];
PSL_plotsegment (PSL, xx[0], yy[0], xx[1], yy[1]); /* Draw vector line body */
PSL_command (PSL, "U\n");
}
break;
case PSL_VEC_TAIL_PLAIN:
n = 0;
if (asymmetry[PSL_END] != +1) { /* Need left side */
xx[n] = xp + headlength; yy[n++] = -headwidth;
}
xx[n] = xp; yy[n++] = -yshift[PSL_END]; /* Vector tip */
if (asymmetry[PSL_END] != -1) { /* Need right side */
xx[n] = xp + headlength; yy[n++] = headwidth;
}
PSL_plotline (PSL, xx, yy, n, PSL_MOVE|PSL_STROKE); /* Set up path */
break;
case PSL_VEC_CIRCLE:
if (asymmetry[PSL_END] == -1) /* Need left side */
PSL_plotarc (PSL, xp, 0.0, r, 0.0, 180.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
else if (asymmetry[PSL_END] == +1) /* Need right side */
PSL_plotarc (PSL, xp, 0.0, r, 180.0, 360.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
else
PSL_plotarc (PSL, xp, 0.0, r, 0.0, 360.0, PSL_MOVE); /* Draw the (possibly shortened) arc */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
break;
case PSL_VEC_SQUARE:
xx[0] = xx[3] = xp - s; xx[1] = xx[2] = xp + s;
if (asymmetry[PSL_END] == -1) { /* Left side */
yy[0] = yy[1] = s;
yy[2] = yy[3] = 0.0;
}
else if (asymmetry[PSL_END] == +1) { /* Right side */
yy[0] = yy[1] = 0.0;
yy[2] = yy[3] = -s;
}
else {
yy[0] = yy[1] = +s;
yy[2] = yy[3] = -s;
}
PSL_plotline (PSL, xx, yy, 4, PSL_MOVE); /* Set up path */
PSL_command (PSL, "P clip %s %s ", dump[fill], line[outline]);
break;
case PSL_VEC_TERMINAL:
xx[0] = xx[1] = xp; yy[0] = yy[1] = 0.0; /* Terminal line */
if (asymmetry[PSL_END] == -1) /* Left side */
yy[1] = headwidth;
else if (asymmetry[PSL_END] == +1) /* Right side */
yy[1] = -headwidth;
else {
yy[0] = -headwidth;
yy[1] = +headwidth;
}
PSL_plotline (PSL, xx, yy, 2, PSL_MOVE|PSL_STROKE); /* Set up path */
break;
}
PSL_command (PSL, "U\n");
}
PSL_comment (PSL, "End of Cartesian vector\n");
return (PSL_NO_ERROR);
}
static int psl_wedge (struct PSL_CTRL *PSL, double x, double y, double param[]) {
/* Takes care of plotting a wedge.
* param may hold up to 11 values; only 8 used here.
* param[PSL_WEDGE_RADIUS_O] = radius;
* param[PSL_WEDGE_ANGLE_BEGIN] = start angle;
* param[PSL_WEDGE_ANGLE_END] = end angle;
* param[PSL_WEDGE_STATUS] = status bit flags;
* param[PSL_WEDGE_RADIUS_I] = inner_radius [0]
* param[PSL_WEDGE_DR] = dr [0];
* param[PSL_WEDGE_DA] = da [0]
* param[PSL_WEDGE_ACTION] = do_fill (1) | do_outline (2)
*/
double xx[3], yy[3], sa, ca;
int status = lrint (param[PSL_WEDGE_STATUS]), flags = lrint (param[PSL_WEDGE_ACTION]);
bool windshield = (param[PSL_WEDGE_RADIUS_I] > 0.0); /* Flag that we have an inner-tube */
bool fill = flags & 1, outline = flags & 2;
if (status == 0 && !windshield) { /* Good old plain pie wedge */
PSL_command (PSL, "%d %.12g %.12g %d %d Sw\n", psl_iz (PSL, param[PSL_WEDGE_RADIUS_O]), param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], psl_ix (PSL, x), psl_iy (PSL, y));
return (PSL_NO_ERROR);
}
/* Somewhat more involved */
if (fill) { /* Paint wedge given fill first but not outline (if desired) */
if (windshield)
PSL_command (PSL, "V %d %d T 0 0 %d %.12g %.12g arc 0 0 %d %.12g %.12g arcn P fs U\n", psl_ix (PSL, x), psl_iy (PSL, y),
psl_iz (PSL, param[PSL_WEDGE_RADIUS_O]), param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], psl_iz (PSL, param[PSL_WEDGE_RADIUS_I]), param[PSL_WEDGE_ANGLE_END], param[PSL_WEDGE_ANGLE_BEGIN]);
else
PSL_command (PSL, "%d %.12g %.12g %d %d 2 copy M 5 2 roll arc fs\n", psl_iz (PSL, param[PSL_WEDGE_RADIUS_O]), param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], psl_ix (PSL, x), psl_iy (PSL, y));
}
/* Next, if spiderweb is desired we need to set up a save/restore section and change the pen to PSL_spiderpen */
if (status) PSL_command (PSL, "V PSL_spiderpen\n");
if (status & 1) { /* Draw one or more arcs */
if (param[PSL_WEDGE_DR] > 0.0) { /* Array of arcs requested */
double r = (windshield) ? ceil (param[PSL_WEDGE_RADIUS_I] / param[PSL_WEDGE_DR]) * param[PSL_WEDGE_DR] : param[PSL_WEDGE_DR]; /* Either start at first arc inside windshield or the first zero-length arc of wedge */
while (r <= (param[PSL_WEDGE_RADIUS_O]+PSL_SMALL)) {
PSL_plotarc (PSL, x, y, r, param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], PSL_MOVE | PSL_STROKE); /* Draw the arcs */
r += param[PSL_WEDGE_DR]; /* Go to next radial distance */
}
}
else { /* Just draw outer and possibly inner arcs */
PSL_plotarc (PSL, x, y, param[PSL_WEDGE_RADIUS_O], param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], PSL_MOVE | PSL_STROKE); /* Draw the outer arc */
if (windshield) /* Draw the inner arc */
PSL_plotarc (PSL, x, y, param[PSL_WEDGE_RADIUS_I], param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], PSL_MOVE | PSL_STROKE);
}
}
if (status & 2) { /* Draw one or more radial lines */
if (param[PSL_WEDGE_DA] > 0.0) { /* Array of lines requested */
double a = ceil (param[PSL_WEDGE_ANGLE_BEGIN] / param[PSL_WEDGE_DA]) * param[PSL_WEDGE_DA]; /* First angle of desired multiple inside range */
while (a <= (param[PSL_WEDGE_ANGLE_END]+PSL_SMALL)) {
sa = sin (D2R * a); ca = cos (D2R * a);
xx[0] = x + param[PSL_WEDGE_RADIUS_I] * ca; yy[0] = y + param[PSL_WEDGE_RADIUS_I] * sa;
xx[1] = x + param[PSL_WEDGE_RADIUS_O] * ca; yy[1] = y + param[PSL_WEDGE_RADIUS_O] * sa;
PSL_plotline (PSL, xx, yy, 2, PSL_MOVE+PSL_STROKE); /* Plot radial line */
a += param[PSL_WEDGE_DA]; /* Go to next angle */
}
}
else { /* Just draw the start and stop radii */
if (windshield) { /* These are two separate lines not connecting */
sa = sin (D2R * param[PSL_WEDGE_ANGLE_BEGIN]); ca = cos (D2R * param[PSL_WEDGE_ANGLE_BEGIN]);
xx[0] = x + param[PSL_WEDGE_RADIUS_I] * ca; yy[0] = y + param[PSL_WEDGE_RADIUS_I] * sa;
xx[1] = x + param[PSL_WEDGE_RADIUS_O] * ca; yy[1] = y + param[PSL_WEDGE_RADIUS_O] * sa;
PSL_plotline (PSL, xx, yy, 2, PSL_MOVE+PSL_STROKE); /* Plot jaw */
sa = sin (D2R * param[PSL_WEDGE_ANGLE_END]); ca = cos (D2R * param[PSL_WEDGE_ANGLE_END]);
xx[0] = x + param[PSL_WEDGE_RADIUS_I] * ca; yy[0] = y + param[PSL_WEDGE_RADIUS_I] * sa;
xx[1] = x + param[PSL_WEDGE_RADIUS_O] * ca; yy[1] = y + param[PSL_WEDGE_RADIUS_O] * sa;
PSL_plotline (PSL, xx, yy, 2, PSL_MOVE+PSL_STROKE); /* Plot jaw */
}
else { /* Open triangular jaw */
xx[0] = x + param[PSL_WEDGE_RADIUS_O] * cos (D2R * param[PSL_WEDGE_ANGLE_BEGIN]);
yy[0] = y + param[PSL_WEDGE_RADIUS_O] * sin (D2R * param[PSL_WEDGE_ANGLE_BEGIN]);
xx[1] = x; yy[1] = y;
xx[2] = x + param[PSL_WEDGE_RADIUS_O] * cos (D2R * param[PSL_WEDGE_ANGLE_END]);
yy[2] = y + param[PSL_WEDGE_RADIUS_O] * sin (D2R * param[PSL_WEDGE_ANGLE_END]);
PSL_plotline (PSL, xx, yy, 3, PSL_MOVE+PSL_STROKE); /* Plot jaw */
}
}
}
if (status) PSL_command (PSL, "U\n"); /* Restore graphics state after messing with spiders */
if (outline) { /* Draw wedge outline on top */
if (windshield)
PSL_command (PSL, "V %d %d T 0 0 %d %.12g %.12g arc 0 0 %d %.12g %.12g arcn P os U\n", psl_ix (PSL, x), psl_iy (PSL, y),
psl_iz (PSL, param[PSL_WEDGE_RADIUS_O]), param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], psl_iz (PSL, param[PSL_WEDGE_RADIUS_I]), param[PSL_WEDGE_ANGLE_END], param[PSL_WEDGE_ANGLE_BEGIN]);
else
PSL_command (PSL, "%d %.12g %.12g %d %d 2 copy M 5 2 roll arc os\n", psl_iz (PSL, param[PSL_WEDGE_RADIUS_O]), param[PSL_WEDGE_ANGLE_BEGIN], param[PSL_WEDGE_ANGLE_END], psl_ix (PSL, x), psl_iy (PSL, y));
}
return (PSL_NO_ERROR);
}
static void psl_get_uppercase (char *new_c, char *old_c) {
int i = 0, c;
while (old_c[i]) {
c = toupper ((int)old_c[i]);
new_c[i++] = (char)c;
}
new_c[i] = 0;
}
static void psl_freeplot (struct PSL_CTRL *PSL) {
/* Simply eliminate any buffer for memory-writing PS */
if (PSL->internal.buffer) PSL_free (PSL->internal.buffer); /* Remove any previous plot buffer */
PSL->internal.n_alloc = PSL->internal.n = 0;
PSL->internal.pmode = 0;
}
#if 0 /* Not used */
static void psl_defunits_array (struct PSL_CTRL *PSL, const char *param, double *array, int n) {
/* These are used by PSL_plottextline */
int i;
PSL_command (PSL, "/%s\n", param);
for (i = 0; i < n; i++) PSL_command (PSL, "%.2f\n", array[i] * PSL->internal.dpu);
PSL_command (PSL, "%d array astore def\n", n);
}
#endif
static void psl_def_font_encoding (struct PSL_CTRL *PSL) {
/* Initialize book-keeping for font encoding and write font macros */
int i;
/* Initialize T/F array for font reencoding so that we only do it once
* for each font that is used */
PSL_command (PSL, "/PSL_font_encode ");
for (i = 0; i < PSL->internal.N_FONTS; i++) PSL_command (PSL, "0 ");
PSL_command (PSL, "%d array astore def", PSL->internal.N_FONTS);
(PSL->internal.comments) ? PSL_command (PSL, "\t%% Initially zero\n") : PSL_command (PSL, "\n");
/* Define font macros (see postscriptlight.h for details on how to add fonts) */
for (i = 0; i < PSL->internal.N_FONTS; i++) PSL_command (PSL, "/F%d {/%s Y}!\n", i, PSL->internal.font[i].name);
}
static int psl_bitreduce (struct PSL_CTRL *PSL, unsigned char *buffer, int nx, int ny, size_t ncolors) {
/* Reduce an 8-bit stream to 1-, 2- or 4-bit stream */
int in, out, i, j, nout, nbits;
/* Number of colors determines number of bits */
if (ncolors <= 2)
nbits = 1;
else if (ncolors <= 4)
nbits = 2;
else if (ncolors <= 16)
nbits = 4;
else
return (8);
/* "Compress" bytes line-by-line. The number of bits per line should be multiple of 8
But when it isn't overflow is prevent by extra size allocation done in psl_makecolormap */
out = 0;
nx = abs (nx);
nout = (nx * nbits + 7) / 8;
for (j = 0; j < ny; j++) {
in = j * nx;
if (nbits == 1) {
for (i = 0; i < nout; i++) {
buffer[out++] = (buffer[in] << 7) + (buffer[in+1] << 6) + (buffer[in+2] << 5) + (buffer[in+3] << 4) + (buffer[in+4] << 3) + (buffer[in+5] << 2) + (buffer[in+6] << 1) + buffer[in+7];
in += 8;
}
}
else if (nbits == 2) {
for (i = 0; i < nout; i++) {
buffer[out++] = (buffer[in] << 6) + (buffer[in+1] << 4) + (buffer[in+2] << 2) + buffer[in+3];
in += 4;
}
}
else if (nbits == 4) {
for (i = 0; i < nout; i++) {
buffer[out++] = (buffer[in] << 4) + buffer[in+1];
in += 2;
}
}
}
PSL_message (PSL, PSL_MSG_INFORMATION, "Image depth reduced to %d bits\n", nbits);
return (nbits);
}
static int psl_bitimage_cmap (struct PSL_CTRL *PSL, double f_rgb[], double b_rgb[]) {
/* Print colormap for 1-bit image or imagemask. Returns value of "polarity":
* 0 = Paint 0 bits foreground color, leave 1 bits transparent
* 1 = Paint 1 bits background color, leave 0 bits transparent
* 2 = Paint 0 bits foreground color, paint 1 bits background color
* ! Note that odd return values indicate that the bitmap has to be
* ! inverted before plotting, either explicitly, or through a mapping
* ! function in the PostScript image definition.
*/
int polarity;
double f_cmyk[4], b_cmyk[4];
PSL_command (PSL, " [/Indexed /Device");
if (b_rgb[0] < 0.0) {
/* Background is transparent */
polarity = 0;
if (PSL_is_gray (f_rgb))
PSL_command (PSL, "Gray 0 <%02X>", PSL_u255(f_rgb[0]));
else if (PSL->internal.color_mode == PSL_GRAY)
PSL_command (PSL, "Gray 0 <%02X>", PSL_u255(PSL_YIQ(f_rgb)));
else if (PSL->internal.color_mode == PSL_CMYK) {
psl_rgb_to_cmyk (f_rgb, f_cmyk);
PSL_command (PSL, "CMYK 0 <%02X%02X%02X%02X>", PSL_q255(f_cmyk));
}
else
PSL_command (PSL, "RGB 0 <%02X%02X%02X>", PSL_t255(f_rgb));
}
else if (f_rgb[0] < 0.0) {
/* Foreground is transparent */
polarity = 1;
if (PSL_is_gray (b_rgb))
PSL_command (PSL, "Gray 0 <%02X>", PSL_u255(b_rgb[0]));
else if (PSL->internal.color_mode == PSL_GRAY)
PSL_command (PSL, "Gray 0 <%02X>", PSL_u255(PSL_YIQ(b_rgb)));
else if (PSL->internal.color_mode == PSL_CMYK) {
psl_rgb_to_cmyk (b_rgb, b_cmyk);
PSL_command (PSL, "CMYK 0 <%02X%02X%02X%02X>", PSL_q255(b_cmyk));
}
else
PSL_command (PSL, "RGB 0 <%02X%02X%02X>", PSL_t255(b_rgb));
}
else {
/* Colored foreground and background */
polarity = 2;
if (PSL_is_gray (b_rgb) && PSL_is_gray (f_rgb))
PSL_command (PSL, "Gray 1 <%02X%02X>", PSL_u255(f_rgb[0]), PSL_u255(b_rgb[0]));
else if (PSL->internal.color_mode == PSL_GRAY)
PSL_command (PSL, "Gray 1 <%02X%02X>", PSL_u255(PSL_YIQ(f_rgb)), PSL_u255(PSL_YIQ(b_rgb)));
else if (PSL->internal.color_mode == PSL_CMYK) {
psl_rgb_to_cmyk (f_rgb, f_cmyk);
psl_rgb_to_cmyk (b_rgb, b_cmyk);
PSL_command (PSL, "CMYK 1 <%02X%02X%02X%02X%02X%02X%02X%02X>", PSL_q255(f_cmyk), PSL_q255(b_cmyk));
}
else
PSL_command (PSL, "RGB 1 <%02X%02X%02X%02X%02X%02X>", PSL_t255(f_rgb), PSL_t255(b_rgb));
}
PSL_command (PSL, "] setcolorspace");
return (polarity);
}
/* Make sure that all memory is freed upon return.
This way is simpler than freeing buffer, red, green, blue, entry individually at every return
*/
#define Return(code) {PSL_free (buffer); PSL_free (entry); PSL_free (red); PSL_free (green); PSL_free (blue); return (code);}
static int psl_get_boundingbox (struct PSL_CTRL *PSL, FILE *fp, int *llx, int *lly, int *trx, int *try,
double *hires_llx, double *hires_lly, double *hires_trx, double *hires_try) {
int nested = 0;
char buf[PSL_BUFSIZ];
/* Set default BoundingBox and HiResBoundingBox */
*hires_llx = *llx = 0; *hires_trx = *trx = 720; *hires_lly = *lly = 0; *hires_try = *try = 720;
/* Fish for the BoundingBox and the HiResBoundingBox. It assumes the line with HiResBoundingBox
always follows the BoundingBox line. */
while (fgets(buf, PSL_BUFSIZ, fp) != NULL) {
if (!strncmp(buf, "%%Begin", 7U))
++nested;
else if (nested && !strncmp(buf, "%%End", 5U))
--nested;
else if (!nested) {
if (!strncmp(buf, "%%BoundingBox:", 14U) && !strstr(buf, "(atend)")) {
if (sscanf(strchr(buf, ':') + 1, "%d %d %d %d", llx, lly, trx, try) < 4) return 1;
*hires_llx = *llx;
*hires_lly = *lly;
*hires_trx = *trx;
*hires_try = *try;
if (fgets(buf, PSL_BUFSIZ, fp) != NULL) {
if (!strncmp(buf, "%%HiResBoundingBox:", 19U) && !strstr(buf, "(atend)")) {
if (sscanf(strchr(buf, ':') + 1, "%lg %lg %lg %lg", hires_llx, hires_lly, hires_trx, hires_try) < 4) return -1;
}
}
return 0;
}
}
}
PSL_message (PSL, PSL_MSG_WARNING, "Warning: No proper BoundingBox, defaults assumed: %d %d %d %d\n", *llx, *lly, *trx, *try);
return 1;
}
static int psl_init_fonts (struct PSL_CTRL *PSL) {
FILE *in = NULL;
int n_PSL_fonts;
unsigned int i = 0;
size_t n_alloc = 64;
char buf[PSL_BUFSIZ];
char fullname[PSL_BUFSIZ];
PSL->internal.font = PSL_memory (PSL, NULL, n_alloc, struct PSL_FONT);
/* Loads the available fonts for this installation */
/* First the standard 35 PostScript fonts from Adobe + 4 Japanese fonts */
memcpy (PSL->internal.font, PSL_standard_fonts, PSL_N_STANDARD_FONTS * sizeof (struct PSL_FONT));
PSL->internal.N_FONTS = n_PSL_fonts = i = PSL_N_STANDARD_FONTS;
/* Then any custom fonts */
if (psl_getsharepath (PSL, "postscriptlight", "PSL_custom_fonts", ".txt", fullname)) {
if ((in = fopen (fullname, "r")) == NULL) { /* File exist but opening fails? WTF! */
PSL_message (PSL, PSL_MSG_ERROR, "Fatal Error: ");
perror (fullname);
return (EXIT_FAILURE);
}
while (fgets (buf, PSL_BUFSIZ, in)) {
if (buf[0] == '#' || buf[0] == '\n' || buf[0] == '\r') continue;
if (sscanf (buf, "%s %lf %d", fullname, &PSL->internal.font[i].height, &PSL->internal.font[i].encoded) != 3) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Trouble decoding custom font info [%s]. Skipping this font\n", buf);
continue;
}
if (strlen (fullname) >= PSL_FONTNAME_LEN) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font name %s exceeds %d characters and will be truncated\n", fullname, PSL_FONTNAME_LEN);
fullname[PSL_FONTNAME_LEN-1] = '\0';
}
strncpy (PSL->internal.font[i].name, fullname, PSL_FONTNAME_LEN);
i++;
if (i == n_alloc) {
n_alloc <<= 1;
PSL->internal.font = PSL_memory (PSL, PSL->internal.font, n_alloc, struct PSL_FONT);
}
}
fclose (in);
PSL->internal.N_FONTS = i;
}
else {
PSL_message (PSL, PSL_MSG_INFORMATION, "No PSL_custom_fonts.txt found\n");
}
/* Final allocation of font array */
PSL->internal.font = PSL_memory (PSL, PSL->internal.font, PSL->internal.N_FONTS, struct PSL_FONT);
return PSL_NO_ERROR;
}
static char *psl_putdash (struct PSL_CTRL *PSL, char *pattern, double offset) {
/* Writes the dash pattern. Note: Unlike a pen width, the dashes and gaps
* set here cannot all be zero - it results in a PostScript error for discussion
* see https://github.com/GenericMappingTools/gmt/issues/6833. Here, we will
* ensure that this does not happen by printing a nasty warning if it happens. */
static char text[PSL_BUFSIZ];
if (pattern && pattern[0]) {
char mark = '[';
size_t len = 0, non_zero = 0;
double w;
while (*pattern) {
w = atof(pattern) * PSL->internal.dpp;
if (w > 0.0) non_zero++;
if (w > 4.0) /* Set as integer PS. Max error 12.5% (e.g., 4.499999 -> 4), dropping for larger w */
sprintf (&text[len], "%c%d", mark, (int)rint (w));
else /* Too small for integer, set as floating point */
sprintf (&text[len], "%c%lg", mark, w);
while (*pattern && *pattern != ' ') pattern++;
while (*pattern && *pattern == ' ') pattern++;
mark = ' ';
len = strlen(text);
}
if (non_zero)
sprintf (&text[len], "] %lg B", offset * PSL->internal.dpp);
else {
sprintf (text, "[] 0 B"); /* Reset to continuous line */
PSL_message (PSL, PSL_MSG_WARNING, "Dashed line pattern invalid - ignored\n");
}
}
else
sprintf (text, "[] 0 B"); /* Reset to continuous line */
return (text);
}
static void psl_computeBezierControlPoints (struct PSL_CTRL *PSL, double *K, int n, double **P1, double **P2) {
/* Translated from https://www.particleincell.com/wp-content/uploads/2012/06/bezier-spline.js */
int i;
double *p1 = NULL, *p2 = NULL, *a = NULL, *b = NULL, *c = NULL, *r = NULL;
double m;
p1 = PSL_memory (PSL, NULL, n, double);
p2 = PSL_memory (PSL, NULL, n, double);
a = PSL_memory (PSL, NULL, n, double);
b = PSL_memory (PSL, NULL, n, double);
c = PSL_memory (PSL, NULL, n, double);
r = PSL_memory (PSL, NULL, n, double);
n--; /* Now id of last knot */
/* left most segment*/
a[0] = 0.0;
b[0] = 2.0;
c[0] = 1.0;
r[0] = K[0] + 2.0 * K[1];
/* internal segments*/
for (i = 1; i < n - 1; i++)
{
a[i] = 1.0;
b[i] = 4.0;
c[i] = 1.0;
r[i] = 4.0 * K[i] + 2.0 * K[i+1];
}
/* right segment*/
a[n-1] = 2.0;
b[n-1] = 7.0;
c[n-1] = 0.0;
r[n-1] = 8.0 * K[n-1] + K[n];
/* solves Ax=b with the Thomas algorithm (from Wikipedia)*/
for (i = 1; i < n; i++)
{
m = a[i] / b[i-1];
b[i] = b[i] - m * c[i - 1];
r[i] = r[i] - m*r[i-1];
}
/* Evaluate p1 */
p1[n-1] = r[n-1] / b[n-1];
for (i = n - 2; i >= 0; --i)
p1[i] = (r[i] - c[i] * p1[i+1]) / b[i];
/* we have p1, now compute p2*/
for (i = 0; i < n-1; i++)
p2[i] = 2.0 * K[i+1] - p1[i+1];
p2[n-1] = 0.5 * (K[n] + p1[n-1]);
*P1 = p1; *P2 = p2;
PSL_free (a); PSL_free (b); PSL_free (c); PSL_free (r);
}
static psl_indexed_image_t psl_makecolormap (struct PSL_CTRL *PSL, unsigned char *buffer, int nx, int ny, int nbits) {
/* When image consists of less than PSL_MAX_COLORS colors, the image can be
* indexed to safe a significant amount of space.
* The image and colormap are returned as a struct psl_indexed_image_t.
*
* It is important that the first RGB tuple is mapped to index 0.
* This is used for color masked images.
*/
size_t i, j, npixels; /* Need 64-bit ints to avoid overflow of int */
psl_colormap_t colormap;
psl_indexed_image_t image;
if (abs (nbits) != 24) return (NULL); /* We only index into the RGB colorspace. */
npixels = ((size_t)abs (nx)) * ((size_t)ny);
colormap = psl_memory (PSL, NULL, 1U, sizeof (*colormap));
colormap->ncolors = 0;
image = psl_memory (PSL, NULL, 1U, sizeof (*image));
image->buffer = psl_memory (PSL, NULL, npixels+8, sizeof (*image->buffer)); /* Add 8 to avoid overflow access in psl_bitreduce() */
image->colormap = colormap;
if (nx < 0) {
/* Copy the colour mask value into index 0 */
colormap->colors[0][0] = buffer[0];
colormap->colors[0][1] = buffer[1];
colormap->colors[0][2] = buffer[2];
colormap->ncolors++;
buffer += 3; /* Skip to start of image */
}
for (i = 0; i < npixels; i++) {
for (j = 0; j < colormap->ncolors; j++)
if (colormap->colors[j][0] == buffer[0] && colormap->colors[j][1] == buffer[1] && colormap->colors[j][2] == buffer[2]) {
image->buffer[i] = (unsigned char)j;
break;
}
if (j == colormap->ncolors) {
if (colormap->ncolors == PSL_MAX_COLORS) { /* Too many colors to index. */
PSL_free (image->buffer);
PSL_free (image);
PSL_free (colormap);
PSL_message (PSL, PSL_MSG_INFORMATION, "Too many colors to make colormap - using 24-bit direct color instead.\n");
return (NULL);
}
image->buffer[i] = (unsigned char)j;
colormap->colors[j][0] = buffer[0];
colormap->colors[j][1] = buffer[1];
colormap->colors[j][2] = buffer[2];
colormap->ncolors++;
}
buffer += 3;
}
/* There's no need for a color map when the number of colors is the same as the number of pixels.
Then you're better off with a compressed 24-bit color image instead. */
if (colormap->ncolors >= npixels) {
PSL_free (image->buffer);
PSL_free (image);
PSL_free (colormap);
PSL_message (PSL, PSL_MSG_INFORMATION, "Use of colormap is inefficient - using 24-bit direct color instead.\n");
return (NULL);
}
PSL_message (PSL, PSL_MSG_INFORMATION, "Colormap of %" PRIuS " colors created\n", colormap->ncolors);
return (image);
}
static char *psl_putcolor (struct PSL_CTRL *PSL, double rgb[], int force) {
/* Pass force = 1 when you want to reset transparency regardless of rgb[3] */
static char text[PSL_BUFSIZ];
if (PSL_eq (rgb[0], -1.0)) {
/* Ignore, no color set */
text[0] = '\0';
}
else if (PSL_eq (rgb[0], -3.0)) {
/* Pattern fill */
sprintf (text, "pattern%ld I", lrint(rgb[1]));
}
else if (PSL_is_gray (rgb)) {
/* Gray scale, since R==G==B */
sprintf (text, PSL->current.bw_format, rgb[0]);
}
else if (PSL->internal.color_mode == PSL_GRAY) {
/* Gray scale, forced by user */
sprintf (text, PSL->current.bw_format, PSL_YIQ(rgb));
}
else if (PSL->internal.color_mode == PSL_RGB) {
/* Full color, RGB mode */
sprintf (text, PSL->current.rgb_format, rgb[0], rgb[1], rgb[2]);
}
else if (PSL->internal.color_mode == PSL_CMYK) {
/* CMYK mode */
double cmyk[4];
psl_rgb_to_cmyk (rgb, cmyk);
sprintf (text, PSL->current.cmyk_format, cmyk[0], cmyk[1], cmyk[2], cmyk[3]);
}
else {
/* HSV mode */
double hsv[3];
psl_rgb_to_hsv (rgb, hsv);
sprintf (text, PSL->current.hsv_format, hsv[0], hsv[1], hsv[2]);
}
if (!PSL_eq (rgb[3], 0.0) || force) {
/* Transparency */
sprintf (&text[strlen(text)], " %.12g %.12g /%s PSL_transp", 1.0 - rgb[3], 1.0 - rgb[3], PSL->current.transparency_mode);
}
return (text);
}
static const char *psl_putusername () {
const char *unknown = "unknown";
#ifdef HAVE_GETPWUID
#include <pwd.h>
struct passwd *pw = NULL;
pw = getpwuid (getuid ());
if (pw) return (pw->pw_name);
#endif
return (unknown);
}
/*------------------- PUBLIC PSL API FUNCTIONS--------------------- */
struct PSL_CTRL *New_PSL_Ctrl (char *session) {
struct PSL_CTRL *PSL = NULL;
unsigned int i;
/* Initialize the PSL structure */
PSL = calloc (1U, sizeof (struct PSL_CTRL));
if (session) PSL->init.session = strdup (session);
for (i = 0; i < 3; i++) PSL->init.page_rgb[i] = -1.0; /* Not set */
/* Initialize a few global variables */
strcpy (PSL->current.bw_format, "%.3lg A"); /* Default format used for grayshade value */
strcpy (PSL->current.rgb_format, "%.3lg %.3lg %.3lg C"); /* Same, for RGB triplets */
strcpy (PSL->current.hsv_format, "%.3lg %.3lg %.3lg H"); /* Same, for HSV triplets */
strcpy (PSL->current.cmyk_format, "%.3lg %.3lg %.3lg %.3lg K"); /* Same, for CMYK quadruples */
return (PSL);
}
int PSL_beginsession (struct PSL_CTRL *PSL, unsigned int flags, char *sharedir, char *userdir) {
/* Allocate a new common control structure and initialize PSL session
* If sharedir, userdir are NULL and flags&1 == 1 then we look for environmental parameters
* PSL_SHAREDIR and PSL_USERDIR; otherwise we assign then from the args (even if NULL).
* If flags&2 == 2 then PSL is being called from an external interface so some things will live
* beyond the end of a module.
*/
unsigned int i, search;
char *this_c = NULL;
search = (flags & 1); /* If 1 then we look for environmental parameters */
PSL->init.runmode = (flags & 2); /* If 2 then we are being called from an environment where many modules can be called during a session */
/* Initialize the PSL structure to default values unless already set */
if (PSL->init.err == NULL) PSL->init.err = stderr; /* Possible redirect of error messages */
if (PSL->init.unit < 0 || PSL->init.unit > 3) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Measure unit %d is not in valid range (0-3)! Using 0 (cm)\n", PSL->init.unit);
PSL->init.unit = PSL_CM;
}
if (PSL->init.copies == 0) PSL->init.copies = 1; /* Once copy of each plot */
if (PSL->init.magnify[0] == 0.0) PSL->init.magnify[0] = 1.0; /* Default magnification global scales */
if (PSL->init.magnify[1] == 0.0) PSL->init.magnify[1] = 1.0; /* Default magnification global scales */
if (PSL->init.page_rgb[0] < 0.0) for (i = 0; i < 3; i++) PSL->init.page_rgb[i] = 1.0; /* Default paper color */
/* Determine SHAREDIR (directory containing the postscriptlight subdirectory)
* but only if not passed via argument list */
if ((this_c = sharedir) == NULL && search) this_c = getenv ("PSL_SHAREDIR");
if (this_c) { /* Did find a sharedir */
PSL->internal.SHAREDIR = strdup (this_c);
psl_dos_path_fix (PSL->internal.SHAREDIR);
if (access(PSL->internal.SHAREDIR, R_OK)) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Could not access PSL_SHAREDIR %s.\n", PSL->internal.SHAREDIR);
return (EXIT_FAILURE);
}
}
else { /* No sharedir found */
PSL_message (PSL, PSL_MSG_ERROR, "Error: Could not locate PSL_SHAREDIR.\n");
return (EXIT_FAILURE);
}
/* Determine USERDIR (directory containing user replacements contents in SHAREDIR) */
if ((this_c = userdir) == NULL && search) this_c = getenv ("PSL_USERDIR");
if (this_c) { /* Did find a userdir */
PSL->internal.USERDIR = strdup (this_c);
psl_dos_path_fix (PSL->internal.USERDIR);
if (access (PSL->internal.USERDIR, R_OK)) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Could not access PSL_USERDIR %s.\n", PSL->internal.USERDIR);
PSL_free (PSL->internal.USERDIR);
}
}
if (!PSL->init.encoding) PSL->init.encoding = strdup ("Standard"); /* Character encoding to use */
return (psl_init_fonts (PSL)); /* Load the available font information */
}
int PSL_endsession (struct PSL_CTRL *PSL) {
/* Free up memory used by the PSL control structure */
int i;
if (!PSL) return (PSL_NO_SESSION); /* Never was allocated */
psl_freeplot (PSL);
PSL_free (PSL->internal.font);
for (i = 0; i < PSL->internal.n_userimages; i++) PSL_free (PSL->internal.user_image[i]);
PSL_free (PSL->internal.SHAREDIR);
PSL_free (PSL->internal.USERDIR);
PSL_free (PSL->init.encoding);
PSL_free (PSL->init.session);
PSL_free (PSL);
return (PSL_NO_ERROR);
}
int PSL_beginlayer (struct PSL_CTRL *PSL, int layer) {
/* Issue begin group command */
PSL_command (PSL, "%%%%BeginObject PSL_Layer_%d\n", layer);
return (PSL_NO_ERROR);
}
int PSL_endlayer (struct PSL_CTRL *PSL) {
/* Issue end group command */
PSL_command (PSL, "%%%%EndObject\n");
return (PSL_NO_ERROR);
}
int PSL_copy (struct PSL_CTRL *PSL, const char *txt) {
/* Just copies the given text as is to the PSL output stream or buffer */
if (PSL->internal.memory) {
size_t len = strlen (txt);
psl_prepare_buffer (PSL, len); /* Make sure we have enough memory to hold the text */
strncat (&(PSL->internal.buffer[PSL->internal.n]), txt, len);
PSL->internal.n += len;
}
else /* Just write to the PS file */
fprintf (PSL->internal.fp, "%s\n", txt);
return (PSL_NO_ERROR);
}
int PSL_plotarc (struct PSL_CTRL *PSL, double x, double y, double radius, double az1, double az2, int type) {
/* Plot an arc with radius running in azimuth from az1 to az2.
* Type is a combination of the following:
* PSL_DRAW (0) : Draw a line segment
* PSL_MOVE (1) : Move to the new anchor point (x,y) first
* PSL_STROKE (2) : Stroke the line
*/
int ir;
if (fabs (az1 - az2) > 360.0) return (PSL_BAD_RANGE);
if (radius < 0.0) return (PSL_BAD_SIZE);
ir = psl_iz (PSL, radius);
if (type & PSL_MOVE) PSL_command (PSL, "N ");
PSL_command (PSL, "%d %d %d %.12g %.12g arc", psl_ix(PSL, x), psl_iy(PSL, y), ir, az1, az2);
if (az1 > az2) PSL_command(PSL, "n");
PSL_command (PSL, (type & PSL_STROKE) ? " S\n" : "\n");
return (PSL_NO_ERROR);
}
int PSL_plotaxis (struct PSL_CTRL *PSL, double annotation_int, char *label, double annotfontsize, int side) {
/* Expects PSL_beginaxes to have been called first */
int annot_justify, label_justify, i, j, ndig = 0, k, reverse = false;
double angle, dy, scl, val, annot_off, label_off, xx, sign, x, y, length, val0, val1;
char text[PSL_BUFSIZ], format[PSL_BUFSIZ];
k = 2 * (side % 2); /* Start index for x [0] or y [2] in axis_limit */
/* Get position and limit values from PSL_beginaxes settings */
x = PSL->internal.axis_pos[0]; y = PSL->internal.axis_pos[1];
val0 = MIN(PSL->internal.axis_limit[k], PSL->internal.axis_limit[k+1]);
val1 = MAX(PSL->internal.axis_limit[k], PSL->internal.axis_limit[k+1]);
if ((val1 - val0) == 0.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Axis val0 == val1!\n");
return (PSL_BAD_RANGE);
}
reverse = (PSL->internal.axis_limit[k] > PSL->internal.axis_limit[k+1]);
sprintf (text, "%g", annotation_int); /* Try to compute a useful format */
for (i = 0; text[i] && text[i] != '.'; i++);
if (text[i]) { /* Found a decimal point */
for (j = i + 1; text[j]; j++);
ndig = j - i - 1;
}
if (ndig > 0)
sprintf (format, "%%.%df", ndig);
else
strcpy (format, "%g");
if (side == 1) x += PSL->internal.axis_dim[0]; /* Right y-axis */
if (side == 2) y += PSL->internal.axis_dim[1]; /* Top x-axis */
length = PSL->internal.axis_dim[side%2]; /* Length of this axis */
angle = (side%2) ? 90.0 : 0.0; /* May have to rotate 90 degrees */
sign = (side < 2) ? -1.0 : 1.0; /* Which side of axis to annotate/tick */
annot_justify = label_justify = (side < 2) ? -10 : -2; /* And how to justify */
dy = sign * annotfontsize * PSL->internal.p2u; /* Font size in user units */
PSL_command (PSL, "\nV %d %d T %.12g R\n", psl_iz (PSL, x), psl_iz (PSL, y), angle);
PSL_command (PSL, "N 0 0 M %d 0 D S\n", psl_iz (PSL, length));
scl = length / (val1 - val0);
annot_off = dy;
label_off = 2.5 * dy; /* Label offset is 250% of annotation font size */
dy *= 0.5;
val = ceil (val0 / annotation_int) * annotation_int; /* Start at multiple of annotation interval */
while (val <= (val1+PSL_SMALL)) {
xx = (val - val0) * scl;
if (reverse) xx = length - xx;
PSL_command (PSL, "%d 0 M 0 %d D S\n", psl_iz (PSL, xx), psl_iz (PSL, dy));
PSL_command (PSL, "%d %d M ", psl_iz (PSL, xx), psl_iz (PSL, annot_off));
sprintf (text, format, val);
PSL_plottext (PSL, xx, annot_off, -annotfontsize, text, 0.0, annot_justify, 0);
val += annotation_int;
}
length *= 0.5; /* Half-point on axis for plotting label at 150% the annotation font size */
PSL_command (PSL, "%d %d M ", psl_iz (PSL, length), psl_iz (PSL, label_off));
PSL_plottext (PSL, length, label_off, -annotfontsize*1.5, label, 0.0, label_justify, 0);
PSL_command (PSL, "U\n");
return (PSL_NO_ERROR);
}
int PSL_plotbitimage (struct PSL_CTRL *PSL, double x, double y, double xsize, double ysize, int justify, unsigned char *buffer, int nx, int ny, double f_rgb[], double b_rgb[]) {
/* Plots a 1-bit image or imagemask.
* x, y : Position of image (in units)
* xsize, ysize : image size in units (if 0, adjust to keep the original aspect ratio)
* justify : Indicate which corner x,y refers to (see graphic)
* buffer : Image bit buffer
* nx, ny : Size of image (in pixels)
* f_rgb : Foreground color for 1 bits (if f_rgb[0] < 0, make transparent)
* b_rgb : Background color for 0 bits (if b_rgb[0] < 0, make transparent)
*
* 9 10 11
* |----------------|
* 5 <image> 7
* |----------------|
* 1 2 3
*/
int inv;
/* If one of [xy]size is 0, keep the aspect ratio */
if (PSL_eq (xsize, 0.0)) xsize = (ysize * nx) / ny;
if (PSL_eq (ysize, 0.0)) ysize = (xsize * ny) / nx;
/* Correct origin (x,y) in case of justification */
if (justify > 1) { /* Move the new origin so (0,0) is lower left of box */
x -= 0.5 * ((justify + 3) % 4) * xsize;
y -= 0.5 * (int)(justify / 4) * ysize;
}
PSL_comment (PSL, "Start of 1-bit image\n");
PSL_command (PSL, "V N %d %d T %d %d scale", psl_ix(PSL, x), psl_iy(PSL, y), psl_iz (PSL, xsize), psl_iz (PSL, ysize));
inv = psl_bitimage_cmap (PSL, f_rgb, b_rgb) % 2;
PSL_command (PSL, "\n<< /ImageType 1 /Decode [%d %d] ", inv, 1-inv);
psl_stream_dump (PSL, buffer, nx, ny, 1, PSL->internal.compress, PSL_ASCII85, (int)(f_rgb[0] < 0.0 || b_rgb[0] < 0.0));
PSL_command (PSL, "U\n");
PSL_comment (PSL, "End of 1-bit image\n");
return (PSL_NO_ERROR);
}
int PSL_endclipping (struct PSL_CTRL *PSL, int n) {
/* n > 0 means restore clipping n times
* n == PSL_ALL_CLIP restores all current clippings.
*/
if (n == PSL_ALL_CLIP) { /* Undo all recorded levels of clipping paths */
PSL_command (PSL, "PSL_nclip {PSL_cliprestore} repeat\n"); /* Undo all levels of clipping and reset clip count */
PSL_comment (PSL, "Clipping is currently OFF\n");
PSL->current.nclip = 0;
}
else if (n == 1) { /* Undo one level of clipping paths */
PSL_command (PSL, "PSL_cliprestore\n"); /* Undo mode levels of clipping and reduce clip count */
PSL_comment (PSL, "Clipping reduced by 1 level\n");
PSL->current.nclip--;
}
else if (n > 0) { /* Undo mode levels of clipping paths */
PSL_command (PSL, "%d {PSL_cliprestore} repeat\n", n); /* Undo mode levels of clipping and reduce clip count */
PSL_comment (PSL, "Clipping reduced by %d levels\n", n);
PSL->current.nclip -= n;
}
return (PSL_NO_ERROR);
}
int PSL_beginclipping (struct PSL_CTRL *PSL, double *x, double *y, int n, double rgb[], int flag) {
/* Any plotting outside the path defined by x,y will be clipped.
* use PSL_endclipping to restore the original clipping path.
* n : number of x,y pairs (i.e. path length)
* rgb : optional paint (use rgb[0] = -1 to avoid paint)
* flag : 0 = continue adding pieces to the clipping path
* 1 = start new clipping path (more follows)
* 2 = end clipping path (this is the last segment)
* 3 = this is the complete clipping path (start to end)
* Add 4 to omit use even-odd clipping [nonzero-winding rule].
*/
if (flag & 1) { /* First segment in (possibly multi-segmented) clip-path */
PSL_comment (PSL, "Start of polygon clip path\n");
PSL_command (PSL, "clipsave\n");
}
if (n > 0) {
int close_interior = 0;
if ((flag & 3) != 3) close_interior = PSL_CLOSE_INTERIOR;
PSL_plotline (PSL, x, y, n, PSL_MOVE | close_interior); /* Must not close path since first point not given ! */
}
if (flag & 2) { /* End path and [optionally] fill */
if (!PSL_eq(rgb[0],-1.0)) PSL_command (PSL, "V %s eofill U ", psl_putcolor (PSL, rgb, 0));
PSL->current.nclip++;
PSL_command (PSL, (flag & 4) ? "PSL_eoclip N\n" : "PSL_clip N\n");
PSL_comment (PSL, "End of polygon clip path. Polygon clipping is currently ON\n");
}
return (PSL_NO_ERROR);
}
int PSL_plotcolorimage (struct PSL_CTRL *PSL, double x, double y, double xsize, double ysize, int justify, unsigned char *buffer, int nx, int ny, int nbits) {
/* Plots a 24-bit color image in Grayscale, RGB or CMYK mode.
* When the number of unique colors does not exceed PSL_MAX_COLORS, the routine will index
* 24-bit RGB images and then attempt to reduce the depth of the indexed image to 1, 2 or 4 bits.
*
* x, y : lower left position of image in plot units
* xsize, ysize : image size in units (if 0, adjust to keep the original aspect ratio)
* justify : indicates what corner x,y refers to (see graphic below)
* buffer : contains the bytes for the image
* nx, ny : pixel dimension
* nbits : number of bits per pixel (1, 2, 4, 8, 24)
*
* Special cases:
* nx < 0 : 8- or 24-bit image contains a color mask (first 1 or 3 bytes)
* nbits < 0 : "Hardware" interpolation requested
*
* 9 10 11
* |----------------|
* 5 <image> 7
* |----------------|
* 1 2 3
*/
int id, it;
const char *colorspace[3] = {"Gray", "RGB", "CMYK"}; /* What kind of image we are writing */
const char *decode[3] = {"0 1", "0 1 0 1 0 1", "0 1 0 1 0 1 0 1"}; /* What kind of color decoding */
const char *type[3] = {"1", "4 /MaskColor[0]", "1 /Interpolate true"};
psl_indexed_image_t image;
/* If one of [xy]size is 0, keep the aspect ratio */
if (PSL_eq (xsize, 0.0)) xsize = (ysize * nx) / ny;
if (PSL_eq (ysize, 0.0)) ysize = (xsize * ny) / nx;
/* Correct origin (x,y) in case of justification */
if (justify > 1) { /* Move the new origin so (0,0) is lower left of box */
x -= 0.5 * ((justify + 3) % 4) * xsize;
y -= 0.5 * (int)(justify / 4) * ysize;
}
/* Gray scale, CMYK or RGB encoding/colorspace */
id = (PSL->internal.color_mode == PSL_GRAY || abs (nbits) < 24) ? 0 : (PSL->internal.color_mode == PSL_CMYK ? 2 : 1);
/* Colormask or interpolate */
it = nx < 0 ? 1 : (nbits < 0 ? 2 : 0);
if (PSL->internal.color_mode != PSL_GRAY && (image = psl_makecolormap (PSL, buffer, nx, ny, nbits))) {
/* Creation of colormap was successful */
nbits = psl_bitreduce (PSL, image->buffer, nx, ny, image->colormap->ncolors);
PSL_comment (PSL, "Start of indexed %s image [%d bit]\n", colorspace[id], nbits);
PSL_command (PSL, "V N %d %d T %d %d scale [/Indexed /Device%s %" PRIuS " <\n", psl_ix(PSL, x), psl_iy(PSL, y), psl_iz (PSL, xsize), psl_iz (PSL, ysize), colorspace[id], image->colormap->ncolors - 1);
psl_stream_dump (PSL, &image->colormap->colors[0][0], (int)image->colormap->ncolors, 1, 24, 0, PSL_HEX, 2);
PSL_command (PSL, ">] setcolorspace\n<< /ImageType %s /Decode [0 %d] ", type[it], (1<<nbits)-1);
psl_stream_dump (PSL, image->buffer, nx, ny, nbits, PSL->internal.compress, PSL_ASCII85, 0);
PSL_command (PSL, "U\n");
PSL_comment (PSL, "End of indexed %s image\n", colorspace[id]);
/* Clear the newly created image buffer and colormap */
PSL_free (image->buffer);
PSL_free (image->colormap);
PSL_free (image);
}
else {
/* Export full gray scale, RGB or CMYK image */
nbits = abs (nbits);
PSL_comment (PSL, "Start of %s image [%d bit]\n", colorspace[id], nbits);
PSL_command (PSL, "V N %d %d T %d %d scale /Device%s setcolorspace", psl_ix(PSL, x), psl_iy(PSL, y), psl_iz (PSL, xsize), psl_iz (PSL, ysize), colorspace[id]);
if (it == 1 && nbits == 24) { /* Do PS Level 3 image type 4 with colormask */
PSL_command (PSL, "\n<< /ImageType 4 /MaskColor [%d %d %d]", (int)buffer[0], (int)buffer[1], (int)buffer[2]);
buffer += 3;
}
else if (it == 1 && nbits == 8) { /* Do PS Level 3 image type 4 with colormask */
PSL_command (PSL, "\n<< /ImageType 4 /MaskColor [%d]", (int)buffer[0]);
buffer++;
}
else /* Do PS Level 2 image, optionally with interpolation */
PSL_command (PSL, "\n<< /ImageType %s", type[it]);
PSL_command (PSL, " /Decode [%s] ", decode[id]);
psl_stream_dump (PSL, buffer, nx, ny, nbits, PSL->internal.compress, PSL_ASCII85, 0);
PSL_command (PSL, "U\n");
PSL_comment (PSL, "End of %s image\n", colorspace[id]);
}
return (PSL_NO_ERROR);
}
int PSL_free_nonmacro (void *addr) {
PSL_free (addr);
return (PSL_NO_ERROR);
}
int PSL_beginaxes (struct PSL_CTRL *PSL, double llx, double lly, double width, double height, double x0, double y0, double x1, double y1) {
/* Set the box location and user x and y ranges */
double range;
PSL->internal.axis_limit[0] = x0; PSL->internal.axis_limit[1] = x1;
PSL->internal.axis_limit[2] = y0; PSL->internal.axis_limit[3] = y1;
PSL->internal.axis_pos[0] = llx; PSL->internal.axis_pos[1] = lly;
PSL->internal.axis_dim[0] = width; PSL->internal.axis_dim[1] = height;
range = x1 - x0;
PSL->internal.x0 = psl_ix (PSL, llx - x0 * width / range);
PSL->internal.x2ix = (width / range) * PSL->internal.dpu;
range = y1 - y0;
PSL->internal.y0 = psl_iy (PSL, lly - y0 * height / range);
PSL->internal.y2iy = (height / range) * PSL->internal.dpu;
return (PSL_NO_ERROR);
}
int PSL_endaxes (struct PSL_CTRL *PSL) {
/* Turn off user coordinates to PS coordinates scaling */
memset (PSL->internal.axis_limit, 0, 4 * sizeof (double));
PSL->internal.x0 = PSL->internal.y0 = 0;
PSL->internal.x2ix = PSL->internal.y2iy = PSL->internal.dpu;
return (PSL_NO_ERROR);
}
int PSL_plotsymbol (struct PSL_CTRL *PSL, double x, double y, double size[], int symbol) {
/* Plotting standard symbols
* A) 6 non-fillable symbols +-mpxy,
* B) 9 fillable symbol codes acdhignst, and
* C) The 7 fillable and multi-parameter symbols ejmrRwv.
* For A and B, size[0] holds the diameter of the circumscribing circle,
* whereas for C other parameters are contained in the array (see below).
*/
int status = PSL_NO_ERROR;
switch (symbol) {
/* Line-only symbols. size[0] = diameter of circumscribing circle. */
case PSL_CROSS: /* Cross */
case PSL_DOT: /* Single dot */
case PSL_PLUS: /* Plus */
case PSL_XDASH: /* Horizontal line segment */
case PSL_YDASH: /* Vertical line segment */
PSL_command (PSL, "%d %d %d S%c\n", psl_iz (PSL, 0.5 * size[0]), psl_ix (PSL, x), psl_iy (PSL, y), (char)symbol);
break;
/* One-parameter Fillable symbols. size[0] = diameter of circumscribing circle. */
case PSL_STAR: /* Star */
case PSL_CIRCLE: /* Circle */
case PSL_DIAMOND: /* Diamond */
case PSL_HEXAGON: /* Hexagon */
case PSL_INVTRIANGLE: /* Inverted triangle */
case PSL_OCTAGON: /* Octagon */
case PSL_PENTAGON: /* Pentagon */
case PSL_SQUARE: /* Square */
case PSL_TRIANGLE: /* Triangle */
PSL_command (PSL, "%d %d %d S%c\n", psl_iz (PSL, 0.5 * size[0]), psl_ix (PSL, x), psl_iy (PSL, y), (char)symbol);
break;
/* Multi-parameter fillable symbols */
case PSL_WEDGE: /* A wedge or pie-slice. size[0] = radius, size[1..2] = azimuth range of arc */
psl_wedge (PSL, x, y, size);
#if 0
PSL_command (PSL, "%d %.12g %.12g %d %d Sw\n", psl_iz (PSL, size[0]), size[1], size[2], psl_ix (PSL, x), psl_iy (PSL, y));
#endif
break;
case PSL_MARC: /* An arc with optional arrows. size[0] = radius, size[1..2] = azimuth range of arc, size[3] = shape, size[4] = arrows (0 = none, 1 = backward, 2 = forward, 3 = both) */
psl_matharc (PSL, x, y, size);
break;
case PSL_ELLIPSE: /* An ellipse. size[0] = angle of major axis, size[1..2] = length of major and minor axis */
PSL_command (PSL, "%d %d %.12g %d %d Se\n", psl_iz (PSL, 0.5 * size[1]), psl_iz (PSL, 0.5 * size[2]), size[0], psl_ix (PSL, x), psl_iy (PSL, y));
break;
case PSL_RECT: /* A rectangle. size[0..1] = width and height */
PSL_command (PSL, "%d %d %d %d Sr\n", psl_iz (PSL, size[1]), psl_iz (PSL, size[0]), psl_ix (PSL, x), psl_iy (PSL, y));
break;
case PSL_RNDRECT: /* A rounded rectangle. size[0..1] = width and height, size[2] = radius */
PSL_command (PSL, "%d %d %d %d %d SR\n", psl_iz (PSL, size[1]), psl_iz (PSL, size[0]), psl_iz (PSL, size[2]), psl_ix (PSL, x), psl_iy (PSL, y));
break;
case PSL_ROTRECT: /* A rotated rectangle. size[0] = angle, size[1..2] = width and height */
PSL_command (PSL, "%d %d %.12g %d %d Sj\n", psl_iz (PSL, size[2]), psl_iz (PSL, size[1]), size[0], psl_ix (PSL, x), psl_iy (PSL, y));
break;
case PSL_VECTOR: /* A zero-, one- or two-headed vector (x,y = tail coordinates) */
status = psl_vector (PSL, x, y, size);
break;
default:
status = PSL_BAD_SYMBOL;
PSL_message (PSL, PSL_MSG_ERROR, "Error: Unknown symbol code %c\n", (int)symbol);
break;
}
return (status);
}
int PSL_plotsegment (struct PSL_CTRL *PSL, double x0, double y0, double x1, double y1) {
/* Short line segment */
int ix, iy;
ix = psl_ix (PSL, x0);
iy = psl_iy (PSL, y0);
PSL->internal.ix = psl_ix (PSL, x1);
PSL->internal.iy = psl_iy (PSL, y1);
PSL_command (PSL, "N %d %d M %d %d D S\n", ix, iy, PSL->internal.ix - ix, PSL->internal.iy - iy);
return (PSL_NO_ERROR);
}
int PSL_setcurrentpoint (struct PSL_CTRL *PSL, double x, double y) {
/* Set the current point only */
PSL->internal.ix = psl_ix (PSL, x);
PSL->internal.iy = psl_iy (PSL, y);
PSL_command (PSL, "%d %d M\n", PSL->internal.ix, PSL->internal.iy);
return (PSL_NO_ERROR);
}
int PSL_settransparency (struct PSL_CTRL *PSL, double transparency) {
/* Updates the current PDF transparency only (for both fill and stroke transparency) */
if (transparency < 0.0 || transparency > 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Bad transparency value [%g] - ignored\n", transparency);
return (PSL_BAD_RANGE);
}
if (transparency == PSL->current.transparency) return (PSL_NO_ERROR); /* Quietly return if same as before */
PSL_command (PSL, "%.12g %.12g /%s PSL_transp\n", 1.0 - transparency, 1.0 - transparency, PSL->current.transparency_mode);
PSL->current.transparency = transparency; /* Remember current setting */
return (PSL_NO_ERROR);
}
int PSL_settransparencies (struct PSL_CTRL *PSL, double *transparencies) {
/* Updates the current PDF transparencies only (fill and stroke separately) */
if (transparencies[0] < 0.0 || transparencies[0] > 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Bad fill transparency value [%g] - ignored\n", transparencies[0]);
return (PSL_BAD_RANGE);
}
if (transparencies[1] < 0.0 || transparencies[1] > 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Bad stroke transparency value [%g] - ignored\n", transparencies[1]);
return (PSL_BAD_RANGE);
}
if (transparencies[0] == PSL->current.transparencies[0] && transparencies[1] == PSL->current.transparencies[1]) return (PSL_NO_ERROR); /* Quietly return if same as before */
PSL_command (PSL, "%.12g %.12g /%s PSL_transp\n", 1.0 - transparencies[0], 1.0 - transparencies[1], PSL->current.transparency_mode);
PSL->current.transparencies[0] = transparencies[0]; /* Remember current settings */
PSL->current.transparencies[1] = transparencies[1]; /* Remember current settings */
return (PSL_NO_ERROR);
}
int PSL_settransparencymode (struct PSL_CTRL *PSL, const char *mode) {
/* Updates the current PDF transparency mode */
int k, ok;
if (!mode || !mode[0]) return (PSL_NO_ERROR); /* Quietly returned if not given an argument */
for (k = ok = 0; !ok && k < N_PDF_TRANSPARENCY_MODES; k++)
if (!strcmp (PDF_transparency_modes[k], mode)) ok = 1;
if (!ok) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Unknown PDF transparency mode %s - ignored\n", mode);
strncpy (PSL->current.transparency_mode, mode, 15U); /* Keep one character for null terminator */
return (PSL_NO_ERROR);
}
int PSL_setfill (struct PSL_CTRL *PSL, double rgb[], int outline) {
/* Set fill style for polygons and switch outline on or off.
* rgb[0] = -3: set fill pattern, rgb[1] is pattern number
* rgb[0] = -2: ignore. Do not change fill. Leave untouched.
* rgb[0] = -1: switch off filling of polygons
* rgb[0] >= 0: rgb is the fill color with R G B in 0-1 range.
* outline = -2: ignore. Do not change outline setting.
* outline = 0: switch outline off.
* outline = 1: switch outline on
*/
if (PSL_eq (rgb[0], -2.0))
{ /* Skipped, no fill specified */ }
else if (PSL_same_rgb (rgb, PSL->current.rgb[PSL_IS_FILL]))
{ /* Skipped, fill already set */ }
else if (PSL_eq (rgb[0], -1.0)) {
PSL_command (PSL, "FQ\n");
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FILL], rgb);
}
else if (PSL_eq (rgb[3], 0.0) && !PSL_eq (PSL->current.rgb[PSL_IS_STROKE][3], 0.0)) {
/* If stroke color is transparent and fill is not, explicitly set transparency for fill */
PSL_command (PSL, "{%.12g %.12g /%s PSL_transp} {%s} FS\n",
PSL->init.transparencies[PSL_FILL_TRANSP], PSL->current.rgb[PSL_IS_STROKE][3], PSL->current.transparency_mode, psl_putcolor (PSL, rgb, 0));
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FILL], rgb);
}
else { /* Set new r/g/b fill, after possibly changing fill transparency */
PSL_command (PSL, "{%s} FS\n", psl_putcolor (PSL, rgb, 0));
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FILL], rgb);
}
if (outline <= -2)
{ /* Skipped, no change of outline */ }
else if (PSL->current.outline != outline) {
assert (outline == 0 || outline == 1);
PSL_command (PSL, "O%d\n", outline);
PSL->current.outline = outline;
}
return (PSL_NO_ERROR);
}
int PSL_setpattern (struct PSL_CTRL *PSL, int image_no, char *imagefile, int image_dpi, double f_rgb[], double b_rgb[]) {
/* Set up pattern fill, either by using image number or imagefile name
* image_no: Number of the standard PSL fill pattern (use negative when file name used instead)
* imagefile: Name of image file
* image_dpi: Resolution of image on the page
* f_rgb: Foreground color used for set bits (1) (1-bit only)
* b_rgb: Background color used for unset bits (0) (1-bit only)
* Returns image number
* DEPRECATED
*/
(void)(image_no); (void)(imagefile); (void)(image_dpi); (void)(f_rgb); (void)(b_rgb);
PSL_message (PSL, PSL_MSG_ERROR, "Warning: PSL_setpattern has been deprecated - see PSL_setimage instead\n");
return (PSL_NO_ERROR);
}
int PSL_loadimage (struct PSL_CTRL *PSL, char *file, struct imageinfo *header, unsigned char **image) {
/* DEPRECATED */
(void)(file); (void)(header); (void)(image);
PSL_message (PSL, PSL_MSG_ERROR, "Warning: PSL_loadimage has been deprecated - see PSL_loadeps instead\n");
return (PSL_NO_ERROR);
}
int PSL_setimage (struct PSL_CTRL *PSL, int image_no, char *imagefile, unsigned char *image, int image_dpi, unsigned int dim[], double f_rgb[], double b_rgb[]) {
/* Set up image pattern fill
* image_no: Number of the standard PSL fill pattern (use negative when file name used instead)
* imagefile: Name of image file (not used if image_no = [1,90])
* image: The bytestream making up the image (not used if image_no = [1,90])
* image_dpi: Resolution of image on the page
* dim: Image number of columns, rows, and bit depth (not used if image_no = [1,90])
* f_rgb: Foreground color used for set bits (1) (1-bit only)
* b_rgb: Background color used for unset bits (0) (1-bit only)
* Returns image number
*/
int mask, id, inv, k;
uint64_t nx, ny;
const char *colorspace[3] = {"Gray", "RGB", "CMYK"}; /* What kind of image we are writing */
const char *decode[3] = {"0 1", "0 1 0 1 0 1", "0 1 0 1 0 1 0 1"}; /* What kind of color decoding */
const char *kind_mask[2] = {"image", "imagemask"};
/* Determine if image was used before */
if ((image_no > 0 && image_no <= PSL_N_PATTERNS) && !PSL->internal.pattern[image_no-1].status) { /* Unused predefined */
if ((image_no = psl_pattern_init (PSL, image_no, NULL, NULL, 64, 64, 1)) < 0) return -1; /* Error in psl_pattern_init */
}
else if (image_no < 0) { /* User image, check if already used */
int i = psl_search_userimages (PSL, imagefile); /* i = 0 is the first user image */
if (i == -1) /* Not found or no previous user images loaded */
image_no = psl_pattern_init (PSL, -1, imagefile, image, dim[0], dim[1], dim[2]);
else
image_no = PSL_N_PATTERNS + i + 1;
if (image_no < 0) return -1; /* Error in psl_pattern_init */
}
k = image_no - 1; /* Image array index */
nx = PSL->internal.pattern[k].nx;
ny = PSL->internal.pattern[k].ny;
id = (PSL->internal.color_mode == PSL_CMYK) ? 2 : 1;
mask = (PSL->internal.pattern[k].depth == 1 && (f_rgb[0] < 0.0 || b_rgb[0] < 0.0));
/* When DPI or colors have changed, the /pattern procedure needs to be rewritten */
if (PSL->internal.pattern[k].dpi != image_dpi ||
!PSL_same_rgb(PSL->internal.pattern[k].f_rgb,f_rgb) ||
!PSL_same_rgb(PSL->internal.pattern[k].b_rgb,b_rgb)) {
PSL_comment (PSL, "Setup %s fill using pattern %d\n", kind_mask[mask], image_no);
if (image_dpi) { /* Use given DPI */
nx = lrint (nx * PSL->internal.dpu / image_dpi);
ny = lrint (ny * PSL->internal.dpu / image_dpi);
}
PSL_command (PSL, "/pattern%d {V %" PRIu64 " %" PRIu64 " scale", image_no, nx, ny);
PSL_command (PSL, "\n<< /PaintType 1 /PatternType 1 /TilingType 1 /BBox [0 0 1 1] /XStep 1 /YStep 1 /PaintProc\n {begin");
if (PSL->internal.pattern[k].depth == 1) { /* 1-bit bitmap basis */
inv = psl_bitimage_cmap (PSL, f_rgb, b_rgb) % 2;
PSL_command (PSL, "\n<< /ImageType 1 /Decode [%d %d]", inv, 1-inv);
}
else
PSL_command (PSL, " /Device%s setcolorspace\n<< /ImageType 1 /Decode [%s]", colorspace[id], decode[id]);
PSL_command (PSL, " /Width %d /Height %d /BitsPerComponent %d",
PSL->internal.pattern[k].nx, PSL->internal.pattern[k].ny, MIN(PSL->internal.pattern[k].depth,8));
PSL_command (PSL, "\n /ImageMatrix [%d 0 0 %d 0 %d] /DataSource image%d\n>> %s end}\n>> matrix makepattern U} def\n",
PSL->internal.pattern[k].nx, -PSL->internal.pattern[k].ny, PSL->internal.pattern[k].ny,
image_no, kind_mask[mask]);
PSL->internal.pattern[k].dpi = image_dpi;
PSL_rgb_copy (PSL->internal.pattern[k].f_rgb, f_rgb);
PSL_rgb_copy (PSL->internal.pattern[k].b_rgb, b_rgb);
}
return (image_no);
}
int PSL_plotepsimage (struct PSL_CTRL *PSL, double x, double y, double xsize, double ysize, int justify, unsigned char *buffer, struct imageinfo *h) {
/* Plots an EPS image
* x,y : Position of image (in plot coordinates)
* xsize, ysize : Size of image (in user units)
* justify : Indicate which corner (x,y) refers to (see graphic)
* buffer : EPS file (buffered)
* h : Image buffer header
*
* 9 10 11
* |----------------|
* 5 <image> 7
* |----------------|
* 1 2 3
*/
double width, height;
/* If one of [xy]size is 0, keep the aspect ratio */
width = h->trx - h->llx;
height = h->try - h->lly;
if (PSL_eq (xsize, 0.0)) xsize = ysize * width / height;
if (PSL_eq (ysize, 0.0)) ysize = xsize * height / width;
/* Correct origin (x,y) in case of justification */
if (justify > 1) { /* Move the new origin so (0,0) is lower left of box */
x -= 0.5 * ((justify + 3) % 4) * xsize;
y -= 0.5 * (int)(justify / 4) * ysize;
}
PSL_command (PSL, "PSL_eps_begin\n");
PSL_command (PSL, "%d %d T %.12g %.12g scale\n", psl_ix (PSL, x), psl_iy (PSL, y), xsize * PSL->internal.dpu / width, ysize * PSL->internal.dpu / height);
PSL_command (PSL, "%.12g %.12g T\n", -h->llx, -h->lly);
PSL_command (PSL, "N %.12g %.12g M %.12g %.12g L %.12g %.12g L %.12g %.12g L P clip N\n", h->llx, h->lly, h->trx, h->lly, h->trx, h->try, h->llx, h->try);
PSL_command (PSL, "%%%%BeginDocument: psimage.eps\n");
if (PSL->internal.memory) {
psl_prepare_buffer (PSL, h->length); /* Make sure we have enough memory to hold the EPS */
strncat (&(PSL->internal.buffer[PSL->internal.n]), (char *)buffer, h->length);
PSL->internal.n += h->length;
}
else
fwrite (buffer, 1U, (size_t)h->length, PSL->internal.fp);
PSL_command (PSL, "%%%%EndDocument\n");
PSL_command (PSL, "PSL_eps_end\n");
return (PSL_NO_ERROR);
}
int PSL_plotlatexeps (struct PSL_CTRL *PSL, double x, double y, double xsize, double ysize, int justify, unsigned char *buffer, double *rgb, struct imageinfo *h) {
/* Plots an Latex EPS image
* x,y : Position of image (in plot coordinates)
* xsize, ysize : Size of image (in user units)
* justify : Indicate which corner (x,y) refers to (see graphic)
* buffer : EPS file (buffered)
* rgb : Font color
* h : Image buffer header
*
* 9 10 11
* |----------------|
* 5 <image> 7
* |----------------|
* 1 2 3
*/
double width, height;
/* If one of [xy]size is 0, keep the aspect ratio */
width = h->trx - h->llx;
height = h->try - h->lly;
if (PSL_eq (xsize, 0.0)) xsize = ysize * width / height;
if (PSL_eq (ysize, 0.0)) ysize = xsize * height / width;
/* Correct origin (x,y) in case of justification */
if (justify > 1) { /* Move the new origin so (0,0) is lower left of box */
x -= 0.5 * ((justify + 3) % 4) * xsize;
y -= 0.5 * (int)(justify / 4) * ysize;
}
PSL_command (PSL, "PSL_eps_begin\n");
PSL_command (PSL, "%s\n", psl_putcolor (PSL, rgb, 0));
PSL_command (PSL, "%d %d T %.12g %.12g scale\n", psl_ix (PSL, x), psl_iy (PSL, y), xsize * PSL->internal.dpu / width, ysize * PSL->internal.dpu / height);
PSL_command (PSL, "%.12g %.12g T\n", -h->llx, -h->lly);
PSL_command (PSL, "N %.12g %.12g M %.12g %.12g L %.12g %.12g L %.12g %.12g L P clip N\n", h->llx, h->lly, h->trx, h->lly, h->trx, h->try, h->llx, h->try);
PSL_command (PSL, "%%%%BeginDocument: psimage.eps\n");
if (PSL->internal.memory) {
psl_prepare_buffer (PSL, h->length); /* Make sure we have enough memory to hold the EPS */
strncat (&(PSL->internal.buffer[PSL->internal.n]), (char *)buffer, h->length);
PSL->internal.n += h->length;
}
else
fwrite (buffer, 1U, (size_t)h->length, PSL->internal.fp);
PSL_command (PSL, "%%%%EndDocument\n");
PSL_command (PSL, "PSL_eps_end\n");
return (PSL_NO_ERROR);
}
#ifdef PSL_EXACT_LINE
static double psl_x (struct PSL_CTRL *PSL, double x) {
/* Convert user x to PS floating point coordinate */
return (x * PSL->internal.x2ix);
}
static double psl_y (struct PSL_CTRL *PSL, double y) {
/* Convert user y to PS floating point coordinate */
return (y * PSL->internal.y2iy);
}
int PSL_plotline (struct PSL_CTRL *PSL, double *x, double *y, int n, int type) {
/* Plot a (portion of a) line. This can be a line from start to finish, or a portion of it, depending
* on the type argument. Optionally, the line can be stroked (using the current pen), closed.
* Type is a combination of the following:
* PSL_DRAW (0) : Draw a line segment
* PSL_MOVE (1) : Move to a new anchor point (x[0], y[0]) first
* PSL_STROKE (2) : Stroke the line
* PSL_CLOSE (8) : Close the line back to the beginning of this segment, this is done automatically
* when the first and last point are the same and PSL_MOVE is on.
*/
int i, i0 = 0;
if (n < 1) return (PSL_NO_ERROR); /* Cannot deal with empty lines */
if (type < 0) type = -type; /* Should be obsolete now */
/* If first and last point are the same, close the polygon and drop the last point
* (but only if this segment runs start to finish)
*/
if (n > 1 && (type & PSL_MOVE) && (x[0] == x[n-1] && y[0] == y[n-1]) && (type & PSL_CLOSE_INTERIOR) == 0) {n--; type |= PSL_CLOSE;}
if (type & PSL_MOVE) {
PSL_command (PSL, "%.12lg %.12lg M\n", psl_x (PSL, x[0]), psl_y (PSL, y[0]));
i0++;
if (n == 1) PSL_command (PSL, "0 0 D\n"); /* Add at least a zero length line */
}
for (i = i0; i < n; i++)
PSL_command (PSL, "%.12lg %.12lg L\n", psl_x (PSL, x[i]), psl_y (PSL, y[i]));
if (type & PSL_STROKE && type & PSL_CLOSE)
PSL_command (PSL, "P S\n"); /* Close and stroke the path */
else if (type & PSL_CLOSE)
PSL_command (PSL, "P\n"); /* Close the path */
else if (type & PSL_STROKE)
PSL_command (PSL, "S\n"); /* Stroke the path */
return (PSL_NO_ERROR);
}
#else
int PSL_plotline (struct PSL_CTRL *PSL, double *x, double *y, int n, int type) {
/* Plot a (portion of a) line. This can be a line from start to finish, or a portion of it, depending
* on the type argument. Optionally, the line can be stroked (using the current pen), closed.
* Type is a combination of the following:
* PSL_DRAW (0) : Draw a line segment
* PSL_MOVE (1) : Move to a new anchor point (x[0], y[0]) first
* PSL_STROKE (2) : Stroke the line
* PSL_CLOSE (8) : Close the line back to the beginning of this segment, this is done automatically
* when the first and last point are the same and PSL_MOVE is on.
*/
int i, i0 = 0, *ix = NULL, *iy = NULL;
if (n < 1) return (PSL_NO_ERROR); /* Cannot deal with empty lines */
if (type < 0) type = -type; /* Should be obsolete now */
/* First remove unnecessary points that have zero curvature */
ix = PSL_memory (PSL, NULL, n, int);
iy = PSL_memory (PSL, NULL, n, int);
n = psl_convert_path (PSL, x, y, n, ix, iy, PSL_SHORTEN_PATH);
/* If first and last point are the same, close the polygon and drop the last point
* (but only if this segment runs start to finish)
*/
if (n > 1 && (type & PSL_MOVE) && (ix[0] == ix[n-1] && iy[0] == iy[n-1]) && (type & PSL_CLOSE_INTERIOR) == 0) {n--; type |= PSL_CLOSE;}
if (type & PSL_MOVE) {
PSL_command (PSL, "%d %d M\n", ix[0], iy[0]);
PSL->internal.ix = ix[0];
PSL->internal.iy = iy[0];
i0++;
if (n == 1) PSL_command (PSL, "0 0 D\n"); /* Add at least a zero length line */
}
for (i = i0; i < n; i++) {
if (ix[i] != PSL->internal.ix || iy[i] != PSL->internal.iy)
PSL_command (PSL, "%d %d D\n", ix[i] - PSL->internal.ix, iy[i] - PSL->internal.iy);
PSL->internal.ix = ix[i];
PSL->internal.iy = iy[i];
}
if (type & PSL_STROKE && type & PSL_CLOSE)
PSL_command (PSL, "P S\n"); /* Close and stroke the path */
else if (type & PSL_CLOSE)
PSL_command (PSL, "P\n"); /* Close the path */
else if (type & PSL_STROKE)
PSL_command (PSL, "S\n"); /* Stroke the path */
PSL_free (ix);
PSL_free (iy);
return (PSL_NO_ERROR);
}
#endif
int PSL_plotcurve (struct PSL_CTRL *PSL, double *x, double *y, int n, int type) {
/* Plot a (portion of a) Bezier curve. This can be a line from start to finish, or a portion of it, depending
* on the type argument. Optionally, the line can be stroked (using the current pen), closed.
* Type is a combination of the following:
* PSL_DRAW (0) : Draw a line segment
* PSL_MOVE (1) : Move to a new anchor point (x[0], y[0]) first [REQUIRED]
* PSL_STROKE (2) : Stroke the line
* PSL_CLOSE (8) : Close the line back to the beginning of this segment, this is done automatically
* when the first and last point are the same and PSL_MOVE is on.
*/
int i = 0, *ix = NULL, *iy = NULL;
double *Px1 = NULL, *Py1 = NULL, *Px2 = NULL, *Py2 = NULL;
if (n < 1) return (PSL_NO_ERROR); /* Cannot deal with empty lines */
if (type < 0) type = -type; /* Should be obsolete now */
psl_computeBezierControlPoints (PSL, x, n, &Px1, &Px2);
psl_computeBezierControlPoints (PSL, y, n, &Py1, &Py2);
/* First convert knots to integers */
ix = PSL_memory (PSL, NULL, n, int);
iy = PSL_memory (PSL, NULL, n, int);
n = psl_convert_path (PSL, x, y, n, ix, iy, PSL_CONVERT_PATH);
/* If first and last point are the same, close the polygon and drop the last point
* (but only if this segment runs start to finish)
*/
if (n > 1 && (type & PSL_MOVE) && (ix[0] == ix[n-1] && iy[0] == iy[n-1])) type |= PSL_CLOSE;
/* Move to (and set) currentpoint */
PSL_command (PSL, "%d %d M\n", ix[0], iy[0]);
n--;
while (i < n) {
PSL_command (PSL, "%d %d ", psl_ix (PSL, Px1[i]), psl_iy (PSL, Py1[i]));
PSL_command (PSL, "%d %d ", psl_ix (PSL, Px2[i]), psl_iy (PSL, Py2[i]));
i++; /* Go to end point of segment */
PSL_command (PSL, "%d %d curveto\n", ix[i], iy[i]);
}
PSL_free (Px1); PSL_free (Py1); PSL_free (Px2); PSL_free (Py2);
i--; /* ID of last point */
PSL->internal.ix = ix[i];
PSL->internal.iy = iy[i];
if (type & PSL_STROKE && type & PSL_CLOSE)
PSL_command (PSL, "P S\n"); /* Close and stroke the path */
else if (type & PSL_CLOSE)
PSL_command (PSL, "P\n"); /* Close the path */
else if (type & PSL_STROKE)
PSL_command (PSL, "S\n"); /* Stroke the path */
PSL_free (ix);
PSL_free (iy);
return (PSL_NO_ERROR);
}
int PSL_plotpoint (struct PSL_CTRL *PSL, double x, double y, int pen) {
int ix, iy, idx, idy;
/* Convert user coordinates to dots */
ix = psl_ix (PSL, x);
iy = psl_iy (PSL, y);
if (pen & PSL_REL) {
/* Relative move or relative draw */
if (pen & PSL_STROKE) {
/* Always draw-stroke even when displacement is 0 */
PSL_command (PSL, "%d %d D S\n", ix, iy);
}
else if (ix == 0 && iy == 0)
return (PSL_NO_ERROR);
else if (pen & PSL_MOVE)
PSL_command (PSL, "%d %d G\n", ix, iy);
else
PSL_command (PSL, "%d %d D\n", ix, iy);
PSL->internal.ix += ix; /* Update absolute position */
PSL->internal.iy += iy;
}
else {
/* Absolute move or absolute draw converted to relative */
idx = ix - PSL->internal.ix;
idy = iy - PSL->internal.iy;
if (pen & PSL_STROKE) {
/* Always draw-stroke even when displacement is 0 */
PSL_command (PSL, "%d %d D S\n", idx, idy);
}
else if (pen & PSL_MOVE) {
/* Do this always, even if idx = idy = 0, just to be sure we are where we are supposed to be */
PSL_command (PSL, "%d %d M\n", ix, iy);
}
else if (idx == 0 && idy == 0)
return (PSL_NO_ERROR);
else {
/* Convert to relative draw to have smaller numbers */
PSL_command (PSL, "%d %d D\n", idx, idy);
}
PSL->internal.ix = ix; /* Update absolute position */
PSL->internal.iy = iy;
}
return (PSL_NO_ERROR);
}
int PSL_endplot (struct PSL_CTRL *PSL, int lastpage) {
/* Finalizes the current plot layer; see PSL_endsession for terminating PSL session. */
if (PSL->init.runmode == 0) {
psl_pattern_cleanup (PSL);
memset (PSL->internal.pattern, 0, 2*PSL_N_PATTERNS*sizeof (struct PSL_PATTERN)); /* Reset all pattern info since the file is now closed */
}
PSL_setdash (PSL, NULL, 0.0);
if (!PSL_eq (PSL->current.rgb[PSL_IS_STROKE][3], 0.0)) PSL_command (PSL, "1 1 /Normal PSL_transp\n");
if (lastpage) {
PSL_command (PSL, "\ngrestore\n"); /* End encapsulation of main body for this plot */
PSL_comment (PSL, "Run PSL movie label completion function, if defined\n");
PSL_command (PSL, "PSL_movie_label_completion /PSL_movie_label_completion {} def\n"); /* Run then make it a null function */
PSL_comment (PSL, "Run PSL movie progress indicator completion function, if defined\n");
PSL_command (PSL, "PSL_movie_prog_indicator_completion /PSL_movie_prog_indicator_completion {} def\n"); /* Run then make it a null function */
PSL_command (PSL, "%%PSL_Begin_Trailer\n");
PSL_command (PSL, "%%%%PageTrailer\n");
if (PSL->init.runmode) {
psl_pattern_cleanup (PSL);
memset (PSL->internal.pattern, 0, 2*PSL_N_PATTERNS*sizeof (struct PSL_PATTERN)); /* Reset all pattern info since the file is now closed */
}
PSL_comment (PSL, "Reset transformations and call showpage\n");
PSL_command (PSL, "U\nshowpage\n");
PSL_command (PSL, "\n%%%%Trailer\n");
PSL_command (PSL, "\nend\n");
PSL_command (PSL, "%%%%EOF\n");
}
else if (PSL->internal.origin[0] == 'a' || PSL->internal.origin[1] == 'a') { /* Restore the origin of the plotting */
if (PSL->internal.comments) PSL_command (PSL, "%% Reset plot origin:\n");
PSL_command (PSL, "%d %d TM\n", PSL->internal.origin[0] == 'a' ? -psl_iz(PSL, PSL->internal.offset[0]) : 0,
PSL->internal.origin[1] == 'a' ? -psl_iz(PSL, PSL->internal.offset[1]) : 0);
}
if (PSL->internal.memory) { /* Finalize memory buffer allocation */
memset (&PSL->internal.buffer[PSL->internal.n], 0, (PSL->internal.n_alloc-PSL->internal.n)*sizeof (char)); /* Wipe the unused stuff */
PSL->internal.n_alloc = PSL->internal.n; /* Shrink allocated memory to what is needed to hold the PS */
PSL->internal.buffer = PSL_memory (PSL, PSL->internal.buffer, PSL->internal.n_alloc, char);
if (lastpage) PSL->internal.pmode |= 2; /* We provided a trailer */
}
else { /* Dealing with files or stdout */
if (PSL->internal.fp != stdout && PSL->internal.call_level == 1) {
fclose (PSL->internal.fp); /* Only level 1 can close the file (if not stdout) */
PSL->internal.fp = NULL;
}
}
PSL->internal.offset[0] = PSL->internal.prev_offset[0];
PSL->internal.offset[1] = PSL->internal.prev_offset[1];
PSL->internal.call_level--; /* Done with this module call */
return (PSL_NO_ERROR);
}
char * PSL_getplot (struct PSL_CTRL *PSL) {
/* Simply pass the plot back to caller */
if (!PSL->internal.memory) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Cannot get a plot since memory output was not activated!\n");
return (NULL);
}
if (!PSL->internal.buffer) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: No plot in memory available!\n");
return (NULL);
}
return (PSL->internal.buffer);
}
int PSL_beginplot (struct PSL_CTRL *PSL, FILE *fp, int orientation, int overlay, int color_mode, char origin[], double offset[], double page_size[], char *title, int font_no[]) {
/* fp: Output stream or NULL for standard output
orientation: 0 = landscape, 1 = portrait. If orientation &2 then we write to memory array [Default is to fp]
If orientation&4 then we must reissue font encoding due to a change in charset
overlay: true if this is an overlay plot [false means print headers and macros first]
color_mode: 0 = RGB color, 1 = CMYK color, 2 = HSV color, 3 = Gray scale
origin: Two characters indicating origin of new position for x and y respectively:
'r' = Relative to old position (default)
'a' = Relative to old position and resets at PSL_endplot
'f' = Relative to lower left corner of the page
'c' = Relative to center of the page
offset: Location of new origin relative to what is specified by "origin" (in user units)
page_size: Physical width and height of paper used in points
title: Title of the plot (or NULL if not specified)
font_no: Array of font numbers used in the document (or NULL if not determined)
*/
int i, manual_feed = false, err = 0, change_charset = 0;
double no_rgb[4] = {-1.0, -1.0, -1.0, 0.0}, dummy_rgb[4] = {-2.0, -2.0, -2.0, 0.0}, black[4] = {0.0, 0.0, 0.0, 0.0}, scl;
time_t right_now;
const char *uname[4] = {"cm", "inch", "meter", "point"}, xy[2] = {'x', 'y'};
const double units_per_inch[4] = {2.54, 1.0, 0.0254, 72.0}; /* cm, inch, m, points per inch */
char PSL_encoding[64] = {""};
if (!PSL) return (PSL_NO_SESSION); /* Never was allocated */
PSL->internal.memory = (orientation & PSL_MEMORY); /* true if we wish to write PS to memory instead of to file */
if (PSL->internal.memory) orientation -= PSL_MEMORY;
change_charset = (orientation & PSL_CHANGESET); /* true if we must update the character set */
if (change_charset) orientation -= PSL_CHANGESET;
/* Save original initialization settings */
PSL->internal.call_level++; /* Becomes 1 for first module calling it, 2 if that module calls for plotting, etc */
if (PSL->internal.call_level == 1)
PSL->internal.fp = (fp == NULL) ? stdout : fp; /* For higher levels we reuse existing file pointer */
PSL->internal.overlay = overlay;
memcpy (PSL->init.page_size, page_size, 2 * sizeof(double));
PSL->internal.color_mode = color_mode;
if (!origin)
PSL->internal.origin[0] = PSL->internal.origin[1] = 'r';
else
PSL->internal.origin[0] = origin[0], PSL->internal.origin[1] = origin[1];
PSL->internal.p_width = fabs (page_size[0]);
PSL->internal.p_height = fabs (page_size[1]);
manual_feed = (page_size[0] < 0.0); /* Want Manual Request for paper */
PSL_settransparencymode (PSL, "Normal"); /* Default PDF transparency mode */
PSL_setfontdims (PSL, PSL_SUBSUP_SIZE, PSL_SCAPS_SIZE, PSL_SUP_UP_LC, PSL_SUP_UP_UC, PSL_SUB_DOWN); /* Default sub/sup/scaps dimensions */
PSL->current.linewidth = -1.0; /* Will be changed by PSL_setlinewidth */
PSL_rgb_copy (PSL->current.rgb[PSL_IS_STROKE], dummy_rgb); /* Will be changed by PSL_setcolor */
PSL->current.outline = -1; /* Will be changed by PSL_setfill */
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FILL], dummy_rgb); /* Will be changed by PSL_setfill */
PSL->internal.dpu = PSL_DOTS_PER_INCH / units_per_inch[PSL->init.unit]; /* Dots per unit resolution of output device */
PSL->internal.dpp = PSL_DOTS_PER_INCH / units_per_inch[PSL_PT]; /* Dots per point resolution of output device */
PSL->internal.x2ix = PSL->internal.dpu; /* Scales x coordinates to dots */
PSL->internal.y2iy = PSL->internal.dpu; /* Scales y coordinates to dots */
PSL->internal.x0 = PSL->internal.y0 = 0; /* Offsets for x and y when mapping user x,y to PS ix,iy */
PSL->internal.p2u = PSL->internal.dpp / PSL->internal.dpu; /* Converts dimensions in points to user units */
right_now = time ((time_t *)0);
PSL->internal.landscape = !(overlay || orientation); /* Only rotate if not overlay and not Portrait */
PSL->internal.prev_offset[0] = PSL->internal.offset[0];
PSL->internal.prev_offset[1] = PSL->internal.offset[1];
PSL->internal.offset[0] = offset[0];
PSL->internal.offset[1] = offset[1];
/* Initialize global variables */
strcpy (PSL->current.bw_format, "%.3lg A"); /* Default format used for grayshade value */
strcpy (PSL->current.rgb_format, "%.3lg %.3lg %.3lg C"); /* Same, for RGB triplets */
strcpy (PSL->current.hsv_format, "%.3lg %.3lg %.3lg H"); /* Same, for HSV triplets */
strcpy (PSL->current.cmyk_format, "%.3lg %.3lg %.3lg %.3lg K"); /* Same, for CMYK quadruples */
/* In case this is the last overlay, set the Bounding box coordinates to be used atend */
if (overlay) { /* Must issue PSL header - this is the start of a new panel */
if (change_charset) {
PSL_comment (PSL, "Encode fonts using selected character set: %s\n", PSL->init.encoding);
sprintf (PSL_encoding, "PSL_%s", PSL->init.encoding); /* Prepend the PSL_ prefix */
err = psl_place_encoding (PSL, PSL_encoding);
if (err) return err;
psl_def_font_encoding (PSL); /* Initialize book-keeping for font encoding and write font macros */
}
if (PSL->current.complete) { /* Execute the panel completion function, then disable again */
PSL_comment (PSL, "Run PSL completion function from last overlay, if defined\n");
PSL_command (PSL, "PSL_plot_completion /PSL_plot_completion {} def\n"); /* Run then make it a null function */
PSL->current.complete = 0;
}
}
else { /* Must issue PSL header - this is the start of a new plot */
if (PSL->internal.memory) { /* Will be writing to memory so need to set that up */
psl_freeplot (PSL); /* Free any previous plot laying around */
PSL->internal.buffer = PSL_memory (PSL, NULL, PSL_MEM_ALLOC, char);
PSL->internal.n_alloc = PSL_MEM_ALLOC;
PSL->internal.n = 0;
PSL->internal.pmode = 1; /* Header of plot will be written below */
}
PSL_command (PSL, "%%!PS-Adobe-3.0\n");
/* Write definitions of macros to plotfile */
PSL_command (PSL, "%%%%BoundingBox: 0 0 %d %d\n", lrint (PSL->internal.p_width), lrint (PSL->internal.p_height));
/* The spaces below are to accommodate eventual need by psconvert when working with in-memory-PS */
PSL_command (PSL, "%%%%HiResBoundingBox: 0 0 %.4lf %.4lf \n", PSL->internal.p_width, PSL->internal.p_height);
if (title) {
PSL_command (PSL, "%%%%Title: %s\n", title);
PSL_command (PSL, "%%%%Creator: %s\n", PSL->init.session);
}
else {
PSL_command (PSL, "%%%%Title: PSL v%s document\n", PSL_Version);
PSL_command (PSL, "%%%%Creator: PSL\n");
}
PSL_command (PSL, "%%%%For: %s\n", psl_putusername());
if (font_no) {
PSL_command (PSL, "%%%%DocumentNeededResources: font");
for (i = 0; i < PSL_MAX_EPS_FONTS && font_no[i] != -1; i++) PSL_command (PSL, " %s", PSL->internal.font[font_no[i]].name);
PSL_command (PSL, "\n");
}
PSL_command (PSL, "%%%%CreationDate: %s", ctime(&right_now));
PSL_command (PSL, "%%%%LanguageLevel: %d\n", PS_LANGUAGE_LEVEL);
PSL_command (PSL, "%%%%DocumentData: Clean7Bit\n");
if (PSL->internal.landscape)
PSL_command (PSL, "%%%%Orientation: Landscape\n");
else
PSL_command (PSL, "%%%%Orientation: Portrait\n");
PSL_command (PSL, "%%%%Pages: 1\n");
PSL_command (PSL, "%%%%EndComments\n\n");
PSL_command (PSL, "%%%%BeginProlog\n");
psl_bulkcopy (PSL, "PSL_prologue"); /* General PS code */
sprintf (PSL_encoding, "PSL_%s", PSL->init.encoding); /* Prepend the PSL_ prefix */
err = psl_place_encoding (PSL, PSL_encoding);
if (err) return err;
psl_def_font_encoding (PSL); /* Initialize book-keeping for font encoding and write font macros */
psl_bulkcopy (PSL, "PSL_label"); /* PS code for label line annotations and clipping */
PSL_command (PSL, "%%%%EndProlog\n\n");
PSL_command (PSL, "%%%%BeginSetup\n");
PSL_command (PSL, "/PSLevel /languagelevel where {pop languagelevel} {1} ifelse def\n");
PSL_command (PSL, "PSLevel 1 gt { << /WhiteIsOpaque true >> setpagedevice } if\n");
if (manual_feed) /* Manual media feed requested */
PSL_command (PSL, "PSLevel 1 gt { << /ManualFeed true >> setpagedevice } if\n");
else if (PSL->internal.p_width > 0.0 && PSL->internal.p_height > 0.0) { /* Specific media selected */
PSL_command (PSL, "PSLevel 1 gt { << /PageSize [%.12g %.12g] /ImagingBBox null >> setpagedevice } if \n",
PSL->internal.p_width, PSL->internal.p_height); /* Leave some space for eventual PageSize change by psconvert */
PSL_command (PSL, "%% \n"); /* Space for eventual rot/translation by psconvert*/
}
if (PSL->init.copies > 1) PSL_command (PSL, "/#copies %d def\n", PSL->init.copies);
PSL_command (PSL, "%%%%EndSetup\n\n");
PSL_command (PSL, "%%%%Page: 1 1\n\n");
PSL_command (PSL, "%%%%BeginPageSetup\n");
PSL_comment (PSL, "Init coordinate system and scales\n");
scl = 1.0 / PSL->internal.dpp;
PSL_comment (PSL, "Scale initialized to %.12g, so 1 %s equals %.12g Postscript units\n", scl, uname[PSL->init.unit], PSL->internal.dpu);
PSL_command (PSL, "V ");
if (PSL->internal.landscape) PSL_command (PSL, "%.12g 0 T 90 R ", PSL->internal.p_width);
PSL_command (PSL, "%.12g %.12g scale\n", PSL->init.magnify[0] * scl, PSL->init.magnify[1] * scl);
PSL_command (PSL, "%%%%EndPageSetup\n\n");
if (!(PSL_is_gray(PSL->init.page_rgb) && PSL_eq(PSL->init.page_rgb[0],1.0))) /* Change background color from white but not if PSL_no_pagefill is set via psconvert */
PSL_command (PSL, "systemdict /PSL_no_pagefill known not {clippath %s F N} if\n", psl_putcolor (PSL, PSL->init.page_rgb, 0));
PSL_comment (PSL, "End of PSL header\n");
/* Save page size */
PSL_defpoints (PSL, "PSL_page_xsize", PSL->internal.landscape ? PSL->internal.p_height : PSL->internal.p_width);
PSL_defpoints (PSL, "PSL_page_ysize", PSL->internal.landscape ? PSL->internal.p_width : PSL->internal.p_height);
PSL_command (PSL, "/PSL_plot_completion {} def\n"); /* Initialize custom procedure as a null function */
PSL_command (PSL, "/PSL_movie_label_completion {} def\n"); /* Initialize custom procedure as a null function */
PSL_command (PSL, "/PSL_movie_prog_indicator_completion {} def\n"); /* Initialize custom procedure as a null function */
/* Write out current settings for cap, join, and miter; these may be changed by user at any time later */
i = PSL->internal.line_cap; PSL->internal.line_cap = PSL_BUTT_CAP; PSL_setlinecap (PSL, i);
i = PSL->internal.line_join; PSL->internal.line_join = PSL_MITER_JOIN; PSL_setlinejoin (PSL, i);
i = PSL->internal.miter_limit; PSL->internal.miter_limit = PSL_MITER_DEFAULT; PSL_setmiterlimit (PSL, i);
PSL_command (PSL, "%%PSL_End_Header\n");
PSL_command (PSL, "gsave\n"); /* Begin encapsulation of main body for this plot */
}
/* Set default line color and no-rgb */
PSL_setcolor (PSL, black, PSL_IS_STROKE);
PSL_setfill (PSL, no_rgb, 0);
/* Set origin of the plot */
if (PSL->internal.comments) PSL_command (PSL, "%% Set plot origin:\n");
for (i = 0; i < 2; i++) {
switch (PSL->internal.origin[i]) {
case 'f': PSL_command (PSL, "%d PSL_%corig sub ", psl_iz (PSL, offset[i]), xy[i]); break;
case 'c': PSL_command (PSL, "%d PSL_%corig sub PSL_page_%csize 2 div add ", psl_iz (PSL, offset[i]), xy[i], xy[i]); break;
default : PSL_command (PSL, "%d ", psl_iz (PSL, offset[i])); break;
}
}
PSL_command (PSL, "TM\n");
return (PSL_NO_ERROR);
}
int PSL_setlinecap (struct PSL_CTRL *PSL, int cap) {
if (cap != PSL->internal.line_cap) {
PSL_command (PSL, "%d setlinecap\n", cap);
PSL->internal.line_cap = cap;
}
return (PSL_NO_ERROR);
}
int PSL_setlinejoin (struct PSL_CTRL *PSL, int join) {
if (join != PSL->internal.line_join) {
PSL_command (PSL, "%d setlinejoin\n", join);
PSL->internal.line_join = join;
}
return (PSL_NO_ERROR);
}
int PSL_setmiterlimit (struct PSL_CTRL *PSL, int limit) {
if (limit != PSL->internal.miter_limit) {
PSL_command (PSL, "%.12g setmiterlimit\n", (limit == 0) ? 10.0 : 1.0 / sin (0.5 * limit * D2R));
PSL->internal.miter_limit = limit;
}
return (PSL_NO_ERROR);
}
int PSL_plotbox (struct PSL_CTRL *PSL, double x0, double y0, double x1, double y1) {
/* Draw rectangle with corners (x0,y0) and (x1,y1) */
int llx, lly;
llx = psl_ix (PSL, x0);
lly = psl_iy (PSL, y0);
PSL_command (PSL, "%d %d %d %d Sb\n", psl_iy (PSL, y1) - lly, psl_ix (PSL, x1) - llx, llx, lly);
return (PSL_NO_ERROR);
}
int PSL_plotpolygon (struct PSL_CTRL *PSL, double *x, double *y, int n) {
/* Draw and optionally fill polygons. If 20 or fewer points we use
* the more expedited psl_patch function
*/
if (n <= 20)
psl_patch (PSL, x, y, n); /* Small polygons can use the patch function */
else {
PSL_plotline (PSL, x, y, n, PSL_MOVE); /* No stroke or close path yet; see next line */
PSL_command (PSL, "FO\n"); /* Close polygon and stroke/fill as set by PSL_setfill */
}
return (PSL_NO_ERROR);
}
int PSL_setexec (struct PSL_CTRL *PSL, int action) {
/* Enables of disables the execution of a PSL_plot_completion function at start of a PSL_plotinit overlay */
PSL->current.complete = (action) ? 1 : 0;
return (PSL_NO_ERROR);
}
int PSL_setdash (struct PSL_CTRL *PSL, char *style, double offset) {
/* Line structure in points
* offset from currentpoint in points
* style = "1 2", offset = 0:
* 1 point of line, 2 points of space, start at current point
* style = "5 3 1 3", offset = 2:
* 5 points line, 3 points space, 1 points line, 3 points space,
* starting 2 points from current point.
*/
if (PSL->current.style[0] == '\0') { /* No previous style, so previous offset does not matters */
if (!style || style[0] == '\0') return (PSL_NO_ERROR); /* No new style given, so just return */
}
/* Here, we have a previous non-NULL style */
if (!style || style[0] == '\0') { /* No style wanted going forwards, so we do a full reset */
memset (PSL->current.style, 0, PSL_PEN_LEN);
PSL->current.offset = 0;
PSL_command (PSL, "[] 0 B\n");
return (PSL_NO_ERROR);
}
/* Here we have a previous style AND we have specified a (possibly) new style */
if (PSL_eq(offset,PSL->current.offset) && !strcmp (style, PSL->current.style)) return (PSL_NO_ERROR); /* Same as before, so just return */
/* Finally, a new style has been given that differs from the previous and we need to update our settings */
PSL->current.offset = offset;
strncpy (PSL->current.style, style, PSL_PEN_LEN);
PSL_command (PSL, "%s\n", psl_putdash (PSL, style, offset));
return (PSL_NO_ERROR);
}
int PSL_setfont (struct PSL_CTRL *PSL, int font_no) {
if (font_no == PSL->current.font_no) return (PSL_NO_ERROR); /* Already set */
if (font_no < 0 || font_no >= PSL->internal.N_FONTS) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Selected font (%d) out of range (0-%d); reset to 0\n", font_no, PSL->internal.N_FONTS-1);
font_no = 0;
}
PSL->current.font_no = font_no;
PSL->current.fontsize = 0.0; /* Forces "%d F%d" to be written on next call to psl_putfont */
/* Encoding will be done by subsequent calls inside the text-producing routines through calls to psl_encodefont [PS: testing line below] */
psl_encodefont (PSL, PSL->current.font_no);
return (PSL_NO_ERROR);
}
int PSL_setfontdims (struct PSL_CTRL *PSL, double supsub, double scaps, double sup_lc, double sup_uc, double sdown) {
/* Adjust settings of sub/super/small caps attributes */
if (supsub <= 0.0 || supsub >= 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Size of sub/super-script (%g) exceed allowable range, reset to %^g\n", supsub, PSL_SUBSUP_SIZE);
supsub = PSL_SUBSUP_SIZE;
}
if (scaps <= 0.0 || scaps >= 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Size of small caps text (%g) exceed allowable range, reset to %^g\n", scaps, PSL_SCAPS_SIZE);
scaps = PSL_SUBSUP_SIZE;
}
if (sup_lc <= 0.0 || sup_lc >= 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Amount of baseline shift for lower-case super-scripts (%g) exceed allowable range, reset to %^g\n",
sup_lc, PSL_SUP_UP_LC);
sup_lc = PSL_SUBSUP_SIZE;
}
if (sup_uc <= 0.0 || sup_uc >= 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Amount of baseline shift for upper-case super-scripts (%g) exceed allowable range, reset to %^g\n",
sup_uc, PSL_SUP_UP_UC);
sup_uc = PSL_SUBSUP_SIZE;
}
if (sdown <= 0.0 || sdown >= 1.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Amount of baseline shift for sub-scripts (%g) exceed allowable range, reset to %^g\n",
sdown, PSL_SUB_DOWN);
sdown = PSL_SUBSUP_SIZE;
}
PSL->current.subsupsize = supsub;
PSL->current.scapssize = scaps;
PSL->current.sub_down = sdown;
PSL->current.sup_up[PSL_LC] = sup_lc;
PSL->current.sup_up[PSL_UC] = sup_uc;
return (PSL_NO_ERROR);
}
int PSL_setformat (struct PSL_CTRL *PSL, int n_decimals) {
/* Sets number of decimals used for rgb/gray specifications [3] */
if (n_decimals < 1 || n_decimals > 3)
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Selected decimals for color out of range (%d), ignored\n", n_decimals);
else {
sprintf (PSL->current.bw_format, "%%.%df A", n_decimals);
sprintf (PSL->current.rgb_format, "%%.%df %%.%df %%.%df C", n_decimals, n_decimals, n_decimals);
sprintf (PSL->current.hsv_format, "%%.%df %%.%df %%.%df H", n_decimals, n_decimals, n_decimals);
sprintf (PSL->current.cmyk_format, "%%.%df %%.%df %%.%df %%.%df K", n_decimals, n_decimals, n_decimals, n_decimals);
}
return (PSL_NO_ERROR);
}
int PSL_setlinewidth (struct PSL_CTRL *PSL, double linewidth) {
if (linewidth < 0.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Selected linewidth is negative (%g), ignored\n", linewidth);
return (PSL_BAD_WIDTH);
}
if (linewidth == PSL->current.linewidth) return (PSL_NO_ERROR);
PSL_command (PSL, "%d W\n", psl_ip (PSL, linewidth));
PSL->current.linewidth = linewidth;
return (PSL_NO_ERROR);
}
int PSL_setcolor (struct PSL_CTRL *PSL, double rgb[], int mode) {
/* Set the pen (PSL_IS_STROKE) color or fill (PSL_IS_FILL) color or pattern
* rgb[0] = -3: set pattern, rgb[1] is pattern number setup by PSL_setpattern
* rgb[0] = -2: ignore. Do not change pen color. Leave untouched.
* rgb[0] = -1: ignore. Do not change pen color. Leave untouched.
* rgb[0] >= 0: rgb is the color with R G B in 0-1 range.
*/
if (!rgb) return (PSL_NO_ERROR); /* NULL args to be ignored */
if (mode == PSL_IS_FONT) { /* Internally update font color but set stroke color */
PSL_rgb_copy (PSL->current.rgb[mode], rgb);
mode = PSL_IS_STROKE;
}
if (PSL_eq (rgb[0], -2.0) || PSL_eq (rgb[0], -1.0)) return (PSL_NO_ERROR); /* Settings to be ignored */
if (PSL_same_rgb (rgb, PSL->current.rgb[mode])) return (PSL_NO_ERROR); /* Same color as already set */
/* Because psl_putcolor does not set transparency if it is 0%, we reset it here when needed */
if (PSL_eq (rgb[3], 0.0) && !PSL_eq (PSL->current.rgb[mode][3], 0.0))
PSL_command (PSL, "%.12g %.12g /Normal PSL_transp ", PSL->init.transparencies[PSL_FILL_TRANSP], PSL->init.transparencies[PSL_PEN_TRANSP]);
/* Then, finally, set the color using psl_putcolor */
PSL_command (PSL, "%s\n", psl_putcolor (PSL, rgb, 0));
/* Update the current stroke/fill color information */
PSL_rgb_copy (PSL->current.rgb[mode], rgb);
return (PSL_NO_ERROR);
}
int PSL_setrgb (struct PSL_CTRL *PSL, double rgb[]) {
/* Set the fill (PSL_IS_FILL) r/g/b color
* rgb[0] >= 0: rgb is the color with R G B in 0-1 range.
*/
if (!rgb) return (PSL_NO_ERROR); /* NULL args to be ignored */
if (PSL_same_rgb (rgb, PSL->current.rgb[PSL_IS_FILL])) return (PSL_NO_ERROR); /* Same color as already set */
/* Then, finally, set the color using psl_putcolor */
PSL_command (PSL, "{%s} FS\n", psl_putcolor (PSL, rgb, 0));
/* Update the current stroke/fill color information */
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FILL], rgb);
return (PSL_NO_ERROR);
}
char * PSL_makepen (struct PSL_CTRL *PSL, double linewidth, double rgb[], char *pattern, double offset) {
/* Creates a text string with the corresponding PS command to set the pen */
static char buffer[PSL_BUFSIZ];
sprintf (buffer, "%d W %s %s", psl_ip (PSL, linewidth), psl_putcolor (PSL, rgb, 0), psl_putdash (PSL, pattern, offset));
return (buffer);
}
char * PSL_makefont (struct PSL_CTRL *PSL, double size, double rgb[]) {
/* Creates a text string with the corresponding PS command to set the font (current font) */
static char buffer[PSL_BUFSIZ];
sprintf (buffer, "%s %d F%d", psl_putcolor (PSL, rgb, 0), psl_ip (PSL, size), PSL->current.font_no);
return (buffer);
}
char * PSL_makefontsize (struct PSL_CTRL *PSL, double size) {
/* Creates a text string with the corresponding PS command to set the font (current font) with no color info */
static char buffer[PSL_BUFSIZ];
sprintf (buffer, "%d F%d", psl_ip (PSL, size), PSL->current.font_no);
return (buffer);
}
char * PSL_makecolor (struct PSL_CTRL *PSL, double rgb[]) {
/* Creates a text string with the corresponding PS command to set the color */
static char buffer[PSL_BUFSIZ];
sprintf (buffer, "%s", psl_putcolor (PSL, rgb, 0));
return (buffer);
}
int PSL_settextmode (struct PSL_CTRL *PSL, int mode) {
/* Change from laissez-faire to replacing hyphens with minus sign char code */
switch (mode) {
case PSL_TXTMODE_HYPHEN:
PSL->current.use_minus = PSL_TXTMODE_HYPHEN;
break;
case PSL_TXTMODE_MINUS:
PSL->current.use_minus = PSL_TXTMODE_MINUS;
break;
default:
PSL_message (PSL, PSL_MSG_ERROR, "Error: bad argument passed to PSL_settextmode (%d)!\n", mode);
return (PSL_BAD_FLAG);
break;
}
return (PSL_NO_ERROR);
}
int PSL_setdefaults (struct PSL_CTRL *PSL, double xyscales[], double page_rgb[], char *encoding) {
/* Changes the standard PSL defaults for:
* xyscales: Global x- and y-scale magnifier [1.0, 1.0]
* page_rgb: Page color [white = 1/1/1]; give NULL to leave unchanged.
*
* Only non-zero values will result in a change */
if (xyscales[0] != 0.0) PSL->init.magnify[0] = xyscales[0]; /* Change plot x magnifier */
if (xyscales[1] != 0.0) PSL->init.magnify[1] = xyscales[1]; /* Change plot y magnifier */
if (page_rgb) PSL_rgb_copy (PSL->init.page_rgb, page_rgb); /* Change media color */
if (PSL->init.encoding && encoding && strcmp (PSL->init.encoding, encoding)) {
PSL_free (PSL->init.encoding);
PSL->init.encoding = strdup (encoding);
}
else if (!PSL->init.encoding)
PSL->init.encoding = (encoding) ? strdup (encoding) : strdup ("Standard");
return (PSL_NO_ERROR);
}
int PSL_plottextbox (struct PSL_CTRL *PSL, double x, double y, double fontsize, char *text, double angle, int justify, double offset[], int mode) {
/* Plot a box to be later filled with text. The box is
* filled according to the current fill style (set by PSL_setfill).
* Note that this routine does not actually show the text. Use
* PSL_plottext for that after calling PSL_plottextbox
* x,y = location of string
* fontsize = fontsize in points. Use negative to indicate that anchor has already been set.
* text = text to be boxed in
* angle = angle with baseline (horizontal)
* justify indicates what x,y refers to, see fig below
* mode = 1 makes rounded corners (if offset is nonzero); 0 gives straight corners
* offset[0-1] = Horizontal/vertical space between box border and text
*
*
* 9 10 11
* |----------------|
* 5 <textstring> 7
* |----------------|
* 1 2 3
*/
/* PS strings to be used dependent on "justify%4". Empty string added for unused value. */
const char *align[4] = {"0", "-2 div", "neg", ""};
int i = 0, j, x_just, y_just, new_anchor;
double dx, dy;
if (fontsize == 0.0) return (PSL_NO_ERROR); /* Nothing to do if text has zero size */
new_anchor = (fontsize > 0.0);
fontsize = fabs (fontsize);
if (strlen (text) >= (PSL_BUFSIZ-1)) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: text_item > %d long!\n", PSL_BUFSIZ);
return (PSL_BAD_TEXT);
}
dx = offset[0]; dy = offset[1];
if (dx <= 0.0 || dy <= 0.0) mode = false;
PSL_comment (PSL, "PSL_plottextbox begin:\n");
psl_encodefont (PSL, PSL->current.font_no);
psl_putfont (PSL, fontsize);
PSL_command (PSL, "V\n");
if (justify < 0) { /* Strip leading and trailing blanks */
for (i = 0; text[i] == ' '; i++);
for (j = (int)strlen (text) - 1; text[j] == ' '; j--) text[j] = 0;
justify = -justify;
}
PSL_deftextdim (PSL, "PSL_dim", fontsize, &text[i]); /* Set the string dimensions in PS */
PSL_defunits (PSL, "PSL_dx", dx);
PSL_defunits (PSL, "PSL_dy", dy);
/* Got to anchor point */
if (new_anchor) { /* Set a new anchor point */
PSL->internal.ix = psl_ix (PSL, x);
PSL->internal.iy = psl_iy (PSL, y);
PSL_command (PSL, "%d %d T ", PSL->internal.ix, PSL->internal.iy);
}
if (angle != 0.0) PSL_command (PSL, "%.12g R ", angle);
if (justify > 1) { /* Move the new origin so (0,0) is lower left of box */
x_just = (justify + 3) % 4; /* Gives 0 (left justify, i.e., do nothing), 1 (center), or 2 (right justify) */
y_just = justify / 4; /* Gives 0 (bottom justify, i.e., do nothing), 1 (middle), or 2 (top justify) */
(x_just) ? PSL_command (PSL, "PSL_dim_w %s ", align[x_just]) : PSL_command (PSL, "0 ");
(y_just) ? PSL_command (PSL, "PSL_dim_h %s ", align[y_just]) : PSL_command (PSL, "0 ");
PSL_command (PSL, "T\n");
}
/* Here, (0,0) is lower point of textbox with no clearance yet */
PSL_command (PSL, "PSL_dim_h PSL_dim_d sub PSL_dy 2 mul add PSL_dim_x1 PSL_dim_x0 sub PSL_dx 2 mul add ");
if (mode)
PSL_command (PSL, "%d PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub SB\n", psl_iz (PSL, MIN (dx, dy)));
else
PSL_command (PSL, "PSL_dim_x0 PSL_dx sub PSL_dim_d PSL_dy sub Sb\n");
PSL_command (PSL, "U\n");
PSL_comment (PSL, "PSL_plottextbox end:\n");
strncpy (PSL->current.string, &text[i], PSL_BUFSIZ - 1); /* Save the string with one left for null terminator */
return (PSL_NO_ERROR);
}
int PSL_deftextdim (struct PSL_CTRL *PSL, const char *dim, double fontsize, char *text) {
/* Will calculate the dimension of the given text string.
* Because of possible escape sequences we need to examine the string
* carefully. The dimensions will be set in PostScript as dim_w, dim_h, dim_d
* The width (dim_w) is determined by "stringwidth" and includes some whitespace, making,
* for example, all numerical digits the same width (which we want). The height (dim_h)
* is measured from the baseline and does not include any depth (below the baseline).
* Finally, dim_d is the (negative) depth.
* We try to produce the "stringwidth" result also when the string includes
* escape sequences.
* If dim is given as "-w", "-h", "-d" or "-b", do not assign dimensions, but leave width, height,
* depth or both width and height on the PostScript stack.
*/
char *tempstring = NULL, *piece = NULL, *piece2 = NULL, *ptr = NULL, *string = NULL, *plast = NULL, previous[BUFSIZ] = {""}, c;
int dy, font, font2, sub_on, super_on, scaps_on, symbol_on, font_on, size_on, color_on, under_on, old_font, last_chr, kase = PSL_LC;
bool last_sub = false, last_sup = false, supersub, composite;
double orig_size, small_size, size, scap_size, ustep[2], dstep;
if (strlen (text) >= (PSL_BUFSIZ-1)) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: text_item > %d long!\n", PSL_BUFSIZ);
return (PSL_BAD_TEXT);
}
string = psl_prepare_text (PSL, text); /* Check for escape sequences */
psl_encodefont (PSL, PSL->current.font_no);
psl_putfont (PSL, fontsize);
if (!strchr (string, '@')) { /* Plain text string */
if (dim[0] == '-')
PSL_command (PSL, "(%s) s%c ", string, dim[1]);
else
PSL_command (PSL, "(%s) V MU 0 0 M E /%s_w edef FP pathbbox N /%s_h edef /%s_x1 edef /%s_d edef /%s_x0 edef U\n",
string, dim, dim, dim, dim, dim);
PSL_free (string);
return (PSL_NO_ERROR);
}
psl_got_composite_fontswitch (PSL, string);
/* Here, we have special request for Symbol font and sub/superscript
* @~ toggles between Symbol font and default font
* @%<fontno>% switches font number <fontno>; give @%% to reset
* @- toggles between subscript and normal text
* @+ toggles between superscript and normal text
* @# toggles between Small caps and normal text
* @! will make a composite character of next two characters
* Use @@ to print a single @
*/
piece = PSL_memory (PSL, NULL, 2 * PSL_BUFSIZ, char);
piece2 = PSL_memory (PSL, NULL, PSL_BUFSIZ, char);
font = font2 = old_font = PSL->current.font_no;
orig_size = size = fontsize;
small_size = size * PSL->current.subsupsize; /* Sub-script/Super-script set at given fraction of font size */
scap_size = size * PSL->current.scapssize; /* Small caps set at given fraction of font size */
ustep[PSL_LC] = PSL->current.sup_up[PSL_LC] * size; /* Super-script baseline raised by given fraction of font size for lower case*/
ustep[PSL_UC] = PSL->current.sup_up[PSL_UC] * size; /* Super-script baseline raised by given fraction of font size for upper case */
dstep = PSL->current.sub_down * size; /* Sub-script baseline lowered by given fraction of font size */
sub_on = super_on = scaps_on = symbol_on = font_on = size_on = color_on = under_on = composite = false;
supersub = (strstr (string, "@-@+") || strstr (string, "@+@-")); /* Check for sub/super combo */
tempstring = PSL_memory (PSL, NULL, strlen(string)+1, char); /* Since strtok steps on it */
strcpy (tempstring, string);
ptr = strtok_r (tempstring, "@", &plast);
PSL_command (PSL, "V MU 0 0 M "); /* Initialize currentpoint */
if (string[0] != '@') {
PSL_command (PSL, "(%s) FP ", ptr);
last_chr = ptr[strlen(ptr)-1];
ptr = strtok_r (NULL, "@", &plast);
kase = ((last_chr > 0 && last_chr < 255) && islower (last_chr)) ? PSL_LC : PSL_UC;
}
while (ptr) {
if (ptr[0] == '!') { /* Composite character. Only use the second character to measure width */
ptr++;
if (ptr[0] == '\\') /* Octal code */
ptr += 4;
else
ptr++;
/* Watch out for escaped font change before 2nd character */
if (ptr[0] == PSL_ASCII_ES) { /* Have a font change on either side of 2nd character */
ptr++;
if (ptr[0] == '~') /* Toggle the symbol font */
font2 = PSL_SYMBOL_FONT;
else { /* Font switching with @%font% ...@%% */
ptr++;
font2 = psl_getfont (PSL, ptr);
while (*ptr != '%') ptr++;
}
ptr++; /* Now at start of 2nd character */
}
else /* No 2nd font */
font2 = font;
if (ptr[0] == '\\') { /* Octal code */
c = ptr[4];
ptr[4] = '\0'; /* Temporary chop at end of this code */
}
else {
c = ptr[1];
ptr[1] = '\0'; /* Temporary chop at end of char */
}
strncpy (piece, ptr, 2 * PSL_BUFSIZ); /* Picked character2 */
if (ptr[0] == '\\') { /* Octal code */
ptr[4] = c; /* Restore code */
ptr += 4;
}
else {
ptr[1] = c; /* Restore char */
ptr++;
}
if (font2 != font) { /* Skip past the font switcher */
ptr++; /* Step over the implicit @ (ASCII 27) */
if (font2 == PSL_SYMBOL_FONT)
ptr++; /* Move past the ~ */
else
ptr += 2; /* Move past the %% */
}
composite = true; /* Flag this case */
}
else if (ptr[0] == '~') { /* Symbol font toggle */
symbol_on = !symbol_on;
font = (font == PSL_SYMBOL_FONT) ? old_font : PSL_SYMBOL_FONT;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '%') { /* Switch font option */
font_on = !font_on;
ptr++;
if (ptr[0] == '%')
font = old_font;
else if (ptr[0]) {
old_font = font;
font = psl_getfont (PSL, ptr);
}
while (*ptr != '%') ptr++;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '-') { /* Subscript toggle */
ptr++;
sub_on = !sub_on;
if (sub_on) {
if (last_sup) /* Just did a super-script, must reset horizontal position */
PSL_command (PSL, "PSL_last_width neg 0 G "); /* Rewind position to orig baseline */
else if (supersub) /* Need to remember the width of the subscript */
PSL_command (PSL, "/PSL_last_width %d F%d (%s) sw def\n", psl_ip (PSL, small_size), font, ptr); /* Compute width of subscript text */
if (ptr[0]) strcpy (previous, ptr); /* Keep copy of possibly previous text */
}
else
last_sub = (last_sup || ptr[0] == 0) ? supersub : false; /* Only true when this is a possibility */
size = (sub_on) ? small_size : fontsize;
dy = (sub_on) ? -psl_ip (PSL, dstep) : psl_ip (PSL, dstep);
PSL_command (PSL, "0 %d G ", dy);
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '+') { /* Superscript toggle */
ptr++;
super_on = !super_on;
if (super_on) {
if (last_sub) /* Just did a sub-script, must reset horizontal position */
PSL_command (PSL, "PSL_last_width neg 0 G "); /* Rewind position to orig baseline */
else if (supersub) /* Need to remember the width of the superscript */
PSL_command (PSL, "/PSL_last_width %d F%d (%s) sw def\n", psl_ip (PSL, small_size), font, ptr); /* Compute width of subscript text */
if (ptr[0]) strcpy (previous, ptr); /* Keep copy of possibly previous text */
}
else
last_sup = (last_sub || ptr[0] == 0) ? supersub : false; /* Only true when this is a possibility */
size = (super_on) ? small_size : fontsize;
dy = (super_on) ? psl_ip (PSL, ustep[kase]) : -psl_ip (PSL, ustep[kase]);
PSL_command (PSL, "0 %d G ", dy);
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '#') { /* Small caps toggle */
scaps_on = !scaps_on;
size = (scaps_on) ? scap_size : fontsize;
ptr++;
(scaps_on) ? psl_get_uppercase (piece, ptr) : (void) strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == ':') { /* Font size change */
size_on = !size_on;
ptr++;
if (ptr[0] == ':')
size = fontsize = orig_size;
else {
size = fontsize = atof (ptr);
while (*ptr != ':') ptr++;
}
small_size = size * PSL->current.subsupsize;
scap_size = size * PSL->current.scapssize;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == ';') { /* Color change */
color_on = !color_on;
ptr++;
while (*ptr != ';') ptr++;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '_') { /* Small caps toggle */
under_on = !under_on;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else { /* Not recognized or @@ for a single @ */
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
last_sub = last_sup = false;
}
if (strlen (piece) > 0) {
if (last_sub && last_sup) { /* May possibly need to move currentpoint a bit to the widest piece */
PSL_command (PSL, "/PSL_last_width PSL_last_width (%s) sw sub dup 0 lt {pop 0} if def\n", previous); /* Compute width of superscript text and see if we must move a bit */
PSL_command (PSL, "PSL_last_width 0 G "); /* Rewind position to orig baseline */
last_sub = last_sup = false;
}
if (ptr && composite) {
strcat (piece, ptr);
composite = false;
}
PSL_command (PSL, "%d F%d (%s) FP ", psl_ip (PSL, size), font, piece);
last_chr = ptr[strlen(piece)-1];
if (!super_on && (last_chr > 0 && last_chr < 255)) kase = (islower (last_chr)) ? PSL_LC : PSL_UC;
}
ptr = strtok_r (NULL, "@", &plast);
}
if (dim[0] == '-' && dim[1] == 'w')
PSL_command (PSL, "pathbbox N pop exch pop add U ");
else if (dim[0] == '-' && dim[1] == 'h')
PSL_command (PSL, "pathbbox N 4 1 roll pop pop pop U ");
else if (dim[0] == '-' && dim[1] == 'd')
PSL_command (PSL, "pathbbox N pop pop exch pop U ");
else if (dim[0] == '-' && dim[1] == 'H')
PSL_command (PSL, "pathbbox N exch pop exch sub exch pop U ");
else if (dim[0] == '-' && dim[1] == 'b')
PSL_command (PSL, "pathbbox N 4 1 roll exch pop add exch U ");
else
PSL_command (PSL, "pathbbox N /%s_h edef /%s_x1 edef /%s_d edef /%s_x0 edef /%s_w %s_x1 %s_x0 add def U\n",
dim, dim, dim, dim, dim, dim, dim);
PSL_free (tempstring);
PSL_free (piece);
PSL_free (piece2);
PSL_free (string);
if (sub_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Sub-scripting not terminated [%s]\n", text);
if (super_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Super-scripting not terminated [%s]\n", text);
if (scaps_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Small-caps not terminated [%s]\n", text);
if (symbol_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Symbol font change not terminated [%s]\n", text);
if (size_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font-size change not terminated [%s]\n", text);
if (color_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font-color change not terminated [%s]\n", text);
if (under_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Text underline not terminated [%s]\n", text);
return (sub_on|super_on|scaps_on|symbol_on|font_on|size_on|color_on|under_on);
}
int PSL_plottext (struct PSL_CTRL *PSL, double x, double y, double fontsize, char *text, double angle, int justify, int mode) {
/* General purpose text plotter for single line of text. For paragraphs, see PSL_plotparagraph.
* PSL_plottext positions and justifies the text string according to the parameters given.
* The adjustments requires knowledge of font metrics and characteristics; hence all such
* adjustments are passed on to the PostScript interpreter who will calculate the offsets.
* The arguments to PSL_plottext are as follows:
*
* x,y: location of string
* fontsize: fontsize in points. If negative, assume currentpoint is already set,
* else we use x, y to set a new currentpoint.
* text: text string to be plotted in the current color (set by PSL_setcolor).
* If NULL is given then we assume PSL_plottextbox has just been called.
* angle: angle between text baseline and the horizontal.
* justify: indicates where on the textstring the x,y point refers to, see fig below.
* If negative then we strip leading and trailing blanks from the text.
* 0 means no justification (already done separately).
* mode: 0 = normal text filled with solid color; 1 = draw outline of text using
* the current line width and color; the text is filled with the current fill
* (if set, otherwise no filling is taking place); 2 = no outline, but text fill
* is a pattern so we use the outline path and not the show operator;
* 3 = same as 1, except that half the outline width is plotted on the outside
* of the filled text, so none of the text font is obscured by the outline
* (If the text is not filled, 1 operates the same as 3).
*
* 9 10 11
* |----------------|
* 5 6 7
* |----------------|
* 1 2 3
*/
char *piece = NULL, *piece2 = NULL, *ptr = NULL, *string = NULL, previous[BUFSIZ] = {""}, *plast = NULL;
/* PS strings to be used dependent on "mode" */
const char *op[4] = {"Z", "false charpath fs", "false charpath fs", "false charpath V S U fs"};
/* PS strings to be used dependent on "justify". Empty strings added for unused values. */
const char *justcmd[12] = {"", "bl ", "bc ", "br ", "", "ml ", "mc ", "mr ", "", "tl ", "tc ", "tr "};
/* PS strings to be used dependent on "justify%4". Empty string added for unused value. */
const char *align[4] = {"0", "-2 div", "neg", ""};
int dy, i = 0, j, font, font2, x_just, y_just, upen, ugap;
int sub_on, super_on, scaps_on, symbol_on, font_on, size_on, color_on, under_on, old_font, n_uline, start_uline, stop_uline, last_chr, kase = PSL_LC;
bool last_sub = false, last_sup = false, supersub;
double orig_size, small_size, size, scap_size, ustep[2], dstep, last_rgb[4] = {0.0, 0.0, 0.0, 0.0};
if (fontsize == 0.0) return (PSL_NO_ERROR); /* Nothing to do if text has zero size */
if (fontsize > 0.0) { /* Set a new anchor point */
PSL->internal.ix = psl_ix (PSL, x);
PSL->internal.iy = psl_iy (PSL, y);
PSL_command (PSL, "%d %d M ", PSL->internal.ix, PSL->internal.iy);
}
else
fontsize = -fontsize;
psl_encodefont (PSL, PSL->current.font_no);
psl_putfont (PSL, fontsize);
if (text) {
if (strlen (text) >= (PSL_BUFSIZ-1)) { /* We gotta have some limit on how long a single string can be... */
PSL_message (PSL, PSL_MSG_ERROR, "Warning: text_item > %d long - text not plotted!\n", PSL_BUFSIZ);
return (PSL_BAD_TEXT);
}
if (justify < 0) { /* Strip leading and trailing blanks */
for (i = 0; text[i] == ' '; i++);
for (j = (int)strlen (text) - 1; text[j] == ' '; j--) text[j] = 0;
justify = -justify;
}
string = psl_prepare_text (PSL, &text[i]); /* Check for escape sequences */
}
else {
justify = abs (justify); /* Just make sure since the stripping has already occurred */
string = psl_prepare_text (PSL, PSL->current.string); /* Check for escape sequences */
}
if (angle != 0.0) PSL_command (PSL, "V %.12g R ", angle);
if (!strchr (string, '@')) { /* Plain text ... this is going to be easy! */
PSL_command (PSL, "(%s) %s%s", string, justcmd[justify], op[mode]);
if (mode == 1) PSL_command (PSL, " S");
else if (mode > 1) PSL_command (PSL, " N");
PSL_command (PSL, (angle != 0.0 ) ? " U\n" : "\n");
PSL_free (string);
return (PSL_NO_ERROR);
}
psl_got_composite_fontswitch (PSL, string);
/* For more difficult cases we use the PSL_deftextdim machinery to get the size of the font box */
if (justify > 1) {
x_just = (justify + 3) % 4; /* Gives 0 (left justify, i.e., do nothing), 1 (center), or 2 (right justify) */
y_just = justify / 4; /* Gives 0 (bottom justify, i.e., do nothing), 1 (middle), or 2 (top justify) */
if (x_just && y_just) {
PSL_deftextdim (PSL, "-b", fontsize, string); /* Get width and height of string */
PSL_command (PSL, "%s exch %s exch G\n", align[y_just], align[x_just]);
}
else if (x_just) {
PSL_deftextdim (PSL, "-w", fontsize, string); /* Get width of string */
PSL_command (PSL, "%s 0 G\n", align[x_just]);
}
else {
PSL_deftextdim (PSL, "-h", fontsize, string); /* Get height of string */
PSL_command (PSL, "%s 0 exch G\n", align[y_just]);
}
}
/* Here, we have special request for Symbol font and sub/superscript
* @~ toggles between Symbol font and default font
* @%<fontno>% switches font number <fontno>; give @%% to reset
* @- toggles between subscript and normal text
* @+ toggles between superscript and normal text
* @# toggles between Small caps and normal text
* @! will make a composite character of next two characters
* Use @@ to print a single @
*/
piece = PSL_memory (PSL, NULL, 2 * PSL_BUFSIZ, char);
piece2 = PSL_memory (PSL, NULL, PSL_BUFSIZ, char);
/* Now we can start printing text items */
supersub = (strstr (string, "@-@+") || strstr (string, "@+@-")); /* Check for sub/super combo */
ptr = strtok_r (string, "@", &plast);
if(string[0] != '@') { /* String has @ but not at start - must deal with first piece explicitly */
PSL_command (PSL, "(%s) %s\n", ptr, op[mode]);
last_chr = ptr[strlen(ptr)-1];
ptr = strtok_r (NULL, "@", &plast);
kase = ((last_chr > 0 && last_chr < 255) && islower (last_chr)) ? PSL_LC : PSL_UC;
}
font = old_font = PSL->current.font_no;
sub_on = super_on = scaps_on = symbol_on = font_on = size_on = color_on = under_on = false;
size = orig_size = fontsize;
small_size = size * PSL->current.subsupsize;
scap_size = size * PSL->current.scapssize;
ustep[PSL_LC] = PSL->current.sup_up[PSL_LC] * size; /* Super-script baseline raised by given fraction of font size for lower case*/
ustep[PSL_UC] = PSL->current.sup_up[PSL_UC] * size; /* Super-script baseline raised by given fraction of font size for upper case */
dstep = PSL->current.sub_down * size;
upen = psl_ip (PSL, 0.025 * size); /* Underline pen thickness */
ugap = psl_ip (PSL, 0.075 * size); /* Underline shift */
start_uline = stop_uline = n_uline = 0;
while (ptr) { /* Loop over all the sub-text items separated by escape characters */
if (ptr[0] == '!') { /* Composite character */
ptr++;
if (ptr[0] == '\\') { /* Octal code */
strncpy (piece, ptr, 4U);
piece[4] = 0;
ptr += 4;
}
else {
piece[0] = ptr[0]; piece[1] = 0;
ptr++;
}
/* Watch out for escaped font change before 2nd character */
if (ptr[0] == PSL_ASCII_ES) { /* Have a font change on either side of 2nd character */
ptr++;
if (ptr[0] == '~') /* Toggle the symbol font */
font2 = PSL_SYMBOL_FONT;
else { /* Font switching with @%font% ...@%% */
ptr++;
font2 = psl_getfont (PSL, ptr);
psl_encodefont (PSL, font);
while (*ptr != '%') ptr++;
}
ptr++; /* Now at start of 2nd character */
}
else
font2 = font;
if (ptr[0] == '\\') { /* Octal code again */
strncpy (piece2, ptr, 4U);
piece2[4] = 0;
ptr += 4;
}
else {
piece2[0] = ptr[0]; piece2[1] = 0;
ptr++;
}
if (font2 != font) { /* Skip past the font switcher */
ptr++; /* Step over the implicit @ (ascii 27) */
if (font2 == PSL_SYMBOL_FONT)
ptr++; /* Move past the ~ */
else
ptr += 2; /* Move past the %% */
}
/* Try to center justify these two character to make a composite character - may not be right */
PSL_command (PSL, "%d F%d (%s) E exch %s -2 div dup 0 G\n", psl_ip (PSL, size), font2, piece2, op[mode]);
if (font2 != font) /* Must switch font in the call */
PSL_command (PSL, "%d F%d\n", psl_ip (PSL, size), font);
PSL_command (PSL, "(%s) E -2 div dup 0 G exch %s sub neg dup 0 lt {pop 0} if 0 G\n", piece, op[mode]);
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '~') { /* Symbol font */
symbol_on = !symbol_on;
font = (font == PSL_SYMBOL_FONT) ? old_font : PSL_SYMBOL_FONT;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '%') { /* Switch font option */
font_on = !font_on;
ptr++;
if (*ptr == '%')
font = old_font;
else if (*ptr) {
old_font = font;
font = psl_getfont (PSL, ptr);
psl_encodefont (PSL, font);
}
while (*ptr != '%') ptr++;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '-') { /* Subscript toggle */
ptr++;
sub_on = !sub_on;
if (sub_on) {
if (last_sup) /* Just did a super-script, must reset horizontal position */
PSL_command (PSL, "PSL_last_width neg 0 G "); /* Rewind position to orig baseline */
else if (supersub) /* Need to remember the width of the subscript */
PSL_command (PSL, "/PSL_last_width %d F%d (%s) sw def\n", psl_ip (PSL, small_size), font, ptr); /* Compute width of subscript text */
if (ptr[0]) strcpy (previous, ptr); /* Keep copy of possibly previous text */
}
else
last_sub = (last_sup || ptr[0] == 0) ? supersub : false; /* Only true when this is a possibility */
size = (sub_on) ? small_size : fontsize;
dy = (sub_on) ? -psl_ip (PSL, dstep) : psl_ip (PSL, dstep);
PSL_command (PSL, "0 %d G ", dy);
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '+') { /* Superscript toggle */
ptr++;
super_on = !super_on;
if (super_on) {
if (last_sub) /* Just did a sub-script, must reset horizontal position */
PSL_command (PSL, "PSL_last_width neg 0 G "); /* Rewind position to orig baseline */
else if (supersub) /* Need to remember the width of the superscript */
PSL_command (PSL, "/PSL_last_width %d F%d (%s) sw def\n", psl_ip (PSL, small_size), font, ptr); /* Compute width of subscript text */
if (ptr[0]) strcpy (previous, ptr); /* Keep copy of possibly previous text */
}
else
last_sup = (last_sub || ptr[0] == 0) ? supersub : false; /* Only true when this is a possibility */
size = (super_on) ? small_size : fontsize;
dy = (super_on) ? psl_ip (PSL, ustep[kase]) : -psl_ip (PSL, ustep[kase]);
PSL_command (PSL, "0 %d G ", dy);
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '#') { /* Small caps */
scaps_on = !scaps_on;
size = (scaps_on) ? scap_size : fontsize;
ptr++;
(scaps_on) ? psl_get_uppercase (piece, ptr) : (void) strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == ':') { /* Font size change */
size_on = !size_on;
ptr++;
if (ptr[0] == ':') /* Reset size */
size = fontsize = orig_size;
else {
size = fontsize = atof (ptr);
while (*ptr != ':') ptr++;
}
small_size = size * PSL->current.subsupsize; scap_size = size * PSL->current.scapssize;
ustep[PSL_LC] = PSL->current.sup_up[PSL_LC] * size;
ustep[PSL_UC] = PSL->current.sup_up[PSL_UC] * size;
dstep = PSL->current.sub_down * size;
upen = psl_ip (PSL, 0.025 * size); /* Underline pen thickness */
ugap = psl_ip (PSL, 0.075 * size); /* Underline shift */
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == ';') { /* Font color change. r/g/b in 0-255 */
int n_scan, k, error = false;
double rgb[4];
color_on = !color_on;
ptr++;
if (ptr[0] == ';') { /* Reset color to previous value */
PSL_command (PSL, "%s ", psl_putcolor (PSL, last_rgb, 0));
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FONT], last_rgb); /* Update present color */
}
else {
char *s = NULL;
j = 0;
while (ptr[j] != ';') j++;
ptr[j] = 0;
if ((s = strchr (ptr, '@')) != NULL) { /* Also gave transparency */
rgb[3] = atof (&s[1]) / 100.0;
s[0] = 0;
}
else
rgb[3] = 0.0;
n_scan = sscanf (ptr, "%lg/%lg/%lg", &rgb[0], &rgb[1], &rgb[2]);
if (n_scan == 1) { /* Got gray shade */
rgb[0] /= 255.0; /* Normalize to 0-1 */
rgb[1] = rgb[2] = rgb[0];
if (rgb[0] < 0.0 || rgb[0] > 1.0) error++;
}
else if (n_scan == 3) { /* Got r/g/b */
for (k = 0; k < 3; k++) {
rgb[k] /= 255.0; /* Normalize to 0-1 */
if (rgb[k] < 0.0 || rgb[k] > 1.0) error++;
}
}
else { /* Got crap */
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Bad color change (%s) - ignored\n", ptr);
error++;
}
ptr[j] = ';';
if (s) s[0] = '@';
while (*ptr != ';') ptr++;
if (!error) {
PSL_command (PSL, "%s ", psl_putcolor (PSL, rgb, 0));
PSL_rgb_copy (last_rgb, PSL->current.rgb[PSL_IS_FONT]); /* Save previous color */
PSL_rgb_copy (PSL->current.rgb[PSL_IS_FONT], rgb); /* Update present color */
}
}
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else if (ptr[0] == '_') { /* Toggle underline */
under_on = !under_on;
n_uline++;
if (n_uline%2)
start_uline = true;
else
stop_uline = true;
ptr++;
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
}
else
strncpy (piece, ptr, 2 * PSL_BUFSIZ);
if (start_uline) PSL_command (PSL, "currentpoint /y0_u edef /x0_u edef\n");
if (stop_uline) PSL_command (PSL, "V %d W currentpoint pop /x1_u edef x0_u y0_u %d sub M x1_u x0_u sub 0 D S x1_u y0_u M U\n", upen, ugap);
start_uline = stop_uline = false;
if (strlen (piece) > 0) {
if (last_sub && last_sup) { /* May possibly need to move currentpoint a bit to the widest piece */
PSL_command (PSL, "/PSL_last_width PSL_last_width (%s) sw sub dup 0 lt {pop 0} if def\n", previous); /* Compute width of superscript text and see if we must move a bit */
PSL_command (PSL, "PSL_last_width 0 G "); /* Rewind position to orig baseline */
last_sub = last_sup = false;
}
PSL_command (PSL, "%d F%d (%s) %s\n", psl_ip (PSL, size), font, piece, op[mode]);
last_chr = ptr[strlen(piece)-1];
if (!super_on && (last_chr > 0 && last_chr < 255)) kase = (islower(last_chr)) ? PSL_LC : PSL_UC;
}
ptr = strtok_r (NULL, "@", &plast);
}
if (mode == 1) PSL_command (PSL, "S\n");
else if (mode > 1) PSL_command (PSL, "N\n");
if (angle != 0.0) PSL_command (PSL, "U\n");
PSL->current.fontsize = 0.0; /* Force reset */
PSL_free (piece);
PSL_free (piece2);
PSL_free (string);
if (sub_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Sub-scripting not terminated [%s]\n", text);
if (super_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Super-scripting not terminated [%s]\n", text);
if (scaps_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Small-caps not terminated [%s]\n", text);
if (symbol_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Symbol font change not terminated [%s]\n", text);
if (size_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font-size change not terminated [%s]\n", text);
if (color_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Font-color change not terminated [%s]\n", text);
if (under_on) PSL_message (PSL, PSL_MSG_ERROR, "Warning: Text underline not terminated [%s]\n", text);
return (sub_on|super_on|scaps_on|symbol_on|font_on|size_on|color_on|under_on);
}
int PSL_plottextline (struct PSL_CTRL *PSL, double x[], double y[], int np[], int n_segments, void *arg1, void *arg2, char *label[], double angle[], int nlabel_per_seg[], double fontsize, int justify, double offset[], int mode) {
/* Placing text along lines, setting up text clippaths, and drawing the lines */
/* x,y Array containing the concatenated label path of all segments
* np Array containing length of each label path segment in concatenated path
* n_segments Number of line segments
* arg1, arg2 These are pointers to two arrays, depending on whether we have curved or straight baselines:
* If curved baselines then
* arg1 = node Index into x/y array of label plot positions per segment (i.e., start from 0 for each new segment)
* arg2 = NULL Not used
* If straight text baselines then
* arg1 = xp Array of x coordinates of where labels will be placed
* arg2 = yp Array of y coordinates of where labels will be placed
* label Array of text labels
* angle Text angle for each label
* nlabel_per_seg Array containing number of labels per segment
* fontsize Constant fontsize of all label texts [font use is the current font set with PSL_setfont]
* just Justification of text relative to label coordinates [constant for all labels]
* offset Clearances between text and textbox [constant]
* mode = 1: We place all the PSL variables required to use the text for clipping of painting.
* = 2: We paint the text that is stored in the PSL variables.
* = 4: We use the text stored in the PSL variables to set up a clip path. Clipping is turned ON.
* = 8: We draw the paths.
* = 16: We turn clip path OFF.
* = 32: We want rounded rectangles instead of straight rectangular boxes [straight text only].
* = 64: Typeset text along path [straight text].
* = 128: Fill box
* = 256: Draw box
* = 512: Fill & outline font, fill first, then outline
* = 1024: Fill & outline font, outline first, then fill
*/
bool curved = ((mode & PSL_TXT_CURVED) == PSL_TXT_CURVED); /* True if baseline must follow line path */
int extras, kind = (curved) ? 1 : 0;
char *name[2] = {"straight", "curved"}, *ext[2] = {"clip", "labels"};
if (mode & 1) { /* Lay down PSL variables */
int i = 0, n_labels = 0;
if (n_segments <= 0) return (PSL_NO_ERROR); /* Nothing to do yet */
if (fontsize == 0.0) return (PSL_NO_ERROR); /* Nothing to do if text has zero size */
if (justify < 0) psl_remove_spaces (label, n_segments, nlabel_per_seg); /* Strip leading and trailing spaces */
for (i = 0; i < n_segments; i++) n_labels += nlabel_per_seg[i]; /* Count number of labels */
/* Set clearance and text height parameters */
PSL_comment (PSL, "Set constants for textbox clearance:\n");
PSL_defunits (PSL, "PSL_gap_x", offset[0]); /* Set text clearance in x direction */
PSL_defunits (PSL, "PSL_gap_y", offset[1]); /* Set text clearance in y direction */
/* Set PSL arrays and constants for this set of lines and labels */
if (curved) /* Set PSL array for curved baselines [also used to draw lines if selected] */
psl_set_reducedpath_arrays (PSL, x, y, n_segments, np, nlabel_per_seg, arg1);
psl_set_attr_arrays (PSL, (curved) ? arg1 : NULL, angle, label, n_segments, nlabel_per_seg);
psl_set_int_array (PSL, "label_n", nlabel_per_seg, n_segments);
PSL_definteger (PSL, "PSL_n_paths", n_segments);
PSL_definteger (PSL, "PSL_n_labels", n_labels);
if (!curved) /* Set PSL array for text location with straight baselines */
psl_set_path_arrays (PSL, "txt", arg1, arg2, 1, &n_labels);
PSL_comment (PSL, "Estimate text heights:\n");
PSL_command (PSL, "PSL_set_label_heights\n"); /* Estimate text heights */
}
extras = mode & (PSL_TXT_ROUND | PSL_TXT_FILLBOX | PSL_TXT_DRAWBOX | PSL_TXT_DRAWBOX | PSL_TXT_FILLPEN | PSL_TXT_PENFILL); /* This just gets these bit settings, if present */
if (mode & PSL_TXT_SHOW) { /* Lay down visible text */
PSL_comment (PSL, "Display the texts:\n");
PSL_command (PSL, "%d PSL_%s_path_labels\n", PSL_TXT_SHOW|extras, name[kind]);
}
if (mode & PSL_TXT_CLIP_ON) { /* Set up text clip paths and turn clipping ON */
PSL_comment (PSL, "Set up text clippath and turn clipping ON:\n");
if (mode & PSL_TXT_CLIP_OFF) PSL_command (PSL, "V\n");
PSL_command (PSL, "%d PSL_%s_path_%s\n", PSL_TXT_CLIP_ON|extras, name[kind], ext[kind]);
PSL->current.nclip++; /* Increment clip level */
}
if (mode & PSL_TXT_DRAW) { /* Draw the lines whose coordinates are in the PSL already */
PSL_comment (PSL, "Draw the text line segments:\n");
if (curved) /* The coordinates are in the PSL already so use PLS function */
PSL_command (PSL, "PSL_draw_path_lines N\n");
else { /* Must draw lines here instead with PSL_plotline */
int k, offset = 0;
for (k = 0; k < n_segments; k++) { /* Draw each segment line */
PSL_command (PSL, "PSL_path_pen %d get cvx exec\n", k); /* Set this segment's pen */
PSL_plotline (PSL, &x[offset], &y[offset], np[k], PSL_MOVE|PSL_STROKE);
offset += np[k];
}
}
}
PSL->current.font_no = -1; /* To force setting of next font since the PSL stuff might have changed it */
if (mode & PSL_TXT_CLIP_OFF) { /* Turn OFF Clipping and bail */
PSL_comment (PSL, "Turn label clipping OFF:\n");
PSL_endclipping (PSL, 1); /* Decrease clipping by one level */
PSL_command (PSL, "U\n");
}
return (PSL_NO_ERROR);
}
int PSL_setorigin (struct PSL_CTRL *PSL, double x, double y, double angle, int mode) {
/* mode = PSL_FWD: Translate origin, then rotate axes.
* mode = PSL_INV: Rotate axes, then translate origin. */
if (mode != PSL_FWD && !PSL_eq(angle,0.0)) PSL_command (PSL, "%.12g R\n", angle);
if (!PSL_eq(x,0.0) || !PSL_eq(y,0.0)) PSL_command (PSL, "%d %d T\n", psl_ix (PSL, x), psl_iy (PSL, y));
if (mode == PSL_FWD && !PSL_eq(angle,0.0)) PSL_command (PSL, "%.12g R\n", angle);
return (PSL_NO_ERROR);
}
int PSL_setparagraph (struct PSL_CTRL *PSL, double line_space, double par_width, int par_just) {
/* Initializes PSL parameters used to typeset paragraphs with PSL_plotparagraph */
if (par_just < PSL_BL || par_just > PSL_JUST) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Bad paragraph justification (%d)\n", par_just);
return (PSL_BAD_JUST);
}
if (line_space <= 0.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Bad line spacing (%g)\n", line_space);
return (PSL_BAD_VALUE);
}
if (par_width <= 0.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Bad paragraph width (%g)\n", par_width);
return (PSL_BAD_VALUE);
}
PSL_comment (PSL, "PSL_setparagraph settings:\n");
PSL_defunits (PSL, "PSL_linespace", line_space);
PSL_defunits (PSL, "PSL_parwidth", par_width);
PSL_command (PSL, "/PSL_parjust %d def\n", par_just);
return (PSL_NO_ERROR);
}
int PSL_plotparagraphbox (struct PSL_CTRL *PSL, double x, double y, double fontsize, char *paragraph, double angle, int justify, double offset[], int mode) {
/* Determines the text box that fits the given typeset paragraph and fills/strokes with current fill/pen.
* mode = 0 (PSL_RECT_STRAIGHT), 1 (PSL_RECT_ROUNDED), 2 (PSL_RECT_CONVEX) or 3 (PSL_RECT_CONCAVE).
*/
int error = 0;
if (offset[0] < 0.0 || offset[1] < 0.0) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Bad paragraphbox text offset (%g/%g)\n", offset[0], offset[1]);
return (PSL_BAD_VALUE);
}
if (mode < PSL_RECT_STRAIGHT || mode > PSL_RECT_CONCAVE) {
PSL_message (PSL, PSL_MSG_ERROR, "Warning: Bad paragraphbox mode (%d)\n", mode);
return (PSL_BAD_VALUE);
}
if ((error = psl_paragraphprocess (PSL, y, fontsize, paragraph)) != PSL_NO_ERROR) return (error);
PSL_command (PSL, "V ");
PSL_setorigin (PSL, x, y, angle, PSL_FWD); /* To original point */
/* Do the relative horizontal justification */
PSL_defunits (PSL, "PSL_xgap", offset[0]);
PSL_defunits (PSL, "PSL_ygap", offset[1]);
PSL_command (PSL, "0 0 M\n0 PSL_textjustifier");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Just get paragraph height\n" : "\n");
/* Adjust origin for box justification */
PSL_command (PSL, "/PSL_justify %d def\n", justify);
PSL_command (PSL, "/PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def\n");
if (justify > 8) /* Top row */
PSL_command (PSL, "/PSL_y0 0 def\n");
else if (justify > 4) /* Middle row */
PSL_command (PSL, "/PSL_y0 PSL_parheight 2 div def\n");
else /* Bottom row */
PSL_command (PSL, "/PSL_y0 PSL_parheight def\n");
PSL_command (PSL, "/PSL_txt_y0 PSL_top neg def\n");
/* Make upper left textbox corner the origin */
PSL_command (PSL, "PSL_x0 PSL_y0 T\n");
PSL_comment (PSL, "Start PSL box beneath text block:\n");
if (mode == PSL_RECT_CONVEX) { /* Create convex box path */
PSL_command (PSL, "/PSL_h PSL_parheight 2 div PSL_ygap add def\n");
PSL_command (PSL, "/PSL_w PSL_parwidth 2 div PSL_xgap add def\n");
PSL_command (PSL, "/PSL_rx PSL_w PSL_w mul PSL_xgap PSL_xgap mul add 2 PSL_xgap mul div def\n");
PSL_command (PSL, "/PSL_ry PSL_h PSL_h mul PSL_ygap PSL_ygap mul add 2 PSL_ygap mul div def\n");
PSL_command (PSL, "/PSL_ax PSL_w PSL_rx PSL_xgap sub atan def\n");
PSL_command (PSL, "/PSL_ay PSL_h PSL_ry PSL_ygap sub atan def\n");
PSL_comment (PSL, "PSL_path:\n");
PSL_command (PSL, "PSL_xgap neg PSL_ygap M\n");
PSL_command (PSL, "PSL_ry PSL_xgap 2 mul sub PSL_parheight 2 div neg PSL_ry 180 PSL_ay sub 180 PSL_ay add arc\n");
PSL_command (PSL, "PSL_parwidth 2 div PSL_parheight 2 PSL_ygap mul add PSL_rx sub neg PSL_rx 270 PSL_ax sub 270 PSL_ax add arc\n");
PSL_command (PSL, "PSL_parwidth PSL_xgap 2 mul add PSL_ry sub PSL_parheight 2 div neg PSL_ry PSL_ay dup neg exch arc\n");
PSL_command (PSL, "PSL_parwidth 2 div PSL_ygap 2 mul PSL_rx sub PSL_rx 90 PSL_ax sub 90 PSL_ax add arc\n");
}
else if (mode == PSL_RECT_CONCAVE) { /* Create concave box path */
PSL_command (PSL, "/PSL_h PSL_parheight 2 div PSL_ygap 2 mul add def\n");
PSL_command (PSL, "/PSL_w PSL_parwidth 2 div PSL_xgap 2 mul add def\n");
PSL_command (PSL, "/PSL_rx PSL_w PSL_w mul PSL_xgap PSL_xgap mul add 2 PSL_xgap mul div def\n");
PSL_command (PSL, "/PSL_ry PSL_h PSL_h mul PSL_ygap PSL_ygap mul add 2 PSL_ygap mul div def\n");
PSL_command (PSL, "/PSL_ax PSL_w PSL_rx PSL_xgap sub atan def\n");
PSL_command (PSL, "/PSL_ay PSL_h PSL_ry PSL_ygap sub atan def\n");
PSL_comment (PSL, "PSL_path:\n");
PSL_command (PSL, "PSL_xgap 2 mul neg PSL_ygap 2 mul M\n");
PSL_command (PSL, "PSL_xgap PSL_ry add neg PSL_parheight 2 div neg PSL_ry PSL_ay dup neg arcn\n");
PSL_command (PSL, "PSL_parwidth 2 div PSL_parheight PSL_ygap add PSL_rx add neg PSL_rx 90 PSL_ax add 90 PSL_ax sub arcn\n");
PSL_command (PSL, "PSL_parwidth PSL_xgap add PSL_ry add PSL_parheight 2 div neg PSL_ry 180 PSL_ay add 180 PSL_ay sub arcn\n");
PSL_command (PSL, "PSL_parwidth 2 div PSL_ygap PSL_rx add PSL_rx 270 PSL_ax add 270 PSL_ax sub arcn\n");
}
else if (mode == PSL_RECT_ROUNDED) { /* Create rounded box path */
PSL_command (PSL, "/XL PSL_xgap neg def\n");
PSL_command (PSL, "/XR PSL_parwidth PSL_xgap add def\n");
PSL_command (PSL, "/YT PSL_ygap def\n");
PSL_command (PSL, "/YB PSL_parheight PSL_ygap add neg def\n");
PSL_command (PSL, "/PSL_r PSL_xgap PSL_ygap lt {PSL_xgap} {PSL_ygap} ifelse def\n");
PSL_comment (PSL, "PSL_path:\n");
PSL_command (PSL, "XL PSL_r add YB M\n");
PSL_command (PSL, "XR YB XR YT PSL_r arct XR YT XL YT PSL_r arct\n");
PSL_command (PSL, "XL YT XL YB PSL_r arct XL YB XR YB PSL_r arct\n");
}
else { /* PSL_RECT_STRAIGHT */
PSL_command (PSL, "/XL PSL_xgap neg def\n");
PSL_command (PSL, "/XR PSL_parwidth PSL_xgap add def\n");
PSL_command (PSL, "/YT PSL_ygap def\n");
PSL_command (PSL, "/YB PSL_parheight PSL_ygap add neg def\n");
PSL_comment (PSL, "PSL_path:\n");
PSL_command (PSL, "XL YT M XL YB L XR YB L XR YT L\n");
}
PSL_command (PSL, "FO U\n");
PSL_comment (PSL, "End PSL box beneath text block:\n");
return (PSL_NO_ERROR);
}
int PSL_plotparagraph (struct PSL_CTRL *PSL, double x, double y, double fontsize, char *paragraph, double angle, int justify) {
/* Typeset one or more paragraphs. Separate paragraphs by adding \r to end of last word in a paragraph.
* To lay down a text box first, see PSL_plotparagraphbox. */
int error = 0;
if (fontsize == 0.0) return (PSL_NO_ERROR); /* Nothing to do if text has zero size */
/* If paragraph is NULL then PSL_plotparagraphbox has been called so we don't need to write the paragraph info to the PS file */
if (paragraph && (error = psl_paragraphprocess (PSL, y, fontsize, paragraph)) != PSL_NO_ERROR) return (error);
PSL_command (PSL, "V ");
PSL_setorigin (PSL, x, y, angle, PSL_FWD); /* To original point */
/* Do the relative horizontal justification */
PSL_command (PSL, "0 0 M\n0 PSL_textjustifier");
(PSL->internal.comments) ? PSL_command (PSL, "\t%% Just get paragraph height\n") : PSL_command (PSL, "\n");
/* Adjust origin for box justification */
PSL_command (PSL, "/PSL_justify %d def\n", justify);
PSL_command (PSL, "/PSL_x0 PSL_parwidth PSL_justify 1 sub 4 mod 0.5 mul neg mul def\n");
if (justify > 8) /* Top row */
PSL_command (PSL, "/PSL_y0 0 def\n");
else if (justify > 4) /* Middle row */
PSL_command (PSL, "/PSL_y0 PSL_parheight 2 div def\n");
else /* Bottom row */
PSL_command (PSL, "/PSL_y0 PSL_parheight def\n");
PSL_command (PSL, "/PSL_txt_y0 PSL_top neg def\n");
/* Make upper left textbox corner the origin */
PSL_command (PSL, "PSL_x0 PSL_y0 T\n");
/* Adjust origin so 0,0 is lower left corner of first character on baseline */
PSL_command (PSL, "0 PSL_txt_y0 T");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Move to col 0 on first baseline\n" : "\n");
PSL_command (PSL, "0 0 M\n1 PSL_textjustifier U");
PSL_command (PSL, (PSL->internal.comments) ? "\t%% Place the paragraph\n" : "\n");
return (PSL_NO_ERROR);
}
int PSL_defunits (struct PSL_CTRL *PSL, const char *param, double value) {
PSL_command (PSL, "/%s %d def\n", param, psl_iz (PSL, value));
return (PSL_NO_ERROR);
}
int PSL_defpoints (struct PSL_CTRL *PSL, const char *param, double fontsize) {
PSL_command (PSL, "/%s %d def\n", param, psl_ip (PSL, fontsize));
return (PSL_NO_ERROR);
}
int PSL_definteger (struct PSL_CTRL *PSL, const char *param, int value) {
PSL_command (PSL, "/%s %d def\n", param, value);
return (PSL_NO_ERROR);
}
int PSL_defpen (struct PSL_CTRL *PSL, const char *param, double linewidth, char *style, double offset, double rgb[]) {
/* Function to set line pen attributes. We force any transparency change since this is all inside a gsave/hrestore */
PSL_command (PSL, "/%s {%d W %s %s} def\n", param, psl_ip (PSL, linewidth), psl_putcolor (PSL, rgb, 1), psl_putdash (PSL, style, offset));
return (PSL_NO_ERROR);
}
int PSL_defcolor (struct PSL_CTRL *PSL, const char *param, double rgb[]) {
PSL_command (PSL, "/%s {%s} def\n", param, psl_putcolor (PSL, rgb, 0));
return (PSL_NO_ERROR);
}
/* Helpers to make sure fp is closed and tmp_file is removed on return. */
#define Return1(x) {code = x; fclose (fp); return (code);}
#define Return2(x) {code = x; fclose (fp); remove (tmp_file); return (code);}
int PSL_loadeps (struct PSL_CTRL *PSL, char *file, struct imageinfo *h, unsigned char **picture) {
/* PSL_loadeps reads an Encapsulated PostScript file, If picture == NULL we just return h. */
int n, p, llx, lly, trx, try, BLOCKSIZE=4096;
int32_t value;
unsigned char *buffer = NULL;
FILE *fp = NULL;
/* Open PostScript file in binary mode; see below for reverting on Windows for gets reads */
if ((fp = fopen (file, "rb")) == NULL) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Cannot open image file %s!\n", file);
return (PSL_READ_FAILURE);
}
/* Check magic key */
if (fread (&value, sizeof (int32_t), 1, fp) != 1) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Failure reading EPS magic key from %s\n", file);
fclose (fp);
return (-1);
}
#ifndef WORDS_BIGENDIAN
value = bswap32 (value);
#endif
if (value != EPS_MAGIC) {
PSL_message (PSL, PSL_MSG_ERROR, "Error: Could not find EPS magic key in %s\n", file);
fclose (fp);
return (-1);
}
h->magic = (int)value;
/* Scan for BoundingBox */
#ifdef _WIN32
/* Reset I/O to text mode since we are using gets in psl_get_boundingbox */
if ( _setmode(_fileno(stdin), _O_TEXT) == -1 ) {
PSL_message (PSL, PSL_MSG_WARNING, "Could not set text mode for %s.\n", file);
return 0;
}
#endif
psl_get_boundingbox (PSL, fp, &llx, &lly, &trx, &try, &h->llx, &h->lly, &h->trx, &h->try);
/* Fill header struct with appropriate values */
h->magic = EPS_MAGIC;
h->width = trx - llx;
h->height = try - lly;
h->depth = 0;
h->length = 0; /* Not read yet */
h->type = RT_EPS;
h->maptype = RMT_NONE;
h->maplength = 0;
h->xorigin = llx;
h->yorigin = lly;
if (picture == NULL) {
fclose (fp);
return (0); /* Just wanted dimensions */
}
/* Rewind and load into buffer */
n=0;
fseek (fp, (off_t)0, SEEK_SET);
buffer = PSL_memory (PSL, NULL, BLOCKSIZE, unsigned char);
while ((p = (int)fread ((unsigned char *)buffer + n, 1U, (size_t)BLOCKSIZE, fp)) == BLOCKSIZE) {
n+=BLOCKSIZE;
buffer = PSL_memory (PSL, buffer, n+BLOCKSIZE, unsigned char);
}
fclose (fp);
n += p;
buffer = PSL_memory (PSL, buffer, n, unsigned char);
/* Now set length */
h->length = n;
*picture = buffer;
return (0);
}
/* Due to the DLL boundary cross problem on Windows we are forced to have the following, otherwise
defined as macros, implemented as functions. However, macros proved to be problematic too
on Unixes, so now we have functions only. */
int PSL_command (struct PSL_CTRL *C, const char *format, ...) {
va_list args;
va_start (args, format);
if (C->internal.memory) { /* Send command to memory buffer */
char tmp_buffer[4096] = {""}; /* Have to use this large array because sometimes we get the char encoding array, which is large. */
size_t len = vsnprintf (tmp_buffer, 4096, format, args);
psl_prepare_buffer (C, len);
C->internal.buffer[C->internal.n] = '\0'; /* Play safe before the strcat of next line. Otherwise trash in the middle may occur */
strncat (&(C->internal.buffer[C->internal.n]), tmp_buffer, len);
C->internal.n += len;
}
else /* Write command to stream */
vfprintf (C->internal.fp, format, args);
va_end (args);
return (0);
}
int PSL_comment (struct PSL_CTRL *C, const char *format, ...) {
va_list args;
if (!C->internal.comments) return (0);
va_start (args, format);
if (C->internal.memory) { /* Send comments to memory buffer */
char tmp_buffer[PSL_BUFSIZ] = {""};
size_t len = vsnprintf (tmp_buffer, PSL_BUFSIZ, format, args);
psl_prepare_buffer (C, len + 6); /* The string plus the leading 4 and trailing 2 chars */
strncat (&(C->internal.buffer[C->internal.n]), "%\n% ", 4U);
C->internal.n += 4;
strncat (&(C->internal.buffer[C->internal.n]), tmp_buffer, len);
C->internal.n += len;
strncat (&(C->internal.buffer[C->internal.n]), "%\n", 2U);
C->internal.n += 2;
}
else { /* Write comments to stream */
fprintf (C->internal.fp, "%%\n%% ");
vfprintf (C->internal.fp, format, args);
fprintf (C->internal.fp, "%%\n");
}
va_end (args);
return (0);
}
int PSL_initerr (struct PSL_CTRL *C, const char *format, ...) {
va_list args;
va_start (args, format);
vfprintf (C->init.err, format, args);
va_end (args);
return (0);
}
int PSL_message (struct PSL_CTRL *C, int level, const char *format, ...) {
va_list args;
FILE *fp = (C == NULL) ? stderr : C->init.err;
if (C && level > C->internal.verbose) return (0);
#ifdef DEBUG
fprintf (fp, "PSL:%s:%d: ", __FILE__, __LINE__);
#else
fprintf (fp, "PSL: ");
#endif
va_start (args, format);
vfprintf (fp, format, args);
va_end (args);
return (0);
}
FILE *PSL_fopen (struct PSL_CTRL *C, char *file, char *mode) {
if (C->internal.fp == NULL) { /* Open the plot file unless fp already set */
if ((C->internal.fp = fopen (file, mode)) == NULL) {
PSL_message (C, PSL_MSG_ERROR, "PSL_fopen error: Unable to open file %s with mode %s!\n", file, mode);
}
}
return (C->internal.fp);
}
int PSL_fclose (struct PSL_CTRL *C) {
/* Close except if stdout */
int err = 0;
if (C->internal.fp && C->internal.fp != stdout)
err = fclose (C->internal.fp);
C->internal.fp = NULL;
return (err);
}
#ifndef HAVE_RINT
#include "s_rint.c"
#endif
|