1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900
|
/* x11window.c
*
* Kevin P. Smith 6/11/89 Much modified by Jerry Frain and Joe Young
*
*/
#define DEBUG 0
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include INC_SYS_SELECT
#include INC_STRINGS
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include <X11/Xatom.h>
#include <X11/keysym.h>
#include <assert.h>
#include <time.h>
#include <sys/time.h>
#include INC_SYS_TIMEB
#include "Wlib.h"
#include "defs.h"
#include "struct.h"
#include "data.h"
#include "teams.bitmap"
#include "mapcursor.bitmap"
#include "localcursor.bitmap"
#include "smessage.h"
#include "defaults.h"
#include "x11window.h"
#include "x11sprite.h"
#include "camera.h"
extern void terminate(int error);
/* XFIX speedup */
#define MAXCACHE 128
#define MAX_TEXT_WIDTH 100
/* changes too good to risk leaving out, by Richard Caley (rjc@cstr.ed.ac.uk) */
/* Was #ifdef RJC, but now they're just part of the code */
#ifdef SMALL_SCREEN
#define NORMAL_FONT "5x7"
#define BOLD_FONT "5x7"
#define ITALIC_FONT "5x7"
#define IND_FONT "5x7"
#else
#define NORMAL_FONT "6x10"
#define BOLD_FONT "-*-clean-bold-r-normal--10-100-75-75-c-60-*"
#define ITALIC_FONT "-*-clean-bold-r-normal--10-100-75-75-c-60-*"
#define IND_FONT "-*-clean-bold-r-normal--10-100-75-75-c-60-*"
#endif
#define BIG_FONT "-*-lucidatypewriter-*-*-*-*-40-*-*-*-*-*-*-*"
int forceMono = 0;
#ifdef BEEPLITE
#define TTS_FONT "10x20"
extern void init_tts(void);
#endif
#define G_SET_WIDTH 0x1
#define G_SET_HEIGHT 0x2
#define G_SET_X 0x4
#define G_SET_Y 0x8
static char *_nfonts[] =
{
NORMAL_FONT,
"-*-clean-medium-r-normal--10-100-75-75-c-60-*",
"fixed",
NULL,
};
static char *_bfonts[] =
{
BOLD_FONT,
"-*-clean-bold-r-normal--10-100-75-75-c-60-*",
"fixed",
NULL,
};
static char *_ifonts[] =
{
ITALIC_FONT,
"-*-clean-bold-r-normal--10-100-75-75-c-60-*",
"fixed",
NULL,
};
static char *_bgfonts[] =
{
BIG_FONT,
"fixed",
"fixed",
NULL,
};
XFontStruct *find_font(char *oldf, char **fonts);
#define FONTS 4
#define BITGC 4
#define WHITE 0
#define BLACK 1
#define RED 2
#define GREEN 3
#define YELLOW 4
#define CYAN 5
#define GREY 6
#ifdef RACE_COLORS
#define C_ROM 7
#define C_KLI 8
#define C_FED 9
#define C_ORI 10
#define C_IND 11
#endif
#ifdef RACE_COLORS
#define COLORS 16
#define PLANES 4
#else
#define COLORS 8
#define PLANES 3
#endif
#define RaceDefaultOffset (C_ROM - RED)
extern int takeNearest;
static int zero = 0;
static int one = 1;
static int two = 2;
static int three = 3;
int W_FastClear = 0;
Window W_Root;
Colormap W_Colormap;
int W_Screen;
Visual *W_Visual;
W_Font W_BigFont = (W_Font) & zero, W_RegularFont = (W_Font) & one;
W_Font W_HighlightFont = (W_Font) & two, W_UnderlineFont = (W_Font) & three;
Display *W_Display;
W_Color W_White = WHITE, W_Black = BLACK, W_Red = RED, W_Green = GREEN;
W_Color W_Yellow = YELLOW, W_Cyan = CYAN, W_Grey = GREY;
#ifdef RACE_COLORS
W_Color W_Ind = C_IND, W_Fed = C_FED, W_Rom = C_ROM, W_Kli = C_KLI, W_Ori = C_ORI;
#endif
int W_BigTextwidth, W_BigTextheight, W_Textwidth, W_Textheight;
char *getdefault(char *str);
int W_in_message = 0; /* jfy -- for Jerry's warp *
*
*
* * message hack */
/* TTS: moved this out so we can use the 8th color */
static unsigned long planes[PLANES];
/* Scrollable message windows */
#define SCROLL_THUMB_WIDTH 5
static int scrollbar = 1;
static int scroll_thumb_width = SCROLL_THUMB_WIDTH;
static GC scroll_thumb_gc;
static Pixmap scroll_thumb_pixmap;
static int scroll_lines = 100; /* save 100 lines */
Atom wm_protocols, wm_delete_window;
extern W_Window baseWin;
static XClassHint class_hint =
{
"netrek", "Netrek",
};
static XWMHints wm_hint =
{
InputHint | StateHint,
True,
NormalState,
None,
None,
0, 0,
None,
None,
};
#ifdef WINDOWMAKER
char **wm_argv;
int wm_argc;
#endif
static W_Event W_myevent;
static int W_isEvent = 0; /* an event is being held here for the caller */
struct fontInfo
{
int baseline;
};
struct colors
{
char *name;
GC contexts[FONTS + 1];
GC insens_contexts[FONTS + 1];
Pixmap pixmap;
int pixelValue;
};
Pixmap insens_tile;
struct icon
{
Window window;
Pixmap bitmap;
int width, height;
Pixmap pixmap;
};
#define WIN_GRAPH 1
#define WIN_TEXT 2
#define WIN_MENU 3
#define WIN_SCROLL 4
static void changeMenuItem(struct window *win, int col, int n, char *str, W_Color color);
static void scrollUp(struct window *win, int y);
static void scrollDown(struct window *win, int y);
static void scrollPosition(struct window *win, int y);
static void scrollTo(struct window *win, struct scrollingWindow *sw, int topline);
static void scrollScrolling(W_Event * wevent);
static void configureScrolling(struct window *win, int x, int y, int width, int height);
static void AddToScrolling(struct window *win, W_Color color, W_Font font, char *str, int len);
static void drawThumb(struct window *win, struct scrollingWindow *sw);
static void redrawScrolling(struct window *win);
static int checkGeometry(char *name, int *x, int *y, int *width, int *height);
struct stringList
{
char string[MAX_TEXT_WIDTH];
W_Color color;
W_Font font;
struct stringList *next, *prev;
};
struct menuItem
{
int column;
char *string;
W_Color color;
};
struct colors colortable[] =
{
{"white"},
{"black"},
{"red"},
{"green"},
{"yellow"},
{"cyan"},
{"dark grey"}
#ifdef RACE_COLORS
,
{"Rom"},
{"Kli"},
{"Fed"},
{"Ori"},
{"Ind"}
#endif
};
struct windowlist
{
struct window *window;
struct windowlist *next;
};
#define HASHSIZE 101
#define hash(x) (((int) (x)) % HASHSIZE)
struct windowlist *hashtable[HASHSIZE];
struct fontInfo fonts[FONTS];
struct window *newWindow(Window window, int type);
struct window *findWindow(Window window);
/* char *malloc (size_t); */
short *x11tox10bits();
struct window myroot;
#define NCOLORS (sizeof(colortable)/sizeof(colortable[0]))
#define W_Void2Window(win) ((win) ? ((struct window *) (win)) : (&myroot))
#define W_Window2Void(window) ((W_Window) (window))
#define W_Void2Icon(bit) ((struct icon *) (bit))
#define W_Icon2Void(bit) ((W_Icon) (bit))
#define fontNum(font) (*((int *) font))
#define TILESIDE 16
#define WIN_EDGE 5 /* border on l/r edges of *
* * text windows */
#define MENU_PAD 6 /* border on t/b edges of *
* * text windows */
#define MENU_BAR 1 /* width of menu bar */
static char gray[] =
{
0xaa, 0xaa, 0x55, 0x55, 0xaa, 0xaa, 0x55, 0x55,
0xaa, 0xaa, 0x55, 0x55, 0xaa, 0xaa, 0x55, 0x55,
0xaa, 0xaa, 0x55, 0x55, 0xaa, 0xaa, 0x55, 0x55,
0xaa, 0xaa, 0x55, 0x55, 0xaa, 0xaa, 0x55, 0x55
};
static char striped[] =
{
0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff,
0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f,
0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00,
0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0, 0x0f, 0xf0
};
static char solid[] =
{
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
};
int full_screen_default, full_screen_enabled;
#ifdef FULLSCREEN
static void video_mode_off(void);
static int video_mode_initialise(void);
static void video_mode_on(void);
static void view_port_warp(W_Window window);
static void pointer_grab_on(W_Window window);
static void pointer_grab_off(W_Window window);
static void kde_fullscreen_on(W_Window window);
static void kde_fullscreen_off(W_Window window);
#endif
/* X debugging */
int
_myerror(Display * d, XErrorEvent * e)
{
fprintf(stderr, "netrek: x11window: _myerror\n");
abort();
}
void pastebuffer(void)
{
int nbytes, x;
char *buff, c;
buff = XFetchBuffer(W_Display, &nbytes, 0);
for (x = 0; x < nbytes; x++)
{
c = buff[x];
smessage(c);
}
}
static long
WMXYHintMode_default(void)
{
static int fetched = 0;
static long WMXYHM_default;
char *hm_default_string;
if (!fetched)
{
hm_default_string = getdefault("WMXYHintMode");
if (!hm_default_string || strcmp(hm_default_string, "USPosition") == 0)
WMXYHM_default = USPosition;
else
WMXYHM_default = PPosition;
fetched = 1;
}
return WMXYHM_default;
}
void
W_Initialize(char *str)
{
int i;
#if DEBUG > 0
printf("Initializing...\n");
#endif
for (i = 0; i < HASHSIZE; i++)
{
hashtable[i] = NULL;
}
if ((W_Display = XOpenDisplay(str)) == NULL)
{
fprintf(stderr, "I can't open your display, twink!\n");
terminate(1);
}
/* prevent X socket from being copied to forked exec'd process */
if (fcntl(ConnectionNumber(W_Display), F_SETFD, FD_CLOEXEC) < 0)
{
fprintf(stderr, "failed to set the X socket to close on exec(),\n"
"fcntl F_SETFD FD_CLOEXEC failure,\n'%s'",
strerror(errno));
}
// uncomment this to synchronise display for testing
// XSynchronize(W_Display, True);
// uncomment this to enable a fatal error handler
// XSetErrorHandler(_myerror);
wm_protocols = XInternAtom(W_Display, "WM_PROTOCOLS", False);
wm_delete_window = XInternAtom(W_Display, "WM_DELETE_WINDOW", False);
W_Root = DefaultRootWindow(W_Display);
W_Visual = DefaultVisual(W_Display, DefaultScreen(W_Display));
W_Screen = DefaultScreen(W_Display);
W_Colormap = DefaultColormap(W_Display, W_Screen);
myroot.window = W_Root;
myroot.type = WIN_GRAPH;
GetFonts();
GetColors();
/* display scroll thumb */
scrollbar = booleanDefault("ScrollBar", scrollbar);
scroll_lines = intDefault("ScrollSaveLines", scroll_lines);
scroll_thumb_width = intDefault("ScrollBarWidth", scroll_thumb_width);
#ifdef BEEPLITE
init_tts();
#endif
}
void W_GetPixmaps(W_Window t, W_Window g)
{
GetPixmaps(W_Display, &myroot, t, g);
}
/* Make sure the font will work, ie: that it fits in the 6x10 character cell
* that we expect. */
void checkFont(XFontStruct * fontinfo, char *fontname)
{
#ifndef SMALL_SCREEN
if (fontinfo->max_bounds.width != 6 ||
fontinfo->min_bounds.width != 6 ||
fontinfo->descent + fontinfo->ascent != 10 ||
fontinfo->min_bounds.lbearing < 0 ||
fontinfo->max_bounds.rbearing > 6 ||
fontinfo->max_bounds.ascent > 8 ||
fontinfo->max_bounds.descent > 2)
{
fprintf(stderr, "Warning: font '%s'\ndoes not conform to 6x10 character cell rules.\n", fontname);
}
#endif
}
void GetFonts(void)
{
Font regular, italic, bold, big;
int i;
XGCValues values;
XFontStruct *fontinfo;
char *fontname;
int black, white;
fontname = getdefault("font");
if (fontname == NULL)
fontname = NORMAL_FONT;
fontinfo = XLoadQueryFont(W_Display, fontname);
if (fontinfo == NULL)
{
fontinfo = find_font(fontname, _nfonts);
}
if (fontinfo == NULL)
{
printf("netrek: Can't find any fonts!\n");
terminate(1);
}
checkFont(fontinfo, fontname);
regular = fontinfo->fid;
W_Textwidth = fontinfo->max_bounds.width;
W_Textheight = fontinfo->max_bounds.descent + fontinfo->max_bounds.ascent;
fonts[1].baseline = fontinfo->max_bounds.ascent;
fontname = getdefault("boldfont");
if (fontname == NULL)
fontname = BOLD_FONT;
fontinfo = XLoadQueryFont(W_Display, fontname);
if (fontinfo == NULL)
{
fontinfo = find_font(fontname, _bfonts);
}
if (fontinfo == NULL)
{
bold = regular;
fonts[2].baseline = fonts[1].baseline;
}
else
{
checkFont(fontinfo, fontname);
bold = fontinfo->fid;
fonts[2].baseline = fontinfo->max_bounds.ascent;
if (fontinfo->max_bounds.width > W_Textwidth)
W_Textwidth = fontinfo->max_bounds.width;
if (fontinfo->max_bounds.descent + fontinfo->max_bounds.ascent > W_Textheight)
W_Textheight = fontinfo->max_bounds.descent + fontinfo->max_bounds.ascent;
}
fontname = getdefault("italicfont");
if (fontname == NULL)
fontname = ITALIC_FONT;
fontinfo = XLoadQueryFont(W_Display, fontname);
if (fontinfo == NULL)
{
fontinfo = find_font(fontname, _ifonts);
}
if (fontinfo == NULL)
{
italic = regular;
fonts[3].baseline = fonts[1].baseline;
}
else
{
checkFont(fontinfo, fontname);
italic = fontinfo->fid;
fonts[3].baseline = fontinfo->max_bounds.ascent;
if (fontinfo->max_bounds.width > W_Textwidth)
W_Textwidth = fontinfo->max_bounds.width;
if (fontinfo->max_bounds.descent + fontinfo->max_bounds.ascent > W_Textheight)
W_Textheight = fontinfo->max_bounds.descent + fontinfo->max_bounds.ascent;
}
fontname = getdefault("bigfont");
if (fontname == NULL)
fontname = BIG_FONT;
fontinfo = XLoadQueryFont(W_Display, fontname);
if (fontinfo == NULL)
{
fontinfo = find_font(fontname, _bgfonts);
}
if (fontinfo == NULL)
{
big = regular;
fonts[0].baseline = fonts[1].baseline;
W_BigTextwidth = W_Textwidth;
W_BigTextheight = W_Textheight;
}
else
{
big = fontinfo->fid;
fonts[0].baseline = fontinfo->max_bounds.ascent;
W_BigTextwidth = fontinfo->max_bounds.width;
W_BigTextheight = fontinfo->max_bounds.descent + fontinfo->max_bounds.ascent;
}
white = WhitePixel(W_Display, W_Screen);
black = BlackPixel(W_Display, W_Screen);
insens_tile = XCreatePixmapFromBitmapData(W_Display, W_Root, gray,
TILESIDE, TILESIDE, black, white, DefaultDepth(W_Display, W_Screen));
for (i = 0; i < NCOLORS; i++)
{
values.font = big;
colortable[i].contexts[0] = XCreateGC(W_Display, W_Root, GCFont, &values);
XSetGraphicsExposures(W_Display, colortable[i].contexts[0], False);
values.font = regular;
colortable[i].contexts[1] = XCreateGC(W_Display, W_Root, GCFont, &values);
XSetGraphicsExposures(W_Display, colortable[i].contexts[1], False);
values.fill_style = FillTiled;
values.tile = insens_tile;
colortable[i].insens_contexts[1] = XCreateGC(W_Display, W_Root,
GCFont | GCFillStyle | GCTile, &values);
XSetGraphicsExposures(W_Display, colortable[i].insens_contexts[1],
False);
values.font = bold;
colortable[i].contexts[2] = XCreateGC(W_Display, W_Root, GCFont, &values);
XSetGraphicsExposures(W_Display, colortable[i].contexts[2], False);
values.font = italic;
colortable[i].contexts[3] = XCreateGC(W_Display, W_Root, GCFont, &values);
XSetGraphicsExposures(W_Display, colortable[i].contexts[3], False);
{
char dl[] = {1, 8};
XSetLineAttributes(W_Display, colortable[i].contexts[3],
0, LineOnOffDash, CapButt, JoinMiter);
XSetDashes(W_Display, colortable[i].contexts[3], 0, dl, 2);
}
values.function = GXor;
colortable[i].contexts[BITGC] = XCreateGC(W_Display, W_Root, GCFunction,
&values);
XSetGraphicsExposures(W_Display, colortable[i].contexts[BITGC], False);
}
}
XFontStruct *
find_font(char *oldf, char **fonts)
{
XFontStruct *fi;
char **f;
fprintf(stderr, "netrek: Can't find font %s. Trying others...\n",
oldf);
for (f = fonts; *f; f++)
{
if (strcmp(*f, oldf) != 0)
{
if ((fi = XLoadQueryFont(W_Display, *f)))
return fi;
}
}
return NULL;
}
static unsigned short extrared[COLORS] =
{0x00, 0x20, 0x40, 0x60, 0x80, 0xa0, 0xb0, 0xc0};
static unsigned short extragreen[COLORS] =
{0x40, 0x60, 0x80, 0xa0, 0xb0, 0xc0, 0x00, 0x20};
static unsigned short extrablue[COLORS] =
{0x80, 0xa0, 0xb0, 0xc0, 0x00, 0x20, 0x40, 0x60};
void GetColors(void)
{
int i, j;
XGCValues values;
XColor foo;
int white, black;
unsigned long pixel;
char defaultstring[100];
char *defaults;
unsigned long extracolors[COLORS];
XColor colordef;
forceMono = booleanDefault("forcemono", forceMono); /* 11/14/91 TC */
if ((DisplayCells(W_Display, W_Screen) <= 2) || forceMono)
{
white = WhitePixel(W_Display, W_Screen);
black = BlackPixel(W_Display, W_Screen);
for (i = 0; i < NCOLORS; i++)
{
if (i != W_Black)
{
colortable[i].pixelValue = white;
}
else
{
colortable[i].pixelValue = black;
}
if (i == W_Red)
{
colortable[i].pixmap = XCreatePixmapFromBitmapData(W_Display,
W_Root, striped, TILESIDE, TILESIDE, white, black,
DefaultDepth(W_Display, W_Screen));
}
else if (i == W_Yellow)
{
colortable[i].pixmap = XCreatePixmapFromBitmapData(W_Display,
W_Root, gray, TILESIDE, TILESIDE, white, black,
DefaultDepth(W_Display, W_Screen));
}
else
{
colortable[i].pixmap = XCreatePixmapFromBitmapData(W_Display,
W_Root, solid, TILESIDE, TILESIDE,
colortable[i].pixelValue,
colortable[i].pixelValue,
DefaultDepth(W_Display, W_Screen));
}
/* We assume white is 0 or 1, and black is 0 or 1. We adjust * *
* graphics function based upon who is who. */
if (white == 0)
{ /* Black is 1 */
XSetFunction(W_Display, colortable[i].contexts[BITGC],
GXand);
}
}
}
else if (W_Visual->class == PseudoColor)
{
if (!XAllocColorCells(W_Display, W_Colormap, False, planes, PLANES,
&pixel, 1) && !takeNearest)
{
/* couldn't allocate 3 planes, make a new colormap */
W_Colormap = XCreateColormap(W_Display, W_Root, W_Visual, AllocNone);
if (!XAllocColorCells(W_Display, W_Colormap, False, planes, PLANES,
&pixel, 1))
{
fprintf(stderr, "Cannot create new colormap\n");
terminate(1);
}
/* and fill it with at least 8 more colors so when mouse is inside
* * * netrek windows, use might be able to see his other windows */
if (XAllocColorCells(W_Display, W_Colormap, False, NULL, 0,
extracolors, COLORS))
{
colordef.flags = DoRed | DoGreen | DoBlue;
for (i = 0; i < COLORS; i++)
{
colordef.pixel = extracolors[i];
colordef.red = extrared[i] << 8;
colordef.green = extragreen[i] << 8;
colordef.blue = extrablue[i] << 8;
XStoreColor(W_Display, W_Colormap, &colordef);
}
}
}
for (i = 0; i < NCOLORS; i++)
{
sprintf(defaultstring, "color.%s", colortable[i].name);
defaults = getdefault(defaultstring);
if (defaults == NULL)
{
#ifdef RACE_COLORS
if (i > GREY)
{
/* The default colour from the ROMS is the colour defined *
*
* * to be RED and not the colour which is actually RED. */
sprintf(defaultstring, "color.%s",
colortable[i - RaceDefaultOffset].name);
defaults = getdefault(defaultstring);
if (defaults == NULL)
defaults = colortable[i - RaceDefaultOffset].name;
}
else
#endif
defaults = colortable[i].name;
}
XParseColor(W_Display, W_Colormap, defaults, &foo);
switch (i)
{
#ifndef RACE_COLORS
case WHITE:
foo.pixel = pixel | planes[0] | planes[1] | planes[2];
break;
case BLACK:
foo.pixel = pixel;
break;
case RED:
foo.pixel = pixel | planes[0];
break;
case CYAN:
foo.pixel = pixel | planes[1];
break;
case YELLOW:
foo.pixel = pixel | planes[2];
break;
case GREY:
foo.pixel = pixel | planes[0] | planes[1];
break;
case GREEN:
foo.pixel = pixel | planes[1] | planes[2];
break;
#else
/*
* Choose colors so that when two ships overlap, things look
* ok. When players overlab, the bits are ORed together. */
/* Background color */
case BLACK:
foo.pixel = pixel;
break;
/* Alert colors (sum to grey usually) */
case RED:
foo.pixel = pixel | planes[1] | planes[2];
break;
case CYAN:
foo.pixel = pixel | planes[1] | planes[3];
break;
case YELLOW:
foo.pixel = pixel | planes[2] | planes[3];
break;
case GREEN:
foo.pixel = pixel | planes[1];
break;
case GREY:
foo.pixel = pixel | planes[1] | planes[2] | planes[3];
break;
/* Your color */
case WHITE:
foo.pixel = pixel | planes[0];
break;
/* The color of other ships should dominate over your color * *
* and should sum to C_IND where possible. */
case C_FED:
foo.pixel = pixel | planes[0] | planes[1] | planes[2];
break;
case C_ROM:
foo.pixel = pixel | planes[0] | planes[1] | planes[3];
break;
case C_KLI:
foo.pixel = pixel | planes[0] | planes[2] | planes[3];
break;
case C_ORI:
foo.pixel = pixel | planes[0] | planes[1];
break;
case C_IND:
foo.pixel = pixel | planes[0] | planes[1] | planes[2] | planes[3];
break;
#endif
}
if (takeNearest)
XAllocColor(W_Display, W_Colormap, &foo);
else
XStoreColor(W_Display, W_Colormap, &foo);
colortable[i].pixelValue = foo.pixel;
colortable[i].pixmap = XCreatePixmapFromBitmapData(W_Display,
W_Root, solid, TILESIDE, TILESIDE, foo.pixel, foo.pixel,
DefaultDepth(W_Display, W_Screen));
}
}
else if (W_Visual->class >= TrueColor)
{
/* Stuff added by sheldon@iastate.edu 5/28/93 This is supposed to * *
* detect a TrueColor display, and then do a lookup of the colors in *
* * default colormap, instead of creating new colormap. */
for (i = 0; i < NCOLORS; i++)
{
sprintf(defaultstring, "color.%s", colortable[i].name);
defaults = getdefault(defaultstring);
if (defaults == NULL)
{
#ifdef RACE_COLORS
if (i > GREY)
{
/* The default color from the ROMS is the color defined to
* * * be RED and not the color which is actually RED. */
sprintf(defaultstring, "color.%s",
colortable[i - RaceDefaultOffset].name);
defaults = getdefault(defaultstring);
if (defaults == NULL)
defaults = colortable[i - RaceDefaultOffset].name;
}
else
#endif
defaults = colortable[i].name;
}
XParseColor(W_Display, W_Colormap, defaults, &foo);
XAllocColor(W_Display, W_Colormap, &foo);
colortable[i].pixelValue = foo.pixel;
colortable[i].pixmap = XCreatePixmapFromBitmapData(W_Display,
W_Root, solid, TILESIDE, TILESIDE, foo.pixel, foo.pixel,
DefaultDepth(W_Display, W_Screen));
}
}
else
{
fprintf(stderr, "Don't know how to deal with a Class %d Visual\n",
W_Visual->class);
fprintf(stderr, "Your X server is not supported at %d bpp!\n",
DefaultDepth(W_Display, W_Screen));
terminate(1);
}
for (i = 0; i < NCOLORS; i++)
{
for (j = 0; j < FONTS + 1; j++)
{
XSetForeground(W_Display, colortable[i].contexts[j],
colortable[i].pixelValue);
XSetBackground(W_Display, colortable[i].contexts[j],
colortable[W_Black].pixelValue);
}
}
if (scrollbar)
{
scroll_thumb_pixmap = XCreatePixmapFromBitmapData(W_Display,
W_Root, gray, TILESIDE, TILESIDE,
colortable[W_White].pixelValue,
colortable[W_Black].pixelValue,
DefaultDepth(W_Display, W_Screen));
values.fill_style = FillTiled;
values.tile = scroll_thumb_pixmap;
scroll_thumb_gc = XCreateGC(W_Display, W_Root,
GCFillStyle | GCTile, &values);
}
}
void W_RenameWindow(W_Window window, char *str)
{
struct window *win = W_Void2Window(window);
XStoreName(W_Display, win->window, str);
}
W_Window
W_MakeWindow(char *name, int x, int y, int width, int height, W_Window parent, int border, W_Color color)
{
struct window *newwin;
Window wparent;
XSetWindowAttributes attrs;
char *window_title = "Netrek", title_buff[257];
XSizeHints *sz_hints;
int gcheck_result;
#if DEBUG > 0
printf("New window...\n");
#endif
gcheck_result = checkGeometry(name, &x, &y, &width, &height);
checkParent(name, &parent);
wparent = W_Void2Window(parent)->window;
attrs.border_pixel = colortable[color].pixelValue;
attrs.event_mask = KeyPressMask | ButtonPressMask | ExposureMask | LeaveWindowMask;
#ifdef AUTOKEY
attrs.event_mask |= KeyReleaseMask;
#endif /* AUTOKEY */
#ifdef MOTION_MOUSE
attrs.event_mask |= ButtonMotionMask;
#endif
if (strcmp(name, "netrek_icon") == 0) /* icon should not select *
* for input */
attrs.event_mask = ExposureMask;
attrs.background_pixel = colortable[W_Black].pixelValue;
attrs.do_not_propagate_mask = KeyPressMask | ButtonPressMask | ExposureMask;
newwin = newWindow(
XCreateWindow(W_Display, wparent, x, y, width, height, border,
CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWEventMask | CWBorderPixel,
&attrs),
WIN_GRAPH);
if (!strcmp(name, "netrek")) {
if (full_screen_enabled) {
#ifdef FULLSCREEN
kde_fullscreen_on(W_Window2Void(newwin));
#endif
}
}
/* top window */
sz_hints = XAllocSizeHints();
if (strcmp(name, "netrek") == 0 || strcmp(name, "wait") == 0 ||
strcmp(name, "waitmotd") == 0)
{
if (!title && serverName)
{
if (strcmp(name, "wait") == 0)
strcpy(title_buff, serverName);
else if (strcmp(name, "waitmotd") == 0)
strcpy(title_buff, "Motd-[f]forward, [b]back, [space]unmap");
else
sprintf(title_buff, "Netrek @ %s", serverName);
window_title = title_buff;
}
else
/* but title on command line will override */ if (title)
window_title = title;
sz_hints->min_width = width;
sz_hints->max_width = width;
sz_hints->min_height = height;
sz_hints->max_height = height;
sz_hints->flags = PMinSize | PMaxSize;
#ifndef SMALL_SCREEN
/* remove this check for SMALL_SCREEN;
* otherwise root window may not be aligned with upper-left corner of screen */
if (gcheck_result & G_SET_X || gcheck_result & G_SET_Y)
#endif
sz_hints->flags |= WMXYHintMode_default();
}
else
{
window_title = name;
if (gcheck_result & G_SET_X || gcheck_result & G_SET_Y)
sz_hints->flags |= WMXYHintMode_default();
}
XStoreName(W_Display, newwin->window, window_title);
XSetWMNormalHints(W_Display, newwin->window, sz_hints);
class_hint.res_name = name;
XSetClassHint(W_Display, newwin->window, &class_hint);
XSetWMHints(W_Display, newwin->window, &wm_hint);
newwin->name = strdup(name);
newwin->width = width;
newwin->height = height;
if (wparent != W_Root)
if (checkMapped(name))
W_MapWindow(W_Window2Void(newwin));
#if DEBUG > 0
printf("New graphics window %d, child of %d\n", newwin, parent);
#endif
XSetWindowColormap(W_Display, newwin->window, W_Colormap);
return W_Window2Void(newwin);
}
void
W_ChangeBorder(W_Window window, int color)
{
#if DEBUG > 2
printf("Changing border of %d\n", window);
#endif
/* fix inexplicable color bug */
if ((DisplayCells(W_Display, W_Screen) <= 2) || forceMono)
XSetWindowBorderPixmap(W_Display, W_Void2Window(window)->window,
colortable[color].pixmap);
else
XSetWindowBorder(W_Display, W_Void2Window(window)->window,
colortable[color].pixelValue);
}
void
W_MapWindow(W_Window window)
{
struct window *win;
#if DEBUG > 2
printf("Mapping %d\n", window);
#endif
win = W_Void2Window(window);
if (win->mapped)
return;
win->mapped = 1;
XMapRaised(W_Display, win->window);
}
void
W_UnmapWindow(W_Window window)
{
struct window *win;
#if DEBUG > 2
printf("UnMapping %d\n", window);
#endif
win = W_Void2Window(window);
if (win->mapped == 0)
return;
win->mapped = 0;
XUnmapWindow(W_Display, win->window);
}
int
W_IsMapped(W_Window window)
{
struct window *win;
win = W_Void2Window(window);
if (win == NULL)
return 0;
return win->mapped;
}
void
W_FillArea(W_Window window, int x, int y, int width, int height, W_Color color)
{
struct window *win;
#if DEBUG > 2
printf("Clearing (%d %d) x (%d %d) with %d on %d\n", x, y, width, height,
color, window);
#endif
win = W_Void2Window(window);
switch (win->type)
{
case WIN_GRAPH:
XFillRectangle(W_Display, win->window, colortable[color].contexts[0],
x, y, width, height);
break;
case WIN_SCROLL:
XFillRectangle(W_Display, win->window, colortable[color].contexts[0],
WIN_EDGE + x * W_Textwidth,
MENU_PAD + y * W_Textheight,
width * W_Textwidth, height * W_Textheight);
break;
default:
XFillRectangle(W_Display, win->window, colortable[color].contexts[0],
WIN_EDGE + x * W_Textwidth, MENU_PAD + y * W_Textheight,
width * W_Textwidth, height * W_Textheight);
}
}
/* XFIX */
static XRectangle _rcache[MAXCACHE];
static int _rcache_index;
static void
FlushClearAreaCache(Window win)
{
XFillRectangles(W_Display, win, colortable[backColor].contexts[0],
_rcache, _rcache_index);
_rcache_index = 0;
}
/* local window only */
void
W_CacheClearArea(W_Window window, int x, int y, int width, int height)
{
Window win = W_Void2Window(window)->window;
register XRectangle *r;
if (_rcache_index == MAXCACHE)
FlushClearAreaCache(win);
r = &_rcache[_rcache_index++];
r->x = (short) x;
r->y = (short) y;
r->width = (unsigned short) width;
r->height = (unsigned short) height;
}
void
W_FlushClearAreaCache(W_Window window)
{
Window win = W_Void2Window(window)->window;
if (_rcache_index)
FlushClearAreaCache(win);
}
/* XFIX: clears now instead of filling. */
void
W_ClearArea(W_Window window, int x, int y, int width, int height)
{
struct window *win;
win = W_Void2Window(window);
switch (win->type)
{
case WIN_GRAPH:
/* XFIX: changed */
XClearArea(W_Display, win->window, x, y, width, height, False);
break;
case WIN_SCROLL:
XClearArea(W_Display, win->window, WIN_EDGE + x * W_Textwidth,
MENU_PAD + y * W_Textheight,
width * W_Textwidth, height * W_Textheight, False);
break;
default:
/* XFIX: changed */
XClearArea(W_Display, win->window, WIN_EDGE + x * W_Textwidth,
MENU_PAD + y * W_Textheight, width * W_Textwidth, height * W_Textheight, False);
break;
}
}
void
W_ClearWindow(W_Window window)
{
#if DEBUG > 2
printf("Clearing %d\n", window);
#endif
XClearWindow(W_Display, W_Void2Window(window)->window);
}
int
W_Pending(void)
{
return XPending(W_Display);
}
int
W_EventsPending(void)
{
if (W_isEvent)
return 1;
while (XPending(W_Display))
{
if (W_SpNextEvent(&W_myevent))
{
W_isEvent = 1;
return 1;
}
}
return 0;
}
void
W_NextEvent(W_Event * wevent)
{
if (W_isEvent)
{
*wevent = W_myevent;
W_isEvent = 0;
return;
}
while (W_SpNextEvent(wevent) == 0);
}
static unsigned char sym_to_key(int sym)
{
switch (sym) {
case XK_Up: return W_Key_Up;
case XK_Down: return W_Key_Down;
}
return 0;
}
int
W_SpNextEvent(W_Event * wevent)
{
XEvent event;
XKeyEvent *key;
XButtonEvent *button;
XExposeEvent *expose;
XConfigureEvent *configure;
#ifdef MOTION_MOUSE
XMotionEvent *motion;
static int prev_x, prev_y;
int thresh;
#endif
#ifdef CONTROL_KEY
int control_key = 0;
#endif
unsigned char ch;
int nch;
struct window *win;
KeySym sym;
#if DEBUG > 1
printf("event");
#endif
key = (XKeyEvent *) & event;
button = (XButtonEvent *) & event;
expose = (XExposeEvent *) & event;
configure = (XConfigureEvent *) & event;
#ifdef MOTION_MOUSE
motion = (XMotionEvent *) & event;
#endif
for (;;)
{
XNextEvent(W_Display, &event);
#if DEBUG > 1
printf(", read type=%d\n", event.type);
#endif
win = findWindow(key->window);
if (win == NULL)
return 0;
if (key->send_event == True && event.type != ClientMessage)
return 0; /* event sent by another client */
if ((event.type == KeyPress || event.type == ButtonPress) &&
win->type == WIN_MENU)
{
if (key->y % (W_Textheight + MENU_PAD * 2 + MENU_BAR) >=
W_Textheight + MENU_PAD * 2)
return 0;
key->y = key->y / (W_Textheight + MENU_PAD * 2 + MENU_BAR);
}
switch ((int) event.type)
{
case ClientMessage:
if (event.xclient.message_type == wm_protocols &&
event.xclient.data.l[0] == wm_delete_window)
{
W_UnmapWindow(W_Window2Void(win));
wevent->type = W_EV_CLOSED;
wevent->Window = W_Window2Void(win);
wevent->key = wevent->x = wevent->y = 0;
return 1;
}
break;
case LeaveNotify: /* for message window -- jfy */
if (win == (struct window *) messagew)
{
W_in_message = 0;
}
return 0;
break;
case KeyPress:
if ((key->state & LockMask) && !(key->state & ShiftMask) &&
(ignoreCaps))
{
printf("Got a capslock!\n");
key->state = key->state & ~LockMask;
}
#ifdef CONTROL_KEY
if (key->state & ControlMask && use_control_key)
{
control_key = 1;
key->state = key->state & ~ControlMask;
}
else
control_key = 0;
#endif
nch = XLookupString(key, (char *) &ch, 1, &sym, NULL);
if (nch == 0) {
ch = sym_to_key(sym);
if (ch == 0) return 0;
}
#ifdef MOUSE_AS_SHIFT
if (mouse_as_shift)
{
if (key->state & Button1Mask)
{
wevent->modifier = W_LBUTTON;
wevent->type = W_EV_MKEY;
}
else if (key->state & Button2Mask)
{
wevent->modifier = W_MBUTTON;
wevent->type = W_EV_MKEY;
}
else if (key->state & Button3Mask)
{
wevent->modifier = W_RBUTTON;
wevent->type = W_EV_MKEY;
}
else
{
wevent->type = W_EV_KEY;
}
}
else
wevent->type = W_EV_KEY;
#else
wevent->type = W_EV_KEY;
#endif
wevent->Window = W_Window2Void(win);
wevent->x = key->x;
wevent->y = key->y;
#ifdef CONTROL_KEY
if (control_key)
wevent->key = (unsigned char) (ch + 96);
else
wevent->key = ch;
#else
wevent->key = ch;
#endif
return 1;
break;
#ifdef AUTOKEY
case KeyRelease:
if (XLookupString(key, &ch, 1, NULL, NULL) > 0)
{
wevent->type = W_EV_KEY_OFF;
wevent->Window = W_Window2Void(win);
wevent->x = key->x;
wevent->y = key->y;
wevent->key = ch;
return 1;
}
return 0;
break;
#endif /* AUTOKEY */
case ButtonPress:
wevent->type = W_EV_BUTTON;
wevent->Window = W_Window2Void(win);
#ifdef MOTION_MOUSE
prev_x = wevent->x = button->x;
prev_y = wevent->y = button->y;
#else
wevent->x = button->x;
wevent->y = button->y;
#endif
#ifdef MOUSE_AS_SHIFT
if (mouse_as_shift &&
(wevent->Window == mapw || wevent->Window == w))
switch (button->button & 0xf)
{
case Button3:
if (b3_as_shift)
return 0;
break;
case Button1:
if (b1_as_shift)
return 0;
break;
case Button2:
if (b2_as_shift)
return 0;
break;
}
#endif
switch (button->button & 0xf)
{
case Button3:
wevent->key = W_RBUTTON;
break;
case Button1:
wevent->key = W_LBUTTON;
break;
case Button2:
wevent->key = W_MBUTTON;
break;
#ifdef Button4
case Button4:
wevent->key = W_WUBUTTON;
break;
#endif
#ifdef Button5
case Button5:
wevent->key = W_WDBUTTON;
break;
#endif
#ifdef Button6
case Button6:
wevent->key = W_X1BUTTON;
break;
#endif
#ifdef Button7
case Button7:
wevent->key = W_X2BUTTON;
break;
#endif
}
#ifdef SHIFTED_MOUSE
if (extended_mouse)
{
if (button->state & (ControlMask | ShiftMask))
{
if (button->state & ShiftMask)
{
wevent->key |= W_SHIFT_BUTTON;
}
if (button->state & ControlMask)
{
wevent->key |= W_CTRL_BUTTON;
}
return 1;
}
}
#endif
if (win->type == WIN_SCROLL)
{
scrollScrolling(wevent);
return 0;
}
return 1;
#ifdef MOTION_MOUSE
case MotionNotify:
if (!motion_mouse ||
(!motion_mouse_enablable && !motion_mouse_steering))
return 0;
wevent->type = W_EV_CM_BUTTON;
wevent->Window = W_Window2Void(win);
thresh = abs(prev_x - motion->x) + abs(prev_y - motion->y);
if (thresh < user_motion_thresh)
return 0;
prev_x = wevent->x = motion->x;
prev_y = wevent->y = motion->y;
#ifdef MOUSE_AS_SHIFT
if (mouse_as_shift &&
(wevent->Window == mapw || wevent->Window == w))
switch (button->button & 0xf)
{
case Button3:
if (b3_as_shift)
return 0;
break;
case Button1:
if (b1_as_shift)
return 0;
break;
case Button2:
if (b2_as_shift)
return 0;
break;
}
#endif
switch (button->button & 0xf)
{
case Button3:
wevent->key = W_RBUTTON;
break;
case Button1:
wevent->key = W_LBUTTON;
break;
case Button2:
wevent->key = W_MBUTTON;
break;
#ifdef Button4
case Button4:
wevent->key = W_WUBUTTON;
break;
#endif
#ifdef Button5
case Button5:
wevent->key = W_WDBUTTON;
break;
#endif
#ifdef Button6
case Button6:
wevent->key = W_X1BUTTON;
break;
#endif
#ifdef Button7
case Button7:
wevent->key = W_X2BUTTON;
break;
#endif
}
#ifdef SHIFTED_MOUSE
if (extended_mouse)
{
if (button->state & (ControlMask | ShiftMask))
{
if (button->state & ShiftMask)
{
wevent->key |= W_SHIFT_BUTTON;
}
if (button->state & ControlMask)
{
wevent->key |= W_CTRL_BUTTON;
}
return 1;
}
}
#endif
return 1;
#endif
case Expose:
if (expose->count != 0)
return 0;
if (win->type == WIN_SCROLL)
{
configureScrolling(win, expose->x, expose->y,
expose->width, expose->height);
redrawScrolling(win);
return 0;
}
if (win->type == WIN_MENU)
{
redrawMenu(win);
return 0;
}
wevent->type = W_EV_EXPOSE;
wevent->Window = W_Window2Void(win);
return 1;
case ConfigureNotify:
configureScrolling(win, configure->x, configure->y,
configure->width, configure->height);
break;
default:
return 0;
break;
}
}
}
void
W_MakeLine(W_Window window, int x0, int y0, int x1, int y1, W_Color color)
{
Window win;
#if DEBUG > 3
printf("Line on %d\n", window);
#endif
win = W_Void2Window(window)->window;
XDrawLine(W_Display, win, colortable[color].contexts[0], x0, y0, x1, y1);
}
/* XFIX */
static XSegment _lcache[NCOLORS][MAXCACHE];
static int _lcache_index[NCOLORS];
static void
FlushLineCache(Window win, int color)
{
XDrawSegments(W_Display, win, colortable[color].contexts[0],
_lcache[color], _lcache_index[color]);
_lcache_index[color] = 0;
}
/* for local window only */
void
W_CacheLine(W_Window window, int x0, int y0, int x1, int y1, int color)
{
Window win = W_Void2Window(window)->window;
register XSegment *s;
if (_lcache_index[color] == MAXCACHE)
FlushLineCache(win, color);
s = &_lcache[color][_lcache_index[color]++];
s->x1 = (short) x0;
s->y1 = (short) y0;
s->x2 = (short) x1;
s->y2 = (short) y1;
}
void
W_FlushLineCaches(W_Window window)
{
Window win = W_Void2Window(window)->window;
int i;
for (i = 0; i < NCOLORS; i++)
{
if (_lcache_index[i])
FlushLineCache(win, i);
}
}
void
W_MakeTractLine(W_Window window, int x0, int y0, int x1, int y1, W_Color color)
{
Window win;
#if DEBUG > 3
printf("Line on %d\n", window);
#endif
win = W_Void2Window(window)->window;
XDrawLine(W_Display, win, colortable[color].contexts[3], x0, y0, x1, y1);
}
void
W_MakePhaserLine(W_Window window, int x0, int y0, int x1, int y1, W_Color color)
{
Window win;
#if DEBUG > 3
printf("Line on %d\n", window);
#endif
win = W_Void2Window(window)->window;
XDrawLine(W_Display, win, colortable[color].contexts[1], x0, y0, x1, y1);
}
void W_WriteCircle (W_Window window,
int x,
int y,
int r,
W_Color color)
{
struct window *win = W_Void2Window(window);
XSetForeground(W_Display, colortable[color].contexts[0],
colortable[color].pixelValue);
XDrawArc(W_Display, win->window, colortable[color].contexts[0],
x, y, r, r, 0, 23040);
}
void
W_WriteTriangle(W_Window window, int x, int y, int s, int t, W_Color color)
{
struct window *win = W_Void2Window(window);
XPoint points[4];
if (t == 0)
{
points[0].x = x;
points[0].y = y;
points[1].x = x + s;
points[1].y = y - s;
points[2].x = x - s;
points[2].y = y - s;
points[3].x = x;
points[3].y = y;
}
else
{
points[0].x = x;
points[0].y = y;
points[1].x = x + s;
points[1].y = y + s;
points[2].x = x - s;
points[2].y = y + s;
points[3].x = x;
points[3].y = y;
}
XDrawLines(W_Display, win->window, colortable[color].contexts[0],
points, 4, CoordModeOrigin);
}
void
W_WriteText(W_Window window, int x, int y, W_Color color, char *str, int len, W_Font font)
{
struct window *win;
int addr;
#if DEBUG > 3
printf("Text for %d @ (%d, %d) in %d: [%s]\n", window, x, y, color, str);
#endif
if (font == 0)
font = W_RegularFont;
win = W_Void2Window(window);
switch (win->type)
{
case WIN_GRAPH:
addr = fonts[fontNum(font)].baseline;
if (len < 0) len = strlen(str);
XDrawImageString(W_Display, win->window,
#ifdef SHORT_PACKETS
win->insensitive ?
colortable[color].insens_contexts[1] :
colortable[color].contexts[fontNum(font)],
#else
colortable[color].contexts[fontNum(font)],
#endif
x, y + addr, str, len);
break;
case WIN_SCROLL:
XCopyArea(W_Display, win->window, win->window,
colortable[W_White].contexts[0], WIN_EDGE, MENU_PAD + W_Textheight,
win->width * W_Textwidth, (win->height - 1) * W_Textheight,
WIN_EDGE, MENU_PAD);
XClearArea(W_Display, win->window,
WIN_EDGE, MENU_PAD + W_Textheight * (win->height - 1),
W_Textwidth * win->width, W_Textheight, False);
if (len < 0) len = strlen(str);
XDrawImageString(W_Display, win->window,
#ifdef SHORT_PACKETS
win->insensitive ?
colortable[color].insens_contexts[1] :
colortable[color].contexts[fontNum(font)],
#else
colortable[color].contexts[fontNum(font)],
#endif
WIN_EDGE, MENU_PAD + W_Textheight * (win->height - 1) + fonts[fontNum(font)].baseline,
str, len);
AddToScrolling(win, color, font, str, len);
break;
case WIN_MENU:
changeMenuItem(win, x, y, str, color);
break;
default:
addr = fonts[fontNum(font)].baseline;
if (len < 0) len = strlen(str);
XDrawImageString(W_Display, win->window,
#ifdef SHORT_PACKETS
win->insensitive ?
colortable[color].insens_contexts[1] :
colortable[color].contexts[fontNum(font)],
#else
colortable[color].contexts[fontNum(font)],
#endif
x * W_Textwidth + WIN_EDGE, MENU_PAD + y * W_Textheight + addr,
str, len);
break;
}
}
void
W_MaskText(W_Window window, int x, int y, W_Color color, char *str, int len, W_Font font)
{
struct window *win;
int addr;
addr = fonts[fontNum(font)].baseline;
#if DEBUG > 3
printf("TextMask for %d @ (%d, %d) in %d: [%s]\n", window, x, y, color, str);
#endif
win = W_Void2Window(window);
XDrawString(W_Display, win->window,
colortable[color].contexts[fontNum(font)], x, y + addr, str, len);
}
W_Icon
W_StoreBitmap(int width, int height, char *data, W_Window window)
{
struct icon *newicon;
struct window *win;
#if DEBUG > 0
printf("Storing bitmap for %d (%d x %d)\n", window, width, height);
fflush(stdout);
#endif
win = W_Void2Window(window);
newicon = (struct icon *) malloc(sizeof(struct icon));
newicon->width = width;
newicon->height = height;
newicon->bitmap = XCreateBitmapFromData(W_Display, win->window,
data, width, height);
#ifdef nodef
/* XFIX: changed to Pixmap */
white = WhitePixel(W_Display, W_Screen);
black = BlackPixel(W_Display, W_Screen);
newicon->bitmap = XCreatePixmapFromBitmapData(W_Display, W_Root, data,
width, height, white, black,
DefaultDepth(W_Display,
W_Screen));
#endif /* nodef */
newicon->window = win->window;
newicon->pixmap = 0;
return W_Icon2Void(newicon);
}
void
W_WriteBitmap(int x, int y, W_Icon bit, W_Color color)
{
struct icon *icon;
icon = W_Void2Icon(bit);
#if DEBUG > 4
printf("Writing bitmap to %d\n", icon->window);
#endif
XCopyPlane(W_Display, icon->bitmap, icon->window,
colortable[color].contexts[BITGC], 0, 0, icon->width, icon->height,
x, y, 1);
#ifdef nodef
/* XFIX : copyarea */
XCopyArea(W_Display, icon->bitmap, icon->window,
colortable[color].contexts[BITGC], 0, 0, icon->width, icon->height,
x, y);
#endif
}
void
W_TileWindow(W_Window window, W_Icon bit)
{
Window win;
struct icon *icon;
#if DEBUG > 4
printf("Tiling window %d\n", window);
#endif
icon = W_Void2Icon(bit);
win = W_Void2Window(window)->window;
if (icon->pixmap == 0)
{
icon->pixmap = XCreatePixmap(W_Display, W_Root,
icon->width, icon->height, DefaultDepth(W_Display, W_Screen));
XCopyPlane(W_Display, icon->bitmap, icon->pixmap,
colortable[W_White].contexts[0], 0, 0, icon->width, icon->height,
0, 0, 1);
}
XSetWindowBackgroundPixmap(W_Display, win, icon->pixmap);
XClearWindow(W_Display, win);
/* if (icon->pixmap==0) { icon->pixmap=XMakePixmap(icon->bitmap, * *
* colortable[W_White].pixelValue, colortable[W_Black].pixelValue); } * *
* XChangeBackground(win, icon->pixmap); XClear(win); */
}
void
W_UnTileWindow(W_Window window)
{
Window win;
#if DEBUG > 4
printf("Untiling window %d\n", window);
#endif
win = W_Void2Window(window)->window;
XSetWindowBackground(W_Display, win, colortable[W_Black].pixelValue);
XClearWindow(W_Display, win);
}
W_Window
W_MakeTextWindow(char *name, int x, int y, int width, int height, W_Window parent, int border)
{
struct window *newwin;
Window wparent;
XSetWindowAttributes attrs;
XSizeHints *sz_hints;
int gcheck_result;
#if DEBUG > 0
printf("New window...\n");
#endif
gcheck_result = checkGeometry(name, &x, &y, &width, &height);
checkParent(name, &parent);
attrs.border_pixel = colortable[W_White].pixelValue;
attrs.event_mask = ExposureMask;
#ifdef AUTOKEY
attrs.event_mask |= KeyReleaseMask;
#endif /* AUTOKEY */
#ifdef SHORT_PACKETS
attrs.event_mask |= ButtonPressMask;
#endif
attrs.background_pixel = colortable[W_Black].pixelValue;
attrs.do_not_propagate_mask = ExposureMask;
wparent = W_Void2Window(parent)->window;
newwin = newWindow(
XCreateWindow(W_Display, wparent, x, y,
width * W_Textwidth + WIN_EDGE * 2, MENU_PAD * 2 + height * W_Textheight,
border, CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWEventMask |
CWBorderPixel,
&attrs),
WIN_TEXT);
class_hint.res_name = name;
sz_hints = XAllocSizeHints();
sz_hints->min_width = WIN_EDGE * 2 + width * W_Textwidth;
sz_hints->max_width = WIN_EDGE * 2 + width * W_Textwidth;
sz_hints->base_width = WIN_EDGE * 2;
sz_hints->width_inc = W_Textwidth;
sz_hints->min_height = MENU_PAD * 2 + 3 * W_Textheight;
sz_hints->max_height = MENU_PAD * 2 + height * W_Textheight;
sz_hints->base_height = MENU_PAD * 2 + 2 * W_Textheight;
sz_hints->height_inc = W_Textheight;
sz_hints->flags = PResizeInc | PMinSize | PMaxSize | PBaseSize;
if (gcheck_result & G_SET_X || gcheck_result & G_SET_Y)
sz_hints->flags |= WMXYHintMode_default();
XStoreName(W_Display, newwin->window, name);
XSetWMNormalHints(W_Display, newwin->window, sz_hints);
XSetClassHint(W_Display, newwin->window, &class_hint);
XSetWMHints(W_Display, newwin->window, &wm_hint);
newwin->name = strdup(name);
newwin->width = width;
newwin->height = height;
if (wparent != W_Root)
if (checkMapped(name))
W_MapWindow(W_Window2Void(newwin));
#if DEBUG > 0
printf("New text window %d, child of %d\n", newwin, parent);
#endif
XSetWindowColormap(W_Display, newwin->window, W_Colormap);
return W_Window2Void(newwin);
}
struct window *
newWindow(Window window, int type)
{
struct window *newwin;
XSetWMProtocols (W_Display, window, &wm_delete_window, 1);
newwin = (struct window *) malloc(sizeof(struct window));
newwin->window = window;
newwin->type = type;
newwin->mapped = 0;
newwin->handle_keydown = 0;
newwin->handle_keyup = 0;
newwin->handle_button = 0;
newwin->handle_expose = 0;
addToHash(newwin);
#ifdef SHORT_PACKETS
newwin->insensitive = 0;
#endif
newwin->cursor = (Cursor) 0; /* about the best I can do *
*
* * -jw */
return newwin;
}
struct window *
findWindow(Window window)
{
struct windowlist *entry;
entry = hashtable[hash(window)];
while (entry != NULL)
{
if (entry->window->window == window)
return entry->window;
entry = entry->next;
}
return NULL;
}
void addToHash(struct window * win)
{
struct windowlist **new;
#if DEBUG > 0
printf("Adding to %d\n", hash(win->window));
#endif
new = &hashtable[hash(win->window)];
while (*new != NULL)
{
new = &((*new)->next);
}
*new = (struct windowlist *) malloc(sizeof(struct windowlist));
(*new)->next = NULL;
(*new)->window = win;
}
W_Window
W_MakeScrollingWindow(name, x, y, width, height, parent, border)
char *name;
int x, y, width, height;
W_Window parent;
int border;
{
struct window *newwin;
Window wparent;
XSetWindowAttributes attrs;
XSizeHints *sz_hints;
int gcheck_result;
struct scrollingWindow *sw;
int scw = (scrollbar ? scroll_thumb_width : 0);
#if DEBUG > 0
printf("New window...\n");
#endif
gcheck_result = checkGeometry(name, &x, &y, &width, &height);
checkParent(name, &parent);
wparent = W_Void2Window(parent)->window;
attrs.border_pixel = colortable[W_White].pixelValue;
attrs.event_mask = StructureNotifyMask | ExposureMask | ButtonPressMask;
#ifdef AUTOKEY
attrs.event_mask |= KeyReleaseMask;
#endif /* AUTOKEY */
attrs.background_pixel = colortable[W_Black].pixelValue;
/* NOTE: CWDontPropagate seems to crash in OpenWindows */
attrs.do_not_propagate_mask = ResizeRedirectMask | ExposureMask;
newwin = newWindow(
XCreateWindow(W_Display, wparent, x, y,
width * W_Textwidth + WIN_EDGE * 2 + scw,
MENU_PAD * 2 + height * W_Textheight,
border, CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWEventMask |
CWBorderPixel /* | CWDontPropagate */ ,
&attrs), WIN_SCROLL);
class_hint.res_name = name;
sz_hints = XAllocSizeHints();
sz_hints->width_inc = W_Textwidth;
sz_hints->height_inc = W_Textheight;
sz_hints->min_width = WIN_EDGE * 2 + W_Textwidth + scw;
sz_hints->min_height = MENU_PAD * 2 + W_Textheight;
sz_hints->base_width = WIN_EDGE * 2 + scw;
sz_hints->base_height = MENU_PAD * 2;
sz_hints->flags = PResizeInc | PMinSize | PBaseSize;
if (gcheck_result & XValue || gcheck_result & YValue)
sz_hints->flags |= WMXYHintMode_default();
XStoreName(W_Display, newwin->window, name);
XSetWMNormalHints(W_Display, newwin->window, sz_hints);
XFree((void *) sz_hints);
XSetClassHint(W_Display, newwin->window, &class_hint);
XSetWMHints(W_Display, newwin->window, &wm_hint);
newwin->name = strdup(name);
sw = (struct scrollingWindow *) malloc(sizeof(struct scrollingWindow));
sw->lines = 0;
sw->updated = 0;
sw->head = sw->tail = sw->index = NULL;
sw->topline = 0;
newwin->data = (char *) sw;
newwin->width = width;
newwin->height = height;
if (wparent != W_Root)
if (checkMapped(name))
W_MapWindow(W_Window2Void(newwin));
#if DEBUG > 0
printf("New scroll window %d, child of %d\n", newwin, parent);
#endif
XSetWindowColormap(W_Display, newwin->window, W_Colormap);
return W_Window2Void(newwin);
}
/*
* Add a string to the string list of the scrolling window.
*/
static void
AddToScrolling(win, color, font, str, len)
struct window *win;
W_Color color;
W_Font font;
char *str;
int len;
{
struct scrollingWindow *sw;
struct stringList *new;
/* simple, fast */
sw = (struct scrollingWindow *) win->data;
if (sw->lines > 0 && sw->lines > scroll_lines /* some large number */ )
{
/* resuse tail */
new = sw->tail;
sw->tail = new->prev;
new->prev->next = NULL;
new->prev = NULL;
new->next = sw->head;
sw->head->prev = new;
sw->head = new;
}
else
{
new = (struct stringList *) malloc(sizeof(struct stringList));
new->next = sw->head;
new->prev = NULL;
if (sw->head)
sw->head->prev = new;
sw->head = new;
if (!sw->tail)
sw->tail = new;
sw->lines++;
/*
* printf("adding one line \"%s\" C:%d F:%d.\n", str, color,
* fontNum(font)); */
}
sw->index = sw->head; /* input forces to end of *
* list */
sw->topline = 0;
sw->updated++; /* mark for *
* W_FlushScrollingWindow */
STRNCPY(new->string, str, MAX_TEXT_WIDTH - 1);
new->color = color;
new->font = font;
if (len >= MAX_TEXT_WIDTH)
{
new->string[MAX_TEXT_WIDTH - 1] = 0;
}
else
{
/* we pad out the string with spaces so we don't have to clear the *
* window */
memset(&new->string[len], ' ', MAX_TEXT_WIDTH - len - 1);
new->string[MAX_TEXT_WIDTH - 1] = 0;
}
}
void
W_FlushScrollingWindow(window)
W_Window window;
{
struct window *win = W_Void2Window(window);
struct scrollingWindow *sw;
if (!win->mapped)
return;
if (win->type != WIN_SCROLL)
{
fprintf(stderr, "bad window type in W_FlushScrollingWindow.\n");
return;
}
sw = (struct scrollingWindow *) win->data;
if (!sw->updated)
return;
#ifndef NO_COPYAREA
else
{
struct stringList *item;
int y;
if (win->height > sw->updated)
{
XCopyArea(W_Display, win->window, win->window,
colortable[W_White].contexts[0],
WIN_EDGE, MENU_PAD + sw->updated * W_Textheight,
win->width * W_Textwidth,
(win->height - sw->updated) * W_Textheight,
WIN_EDGE, MENU_PAD);
}
y = (win->height - 1) * W_Textheight + fonts[1].baseline;
for (item = sw->index; item && y > 0 && sw->updated; item = item->next,
y -= W_Textheight,
sw->updated--)
{
XDrawImageString(W_Display, win->window,
colortable[item->color].contexts[fontNum(item->font)],
WIN_EDGE, MENU_PAD + y, item->string,
win->width);
}
sw->updated = 0;
if (scrollbar)
drawThumb(win, sw);
}
#else
redrawScrolling(win);
#endif
}
static void
drawThumb(win, sw)
struct window *win;
struct scrollingWindow *sw;
{
int x, y, h;
int savedlines, maxrow, thumbTop, thumbHeight, totalHeight, winheight;
/*
* savedlines : Number of offscreen text lines,
* sw->lines - win->height
*
* maxrow + 1 : Number of onscreen text lines,
*
* min(sw->lines + 1, win->height+1)
*
* sw->topline : -Number of lines above the last max_row+1 lines
*
* thumbTop = screen->topline + screen->savedlines;
* thumbHeight = screen->max_row + 1;
* totalHeight = thumbHeight + screen->savedlines;
*
* XawScrollbarSetThumb(scrollWidget,
* ((float)thumbTop) / totalHeight,
* ((float)thumbHeight) / totalHeight);
*/
savedlines = sw->lines - win->height;
if (savedlines < 0)
savedlines = 0;
maxrow = sw->lines < win->height ? sw->lines : win->height;
winheight = win->height * W_Textheight + MENU_PAD * 2;
thumbTop = sw->topline + savedlines;
thumbHeight = maxrow + 1;
totalHeight = thumbHeight + savedlines;
x = win->width * W_Textwidth + WIN_EDGE * 2;
y = winheight * thumbTop / totalHeight;
h = winheight * thumbHeight / totalHeight;
XClearArea(W_Display, win->window, x, 0, scroll_thumb_width, winheight,
False);
XFillRectangle(W_Display, win->window, scroll_thumb_gc,
x, y,
scroll_thumb_width, h);
XDrawLine(W_Display, win->window, colortable[W_Red].contexts[0],
x, 0, x, winheight);
}
static void
redrawScrolling(win)
struct window *win;
{
int y;
struct scrollingWindow *sw;
register struct stringList *item;
if (!win->mapped)
return;
/* simple, fast */
sw = (struct scrollingWindow *) win->data;
if (!sw->lines)
return;
sw->updated = 0;
y = (win->height - 1) * W_Textheight + fonts[1].baseline;
for (item = sw->index; item && y > 0; item = item->next, y -= W_Textheight)
{
XDrawImageString(W_Display, win->window,
colortable[item->color].contexts[fontNum(item->font)],
WIN_EDGE, MENU_PAD + y, item->string,
win->width);
}
if (scrollbar)
drawThumb(win, sw);
}
#ifdef SHORT_PACKETS
void W_SetSensitive(W_Window w, int v)
{
struct window *win = W_Void2Window(w);
win->insensitive = !v;
if (win->type == WIN_SCROLL)
redrawScrolling(win);
}
#endif
W_Window
W_MakeMenu(char *name, int x, int y, int width, int height, W_Window parent, int border)
{
struct window *newwin;
struct menuItem *items;
Window wparent;
int i;
XSetWindowAttributes attrs;
#if DEBUG > 0
printf("New window...\n");
#endif
checkGeometry(name, &x, &y, &width, &height);
checkParent(name, &parent);
wparent = W_Void2Window(parent)->window;
attrs.border_pixel = colortable[W_White].pixelValue;
attrs.event_mask = KeyPressMask | ButtonPressMask | ExposureMask;
#ifdef AUTOKEY
attrs.event_mask |= KeyReleaseMask;
#endif /* AUTOKEY */
attrs.background_pixel = colortable[W_Black].pixelValue;
attrs.do_not_propagate_mask = KeyPressMask | ButtonPressMask | ExposureMask;
newwin = newWindow(
XCreateWindow(W_Display, wparent, x, y,
width * W_Textwidth + WIN_EDGE * 2,
height * (W_Textheight + MENU_PAD * 2) + (height - 1) * MENU_BAR, border,
CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWEventMask |
CWBorderPixel,
&attrs),
WIN_MENU);
class_hint.res_name = name;
XSetClassHint(W_Display, newwin->window, &class_hint);
XSetWMHints(W_Display, newwin->window, &wm_hint);
XStoreName(W_Display, newwin->window, name);
newwin->name = strdup(name);
items = (struct menuItem *) malloc(height * sizeof(struct menuItem));
for (i = 0; i < height; i++)
{
/* new: allocate once and reuse -tsh */
items[i].column = 0;
items[i].string = (char *) malloc(MAX_TEXT_WIDTH);
items[i].color = W_White;
}
newwin->data = (char *) items;
newwin->width = width;
newwin->height = height;
if (wparent != W_Root)
if (checkMapped(name))
W_MapWindow(W_Window2Void(newwin));
#if DEBUG > 0
printf("New menu window %d, child of %d\n", newwin, parent);
#endif
XSetWindowColormap(W_Display, newwin->window, W_Colormap);
return W_Window2Void(newwin);
}
void redrawMenu(struct window * win)
{
int count;
for (count = 1; count < win->height; count++)
{
XFillRectangle(W_Display, win->window,
colortable[W_Grey].contexts[0],
0, count * (W_Textheight + MENU_PAD * 2) + (count - 1) * MENU_BAR,
win->width * W_Textwidth + WIN_EDGE * 2, MENU_BAR);
}
for (count = 0; count < win->height; count++)
{
redrawMenuItem(win, count);
}
}
void redrawMenuItem(struct window *win, int n)
{
struct menuItem *items;
items = (struct menuItem *) win->data;
XFillRectangle(W_Display, win->window,
colortable[W_Black].contexts[0],
WIN_EDGE, n * (W_Textheight + MENU_PAD * 2 + MENU_BAR) + MENU_PAD,
win->width * W_Textwidth, W_Textheight);
if (items[n].string)
{
XDrawImageString(W_Display, win->window,
colortable[items[n].color].contexts[1],
WIN_EDGE + W_Textwidth * items[n].column,
n * (W_Textheight + MENU_PAD * 2 + MENU_BAR) + MENU_PAD + fonts[1].baseline,
items[n].string, strlen(items[n].string));
}
}
static void changeMenuItem(struct window *win, int col, int n, char *str, W_Color color)
{
struct menuItem *items;
items = (struct menuItem *) win->data;
STRNCPY(items[n].string, str, MAX_TEXT_WIDTH - 1);
items[n].string[MAX_TEXT_WIDTH - 1] = 0;
items[n].color = color;
items[n].column = col;
redrawMenuItem(win, n);
}
void
W_DefineMapcursor(W_Window window)
{
Cursor new;
Pixmap mapcursmaskbit;
Pixmap mapcursbit;
struct window *win = W_Void2Window(window);
char *path;
static
XColor f, b;
int w, h, xh, yh;
xh = yh = 5;
f.pixel = colortable[W_White].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
mapcursbit = XCreateBitmapFromData(W_Display, win->window, mapcursor_bits,
mapcursor_width, mapcursor_height);
if ((path = getdefault("mapCursorDef")))
{
if (W_LoadBitmap(window, path, &mapcursmaskbit, &w, &h, &xh, &yh) != 1)
{
mapcursmaskbit = XCreateBitmapFromData(W_Display, win->window,
mapmask_bits, mapmask_width, mapmask_height);
xh = yh = 5;
}
else
{
mapcursbit = XCreatePixmap(W_Display, win->window, w, h, 1);
XFillRectangle(W_Display, mapcursbit,
colortable[W_White].contexts[0], 0, 0, w, h);
}
}
else
mapcursmaskbit = XCreateBitmapFromData(W_Display, win->window,
mapmask_bits, mapmask_width, mapmask_height);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreatePixmapCursor(W_Display, mapcursbit, mapcursmaskbit,
&b, &f, xh, yh);
XRecolorCursor(W_Display, new, &b, &f);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineLocalcursor(W_Window window)
{
Cursor new;
Pixmap localcursmaskbit;
Pixmap localcursbit;
struct window *win = W_Void2Window(window);
char *path;
static
XColor f, b;
int w, h, xh, yh;
xh = yh = 5;
f.pixel = colortable[W_White].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
localcursbit = XCreateBitmapFromData(W_Display, win->window,
localcursor_bits, localcursor_width, localcursor_height);
if ((path = getdefault("localCursorDef")))
{
if (W_LoadBitmap(window, path, &localcursmaskbit, &w, &h, &xh, &yh) != 1)
{
localcursmaskbit = XCreateBitmapFromData(W_Display, win->window,
localmask_bits, localmask_width, localmask_height);
xh = yh = 5;
}
else
{
localcursbit = XCreatePixmap(W_Display, win->window, w, h, 1);
XFillRectangle(W_Display, localcursbit,
colortable[W_White].contexts[0], 0, 0, w, h);
}
}
else
localcursmaskbit = XCreateBitmapFromData(W_Display, win->window,
localmask_bits, localmask_width, localmask_height);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreatePixmapCursor(W_Display, localcursbit, localcursmaskbit,
&b, &f, xh, yh);
XRecolorCursor(W_Display, new, &b, &f);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineFedCursor(W_Window window)
{
Cursor new;
Pixmap fedcursmaskbit;
Pixmap fedcursbit;
struct window *win = W_Void2Window(window);
static
XColor f, b;
f.pixel = colortable[W_White].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
fedcursbit = XCreateBitmapFromData(W_Display, win->window, fed_cruiser_bits,
fed_cruiser_width, fed_cruiser_height);
fedcursmaskbit = XCreateBitmapFromData(W_Display, win->window,
fed_mask_bits, fed_mask_width, fed_mask_height);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreatePixmapCursor(W_Display, fedcursmaskbit, fedcursbit,
&b, &f, 10, 10);
XRecolorCursor(W_Display, new, &b, &f);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineRomCursor(W_Window window)
{
Cursor new;
Pixmap romcursmaskbit;
Pixmap romcursbit;
struct window *win = W_Void2Window(window);
static
XColor f, b;
f.pixel = colortable[W_White].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
romcursbit = XCreateBitmapFromData(W_Display, win->window, rom_cruiser_bits,
rom_cruiser_width, rom_cruiser_height);
romcursmaskbit = XCreateBitmapFromData(W_Display, win->window,
rom_mask_bits, rom_cruiser_width, rom_cruiser_height);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreatePixmapCursor(W_Display, romcursmaskbit, romcursbit,
&b, &f, 10, 10);
XRecolorCursor(W_Display, new, &b, &f);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineKliCursor(W_Window window)
{
Cursor new;
Pixmap klicursmaskbit;
Pixmap klicursbit;
struct window *win = W_Void2Window(window);
static
XColor f, b;
f.pixel = colortable[W_White].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
klicursbit = XCreateBitmapFromData(W_Display, win->window, kli_cruiser_bits,
kli_cruiser_width, kli_cruiser_height);
klicursmaskbit = XCreateBitmapFromData(W_Display, win->window,
fed_mask_bits, kli_cruiser_width, kli_cruiser_height);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreatePixmapCursor(W_Display, klicursmaskbit, klicursbit,
&b, &f, 10, 10);
XRecolorCursor(W_Display, new, &b, &f);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineOriCursor(W_Window window)
{
Cursor new;
Pixmap oricursmaskbit;
Pixmap oricursbit;
struct window *win = W_Void2Window(window);
static
XColor f, b;
f.pixel = colortable[W_White].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
oricursbit = XCreateBitmapFromData(W_Display, win->window, ori_cruiser_bits,
ori_cruiser_width, ori_cruiser_height);
oricursmaskbit = XCreateBitmapFromData(W_Display, win->window,
fed_mask_bits, ori_cruiser_width, ori_cruiser_height);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreatePixmapCursor(W_Display, oricursmaskbit, oricursbit,
&b, &f, 10, 10);
XRecolorCursor(W_Display, new, &b, &f);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineTrekCursor(W_Window window)
{
Cursor new;
struct window *win = W_Void2Window(window);
XColor f, b;
char *path;
int w, h, xh, yh, mw, mh, mxh, myh;
f.pixel = colortable[W_Yellow].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
if ((path = getdefault("infoCursorDef")))
{
Pixmap pm, mpm;
if (W_LoadBitmap(window, path, &pm, &w, &h, &xh, &yh) != 1)
new = XCreateFontCursor(W_Display, XC_trek);
else
{
char mask_path[512];
strcpy(mask_path, path);
strcat(mask_path, ".mask");
if (W_LoadBitmap(window, mask_path, &mpm, &mw, &mh, &mxh, &myh) != 1)
{
mw = w;
mh = h;
mpm = XCreatePixmap(W_Display, win->window, w, h, 1);
XFillRectangle(W_Display, mpm,
colortable[W_White].contexts[0], 0, 0, w, h);
}
if ((w != mw) || (h != mh))
{
printf("Cursor and mask are not the same size. %s\n", path);
new = XCreateFontCursor(W_Display, XC_trek);
}
else
new = XCreatePixmapCursor(W_Display, pm, mpm,
&b, &f, xh, yh);
}
}
else
new = XCreateFontCursor(W_Display, XC_trek);
XRecolorCursor(W_Display, new, &f, &b);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineWarningCursor(W_Window window)
{
Cursor new;
struct window *win = W_Void2Window(window);
XColor f, b;
f.pixel = colortable[W_Red].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
new = XCreateFontCursor(W_Display, XC_pirate);
XRecolorCursor(W_Display, new, &f, &b);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineArrowCursor(W_Window window)
{
Cursor new;
struct window *win = W_Void2Window(window);
XColor f, b;
char *path;
int w, h, xh, yh, mw, mh, mxh, myh;
f.pixel = colortable[W_Black].pixelValue;
b.pixel = colortable[W_White].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
if ((path = getdefault("arrowCursorDef")))
{
Pixmap pm, mpm;
if (W_LoadBitmap(window, path, &pm, &w, &h, &xh, &yh) != 1)
new = XCreateFontCursor(W_Display, XC_left_ptr);
else
{
char mask_path[512];
strcpy(mask_path, path);
strcat(mask_path, ".mask");
if (W_LoadBitmap(window, mask_path, &mpm, &mw, &mh, &mxh, &myh) != 1)
{
mw = w;
mh = h;
mpm = XCreatePixmap(W_Display, win->window, w, h, 1);
XFillRectangle(W_Display, mpm,
colortable[W_White].contexts[0], 0, 0, w, h);
}
if ((w != mw) || (h != mh))
{
printf("Cursor and mask are not the same size. %s\n", path);
new = XCreateFontCursor(W_Display, XC_left_ptr);
}
else
new = XCreatePixmapCursor(W_Display, pm, mpm,
&b, &f, xh, yh);
}
}
else
new = XCreateFontCursor(W_Display, XC_left_ptr);
XRecolorCursor(W_Display, new, &f, &b);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineTextCursor(W_Window window)
{
Cursor new;
struct window *win = W_Void2Window(window);
XColor f, b;
char *path;
int w, h, xh, yh, mw, mh, mxh, myh;
f.pixel = colortable[W_Yellow].pixelValue;
b.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &f);
XQueryColor(W_Display, W_Colormap, &b);
if (win->cursor)
XFreeCursor(W_Display, win->cursor);
if ((path = getdefault("textCursorDef")))
{
Pixmap pm, mpm;
if (W_LoadBitmap(window, path, &pm, &w, &h, &xh, &yh) != 1)
new = XCreateFontCursor(W_Display, XC_xterm);
else
{
char mask_path[512];
strcpy(mask_path, path);
strcat(mask_path, ".mask");
if (W_LoadBitmap(window, mask_path, &mpm, &mw, &mh, &mxh, &myh) != 1)
{
mw = w;
mh = h;
mpm = XCreatePixmap(W_Display, win->window, w, h, 1);
XFillRectangle(W_Display, mpm,
colortable[W_White].contexts[0], 0, 0, w, h);
}
if ((w != mw) || (h != mh))
{
printf("Cursor and mask are not the same size. %s\n", path);
new = XCreateFontCursor(W_Display, XC_xterm);
}
else
new = XCreatePixmapCursor(W_Display, pm, mpm,
&b, &f, xh, yh);
}
}
else
new = XCreateFontCursor(W_Display, XC_xterm);
XRecolorCursor(W_Display, new, &f, &b);
XDefineCursor(W_Display, win->window, new);
win->cursor = new;
}
void
W_DefineCursor(W_Window window, int width, int height, char *bits, char *mask, int xhot, int yhot)
{
static char *oldbits = NULL;
static Cursor curs;
Pixmap cursbits;
Pixmap cursmask;
struct window *win;
XColor whiteCol, blackCol;
#if DEBUG > 0
printf("Defining cursor for %d\n", window);
#endif
win = W_Void2Window(window);
whiteCol.pixel = colortable[W_White].pixelValue;
XQueryColor(W_Display, W_Colormap, &whiteCol);
blackCol.pixel = colortable[W_Black].pixelValue;
XQueryColor(W_Display, W_Colormap, &blackCol);
if (!oldbits || oldbits != bits)
{
cursbits = XCreateBitmapFromData(W_Display, win->window,
bits, width, height);
cursmask = XCreateBitmapFromData(W_Display, win->window,
mask, width, height);
oldbits = bits;
curs = XCreatePixmapCursor(W_Display, cursbits, cursmask,
&whiteCol, &blackCol, xhot, yhot);
XFreePixmap(W_Display, cursbits);
XFreePixmap(W_Display, cursmask);
}
XDefineCursor(W_Display, win->window, curs);
}
int
W_LoadBitmap(W_Window window, char *path, Pixmap * pixmap, int *width, int *height, int *x_hot, int *y_hot)
{
int status;
struct window *win;
win = W_Void2Window(window);
status = XReadBitmapFile(W_Display, win->window, path, (unsigned int *) width,
(unsigned int *) height, pixmap, x_hot, y_hot);
if (status == BitmapSuccess)
{
if (*x_hot < 0)
{
*x_hot = *width / 2;
*y_hot = *height / 2;
}
return 1;
}
else
return 0;
}
void
W_Beep(void)
{
XBell(W_Display, 0);
}
int
W_WindowWidth(W_Window window)
{
return W_Void2Window(window)->width;
}
int
W_WindowHeight(W_Window window)
{
return W_Void2Window(window)->height;
}
int
W_Socket(void)
{
return ConnectionNumber(W_Display);
}
void
W_DestroyWindow(W_Window window)
{
struct window *win;
#if DEBUG > 0
printf("Destroying %d\n", window);
#endif
win = W_Void2Window(window);
deleteWindow(win);
XDestroyWindow(W_Display, win->window);
free((char *) win);
}
void deleteWindow(struct window *window)
{
struct windowlist **rm;
struct windowlist *temp;
rm = &hashtable[hash(window->window)];
while (*rm != NULL && (*rm)->window != window)
{
rm = &((*rm)->next);
}
if (*rm == NULL)
{
printf("Attempt to delete non-existent window!\n");
return;
}
temp = *rm;
*rm = temp->next;
free((char *) temp);
}
void
W_SetIconWindow(W_Window main, W_Window icon)
{
XWMHints hints;
XSetIconName(W_Display, W_Void2Window(icon)->window, W_Void2Window(main)->name);
hints.flags = IconWindowHint;
hints.icon_window = W_Void2Window(icon)->window;
#ifdef WINDOWMAKER
hints.window_group = W_Void2Window(main)->window;
hints.flags |= WindowGroupHint;
XSetCommand(W_Display, W_Void2Window(main)->window, wm_argv, wm_argc);
#endif
XSetWMHints(W_Display, W_Void2Window(main)->window, &hints);
}
static void
scrollUp(win, y)
struct window *win;
int y;
{
struct scrollingWindow *sw = (struct scrollingWindow *) win->data;
int savedlines = sw->lines - win->height;
if (savedlines < 0)
savedlines = 0;
if (sw->topline + savedlines > 0)
{
if (!sw->index)
{
fprintf(stderr, "scroll error, NULL index (scrollUp).\n");
return;
}
sw->index = sw->index->next;
sw->topline--;
redrawScrolling(win);
}
}
static void
scrollDown(win, y)
struct window *win;
int y;
{
struct scrollingWindow *sw = (struct scrollingWindow *) win->data;
if (sw->topline < 0)
{
if (!sw->index)
{
fprintf(stderr, "scroll error, NULL index (scrollDown).\n");
return;
}
sw->index = sw->index->prev;
sw->topline++;
redrawScrolling(win);
}
}
static void
scrollPosition(win, y)
struct window *win;
int y;
{
struct scrollingWindow *sw = (struct scrollingWindow *) win->data;
int savedlines, maxrow, winheight, newtop;
savedlines = sw->lines - win->height;
if (savedlines < 0)
savedlines = 0;
maxrow = sw->lines < win->height ? sw->lines : win->height;
winheight = win->height * W_Textheight + MENU_PAD * 2;
newtop = (y * (savedlines + maxrow + 1)) / winheight - savedlines;
if (newtop < -savedlines)
newtop = -savedlines;
else if (newtop > 0)
newtop = 0;
scrollTo(win, sw, newtop);
}
static void
scrollTo(win, sw, topline)
struct window *win;
struct scrollingWindow *sw;
int topline;
{
while (topline < sw->topline)
{
if (!sw->index)
{
fprintf(stderr, "scroll error, NULL index (1).\n");
break;
}
sw->index = sw->index->next;
sw->topline--;
}
while (topline > sw->topline)
{
if (!sw->index)
{
fprintf(stderr, "scroll error, NULL index (2).\n");
break;
}
sw->index = sw->index->prev;
sw->topline++;
}
redrawScrolling(win);
}
static void
scrollScrolling(wevent)
W_Event *wevent;
{
switch (wevent->key)
{
case W_RBUTTON:
case W_WUBUTTON:
scrollUp(W_Void2Window(wevent->Window), wevent->y);
break;
case W_LBUTTON:
case W_WDBUTTON:
scrollDown(W_Void2Window(wevent->Window), wevent->y);
break;
case W_MBUTTON:
scrollPosition(W_Void2Window(wevent->Window), wevent->y);
break;
default:
break;
}
}
static void
configureScrolling(win, x, y, width, height)
struct window *win;
int x, y; /* TODO */
int width, height;
{
int new_text_width, new_text_height;
int new_real_width, new_real_height;
XWindowAttributes wa;
int sw = scrollbar ? scroll_thumb_width : 0;
#if 0
/* XXX: can't shrink window */
if (width <= win->width * W_Textwidth + WIN_EDGE * 2 &&
height <= win->height * W_Textheight + MENU_PAD * 2)
return;
#endif
XGetWindowAttributes(W_Display, win->window, &wa);
new_text_width = (wa.width - WIN_EDGE * 2 - sw) / W_Textwidth;
new_text_height = (wa.height - MENU_PAD * 2) / W_Textheight;
if (new_text_width <= 0)
new_text_width = 1;
if (new_text_height <= 0)
new_text_height = 1;
if (new_text_width >= MAX_TEXT_WIDTH)
new_text_width = MAX_TEXT_WIDTH - 1;
new_real_width = new_text_width * W_Textwidth + WIN_EDGE * 2 + sw;
new_real_height = new_text_height * W_Textheight + MENU_PAD * 2;
if (new_real_height != wa.height || new_real_width != wa.width)
{
XResizeWindow(W_Display, win->window, new_real_width, new_real_height);
}
win->width = new_text_width;
win->height = new_text_height;
/* an expose event will follow a resize request, triggering *
* redrawScrolling */
}
/*****************************************************************************/
/* Looks up any default geometry specified in the defaults file and */
/* returns the values found there. Geometry should be of the form */
/* [=][<width>x<height>][{+-}<xoffset>{+-}<yoffset>] */
/* */
/* The result returned indicates which values were set. */
/* XValue, YValue, WidthValue, HeightValue */
/* */
/*****************************************************************************/
static int
checkGeometry(char *name, int *x, int *y, int *width, int *height)
{
char buf[80], *geom_default;
sprintf(buf, "%s.geometry", name);
geom_default = getdefault(buf);
if (!geom_default)
return 0; /* nothing set */
return XParseGeometry(geom_default, x, y, (unsigned int *) width, (unsigned int *) height);
}
void checkParent(char *name, W_Window * parent)
{
char *adefault;
char buf[100];
int i;
struct windowlist *windows;
sprintf(buf, "%s.parent", name);
adefault = getdefault(buf);
if (adefault == NULL)
return;
/* parent must be name of other window or "root" */
if (strcmpi(adefault, "root") == 0)
{
*parent = W_Window2Void(&myroot);
return;
}
for (i = 0; i < HASHSIZE; i++)
{
windows = hashtable[i];
while (windows != NULL)
{
if (strcmpi(adefault, windows->window->name) == 0)
{
*parent = W_Window2Void(windows->window);
return;
}
windows = windows->next;
}
}
}
int checkMapped(char *name)
{
char buf[100];
sprintf(buf, "%s.mapped", name);
return booleanDefault(buf, 0);
}
int checkMappedPref(char *name, int preferred)
{
char buf[100];
sprintf(buf, "%s.mapped", name);
return booleanDefault(buf, preferred);
}
void
W_WarpPointer(W_Window window, int x, int y)
{
static int warped_from_x = 0, warped_from_y = 0;
if (window == NULL)
{
if (W_in_message)
{
XWarpPointer(W_Display, None, W_Root, 0, 0, 0, 0, warped_from_x, warped_from_y);
W_in_message = 0;
}
}
else
{
findMouse(&warped_from_x, &warped_from_y);
XWarpPointer(W_Display, None, W_Void2Window(window)->window, 0, 0, 0, 0, 0, 0);
W_in_message = 1;
}
}
void findMouse(int *x, int *y)
{
Window theRoot, theChild;
int wX, wY, rootX, rootY, status;
unsigned int wButtons;
status = XQueryPointer(W_Display, W_Root, &theRoot, &theChild, &rootX, &rootY, &wX, &wY, &wButtons);
if (status == True)
{
*x = wX;
*y = wY;
}
else
{
*x = 0;
*y = 0;
}
}
int
findMouseInWin(int *x, int *y, W_Window w)
{
Window theRoot, theChild;
int wX, wY, rootX, rootY, status;
unsigned int wButtons;
struct window *win = W_Void2Window(w);
Window thisWin = win->window;
status = XQueryPointer(W_Display, thisWin, &theRoot, &theChild,
&rootX, &rootY, &wX, &wY, &wButtons);
if (status == True)
{
/* if it's in the window we specified then the values returned should *
*
* * be within the with and height of the window */
if (wX <= win->width && wY <= win->height)
{
*x = wX;
*y = wY;
return 1;
}
}
*x = 0;
*y = 0;
return 0;
}
void W_Flush(void)
{
XFlush(W_Display);
}
#define MAKE_WINDOW_GETTER(name, part) \
W_Callback name(W_Window w) \
{ \
return W_Void2Window(w)->part; \
}
#define MAKE_WINDOW_SETTER(name, part) \
void name(W_Window w, W_Callback c) \
{ \
W_Void2Window(w)->part = c; \
}
MAKE_WINDOW_GETTER(W_GetWindowKeyDownHandler, handle_keydown)
MAKE_WINDOW_SETTER(W_SetWindowKeyDownHandler, handle_keydown)
MAKE_WINDOW_GETTER(W_GetWindowKeyUpHandler, handle_keyup)
MAKE_WINDOW_SETTER(W_SetWindowKeyUpHandler, handle_keyup)
MAKE_WINDOW_GETTER(W_GetWindowButtonHandler, handle_button)
MAKE_WINDOW_SETTER(W_SetWindowButtonHandler, handle_button)
MAKE_WINDOW_GETTER(W_GetWindowExposeHandler, handle_expose)
MAKE_WINDOW_SETTER(W_SetWindowExposeHandler, handle_expose)
void
W_ResizeWindow(W_Window window, int neww, int newh) /* TSH 2/93 */
{
struct window *w = W_Void2Window(window);
XSizeHints *sz_hints;
sz_hints = XAllocSizeHints();
sz_hints->min_width = neww;
sz_hints->max_width = neww;
sz_hints->min_height = newh;
sz_hints->max_height = newh;
sz_hints->flags = PMinSize | PMaxSize;
XSetWMNormalHints(W_Display, w->window, sz_hints);
XResizeWindow(W_Display, w->window, neww, newh);
}
void
W_ReinitMenu(W_Window window, int neww, int newh)
{
struct window *win = W_Void2Window(window);
struct menuItem *items;
int i;
items = (struct menuItem *) win->data;
for(i=0; i< win->height; i++){
free((char *) items[i].string);
}
free ((char *)items);
items = (struct menuItem *) malloc(newh * sizeof(struct menuItem));
for(i=0; i< newh; i++){
items[i].column = 0;
items[i].string = (char *) malloc(MAX_TEXT_WIDTH);
items[i].color = W_White;
}
win->data = (char *) items;
}
/* this procedure should only be used if the menu is initially defined
by W_MakeMenu as large as it will get. If menu may grow, call
W_ReinitMenu first */
void
W_ResizeMenu(W_Window window, int neww, int newh) /* TSH 2/93 */
{
struct window *w = W_Void2Window(window);
w->width = neww;
w->height = newh;
W_ResizeWindow(window, neww*W_Textwidth+WIN_EDGE*2,
newh*(W_Textheight+MENU_PAD*2)+(newh-1)*MENU_BAR);
}
void
W_ResizeTextWindow(W_Window window, int neww, int newh) /* TSH 2/93 */
{
W_ResizeWindow(window, neww * W_Textwidth + WIN_EDGE * 2,
newh * W_Textheight + WIN_EDGE * 2);
}
int
W_Mono(void)
{
return (DisplayCells(W_Display, W_Screen) <= 2) || forceMono;
}
int
W_EventsQueued(void)
{
return XEventsQueued(W_Display, QueuedAlready);
}
int
W_EventsQueuedCk(void)
{
return XEventsQueued(W_Display, QueuedAfterReading);
}
int W_ReadEvents(void)
{
XEvent event;
struct timeval timeout = {0, 0};
fd_set readfds;
FD_ZERO(&readfds);
FD_SET(ConnectionNumber(W_Display), &readfds);
if (SELECT(max_fd, &readfds, 0, 0, &timeout) == 1)
{
XPeekEvent(W_Display, &event);
return 1;
}
return 0;
}
void W_OverlayBitmap(int x, int y, W_Icon bit, W_Color color)
{
struct icon *icon = W_Void2Icon(bit);
#if DEBUG > 4
printf("Overlaying bitmap to %d\n", icon->window);
#endif
XCopyPlane(W_Display, icon->bitmap, icon->window,
colortable[color].contexts[0], 0, 0, icon->width, icon->height,
x, y, 1);
}
void W_SetWindowName(W_Window w, char *name)
{
struct window *win = W_Void2Window(w);
XStoreName(W_Display, win->window, name);
return;
}
#ifdef BEEPLITE
static GC _tts_gc;
static XFontStruct *_tts_fontinfo;
static int _tts_th, _tts_tw;
int
W_TTSTextHeight(void)
{
return _tts_th;
}
int
W_TTSTextWidth(char *s, int l)
{
return XTextWidth(_tts_fontinfo, s, l);
}
void
init_tts(void)
{
char *fontname;
XGCValues values;
char *color;
XColor xc;
fontname = getdefault("tts_font");
if (!fontname)
fontname = TTS_FONT;
#ifdef SHOW_DEFAULTS
show_defaults("TTS", "tts_font", fontname, "TTS font.");
#endif
#ifdef nodef
if (forceMono || DisplayCells(W_Display, W_Screen) <= 2)
{
/* this is not going to work at all for b/w */
tts_time = 0;
F_beeplite_flags &= ~LITE_TTS;
return;
}
#endif
_tts_fontinfo = XLoadQueryFont(W_Display, fontname);
if (!_tts_fontinfo)
{
fprintf(stderr, "netrek: Can't find font \"%s\".\n", fontname);
_tts_fontinfo = XLoadQueryFont(W_Display, "fixed");
}
if (!_tts_fontinfo)
{
fprintf(stderr, "netrek: Can't find any fonts.\n");
terminate(1);
}
_tts_th = _tts_fontinfo->max_bounds.descent +
_tts_fontinfo->max_bounds.ascent;
_tts_tw = _tts_fontinfo->max_bounds.width;
values.font = _tts_fontinfo->fid;
if (forceMono || DisplayCells(W_Display, W_Screen) <= 2)
{
values.foreground = colortable[W_White].pixelValue;
values.function = GXor;
}
else
{
color = getdefault("tts_color");
if (!color)
color = "grey";
#ifdef SHOW_DEFAULTS
show_defaults("TTS", "tts_color", color, "TTS msg color.");
#endif
if (!XParseColor(W_Display, W_Colormap, color, &xc))
{
fprintf(stderr, "netrek: Unknown tts_color \"%s\", using #777\n", color);
(void) XParseColor(W_Display, W_Colormap, "#777", &xc);
}
/* using the 8th color allocated in GetColors() */
xc.pixel = colortable[W_Black].pixelValue | planes[0] | planes[2];
if ((takeNearest) || (W_Visual->class != PseudoColor))
XAllocColor(W_Display, W_Colormap, &xc);
else
XStoreColor(W_Display, W_Colormap, &xc);
values.foreground = xc.pixel;
values.function = GXor;
}
_tts_gc = XCreateGC(W_Display, W_Root, GCFont | GCForeground | GCFunction,
&values);
XSetGraphicsExposures(W_Display, _tts_gc, False);
}
void
W_EraseTTSText(W_Window window, int max_width, int y, int width)
{
// struct window *win = W_Void2Window(window);
int x = (max_width - width) / 2;
if (x < 0)
x = 4;
y -= W_TTSTextHeight();
W_ClearArea(window, x, y, width, W_TTSTextHeight());
}
void
W_WriteTTSText(W_Window window, int max_width, int y, int width, char *str, int len)
/* max_width of window */
/* y coordinate */
/* actual width */
/* string */
/* length of string */
{
struct window *win = W_Void2Window(window);
int x = (max_width - width) / 2;
if (x < 0)
x = 4;
y -= _tts_fontinfo->max_bounds.descent;
/* y -= W_TTSTextHeight(); y += _tts_fontinfo->max_bounds.ascent; */
XDrawString(W_Display, win->window, _tts_gc, x, y, str, len);
}
#endif
void W_Halo(int x, int y, W_Color color)
{
struct window *win = W_Void2Window(mapw);
if ((color != W_Ind) && (color != W_Grey))
{
XSetForeground(W_Display, colortable[color].contexts[0],
colortable[color].pixelValue);
XDrawArc(W_Display, win->window, colortable[color].contexts[0],
x - (mplanet_width / 2), y - (mplanet_width / 2),
mplanet_width, mplanet_height, 0, 23040);
}
}
void W_CameraSnap(W_Window window)
{
#ifdef CAMERA
struct window *win = W_Void2Window(window);
camera_snap(W_Display, win->window);
#else
fprintf(stderr, "W_CameraSnap: function not implemented in this build.");
#endif
}
#ifdef FULLSCREEN
/* XFree86 VidMode X extension handling */
#include <X11/extensions/xf86vmode.h>
XF86VidModeModeInfo **video_mode_list;
XF86VidModeModeInfo *video_mode_current, *video_mode_original;
int video_mode_dotclock, video_mode_list_size;
/* restore video mode to known previous mode */
static void video_mode_off()
{
if (video_mode_current != video_mode_original) {
int x;
x = XF86VidModeSwitchToMode(W_Display, W_Screen, video_mode_original);
#if DEBUG > 0
fprintf(stderr, "video_mode_off: XF86VidModeSwitchToMode: %d\n", x);
#endif
video_mode_current = video_mode_original;
}
}
/* check if X server has support for changing modes */
static int video_mode_initialise() {
int major, minor;
if (!XF86VidModeQueryVersion(W_Display, &major, &minor)) {
fprintf(stderr, "video_mode_initialise: XFree86-VidMode X extension absent\n");
return 0;
}
static int done = 0;
if (done) return 1;
done++;
int line;
XF86VidModeModeLine current;
/* obtain the current mode line and list of known mode lines */
XF86VidModeGetModeLine(W_Display, W_Screen, &video_mode_dotclock, ¤t);
XF86VidModeGetAllModeLines(W_Display, W_Screen,
&video_mode_list_size, &video_mode_list);
/* find the current mode within the list of known mode lines */
video_mode_current = NULL;
for (line=0; line < video_mode_list_size; line++) {
XF86VidModeModeInfo *mode = video_mode_list[line];
if (mode->hdisplay == current.hdisplay &&
mode->vdisplay == current.vdisplay &&
mode->dotclock == video_mode_dotclock &&
mode->htotal == current.htotal &&
mode->vtotal == current.vtotal &&
mode->flags == current.flags) {
video_mode_original = video_mode_current = mode;
}
}
/* do not change if the current mode was not found */
if (video_mode_current == NULL) {
fprintf(stderr, "video_mode_begin: this mode not found, "
"cannot switch back, so not switching\n");
return 0;
}
return 1;
}
static void video_mode_on()
{
int line;
/* if there is a mode line for 1024x768 then use it */
for (line=0; line < video_mode_list_size; line++) {
XF86VidModeModeInfo *mode = video_mode_list[line];
if (mode->hdisplay == 1024 && mode->vdisplay == 768) {
int x;
x = XF86VidModeSwitchToMode(W_Display, W_Screen, mode);
#if DEBUG > 0
fprintf(stderr, "video_mode_on: XF86VidModeSwitchToMode: %d\n", x);
#endif
/*! @bug: if this is done on a non-local display, the X error
XF86VidModeClientNotLocal occurs. */
video_mode_current = mode;
return;
}
}
}
static void view_port_warp(W_Window window)
{
struct window *win = W_Void2Window(window);
/* force the video view port to cover the window */
int tx = 0, ty = 0;
Window child;
XTranslateCoordinates(W_Display, win->window, W_Root, 0, 0, &tx, &ty, &child);
XF86VidModeSetViewPort(W_Display, W_Screen, tx, ty);
XMapRaised(W_Display, win->window);
XRaiseWindow(W_Display, win->window);
}
/* force the cursor to stay within the window */
static void pointer_grab_on(W_Window window)
{
struct window *win = W_Void2Window(window);
XGrabPointer(W_Display, win->window, True, ButtonPressMask |
ButtonReleaseMask | EnterWindowMask | LeaveWindowMask |
PointerMotionMask | PointerMotionHintMask |
Button1MotionMask | Button2MotionMask |
Button3MotionMask | Button4MotionMask |
Button5MotionMask | ButtonMotionMask |
KeymapStateMask, GrabModeAsync, GrabModeAsync,
win->window, None, CurrentTime);
XGrabKeyboard(W_Display, win->window, True, GrabModeAsync,
GrabModeAsync, CurrentTime);
XFlush(W_Display);
}
static void pointer_grab_off(W_Window window)
{
XUngrabPointer(W_Display, CurrentTime);
XUngrabKeyboard(W_Display, CurrentTime);
}
static void kde_fullscreen_on(W_Window window) {
struct window *win = W_Void2Window(window);
Atom WM_HINTS;
WM_HINTS = XInternAtom(W_Display, "_NET_WM_STATE", True);
if (WM_HINTS != None) {
Atom p[1];
p[0] = XInternAtom(W_Display, "_NET_WM_STATE_FULLSCREEN", True);
XChangeProperty(W_Display, win->window, WM_HINTS, XA_ATOM, 32,
PropModeReplace, (unsigned char *)p, 1);
}
}
static void kde_fullscreen_off(W_Window window) {
struct window *win = W_Void2Window(window);
Atom WM_HINTS;
WM_HINTS = XInternAtom(W_Display, "_NET_WM_STATE", True);
if (WM_HINTS != None) {
XDeleteProperty(W_Display, win->window, WM_HINTS);
}
}
#endif /* FULLSCREEN */
void W_FullScreenOn(W_Window window)
{
struct window *win = W_Void2Window(window);
#ifdef FULLSCREEN
#if DEBUG > 0
fprintf(stderr, "W_FullScreenOn\n");
#endif
XResizeWindow(W_Display, win->window, 1024, 768);
pointer_grab_on(window);
video_mode_on();
view_port_warp(window);
kde_fullscreen_on(window);
#endif
}
void W_FullScreenOff(W_Window window)
{
#ifdef FULLSCREEN
#if DEBUG > 0
fprintf(stderr, "W_FullScreenOff\n");
#endif
pointer_grab_off(window);
kde_fullscreen_off(window);
video_mode_off();
#endif
}
void W_FullScreenInitialise() {
#ifdef FULLSCREEN
#if DEBUG > 0
fprintf(stderr, "W_FullScreenInitialise\n");
#endif
full_screen_enabled = 0;
full_screen_default = 0;
if (booleanDefault("FullScreen", 0)) {
full_screen_default++;
if (video_mode_initialise())
full_screen_enabled++;
}
#endif
}
int W_FullScreenToggle(W_Window window) {
#ifdef FULLSCREEN
#if DEBUG > 0
fprintf(stderr, "W_FullScreenToggle\n");
#endif
if (full_screen_enabled) {
full_screen_enabled = 0;
W_FullScreenOff(window);
} else {
if (!full_screen_default) {
if (!video_mode_initialise()) {
return FULLSCREEN_FAILED;
}
}
full_screen_enabled++;
W_FullScreenOn(window);
}
return FULLSCREEN_OK;
#else
return FULLSCREEN_NOT_COMPILED;
#endif
}
void W_FullScreenBegin(W_Window window) {
#ifdef FULLSCREEN
#if DEBUG > 0
fprintf(stderr, "W_FullScreenBegin\n");
#endif
if (full_screen_enabled) {
W_FullScreenOn(window);
}
#endif
}
/* regularly enforce */
void W_FullScreen(W_Window window) {
#ifdef FULLSCREEN
if (full_screen_enabled) {
view_port_warp(window);
pointer_grab_on(window);
}
#endif
}
|