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
|
/*
GRAPH.C
Define interactive graphics interface using Gist graphics package.
$Id: graph.c,v 1.1 1993/08/27 18:32:09 munro Exp munro $
*/
/* Copyright (c) 1994. The Regents of the University of California.
All rights reserved. */
#include "gist.h"
#include "hlevel.h"
#ifndef NO_XLIB
#include "dispas.h"
#endif
/* primitive allowance for other non-X windows systems */
#ifdef DISPATCH_FILE
#include DISPATCH_FILE
#endif
#ifndef DISPLAY_ENGINE
#define DISPLAY_ENGINE GpFXEngine
#endif
#ifndef DISPLAY_SET_HANDLER
#define DISPLAY_SET_HANDLER GhSetXHandler
#endif
#ifdef NO_XLIB
#define NO_MOUSE
#else
#ifndef NO_MOUSE
#ifndef DISPLAY_MOUSE
#define DISPLAY_MOUSE GxPointClick
#endif
#endif
#endif
#ifdef NO_MOUSE
#ifndef DISPLAY_ZOOM_FACTOR
static double gxZoomFactor= 1.0;
#endif
#endif
#ifndef DISPLAY_ZOOM_FACTOR
#define DISPLAY_ZOOM_FACTOR gxZoomFactor
#endif
/* various X headers included by xfancy.h define True and False */
#undef True
#undef False
#include "ydata.h"
#include "yio.h"
#include "defstr.h"
#include "defmem.h"
/* Quining operation defined in parse.c */
extern void YpQuine(char *name, int nQuined);
extern int PutsAsArray(const char *s); /* from yio.c */
/* in graph0.c */
extern long QuickMeshZone(double xx, double yy, double *x, double *y,
int *reg, long ix, long ijx, long i,
long *bndy, long nbndy);
extern long *BuildMeshBndy(double *x, double *y, int *reg,
long ix, long ijx, long *nbndy);
extern BuiltIn Y_plg, Y_plm, Y_plc, Y_plv, Y_plf, Y_pli, Y_plt, Y_pldj;
extern BuiltIn Y_plmesh, Y_bytscl, Y_plfp;
extern BuiltIn Y_limits, Y_logxy, Y_zoom_factor, Y_unzoom;
/* Note: range function is interpreted shell for limits */
extern BuiltIn Y_window, Y_hcp_file, Y_hcp_finish, Y_plsys, Y_palette;
extern BuiltIn Y_fma, Y_redraw, Y_hcp, Y_hcpon, Y_hcpoff, Y_animate;
extern BuiltIn Y_plq, Y_pledit, Y_pldefault, Y_gridxy;
extern BuiltIn Y__pl_init; /* called at initialization by graph.i */
extern BuiltIn Y_mouse, Y_contour, Y_mesh_loc, Y_pause, Y_current_window;
/*--------------------------------------------------------------------------*/
static void FreeReference(void *obj);
static void Safe_free(void *vptr);
static char *SetHCPname(int n, char *name);
static char *GetHCPname(int n);
static char *hcpNames[9]= {0, 0, 0, 0, 0, 0, 0, 0, 0};
static void SetHCPDefault(void);
static void CheckDefaultWindow(void);
static void CheckDefaultPalette(void);
static double *Get1Ddouble(Symbol *stack, long *length);
static double *Get2Ddouble(Symbol *stack, long *len1, long *len2);
static int *Get2Dint(Symbol *stack, long *len1, long *len2);
static short *Get2Dshort(Symbol *stack, long *len1, long *len2);
static double *GetDouble(Symbol *stack, long *n);
static void LegendAndHide(char *func, char *arg1, char *arg2, char *arg3,
char *arg4, Symbol *keySymbols[]);
static int GetLineType(Symbol *stack);
static int GetColor(Symbol *stack);
static int GetFont(Symbol *stack);
static int GetTypeface(char *s);
static void GetJustify(Symbol *stack);
static long Safe_strlen(const char *s);
static void AllocTmpLegend(long len);
static void FreeTmpLegend(void);
static long escape_count(char *arg);
static void escape_cat(char *leg, char *arg);
static Symbol *GrabMesh(Symbol *stack, Symbol *triKey, GaQuadMesh *mesh,
char **y_name, char **x_name, char **r_name, int tmp);
static int *PadRegionArray(Symbol *stack, int *reg, long iMax, long jMax);
static void *CopyArray(Symbol *stack, void *xOld,
StructDef *base, long iMax, long jMax);
static double *CopyLevels(double *levels, long nLevels);
static void GetZCrange(double *zmn, double *zmx, double *z, int *reg,
int region, long iMax, long jMax, int zCompressed);
static void GetPCrange(double *zmn, double *zmx, double *z, int *reg,
int region, long iMax, long jMax);
static void GrabByteScale(Symbol **keySymbols, double *scale, double *offset,
double *zn, double *zx, double *z, int *reg,
int region, long iMax, long jMax, int zCompressed);
static GpColor *PushColors(double *z, long len, double zmin, double zmax,
double scale, double offset);
static void PrintHideLegend(char *line, int type);
static void PrintColor(char *line, int color, int suffix);
static void PrintTypeWidth(char *line, int suffix);
static void PrintMarks(char *line, int suffix);
static void PrintSuffix(int suffix);
static void PrintRegion(char *line, int suffix);
static double Safe_dbl(double x);
static void *MakePropArray(StructDef *base, long size);
static void CheckPalette(void);
static int paletteSize= 0;
static int maxColors= 200; /* maximum number of colors for GpReadPalette */
static int hcpDump= 1; /* whiners can't figure out how to dump colors */
static int hcpPSdefault= 0;
static int hcpOnFMA= 0;
static int defaultDPI= 75;
static int defaultLegends= 1;
static char *defaultStyle= 0;
static char *defaultPalette= 0;
/* Pointers to the default mesh set with plmesh are actually
Yorick Array pointees. */
static long iMesh= 0, jMesh= 0;
static double *xMesh= 0, *yMesh= 0;
static int *regMesh= 0;
static short *triangleMesh= 0;
static int curPlotter= -1;
static int curElement= -1;
static void RefMesh(GaQuadMesh *mesh);
extern int YCurrentPlotter(void); /* for style.c */
/*--------------------------------------------------------------------------*/
static long yOrigin;
static double *Get1Ddouble(Symbol *stack, long *length)
{
Operand op;
long n= *length;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&voidOps) return 0;
if (op.ops->promoteID>T_DOUBLE || (op.type.dims && op.type.dims->next))
YError("expecting 1D array convertable to type double as argument");
op.ops->ToDouble(&op);
if (n>0 && op.type.number!=n)
YError("1D double array must be same length as a previous argument");
if (op.type.dims) yOrigin= op.type.dims->origin;
else yOrigin= 1L;
*length= op.type.number;
return (double *)op.value;
}
static double *Get2Ddouble(Symbol *stack, long *len1, long *len2)
{
Operand op;
long n1= *len1;
long n2= *len2;
Dimension *next= 0;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&voidOps) return 0;
if (op.ops->promoteID>T_DOUBLE ||
!op.type.dims || !(next= op.type.dims->next) || next->next)
YError("expecting 2D array convertable to type double as argument");
op.ops->ToDouble(&op);
if (n1>0 && (op.type.dims->number!=n1 || next->number!=n2))
YError("2D double array must be same shape as a previous argument");
*len1= op.type.dims->number;
*len2= op.type.dims->next->number;
return (double *)op.value;
}
static int *Get2Dint(Symbol *stack, long *len1, long *len2)
{
Operand op;
long n1= *len1;
long n2= *len2;
Dimension *next= 0;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&voidOps) return 0;
if (op.ops->promoteID>T_LONG ||
!op.type.dims || !(next= op.type.dims->next) || next->next)
YError("expecting 2D array convertable to type int as argument");
op.ops->ToInt(&op);
if (n1>0 && (op.type.dims->number!=n1 || next->number!=n2))
YError("2D int array must be same shape as a previous argument");
*len1= op.type.dims->number;
*len2= op.type.dims->next->number;
return (int *)op.value;
}
static short *Get2Dshort(Symbol *stack, long *len1, long *len2)
{
Operand op;
long n1= *len1;
long n2= *len2;
Dimension *next= 0;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&voidOps) return 0;
if (op.ops->promoteID>T_LONG ||
!op.type.dims || !(next= op.type.dims->next) || next->next)
YError("expecting 2D array convertable to type short as argument");
op.ops->ToShort(&op);
if (n1>0 && (op.type.dims->number!=n1 || next->number!=n2))
YError("2D short array must be same shape as a previous argument");
*len1= op.type.dims->number;
*len2= op.type.dims->next->number;
return (short *)op.value;
}
static long Safe_strlen(const char *s)
{
if (s) return strlen(s);
else return 0;
}
static char *tmpLegend= 0;
static void AllocTmpLegend(long len)
{
if (tmpLegend) FreeTmpLegend();
tmpLegend= StrAlloc(len);
}
static void FreeTmpLegend(void)
{
if (tmpLegend) {
char *legend= tmpLegend;
tmpLegend= 0;
StrFree(legend);
}
}
static long escape_count(char *arg)
{
long n= 0;
if (arg) while (*arg) {
if (*arg=='!' || *arg=='_' || *arg=='^') n++;
arg++;
}
return n;
}
static void escape_cat(char *leg, char *arg)
{
while (*arg) {
if (*arg=='!' || *arg=='_' || *arg=='^') *(leg++)= '!';
*(leg++)= *(arg++);
}
*leg= '\0';
}
static void LegendAndHide(char *func, char *arg1, char *arg2, char *arg3,
char *arg4, Symbol *keySymbols[])
{
/* check for hide= keyword */
if (YNotNil(keySymbols[1])) gistD.hidden= (YGetInteger(keySymbols[1])!=0);
else gistD.hidden= 0;
if (tmpLegend) FreeTmpLegend();
/* check for legend= keyword -- put legend into tmpLegend */
if (keySymbols[0]) {
/* legend=[] is same as legend=string() */
Symbol *stack= keySymbols[0];
if (YNotNil(stack)) tmpLegend= StrCpy(YGetString(stack));
} else if (func) {
/* construct default legend from up to 4 quined arguments */
long len0= Safe_strlen(func);
long len1= Safe_strlen(arg1)+escape_count(arg1);
long len2= Safe_strlen(arg2)+escape_count(arg2);
long len3= Safe_strlen(arg3)+escape_count(arg3);
long len4= Safe_strlen(arg4)+escape_count(arg4);
AllocTmpLegend(len0+len1+len2+len3+len4+6);
if (func) strcat(tmpLegend, func);
if (arg1) {
escape_cat(tmpLegend+len0, arg1);
len0+= len1;
if (arg2) {
strcat(tmpLegend+len0, ", ");
escape_cat(tmpLegend+len0+2, arg2);
len0+= 2+len2;
if (arg3) {
strcat(tmpLegend+len0, ", ");
escape_cat(tmpLegend+len0+2, arg3);
len0+= 2+len3;
if (arg4) {
strcat(tmpLegend+len0, ", ");
escape_cat(tmpLegend+len0+2, arg4);
len0+= 2+len4;
}
}
}
}
}
/* Put tmpLegend into gistD.legend -- it will be copied out when the
element is created. Only danger is pledit, since GdEdit just
copies the pointer, not the string -- handle this case specially. */
gistD.legend= tmpLegend;
}
static int GetLineType(Symbol *stack)
{
Operand op;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&stringOps) {
char *s= ((char **)op.value)[0];
if (op.type.dims) YError("illegal line type -- need scalar string");
if (strcmp(s, "none")==0) return L_NONE;
else if (strcmp(s, "solid")==0) return L_SOLID;
else if (strcmp(s, "dash")==0) return L_DASH;
else if (strcmp(s, "dot")==0) return L_DOT;
else if (strcmp(s, "dashdot")==0) return L_DASHDOT;
else if (strcmp(s, "dashdotdot")==0) return L_DASHDOTDOT;
YError("unrecognized line type keyword");
return 0;
} else {
int type= (int)YGetInteger(stack);
if (type<0) type= 0;
else if (type>5) type= 1 + (type-1)%5;
return type;
}
}
static int GetColor(Symbol *stack)
{
Operand op;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&stringOps) {
char *s= ((char **)op.value)[0];
if (op.type.dims) YError("illegal color -- need scalar string");
if (strcmp(s, "bg")==0) return BG_COLOR;
else if (strcmp(s, "fg")==0) return FG_COLOR;
else if (strcmp(s, "black")==0) return BLACK_COLOR;
else if (strcmp(s, "white")==0) return WHITE_COLOR;
else if (strcmp(s, "red")==0) return RED_COLOR;
else if (strcmp(s, "green")==0) return GREEN_COLOR;
else if (strcmp(s, "blue")==0) return BLUE_COLOR;
else if (strcmp(s, "cyan")==0) return CYAN_COLOR;
else if (strcmp(s, "magenta")==0) return MAGENTA_COLOR;
else if (strcmp(s, "yellow")==0) return YELLOW_COLOR;
YError("unrecognized color keyword (fg, bg, or 8 primaries only)");
return 0;
} else {
return (int)YGetInteger(stack);
}
}
static int GetFont(Symbol *stack)
{
Operand op;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&stringOps) {
char *s= ((char **)op.value)[0];
if (op.type.dims) YError("illegal font -- need scalar string");
if (strncmp(s, "courier", 7)==0)
return T_COURIER | GetTypeface(&s[7]);
else if (strncmp(s, "times", 5)==0)
return T_TIMES | GetTypeface(&s[5]);
else if (strncmp(s, "helvetica", 9)==0)
return T_HELVETICA | GetTypeface(&s[9]);
else if (strncmp(s, "symbol", 6)==0)
return T_SYMBOL | GetTypeface(&s[6]);
else if (strncmp(s, "schoolbook", 10)==0)
return T_NEWCENTURY | GetTypeface(&s[10]);
YError("unrecognized font keyword");
return 0;
} else {
return (int)YGetInteger(stack);
}
}
static int GetTypeface(char *s)
{
int face= 0;
while (*s) {
if (*s=='B' && !(face&T_BOLD)) face|= T_BOLD;
else if (*s=='I' && !(face&T_ITALIC)) face|= T_ITALIC;
else YError("illegal font keyword suffix -- B is bold, I is italic");
s++;
}
return face;
}
static void GetJustify(Symbol *stack)
{
Operand op;
if (!stack->ops) YError("unexpected keyword argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops==&stringOps) {
char *s= ((char **)op.value)[0];
if (op.type.dims) YError("illegal justify -- need scalar string");
if (*s=='N') { gistA.t.alignH= TH_NORMAL; s++; }
else if (*s=='L') { gistA.t.alignH= TH_LEFT; s++; }
else if (*s=='C') { gistA.t.alignH= TH_CENTER; s++; }
else if (*s=='R') { gistA.t.alignH= TH_RIGHT; s++; }
else { while (*s) s++; }
if (*s=='N') gistA.t.alignV= TV_NORMAL;
else if (*s=='T') gistA.t.alignV= TV_TOP;
else if (*s=='C') gistA.t.alignV= TV_CAP;
else if (*s=='H') gistA.t.alignV= TV_HALF;
else if (*s=='A') gistA.t.alignV= TV_BASE;
else if (*s=='B') gistA.t.alignV= TV_BOTTOM;
else YError("unrecognized justify keyword");
} else {
int justify= (int)YGetInteger(stack);
gistA.t.alignH= justify&3;
gistA.t.alignV= justify>>2;
}
}
/*--------------------------------------------------------------------------*/
#undef N_KEYWORDS
#define N_KEYWORDS 19
static char *plgKeys[N_KEYWORDS+1]= {
"legend", "hide", "color", "type", "width",
"marks", "mcolor", "marker", "msize", "mspace", "mphase",
"rays", "arrowl", "arroww", "rspace", "rphase",
"closed", "smooth", "n", 0 };
void Y_plg(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, plgKeys, keySymbols);
int iPass= 0;
double *x= 0, *y= 0;
char *x_name= 0, *y_name= 0;
long n= 0;
long nparts= 0, *np= 0;
int defaultX= 0;
if (!CalledAsSubroutine())
YError("plg may not be invoked as a function -- subroutine only");
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) y= Get1Ddouble(stack, &n);
else if (iPass==1) y_name= YGetString(stack);
else if (iPass==2) x= Get1Ddouble(stack, &n);
else if (iPass==3) x_name= YGetString(stack);
else YError("plg takes at most two non-keyword arguments");
iPass++;
stack++;
}
if (!y) YError("plg needs at least one non-keyword argument");
/* set legend and hide in gistD */
CheckDefaultWindow();
LegendAndHide("\001: plg, ", y_name, x_name, (char *)0, (char *)0,
keySymbols);
/* set properties, starting from defaults for decorated polylines */
GhGetLines();
if (YNotNil(keySymbols[2]))
gistA.l.color= gistA.m.color= GetColor(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.l.type= GetLineType(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.l.width= YGetReal(keySymbols[4]);
if (YNotNil(keySymbols[5]))
gistA.dl.marks= (YGetInteger(keySymbols[5])!=0);
if (YNotNil(keySymbols[6]))
gistA.m.color= GetColor(keySymbols[6]);
if (YNotNil(keySymbols[7]))
gistA.m.type= (int)YGetInteger(keySymbols[7]);
if (YNotNil(keySymbols[8]))
gistA.m.size= YGetReal(keySymbols[8]);
if (YNotNil(keySymbols[9]))
gistA.dl.mSpace= YGetReal(keySymbols[9]);
if (YNotNil(keySymbols[10]))
gistA.dl.mPhase= YGetReal(keySymbols[10]);
if (YNotNil(keySymbols[11]))
gistA.dl.rays= (YGetInteger(keySymbols[11])!=0);
if (YNotNil(keySymbols[12]))
gistA.dl.arrowL= YGetReal(keySymbols[12]);
if (YNotNil(keySymbols[13]))
gistA.dl.arrowW= YGetReal(keySymbols[13]);
if (YNotNil(keySymbols[14]))
gistA.dl.rSpace= YGetReal(keySymbols[14]);
if (YNotNil(keySymbols[15]))
gistA.dl.rPhase= YGetReal(keySymbols[15]);
if (YNotNil(keySymbols[16]))
gistA.dl.closed= (YGetInteger(keySymbols[16])!=0);
if (YNotNil(keySymbols[17]))
gistA.dl.smooth= (YGetInteger(keySymbols[17])!=0);
if (YNotNil(keySymbols[18])) {
long i, ntot;
Dimension *dims;
np= YGet_L(keySymbols[18], 0, &dims);
if (!dims || dims->next) YError("n= keyword must be 1D in plg");
nparts= dims->number;
for (i=ntot=0 ; i<nparts ; i++) ntot+= np[i];
if (ntot!=n) YError("n= keyword must sum to numberof(y) in plg");
}
if (!x) {
/* default x runs from origin of y dimension in steps of 1 */
long i;
Array *array=
PushDataBlock(NewArray(&doubleStruct,
NewDimension(n, 1L, (Dimension *)0)));
array->type.dims->references--;
x= array->value.d;
defaultX= 1;
if (!nparts) {
for (i=0 ; i<n ; i++) x[i]= yOrigin+(double)i;
} else {
long j;
for (j=0 ; j<nparts ; j++)
for (i=0 ; i<np[j] ; i++) x[i]= yOrigin+(double)i;
}
}
/* add the graph(s) to the current display list */
if (!nparts) {
curElement= -1;
curElement= GdLines(n, x, y);
} else {
int ce= 0, cel;
curElement= -1;
while (nparts--) {
cel= GdLines(np[0], x, y);
if (cel<0) ce= cel;
x+= np[0];
y+= np[0];
np++;
}
if (!ce) curElement= cel;
}
if (curElement<0) YWarning("Gist GdLines plotter failed");
Drop(nArgs+defaultX);
}
#undef N_KEYWORDS
#define N_KEYWORDS 8
static char *plmKeys[N_KEYWORDS+1]= {
"legend", "hide", "color", "type", "width", "region", "boundary",
"inhibit", 0 };
void Y_plm(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, plmKeys, keySymbols);
char *y_name= 0, *x_name= 0, *r_name= 0;
GaQuadMesh mesh;
if (!CalledAsSubroutine())
YError("plm may not be invoked as a function -- subroutine only");
stack= GrabMesh(stack, (Symbol *)0, &mesh, &y_name, &x_name, &r_name, 0);
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("plm takes at most three non-keyword arguments");
}
/* set legend and hide in gistD */
CheckDefaultWindow();
LegendAndHide("plm, ", y_name, x_name, r_name, (char *)0, keySymbols);
/* set properties, starting from defaults for meshes */
GhGetMesh();
gistD.region= 0;
gistD.boundary= 0;
gistD.inhibit= 0;
if (YNotNil(keySymbols[2]))
gistA.l.color= GetColor(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.l.type= GetLineType(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.l.width= YGetReal(keySymbols[4]);
if (YNotNil(keySymbols[5]))
gistD.region= (int)YGetInteger(keySymbols[5]);
if (YNotNil(keySymbols[6]))
gistD.boundary= (YGetInteger(keySymbols[6])!=0);
if (YNotNil(keySymbols[7]))
gistD.inhibit= (int)YGetInteger(keySymbols[7]);
curElement= -1;
curElement= GdMesh(NOCOPY_MESH, &mesh, gistD.region, gistD.boundary,
gistD.inhibit);
if (curElement<0) YWarning("Gist GdMesh plotter failed");
RefMesh(&mesh);
Drop(nArgs);
}
#undef N_KEYWORDS
#define N_KEYWORDS 1
static char *meshKeys[N_KEYWORDS+1]= { "triangle", 0 };
void Y_plmesh(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, meshKeys, keySymbols);
GaQuadMesh mesh;
if (nArgs==0) {
Safe_free(&xMesh);
Safe_free(&yMesh);
Safe_free(®Mesh);
Safe_free(&triangleMesh);
}
stack= GrabMesh(stack, keySymbols[0], &mesh,
(char **)0, (char **)0, (char **)0, 0);
if (mesh.x!=xMesh) {
/* a new default mesh has been defined */
Safe_free(&xMesh);
Safe_free(&yMesh);
Safe_free(®Mesh);
Safe_free(&triangleMesh);
RefMesh(&mesh);
iMesh= mesh.iMax;
jMesh= mesh.jMax;
xMesh= mesh.x;
yMesh= mesh.y;
if (mesh.reg) {
regMesh= mesh.reg;
} else {
/* supply a default region array now */
long ijMax= iMesh*jMesh;
long i= ijMax+iMesh+1;
Array *array=
PushDataBlock(NewArray(&intStruct,
NewDimension(i, 1L, (Dimension *)0)));
int *r= array->value.i;
array->type.dims->references--;
for (i=0 ; i<=iMesh ; i++) r[i]= 0;
for (i=iMesh+1 ; i<ijMax ; i++) r[i]= 1;
for (i=0 ; i<=iMesh ; i++) r[ijMax+i]= 0;
for (i=2*iMesh ; i<ijMax ; i+=iMesh) r[i]= 0;
array->references++; /* preserve across Drop */
regMesh= array->value.i;
Drop(1);
}
triangleMesh= mesh.triangle;
} else {
/* perhaps reg or triangle has been updated */
if (mesh.x==xMesh) {
mesh.x= mesh.y= 0;
if (mesh.reg==regMesh) mesh.reg= 0;
if (mesh.triangle==triangleMesh) mesh.triangle= 0;
}
RefMesh(&mesh);
if (mesh.reg) {
Safe_free(®Mesh);
regMesh= mesh.reg;
}
if (mesh.triangle) {
Safe_free(&triangleMesh);
triangleMesh= mesh.triangle;
}
}
Drop(nArgs);
}
static void Safe_free(void *vptr)
{
void **ptr= vptr;
void *obj= *ptr;
*ptr= 0; /* zero reference before freeing object */
FreeReference(obj);
}
static Symbol *GrabMesh(Symbol *stack, Symbol *triKey, GaQuadMesh *mesh,
char **y_name, char **x_name, char **r_name, int tmp)
{
Symbol *yStack= 0, *xStack= 0, *rStack= 0;
int stackInc= y_name? 1 : 2;
int iPass= 0;
mesh->x= mesh->y= 0;
mesh->reg= 0;
mesh->iMax= mesh->jMax= 0;
mesh->triangle= 0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0)
mesh->y= Get2Ddouble(yStack= stack, &mesh->jMax, &mesh->iMax);
else if (iPass==1) *y_name= YGetString(stack);
else if (iPass==2)
mesh->x= Get2Ddouble(xStack= stack, &mesh->jMax, &mesh->iMax);
else if (iPass==3) *x_name= YGetString(stack);
else if (iPass==4)
mesh->reg= Get2Dint(rStack= stack, &mesh->jMax, &mesh->iMax);
else if (iPass==5) *r_name= YGetString(stack);
else break;
iPass+= stackInc;
stack++;
}
if (YNotNil(triKey))
mesh->triangle= Get2Dshort(triKey, &mesh->jMax, &mesh->iMax);
if ((mesh->x!=0)^(mesh->y!=0))
YError("both y and x arrays must be specified for a mesh");
if (!mesh->x) {
/* neither y nor x have been specified -- use defaults */
if (!xMesh)
YError("no default mesh exists to define y and x -- use plmesh");
if ((mesh->reg || mesh->triangle) &&
(iMesh!=mesh->iMax || jMesh!=mesh->jMax))
YError("ireg and triangle must have same dimensions as default mesh");
mesh->iMax= iMesh;
mesh->jMax= jMesh;
mesh->x= xMesh;
mesh->y= yMesh;
} else {
/* both y and x have been specified -- copy them for Gist */
if (mesh->iMax<2 || mesh->jMax<2)
YError("a mesh have dimensions of at least 2-by-2");
mesh->x=
CopyArray(xStack, mesh->x, &doubleStruct, mesh->iMax, mesh->jMax);
mesh->y=
CopyArray(yStack, mesh->y, &doubleStruct, mesh->iMax, mesh->jMax);
}
/* the Gist region array requires guard zones beyond iMax*jMax */
if (mesh->reg) mesh->reg=
PadRegionArray(rStack, mesh->reg, mesh->iMax, mesh->jMax);
else if (mesh->x==xMesh)
mesh->reg= regMesh;
if (mesh->triangle) {
if (!tmp)
mesh->triangle= CopyArray(triKey, mesh->triangle, &shortStruct,
mesh->iMax, mesh->jMax);
} else if (mesh->x==xMesh && triKey) {
mesh->triangle= triangleMesh;
}
return stack;
}
static void RefMesh(GaQuadMesh *mesh)
{
if (mesh->x) ((Array *)Pointee(mesh->x))->references++;
if (mesh->y) ((Array *)Pointee(mesh->y))->references++;
if (mesh->reg) ((Array *)Pointee(mesh->reg))->references++;
if (mesh->triangle) ((Array *)Pointee(mesh->triangle))->references++;
}
static int *PadRegionArray(Symbol *stack, int *reg, long iMax, long jMax)
{
long ijMax= iMax*jMax;
long i= ijMax+iMax+1;
Array *array=
PushDataBlock(NewArray(&intStruct, NewDimension(i, 1L, (Dimension *)0)));
int *r= array->value.i;
array->type.dims->references--;
for (i=0 ; i<=iMax ; i++) r[i]= 0;
for (i=iMax+1 ; i<ijMax ; i++) r[i]= reg[i];
for (i=0 ; i<=iMax ; i++) r[ijMax+i]= 0;
for (i=2*iMax ; i<ijMax ; i+=iMax) r[i]= 0;
PopTo(stack);
return r;
}
static void *CopyArray(Symbol *stack, void *xOld,
StructDef *base, long iMax, long jMax)
{
if (stack->ops==&dataBlockSym &&
(stack->value.db->references || !stack->value.db->ops->isArray)) {
long len= iMax*jMax;
Array *array=
PushDataBlock(NewArray(base, NewDimension(len, 1L, (Dimension *)0)));
void *x= array->value.c;
array->type.dims->references--;
base->Copy(base, x, xOld, len);
PopTo(stack);
return x;
} else {
/* no need to copy temporaries */
return xOld;
}
}
#undef N_KEYWORDS
#define N_KEYWORDS 15
static char *plcKeys[N_KEYWORDS+1]= {
"legend", "hide", "region", "color", "type", "width",
"marks", "mcolor", "marker", "msize", "mspace", "mphase",
"smooth", "triangle", "levs", 0 };
static double *tmpLevels= 0;
void Y_plc(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, plcKeys, keySymbols);
char *z_name= 0, *y_name= 0, *x_name= 0, *r_name= 0;
long iMax= 0, jMax= 0, nLevels= 0;
double *z= 0, *levels= 0;
int defaultL;
GaQuadMesh mesh;
if (!CalledAsSubroutine())
YError("plc may not be invoked as a function -- subroutine only");
if (stack<sp) {
z= Get2Ddouble(stack++, &jMax, &iMax);
z_name= YGetString(stack++);
}
if (!z) YError("plc needs at least one non-keyword argument");
stack= GrabMesh(stack, keySymbols[13], &mesh, &y_name, &x_name, &r_name, 0);
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("plc takes at most four non-keyword arguments");
}
if (mesh.iMax!=iMax || mesh.jMax!=jMax)
YError("z array must have same dimensions as mesh in plc");
/* set legend and hide in gistD */
CheckDefaultWindow();
LegendAndHide("\001: plc, ", z_name, y_name, x_name, r_name, keySymbols);
/* set properties, starting from defaults for decorated polylines */
GhGetLines();
gistD.region= 0;
if (YNotNil(keySymbols[2]))
gistD.region= (int)YGetInteger(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.l.color= gistA.m.color= GetColor(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.l.type= GetLineType(keySymbols[4]);
if (YNotNil(keySymbols[5]))
gistA.l.width= YGetReal(keySymbols[5]);
if (YNotNil(keySymbols[6]))
gistA.dl.marks= (YGetInteger(keySymbols[6])!=0);
if (YNotNil(keySymbols[7]))
gistA.m.color= GetColor(keySymbols[7]);
if (YNotNil(keySymbols[8]))
gistA.m.type= (int)YGetInteger(keySymbols[8]);
if (YNotNil(keySymbols[9]))
gistA.m.size= YGetReal(keySymbols[9]);
if (YNotNil(keySymbols[10]))
gistA.dl.mSpace= YGetReal(keySymbols[10]);
if (YNotNil(keySymbols[11]))
gistA.dl.mPhase= YGetReal(keySymbols[11]);
if (YNotNil(keySymbols[12]))
gistA.dl.smooth= (YGetInteger(keySymbols[12])!=0);
/* set contour levels */
if (YNotNil(keySymbols[14])) {
levels= Get1Ddouble(keySymbols[14], &nLevels);
if (levels) {
defaultL= 0;
levels= CopyLevels(levels, nLevels);
}
}
if (!levels) {
/* create a default set of contour levels now */
int i;
double zmin, zmax, step;
nLevels= 8;
levels= CopyLevels((double *)0, nLevels);
GetPCrange(&zmin, &zmax, z, mesh.reg, gistD.region, iMax, jMax);
step= (zmax-zmin)/8.0;
levels[0]= zmin+0.5*step;
for (i=1 ; i<8 ; i++) levels[i]= levels[i-1]+step;
defaultL= 1;
}
curElement= -1;
curElement=
GdContours(NOCOPY_MESH, &mesh, gistD.region, z, levels, (int)nLevels);
if (curElement<0) YWarning("Gist GdContour plotter failed");
tmpLevels= 0; /* Gist now owns this pointer */
RefMesh(&mesh);
Drop(nArgs);
}
static double *CopyLevels(double *levels, long nLevels)
{
long i;
double *tmp= tmpLevels;
tmpLevels= 0;
if (tmp) GmFree(tmp);
tmpLevels= GmMalloc(sizeof(double)*nLevels);
for (i=0 ; i<nLevels ; i++) tmpLevels[i]= levels? levels[i] : 0.0;
return tmpLevels;
}
static void GetZCrange(double *zmn, double *zmx, double *z, int *reg,
int region, long iMax, long jMax, int zCompressed)
{
double zmin= 0.0, zmax= 0.0;
long i, j= iMax-1;
long len= (zCompressed? j : iMax)*(jMax-1);
if (zCompressed) {
long len= (iMax-1)*(jMax-1);
if (reg) reg+= iMax+1;
for (i=0 ; i<len ; i++) { /* first loop finds first z */
if (reg? (region? (*reg==region) : (*reg!=0)) : 1) {
zmin= zmax= z[i];
break;
}
if (reg) {
if (!(--j)) { reg+= 2; j= iMax-1; }
else reg++;
}
}
if (reg) {
if (!(--j)) { reg+= 2; j= iMax-1; }
else reg++;
}
for (i++ ; i<len ; i++) { /* second loop judges extreme values */
if (reg? (region? (*reg==region) : (*reg!=0)) : 1) {
if (zmin>z[i]) zmin= z[i];
else if (zmax<z[i]) zmax= z[i];
}
if (reg) {
if (!(--j)) { reg+= 2; j= iMax-1; }
else reg++;
}
}
} else {
z+= iMax+1; /* GrabMesh guarantees at least 2-by-2 */
if (reg) reg+= iMax+1;
for (i=1 ; i<len ; i++) { /* first loop finds first z */
if (--j) {
if (reg? (region? (*reg==region) : (*reg!=0)) : 1) {
zmin= zmax= z[i];
break;
}
} else {
j= iMax;
}
}
for (i++ ; i<len ; i++) { /* second loop judges extreme values */
if (--j) {
if (reg? (region? (*reg==region) : (*reg!=0)) : 1) {
if (zmin>z[i]) zmin= z[i];
else if (zmax<z[i]) zmax= z[i];
}
} else {
j= iMax;
}
}
}
*zmn= zmin;
*zmx= zmax;
}
static void GetPCrange(double *zmn, double *zmx, double *z, int *reg,
int region, long iMax, long jMax)
{
double zmin= 0.0, zmax= 0.0;
long i, len= iMax*jMax;
for (i=0 ; i<len ; i++) { /* first loop finds first z */
if (reg? (region?
(reg[i]==region || reg[i+1]==region ||
reg[i+iMax]==region || reg[i+iMax+1]==region) :
(reg[i] || reg[i+1] || reg[i+iMax] || reg[i+iMax+1])) : 1) {
zmin= zmax= z[i];
break;
}
}
for ( ; i<len ; i++) { /* second loop judges extreme values */
if (reg? (region?
(reg[i]==region || reg[i+1]==region ||
reg[i+iMax]==region || reg[i+iMax+1]==region) :
(reg[i] || reg[i+1] || reg[i+iMax] || reg[i+iMax+1])) : 1) {
if (zmin>z[i]) zmin= z[i];
else if (zmax<z[i]) zmax= z[i];
}
}
*zmn= zmin;
*zmx= zmax;
}
#undef N_KEYWORDS
#define N_KEYWORDS 8
static char *plvKeys[N_KEYWORDS+1]= {
"legend", "hide", "region",
"color", "hollow", "width", "aspect", "scale", 0 };
void Y_plv(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, plvKeys, keySymbols);
char *v_name= 0, *u_name= 0, *y_name= 0, *x_name= 0, *r_name= 0;
long iMax= 0, jMax= 0;
double *u= 0, *v= 0, scale;
GaQuadMesh mesh;
int iPass= 0;
if (!CalledAsSubroutine())
YError("plv may not be invoked as a function -- subroutine only");
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) v= Get2Ddouble(stack, &jMax, &iMax);
else if (iPass==1) v_name= YGetString(stack);
else if (iPass==2) u= Get2Ddouble(stack, &jMax, &iMax);
else if (iPass==3) u_name= YGetString(stack);
else break;
iPass++;
stack++;
}
if (!u || !v) YError("plv needs at least two non-keyword arguments");
stack= GrabMesh(stack, (Symbol *)0, &mesh, &y_name, &x_name, &r_name, 0);
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("plv takes at most five non-keyword arguments");
}
if (mesh.iMax!=iMax || mesh.jMax!=jMax)
YError("v and u arrays must have same dimensions as mesh in plv");
/* set legend and hide in gistD */
CheckDefaultWindow();
LegendAndHide("plv, ", v_name, u_name, y_name, x_name, keySymbols);
/* set properties, starting from defaults for vectors */
GhGetVectors();
gistD.region= 0;
if (YNotNil(keySymbols[2]))
gistD.region= (int)YGetInteger(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.l.color= gistA.f.color= GetColor(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.vect.hollow= (YGetInteger(keySymbols[4])!=0);
if (YNotNil(keySymbols[5]))
gistA.l.width= YGetReal(keySymbols[5]);
if (YNotNil(keySymbols[6]))
gistA.vect.aspect= YGetReal(keySymbols[6]);
/* set vector scale factor */
if (YNotNil(keySymbols[7])) {
scale= YGetReal(keySymbols[7]);
} else {
/* set vector scale factor to make maximum vector length a
"typical" zone dimension */
double umin, umax, vmin, vmax, xmin, xmax, ymin, ymax;
GetPCrange(&xmin, &xmax, mesh.x, mesh.reg, gistD.region, iMax, jMax);
GetPCrange(&ymin, &ymax, mesh.y, mesh.reg, gistD.region, iMax, jMax);
GetPCrange(&umin, &umax, u, mesh.reg, gistD.region, iMax, jMax);
GetPCrange(&vmin, &vmax, v, mesh.reg, gistD.region, iMax, jMax);
umax-= umin;
vmax-= vmin;
if (vmax>umax) umax= vmax;
xmax= (xmax-xmin)+(ymax-ymin);
xmax/= (iMax+jMax);
if (umax>0.0) scale= xmax/umax;
else scale= 1.0;
}
curElement= -1;
curElement= GdVectors(NOCOPY_MESH, &mesh, gistD.region, u, v, scale);
if (curElement<0) YWarning("Gist GdVectors plotter failed");
RefMesh(&mesh);
Drop(nArgs);
}
#undef N_KEYWORDS
#define N_KEYWORDS 9
static char *plfKeys[N_KEYWORDS+1]= {
"legend", "hide", "region", "top", "cmin", "cmax",
"edges", "ecolor", "ewidth", 0 };
void Y_plf(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, plfKeys, keySymbols);
char *z_name= 0, *y_name= 0, *x_name= 0, *r_name= 0;
long iMax= 0, jMax= 0;
double *z= 0;
GpColor *zc= 0;
GaQuadMesh mesh;
int convertedZ= 0;
if (!CalledAsSubroutine())
YError("plf may not be invoked as a function -- subroutine only");
if (stack<sp) {
Operand op;
if (stack->ops==&referenceSym) ReplaceRef(stack);
stack->ops->FormOperand(stack, &op);
if (op.ops!=&charOps) {
z= Get2Ddouble(stack, &jMax, &iMax);
} else {
Dimension *next= 0;
if (!op.type.dims || !(next= op.type.dims->next) || next->next)
YError("expecting 2D array as argument to plf");
iMax= next->number;
jMax= op.type.dims->number;
zc= op.value;
}
stack++;
z_name= YGetString(stack++);
}
stack= GrabMesh(stack, (Symbol *)0, &mesh, &y_name, &x_name, &r_name, 0);
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("plf takes at most four non-keyword arguments");
}
if ((z || zc) && ((mesh.iMax!=iMax || mesh.jMax!=jMax) &&
(mesh.iMax!=iMax+1 || mesh.jMax!=jMax+1)))
YError("z array must have same or 1 smaller dimensions as mesh in plf");
/* set legend and hide in gistD */
CheckDefaultWindow();
CheckDefaultPalette();
LegendAndHide("plf, ", z_name, y_name, x_name, r_name, keySymbols);
gistD.region= 0;
if (YNotNil(keySymbols[2]))
gistD.region= (int)YGetInteger(keySymbols[2]);
if (!zc && z) {
/* need to generate colors array on stack now */
double zmin, zmax, scale, offset;
GrabByteScale(&keySymbols[3], &scale, &offset, &zmin, &zmax,
z, mesh.reg, gistD.region, mesh.iMax, mesh.jMax,
mesh.iMax!=iMax);
zc= PushColors(z, iMax*jMax, zmin, zmax, scale, offset);
convertedZ= 1;
}
GhGetFill();
if (YNotNil(keySymbols[6]))
gistA.e.type= YGetInteger(keySymbols[6])? L_SOLID : L_NONE;
if (YNotNil(keySymbols[7]))
gistA.e.color= GetColor(keySymbols[7]);
if (YNotNil(keySymbols[8]))
gistA.e.width= YGetReal(keySymbols[8]);
if (mesh.iMax==iMax) zc+= iMax+1;
curElement= -1;
curElement= GdFillMesh(NOCOPY_MESH, &mesh, gistD.region, zc, iMax);
if (curElement<0) YWarning("Gist GdFillMesh plotter failed");
RefMesh(&mesh);
Drop(nArgs+convertedZ);
}
static void GrabByteScale(Symbol **keySymbols, double *scale, double *offset,
double *zn, double *zx, double *z, int *reg,
int region, long iMax, long jMax, int zCompressed)
{
int top;
double zmin= 0.0, zmax= 0.0;
int minGiven, maxGiven;
/* get any parameters specified as keywords */
if (YNotNil(keySymbols[0]))
top= (int)YGetInteger(keySymbols[0]);
else
top= paletteSize-1;
if ((minGiven= YNotNil(keySymbols[1])))
zmin= YGetReal(keySymbols[1]);
if ((maxGiven= YNotNil(keySymbols[2])))
zmax= YGetReal(keySymbols[2]);
/* fill in zmin and zmax from data if not specified */
if (!minGiven || !maxGiven) {
double zmn, zmx;
GetZCrange(&zmn, &zmx, z, reg, region, iMax, jMax, zCompressed);
if (!minGiven) zmin= zmn;
if (!maxGiven) zmax= zmx;
}
/* adjust zmin and zmax to avert numerical catastrophes */
if (zmin>zmax) { double tmp= zmin; zmin= zmax; zmax= tmp; }
else if (zmin==zmax) {
if (zmin>0.0) { zmin= 0.9999*zmin; zmax= 1.0001*zmax; }
if (zmin<0.0) { zmin= 1.0001*zmin; zmax= 0.9999*zmax; }
else { zmin= -0.0001; zmax= 0.0001; }
}
*zn= zmin;
*zx= zmax;
/* adjust top value if it is silly */
if (top<0 || top>255) top= 255;
/* (byte value)= scale*(z cut off at zmin, zmax)+offset
maps from z to interval [0, top] */
*scale= (double)top/(zmax-zmin);
*offset= zmin-(0.4999/(*scale)); /* zmin->0.5, zmax->top+0.5 */
}
static GpColor *PushColors(double *z, long len, double zmin, double zmax,
double scale, double offset)
{
long i;
double zz;
Array *array=
PushDataBlock(NewArray(&charStruct,
NewDimension(len, 1L, (Dimension *)0)));
GpColor *zc= (GpColor *)array->value.c;
array->type.dims->references--;
for (i=0 ; i<len ; i++) {
zz= z[i];
if (zz<zmin) zz= zmin;
else if (zz>zmax) zz= zmax;
zc[i]= (int)((zz-offset)*scale);
}
return zc;
}
#undef N_KEYWORDS
#define N_KEYWORDS 5
static char *pliKeys[N_KEYWORDS+1]= {
"legend", "hide", "top", "cmin", "cmax", 0 };
void Y_pli(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, pliKeys, keySymbols);
char *z_name= 0;
double *z= 0, x0, y0, x1, y1;
long iMax= 0, jMax= 0;
GpColor *zc= 0;
int convertedZ= 0;
int iPass= 0;
if (!CalledAsSubroutine())
YError("pli may not be invoked as a function -- subroutine only");
x0= y0= x1= y1= 0.0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) {
Operand op;
if (stack->ops==&referenceSym) ReplaceRef(stack);
stack->ops->FormOperand(stack, &op);
if (op.ops!=&charOps) {
z= Get2Ddouble(stack, &jMax, &iMax);
} else {
Dimension *next= 0;
if (!op.type.dims || !(next= op.type.dims->next) || next->next)
YError("expecting 2D array as argument to pli");
iMax= next->number;
jMax= op.type.dims->number;
zc= op.value;
}
} else if (iPass==1) z_name= YGetString(stack);
else if (iPass==2) x0= YGetReal(stack);
else if (iPass==3) y0= YGetReal(stack);
else if (iPass==4) x1= YGetReal(stack);
else if (iPass==5) y1= YGetReal(stack);
else YError("pli takes at most five non-keyword arguments");
iPass++;
stack++;
}
if (!z && !zc) YError("pli needs at least one non-keyword argument");
/* handle defaulted corner values */
if (iPass!=2 && iPass!=4 && iPass!=6)
YError("pli needs either 0, 1, or 2 corner (x,y) points");
if (iPass==2) {
/* no corners specified */
x0= y0= 0.0;
x1= (double)iMax;
y1= (double)jMax;
} else if (iPass==4) {
/* two corners specified */
x1= x0;
y1= y0;
x0= y0= 0.0;
}
/* set legend and hide in gistD */
CheckDefaultWindow();
CheckDefaultPalette();
LegendAndHide("pli, ", z_name, (char *)0,(char *)0,(char *)0, keySymbols);
if (!zc) {
/* need to generate colors array on stack now */
double zmin, zmax, scale, offset;
GrabByteScale(&keySymbols[2], &scale, &offset, &zmin, &zmax,
z, (int *)0, 0, iMax+1, jMax+1, 1);
zc= PushColors(z, iMax*jMax, zmin, zmax, scale, offset);
convertedZ= 1;
}
curElement= -1;
curElement= GdCells(x0, y0, x1, y1, iMax, jMax, iMax, zc);
if (curElement<0) YWarning("Gist GdCells plotter failed");
Drop(nArgs+convertedZ);
}
#undef N_KEYWORDS
#define N_KEYWORDS 8
static char *plfpKeys[N_KEYWORDS+1]= {
"legend", "hide", "top", "cmin", "cmax", "edges", "ecolor", "ewidth", 0 };
void Y_plfp(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, plfpKeys, keySymbols);
long n= 0, ny= 0, *pn= 0;
double *z= 0, *x= 0, *y= 0;
GpColor *zc= 0;
int convertedZ= 0;
if (!CalledAsSubroutine())
YError("plfp may not be invoked as a function -- subroutine only");
while (stack<=sp) {
Operand op;
if (!stack->ops) {
stack+= 2;
continue;
}
if (stack->ops==&referenceSym) ReplaceRef(stack);
if (!convertedZ) {
stack->ops->FormOperand(stack, &op);
if (op.ops!=&charOps) {
z= Get1Ddouble(stack, &n);
} else if (op.ops!=&voidOps) {
if (!op.type.dims || op.type.dims->next)
YError("expecting 1D color array as argument to plfp");
n= op.type.number;
zc= op.value;
}
convertedZ= 1;
} else if (!y) {
y= Get1Ddouble(stack, &ny);
if (!y) YError("expecting non-nil argument in plfp");
} else if (!x) {
long nx= 0;
x= Get1Ddouble(stack, &nx);
if (!x) YError("expecting non-nil argument in plfp");
if (nx!=ny) YError("numberof(x)!=numberof(y) in plfp");
} else if (!pn) {
long i, np;
stack->ops->FormOperand(stack, &op);
if (op.ops==&voidOps) YError("expecting non-nil argument in plfp");
if (op.ops->promoteID>T_LONG || (op.type.dims && op.type.dims->next))
YError("expecting 1D array convertable to type long as argument");
op.ops->ToLong(&op);
if ((z||zc) && op.type.number!=n)
YError("numberof(pn)!=numberof(z) in plfp");
else
n= op.type.number;
pn= (long *)op.value;
for (np=i=0 ; i<n ; i++) np+= pn[i];
if (np!=ny) YError("numberof(y)!=sum(pn) in plfp");
} else {
YError("plfp takes at most four non-keyword arguments");
}
stack++;
}
if (!pn) YError("plfp needs four non-keyword arguments");
/* set legend and hide in gistD */
CheckDefaultWindow();
CheckDefaultPalette();
/* would need to add plfp to quine list with YpQuine to get legend
LegendAndHide("plfp, ", z_name, y_name, x_name, r_name, keySymbols); */
LegendAndHide((char *)0, (char *)0, (char *)0,
(char *)0, (char *)0, keySymbols);
if (!zc && z) {
/* need to generate colors array on stack now */
double zmin, zmax, scale, offset;
GrabByteScale(&keySymbols[2], &scale, &offset, &zmin, &zmax,
z, (int *)0, 0, n+1, 2L, 1);
zc= PushColors(z, n, zmin, zmax, scale, offset);
convertedZ= 1;
} else {
convertedZ= 0;
}
GhGetFill();
if (YNotNil(keySymbols[5]))
gistA.e.type= YGetInteger(keySymbols[5])? L_SOLID : L_NONE;
if (YNotNil(keySymbols[6]))
gistA.e.color= GetColor(keySymbols[6]);
if (YNotNil(keySymbols[7]))
gistA.e.width= YGetReal(keySymbols[7]);
curElement= -1;
curElement= GdFill(n, zc, x, y, pn);
if (curElement<0) YWarning("Gist GdFill plotter failed");
Drop(nArgs+convertedZ);
}
#undef N_KEYWORDS
#define N_KEYWORDS 9
static char *pltKeys[N_KEYWORDS+1]= {
"legend", "hide",
"color", "font", "height", "orient", "justify", "opaque", "tosys", 0 };
void Y_plt(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, pltKeys, keySymbols);
char *text= 0;
double x= 0.0, y= 0.0;
int toSys;
int iPass= 0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) text= YGetString(stack);
else if (iPass==1) x= YGetReal(stack);
else if (iPass==2) y= YGetReal(stack);
iPass++;
stack++;
}
if (iPass!=3)
YError("plt requires exactly three non-keyword arguments");
/* set legend and hide in gistD */
CheckDefaultWindow();
LegendAndHide((char *)0, (char *)0, (char *)0,
(char *)0, (char *)0, keySymbols);
/* set properties, starting from defaults for vectors */
GhGetText();
if (YNotNil(keySymbols[2]))
gistA.t.color= GetColor(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.t.font= GetFont(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.t.height= YGetReal(keySymbols[4])*ONE_POINT;
if (YNotNil(keySymbols[5]))
gistA.t.orient= YGetInteger(keySymbols[5]);
if (YNotNil(keySymbols[6]))
GetJustify(keySymbols[6]);
if (YNotNil(keySymbols[7]))
gistA.t.opaque= (YGetInteger(keySymbols[7])!=0);
if (!gistA.t.orient) {
gistA.t.orient= TX_RIGHT;
} else {
if (gistA.t.orient==1) gistA.t.orient= TX_UP;
else if (gistA.t.orient==2) gistA.t.orient= TX_LEFT;
else if (gistA.t.orient==3) gistA.t.orient= TX_DOWN;
else {
gistA.t.orient= TX_RIGHT;
YError("orient= keyword must be 0, 1, 2, or 3");
}
}
toSys= 0;
if (YNotNil(keySymbols[8]))
toSys= (YGetInteger(keySymbols[8])!=0);
if (!text) text= "";
curElement= -1;
curElement= GdText(x, y, text, toSys);
if (curElement<0) YWarning("Gist GdText plotter failed");
Drop(nArgs);
}
#undef N_KEYWORDS
#define N_KEYWORDS 5
static char *pldjKeys[N_KEYWORDS+1]= {
"legend", "hide", "color", "type", "width", 0 };
void Y_pldj(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, pldjKeys, keySymbols);
double *x0= 0, *y0= 0, *x1= 0, *y1= 0;
char *x0_name= 0, *y0_name= 0, *x1_name= 0, *y1_name= 0;
long n= 0;
int iPass= 0;
if (!CalledAsSubroutine())
YError("pldj may not be invoked as a function -- subroutine only");
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) x0= GetDouble(stack, &n);
else if (iPass==1) x0_name= YGetString(stack);
else if (iPass==2) y0= GetDouble(stack, &n);
else if (iPass==3) y0_name= YGetString(stack);
else if (iPass==4) x1= GetDouble(stack, &n);
else if (iPass==5) x1_name= YGetString(stack);
else if (iPass==6) y1= GetDouble(stack, &n);
else if (iPass==7) y1_name= YGetString(stack);
iPass++;
stack++;
}
if (iPass!=8)
YError("pldj requires exactly four non-keyword arguments");
/* set legend and hide in gistD */
CheckDefaultWindow();
LegendAndHide("pldj, ", x0_name, y0_name, x1_name, y1_name, keySymbols);
/* set properties, starting from defaults for simple polylines */
GhGetMesh();
if (YNotNil(keySymbols[2]))
gistA.l.color= GetColor(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.l.type= GetLineType(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.l.width= YGetReal(keySymbols[4]);
curElement= -1;
curElement= GdDisjoint(n, x0, y0, x1, y1);
if (curElement<0) YWarning("Gist GdDisjoint plotter failed");
Drop(nArgs);
}
static double *GetDouble(Symbol *stack, long *n)
{
Operand op;
if (!stack || !stack->ops)
YError("unexpected keyword or missing argument (BUG?)");
stack->ops->FormOperand(stack, &op);
if (op.ops->promoteID>T_DOUBLE)
YError("expecting argument convertable to type double");
op.ops->ToDouble(&op);
*n= op.type.number;
return (double *)op.value;
}
/*--------------------------------------------------------------------------*/
#undef N_KEYWORDS
#define N_KEYWORDS 3
static char *limKeys[N_KEYWORDS+1]= {
"square", "nice", "restrict", 0 };
void Y_limits(int nArgs)
{
/* NB-- If the plot has not been displayed yet, this will not retrieve
the latest extreme values calculated by GdScan. Nevertheless,
it DOES retrieve the precise state of the limits at the time
of this call, and retoring them will work correctly. */
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, limKeys, keySymbols);
Operand op;
double old_limits[5], *new_limits= 0;
double xmin= 0.0, xmax= 0.0, ymin= 0.0, ymax= 0.0;
char *extreme;
int flags= 0, changed= 0;
int iPass= 0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (new_limits)
YError("only one argument allowed when restoring saved limits");
if (YNotNil(stack)) {
stack->ops->FormOperand(stack, &op);
extreme= (op.ops==&stringOps && !op.type.dims)?
((char **)op.value)[0] : 0;
if (!extreme || (extreme[0]!='e' && extreme[0]!='E') ||
extreme[1]!='\0') {
if (op.ops->promoteID>T_DOUBLE ||
(op.type.dims && (iPass!=0 || op.type.dims->number!=5)))
YError("illegal argument type in limits function");
op.ops->ToDouble(&op);
}
if (iPass==0) {
if (op.type.dims) new_limits= (double *)op.value;
else if (extreme) flags|= D_XMIN;
else xmin= *((double *)op.value);
changed|= 1;
} else if (iPass==1) {
if (extreme) flags|= D_XMAX;
else xmax= *((double *)op.value);
changed|= 2;
} else if (iPass==2) {
if (extreme) flags|= D_YMIN;
else ymin= *((double *)op.value);
changed|= 4;
} else if (iPass==3) {
if (extreme) flags|= D_YMAX;
else ymax= *((double *)op.value);
changed|= 8;
} else {
YError("limits takes at most 4 non-keyword arguments");
}
}
iPass++;
stack++;
}
/* retrieve current limits and flags */
GdGetLimits();
old_limits[0]= gistD.limits.xmin;
old_limits[1]= gistD.limits.xmax;
old_limits[2]= gistD.limits.ymin;
old_limits[3]= gistD.limits.ymax;
old_limits[4]= (double)gistD.flags;
/* process square=, nice=, restrict= keywords */
if (YNotNil(keySymbols[0])) {
if (new_limits) flags= 1;
else if (YGetInteger(keySymbols[0])) gistD.flags|= D_SQUARE;
else gistD.flags&= ~D_SQUARE;
changed|= 16;
}
if (YNotNil(keySymbols[1])) {
if (new_limits) flags= 1;
else if (YGetInteger(keySymbols[1])) gistD.flags|= D_NICE;
else gistD.flags&= ~D_NICE;
changed|= 16;
}
if (YNotNil(keySymbols[2])) {
if (new_limits) flags= 1;
else if (YGetInteger(keySymbols[2])) gistD.flags|= D_RESTRICT;
else gistD.flags&= ~D_RESTRICT;
changed|= 16;
}
if (new_limits) {
/* restore limits saved with previous limits command */
if (flags) YError("no keywords allowed when restoring saved limits");
gistD.limits.xmin= new_limits[0];
gistD.limits.xmax= new_limits[1];
gistD.limits.ymin= new_limits[2];
gistD.limits.ymax= new_limits[3];
gistD.flags= (int)new_limits[4];
} else if (nArgs) {
/* process xmin, xmax, ymin, ymax */
if (changed&1) {
gistD.limits.xmin= xmin;
if (flags&D_XMIN) gistD.flags|= D_XMIN;
else gistD.flags&= ~D_XMIN;
}
if (changed&2) {
gistD.limits.xmax= xmax;
if (flags&D_XMAX) gistD.flags|= D_XMAX;
else gistD.flags&= ~D_XMAX;
}
if (changed&4) {
gistD.limits.ymin= ymin;
if (flags&D_YMIN) gistD.flags|= D_YMIN;
else gistD.flags&= ~D_YMIN;
}
if (changed&8) {
gistD.limits.ymax= ymax;
if (flags&D_YMAX) gistD.flags|= D_YMAX;
else gistD.flags&= ~D_YMAX;
}
} else {
/* just reset to extreme values */
changed= (D_XMIN | D_XMAX | D_YMIN | D_YMAX);
gistD.flags|= changed;
}
/* set new limits in drawing */
if (changed) GdSetLimits();
Drop(nArgs);
if (!CalledAsSubroutine()) {
Array *array=
PushDataBlock(NewArray(&doubleStruct,
NewDimension(5L, 1L, (Dimension *)0)));
double *lims= array->value.d;
int i;
array->type.dims->references--;
for (i=0 ; i<5 ; i++) lims[i]= old_limits[i];
}
}
void Y_logxy(int nArgs)
{
int xflag= 0, yflag= 0, changed;
int iPass= 0;
Symbol *stack= sp-nArgs+1;
changed= 0;
while (stack<=sp) {
if (!stack->ops) YError("logxy takes no keyword arguments");
if (YNotNil(stack)) {
if (iPass==0) {
xflag= (YGetInteger(stack)!=0);
changed|= 1;
} else if (iPass==1) {
yflag= (YGetInteger(stack)!=0);
changed|= 2;
} else {
YError("logxy takes at most two arguments");
}
}
iPass++;
stack++;
}
if (changed) {
GdGetLimits();
if (changed&1) {
if (xflag) gistD.flags|= D_LOGX;
else gistD.flags&= ~D_LOGX;
}
if (changed&2) {
if (yflag) gistD.flags|= D_LOGY;
else gistD.flags&= ~D_LOGY;
}
GdSetLimits();
}
Drop(nArgs);
}
void Y_zoom_factor(int nArgs)
{
if (nArgs!=1) YError("zoom_factor takes exactly one argument");
DISPLAY_ZOOM_FACTOR= YGetReal(sp);
/* avert various disasters --
doesn't address DISPLAY_ZOOM_FACTOR==1.0, which would be frustrating... */
if (DISPLAY_ZOOM_FACTOR<0.0) DISPLAY_ZOOM_FACTOR= -DISPLAY_ZOOM_FACTOR;
if (DISPLAY_ZOOM_FACTOR<0.05) DISPLAY_ZOOM_FACTOR= 0.05;
else if (DISPLAY_ZOOM_FACTOR>20.0) DISPLAY_ZOOM_FACTOR= 20.0;
}
void Y_unzoom(int nArgs)
{
if (nArgs!=0) YError("unzoom takes exactly zero argument");
GdRevertLimits(1);
}
/*--------------------------------------------------------------------------*/
static char *windowNames[8]= {
"Yorick 0", "Yorick 1", "Yorick 2", "Yorick 3", "Yorick 4",
"Yorick 5", "Yorick 6", "Yorick 7" };
static void SetHCPDefault(void)
{
int i, j;
FILE *f;
char hcpName[16];
if (!hcpPSdefault) strcpy(hcpName, "Aa00.cgm");
else strcpy(hcpName, "Aa00.ps");
for (j='A' ; j<='Z' ; j++) {
hcpName[0]= j;
for (i='a' ; i<='z' ; i++) {
hcpName[1]= i;
if ((f= fopen(hcpName, "rb"))) fclose(f);
else goto got1;
}
}
YError("you appear to have Aa00 through Zz00 hcp files -- clean up");
got1:
if (!hcpPSdefault)
hcpDefault= GpCGMEngine("Yorick default", 0, hcpDump,
SetHCPname(-1, hcpName));
else
hcpDefault= GpPSEngine("Yorick default", 0, hcpDump,
SetHCPname(-1, hcpName));
if (!hcpDefault) YError("failed to create default hcp file");
}
static void CheckDefaultWindow(void)
{
int i;
for (i=0 ; i<8 ; i++) if (ghDevices[i].drawing) {
if (!ghDevices[i].display && !ghDevices[i].hcp) {
Drawing *drawing= ghDevices[i].drawing;
ghDevices[i].drawing= 0;
GdKillDrawing(drawing);
curElement= -1;
}
}
if (curPlotter<0) {
for (i=0 ; i<8 ; i++) if (ghDevices[i].drawing)
YError("graphics window killed -- use window command to re-select");
ghDevices[0].drawing=
GdNewDrawing(defaultStyle? defaultStyle : "work.gs");
curElement= -1;
if (!ghDevices[0].drawing)
YError("failed to create drawing -- Gist work.gs style sheet missing");
ghDevices[0].doLegends= defaultLegends;
#ifndef NO_XLIB
ghDevices[0].display=
DISPLAY_ENGINE(windowNames[0], 0, defaultDPI, (char *)0);
if (!ghDevices[0].display)
YError("failed to open X display or create X window");
#else
ghDevices[0].display= 0;
ghDevices[0].hcp= hcpDefault;
hcpDefault= 0;
#endif
curPlotter= 0;
GhSetPlotter(0);
}
}
static void CheckDefaultPalette(void)
{
GpColorCell *palette;
GhGetPalette(curPlotter, &palette);
if (!palette)
paletteSize= GhReadPalette(curPlotter,
defaultPalette? defaultPalette : "earth.gp",
&palette, maxColors);
}
static void CheckPalette(void)
{
int n= curPlotter;
if (n>=0 && !ghDevices[n].hcp) {
if (!hcpDefault) SetHCPDefault();
SetHCPPalette();
}
}
static char *SetHCPname(int n, char *name)
{
char *now;
if (n<0 || n>7) n= 8;
now= hcpNames[n];
hcpNames[n]= YExpandName(name);
StrFree(now);
return hcpNames[n];
}
static char *GetHCPname(int n)
{
if (n>=0 && n<8) return ghDevices[n].hcp? hcpNames[n] : hcpNames[8];
else return hcpNames[8];
}
#undef N_KEYWORDS
#define N_KEYWORDS 10
static char *windowKeys[N_KEYWORDS+1]= {
"display", "dpi", "private", "hcp", "legends", "dump", "style", "wait",
"width", "height", 0 };
void Y_window(int nArgs)
{
int n, nGiven;
Drawing *drawing;
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, windowKeys, keySymbols);
GpColorCell *palette;
int nColors= 0;
if (stack<=sp && YNotNil(stack++)) {
n= (int)YGetInteger(stack-1);
if (n<0 || n>7) YError("graphics windows are numbered from 0 to 7");
nGiven= (!ghDevices[n].display && !ghDevices[n].hcp);
} else {
n= curPlotter;
nGiven= (n<0);
if (nGiven) n= 0;
}
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("window function takes at most one non-keyword argument");
}
curElement= -1;
/* get current palette for this graphics window */
nColors= GhGetPalette(n, &palette);
/* check for width and height specs */
#ifndef NO_XLIB
if (YNotNil(keySymbols[8])) {
extern int gx75width, gx100width;
int width= (int)YGetInteger(keySymbols[8]);
if (width>30) gx75width= gx100width= width;
else { gx75width= 450; gx100width= 600; }
}
if (YNotNil(keySymbols[9])) {
extern int gx75height, gx100height;
int height= (int)YGetInteger(keySymbols[9]);
if (height>30) gx75height= gx100height= height;
else { gx75height= 450; gx100height= 600; }
}
#endif
if (nGiven || keySymbols[0] || keySymbols[1]) {
/* display= and/or dpi= keywords */
char *display= 0;
int dpi= defaultDPI;
Engine *engine= ghDevices[n].display; /* current display engine */
if (YNotNil(keySymbols[0])) display= YGetString(keySymbols[0]);
if (YNotNil(keySymbols[1])) {
if (engine) YError("cannot change dpi of an existing graphics window");
dpi= (int)YGetInteger(keySymbols[1]);
if (dpi!=100 && dpi!=75)
YError("dpi=100 or dpi=75 are only legal values");
}
if (engine) {
ghDevices[n].display= 0;
GpKillEngine(engine);
}
if (nGiven? (!display || display[0]) : (display && display[0])) {
#ifndef NO_XLIB
engine= DISPLAY_ENGINE(windowNames[n], 0, dpi, display);
if (!engine) YError("failed to open X display or create X window");
ghDevices[n].display= engine;
if (palette) GhSetPalette(n, palette, nColors);
#else
YError("No interactive graphics in this Yorick -- hcp only");
#endif
}
}
if (YNotNil(keySymbols[2])) {
/* private= keyword -- turn on/off private X window colormap */
if (!ghDevices[n].display)
YError("private= keyword not legal without display engine");
GhDumpColors(n, 0, YGetInteger(keySymbols[2])!=0);
}
if (keySymbols[3]) {
/* hcp= keyword -- make a new hcp file */
Engine *engine= ghDevices[n].hcp;
char *hcp= 0;
if (YNotNil(keySymbols[3])) hcp= YGetString(keySymbols[3]);
if (engine) {
ghDevices[n].hcp= 0;
GpKillEngine(engine);
SetHCPname(n, (char *)0);
}
if (hcp && hcp[0]) {
long len= strlen(hcp);
if (len>3 && strcmp(&hcp[len-3], ".ps")==0) {
engine= GpPSEngine(windowNames[n], 0, hcpDump, SetHCPname(n, hcp));
if (!engine) YError("failed to create PostScript file");
} else {
engine= GpCGMEngine(windowNames[n], 0, hcpDump, SetHCPname(n, hcp));
if (!engine) YError("failed to create binary CGM file");
}
ghDevices[n].hcp= engine;
if (palette) GhSetPalette(n, palette, nColors);
}
}
if (keySymbols[4] || keySymbols[3] ||
nGiven || keySymbols[0] || keySymbols[1]) {
if (YNotNil(keySymbols[4]))
/* legends= keyword -- turn on/off legend dumping to hcp file */
ghDevices[n].doLegends= (YGetInteger(keySymbols[4])!=0);
else
ghDevices[n].doLegends= defaultLegends;
}
if (YNotNil(keySymbols[5])) {
/* dump= keyword -- turn on/off colormap dumping to hcp file */
if (!ghDevices[n].hcp)
YError("dump= keyword not legal without hcp engine -- use hcp_file");
GhDumpColors(n, 1, (YGetInteger(keySymbols[5])!=0));
}
if (!ghDevices[n].display && !ghDevices[n].hcp) {
/* shut down this graphics window completely */
drawing= ghDevices[n].drawing;
ghDevices[n].drawing= 0;
if (drawing) GdKillDrawing(drawing);
GhDeletePalette(n);
paletteSize= 0;
if (n==curPlotter) {
/* highest numbered remaining window becomes current window */
for (n=7 ; n>=0 ; n--)
if (ghDevices[n].display || ghDevices[n].hcp) break;
curPlotter= n;
GhSetPlotter(n);
if (n>=0) {
Engine *engine= ghDevices[n].display;
if (!engine) engine= ghDevices[n].hcp;
if (engine) paletteSize= GpGetPalette(engine, &palette);
}
}
} else {
if (keySymbols[6]) {
/* style= keyword -- make new drawing */
char *style= YNotNil(keySymbols[6]) ? YGetString(keySymbols[6]) : 0;
drawing= ghDevices[n].drawing;
if (drawing) {
ghDevices[n].drawing= 0;
GdKillDrawing(drawing);
}
if (!style || !style[0]) style= defaultStyle;
ghDevices[n].drawing= drawing= GdNewDrawing(style? style : "work.gs");
} else if (!ghDevices[n].drawing) {
/* supply default drawing */
ghDevices[n].drawing= drawing=
GdNewDrawing(defaultStyle? defaultStyle : "work.gs");
} else {
drawing= ghDevices[n].drawing;
}
if (!drawing) {
ghDevices[n].drawing= drawing= GdNewDrawing("work.gs");
if (drawing)
YError("failed to create drawing -- bad style sheet name?");
else
YError("failed to create drawing -- Gist work.gs style sheet missing");
}
/* make this window current */
curPlotter= n;
GhSetPlotter(n);
paletteSize= nColors;
/* wait= keyword -- pause until X window is exposed */
if (YNotNil(keySymbols[7]) && YGetInteger(keySymbols[7]))
GhWaitDisplay();
}
Drop(nArgs);
PushLongValue((long)n);
}
#undef N_KEYWORDS
#define N_KEYWORDS 2
static char *hcpKeys[N_KEYWORDS+1]= { "dump", "ps", 0 };
void Y_hcp_file(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, hcpKeys, keySymbols);
Engine *engine= hcpDefault;
int gotDump= YNotNil(keySymbols[0]);
if (gotDump) hcpDump= (YGetInteger(keySymbols[0])!=0);
if (YNotNil(keySymbols[1])) hcpPSdefault= (YGetInteger(keySymbols[1])!=0);
if (stack<=sp && YNotNil(stack)) {
char *hcp= YGetString(stack);
long len= Safe_strlen(hcp);
if (engine) {
hcpDefault= 0;
GpKillEngine(engine);
SetHCPname(-1, (char *)0);
engine= 0;
}
if (len>3 && strcmp(&hcp[len-3], ".ps")==0) {
engine= GpPSEngine("Yorick default", 0, hcpDump, SetHCPname(-1, hcp));
if (!engine) YError("failed to create PostScript file");
} else if (len>0) {
engine= GpCGMEngine("Yorick default", 0, hcpDump, SetHCPname(-1, hcp));
if (!engine) YError("failed to create binary CGM file");
}
hcpDefault= engine;
stack++;
} else if (gotDump) {
GhDumpColors(-1, 1, hcpDump);
}
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("hcp_file function takes at most one non-keyword argument");
}
Drop(nArgs);
}
void Y_hcp_finish(int nArgs)
{
/* just return name of current hcp file */
int n= curPlotter;
Array *array;
Engine *engine;
if (nArgs==1) {
if (YNotNil(sp)) n= YGetInteger(sp);
if (n<-1 || n>7)
YError("hcp_finish argument must be -1 through 7 inclusive");
} else if (nArgs) {
YError("hcp_finish takes zero or one arguments");
}
array= PushDataBlock(NewArray(&stringStruct, (Dimension *)0));
array->value.q[0]= StrCpy(GetHCPname(n));
if (n>=0) engine= ghDevices[n].hcp? ghDevices[n].hcp : hcpDefault;
else engine= hcpDefault;
if (engine) {
if (engine==hcpDefault) {
hcpDefault= 0;
} else {
ghDevices[n].hcp= 0;
}
GpKillEngine(engine);
SetHCPname(n, (char *)0);
}
}
void Y_plsys(int nArgs)
{
int n0;
if (nArgs!=1) YError("plsys takes exactly one argument");
CheckDefaultWindow();
n0= GdGetSystem();
if (YNotNil(sp)) {
int n= (int)YGetInteger(sp);
if (GdSetSystem(n)!=E_SYSTEM && n!=0)
YError("no such coordinate system exists in current graphics window");
}
PushLongValue((long)n0);
}
#undef N_KEYWORDS
#define N_KEYWORDS 2
static char *paletteKeys[N_KEYWORDS+1]= { "ntsc", "query", 0 };
void Y_palette(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, paletteKeys, keySymbols);
Operand op;
GpColorCell *palette= 0;
unsigned char *red= 0, *green= 0, *blue= 0, *gray= 0;
int i, iPass, nColors, nDevice, query= 0;
Engine *engine;
int sourceDevice= -2;
char **name= 0;
CheckDefaultWindow();
nDevice= curPlotter;
engine= ghDevices[nDevice].display;
if (!engine) engine= ghDevices[nDevice].hcp;
if (YNotNil(keySymbols[1])) {
Dimension *dims= tmpDims;
tmpDims= 0;
FreeDimension(dims);
query= (YGetInteger(keySymbols[1])!=0);
}
iPass= nColors= 0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass>3)
YError("palette takes at most red, green, blue, gray arguments");
if (query) {
if (stack->ops!=&referenceSym)
YError("palette query needs simple variable references as arguments");
if (iPass==0) nColors= GpGetPalette(engine, &palette);
if (nColors>0) {
Array *array;
tmpDims= NewDimension((long)nColors, 1L, (Dimension *)0);
array= PushDataBlock(NewArray(&charStruct, tmpDims));
red= (unsigned char *)array->value.c;
if (iPass==0)
for (i=0 ; i<nColors ; i++) red[i]= palette[i].red;
else if (iPass==1)
for (i=0 ; i<nColors ; i++) red[i]= palette[i].green;
else if (iPass==2)
for (i=0 ; i<nColors ; i++) red[i]= palette[i].blue;
else if (iPass==3)
for (i=0 ; i<nColors ; i++) red[i]= palette[i].gray;
} else {
PushDataBlock(Ref(&nilDB));
}
PopTo(&globTab[stack->index]);
} else {
stack->ops->FormOperand(stack, &op);
if (iPass==0) {
if (op.ops==&stringOps) {
/* palette, filename */
name= op.value;
} else if (!op.type.dims) {
/* palette, source_window */
if (op.ops->promoteID>T_LONG)
YError("palette source window number must be an integer");
op.ops->ToLong(&op);
sourceDevice= (int)(*((long *)op.value));
if (sourceDevice<0 || sourceDevice>=7 ||
(!(engine= ghDevices[sourceDevice].display) &&
!(engine= ghDevices[sourceDevice].hcp)))
YError("specified palette source window does not exist");
nColors= GpGetPalette(engine, &palette);
} else {
/* palette, red, green, blue */
op.ops->ToChar(&op);
red= op.value;
nColors= (int)op.type.number;
}
if (nColors>256)
YError("Gist palettes can never have more than 256 colors");
} else {
/* palette, red, green, blue */
if (!red) YError("garbled arguments to palette command");
op.ops->ToChar(&op);
if (op.type.number != nColors)
YError("red, green, blue, and gray arguments must be same length");
if (iPass==1) green= op.value;
if (iPass==2) blue= op.value;
if (iPass==3) gray= op.value;
}
}
iPass++;
stack++;
}
if (!query) {
if (sourceDevice!=nDevice) {
/* be sure to preserve dump=1 setting even if hcp palette
is deleted */
int dump;
if (hcpDefault) dump= GhGetColorMode(hcpDefault);
else dump= 0;
GhDeletePalette(nDevice);
paletteSize= 0;
if (hcpDefault) GhDumpColors(-1, 1, dump);
}
if (red) {
if (iPass<3)
YError("palette needs at least red, green, and blue components");
/* palette is unprotected against asynchronous interrupts...
fix this someday */
palette= Ymalloc(sizeof(GpColorCell)*nColors);
for (i=0 ; i<nColors ; i++) {
palette[i].red= red[i];
palette[i].green= green[i];
palette[i].blue= blue[i];
if (gray) palette[i].gray= gray[i];
}
if (!gray) {
if (YNotNil(keySymbols[0]) && YGetInteger(keySymbols[0])!=0)
GpPutNTSC(nColors, palette);
else
GpPutGray(nColors, palette);
}
GhSetPalette(nDevice, palette, nColors);
paletteSize= nColors;
} else if (name) {
nColors= GhReadPalette(nDevice, name[0], &palette, maxColors);
if (nColors<=0)
YError("no such palette -- missing Gist palette file?");
} else {
YError("palette needs at least one non-keyword argument");
}
paletteSize= nColors;
}
}
/*--------------------------------------------------------------------------*/
void Y_fma(int nArgs)
{
if (nArgs) YError("fma takes exactly zero argument");
CheckDefaultWindow();
if (hcpOnFMA) CheckPalette();
curElement= -1;
GhFMA();
}
void Y_redraw(int nArgs)
{
if (nArgs) YError("redraw takes exactly zero argument");
CheckDefaultWindow();
GhRedraw();
}
void Y_hcp(int nArgs)
{
if (nArgs) YError("hcp takes exactly zero argument");
CheckDefaultWindow();
CheckPalette();
GhHCP();
}
void Y_hcpon(int nArgs)
{
if (nArgs) YError("hcpon takes exactly zero argument");
CheckDefaultWindow();
hcpOnFMA= 1;
GhFMAMode(1, 2);
}
void Y_hcpoff(int nArgs)
{
if (nArgs) YError("hcpoff takes exactly zero argument");
CheckDefaultWindow();
hcpOnFMA= 0;
GhFMAMode(0, 2);
}
void Y_animate(int nArgs)
{
int i= 3; /* default is to toggle */
if (nArgs==1 && YNotNil(sp)) i= (int)YGetInteger(sp);
else if (nArgs>1) YError("animate takes zero or one argument");
CheckDefaultWindow();
curElement= -1;
GhFMAMode(2, i);
}
/*--------------------------------------------------------------------------*/
static long prop3sizes[10]= {0, 8, 2, 5, 5, 3, 3, 7, 0, 0};
static long prop4sizes[10]= {0, 8, 1, 3, 1, 1, 3, 4, 4, 0};
static long prop5sizes[10]= {0, 3, 5, 2, 5, 6, 7, 9, 3, 5};
static int curIX= -1, curIXc= -1;
static char specialMarkers[5]= ".+*ox";
void Y_plq(int nArgs)
{
int type, n_element= 0, n_contour= 0;
if (nArgs==1) {
if (YNotNil(sp)) n_element= (int)YGetInteger(sp);
} else if (nArgs==2) {
if (YNotNil(sp-1)) n_element= (int)YGetInteger(sp-1);
if (YNotNil(sp)) n_contour= (int)YGetInteger(sp);
} else if (nArgs>2) {
YError("plq function takes no more than two arguments");
}
Drop(nArgs);
/* Yorick uses 1-origin element numbering, Gist uses 0-origin */
n_element--;
n_contour--;
if (n_element>=0) {
/* retrieve specified element */
type= GdSetElement(n_element);
if (n_contour>=0) {
if (type!=E_CONTOURS)
YError("current graphical element is not contours in pledit");
type= GdSetContour(n_contour);
}
curElement= -6666; /* differs from -1 to allow pledit after plq */
curIX= n_element; /* need these, too */
curIXc= n_contour;
if (type==E_LINES) type= 1;
else if (type==E_DISJOINT) type= 2;
else if (type==E_TEXT) type= 3;
else if (type==E_MESH) type= 4;
else if (type==E_FILLED) type= 5;
else if (type==E_VECTORS) type= 6;
else if (type==E_CONTOURS) type= 7;
else if (type==E_CELLS) type= 8;
else if (type==E_POLYS) type= 9;
else type= 0;
if (CalledAsSubroutine()) {
/* return printed summary of keyword values */
char line[120];
PrintInit(YputsOut);
if (type==0) {
sprintf(line, "<no such object> element# %d", n_element+1);
PrintFunc(line);
if (n_contour>=0) {
sprintf(line, " contour# %d", n_contour+1);
PrintFunc(line);
}
ForceNewline();
} else if (type==1) {
sprintf(line, "plg element# %d", n_element+1);
PrintFunc(line);
if (n_contour>=0) {
sprintf(line, " contour# %d", n_contour+1);
PrintFunc(line);
ForceNewline();
sprintf(line, " at level value %g", gistD.levels[n_contour]);
PrintFunc(line);
}
ForceNewline();
PrintHideLegend(line, type);
PrintColor(line, gistA.l.color, 1);
PrintTypeWidth(line, 3);
PrintMarks(line, 3);
sprintf(line, "rays= %d,", gistA.dl.rays);
PrintFunc(line);
ForceNewline();
sprintf(line,
" arrowl= %.2f, arroww= %.2f, rspace= %.5f, rphase= %.5f,",
Safe_dbl(gistA.dl.arrowL), Safe_dbl(gistA.dl.arrowW),
Safe_dbl(gistA.dl.rSpace), Safe_dbl(gistA.dl.rPhase));
PrintFunc(line);
ForceNewline();
sprintf(line, "smooth= %d, closed= %d",
gistA.dl.smooth, gistA.dl.closed);
PrintFunc(line);
ForceNewline();
} else if (type==2) {
sprintf(line, "pldj element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
PrintColor(line, gistA.l.color, 1);
PrintTypeWidth(line, 2);
} else if (type==3) {
sprintf(line, "plt element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
PrintColor(line, gistA.t.color, 3);
sprintf(line, "text= %.80s", gistD.text);
PrintFunc(line);
ForceNewline();
} else if (type==4) {
sprintf(line, "plm element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
PrintColor(line, gistA.l.color, 1);
PrintTypeWidth(line, 2);
PrintRegion(line, 1);
sprintf(line, "boundary= %d, inhibit= %d", gistD.boundary,
gistD.inhibit);
PrintFunc(line);
ForceNewline();
} else if (type==5) {
sprintf(line, "plf element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
sprintf(line, "edges= %d, e", gistA.e.type!=L_NONE);
PrintFunc(line);
PrintColor(line, gistA.e.color, 1);
sprintf(line, "ewidth= %.2f", Safe_dbl(gistA.e.width));
PrintFunc(line);
ForceNewline();
PrintRegion(line, 2);
} else if (type==6) {
sprintf(line, "plv element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
PrintColor(line, gistA.l.color, 1);
sprintf(line, "width= %.2f,", Safe_dbl(gistA.l.width));
PrintFunc(line);
ForceNewline();
sprintf(line, "hollow= %d, aspect= %.4f,", gistA.vect.hollow,
Safe_dbl(gistA.vect.aspect));
PrintFunc(line);
ForceNewline();
PrintRegion(line, 3);
sprintf(line, "scale= %g", gistD.scale);
PrintFunc(line);
ForceNewline();
} else if (type==7) {
int i;
sprintf(line, "plc element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
PrintColor(line, gistA.l.color, 1);
PrintTypeWidth(line, 3);
PrintMarks(line, 3);
sprintf(line, "smooth= %d,", gistA.dl.smooth);
PrintFunc(line);
ForceNewline();
PrintRegion(line, 2);
sprintf(line, "%d contour levels, levs=", gistD.nLevels);
PrintFunc(line);
ForceNewline();
PrintFunc("[");
if (gistD.nLevels>0) {
for (i=0 ; ; i++) {
sprintf(line, "%g", gistD.levels[i]);
PrintFunc(line);
if (i==gistD.nLevels-1) break;
PrintFunc(",");
PermitNewline(0);
}
}
PrintFunc("]");
ForceNewline();
} else if (type==8) {
sprintf(line, "pli element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
sprintf(line, "x0= %g, y0= %g, x1= %g, y1= %g",
gistD.px, gistD.py, gistD.qx, gistD.qy);
PrintFunc(line);
ForceNewline();
} else if (type==9) {
sprintf(line, "plfp element# %d", n_element+1);
PrintFunc(line);
ForceNewline();
PrintHideLegend(line, type);
sprintf(line, "%d polygons", gistD.n);
PrintFunc(line);
ForceNewline();
}
} else {
/* return properties array */
Dimension *dims= NewDimension(6L, 1L, (Dimension *)0);
Array *array= PushDataBlock(NewArray(&pointerStruct, dims));
void **p= array->value.p;
char **legend;
int *ival;
double *dval;
long *lval;
dims->references--;
dims= NewDimension(2L, 1L, (Dimension *)0);
p[0]= (NewArray(&intStruct, dims))->value.c;
dims->references--;
p[1]= (NewArray(&stringStruct, (Dimension *)0))->value.c;
p[2]= MakePropArray(&intStruct, prop3sizes[type]);
p[3]= MakePropArray(&doubleStruct, prop4sizes[type]);
p[4]= MakePropArray(&longStruct, prop5sizes[type]);
ival= (int *)p[0];
ival[0]= type;
ival[1]= type? gistD.hidden : 0;
if (type) {
legend= (char **)p[1];
legend[0]= StrCpy(gistD.legend);
if ((type==1 || type==7) && legend[0] && legend[0][0]=='\001') {
if (gistA.m.type>=' ' && gistA.m.type<'\177')
legend[0][0]= (char)gistA.m.type;
else if (gistA.m.type>=1 && gistA.m.type<=5)
legend[0][0]= specialMarkers[gistA.m.type-1];
else
legend[0][0]= '?';
}
}
ival= (int *)p[2];
dval= (double *)p[3];
lval= (long *)p[4];
if (type==1) { /* plg */
ival[0]= gistA.l.color;
ival[1]= gistA.l.type;
ival[2]= gistA.dl.marks;
ival[3]= gistA.m.color;
ival[4]= gistA.m.type;
ival[5]= gistA.dl.rays;
ival[6]= gistA.dl.closed;
ival[7]= gistA.dl.smooth;
dval[0]= gistA.l.width;
dval[1]= gistA.m.size;
dval[2]= gistA.dl.mSpace;
dval[3]= gistA.dl.mPhase;
dval[4]= gistA.dl.rSpace;
dval[5]= gistA.dl.rPhase;
dval[6]= gistA.dl.arrowL;
dval[7]= gistA.dl.arrowW;
lval[0]= gistD.n;
lval[1]= ((char *)gistD.x)-((char *)0);
lval[2]= ((char *)gistD.y)-((char *)0);
} else if (type==2) { /* pldj */
ival[0]= gistA.l.color;
ival[1]= gistA.l.type;
dval[0]= gistA.l.width;
lval[0]= gistD.n;
lval[1]= ((char *)gistD.x)-((char *)0);
lval[2]= ((char *)gistD.y)-((char *)0);
lval[3]= ((char *)gistD.xq)-((char *)0);
lval[4]= ((char *)gistD.yq)-((char *)0);
} else if (type==3) { /* plt */
ival[0]= gistA.t.color;
ival[1]= gistA.t.font;
ival[2]= gistA.t.orient;
ival[3]= (gistA.t.alignH | (gistA.t.alignV<<2));
ival[4]= gistA.t.opaque;
dval[0]= gistA.t.height/ONE_POINT;
dval[1]= gistD.x0;
dval[2]= gistD.y0;
lval[0]= Safe_strlen(gistD.text);
lval[1]= ((char *)gistD.text)-((char *)0);
} else if (type==4) { /* plm */
ival[0]= gistA.l.color;
ival[1]= gistA.l.type;
ival[2]= gistD.region;
ival[3]= gistD.boundary;
ival[4]= gistD.inhibit;
dval[0]= gistA.l.width;
lval[0]= gistD.mesh.iMax;
lval[1]= gistD.mesh.jMax;
lval[2]= ((char *)gistD.mesh.x)-((char *)0);
lval[3]= ((char *)gistD.mesh.y)-((char *)0);
lval[4]= ((char *)gistD.mesh.reg)-((char *)0);
} else if (type==5) { /* plf */
ival[0]= gistD.region;
ival[1]= gistA.e.type!=L_NONE;
ival[2]= gistA.e.color;
dval[0]= gistA.e.width;
lval[0]= gistD.mesh.iMax;
lval[1]= gistD.mesh.jMax;
lval[2]= ((char *)gistD.mesh.x)-((char *)0);
lval[3]= ((char *)gistD.mesh.y)-((char *)0);
lval[4]= ((char *)gistD.mesh.reg)-((char *)0);
lval[5]= ((char *)gistD.colors)-((char *)0);
} else if (type==6) { /* plv */
ival[0]= gistD.region;
ival[1]= gistA.l.color;
ival[2]= gistA.vect.hollow;
dval[0]= gistA.l.width;
dval[1]= gistA.vect.aspect;
dval[2]= gistD.scale;
lval[0]= gistD.mesh.iMax;
lval[1]= gistD.mesh.jMax;
lval[2]= ((char *)gistD.mesh.x)-((char *)0);
lval[3]= ((char *)gistD.mesh.y)-((char *)0);
lval[4]= ((char *)gistD.mesh.reg)-((char *)0);
lval[5]= ((char *)gistD.u)-((char *)0);
lval[6]= ((char *)gistD.v)-((char *)0);
} else if (type==7) { /* plc */
ival[0]= gistD.region;
ival[1]= gistA.l.color;
ival[2]= gistA.l.type;
ival[3]= gistA.dl.marks;
ival[4]= gistA.m.color;
ival[5]= gistA.m.type;
ival[6]= gistA.dl.smooth;
dval[0]= gistA.l.width;
dval[1]= gistA.m.size;
dval[2]= gistA.dl.mSpace;
dval[3]= gistA.dl.mPhase;
lval[0]= gistD.mesh.iMax;
lval[1]= gistD.mesh.jMax;
lval[2]= ((char *)gistD.mesh.x)-((char *)0);
lval[3]= ((char *)gistD.mesh.y)-((char *)0);
lval[4]= ((char *)gistD.mesh.reg)-((char *)0);
lval[5]= ((char *)gistD.z)-((char *)0);
lval[6]= ((char *)gistD.mesh.triangle)-((char *)0);
lval[7]= gistD.nLevels;
lval[8]= ((char *)gistD.levels)-((char *)0);
} else if (type==8) { /* pli */
dval[0]= gistD.px;
dval[1]= gistD.py;
dval[2]= gistD.qx;
dval[3]= gistD.qy;
lval[0]= gistD.nColumns;
lval[1]= gistD.height;
lval[2]= ((char *)gistD.colors)-((char *)0);
} else if (type==9) { /* plfp */
lval[0]= gistD.n;
lval[1]= ((char *)gistD.x)-((char *)0);
lval[2]= ((char *)gistD.y)-((char *)0);
lval[3]= ((char *)gistD.colors)-((char *)0);
lval[4]= ((char *)gistD.pn)-((char *)0);
}
}
} else if (n_contour>=0) {
YError("contour number cannot be specified without element number");
} else {
char line[16];
int i, offset;
/* print list of legends... */
if (CalledAsSubroutine()) {
/* ...to terminal */
PrintInit(YputsOut);
} else {
/* ...to result string array */
PrintInit(&PutsAsArray);
PushDataBlock(NewArray(&stringStruct, (Dimension *)0));
}
curElement= -1;
for (i=0 ; (type= GdSetElement(i))!=E_NONE ; i++) {
sprintf(line, "%s%2d: ", gistD.hidden?"(H)":"", i+1);
PrintFunc(line);
offset= 0;
if ((type==E_LINES || type==E_CONTOURS) && gistD.legend &&
gistD.legend[0]=='\001') {
char marker[2];
marker[1]= '\0';
if (gistA.m.type>=' ' && gistA.m.type<'\177')
marker[0]= (char)gistA.m.type;
else if (gistA.m.type>=1 && gistA.m.type<=5)
marker[0]= specialMarkers[gistA.m.type-1];
else
marker[0]= '?';
PrintFunc(marker);
offset= 1;
}
if (gistD.legend) PrintFunc(gistD.legend+offset);
ForceNewline();
}
}
}
static void PrintHideLegend(char *line, int type)
{
int offset= 0;
char marker[5];
marker[0]= '\0';
sprintf(line, "hide= %d,", gistD.hidden);
PrintFunc(line);
ForceNewline();
if ((type==1 || type==7) && gistD.legend && gistD.legend[0]=='\001') {
marker[0]= '\\';
marker[1]= marker[2]= '0';
marker[3]= '1';
marker[4]= '\0';
offset= 1;
}
sprintf(line, "legend= \"%s%.104s\",", marker,
gistD.legend? gistD.legend+offset : "");
PrintFunc(line);
ForceNewline();
}
static void PrintColor(char *line, int color, int suffix)
{
if (color>=0) {
sprintf(line, "color= %d,", color);
PrintFunc(line);
} else if (color==FG_COLOR) PrintFunc("color= \"fg\"");
else if (color==BG_COLOR) PrintFunc("color= \"bg\"");
else if (color==RED_COLOR) PrintFunc("color= \"red\"");
else if (color==GREEN_COLOR) PrintFunc("color= \"green\"");
else if (color==BLUE_COLOR) PrintFunc("color= \"blue\"");
else if (color==CYAN_COLOR) PrintFunc("color= \"cyan\"");
else if (color==MAGENTA_COLOR) PrintFunc("color= \"magenta\"");
else if (color==YELLOW_COLOR) PrintFunc("color= \"yellow\"");
else if (color==GREEN_COLOR) PrintFunc("color= \"green\"");
else PrintFunc("color= <unknown>");
PrintSuffix(suffix);
}
static void PrintTypeWidth(char *line, int suffix)
{
if (gistA.l.type==L_NONE) PrintFunc("type= \"none\"");
else if (gistA.l.type==L_SOLID) PrintFunc("type= \"solid\"");
else if (gistA.l.type==L_DASH) PrintFunc("type= \"dash\"");
else if (gistA.l.type==L_DOT) PrintFunc("type= \"dot\"");
else if (gistA.l.type==L_DASHDOT) PrintFunc("type= \"dashdot\"");
else if (gistA.l.type==L_DASHDOTDOT) PrintFunc("type= \"dashdotdot\"");
else PrintFunc("type= <unknown>");
sprintf(line, ", width= %.2f", Safe_dbl(gistA.l.width));
PrintFunc(line);
PrintSuffix(suffix);
}
static void PrintMarks(char *line, int suffix)
{
sprintf(line, "marks= %d, mcolor= %d, ", gistA.dl.marks, gistA.m.color);
PrintFunc(line);
if (gistA.m.type<=' ' || gistA.m.type>=0xff)
sprintf(line, "marker= '\\%o',", gistA.m.type);
else
sprintf(line, "marker= '%c',", gistA.m.type);
PrintFunc(line);
ForceNewline();
sprintf(line,
" msize= %.2f, mspace= %.5f, mphase= %.5f",
Safe_dbl(gistA.m.size),
Safe_dbl(gistA.dl.mSpace), Safe_dbl(gistA.dl.mPhase));
PrintFunc(line);
PrintSuffix(suffix);
}
static void PrintRegion(char *line, int suffix)
{
sprintf(line, "region= %d", gistD.region);
PrintFunc(line);
PrintSuffix(suffix);
}
static void PrintSuffix(int suffix)
{
if (suffix==1) PrintFunc(", ");
else if (suffix==3) PrintFunc(",");
if (suffix&2) ForceNewline();
}
static double Safe_dbl(double x)
{
if (x>1000.0) return 1000.0;
else if (x<-1000.0) return -1000.0;
else return x;
}
static void *MakePropArray(StructDef *base, long size)
{
Array *array;
if (!size) return 0;
array= NewArray(base, NewDimension(size, 1L, (Dimension *)0));
array->type.dims->references--;
return array->value.c;
}
/*--------------------------------------------------------------------------*/
#undef N_KEYWORDS
#define N_KEYWORDS 36
static char *editKeys[N_KEYWORDS+1]= {
"legend", "hide",
"color", "type", "width",
"marks", "mcolor", "marker", "msize", "mspace", "mphase",
"rays", "arrowl", "arroww", "rspace", "rphase", "closed", "smooth",
"font", "height", "orient", "justify", "opaque",
"hollow", "aspect", "region", "boundary", "levs", "scale", "scalem",
"dx", "dy", "edges", "ecolor", "ewidth", "inhibit", 0 };
void Y_pledit(int nArgs)
{
int type= 0, n_element= 0, n_contour= 0;
int changes= 0, resetLevs= 0;
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, editKeys, keySymbols);
int iPass= 0;
char *legend= 0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) {
if (YNotNil(stack)) n_element= (int)YGetInteger(stack);
} else if (iPass==1) {
if (YNotNil(stack)) n_contour= (int)YGetInteger(stack);
} else {
YError("pledit takes at most two non-keyword arguments");
}
iPass++;
stack++;
}
/* Yorick uses 1-origin element numbering, Gist uses 0-origin */
n_element--;
n_contour--;
if (n_element<0) {
if (curElement>=0) {
n_element= GdFindIndex(curElement);
if (n_element<0) {
curElement= -1;
YError("lost current graphical element for pledit (BUG?)");
}
} else if (curElement==-6666) {
n_element= curIX;
n_contour= curIXc;
} else {
YError("no current graphical element for pledit");
}
}
if (n_element>=0 || n_contour>=0) {
/* retrieve specified element */
if (n_element>=0) type= GdSetElement(n_element);
if (n_contour>=0) {
if (type!=E_CONTOURS)
YError("current graphical element is not contours in pledit");
type= GdSetContour(n_contour);
}
curElement= -6666; /* differs from -1 to allow pledit after plq */
curIX= n_element; /* need these, too */
curIXc= n_contour;
if (type==E_LINES) type= 1;
else if (type==E_DISJOINT) type= 2;
else if (type==E_TEXT) type= 3;
else if (type==E_MESH) type= 4;
else if (type==E_FILLED) type= 5;
else if (type==E_VECTORS) type= 6;
else if (type==E_CONTOURS) type= 7;
else if (type==E_CELLS) type= 8;
else type= 0;
if (type==0) YError("no such graphical element for pledit");
}
/* legend and hide */
if (keySymbols[0] && YNotNil(keySymbols[0]))
legend= YGetString(keySymbols[0]);
if (YNotNil(keySymbols[1])) gistD.hidden= (YGetInteger(keySymbols[1])!=0);
/* GdLines properties */
if (YNotNil(keySymbols[2]))
gistA.l.color= gistA.m.color= gistA.f.color=
gistA.t.color= GetColor(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.l.type= GetLineType(keySymbols[3]);
if (YNotNil(keySymbols[4]))
gistA.l.width= YGetReal(keySymbols[4]);
if (YNotNil(keySymbols[5]))
gistA.dl.marks= (YGetInteger(keySymbols[5])!=0);
if (YNotNil(keySymbols[6]))
gistA.m.color= GetColor(keySymbols[6]);
if (YNotNil(keySymbols[7]))
gistA.m.type= (int)YGetInteger(keySymbols[7]);
if (YNotNil(keySymbols[8]))
gistA.m.size= YGetReal(keySymbols[8]);
if (YNotNil(keySymbols[9]))
gistA.dl.mSpace= YGetReal(keySymbols[9]);
if (YNotNil(keySymbols[10]))
gistA.dl.mPhase= YGetReal(keySymbols[10]);
if (YNotNil(keySymbols[11]))
gistA.dl.rays= (YGetInteger(keySymbols[11])!=0);
if (YNotNil(keySymbols[12]))
gistA.dl.arrowL= YGetReal(keySymbols[12]);
if (YNotNil(keySymbols[13]))
gistA.dl.arrowW= YGetReal(keySymbols[13]);
if (YNotNil(keySymbols[14]))
gistA.dl.rSpace= YGetReal(keySymbols[14]);
if (YNotNil(keySymbols[15]))
gistA.dl.rPhase= YGetReal(keySymbols[15]);
if (YNotNil(keySymbols[16]))
gistA.dl.closed= (YGetInteger(keySymbols[16])!=0);
if (YNotNil(keySymbols[17]))
gistA.dl.smooth= (YGetInteger(keySymbols[17])!=0);
/* GdText properties */
if (YNotNil(keySymbols[18]))
gistA.t.font= GetFont(keySymbols[18]);
if (YNotNil(keySymbols[19]))
gistA.t.height= YGetReal(keySymbols[19])*ONE_POINT;
if (YNotNil(keySymbols[20]))
gistA.t.orient= YGetInteger(keySymbols[20]);
if (YNotNil(keySymbols[21]))
GetJustify(keySymbols[21]);
if (YNotNil(keySymbols[22]))
gistA.t.opaque= (YGetInteger(keySymbols[22])!=0);
if (!gistA.t.orient) {
gistA.t.orient= TX_RIGHT;
} else {
if (gistA.t.orient==1) gistA.t.orient= TX_UP;
else if (gistA.t.orient==2) gistA.t.orient= TX_LEFT;
else if (gistA.t.orient==3) gistA.t.orient= TX_DOWN;
else {
gistA.t.orient= TX_RIGHT;
YError("orient= keyword must be 0, 1, 2, or 3");
}
}
/* GdVectors properties */
if (YNotNil(keySymbols[23]))
gistA.vect.hollow= (YGetInteger(keySymbols[23])!=0);
if (YNotNil(keySymbols[24]))
gistA.vect.aspect= YGetReal(keySymbols[24]);
if (YNotNil(keySymbols[25])) { /* region */
if (type<4 || type>7)
YError("region= in pledit allowed only for plm, plf, plv, plc");
gistD.region= (int)YGetInteger(keySymbols[25]);
}
if (YNotNil(keySymbols[26])) { /* boundary */
if (type!=4) YError("boundary= in pledit allowed only for plm");
gistD.boundary= (YGetInteger(keySymbols[26])!=0);
}
if (YNotNil(keySymbols[27])) { /* levs */
double *levels;
long nLevels= 0;
if (type!=7) YError("levs= in pledit allowed only for plc");
levels= Get1Ddouble(keySymbols[27], &nLevels);
if (!levels)
YError("pledit cannot recompute default contour levels");
levels= CopyLevels(levels, nLevels);
/* WARNING --
this is a critical code section, since until GdEdit successfully
completes, Gist owns a pointer to the freed levels -- no way to
gracefully avoid this without "knowing" more about guts of Gist's
data structures than seem reasonable here... */
GmFree(gistD.levels);
gistD.levels= levels;
gistD.nLevels= nLevels;
changes|= CHANGE_Z;
resetLevs= 1;
}
if (YNotNil(keySymbols[28])) { /* scale */
if (type!=6) YError("scale= in pledit allowed only for plv");
gistD.scale= YGetReal(keySymbols[28]);
}
if (YNotNil(keySymbols[29])) { /* scalem */
if (type!=6) YError("scalem= in pledit allowed only for plv");
gistD.scale*= YGetReal(keySymbols[29]);
}
if (YNotNil(keySymbols[30])) { /* dx */
if (type!=3) YError("dx= in pledit allowed only for plt");
gistD.x0+= YGetReal(keySymbols[30]);
}
if (YNotNil(keySymbols[31])) { /* dy */
if (type!=3) YError("dy= in pledit allowed only for plt");
gistD.y0+= YGetReal(keySymbols[31]);
}
if (YNotNil(keySymbols[32]))
gistA.e.type= YGetInteger(keySymbols[32])? L_SOLID : L_NONE;
if (YNotNil(keySymbols[33]))
gistA.e.color= GetColor(keySymbols[33]);
if (YNotNil(keySymbols[34]))
gistA.e.width= YGetReal(keySymbols[34]);
if (YNotNil(keySymbols[35])) { /* inhibit */
if (type!=4) YError("inhibit= in pledit allowed only for plm");
gistD.inhibit= (int)YGetInteger(keySymbols[35]);
}
if (legend) {
/* Some giggery-pokery necessary to get the old legend deleted properly,
and the new legend allocated properly, so that Gist will delete it
correctly when the graphical element is deleted. */
char *oldleg= gistD.legend;
gistD.legend= GmMalloc(strlen(legend)+1);
strcpy(gistD.legend, legend);
legend= oldleg;
}
GdEdit(changes);
if (legend) GmFree(legend);
if (resetLevs) tmpLevels= 0;
Drop(nArgs);
}
#undef N_KEYWORDS
#define N_KEYWORDS 29
static char *dfltKeys[N_KEYWORDS+1]= {
"color", "type", "width",
"marks", "mcolor", "marker", "msize", "mspace", "mphase",
"rays", "arrowl", "arroww", "rspace", "rphase",
"font", "height", "orient", "justify", "opaque",
"hollow", "aspect", "dpi", "style", "legends", "palette", "maxcolors",
"edges", "ecolor", "ewidth", 0 };
void Y_pldefault(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, dfltKeys, keySymbols);
if (stack<=sp) YError("pldefault takes no non-keyword arguments");
/* retrieve all default settings */
GhGetLines();
GhGetMesh();
GhGetVectors();
GhGetText();
if (YNotNil(keySymbols[0]))
gistA.l.color= gistA.m.color= gistA.f.color=
gistA.t.color= gistA.e.color= GetColor(keySymbols[0]);
if (YNotNil(keySymbols[1]))
gistA.l.type= GetLineType(keySymbols[1]);
if (YNotNil(keySymbols[2]))
gistA.l.width= YGetReal(keySymbols[2]);
if (YNotNil(keySymbols[3]))
gistA.dl.marks= (YGetInteger(keySymbols[3])!=0);
if (YNotNil(keySymbols[4]))
gistA.m.color= GetColor(keySymbols[4]);
if (YNotNil(keySymbols[5]))
gistA.m.type= (int)YGetInteger(keySymbols[5]);
if (YNotNil(keySymbols[6]))
gistA.m.size= YGetReal(keySymbols[6]);
if (YNotNil(keySymbols[7]))
gistA.dl.mSpace= YGetReal(keySymbols[7]);
if (YNotNil(keySymbols[8]))
gistA.dl.mPhase= YGetReal(keySymbols[8]);
if (YNotNil(keySymbols[9]))
gistA.dl.rays= (YGetInteger(keySymbols[9])!=0);
if (YNotNil(keySymbols[10]))
gistA.dl.arrowL= YGetReal(keySymbols[10]);
if (YNotNil(keySymbols[11]))
gistA.dl.arrowW= YGetReal(keySymbols[11]);
if (YNotNil(keySymbols[12]))
gistA.dl.rSpace= YGetReal(keySymbols[12]);
if (YNotNil(keySymbols[13]))
gistA.dl.rPhase= YGetReal(keySymbols[13]);
if (YNotNil(keySymbols[14]))
gistA.t.font= GetFont(keySymbols[14]);
if (YNotNil(keySymbols[15]))
gistA.t.height= YGetReal(keySymbols[15])*ONE_POINT;
if (YNotNil(keySymbols[16]))
gistA.t.orient= YGetInteger(keySymbols[16]);
if (YNotNil(keySymbols[17]))
GetJustify(keySymbols[17]);
if (YNotNil(keySymbols[18]))
gistA.t.opaque= (YGetInteger(keySymbols[18])!=0);
if (YNotNil(keySymbols[19]))
gistA.vect.hollow= (YGetInteger(keySymbols[19])!=0);
if (YNotNil(keySymbols[20]))
gistA.vect.aspect= YGetReal(keySymbols[20]);
if (!gistA.t.orient) {
gistA.t.orient= TX_RIGHT;
} else {
if (gistA.t.orient==1) gistA.t.orient= TX_UP;
else if (gistA.t.orient==2) gistA.t.orient= TX_LEFT;
else if (gistA.t.orient==3) gistA.t.orient= TX_DOWN;
else {
gistA.t.orient= TX_RIGHT;
YError("orient= keyword must be 0, 1, 2, or 3");
}
}
if (YNotNil(keySymbols[21])) {
int dpi= YGetInteger(keySymbols[21]);
if (dpi!=75 && dpi!=100)
YError("dpi=75 or dpi=100 are only legal values");
else
defaultDPI= dpi;
}
if (YNotNil(keySymbols[22])) {
char *style= defaultStyle;
defaultStyle= 0;
StrFree(style);
style= YGetString(keySymbols[22]);
if (style && style[0]) defaultStyle= StrCpy(style);
}
if (YNotNil(keySymbols[23]))
/* legends= keyword -- turn on/off legend dumping to hcp file */
defaultLegends= (YGetInteger(keySymbols[23])!=0);
if (keySymbols[24]) {
char *name= defaultPalette;
defaultPalette= 0;
StrFree(name);
if (YNotNil(keySymbols[24]))
defaultPalette= StrCpy(YGetString(keySymbols[24]));
}
if (YNotNil(keySymbols[25]))
maxColors= YGetInteger(keySymbols[25]);
if (YNotNil(keySymbols[26]))
gistA.e.type= YGetInteger(keySymbols[26])? L_SOLID : L_NONE;
if (YNotNil(keySymbols[27]))
gistA.e.color= GetColor(keySymbols[27]);
if (YNotNil(keySymbols[28]))
gistA.e.width= YGetReal(keySymbols[28]);
/* store all default settings */
GhSetLines();
GhSetMesh();
GhSetVectors();
GhSetText();
GhSetFill();
}
#undef N_KEYWORDS
#define N_KEYWORDS 6
static char *gridKeys[N_KEYWORDS+1]= {
"color", "type", "width", "base60", "degrees", "hhmm", 0 };
void Y_gridxy(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, gridKeys, keySymbols);
int xgrid= 0;
int ygrid= 0;
int iPass= 0;
while (stack<=sp) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) {
if (YNotNil(stack)) xgrid= (int)YGetInteger(stack);
} else if (iPass==1) {
if (YNotNil(stack)) ygrid= (int)YGetInteger(stack);
} else {
YError("gridxy takes at most two non-keyword arguments");
}
iPass++;
stack++;
}
/* If a single argument is given, use it for both xgrid and ygrid */
if (iPass==1) ygrid= xgrid;
CheckDefaultWindow();
if (YNotNil(keySymbols[0]))
gistD.ticks.horiz.gridStyle.color=
gistD.ticks.vert.gridStyle.color= GetColor(keySymbols[0]);
if (YNotNil(keySymbols[1]))
gistD.ticks.horiz.gridStyle.type=
gistD.ticks.vert.gridStyle.type= GetLineType(keySymbols[1]);
if (YNotNil(keySymbols[2]))
gistD.ticks.horiz.gridStyle.width=
gistD.ticks.vert.gridStyle.width= YGetReal(keySymbols[2]);
if (YNotNil(keySymbols[3])) {
int value= YGetInteger(keySymbols[3]);
if (value&1) {
GdAltTick(&Base60Ticks,0,0,0);
gistD.ticks.horiz.flags|= ALT_TICK;
gistD.ticks.horiz.flags&= ~ALT_LABEL;
} else {
gistD.ticks.horiz.flags&= ~(ALT_TICK|ALT_LABEL);
}
if (value&2) {
GdAltTick(0,0,&Base60Ticks,0);
gistD.ticks.vert.flags|= ALT_TICK;
gistD.ticks.vert.flags&= ~ALT_LABEL;
} else {
gistD.ticks.vert.flags&= ~(ALT_TICK|ALT_LABEL);
}
}
if (YNotNil(keySymbols[4])) {
int value= YGetInteger(keySymbols[4]);
if (value&1) GdAltTick(&Base60Ticks,&DegreeLabels,0,0);
if (value&2) GdAltTick(0,0,&Base60Ticks,&DegreeLabels);
if (value&1) gistD.ticks.horiz.flags|= (ALT_TICK|ALT_LABEL);
else gistD.ticks.horiz.flags&= ~(ALT_TICK|ALT_LABEL);
if (value&2) gistD.ticks.vert.flags|= (ALT_TICK|ALT_LABEL);
else gistD.ticks.vert.flags&= ~(ALT_TICK|ALT_LABEL);
}
if (YNotNil(keySymbols[5])) {
int value= YGetInteger(keySymbols[5]);
if (value&1) GdAltTick(&Base60Ticks,&HourLabels,0,0);
if (value&2) GdAltTick(0,0,&Base60Ticks,&HourLabels);
if (value&1) gistD.ticks.horiz.flags|= (ALT_TICK|ALT_LABEL);
else gistD.ticks.horiz.flags&= ~(ALT_TICK|ALT_LABEL);
if (value&2) gistD.ticks.vert.flags|= (ALT_TICK|ALT_LABEL);
else gistD.ticks.vert.flags&= ~(ALT_TICK|ALT_LABEL);
}
if (iPass>0) {
gistD.ticks.horiz.flags&= ~(GRID_F|GRID_O);
if (xgrid==1)
gistD.ticks.horiz.flags|= GRID_F;
else if (xgrid==2)
gistD.ticks.horiz.flags|= GRID_O;
if (xgrid&0x200) {
gistD.ticks.horiz.flags= (xgrid&0x1ff);
gistD.ticks.frame= (xgrid&0x400)!=0;
}
gistD.ticks.vert.flags&= ~(GRID_F|GRID_O);
if (ygrid&1)
gistD.ticks.vert.flags|= GRID_F;
else if (ygrid&2)
gistD.ticks.vert.flags|= GRID_O;
if (ygrid&0x200) {
gistD.ticks.vert.flags= (ygrid&0x1ff);
gistD.ticks.frame= (ygrid&0x400)!=0;
}
}
GdSetPort();
}
/*--------------------------------------------------------------------------*/
static void FreeReference(void *obj)
{
Array *array= obj? Pointee(obj) : 0;
Unref(array);
}
/* defined in task.c */
extern void (*CleanUpForExit)(void);
static void (*OtherCleanUp)(void)= 0;
static void CleanUpGraphics(void);
static void CleanUpGraphics(void)
{
int n;
if (hcpDefault) GpKillEngine(hcpDefault);
for (n=7 ; n>=0 ; n--) {
if (ghDevices[n].display) GpKillEngine(ghDevices[n].display);
if (ghDevices[n].hcp) GpKillEngine(ghDevices[n].hcp);
}
if (OtherCleanUp) OtherCleanUp();
}
#ifndef NO_XLIB
/* replacements for YDDispatch and YDMaybeDispatch */
extern void YGDispatch(void);
extern void YGMaybeDispatch(void);
static int KeyboardInput(FILE *file, void *context);
void YGDispatch(void)
{
extern int yBatchMode;
if (yBatchMode) YError("attempt to read keyboard in batch mode");
GhBeforeWait(); /* be sure X displays are updated */
yPendingIn= 0;
DispatchEvents(); /* use Gist dispatcher */
}
void YGMaybeDispatch(void)
{
GhBeforeWait(); /* be sure X displays are updated */
yPendingIn= 0;
MaybeDispatch(); /* use Gist dispatcher */
}
/* ARGSUSED */
static int KeyboardInput(FILE *file, void *context)
{
yPendingIn= 1;
return 1; /* Cause DispatchEvents to return immediately when keyboard
input is available. */
}
#endif
extern char *getenv(const char *);
void Y__pl_init(int nArgs)
{
#ifndef NO_XLIB
/* The command argument list is used to set the WM_COMMAND property
of the Gist windows -- this should not be set for a Yorick graphics
window, since Yorick itself cannot be restarted directly by an
X server. The second use (in XSetWMProperties) is to set the
res_name part of the XClassHints structure to the name of the
program. By default, Gist sets this to zero, which will cause
XSetWMProperties to fall back to the RESOURCE_NAME environment
variable, if any. Since it is easy to write a yorick alias which
sets this environment variable, I recommend that as the way to
set the res_name class hint. */
/* GxInitialize(&ym_argc, ym_argv); */
/* Wire up Yorick's input dispatching system to Gist's dispatcher. */
YDispatch= &YGDispatch;
YMaybeDispatch= &YGMaybeDispatch;
AddFDispatcher(stdin, &KeyboardInput, 0);
/* install X error handlers which don't call exit */
DISPLAY_SET_HANDLER((void (*)(char *))&YError);
#endif
/* Install routine to kill graphics engines when Yorick quits. */
OtherCleanUp= CleanUpForExit;
CleanUpForExit= &CleanUpGraphics;
/* Set up for Gist to use Yorick's memory manger shells. */
GmMalloc= &Ymalloc;
GmFree= &Yfree;
/* Additionally, set up so that Gist Drawing structures actually own
a use of mesh-sized Yorick Arrays. This allows one or more
Drawings to share these potentially large objects. */
GdFree= &FreeReference;
/* Install Yorick's best guess at a GISTPATH. The GISTPATH
environment variable, if present, will be used; otherwise the
argument to this function, if non-nil, will be used; otherwise,
the default compiled into libgist.a will be used. */
if (!getenv("GISTPATH") && nArgs==1 && YNotNil(sp))
gistPathDefault= StrCpy(YGetString(sp));
/* Set up parser to pass string equivalents of arguments to the
plotting functions for use in the construction of default legends.
NB-- The parser can only quine functions invoked as subroutines,
so all quined functions must check CalledAsSubroutine(). */
YpQuine("plg", 2);
YpQuine("plm", 3);
YpQuine("plc", 4);
YpQuine("plv", 4);
YpQuine("plf", 4);
YpQuine("pli", 1);
/* plt does not use legends */
YpQuine("pldj", 4);
/* Default is to put occasional markers on curves. */
GhGetLines();
gistA.dl.marks= 1;
GhSetLines();
/* Default text is 14 point Helvetica. */
GhGetText();
gistA.t.font= T_HELVETICA;
gistA.t.height= 14.0*ONE_POINT;
GhSetText();
}
void Y_keybd_focus(int nArgs)
{
/* Set the input hint to false, meaning that Yorick graphics
* windows do not ever want keyboard focus. This is not supposed
* to affect mouse input events, which are wanted. */
#ifndef NO_XLIB
extern int gist_input_hint;
if (nArgs==1) gist_input_hint= YGetInteger(sp);
#endif
}
/*--------------------------------------------------------------------------*/
#undef N_KEYWORDS
#define N_KEYWORDS 3
static char *bsKeys[N_KEYWORDS+1]= { "top", "cmin", "cmax", 0 };
void Y_bytscl(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, bsKeys, keySymbols);
double *z, zmin, zmax, scale, offset, zz;
Operand op;
Array *array;
GpColor *zc;
long i;
z= 0;
while (stack<=sp) {
if (!stack->ops) { stack+=2; continue; }
if (z) { z= 0; break; }
stack->ops->FormOperand(stack, &op);
if (op.ops->promoteID>T_DOUBLE)
YError("bytscl argument must be convertable to type double");
op.ops->ToDouble(&op);
z= op.value;
stack++;
}
if (!z) YError("bytscl takes exactly one non-keyword argument");
GrabByteScale(keySymbols, &scale, &offset, &zmin, &zmax,
z, (int *)0, 0, op.type.number+1, 2L, 1);
array= PushDataBlock(NewArray(&charStruct, op.type.dims));
zc= (GpColor *)array->value.c;
for (i=0 ; i<op.type.number ; i++) {
zz= z[i];
if (zz<zmin) zz= zmin;
else if (zz>zmax) zz= zmax;
zc[i]= (int)((zz-offset)*scale);
}
}
/*--------------------------------------------------------------------------*/
#undef N_KEYWORDS
#define N_KEYWORDS 2
static char *cntrKeys[N_KEYWORDS+1]= { "triangle", "region", 0 };
void Y_contour(int nArgs)
{
Symbol *keySymbols[N_KEYWORDS];
Symbol *stack= YGetKeywords(sp-nArgs+1, nArgs, cntrKeys, keySymbols);
long iMax= 0, jMax= 0;
double *z= 0, *levels= 0;
GaQuadMesh mesh;
long xci= 0, yci= 0;
Symbol *xs= 0 , *ys= 0;
double *levs= 0;
int two_levels= 0;
Dimension *dims;
Array *array;
double *xcp, *ycp;
long *np, nparts, ntotal;
int region= 0;
int iPass= 0;
while (stack<=sp && iPass<4) {
if (!stack->ops) { stack+= 2; continue; }
if (iPass==0) {
yci= YGet_Ref(stack);
ys= stack;
} else if (iPass==1) {
xci= YGet_Ref(stack);
xs= stack;
} else if (iPass==2) {
levs= YGet_D(stack, 0, &dims);
if (dims && (dims->number>2 || dims->next))
YError("contour levs must be either single value or value pair");
if (dims && dims->number==2) two_levels= 1;
} else if (iPass==3) {
z= Get2Ddouble(stack, &jMax, &iMax);
}
iPass++;
stack++;
}
if (iPass<4) YError("contour needs at least six arguments");
stack= GrabMesh(stack, keySymbols[0], &mesh,
(char **)0, (char **)0, (char **)0, 1);
while (stack<=sp) {
if (!stack->ops) stack+= 2;
else YError("contour takes at most seven non-keyword arguments");
}
if (mesh.iMax!=iMax || mesh.jMax!=jMax)
YError("z array must have same dimensions as mesh in contour");
if (YNotNil(keySymbols[1]))
region= (int)YGetInteger(keySymbols[1]);
if (!mesh.triangle) {
/* provide a temporary triangle array if none supplied */
short *triangle;
long ijMax= iMax*jMax;
dims= tmpDims;
tmpDims= 0;
FreeDimension(dims);
tmpDims= NewDimension(ijMax, 1L, (Dimension *)0);
triangle= ((Array*)PushDataBlock(NewArray(&shortStruct,
tmpDims)))->value.s;
mesh.triangle= triangle;
while (ijMax--) *(triangle++)= 0;
CheckStack(1);
}
/* initialize trace, counting ntotal and nparts */
ntotal= two_levels? GcInit2(&mesh,region,z,levs,30L,&nparts) :
GcInit1(&mesh,region,z,levs[0],&nparts);
if (!ntotal) {
/* handle case of no points on contour */
PushDataBlock(Ref(&nilDB));
YPut_Result(sp, yci);
YPut_Result(sp, xci);
return;
}
/* stuff x and y arrays for results onto stack over output symbols */
dims= tmpDims;
tmpDims= 0;
FreeDimension(dims);
tmpDims= dims= NewDimension(ntotal, 1L, (Dimension *)0);
array= NewArray(&doubleStruct, tmpDims);
ys->value.db= (DataBlock *)array;
ys->ops= &dataBlockSym;
ycp= array->value.d;
array= NewArray(&doubleStruct, tmpDims);
xs->value.db= (DataBlock *)array;
xs->ops= &dataBlockSym;
xcp= array->value.d;
/* return list goes on top of stack */
tmpDims= 0;
FreeDimension(dims);
tmpDims= NewDimension(nparts, 1L, (Dimension *)0);
array= PushDataBlock(NewArray(&longStruct, tmpDims));
np= array->value.l;
if (GcTrace(np, xcp, ycp)!=ntotal) YError("GcTrace failed in contour");
/* move results from stack back to output symbols */
YPut_Result(ys, yci);
YPut_Result(xs, xci);
}
void Y_mesh_loc(int nArgs)
{
Symbol *stack= sp-nArgs+1;
double *x0= 0, *y0= 0;
Operand xop, yop;
Array *result;
long i, n, *zone;
GaQuadMesh mesh;
int iPass= 0;
Dimension *dims;
long ix0, j, ijx, *bndy, nbndy;
mesh.x= mesh.y= 0;
mesh.reg= 0;
mesh.iMax= mesh.jMax= 0;
mesh.triangle= 0;
if (nArgs<2) YError("mesh_loc requires at least two arguments");
while (stack<=sp) {
if (!stack->ops) YError("mesh_loc takes no keyword arguments");
if (iPass==0) {
Dimension *dims;
y0= YGet_D(stack, 0, &dims);
stack->ops->FormOperand(stack, &yop);
} else if (iPass==1) {
Dimension *dims;
x0= YGet_D(stack, 0, &dims);
stack->ops->FormOperand(stack, &xop);
} else if (iPass==2) mesh.y= Get2Ddouble(stack, &mesh.jMax, &mesh.iMax);
else if (iPass==3) mesh.x= Get2Ddouble(stack, &mesh.jMax, &mesh.iMax);
else if (iPass==4) mesh.reg= Get2Dint(stack, &mesh.jMax, &mesh.iMax);
else YError("mesh_loc takes at most five arguments");
iPass++;
stack++;
}
if ((mesh.x!=0)^(mesh.y!=0))
YError("both y and x arrays must be specified for a mesh");
if (!mesh.x) {
/* neither y nor x have been specified -- use defaults */
if (!xMesh)
YError("no default mesh exists to define y and x -- use plmesh");
if (mesh.reg && (iMesh!=mesh.iMax || jMesh!=mesh.jMax))
YError("ireg must have same dimensions as default mesh");
mesh.iMax= iMesh;
mesh.jMax= jMesh;
mesh.x= xMesh;
mesh.y= yMesh;
} else {
/* both y and x have been specified -- copy them for Gist */
if (mesh.iMax<2 || mesh.jMax<2)
YError("a mesh must have dimensions of at least 2-by-2");
}
if (!mesh.reg && mesh.x==xMesh) mesh.reg= regMesh;
if (BinaryConform(&xop, &yop)&4) YError("x0 and y0 not conformable");
n= TotalNumber(tmpDims);
if (n>1) {
result= PushDataBlock(NewArray(&longStruct, tmpDims));
zone= result->value.l;
} else {
PushLongValue(0);
zone= &sp->value.l;
}
/* get fastest varying dimension in (x0,y0) */
dims= tmpDims;
ix0= 1;
while (dims && dims->next) {
dims= dims->next;
if (dims->number>1) ix0= dims->number;
}
ijx= mesh.iMax*mesh.jMax;
if (mesh.reg) {
long i0= 0;
for (j=mesh.iMax+1 ; j<ijx ; j++) {
if ((++i0)==mesh.iMax) { i0= 1; j++; }
if (mesh.reg[j]) break;
}
if (j>=ijx) j= -1;
} else {
j= mesh.iMax+1;
}
bndy= 0;
nbndy= 0;
for (i=0 ; i<n ; i++) {
if (i && !(i%ix0)) j= zone[i-ix0]-1;
j= QuickMeshZone(x0[i], y0[i], mesh.x, mesh.y, mesh.reg,
mesh.iMax, ijx, j, bndy, nbndy);
if (!bndy && j<0) {
bndy= BuildMeshBndy(mesh.x, mesh.y, mesh.reg, mesh.iMax, ijx, &nbndy);
j= QuickMeshZone(x0[i], y0[i], mesh.x, mesh.y, mesh.reg,
mesh.iMax, ijx, j, bndy, nbndy);
}
zone[i]= j+1;
}
if (bndy) Drop(1);
}
/*--------------------------------------------------------------------------*/
#ifndef NO_MOUSE
static int MouseCallBack(Engine *engine, int system,
int release, GpReal x, GpReal y,
int butmod, GpReal xn, GpReal yn);
static double mouseX0, mouseY0, mouseX1, mouseY1;
static double mouseX0ndc, mouseY0ndc, mouseX1ndc, mouseY1ndc;
static int mouseButton, mouseModifier, mouseSystem, mouseError;
static char *defaultPrompts[2]= {
"<Click mouse at point>", "<Press, drag, and release mouse>" };
#endif
void Y_mouse(int nArgs)
{
#ifdef DISPLAY_MOUSE
Symbol *stack= sp-nArgs+1;
char *prompt= 0;
int system= -1, style= 0, iPass= 0;
int n= curPlotter;
if (n<0 || !ghDevices[n].display)
YError("no current graphics window for mouse function");
while (stack<=sp) {
if (!stack->ops) YError("mouse function takes no keyword arguments");
if (iPass==0)
system= YNotNil(stack)? YGetInteger(stack) : -1;
else if (iPass==1)
style= YNotNil(stack)? YGetInteger(stack) : 0;
else if (iPass==2)
prompt= YNotNil(stack)? YGetString(stack) : 0;
else
YError("mouse function takes at most three arguments");
iPass++;
stack++;
}
GhWaitDisplay(); /* otherwise can lock up */
GhBeforeWait(); /* be sure display is current */
if (!prompt) YPrompt(defaultPrompts[style!=0]);
else if (prompt[0]) YPrompt(prompt);
mouseError= 0;
mouseError|= DISPLAY_MOUSE(ghDevices[n].display, style, system,
&MouseCallBack);
if (!prompt || prompt[0]) YPrompt("\n");
if (mouseError) {
PushDataBlock(Ref(&nilDB));
} else {
Array *array=
PushDataBlock(NewArray(&doubleStruct,
NewDimension(11L, 1L, (Dimension *)0)));
array->type.dims->references--;
array->value.d[0]= mouseX0;
array->value.d[1]= mouseY0;
array->value.d[2]= mouseX1;
array->value.d[3]= mouseY1;
array->value.d[4]= mouseX0ndc;
array->value.d[5]= mouseY0ndc;
array->value.d[6]= mouseX1ndc;
array->value.d[7]= mouseY1ndc;
array->value.d[8]= (double)mouseSystem;
array->value.d[9]= (double)mouseButton;
array->value.d[10]= (double)mouseModifier;
}
#else
YError("no mouse function in this version of Yorick");
#endif
}
#ifndef NO_MOUSE
static int MouseCallBack(Engine *engine, int system,
int release, GpReal x, GpReal y,
int butmod, GpReal xn, GpReal yn)
{
int n= curPlotter;
if (n<0 || ghDevices[n].display!=engine) {
mouseError= 1;
return 1;
}
if (!release) {
mouseSystem= system;
mouseButton= butmod;
mouseX0= x;
mouseY0= y;
mouseX0ndc= xn;
mouseY0ndc= yn;
} else {
mouseModifier= butmod;
mouseX1= x;
mouseY1= y;
mouseX1ndc= xn;
mouseY1ndc= yn;
}
return 0;
}
#endif
/*--------------------------------------------------------------------------*/
int YCurrentPlotter(void)
{
return curPlotter;
}
/*--------------------------------------------------------------------------*/
void Y_current_window(int nArgs)
{
PushIntValue(curPlotter);
}
#include "osys.h"
void Y_pause(int nArgs)
{
long timeout;
unsigned long mask= (unsigned long)(-1L);
if (nArgs!=1) YError("pause requires exactly one argument");
timeout= YGetInteger(sp);
if (timeout<0) timeout= 0;
G_poll(2L, &mask, timeout);
Drop(1);
}
/*--------------------------------------------------------------------------*/
|