1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980
|
{ LvlGraphCtrl
Copyright (C) 2013 Lazarus team
This library is free software; you can redistribute it and/or modify it
under the same terms as the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
}
unit LvlGraphCtrl;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, types, math, typinfo, FPimage, FPCanvas, Laz_AVL_Tree,
// LazUtils
LazLoggerBase, AvgLvlTree,
// LCL
LMessages, LCLType, LCLIntf, GraphType, GraphMath, Graphics, Controls, ImgList,
Forms, Themes;
type
TLazCtrlPalette = array of TFPColor;
{off $DEFINE CheckMinXGraph}
const
DefaultLvlGraphNodeImageEffect = gdeNormal;
type
TLvlGraph = class;
TLvlGraphEdge = class;
TLvlGraphLevel = class;
TLvlGraphNode = class;
TLvlGraphNodeArray = array of TLvlGraphNode;
{ TLvlGraphNode }
TLvlGraphNode = class(TPersistent)
private
FCaption: string;
FColor: TFPColor;
FDrawnCaptionRect: TRect;
FGraph: TLvlGraph;
FImageEffect: TGraphicsDrawEffect;
FImageIndex: integer;
FInEdges: TFPList; // list of TLvlGraphEdge
FDrawSize: integer;
FInWeight: single;
FLevel: TLvlGraphLevel;
FNextSelected: TLvlGraphNode;
FOutEdges: TFPList; // list of TLvlGraphEdge
FDrawPosition: integer;
FOutWeight: single;
FOverlayIndex: integer;
FPrevSelected: TLvlGraphNode;
FSelected: boolean;
FVisible: boolean;
function GetIndexInLevel: integer;
function GetInEdges(Index: integer): TLvlGraphEdge; inline;
function GetOutEdges(Index: integer): TLvlGraphEdge; inline;
procedure SetCaption(AValue: string);
procedure SetColor(AValue: TFPColor);
procedure OnLevelDestroy;
procedure SetDrawSize(AValue: integer);
procedure SetImageEffect(AValue: TGraphicsDrawEffect);
procedure SetImageIndex(AValue: integer);
procedure SetIndexInLevel(AValue: integer);
procedure SetLevel(AValue: TLvlGraphLevel);
procedure SetOverlayIndex(AValue: integer);
procedure SetSelected(AValue: boolean);
procedure SetVisible(AValue: boolean);
procedure UnbindLevel;
procedure SelectionChanged;
public
Data: Pointer; // free for user data
constructor Create(TheGraph: TLvlGraph; TheCaption: string; TheLevel: TLvlGraphLevel);
destructor Destroy; override;
procedure Clear;
procedure Invalidate;
property Color: TFPColor read FColor write SetColor;
property Caption: string read FCaption write SetCaption;
property Visible: boolean read FVisible write SetVisible;
property ImageIndex: integer read FImageIndex write SetImageIndex;
property OverlayIndex: integer read FOverlayIndex write SetOverlayIndex; // requires ImageIndex>=0
property ImageEffect: TGraphicsDrawEffect read FImageEffect write SetImageEffect default DefaultLvlGraphNodeImageEffect;
property Graph: TLvlGraph read FGraph;
function IndexOfInEdge(Source: TLvlGraphNode): integer;
function FindInEdge(Source: TLvlGraphNode): TLvlGraphEdge; virtual;
function InEdgeCount: integer; inline;
property InEdges[Index: integer]: TLvlGraphEdge read GetInEdges;
function IndexOfOutEdge(Target: TLvlGraphNode): integer;
function FindOutEdge(Target: TLvlGraphNode): TLvlGraphEdge; virtual;
function OutEdgeCount: integer;
property OutEdges[Index: integer]: TLvlGraphEdge read GetOutEdges;
function GetVisibleSourceNodes: TLvlGraphNodeArray;
function GetVisibleSourceNodesAsAVLTree: TAvlTree;
function GetVisibleTargetNodes: TLvlGraphNodeArray;
function GetVisibleTargetNodesAsAVLTree: TAvlTree;
property IndexInLevel: integer read GetIndexInLevel write SetIndexInLevel;
property Level: TLvlGraphLevel read FLevel write SetLevel;
property Selected: boolean read FSelected write SetSelected;
property NextSelected: TLvlGraphNode read FNextSelected;
property PrevSelected: TLvlGraphNode read FPrevSelected;
property DrawPosition: integer read FDrawPosition write FDrawPosition; // position in a level
property DrawSize: integer read FDrawSize write SetDrawSize default 1;
function DrawCenter: integer;
function DrawPositionEnd: integer;// = DrawPosition+Max(InSize,OutSize)
property DrawnCaptionRect: TRect read FDrawnCaptionRect; // last draw position of caption with scrolling
property InWeight: single read FInWeight; // total weight of InEdges
property OutWeight: single read FOutWeight; // total weight of OutEdges
end;
TLvlGraphNodeClass = class of TLvlGraphNode;
PLvlGraphNode = ^TLvlGraphNode;
{ TLvlGraphEdge }
TLvlGraphEdge = class(TPersistent)
private
FBackEdge: boolean;
FDrawnAt: TRect;
FHighlighted: boolean;
FSource: TLvlGraphNode;
FTarget: TLvlGraphNode;
FWeight: single;
procedure SetHighlighted(AValue: boolean);
procedure SetWeight(AValue: single);
public
Data: Pointer; // free for user data
constructor Create(TheSource: TLvlGraphNode; TheTarget: TLvlGraphNode);
destructor Destroy; override;
property Source: TLvlGraphNode read FSource;
property Target: TLvlGraphNode read FTarget;
property Weight: single read FWeight write SetWeight; // >=0
function IsBackEdge: boolean;
property BackEdge: boolean read FBackEdge; // edge was disabled to break a cycle
property Highlighted: boolean read FHighlighted write SetHighlighted;
property DrawnAt: TRect read FDrawnAt; // last drawn with scrolling
function GetVisibleSourceNodes: TLvlGraphNodeArray;
function GetVisibleSourceNodesAsAVLTree: TAvlTree;
function GetVisibleTargetNodes: TLvlGraphNodeArray;
function GetVisibleTargetNodesAsAVLTree: TAvlTree;
function AsString: string;
end;
TLvlGraphEdgeClass = class of TLvlGraphEdge;
TLvlGraphEdgeArray = array of TLvlGraphEdge;
PLvlGraphEdge = ^TLvlGraphEdge;
{ TLvlGraphLevel }
TLvlGraphLevel = class(TPersistent)
private
FGraph: TLvlGraph;
FIndex: integer;
fNodes: TFPList;
FDrawPosition: integer;
function GetNodes(Index: integer): TLvlGraphNode;
procedure SetDrawPosition(AValue: integer);
procedure MoveNode(Node: TLvlGraphNode; NewIndexInLevel: integer);
public
Data: Pointer; // free for user data
constructor Create(TheGraph: TLvlGraph; TheIndex: integer);
destructor Destroy; override;
procedure Invalidate;
property Nodes[Index: integer]: TLvlGraphNode read GetNodes; default;
function IndexOf(Node: TLvlGraphNode): integer;
function Count: integer;
function GetTotalInOutWeights: single; // sum of all nodes Max(InWeight,OutWeight)
property Index: integer read FIndex;
property Graph: TLvlGraph read FGraph;
property DrawPosition: integer read FDrawPosition write SetDrawPosition;
end;
TLvlGraphLevelClass = class of TLvlGraphLevel;
TOnLvlGraphStructureChanged = procedure(Sender, Element: TObject;
Operation: TOperation) of object;
TLvlGraphEdgeSplitMode = (
lgesNone,
lgesSeparate, // create for each edge separate hidden nodes, this creates a lot of hidden nodes
lgesMergeSource, // combine hidden nodes at source (outgoing edge)
lgesMergeTarget, // combine hidden nodes at target (incoming edge)
lgesMergeHighest // combine hidden nodes at source or target, whichever has more edges
);
{ TLvlGraph }
TLvlGraph = class(TPersistent)
private
FEdgeClass: TLvlGraphEdgeClass;
FFirstSelected: TLvlGraphNode;
FLastSelected: TLvlGraphNode;
FLevelClass: TLvlGraphLevelClass;
FNodeClass: TLvlGraphNodeClass;
FOnInvalidate: TNotifyEvent;
FNodes: TFPList; // list of TLvlGraphNode
fLevels: TFPList;
FCaseSensitive: Boolean;
FOnSelectionChanged: TNotifyEvent;
FOnStructureChanged: TOnLvlGraphStructureChanged;
function GetLevelCount: integer;
function GetLevels(Index: integer): TLvlGraphLevel;
function GetNodes(Index: integer): TLvlGraphNode;
procedure SetLevelCount(AValue: integer);
procedure InternalRemoveNode(Node: TLvlGraphNode);
procedure InternalRemoveLevel(Lvl: TLvlGraphLevel);
protected
procedure SelectionChanged;
public
Data: Pointer; // free for user data
constructor Create;
destructor Destroy; override;
procedure Clear;
procedure Invalidate;
procedure StructureChanged(Element: TObject; Operation: TOperation);
property OnInvalidate: TNotifyEvent read FOnInvalidate write FOnInvalidate;
property OnSelectionChanged: TNotifyEvent read FOnSelectionChanged write FOnSelectionChanged;
property OnStructureChanged: TOnLvlGraphStructureChanged read FOnStructureChanged write FOnStructureChanged;// node, edge, level was added/deleted
// nodes
function NodeCount: integer;
property Nodes[Index: integer]: TLvlGraphNode read GetNodes;
function GetNode(aCaption: string; CreateIfNotExists: boolean): TLvlGraphNode;
function CreateHiddenNode(Level: integer = 0): TLvlGraphNode;
property NodeClass: TLvlGraphNodeClass read FNodeClass;
property FirstSelected: TLvlGraphNode read FFirstSelected;
property LastSelected: TLvlGraphNode read FLastSelected;
procedure ClearSelection;
procedure SingleSelect(Node: TLvlGraphNode);
function IsMultiSelection: boolean;
property CaseSensitive: Boolean read FCaseSensitive write FCaseSensitive;
// edges
function GetEdge(SourceCaption, TargetCaption: string;
CreateIfNotExists: boolean): TLvlGraphEdge;
function GetEdge(Source, Target: TLvlGraphNode;
CreateIfNotExists: boolean): TLvlGraphEdge;
property EdgeClass: TLvlGraphEdgeClass read FEdgeClass;
// levels
property Levels[Index: integer]: TLvlGraphLevel read GetLevels;
property LevelCount: integer read GetLevelCount write SetLevelCount;
property LevelClass: TLvlGraphLevelClass read FLevelClass;
procedure CreateTopologicalLevels(HighLevels: boolean); // create levels from edges
procedure SplitLongEdges(SplitMode: TLvlGraphEdgeSplitMode); // split long edges by adding hidden nodes
procedure ScaleNodeDrawSizes(NodeGapAbove, NodeGapBelow,
HardMaxTotal, HardMinOneNode, SoftMaxTotal, SoftMinOneNode: integer; out PixelPerWeight: single);
procedure SetAllNodeDrawSizes(PixelPerWeight: single = 1.0; MinWeight: single = 0.0);
procedure MarkBackEdges;
procedure MinimizeCrossings; // permutate nodes to minimize crossings
procedure MinimizeOverlappings(MinPos: integer = 0;
NodeGapAbove: integer = 1; NodeGapBelow: integer = 1;
aLevel: integer = -1); // set all Node.Position to minimize overlappings
procedure SetColors(Palette: TLazCtrlPalette);
// debugging
procedure WriteDebugReport(Msg: string);
procedure ConsistencyCheck(WithBackEdge: boolean);
end;
type
TLvlGraphCtrlOption = (
lgoAutoLayout, // automatic graph layout after graph was changed
lgoHighLevels, // put nodes topologically at higher levels
lgoHighlightNodeUnderMouse, // when mouse over node highlight node and its edges
lgoHighlightEdgeNearMouse, // when mouse near an edge highlight edge and its edges, lgoHighlightNodeUnderMouse takes precedence
lgoMouseSelects
);
TLvlGraphCtrlOptions = set of TLvlGraphCtrlOption;
const
DefaultLvlGraphCtrlOptions = [lgoAutoLayout,
lgoHighlightNodeUnderMouse,lgoHighlightEdgeNearMouse,lgoMouseSelects];
type
TLvlGraphNodeCaptionPosition = (
lgncLeft,
lgncTop,
lgncRight,
lgncBottom
);
TLvlGraphNodeCaptionPositions = set of TLvlGraphNodeCaptionPosition;
TLvlGraphNodeShape = (
lgnsNone,
lgnsRectangle,
lgnsEllipse
);
TLvlGraphNodeShapes = set of TLvlGraphNodeShape;
TLvlGraphNodeColoring = (
lgncNone,
lgncRGB
);
TLvlGraphNodeColorings = set of TLvlGraphNodeColoring;
const
// node style
DefaultLvlGraphNodeWith = 10;
DefaultLvlGraphNodeCaptionScale = 0.7;
DefaultLvlGraphNodeCaptionPosition = lgncTop;
DefaultLvlGraphNodeGapLeft = 2;
DefaultLvlGraphNodeGapRight = 2;
DefaultLvlGraphNodeGapTop = 1;
DefaultLvlGraphNodeGapBottom = 1;
DefaultLvlGraphNodeShape = lgnsRectangle;
DefaultLvlGraphNodeColoring = lgncRGB;
type
TLvlGraphEdgeShape = (
lgesStraight,
lgesCurved
);
TLvlGraphEdgeShapes = set of TLvlGraphEdgeShape;
const
// edge style
DefaultLvlGraphEdgeSplitMode = lgesMergeHighest;
DefaultLvlGraphEdgeNearMouseDistMax = 5;
DefaultLvlGraphEdgeShape = lgesCurved;
DefaultLvlGraphEdgeColor = clSilver;
DefaultLvlGraphEdgeHighlightColor = clBlack;
DefaultLvlGraphEdgeBackColor = clRed;
DefaultLvlGraphEdgeBackHighlightColor = clBlue;
type
TCustomLvlGraphControl = class;
{ TLvlGraphNodeStyle }
TLvlGraphNodeStyle = class(TPersistent)
private
FCaptionPosition: TLvlGraphNodeCaptionPosition;
FCaptionScale: single;
FColoring: TLvlGraphNodeColoring;
FControl: TCustomLvlGraphControl;
FDefaultImageIndex: integer;
FGapBottom: integer;
FGapLeft: integer;
FGapRight: integer;
FGapTop: integer;
FShape: TLvlGraphNodeShape;
FWidth: integer;
procedure SetCaptionPosition(AValue: TLvlGraphNodeCaptionPosition);
procedure SetCaptionScale(AValue: single);
procedure SetColoring(AValue: TLvlGraphNodeColoring);
procedure SetDefaultImageIndex(AValue: integer);
procedure SetGapBottom(AValue: integer);
procedure SetGapLeft(AValue: integer);
procedure SetGapRight(AValue: integer);
procedure SetGapTop(AValue: integer);
procedure SetShape(AValue: TLvlGraphNodeShape);
procedure SetWidth(AValue: integer);
public
constructor Create(AControl: TCustomLvlGraphControl);
destructor Destroy; override;
procedure Assign(Source: TPersistent); override;
function Equals(Obj: TObject): boolean; override;
property Control: TCustomLvlGraphControl read FControl;
published
property CaptionPosition: TLvlGraphNodeCaptionPosition
read FCaptionPosition write SetCaptionPosition default DefaultLvlGraphNodeCaptionPosition;
property CaptionScale: single read FCaptionScale write SetCaptionScale default DefaultLvlGraphNodeCaptionScale;
property Shape: TLvlGraphNodeShape read FShape write SetShape default DefaultLvlGraphNodeShape;
property GapLeft: integer read FGapLeft write SetGapLeft default DefaultLvlGraphNodeGapLeft; // used by AutoLayout
property GapTop: integer read FGapTop write SetGapTop default DefaultLvlGraphNodeGapTop; // used by AutoLayout
property GapRight: integer read FGapRight write SetGapRight default DefaultLvlGraphNodeGapRight; // used by AutoLayout
property GapBottom: integer read FGapBottom write SetGapBottom default DefaultLvlGraphNodeGapBottom; // used by AutoLayout
property Width: integer read FWidth write SetWidth default DefaultLvlGraphNodeWith;
property DefaultImageIndex: integer read FDefaultImageIndex write SetDefaultImageIndex;
property Coloring: TLvlGraphNodeColoring read FColoring write SetColoring;
end;
{ TLvlGraphEdgeStyle }
TLvlGraphEdgeStyle = class(TPersistent)
private
FBackColor: TColor;
FColor: TColor;
FControl: TCustomLvlGraphControl;
FBackHighlightColor: TColor;
FHighlightColor: TColor;
FMouseDistMax: integer;
FShape: TLvlGraphEdgeShape;
FSplitMode: TLvlGraphEdgeSplitMode;
procedure SetBackColor(AValue: TColor);
procedure SetColor(AValue: TColor);
procedure SetBackHighlightColor(AValue: TColor);
procedure SetHighlightColor(AValue: TColor);
procedure SetMouseDistMax(AValue: integer);
procedure SetShape(AValue: TLvlGraphEdgeShape);
procedure SetSplitMode(AValue: TLvlGraphEdgeSplitMode);
public
constructor Create(AControl: TCustomLvlGraphControl);
destructor Destroy; override;
procedure Assign(Source: TPersistent); override;
function Equals(Obj: TObject): boolean; override;
property Control: TCustomLvlGraphControl read FControl;
published
property SplitMode: TLvlGraphEdgeSplitMode read FSplitMode write SetSplitMode default DefaultLvlGraphEdgeSplitMode;
property MouseDistMax: integer read FMouseDistMax write SetMouseDistMax default DefaultLvlGraphEdgeNearMouseDistMax;
property Shape: TLvlGraphEdgeShape read FShape write SetShape default DefaultLvlGraphEdgeShape;
property Color: TColor read FColor write SetColor default DefaultLvlGraphEdgeColor;
property BackColor: TColor read FBackColor write SetBackColor default DefaultLvlGraphEdgeBackColor;
property HighlightColor: TColor read FHighlightColor write SetHighlightColor default DefaultLvlGraphEdgeHighlightColor;
property BackHighlightColor: TColor read FBackHighlightColor write SetBackHighlightColor default DefaultLvlGraphEdgeBackHighlightColor;
end;
TLvlGraphControlFlag = (
lgcNeedInvalidate,
lgcNeedAutoLayout,
lgcIgnoreGraphInvalidate,
lgcUpdatingScrollBars,
lgcFocusedPainting
);
TLvlGraphControlFlags = set of TLvlGraphControlFlag;
TLvlGraphMinimizeOverlappingsEvent = procedure(MinPos: integer = 0;
NodeGapInFront: integer = 1; NodeGapBehind: integer = 1) of object;
TLvlGraphDrawStep = (
lgdsBackground,
lgdsHeader,
lgdsNormalEdges,
lgdsNodeCaptions,
lgdsHighlightedEdges,
lgdsNodes,
lgdsFinish
);
TLvlGraphDrawSteps = set of TLvlGraphDrawStep;
TLvlGraphDrawEvent = procedure(Step: TLvlGraphDrawStep; var Skip: boolean) of object;
{ TCustomLvlGraphControl }
TCustomLvlGraphControl = class(TCustomControl)
private
FEdgeStyle: TLvlGraphEdgeStyle;
FEdgeNearMouse: TLvlGraphEdge;
FGraph: TLvlGraph;
FImageChangeLink: TChangeLink;
FImages: TCustomImageList;
FNodeStyle: TLvlGraphNodeStyle;
FNodeUnderMouse: TLvlGraphNode;
FOnDrawStep: TLvlGraphDrawEvent;
FOnEndAutoLayout: TNotifyEvent;
FOnMinimizeCrossings: TNotifyEvent;
FOnMinimizeOverlappings: TLvlGraphMinimizeOverlappingsEvent;
FOnSelectionChanged: TNotifyEvent;
FOnStartAutoLayout: TNotifyEvent;
FOptions: TLvlGraphCtrlOptions;
FPixelPerWeight: single;
FScrollLeft: integer;
FScrollLeftMax: integer;
FScrollTopMax: integer;
FScrollTop: integer;
fUpdateLock: integer;
FFlags: TLvlGraphControlFlags;
procedure ColorNodesRandomRGB;
procedure DrawCaptions(const TxtH: integer);
procedure ComputeEdgeCoords;
procedure DrawEdges(Highlighted: boolean);
procedure DrawNodes;
function GetSelectedNode: TLvlGraphNode;
procedure SetEdgeNearMouse(AValue: TLvlGraphEdge);
procedure SetImages(AValue: TCustomImageList);
procedure SetNodeStyle(AValue: TLvlGraphNodeStyle);
procedure SetNodeUnderMouse(AValue: TLvlGraphNode);
procedure SetOptions(AValue: TLvlGraphCtrlOptions);
procedure SetScrollLeft(AValue: integer);
procedure SetScrollTop(AValue: integer);
procedure SetSelectedNode(AValue: TLvlGraphNode);
procedure UpdateScrollBars;
procedure WMHScroll(var Msg: TLMScroll); message LM_HSCROLL;
procedure WMVScroll(var Msg: TLMScroll); message LM_VSCROLL;
procedure WMMouseWheel(var Message: TLMMouseEvent); message LM_MOUSEWHEEL;
procedure ImageListChange(Sender: TObject);
protected
procedure GraphInvalidate(Sender: TObject); virtual;
procedure GraphSelectionChanged(Sender: TObject); virtual;
procedure GraphStructureChanged(Sender, Element: TObject; Operation: TOperation); virtual;
procedure DoSetBounds(ALeft, ATop, AWidth, AHeight: integer); override;
procedure DoStartAutoLayout; virtual;
procedure DoMinimizeCrossings; virtual;
procedure DoAutoLayoutLevels(TxtHeight: integer); virtual;
procedure DoMinimizeOverlappings(MinPos: integer = 0;
NodeGapInFront: integer = 1; NodeGapBehind: integer = 1); virtual;
procedure DoEndAutoLayout; virtual;
procedure DoDrawEdge(Edge: TLvlGraphEdge); virtual; // draw line at Edge.DrawX1,Y1,X2,Y2 with current Canvas colors
procedure Paint; override;
function Draw(Step: TLvlGraphDrawStep): boolean; virtual;
procedure MouseMove(Shift: TShiftState; X, Y: Integer); override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Integer
); override;
procedure CreateWnd; override;
procedure HighlightConnectedEgdes(Element: TObject);
procedure DoOnShowHint(HintInfo: PHintInfo); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure EraseBackground({%H-}DC: HDC); override;
property Graph: TLvlGraph read FGraph;
procedure Clear;
procedure AutoLayout; virtual;
procedure Invalidate; override;
procedure InvalidateAutoLayout;
procedure BeginUpdate;
procedure EndUpdate;
function GetNodeAt(X,Y: integer): TLvlGraphNode;
function GetEdgeAt(X,Y: integer; out Distance: integer): TLvlGraphEdge;
class function GetControlClassDefaultSize: TSize; override;
function GetDrawSize: TPoint;
public
property NodeStyle: TLvlGraphNodeStyle read FNodeStyle write SetNodeStyle;
property NodeUnderMouse: TLvlGraphNode read FNodeUnderMouse write SetNodeUnderMouse;
property EdgeNearMouse: TLvlGraphEdge read FEdgeNearMouse write SetEdgeNearMouse;
property EdgeStyle: TLvlGraphEdgeStyle read FEdgeStyle;
property Options: TLvlGraphCtrlOptions read FOptions write SetOptions default DefaultLvlGraphCtrlOptions;
property OnSelectionChanged: TNotifyEvent read FOnSelectionChanged write FOnSelectionChanged;
property ScrollTop: integer read FScrollTop write SetScrollTop;
property ScrollTopMax: integer read FScrollTopMax;
property ScrollLeft: integer read FScrollLeft write SetScrollLeft;
property ScrollLeftMax: integer read FScrollLeftMax;
property OnMinimizeCrossings: TNotifyEvent read FOnMinimizeCrossings write FOnMinimizeCrossings;// provide an alternative minimize crossing algorithm
property OnMinimizeOverlappings: TLvlGraphMinimizeOverlappingsEvent read FOnMinimizeOverlappings write FOnMinimizeOverlappings;// provide an alternative minimize overlappings algorithm
property OnStartAutoLayout: TNotifyEvent read FOnStartAutoLayout write FOnStartAutoLayout;
property OnEndAutoLayout: TNotifyEvent read FOnEndAutoLayout write FOnEndAutoLayout;
property OnDrawStep: TLvlGraphDrawEvent read FOnDrawStep write FOnDrawStep;
property Images: TCustomImageList read FImages write SetImages;
property PixelPerWeight: single read FPixelPerWeight;
property SelectedNode: TLvlGraphNode read GetSelectedNode write SetSelectedNode;
property ShowHint default True;
end;
{ TLvlGraphControl }
TLvlGraphControl = class(TCustomLvlGraphControl)
published
property Align;
property Anchors;
property BorderSpacing;
property BorderStyle;
property BorderWidth;
property Color;
property Constraints;
property DragCursor;
property DragKind;
property DragMode;
property EdgeStyle;
property Enabled;
property Font;
property NodeStyle;
property OnClick;
property OnContextPopup;
property OnDblClick;
property OnDragDrop;
property OnDragOver;
property OnDrawStep;
property OnEndAutoLayout;
property OnEndDrag;
property OnEnter;
property OnExit;
property OnKeyDown;
property OnKeyPress;
property OnKeyUp;
property OnMinimizeCrossings;
property OnMinimizeOverlappings;
property OnMouseDown;
property OnMouseEnter;
property OnMouseLeave;
property OnMouseMove;
property OnMouseUp;
property OnSelectionChanged;
property OnShowHint;
property OnStartAutoLayout;
property OnStartDrag;
property OnUTF8KeyPress;
property Options;
property ParentColor default False;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property TabOrder;
property TabStop default True;
property Tag;
property Visible;
end;
function GetCCPaletteRGB(Cnt: integer; Shuffled: boolean): TLazCtrlPalette;
procedure ShuffleCCPalette({%H-}Palette: TLazCtrlPalette);
function Darker(const c: TColor): TColor; overload;
function GetManhattanDistancePointLine(X,Y, LineX1, LineY1, LineX2, LineY2: integer): integer;
function GetDistancePointLine(X,Y, LineX1, LineY1, LineX2, LineY2: integer): integer;
function GetDistancePointPoint(X1,Y1,X2,Y2: integer): integer;
// level graph
procedure LvlGraphMinimizeCrossings(Graph: TLvlGraph); overload;
procedure LvlGraphHighlightNode(Node: TLvlGraphNode;
HighlightedElements: TAvlTree; FollowIn, FollowOut: boolean);
function CompareLGNodesByCenterPos(Node1, Node2: Pointer): integer;
procedure DrawCurvedLvlLeftToRightEdge(Canvas: TFPCustomCanvas; x1, y1, x2, y2: integer);
function NodeAVLTreeToNodeArray(Nodes: TAvlTree; RemoveHidden: boolean; FreeTree: boolean): TLvlGraphNodeArray;
function NodeArrayAsString(Nodes: TLvlGraphNodeArray): String;
// debugging
function dbgs(p: TLvlGraphNodeCaptionPosition): string; overload;
function dbgs(o: TLvlGraphCtrlOption): string; overload;
function dbgs(Options: TLvlGraphCtrlOptions): string; overload;
implementation
type
TMinXGraph = class;
TMinXLevel = class;
TMinXPair = class;
{ TMinXNode }
TMinXNode = class
public
GraphNode: TLvlGraphNode;
InEdges, OutEdges: array of TMinXNode;
Level: TMinXLevel;
IndexInLevel: integer;
constructor Create(aNode: TLvlGraphNode);
destructor Destroy; override;
end;
{ TMinXLevel }
TMinXLevel = class
public
Index: integer;
Graph: TMinXGraph;
GraphLevel: TLvlGraphLevel;
Nodes: array of TMinXNode;
Pairs: array of TMinXPair;
BestNodes: TLvlGraphNodeArray;
constructor Create(aGraph: TMinXGraph; aIndex: integer);
destructor Destroy; override;
procedure GetCrossingCount(Node1, Node2: TMinXNode; out Crossing, SwitchCrossing: integer);
end;
{ TMinXPair }
TMinXPair = class
private
FSwitchDiff: integer; // change of crossings when the two nodes would switch
procedure SetSwitchDiff(AValue: integer);
public
Level: TMinXLevel;
Graph: TMinXGraph;
Index: integer;
PrevSameSwitchPair, NextSameSwitchPair: TMinXPair;
constructor Create(aLevel: TMinXLevel; aIndex: integer);
destructor Destroy; override;
procedure UnbindFromSwitchList;
procedure BindToSwitchList;
procedure ComputeCrossingCount(out Crossing, SwitchCrossing: integer);
function ComputeSwitchDiff: integer;
property SwitchDiff: integer read FSwitchDiff write SetSwitchDiff;
function AsString: string;
end;
{ TMinXGraph }
TMinXGraph = class
private
FGraphNodeToNode: TPointerToPointerTree; // TLvlGraphNode to TMinXNode
procedure UnbindPairs;
procedure BindPairs;
function ComputeCrossCount: integer;
procedure StoreAsBest(CheckIfBetter: boolean);
function ComputeLowestSwitchDiff(StartAtOld: boolean; IgnorePair: TMinXPair): integer;
public
Graph: TLvlGraph;
Levels: array of TMinXLevel;
Pairs: array of TMinXPair;
SameSwitchDiffPairs: array of TMinXPair; //
SameSwitchDiffPair0: integer;
LowestSwitchDiff: integer;
CrossCount: integer;
BestCrossCount: integer;
constructor Create(aGraph: TLvlGraph);
destructor Destroy; override;
procedure InitSearch;
function FindBestPair: TMinXPair;
procedure SwitchCrossingPairs(MaxRun: int64; var Run: int64);
procedure Shuffle;
procedure SwitchAndShuffle(MaxSingleRun, MaxTotalRun: int64);
procedure SwitchPair(Pair: TMinXPair);
procedure Apply; // reorder Graph nodes
function GraphNodeToNode(GraphNode: TLvlGraphNode): TMinXNode; inline;
procedure ConsistencyCheck;
end;
procedure LvlGraphMinimizeCrossings(Graph: TLvlGraph);
var
g: TMinXGraph;
begin
if (Graph.LevelCount<2) or (Graph.NodeCount<3) then exit;
g:=TMinXGraph.Create(Graph);
try
if length(g.Pairs)=0 then exit;
g.InitSearch;
{$IFDEF CheckMinXGraph}
debugln(['LvlGraphMinimizeCrossings Graph.NodeCount=',Graph.NodeCount]);
g.SwitchAndShuffle(100*Graph.NodeCount,
Min(10000,Graph.NodeCount*Graph.NodeCount));
{$ELSE}
g.SwitchAndShuffle(100*Graph.NodeCount,
Min(100000,Graph.NodeCount*Graph.NodeCount)
){%H-};
{$ENDIF}
g.Apply;
finally
g.Free;
end;
end;
procedure LvlGraphHighlightNode(Node: TLvlGraphNode; HighlightedElements: TAvlTree;
FollowIn, FollowOut: boolean);
var
i: Integer;
Edge: TLvlGraphEdge;
begin
if HighlightedElements.Find(Node)<>nil then exit;
HighlightedElements.Add(Node);
if FollowIn then
for i:=0 to Node.InEdgeCount-1 do begin
Edge:=Node.InEdges[i];
HighlightedElements.Add(Edge);
if not Edge.Source.Visible then
LvlGraphHighlightNode(Edge.Source,HighlightedElements,true,false);
end;
if FollowOut then
for i:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[i];
HighlightedElements.Add(Edge);
if not Edge.Target.Visible then
LvlGraphHighlightNode(Edge.Target,HighlightedElements,false,true);
end;
end;
function GetManhattanDistancePointLine(X, Y, LineX1, LineY1, LineX2, LineY2: integer
): integer;
// Manhattan distance
var
m: Integer;
begin
Result:=abs(X-LineX1)+abs(Y-LineY1);
Result:=Min(Result,abs(X-LineX2)+abs(Y-LineY2));
// from left to right
if abs(LineX2-LineX1)<abs(LineY2-LineY1) then begin
// vertical line
if (LineY1<LineY2) and ((Y<LineY1) or (Y>LineY2)) then exit;
if (LineY1>LineY2) and ((Y<LineY2) or (Y>LineY1)) then exit;
m:=((LineX2-LineX1)*(Y-LineY1)) div (LineY2-LineY1);
Result:=Min(Result,abs(X-m));
end else if LineX1<>LineX2 then begin
// horizontal line
if (LineX1<LineX2) and ((X<LineX1) or (X>LineX2)) then exit;
if (LineX1>LineX2) and ((X<LineX2) or (X>LineX1)) then exit;
m:=((LineY2-LineY1)*(X-LineX1)) div (LineX2-LineX1);
Result:=Min(Result,abs(Y-m));
end;
end;
function GetDistancePointLine(X, Y, LineX1, LineY1, LineX2, LineY2: integer
): integer;
var
lx, ly: single; // nearest point on line
lm, ln, pm, pn: single;
d: integer;
begin
//debugln(['GetDistancePointLine X=',X,',Y=',Y,' Line=',LineX1,',',LineY1,'..',LineX2,',',LineY2]);
Result:=GetDistancePointPoint(X,Y,LineX1,LineY1);
if Result<=1 then exit;
Result:=Min(Result,GetDistancePointPoint(X,Y,LineX2,LineY2));
if Result<=1 then exit;
if Abs(LineX1-LineX2)<=1 then begin
// vertical line
lx:=LineX1;
ly:=Y;
end else if Abs(LineY1-LineY2)<=1 then begin
lx:=X;
ly:=LineY1;
end else begin
lm:=single(LineY2-LineY1)/single(LineX2-LineX1);
ln:=single(LineY1)-single(LineX1)*lm;
pm:=single(-1)/lm;
pn:=single(Y)-single(X)*pm;
//debugln(['GetDistancePointLine lm=',lm,' ln=',ln,' pm=',pm,' pn=',pn]);
// ly = lx*lm+ln = lx*pm'+pn
// <=> lx*(lm-pm)=pn-ln
// <=> lx = (pn-ln) / (lm-pm)
lx:=(pn-ln)/(lm-pm);
ly:=single(lx)*lm+ln;
end;
//debugln(['GetDistancePointLine lx=',lx,', ly=',ly]);
// check if nearest point is on the line
if (LineX1<LineX2) and ((lx<LineX1) or (lx>LineX2)) then exit;
if (LineX1>LineX2) and ((lx>LineX1) or (lx<LineX2)) then exit;
d:=round(sqrt(sqr(single(X)-lx)+sqr(single(Y)-ly)));
Result:=Min(Result,d);
//debugln(['GetDistancePointLine lx=',lx,', ly=',ly,' Result=',Result]);
end;
function GetDistancePointPoint(X1, Y1, X2, Y2: integer): integer;
begin
Result:=round(sqrt(sqr(X2-X1)+sqr(Y1-Y2))+0.5);
end;
function GetCCPaletteRGB(Cnt: integer; Shuffled: boolean): TLazCtrlPalette;
type
TChannel = (cRed, cGreen, cBlue);
const
ChannelMax = alphaOpaque;
var
Steps, Step, Start, Value: array[TChannel] of integer;
function EnoughColors: boolean;
var
PotCnt: Integer;
ch: TChannel;
begin
PotCnt:=1;
for ch:=Low(TChannel) to High(TChannel) do
PotCnt*=Steps[ch];
Result:=PotCnt>=Cnt;
end;
var
ch: TChannel;
i: Integer;
begin
SetLength(Result,Cnt);
if Cnt=0 then exit;
for ch:=Low(TChannel) to High(TChannel) do
Steps[ch]:=1;
while not EnoughColors do
for ch:=Low(TChannel) to High(TChannel) do begin
if EnoughColors then break;
inc(Steps[ch]);
end;
for ch:=Low(TChannel) to High(TChannel) do begin
Step[ch]:=ChannelMax div Steps[ch];
Start[ch]:=ChannelMax-1-Step[ch]*(Steps[ch]-1);
Value[ch]:=Start[ch];
end;
for i:=0 to Cnt-1 do begin
Result[i].red:=Value[cRed];
Result[i].green:=Value[cGreen];
Result[i].blue:=Value[cBlue];
ch:=Low(TChannel);
repeat
Value[ch]+=Step[ch];
if (Value[ch]<ChannelMax) or (ch=High(TChannel)) then break;
Value[ch]:=Start[ch];
inc(ch);
until false;
end;
if Shuffled then
ShuffleCCPalette(Result);
end;
procedure ShuffleCCPalette(Palette: TLazCtrlPalette);
begin
end;
function Darker(const c: TColor): TColor;
var
r: Byte;
g: Byte;
b: Byte;
begin
RedGreenBlue(c,r,g,b);
r:=r div 2;
g:=g div 2;
b:=b div 2;
Result:=RGBToColor(r,g,b);
end;
function CompareLGNodesByCenterPos(Node1, Node2: Pointer): integer;
var
LNode1: TLvlGraphNode absolute Node1;
LNode2: TLvlGraphNode absolute Node2;
p1: Integer;
p2: Integer;
begin
p1:=LNode1.DrawCenter;
p2:=LNode2.DrawCenter;
if p1<p2 then
exit(-1)
else if p1>p2 then
exit(1);
// default compare by position in level
Result:=LNode1.IndexInLevel-LNode2.IndexInLevel;
end;
procedure DrawCurvedLvlLeftToRightEdge(Canvas: TFPCustomCanvas;
x1, y1, x2, y2: integer);
var
b: TBezier;
Points: PPoint;
Count: Longint;
p: PPoint;
i: Integer;
begin
Canvas.PolyBezier([Point(x1,y1),Point(x1+10,y1),Point(x2-10,y2),Point(x2,y2)]);
exit;
b:=Bezier(Point(x1,y1),Point(x1+10,y1),Point(x2-10,y2),Point(x2,y2));
Points:=nil;
Count:=0;
Bezier2Polyline(b,Points,Count);
//debugln(['DrawCurvedLvlLeftToRightEdge Count=',Count]);
if Count=0 then exit;
p:=Points;
Canvas.MoveTo(p^);
//debugln(['DrawCurvedLvlLeftToRightEdge Point0=',dbgs(p^)]);
for i:=1 to Count-1 do begin
inc(p);
//debugln(['DrawCurvedLvlLeftToRightEdge Point',i,'=',dbgs(p^)]);
Canvas.LineTo(p^);
end;
Freemem(Points);
end;
function NodeAVLTreeToNodeArray(Nodes: TAvlTree; RemoveHidden: boolean;
FreeTree: boolean): TLvlGraphNodeArray;
var
AVLNode: TAvlTreeNode;
Node: TLvlGraphNode;
i: Integer;
begin
if Nodes=nil then begin
SetLength(Result,0);
exit;
end;
AVLNode:=Nodes.FindLowest;
i:=0;
SetLength(Result,Nodes.Count);
while AVLNode<>nil do begin
Node:=TLvlGraphNode(AVLNode.Data);
if Node.Visible or (not RemoveHidden) then begin
Result[i]:=Node;
inc(i);
end;
AVLNode:=Nodes.FindSuccessor(AVLNode);
end;
SetLength(Result,i);
if FreeTree then
Nodes.Free;
end;
function NodeArrayAsString(Nodes: TLvlGraphNodeArray): String;
var
i: Integer;
begin
Result:='';
for i:=0 to Length(Nodes)-1 do begin
if i>0 then
Result+=', ';
Result+=Nodes[i].Caption;
end;
end;
function dbgs(p: TLvlGraphNodeCaptionPosition): string;
begin
Result:=GetEnumName(typeinfo(p),ord(p));
end;
function dbgs(o: TLvlGraphCtrlOption): string;
begin
Result:=GetEnumName(typeinfo(o),ord(o));
end;
function dbgs(Options: TLvlGraphCtrlOptions): string;
var
o: TLvlGraphCtrlOption;
begin
Result:='';
for o:=Low(TLvlGraphCtrlOption) to high(TLvlGraphCtrlOption) do
if o in Options then begin
if Result<>'' then Result+=',';
Result+=dbgs(o);
end;
Result:='['+Result+']';
end;
{ TLvlGraphEdgeStyle }
procedure TLvlGraphEdgeStyle.SetMouseDistMax(AValue: integer);
begin
if FMouseDistMax=AValue then Exit;
FMouseDistMax:=AValue;
end;
procedure TLvlGraphEdgeStyle.SetBackColor(AValue: TColor);
begin
if FBackColor=AValue then Exit;
FBackColor:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphEdgeStyle.SetColor(AValue: TColor);
begin
if FColor=AValue then Exit;
FColor:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphEdgeStyle.SetBackHighlightColor(AValue: TColor);
begin
if FBackHighlightColor=AValue then Exit;
FBackHighlightColor:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphEdgeStyle.SetHighlightColor(AValue: TColor);
begin
if FHighlightColor=AValue then Exit;
FHighlightColor:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphEdgeStyle.SetShape(AValue: TLvlGraphEdgeShape);
begin
if FShape=AValue then Exit;
FShape:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphEdgeStyle.SetSplitMode(AValue: TLvlGraphEdgeSplitMode);
begin
if FSplitMode=AValue then Exit;
FSplitMode:=AValue;
Control.InvalidateAutoLayout;
end;
constructor TLvlGraphEdgeStyle.Create(AControl: TCustomLvlGraphControl);
begin
FControl:=AControl;
FMouseDistMax:=DefaultLvlGraphEdgeNearMouseDistMax;
FSplitMode:=DefaultLvlGraphEdgeSplitMode;
FShape:=DefaultLvlGraphEdgeShape;
FColor:=DefaultLvlGraphEdgeColor;
FHighlightColor:=DefaultLvlGraphEdgeHighlightColor;
FBackColor:=DefaultLvlGraphEdgeBackColor;
FBackHighlightColor:=DefaultLvlGraphEdgeBackHighlightColor;
end;
destructor TLvlGraphEdgeStyle.Destroy;
begin
FControl.FEdgeStyle:=nil;
inherited Destroy;
end;
procedure TLvlGraphEdgeStyle.Assign(Source: TPersistent);
var
Src: TLvlGraphEdgeStyle;
begin
if Source is TLvlGraphEdgeStyle then begin
Src:=TLvlGraphEdgeStyle(Source);
MouseDistMax:=Src.MouseDistMax;
SplitMode:=Src.SplitMode;
Shape:=Src.Shape;
Color:=Src.Color;
HighlightColor:=Src.HighlightColor;
BackColor:=Src.BackColor;
BackHighlightColor:=Src.BackHighlightColor;
end else
inherited Assign(Source);
end;
function TLvlGraphEdgeStyle.Equals(Obj: TObject): boolean;
var
Src: TLvlGraphEdgeStyle;
begin
Result:=inherited Equals(Obj);
if not Result then exit;
if Obj is TLvlGraphEdgeStyle then begin
Src:=TLvlGraphEdgeStyle(Obj);
Result:=(SplitMode=Src.SplitMode)
and (MouseDistMax=Src.MouseDistMax)
and (Shape=Src.Shape)
and (Color=Src.Color)
and (HighlightColor=Src.HighlightColor)
and (BackColor=Src.BackColor)
and (BackHighlightColor=Src.BackHighlightColor);
end;
end;
{ TMinXPair }
procedure TMinXPair.SetSwitchDiff(AValue: integer);
begin
if FSwitchDiff=AValue then Exit;
UnbindFromSwitchList;
FSwitchDiff:=AValue;
BindToSwitchList;
end;
constructor TMinXPair.Create(aLevel: TMinXLevel; aIndex: integer);
begin
Level:=aLevel;
Graph:=Level.Graph;
Index:=aIndex;
end;
destructor TMinXPair.Destroy;
begin
inherited Destroy;
end;
procedure TMinXPair.UnbindFromSwitchList;
begin
if PrevSameSwitchPair<>nil then
PrevSameSwitchPair.NextSameSwitchPair:=NextSameSwitchPair
else if Graph.SameSwitchDiffPairs[Graph.SameSwitchDiffPair0+SwitchDiff]=Self
then begin
Graph.SameSwitchDiffPairs[Graph.SameSwitchDiffPair0+SwitchDiff]:=NextSameSwitchPair;
if (NextSameSwitchPair=nil) and (Graph.LowestSwitchDiff=SwitchDiff) then
Graph.LowestSwitchDiff:=Graph.ComputeLowestSwitchDiff(true,Self);
end;
if NextSameSwitchPair<>nil then
NextSameSwitchPair.PrevSameSwitchPair:=PrevSameSwitchPair;
PrevSameSwitchPair:=nil;
NextSameSwitchPair:=nil;
end;
procedure TMinXPair.BindToSwitchList;
begin
NextSameSwitchPair:=Graph.SameSwitchDiffPairs[Graph.SameSwitchDiffPair0+SwitchDiff];
Graph.SameSwitchDiffPairs[Graph.SameSwitchDiffPair0+SwitchDiff]:=Self;
if NextSameSwitchPair<>nil then
NextSameSwitchPair.PrevSameSwitchPair:=Self;
if (Graph.LowestSwitchDiff+Graph.SameSwitchDiffPair0<0)
or (Graph.LowestSwitchDiff>SwitchDiff) then
Graph.LowestSwitchDiff:=SwitchDiff;
end;
procedure TMinXPair.ComputeCrossingCount(out Crossing,
SwitchCrossing: integer);
begin
Level.GetCrossingCount(Level.Nodes[Index],Level.Nodes[Index+1],
Crossing,SwitchCrossing);
end;
function TMinXPair.ComputeSwitchDiff: integer;
var
Crossing, SwitchCrossing: integer;
begin
Level.GetCrossingCount(Level.Nodes[Index],Level.Nodes[Index+1],
Crossing,SwitchCrossing);
Result:=SwitchCrossing-Crossing;
end;
function TMinXPair.AsString: string;
begin
Result:='[lvl='+dbgs(Level.Index)
+',A='+dbgs(Index)+':'+Level.Nodes[Index].GraphNode.Caption
+',B='+dbgs(Index+1)+':'+Level.Nodes[Index+1].GraphNode.Caption
+',Switch='+dbgs(SwitchDiff)
+']';
end;
{ TMinXGraph }
constructor TMinXGraph.Create(aGraph: TLvlGraph);
var
GraphNode: TLvlGraphNode;
i: Integer;
Level: TMinXLevel;
n: Integer;
e: Integer;
Node: TMinXNode;
Cnt: Integer;
OtherNode: TMinXNode;
begin
Graph:=aGraph;
// create nodes
FGraphNodeToNode:=TPointerToPointerTree.Create;
for i:=0 to Graph.NodeCount-1 do begin
GraphNode:=Graph.Nodes[i];
Node:=TMinXNode.Create(GraphNode);
FGraphNodeToNode[GraphNode]:=Node;
end;
// create levels
SetLength(Levels,aGraph.LevelCount);
for i:=0 to length(Levels)-1 do
Levels[i]:=TMinXLevel.Create(Self,i);
// create OutEdges arrays
for i:=0 to length(Levels)-2 do begin
Level:=Levels[i];
for n:=0 to length(Level.Nodes)-1 do begin
Node:=Level.Nodes[n];
GraphNode:=Node.GraphNode;
SetLength(Node.OutEdges,GraphNode.OutEdgeCount);
Cnt:=0;
for e:=0 to GraphNode.OutEdgeCount-1 do begin
OtherNode:=GraphNodeToNode(GraphNode.OutEdges[e].Target);
if Node.Level.Index+1<>OtherNode.Level.Index then continue;
Node.OutEdges[Cnt]:=OtherNode;
Cnt+=1;
end;
SetLength(Node.OutEdges,Cnt);
end;
end;
// create InEdges arrays
for i:=1 to length(Levels)-1 do begin
Level:=Levels[i];
for n:=0 to length(Level.Nodes)-1 do begin
Node:=Level.Nodes[n];
GraphNode:=Node.GraphNode;
SetLength(Node.InEdges,GraphNode.InEdgeCount);
Cnt:=0;
for e:=0 to GraphNode.InEdgeCount-1 do begin
OtherNode:=GraphNodeToNode(GraphNode.InEdges[e].Source);
if Node.Level.Index-1<>OtherNode.Level.Index then continue;
Node.InEdges[Cnt]:=OtherNode;
Cnt+=1;
end;
SetLength(Node.InEdges,Cnt);
end;
end;
BindPairs;
{$IFDEF CheckMinXGraph}
ConsistencyCheck;
{$ENDIF}
end;
destructor TMinXGraph.Destroy;
var
i: Integer;
begin
for i:=0 to length(Levels)-1 do
Levels[i].Free;
SetLength(Levels,0);
for i:=0 to length(Pairs)-1 do
Pairs[i].Free;
SetLength(Pairs,0);
SetLength(SameSwitchDiffPairs,0);
FreeAndNil(FGraphNodeToNode);
inherited Destroy;
end;
procedure TMinXGraph.UnbindPairs;
var
i: Integer;
begin
for i:=0 to length(Pairs)-1 do
Pairs[i].UnbindFromSwitchList;
end;
procedure TMinXGraph.BindPairs;
var
Cnt: Integer;
i: Integer;
Level: TMinXLevel;
n: Integer;
Pair: TMinXPair;
First: Boolean;
begin
First:=length(Pairs)=0;
if First then begin
Cnt:=0;
for i:=0 to length(Levels)-1 do
Cnt+=Max(0,length(Levels[i].Nodes)-1);
SetLength(Pairs,Cnt);
end;
Cnt:=0;
for i:=0 to length(Levels)-1 do begin
Level:=Levels[i];
SetLength(Level.Pairs,length(Level.Nodes)-1);
for n:=0 to length(Level.Pairs)-1 do begin
if First then begin
Pair:=TMinXPair.Create(Level,n);
Pairs[Cnt]:=Pair;
Level.Pairs[n]:=Pair;
end else
Pair:=Pairs[Cnt];
Pair.FSwitchDiff:=Pair.ComputeSwitchDiff;
Cnt+=1;
end;
end;
if First then begin
SameSwitchDiffPair0:=Graph.NodeCount*Graph.NodeCount;
LowestSwitchDiff:=-SameSwitchDiffPair0-1;
SetLength(SameSwitchDiffPairs,2*SameSwitchDiffPair0+1);
end;
for i:=0 to length(Pairs)-1 do
Pairs[i].BindToSwitchList;
CrossCount:=ComputeCrossCount;
end;
function TMinXGraph.ComputeCrossCount: integer;
var
l: Integer;
Level: TMinXLevel;
i: Integer;
Node1: TMinXNode;
j: Integer;
Node2: TMinXNode;
e1: Integer;
Target1: TMinXNode;
e2: Integer;
Target2: TMinXNode;
begin
Result:=0;
for l:=0 to length(Levels)-2 do begin
Level:=Levels[l];
for i:=0 to length(Level.Nodes)-2 do begin
Node1:=Level.Nodes[i];
for j:=i+1 to length(Level.Nodes)-1 do begin
Node2:=Level.Nodes[j];
for e1:=0 to length(Node1.OutEdges)-1 do begin
Target1:=Node1.OutEdges[e1];
for e2:=0 to length(Node2.OutEdges)-1 do begin
Target2:=Node2.OutEdges[e2];
if Target1.IndexInLevel>Target2.IndexInLevel then
Result+=1;
end;
end;
end;
end;
end;
end;
procedure TMinXGraph.InitSearch;
begin
StoreAsBest(false);
end;
procedure TMinXGraph.StoreAsBest(CheckIfBetter: boolean);
var
l: Integer;
Level: TMinXLevel;
n: Integer;
begin
if CheckIfBetter and (BestCrossCount>=0) and (BestCrossCount<CrossCount) then
exit;
BestCrossCount:=CrossCount;
for l:=0 to length(Levels)-1 do begin
Level:=Levels[l];
for n:=0 to length(Level.Nodes)-1 do
Level.BestNodes[n]:=Level.Nodes[n].GraphNode;
end;
end;
function TMinXGraph.ComputeLowestSwitchDiff(StartAtOld: boolean;
IgnorePair: TMinXPair): integer;
var
i: Integer;
Pair: TMinXPair;
begin
if StartAtOld then begin
for i:=LowestSwitchDiff to Graph.NodeCount-1 do begin
if SameSwitchDiffPairs[i+SameSwitchDiffPair0]<>nil then
exit(i);
end;
end;
Result:=SameSwitchDiffPair0+1;
for i:=0 to length(Pairs)-1 do begin
Pair:=Pairs[i];
if IgnorePair=Pair then continue;
Result:=Min(Result,Pairs[i].SwitchDiff);
end;
if Result>SameSwitchDiffPair0 then
Result:=-1-SameSwitchDiffPair0;
end;
function TMinXGraph.FindBestPair: TMinXPair;
var
i: Integer;
begin
i:=LowestSwitchDiff+SameSwitchDiffPair0;
if i>=0 then
Result:=SameSwitchDiffPairs[i]
else
Result:=nil;
end;
procedure TMinXGraph.SwitchCrossingPairs(MaxRun: int64; var Run: int64);
var
Pair: TMinXPair;
begin
while (MaxRun>0) and (BestCrossCount<>0) do begin
//debugln(['TMinXGraph.SwitchCrossingPairs ',MaxRun,' ',Run]);
Pair:=FindBestPair;
Run+=1;
if (Pair=nil) or (Pair.SwitchDiff=0) then exit;
SwitchPair(Pair);
MaxRun-=1;
end;
end;
procedure TMinXGraph.Shuffle;
var
l: Integer;
Level: TMinXLevel;
n1: Integer;
n2: Integer;
Node: TMinXNode;
begin
{$IFDEF CheckMinXGraph}
ConsistencyCheck;
{$ENDIF}
UnbindPairs;
for l:=0 to length(Levels)-1 do begin
Level:=Levels[l];
for n1:=0 to length(Level.Nodes)-1 do begin
n2:=Random(length(Level.Nodes));
if n1=n2 then continue;
Node:=Level.Nodes[n1];
Level.Nodes[n1]:=Level.Nodes[n2];
Level.Nodes[n2]:=Node;
Level.Nodes[n1].IndexInLevel:=n1;
Level.Nodes[n2].IndexInLevel:=n2;
end;
end;
BindPairs;
StoreAsBest(true);
{$IFDEF CheckMinXGraph}
ConsistencyCheck;
{$ENDIF}
end;
procedure TMinXGraph.SwitchAndShuffle(MaxSingleRun, MaxTotalRun: int64);
var
Run: int64;
begin
Run:=1;
while BestCrossCount<>0 do begin
SwitchCrossingPairs(MaxSingleRun,Run);
if Run>MaxTotalRun then exit;
Shuffle;
end;
end;
procedure TMinXGraph.SwitchPair(Pair: TMinXPair);
procedure UpdateSwitchDiff(TargetOfNode1, TargetOfNode2: TMinXNode);
var
TargetPair: TMinXPair;
begin
if TargetOfNode1.IndexInLevel+1=TargetOfNode2.IndexInLevel then begin
TargetPair:=TargetOfNode1.Level.Pairs[TargetOfNode1.IndexInLevel];
// no longer crossing, switching TargetPair would create the cross again, from -1 to +1 = +2
TargetPair.SwitchDiff:=TargetPair.SwitchDiff+2;
end else if TargetOfNode1.IndexInLevel-1=TargetOfNode2.IndexInLevel then begin
TargetPair:=TargetOfNode2.Level.Pairs[TargetOfNode2.IndexInLevel];
// now crossing, switching TargetPair would solve the cross again, from +1 to -1 = -2
TargetPair.SwitchDiff:=TargetPair.SwitchDiff-2;
end;
end;
var
Node1, Node2: TMinXNode;
i: Integer;
j: Integer;
NeighbourPair: TMinXPair;
Level: TMinXLevel;
begin
//debugln(['TMinXGraph.SwitchPair ',Pair.AsString]);
{$IFDEF CheckMinXGraph}
ConsistencyCheck;
{$ENDIF}
Level:=Pair.Level;
// switch nodes
Node1:=Level.Nodes[Pair.Index];
Node2:=Level.Nodes[Pair.Index+1];
Level.Nodes[Pair.Index]:=Node2;
Level.Nodes[Pair.Index+1]:=Node1;
Node1:=Level.Nodes[Pair.Index];
Node2:=Level.Nodes[Pair.Index+1];
Node1.IndexInLevel:=Pair.Index;
Node2.IndexInLevel:=Pair.Index+1;
// reverse Pair.SwitchDiff
CrossCount+=Pair.SwitchDiff;
Pair.SwitchDiff:=-Pair.SwitchDiff;
//debugln(['TMinXGraph.SwitchPair Pair.SwitchDiff should be equal: ',Pair.SwitchDiff,' = ',Pair.ComputeSwitchDiff]);
// compute SwitchDiff of new neighbour pairs
if Pair.Index>0 then begin
NeighbourPair:=Level.Pairs[Pair.Index-1];
NeighbourPair.SwitchDiff:=NeighbourPair.ComputeSwitchDiff;
end;
if Pair.Index+1<length(Level.Pairs) then begin
NeighbourPair:=Level.Pairs[Pair.Index+1];
NeighbourPair.SwitchDiff:=NeighbourPair.ComputeSwitchDiff;
end;
// update SwitchDiff of all connected nodes
for i:=0 to length(Node1.OutEdges)-1 do
for j:=0 to length(Node2.OutEdges)-1 do
UpdateSwitchDiff(Node1.OutEdges[i],Node2.OutEdges[j]);
for i:=0 to length(Node1.InEdges)-1 do
for j:=0 to length(Node2.InEdges)-1 do
UpdateSwitchDiff(Node1.InEdges[i],Node2.InEdges[j]);
StoreAsBest(true);
{$IFDEF CheckMinXGraph}
ConsistencyCheck;
{$ENDIF}
end;
procedure TMinXGraph.Apply;
var
i: Integer;
Level: TMinXLevel;
j: Integer;
begin
for i:=0 to length(Levels)-1 do begin
Level:=Levels[i];
for j:=0 to length(Level.BestNodes)-1 do
Level.BestNodes[j].IndexInLevel:=j;
end;
end;
function TMinXGraph.GraphNodeToNode(GraphNode: TLvlGraphNode): TMinXNode;
begin
Result:=TMinXNode(FGraphNodeToNode[GraphNode]);
end;
procedure TMinXGraph.ConsistencyCheck;
procedure Err(Msg: string = '');
begin
raise Exception.Create('TMinXGraph.ConsistencyCheck: '+Msg);
end;
var
i: Integer;
Pair: TMinXPair;
Level: TMinXLevel;
j: Integer;
Node: TMinXNode;
e: Integer;
OtherNode: TMinXNode;
k: Integer;
AVLNode: TAvlTreeNode;
P2PItem: PPointerToPointerItem;
begin
AVLNode:=FGraphNodeToNode.Tree.FindLowest;
while AVLNode<>nil do begin
P2PItem:=PPointerToPointerItem(AVLNode.Data);
if not (TObject(P2PItem^.Key) is TLvlGraphNode) then
Err(DbgSName(TObject(P2PItem^.Key)));
if not (TObject(P2PItem^.Value) is TMinXNode) then
Err(DbgSName(TObject(P2PItem^.Value)));
if TMinXNode(P2PItem^.Value).GraphNode=nil then
Err(dbgs(TMinXNode(P2PItem^.Value).IndexInLevel));
if TLvlGraphNode(P2PItem^.Key)<>TMinXNode(P2PItem^.Value).GraphNode then
Err;
AVLNode:=FGraphNodeToNode.Tree.FindSuccessor(AVLNode);
end;
if length(Levels)<>Graph.LevelCount then
Err;
for i:=0 to length(Levels)-1 do begin
Level:=Levels[i];
for j:=0 to Length(Level.Pairs)-1 do begin
Pair:=Level.Pairs[j];
if Pair.Level<>Level then
Err(Pair.AsString);
end;
for j:=0 to length(Level.Nodes)-1 do begin
Node:=Level.Nodes[j];
if Node.Level<>Level then
Err;
if Node.IndexInLevel<>j then
Err;
if Node.GraphNode=nil then
Err;
for e:=0 to length(Node.InEdges)-1 do begin
OtherNode:=Node.InEdges[e];
if OtherNode=nil then
Err('node="'+Node.GraphNode.Caption+'" e='+dbgs(e));
if Node.Level.Index-1<>OtherNode.Level.Index then
Err('node="'+Node.GraphNode.Caption+'" othernode="'+OtherNode.GraphNode.Caption+'"');
k:=length(OtherNode.OutEdges)-1;
while (k>=0) and (OtherNode.OutEdges[k]<>Node) do dec(k);
if k<0 then
Err('node="'+Node.GraphNode.Caption+'" othernode="'+OtherNode.GraphNode.Caption+'"');
end;
for e:=0 to length(Node.OutEdges)-1 do begin
OtherNode:=Node.OutEdges[e];
if OtherNode=nil then
Err('node="'+Node.GraphNode.Caption+'" e='+dbgs(e));
if Node.Level.Index+1<>OtherNode.Level.Index then
Err('node="'+Node.GraphNode.Caption+'" othernode="'+OtherNode.GraphNode.Caption+'"');
k:=length(OtherNode.InEdges)-1;
while (k>=0) and (OtherNode.InEdges[k]<>Node) do dec(k);
if k<0 then
Err('node="'+Node.GraphNode.Caption+'" othernode="'+OtherNode.GraphNode.Caption+'"');
end;
end;
end;
for i:=0 to length(Pairs)-1 do begin
Pair:=Pairs[i];
if Pair.Graph<>Self then
Err(Pair.AsString);
if Pair.Level.Pairs[Pair.Index]<>Pair then
Err(Pair.AsString);
if Pair.SwitchDiff<>Pair.ComputeSwitchDiff then
Err(Pair.AsString);
end;
for i:=0 to length(SameSwitchDiffPairs)-1 do begin
Pair:=SameSwitchDiffPairs[i];
while Pair<>nil do begin
if Pair.SwitchDiff<>i-SameSwitchDiffPair0 then
Err(Pair.AsString);
if Pair.PrevSameSwitchPair<>nil then begin
if Pair.PrevSameSwitchPair.NextSameSwitchPair<>Pair then
Err(Pair.AsString);
end else begin
if Pair<>SameSwitchDiffPairs[i] then
Err(Pair.AsString);
end;
if Pair.NextSameSwitchPair<>nil then begin
if Pair.NextSameSwitchPair.PrevSameSwitchPair<>Pair then
Err(Pair.AsString);
end;
Pair:=Pair.NextSameSwitchPair;
end;
end;
if CrossCount<>ComputeCrossCount then
Err;
if LowestSwitchDiff<>ComputeLowestSwitchDiff(false,nil) then
Err;
end;
{ TMinXLevel }
constructor TMinXLevel.Create(aGraph: TMinXGraph; aIndex: integer);
var
i: Integer;
GraphNode: TLvlGraphNode;
Node: TMinXNode;
begin
Index:=aIndex;
Graph:=aGraph;
GraphLevel:=Graph.Graph.Levels[Index];
SetLength(Nodes,GraphLevel.Count);
SetLength(BestNodes,length(Nodes));
for i:=0 to length(Nodes)-1 do begin
GraphNode:=GraphLevel[i];
Node:=Graph.GraphNodeToNode(GraphNode);
Node.Level:=Self;
Node.IndexInLevel:=i;
Nodes[i]:=Node;
BestNodes[i]:=GraphNode;
end;
end;
destructor TMinXLevel.Destroy;
var
i: Integer;
begin
SetLength(Pairs,0);
for i:=0 to length(Nodes)-1 do
Nodes[i].Free;
SetLength(Nodes,0);
SetLength(BestNodes,0);
inherited Destroy;
end;
procedure TMinXLevel.GetCrossingCount(Node1, Node2: TMinXNode; out
Crossing, SwitchCrossing: integer);
var
i: Integer;
j: Integer;
begin
Crossing:=0;
SwitchCrossing:=0;
for i:=0 to length(Node1.OutEdges)-1 do begin
for j:=0 to length(Node2.OutEdges)-1 do begin
if Node1.OutEdges[i]=Node2.OutEdges[j] then continue;
// these two edges can cross
if (Node1.IndexInLevel<Node2.IndexInLevel)
<>(Node1.OutEdges[i].IndexInLevel<Node2.OutEdges[j].IndexInLevel)
then
Crossing+=1
else
SwitchCrossing+=1;
end;
end;
for i:=0 to length(Node1.InEdges)-1 do begin
for j:=0 to length(Node2.InEdges)-1 do begin
if Node1.InEdges[i]=Node2.InEdges[j] then continue;
// these two edges can cross
if (Node1.IndexInLevel<Node2.IndexInLevel)
<>(Node1.InEdges[i].IndexInLevel<Node2.InEdges[j].IndexInLevel)
then
Crossing+=1
else
SwitchCrossing+=1;
end;
end;
end;
{ TMinXNode }
constructor TMinXNode.Create(aNode: TLvlGraphNode);
begin
GraphNode:=aNode;
end;
destructor TMinXNode.Destroy;
begin
SetLength(InEdges,0);
SetLength(OutEdges,0);
inherited Destroy;
end;
{ TLvlGraphNodeStyle }
procedure TLvlGraphNodeStyle.SetCaptionPosition(
AValue: TLvlGraphNodeCaptionPosition);
begin
if FCaptionPosition=AValue then Exit;
FCaptionPosition:=AValue;
Control.InvalidateAutoLayout;
end;
procedure TLvlGraphNodeStyle.SetCaptionScale(AValue: single);
begin
if FCaptionScale=AValue then Exit;
FCaptionScale:=AValue;
Control.InvalidateAutoLayout;
end;
procedure TLvlGraphNodeStyle.SetColoring(AValue: TLvlGraphNodeColoring);
begin
if FColoring=AValue then Exit;
FColoring:=AValue;
if not (csLoading in Control.ComponentState) then begin
if Coloring=lgncRGB then
Control.ColorNodesRandomRGB;
end;
end;
procedure TLvlGraphNodeStyle.SetDefaultImageIndex(AValue: integer);
begin
if FDefaultImageIndex=AValue then Exit;
FDefaultImageIndex:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphNodeStyle.SetGapBottom(AValue: integer);
begin
if FGapBottom=AValue then Exit;
FGapBottom:=AValue;
Control.InvalidateAutoLayout;
end;
procedure TLvlGraphNodeStyle.SetGapLeft(AValue: integer);
begin
if FGapLeft=AValue then Exit;
FGapLeft:=AValue;
Control.InvalidateAutoLayout;
end;
procedure TLvlGraphNodeStyle.SetGapRight(AValue: integer);
begin
if FGapRight=AValue then Exit;
FGapRight:=AValue;
Control.InvalidateAutoLayout;
end;
procedure TLvlGraphNodeStyle.SetGapTop(AValue: integer);
begin
if FGapTop=AValue then Exit;
FGapTop:=AValue;
Control.InvalidateAutoLayout;
end;
procedure TLvlGraphNodeStyle.SetShape(AValue: TLvlGraphNodeShape);
begin
if FShape=AValue then Exit;
FShape:=AValue;
Control.Invalidate;
end;
procedure TLvlGraphNodeStyle.SetWidth(AValue: integer);
begin
if FWidth=AValue then Exit;
FWidth:=AValue;
Control.InvalidateAutoLayout;
end;
constructor TLvlGraphNodeStyle.Create(AControl: TCustomLvlGraphControl);
begin
FControl:=AControl;
FWidth:=DefaultLvlGraphNodeWith;
FGapLeft:=DefaultLvlGraphNodeGapLeft;
FGapTop:=DefaultLvlGraphNodeGapTop;
FGapRight:=DefaultLvlGraphNodeGapRight;
FGapBottom:=DefaultLvlGraphNodeGapBottom;
FCaptionScale:=DefaultLvlGraphNodeCaptionScale;
FCaptionPosition:=DefaultLvlGraphNodeCaptionPosition;
FShape:=DefaultLvlGraphNodeShape;
FDefaultImageIndex:=-1;
FColoring:=DefaultLvlGraphNodeColoring;
end;
destructor TLvlGraphNodeStyle.Destroy;
begin
FControl.FNodeStyle:=nil;
inherited Destroy;
end;
procedure TLvlGraphNodeStyle.Assign(Source: TPersistent);
var
Src: TLvlGraphNodeStyle;
begin
if Source is TLvlGraphNodeStyle then begin
Src:=TLvlGraphNodeStyle(Source);
Width:=Src.Width;
GapLeft:=Src.GapLeft;
GapRight:=Src.GapRight;
GapTop:=Src.GapTop;
GapBottom:=Src.GapBottom;
CaptionScale:=Src.CaptionScale;
CaptionPosition:=Src.CaptionPosition;
Shape:=Src.Shape;
DefaultImageIndex:=Src.DefaultImageIndex;
end else
inherited Assign(Source);
end;
function TLvlGraphNodeStyle.Equals(Obj: TObject): boolean;
var
Src: TLvlGraphNodeStyle;
begin
Result:=inherited Equals(Obj);
if not Result then exit;
if Obj is TLvlGraphNodeStyle then begin
Src:=TLvlGraphNodeStyle(Obj);
Result:=(Width=Src.Width)
and (GapLeft=Src.GapLeft)
and (GapRight=Src.GapRight)
and (GapTop=Src.GapTop)
and (GapBottom=Src.GapBottom)
and (CaptionScale=Src.CaptionScale)
and (CaptionPosition=Src.CaptionPosition)
and (Shape=Src.Shape)
and (DefaultImageIndex=Src.DefaultImageIndex);
end;
end;
{ TLvlGraphLevel }
function TLvlGraphLevel.GetNodes(Index: integer): TLvlGraphNode;
begin
Result:=TLvlGraphNode(fNodes[Index]);
end;
procedure TLvlGraphLevel.SetDrawPosition(AValue: integer);
begin
if FDrawPosition=AValue then Exit;
FDrawPosition:=AValue;
Invalidate;
end;
procedure TLvlGraphLevel.MoveNode(Node: TLvlGraphNode; NewIndexInLevel: integer
);
var
OldIndexInLevel: Integer;
begin
OldIndexInLevel:=fNodes.IndexOf(Node);
if OldIndexInLevel=NewIndexInLevel then exit;
fNodes.Move(OldIndexInLevel,NewIndexInLevel);
end;
constructor TLvlGraphLevel.Create(TheGraph: TLvlGraph; TheIndex: integer);
begin
FGraph:=TheGraph;
FGraph.fLevels.Add(Self);
FIndex:=TheIndex;
fNodes:=TFPList.Create;
if Graph<>nil then
Graph.StructureChanged(Self,opInsert);
end;
destructor TLvlGraphLevel.Destroy;
var
i: Integer;
begin
for i:=0 to Count-1 do
Nodes[i].OnLevelDestroy;
if Count>0 then
raise Exception.Create('');
FreeAndNil(fNodes);
Graph.InternalRemoveLevel(Self);
inherited Destroy;
end;
procedure TLvlGraphLevel.Invalidate;
begin
if Graph<>nil then
Graph.Invalidate;
end;
function TLvlGraphLevel.IndexOf(Node: TLvlGraphNode): integer;
begin
for Result:=0 to Count-1 do
if Nodes[Result]=Node then exit;
Result:=-1;
end;
function TLvlGraphLevel.Count: integer;
begin
Result:=fNodes.Count;
end;
function TLvlGraphLevel.GetTotalInOutWeights: single;
var
i: Integer;
Node: TLvlGraphNode;
begin
Result:=0;
for i:=0 to Count-1 do begin
Node:=Nodes[i];
Result+=Max(Node.InWeight,Node.OutWeight);
end;
end;
{ TCustomLvlGraphControl }
procedure TCustomLvlGraphControl.GraphInvalidate(Sender: TObject);
begin
Invalidate;
end;
procedure TCustomLvlGraphControl.GraphStructureChanged(Sender,
Element: TObject; Operation: TOperation);
begin
if ((Element is TLvlGraphNode)
or (Element is TLvlGraphEdge)) then begin
if Operation=opRemove then begin
if FNodeUnderMouse=Element then
FNodeUnderMouse:=nil;
end;
//debugln(['TCustomLvlGraphControl.GraphStructureChanged ']);
if lgoAutoLayout in FOptions then
InvalidateAutoLayout;
end;
end;
procedure TCustomLvlGraphControl.SetNodeUnderMouse(AValue: TLvlGraphNode);
begin
if FNodeUnderMouse=AValue then Exit;
FNodeUnderMouse:=AValue;
if lgoHighlightNodeUnderMouse in Options then
HighlightConnectedEgdes(NodeUnderMouse);
end;
procedure TCustomLvlGraphControl.DrawEdges(Highlighted: boolean);
var
i: Integer;
Level: TLvlGraphLevel;
j: Integer;
Node: TLvlGraphNode;
k: Integer;
Edge: TLvlGraphEdge;
TargetNode: TLvlGraphNode;
begin
for i:=0 to Graph.LevelCount-1 do begin
Level:=Graph.Levels[i];
for j:=0 to Level.Count-1 do begin
Node:=Level.Nodes[j];
for k:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[k];
TargetNode:=Edge.Target;
if Edge.Highlighted<>Highlighted then continue;
if TargetNode.Level.Index>Level.Index then begin
// normal dependency
// => draw line from right of Node to left of TargetNode
if Edge.Highlighted then
Canvas.Pen.Color:=EdgeStyle.HighlightColor
else
Canvas.Pen.Color:=EdgeStyle.Color;
end else begin
// cycle dependency
// => draw line from left of Node to right of TargetNode
if Edge.Highlighted then
Canvas.Pen.Color:=EdgeStyle.BackHighlightColor
else
Canvas.Pen.Color:=EdgeStyle.BackColor;
end;
DoDrawEdge(Edge);
end;
end;
end;
end;
procedure TCustomLvlGraphControl.GraphSelectionChanged(Sender: TObject);
begin
if OnSelectionChanged<>nil then
OnSelectionChanged(Self);
end;
procedure TCustomLvlGraphControl.ImageListChange(Sender: TObject);
begin
Invalidate;
end;
procedure TCustomLvlGraphControl.DrawCaptions(const TxtH: integer);
var
Node: TLvlGraphNode;
j: Integer;
Level: TLvlGraphLevel;
i: Integer;
TxtW: Integer;
p: TPoint;
x: Integer;
y: Integer;
Details: TThemedElementDetails;
NodeRect: TRect;
begin
Canvas.Font.Height:=round(single(TxtH)*NodeStyle.CaptionScale+0.5);
for i:=0 to Graph.LevelCount-1 do begin
Level:=Graph.Levels[i];
for j:=0 to Level.Count-1 do begin
Node:=Level.Nodes[j];
if (Node.Caption='') or (not Node.Visible) then continue;
TxtW:=Canvas.TextWidth(Node.Caption);
case NodeStyle.CaptionPosition of
lgncLeft,lgncRight: p.y:=Node.DrawCenter-(TxtH div 2);
lgncTop: p.y:=Node.DrawPosition-NodeStyle.GapTop-TxtH;
lgncBottom: p.y:=Node.DrawPositionEnd+NodeStyle.GapBottom;
end;
case NodeStyle.CaptionPosition of
lgncLeft: p.x:=Level.DrawPosition-NodeStyle.GapLeft-TxtW;
lgncRight: p.x:=Level.DrawPosition+NodeStyle.Width+NodeStyle.GapRight;
lgncTop,lgncBottom: p.x:=Level.DrawPosition+((NodeStyle.Width-TxtW) div 2);
end;
//debugln(['TCustomLvlGraphControl.Paint ',Node.Caption,' DrawPosition=',Node.DrawPosition,' DrawSize=',Node.DrawSize,' TxtH=',TxtH,' TxtW=',TxtW,' p=',dbgs(p),' Selected=',Node.Selected]);
x:=p.x-ScrollLeft;
y:=p.y-ScrollTop;
NodeRect:=Bounds(x,y,TxtW,TxtH);
Node.FDrawnCaptionRect:=NodeRect;
if Node.Selected then begin
if lgcFocusedPainting in FFlags then
Details := ThemeServices.GetElementDetails(ttItemSelected)
else
Details := ThemeServices.GetElementDetails(ttItemSelectedNotFocus);
ThemeServices.DrawElement(Canvas.Handle, Details, NodeRect, nil);
end else begin
Details := ThemeServices.GetElementDetails(ttItemNormal);
//Canvas.Brush.Style:=bsClear;
//Canvas.Brush.Color:=clNone;
end;
ThemeServices.DrawText(Canvas, Details, Node.Caption, NodeRect,
DT_CENTER or DT_VCENTER or DT_SINGLELINE or DT_NOPREFIX, 0)
//Canvas.TextOut(x,y,Node.Caption);
end;
end;
end;
procedure TCustomLvlGraphControl.ComputeEdgeCoords;
var
l: Integer;
Level: TLvlGraphLevel;
n: Integer;
Node: TLvlGraphNode;
e: Integer;
Edge: TLvlGraphEdge;
TargetNode: TLvlGraphNode;
x1: Integer;
x2: Integer;
TotalWeight, Weight: Single;
Start: Integer;
begin
for l:=0 to Graph.LevelCount-1 do begin
Level:=Graph.Levels[l];
for n:=0 to Level.Count-1 do begin
Node:=Level.Nodes[n];
// out edges
TotalWeight:=Node.OutWeight;
Weight:=0.0;
Start:=Node.DrawCenter-ScrollTop-integer(round(TotalWeight*PixelPerWeight) div 2);
for e:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[e];
Edge.FDrawnAt.Top:=Start+round(Weight*PixelPerWeight);
Weight+=Edge.Weight;
end;
// in edges
TotalWeight:=Node.InWeight;
Weight:=0.0;
Start:=Node.DrawCenter-ScrollTop-integer(round(TotalWeight*PixelPerWeight) div 2);
for e:=0 to Node.InEdgeCount-1 do begin
Edge:=Node.InEdges[e];
Edge.FDrawnAt.Bottom:=Start+round(Weight*PixelPerWeight);
Weight+=Edge.Weight;
end;
// x1, x2
for e:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[e];
TargetNode:=Edge.Target;
x1:=Level.DrawPosition-ScrollLeft;
x2:=TargetNode.Level.DrawPosition-ScrollLeft;
if TargetNode.Level.Index>Level.Index then begin
// normal dependency
// => draw line from right of Node to left of TargetNode
if Node.Visible then
x1+=NodeStyle.Width
else
x1+=NodeStyle.Width div 2;
if not TargetNode.Visible then
x2+=NodeStyle.Width div 2;
end else begin
// cycle dependency
// => draw line from left of Node to right of TargetNode
if not Node.Visible then
x1+=NodeStyle.Width div 2;
if TargetNode.Visible then
x2+=NodeStyle.Width
else
x2+=NodeStyle.Width div 2;
end;
Edge.FDrawnAt.Left:=x1;
Edge.FDrawnAt.Right:=x2;
end;
end;
end;
end;
procedure TCustomLvlGraphControl.ColorNodesRandomRGB;
var
Palette: TLazCtrlPalette;
begin
Palette:=GetCCPaletteRGB(Graph.NodeCount, true);
Graph.SetColors(Palette);
SetLength(Palette, 0);
end;
procedure TCustomLvlGraphControl.DrawNodes;
var
i: Integer;
Level: TLvlGraphLevel;
j: Integer;
Node: TLvlGraphNode;
x: Integer;
y: Integer;
ImgIndex: Integer;
begin
Canvas.Brush.Style:=bsSolid;
for i:=0 to Graph.LevelCount-1 do begin
Level:=Graph.Levels[i];
for j:=0 to Level.Count-1 do begin
Node:=Level.Nodes[j];
if not Node.Visible then continue;
//debugln(['TCustomLvlGraphControl.Paint ',Node.Caption,' ',dbgs(FPColorToTColor(Node.Color)),' Level.DrawPosition=',Level.DrawPosition,' Node.DrawPosition=',Node.DrawPosition,' ',Node.DrawPositionEnd]);
// draw shape
Canvas.Brush.Color:=FPColorToTColor(Node.Color);
Canvas.Pen.Color:=Darker(Canvas.Brush.Color);
x:=Level.DrawPosition-ScrollLeft;
y:=Node.DrawPosition-ScrollTop;
case NodeStyle.Shape of
lgnsRectangle:
Canvas.Rectangle(x, y, x+NodeStyle.Width, y+Node.DrawSize);
lgnsEllipse:
Canvas.Ellipse(x, y, x+NodeStyle.Width, y+Node.DrawSize);
end;
// draw image and overlay
if (Images<>nil) then begin
x:=Level.DrawPosition+((NodeStyle.Width-Images.Width) div 2)-ScrollLeft;
y:=Node.DrawCenter-(Images.Height div 2)-ScrollTop;
ImgIndex:=Node.ImageIndex;
if (ImgIndex<0) or (ImgIndex>=Images.Count) then
ImgIndex:=NodeStyle.DefaultImageIndex;
if (ImgIndex>=0) and (ImgIndex<Images.Count) then begin
Images.Draw(Canvas, x, y, ImgIndex, Node.FImageEffect);
if (Node.OverlayIndex>=0) and (Node.OverlayIndex<Images.Count) then
Images.DrawOverlay(Canvas, x, y, ImgIndex, Node.OverlayIndex, Node.FImageEffect);
end;
end;
end;
end;
end;
function TCustomLvlGraphControl.GetSelectedNode: TLvlGraphNode;
begin
Result:=Graph.FirstSelected;
end;
procedure TCustomLvlGraphControl.SetEdgeNearMouse(AValue: TLvlGraphEdge);
begin
if FEdgeNearMouse=AValue then Exit;
FEdgeNearMouse:=AValue;
if (lgoHighlightEdgeNearMouse in Options)
and ((NodeUnderMouse=nil) or (not (lgoHighlightNodeUnderMouse in Options)))
then
HighlightConnectedEgdes(EdgeNearMouse);
end;
procedure TCustomLvlGraphControl.SetImages(AValue: TCustomImageList);
begin
if FImages=AValue then Exit;
if Images <> nil then
Images.UnRegisterChanges(FImageChangeLink);
FImages:=AValue;
if Images <> nil then begin
Images.RegisterChanges(FImageChangeLink);
Images.FreeNotification(Self);
end;
Invalidate;
end;
procedure TCustomLvlGraphControl.SetNodeStyle(AValue: TLvlGraphNodeStyle);
begin
if FNodeStyle=AValue then Exit;
FNodeStyle.Assign(AValue);
end;
procedure TCustomLvlGraphControl.SetOptions(AValue: TLvlGraphCtrlOptions);
begin
if FOptions=AValue then Exit;
FOptions:=AValue;
InvalidateAutoLayout;
end;
procedure TCustomLvlGraphControl.SetScrollLeft(AValue: integer);
begin
AValue:=Max(0,Min(AValue,ScrollLeftMax));
if FScrollLeft=AValue then Exit;
FScrollLeft:=AValue;
UpdateScrollBars;
Invalidate;
end;
procedure TCustomLvlGraphControl.SetScrollTop(AValue: integer);
begin
AValue:=Max(0,Min(AValue,ScrollTopMax));
if FScrollTop=AValue then Exit;
FScrollTop:=AValue;
UpdateScrollBars;
Invalidate;
end;
procedure TCustomLvlGraphControl.SetSelectedNode(AValue: TLvlGraphNode);
begin
if AValue=nil then
Graph.ClearSelection
else
Graph.SingleSelect(AValue);
end;
procedure TCustomLvlGraphControl.UpdateScrollBars;
var
ScrollInfo: TScrollInfo;
DrawSize: TPoint;
begin
if HandleAllocated and (not (lgcUpdatingScrollBars in FFlags)) then begin
Include(FFlags,lgcUpdatingScrollBars);
DrawSize:=GetDrawSize;
FScrollTopMax:=DrawSize.Y-ClientHeight+2*BorderWidth;
FScrollTop:=Max(0,Min(FScrollTop,ScrollTopMax));
FScrollLeftMax:=DrawSize.X-ClientWidth+2*BorderWidth;
FScrollLeft:=Max(0,Min(FScrollLeft,ScrollLeftMax));
//debugln(['TCustomLvlGraphControl.UpdateScrollBars ',dbgs(DrawSize),' ClientRect=',dbgs(ClientRect),' ScrollLeft=',ScrollLeft,'/',ScrollLeftMax,' ScrollTop=',ScrollTop,'/',ScrollTopMax,' ']);
// vertical scrollbar
ScrollInfo.cbSize := SizeOf(ScrollInfo);
ScrollInfo.fMask := SIF_ALL or SIF_DISABLENOSCROLL;
ScrollInfo.nMin := 0;
ScrollInfo.nTrackPos := 0;
ScrollInfo.nMax := DrawSize.Y;
ScrollInfo.nPage := Max(1,ClientHeight-1);
ScrollInfo.nPos := ScrollTop;
ShowScrollBar(Handle, SB_VERT, True);
SetScrollInfo(Handle, SB_VERT, ScrollInfo, True);
// horizontal scrollbar
ScrollInfo.cbSize := SizeOf(ScrollInfo);
ScrollInfo.fMask := SIF_ALL or SIF_DISABLENOSCROLL;
ScrollInfo.nMin := 0;
ScrollInfo.nTrackPos := 0;
ScrollInfo.nMax := DrawSize.X;
ScrollInfo.nPage := Max(1,ClientWidth-1);
ScrollInfo.nPos := ScrollLeft;
ShowScrollBar(Handle, SB_Horz, True);
SetScrollInfo(Handle, SB_Horz, ScrollInfo, True);
Exclude(FFlags,lgcUpdatingScrollBars);
end;
end;
procedure TCustomLvlGraphControl.WMHScroll(var Msg: TLMScroll);
begin
case Msg.ScrollCode of
SB_TOP: ScrollLeft := 0;
SB_BOTTOM: ScrollLeft := ScrollLeftMax;
SB_LINEDOWN: ScrollLeft := ScrollLeft + NodeStyle.Width div 2;
SB_LINEUP: ScrollLeft := ScrollLeft - NodeStyle.Width div 2;
SB_PAGEDOWN: ScrollLeft := ScrollLeft + ClientWidth - NodeStyle.Width;
SB_PAGEUP: ScrollLeft := ScrollLeft - ClientWidth + NodeStyle.Width;
SB_THUMBPOSITION,
SB_THUMBTRACK: ScrollLeft := Msg.Pos;
SB_ENDSCROLL: SetCaptureControl(nil); // release scrollbar capture
end;
end;
procedure TCustomLvlGraphControl.WMVScroll(var Msg: TLMScroll);
begin
case Msg.ScrollCode of
SB_TOP: ScrollTop := 0;
SB_BOTTOM: ScrollTop := ScrollTopMax;
SB_LINEDOWN: ScrollTop := ScrollTop + NodeStyle.Width div 2;
SB_LINEUP: ScrollTop := ScrollTop - NodeStyle.Width div 2;
SB_PAGEDOWN: ScrollTop := ScrollTop + ClientHeight - NodeStyle.Width;
SB_PAGEUP: ScrollTop := ScrollTop - ClientHeight + NodeStyle.Width;
SB_THUMBPOSITION,
SB_THUMBTRACK: ScrollTop := Msg.Pos;
SB_ENDSCROLL: SetCaptureControl(nil); // release scrollbar capture
end;
end;
procedure TCustomLvlGraphControl.WMMouseWheel(var Message: TLMMouseEvent);
begin
if Mouse.WheelScrollLines=-1 then
begin
// -1 : scroll by page
ScrollTop := ScrollTop -
(Message.WheelDelta * (ClientHeight - NodeStyle.Width)) div 120;
end else begin
// scrolling one line -> scroll half an item, see SB_LINEDOWN and SB_LINEUP
// handler in WMVScroll
ScrollTop := ScrollTop -
(Message.WheelDelta * Mouse.WheelScrollLines*NodeStyle.Width) div 240;
end;
Message.Result := 1;
end;
procedure TCustomLvlGraphControl.DoAutoLayoutLevels(TxtHeight: integer);
// compute all Levels.DrawPosition
var
j: Integer;
p: Integer;
i: Integer;
LevelTxtWidths: array of integer;
Level: TLvlGraphLevel;
begin
Canvas.Font.Height:=round(single(TxtHeight)*NodeStyle.CaptionScale+0.5);
if Graph.LevelCount=0 then exit;
SetLength(LevelTxtWidths,Graph.LevelCount);
for i:=0 to Graph.LevelCount-1 do begin
// compute needed width of the level
Level:=Graph.Levels[i];
LevelTxtWidths[i]:=Max(NodeStyle.Width,Canvas.TextWidth('NodeX'+StringOfChar('j',Min(20,Level.Count))));
for j:=0 to Level.Count-1 do
if Level[j].Visible then
LevelTxtWidths[i]:=Max(LevelTxtWidths[i], Canvas.TextWidth(Level[j].Caption));
p:=0; // Prevent compiler warning.
if i=0 then begin
// first level
case NodeStyle.CaptionPosition of
lgncLeft: p:=NodeStyle.GapRight+LevelTxtWidths[0]+NodeStyle.GapLeft;
lgncRight: p:=NodeStyle.GapLeft;
lgncTop,lgncBottom: p:=NodeStyle.GapLeft+((LevelTxtWidths[0]-NodeStyle.Width) div 2);
end;
end else begin
// following level
p:=Graph.Levels[i-1].DrawPosition;
case NodeStyle.CaptionPosition of
lgncLeft: p+=NodeStyle.Width+NodeStyle.GapRight+LevelTxtWidths[i]+NodeStyle.GapLeft;
lgncRight: p+=NodeStyle.Width+NodeStyle.GapRight+LevelTxtWidths[i-1]+NodeStyle.GapLeft;
lgncTop,lgncBottom:
p+=((LevelTxtWidths[i-1]+LevelTxtWidths[i]) div 2)+NodeStyle.GapRight+NodeStyle.GapLeft;
end;
end;
Graph.Levels[i].DrawPosition:=p;
end;
SetLength(LevelTxtWidths,0);
end;
procedure TCustomLvlGraphControl.DoSetBounds(ALeft, ATop, AWidth,
AHeight: integer);
begin
inherited DoSetBounds(ALeft, ATop, AWidth, AHeight);
UpdateScrollBars;
end;
procedure TCustomLvlGraphControl.DoStartAutoLayout;
begin
if Assigned(OnStartAutoLayout) then
OnStartAutoLayout(Self);
end;
procedure TCustomLvlGraphControl.DoEndAutoLayout;
begin
if Assigned(OnEndAutoLayout) then
OnEndAutoLayout(Self);
end;
procedure TCustomLvlGraphControl.DoDrawEdge(Edge: TLvlGraphEdge);
var
r: TRect;
s: integer;
begin
r:=Edge.DrawnAt;
s:=round(Edge.Weight*PixelPerWeight);
if s>1 then begin
case EdgeStyle.Shape of
lgesStraight: Canvas.Line(r);
lgesCurved:
begin
DrawCurvedLvlLeftToRightEdge(Canvas,r.Left,r.Top,r.Right,r.Bottom);
DrawCurvedLvlLeftToRightEdge(Canvas,r.Left,r.Top+s,r.Right,r.Bottom+s);
end;
end;
end else begin
case EdgeStyle.Shape of
lgesStraight: Canvas.Line(r);
lgesCurved: DrawCurvedLvlLeftToRightEdge(Canvas,r.Left,r.Top,r.Right,r.Bottom);
end;
end;
end;
procedure TCustomLvlGraphControl.DoMinimizeCrossings;
begin
if OnMinimizeCrossings<>nil then
OnMinimizeCrossings(Self)
else
Graph.MinimizeCrossings;
end;
procedure TCustomLvlGraphControl.DoMinimizeOverlappings(MinPos: integer;
NodeGapInFront: integer; NodeGapBehind: integer);
begin
if Assigned(OnMinimizeOverlappings) then
OnMinimizeOverlappings(MinPos,NodeGapInFront,NodeGapBehind)
else
Graph.MinimizeOverlappings(MinPos,NodeGapInFront,NodeGapBehind);
end;
procedure TCustomLvlGraphControl.Paint;
var
w: Integer;
TxtH: integer;
begin
inherited Paint;
Canvas.Font.Assign(Font);
Canvas.Font.PixelsPerInch := Font.PixelsPerInch;
Include(FFlags,lgcFocusedPainting);
if (lgoAutoLayout in FOptions)
and (lgcNeedAutoLayout in FFlags) then begin
Include(FFlags,lgcIgnoreGraphInvalidate);
try
AutoLayout;
finally
Exclude(FFlags,lgcIgnoreGraphInvalidate);
end;
end;
// background
if Draw(lgdsBackground) then begin
Canvas.Brush.Style:=bsSolid;
Canvas.Brush.Color:=Color; //clWhite;
Canvas.FillRect(ClientRect);
end;
TxtH:=Canvas.TextHeight('ABCTM');
// header
if Draw(lgdsHeader) and (Caption<>'') then begin
w:=Canvas.TextWidth(Caption);
Canvas.TextOut((ClientWidth-w) div 2-ScrollLeft,round(0.25*TxtH)-ScrollTop,Caption);
end;
// draw edges, node captions, nodes
ComputeEdgeCoords;
if Draw(lgdsNormalEdges) then
DrawEdges(false);
if Draw(lgdsNodeCaptions) then
DrawCaptions(TxtH);
if Draw(lgdsHighlightedEdges) then
DrawEdges(true);
if Draw(lgdsNodes) then
DrawNodes;
// finish
Draw(lgdsFinish);
end;
function TCustomLvlGraphControl.Draw(Step: TLvlGraphDrawStep): boolean;
var
Skip: Boolean;
begin
if not Assigned(OnDrawStep) then exit(true);
Skip:=false;
OnDrawStep(Step,Skip);
Result:=not Skip;
end;
procedure TCustomLvlGraphControl.MouseMove(Shift: TShiftState; X, Y: Integer);
var
Distance: integer;
Edge: TLvlGraphEdge;
begin
inherited MouseMove(Shift, X, Y);
NodeUnderMouse:=GetNodeAt(X,Y);
Edge:=GetEdgeAt(X,Y,Distance);
if Distance<=EdgeStyle.MouseDistMax then
EdgeNearMouse:=Edge
else
EdgeNearMouse:=nil;
end;
procedure TCustomLvlGraphControl.MouseDown(Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
var
Node: TLvlGraphNode;
begin
BeginUpdate;
try
inherited MouseDown(Button, Shift, X, Y);
Node:=GetNodeAt(X,Y);
if Node<>nil then begin
if Button=mbLeft then begin
if lgoMouseSelects in Options then begin
if ssCtrl in Shift then begin
// toggle selection
Node.Selected:=not Node.Selected;
end else begin
// single selection
Graph.ClearSelection;
Node.Selected:=true;
end;
end;
end;
end;
finally
EndUpdate;
end;
end;
procedure TCustomLvlGraphControl.CreateWnd;
begin
inherited CreateWnd;
UpdateScrollBars;
end;
procedure TCustomLvlGraphControl.HighlightConnectedEgdes(Element: TObject);
var
n: Integer;
CurNode: TLvlGraphNode;
e: Integer;
HighlightedElements: TAvlTree;
Edge: TLvlGraphEdge;
begin
BeginUpdate;
HighlightedElements:=TAvlTree.Create;
try
if Element is TLvlGraphNode then
LvlGraphHighlightNode(TLvlGraphNode(Element),HighlightedElements,true,true)
else if Element is TLvlGraphEdge then begin
Edge:=TLvlGraphEdge(Element);
HighlightedElements.Add(Edge);
if not Edge.Source.Visible then
LvlGraphHighlightNode(Edge.Source,HighlightedElements,true,false);
if not Edge.Target.Visible then
LvlGraphHighlightNode(Edge.Target,HighlightedElements,false,true);
end;
for n:=0 to Graph.NodeCount-1 do begin
CurNode:=Graph.Nodes[n];
for e:=0 to CurNode.OutEdgeCount-1 do begin
Edge:=CurNode.OutEdges[e];
Edge.Highlighted:=HighlightedElements.Find(Edge)<>nil;
end;
end;
finally
HighlightedElements.Free;
end;
EndUpdate;
end;
procedure TCustomLvlGraphControl.DoOnShowHint(HintInfo: PHintInfo);
var
s: String;
begin
if NodeUnderMouse<>nil then begin
s:=NodeArrayAsString(NodeUnderMouse.GetVisibleSourceNodes);
s+=#13'->'#13;
s+=NodeUnderMouse.Caption;
s+=#13'->'#13;
s+=NodeArrayAsString(NodeUnderMouse.GetVisibleTargetNodes);
HintInfo^.HintStr:=s;
end else if EdgeNearMouse<>nil then begin
s:=NodeArrayAsString(EdgeNearMouse.GetVisibleSourceNodes);
s+=#13'->'#13;
s+=NodeArrayAsString(EdgeNearMouse.GetVisibleTargetNodes);
HintInfo^.HintStr:=s;
end;
inherited DoOnShowHint(HintInfo);
end;
constructor TCustomLvlGraphControl.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
ControlStyle:=ControlStyle+[csAcceptsControls];
Color := clWhite;
FOptions:=DefaultLvlGraphCtrlOptions;
FGraph:=TLvlGraph.Create;
FGraph.OnInvalidate:=@GraphInvalidate;
FGraph.OnSelectionChanged:=@GraphSelectionChanged;
FGraph.OnStructureChanged:=@GraphStructureChanged;
FNodeStyle:=TLvlGraphNodeStyle.Create(Self);
FEdgeStyle:=TLvlGraphEdgeStyle.Create(Self);
FImageChangeLink := TChangeLink.Create;
FImageChangeLink.OnChange:=@ImageListChange;
ShowHint:=true;
with GetControlClassDefaultSize do
SetInitialBounds(0, 0, CX, CY);
end;
destructor TCustomLvlGraphControl.Destroy;
begin
inc(fUpdateLock);
FreeAndNil(FImageChangeLink);
FGraph.OnInvalidate:=nil;
FGraph.OnSelectionChanged:=nil;
FGraph.OnStructureChanged:=nil;
FGraph.Free;
FGraph:=nil;
FreeAndNil(FEdgeStyle);
FreeAndNil(FNodeStyle);
inherited Destroy;
end;
procedure TCustomLvlGraphControl.EraseBackground(DC: HDC);
begin
// Paint paints all, no need to erase background
end;
procedure TCustomLvlGraphControl.Clear;
begin
BeginUpdate;
try
Graph.Clear;
finally
EndUpdate;
end;
end;
procedure TCustomLvlGraphControl.AutoLayout;
{ Min/MaxPixelPerWeight: used to scale Node.DrawSize depending on weight of
incoming and outgoing edges
NodeGap: space between nodes
}
var
HeaderHeight: integer;
TxtH: LongInt;
GapInFront: Integer;
GapBehind: Integer;
begin
//debugln(['TCustomLvlGraphControl.AutoLayout ',DbgSName(Self),' ClientRect=',dbgs(ClientRect)]);
BeginUpdate;
try
Canvas.Font.Assign(Font);
DoStartAutoLayout;
if HandleAllocated then
TxtH:=Canvas.TextHeight('M')
else
TxtH:=Max(10,abs(Font.Height));
if Caption<>'' then begin
HeaderHeight:=round(1.5*TxtH);
end else
HeaderHeight:=0;
// distribute the nodes on levels and mark back edges
Graph.CreateTopologicalLevels(lgoHighLevels in Options);
Graph.SplitLongEdges(EdgeStyle.SplitMode);
// permutate nodes within levels to avoid crossings
DoMinimizeCrossings;
// Level DrawPosition
DoAutoLayoutLevels(TxtH);
GapInFront:=NodeStyle.GapTop;
GapBehind:=NodeStyle.GapBottom;
case NodeStyle.CaptionPosition of
lgncTop: GapInFront+=TxtH;
lgncBottom: GapBehind+=TxtH;
end;
// scale Nodes.DrawSize
// Preferably the smallest node should be the size of the text
// Preferably the largest level should fit without needing a scrollbar
Graph.ScaleNodeDrawSizes(GapInFront,GapBehind,Screen.Height*2,1,
ClientHeight-HeaderHeight,round(single(TxtH)*NodeStyle.CaptionScale+0.5),
FPixelPerWeight);
// position nodes without overlapping
DoMinimizeOverlappings;
Graph.MinimizeOverlappings(HeaderHeight,GapInFront,GapBehind);
// node colors
if NodeStyle.Coloring=lgncRGB then
ColorNodesRandomRGB;
UpdateScrollBars;
DoEndAutoLayout;
Exclude(FFlags,lgcNeedAutoLayout);
finally
EndUpdate;
end;
end;
procedure TCustomLvlGraphControl.Invalidate;
begin
if lgcIgnoreGraphInvalidate in FFlags then
exit;
if fUpdateLock>0 then begin
Include(FFlags,lgcNeedInvalidate);
exit;
end;
Exclude(FFlags,lgcNeedInvalidate);
inherited Invalidate;
end;
procedure TCustomLvlGraphControl.InvalidateAutoLayout;
begin
if lgoAutoLayout in Options then
Include(FFlags,lgcNeedAutoLayout);
Invalidate;
end;
procedure TCustomLvlGraphControl.BeginUpdate;
begin
inc(fUpdateLock);
end;
procedure TCustomLvlGraphControl.EndUpdate;
begin
if fUpdateLock=0 then
raise Exception.Create('');
dec(fUpdateLock);
if fUpdateLock=0 then begin
if [lgcNeedAutoLayout,lgcNeedInvalidate]*FFlags<>[] then
Invalidate;
end;
end;
function TCustomLvlGraphControl.GetNodeAt(X, Y: integer): TLvlGraphNode;
var
l: Integer;
Level: TLvlGraphLevel;
n: Integer;
Node: TLvlGraphNode;
begin
Result:=nil;
X+=ScrollLeft;
Y+=ScrollTop;
// check in reverse painting order
for l:=Graph.LevelCount-1 downto 0 do begin
Level:=Graph.Levels[l];
if (X<Level.DrawPosition) or (X>=Level.DrawPosition+NodeStyle.Width) then continue;
for n:=Level.Count-1 downto 0 do begin
Node:=Level.Nodes[n];
if not Node.Visible then continue;
if (Y<Node.DrawPosition) or (Y>=Node.DrawPositionEnd) then continue;
exit(Node);
end;
end;
end;
function TCustomLvlGraphControl.GetEdgeAt(X, Y: integer; out Distance: integer
): TLvlGraphEdge;
var
l: Integer;
Level: TLvlGraphLevel;
n: Integer;
Node: TLvlGraphNode;
e: Integer;
Edge: TLvlGraphEdge;
CurDist: Integer;
r: TRect;
begin
Result:=nil;
Distance:=High(Integer);
// check in reverse painting order
for l:=Graph.LevelCount-1 downto 0 do begin
Level:=Graph.Levels[l];
for n:=Level.Count-1 downto 0 do begin
Node:=Level.Nodes[n];
for e:=Node.OutEdgeCount-1 downto 0 do begin
Edge:=Node.OutEdges[e];
r:=Edge.DrawnAt;
CurDist:=GetDistancePointLine(X,Y,
r.Left,r.Top,r.Right,r.Bottom);
if CurDist<Distance then begin
Result:=Edge;
Distance:=CurDist;
end;
end;
end;
end;
end;
class function TCustomLvlGraphControl.GetControlClassDefaultSize: TSize;
begin
Result.cx:=200;
Result.cy:=200;
end;
function TCustomLvlGraphControl.GetDrawSize: TPoint;
var
l: Integer;
Level: TLvlGraphLevel;
n: Integer;
Node: TLvlGraphNode;
x: LongInt;
CaptionRect: TRect;
begin
Result:=Point(0,0);
for l:=0 to Graph.LevelCount-1 do begin
Level:=Graph.Levels[l];
for n:=0 to Level.Count-1 do begin
Node:=Level[n];
CaptionRect:=Node.DrawnCaptionRect;
Result.Y:=Max(Result.Y,Node.DrawPositionEnd+NodeStyle.GapBottom);
Result.Y:=Max(Result.Y,CaptionRect.Bottom+ScrollTop);
x:=NodeStyle.GapRight;
if Node.OutEdgeCount>0 then
x:=Max(x,NodeStyle.Width);
x+=Level.DrawPosition+NodeStyle.Width;
Result.X:=Max(Result.X,x);
Result.X:=Max(Result.X,CaptionRect.Right+ScrollLeft);
end;
end;
end;
type
{ TGraphLevelerNode - used by TLvlGraph.UpdateLevels }
TGraphLevelerNode = class
public
Node: TLvlGraphNode;
Level: integer;
Visited: boolean;
InPath: boolean; // = node on stack
end;
function CompareGraphLevelerNodes(Node1, Node2: Pointer): integer;
var
LNode1: TGraphLevelerNode absolute Node1;
LNode2: TGraphLevelerNode absolute Node2;
begin
Result:=ComparePointer(LNode1.Node,LNode2.Node);
end;
function CompareLGNodeWithLevelerNode(GNode, LNode: Pointer): integer;
var
LevelerNode: TGraphLevelerNode absolute LNode;
begin
Result:=ComparePointer(GNode,LevelerNode.Node);
end;
{ TLvlGraph }
function TLvlGraph.GetNodes(Index: integer): TLvlGraphNode;
begin
Result:=TLvlGraphNode(FNodes[Index]);
end;
procedure TLvlGraph.SetLevelCount(AValue: integer);
begin
if AValue<1 then
raise Exception.Create('at least one level');
if LevelCount=AValue then Exit;
while LevelCount<AValue do
FLevelClass.Create(Self,LevelCount);
while LevelCount>AValue do
Levels[LevelCount-1].Free;
end;
procedure TLvlGraph.InternalRemoveNode(Node: TLvlGraphNode);
begin
FNodes.Remove(Node);
Node.FGraph:=nil;
StructureChanged(Node,opRemove);
end;
function TLvlGraph.GetLevels(Index: integer): TLvlGraphLevel;
begin
Result:=TLvlGraphLevel(fLevels[Index]);
end;
function TLvlGraph.GetLevelCount: integer;
begin
Result:=fLevels.Count;
end;
constructor TLvlGraph.Create;
begin
FNodeClass:=TLvlGraphNode;
FEdgeClass:=TLvlGraphEdge;
FLevelClass:=TLvlGraphLevel;
FNodes:=TFPList.Create;
fLevels:=TFPList.Create;
end;
destructor TLvlGraph.Destroy;
begin
Clear;
FreeAndNil(fLevels);
FreeAndNil(FNodes);
inherited Destroy;
end;
procedure TLvlGraph.Clear;
var
i: Integer;
begin
while NodeCount>0 do
Nodes[NodeCount-1].Free;
for i:=LevelCount-1 downto 0 do
Levels[i].Free;
end;
procedure TLvlGraph.Invalidate;
begin
if OnInvalidate<>nil then
OnInvalidate(Self);
end;
procedure TLvlGraph.StructureChanged(Element: TObject; Operation: TOperation);
begin
if Assigned(OnStructureChanged) then
OnStructureChanged(Self,Element,Operation);
end;
function TLvlGraph.NodeCount: integer;
begin
Result:=FNodes.Count;
end;
function TLvlGraph.GetNode(aCaption: string; CreateIfNotExists: boolean
): TLvlGraphNode;
var
i: Integer;
begin
i:=NodeCount-1;
if FCaseSensitive then
while (i>=0) and (aCaption<>Nodes[i].Caption) do dec(i)
else
while (i>=0) and not SameText(aCaption, Nodes[i].Caption) do dec(i);
if i>=0 then begin
Result:=Nodes[i];
end else if CreateIfNotExists then begin
if LevelCount=0 then
LevelCount:=1;
Result:=FNodeClass.Create(Self,aCaption,Levels[0]);
FNodes.Add(Result);
StructureChanged(Result,opInsert);
end else
Result:=nil;
end;
function TLvlGraph.CreateHiddenNode(Level: integer): TLvlGraphNode;
begin
Result:=FNodeClass.Create(Self,'',Levels[Level]);
Result.Visible:=false;
FNodes.Add(Result);
StructureChanged(Result,opInsert);
end;
procedure TLvlGraph.ClearSelection;
begin
while FirstSelected<>nil do
FirstSelected.Selected:=false;
end;
procedure TLvlGraph.SingleSelect(Node: TLvlGraphNode);
begin
if (Node=FirstSelected) and (Node.NextSelected=nil) then exit;
Node.Selected:=true;
while FirstSelected<>Node do
FirstSelected.Selected:=false;
while LastSelected<>Node do
LastSelected.Selected:=false;
end;
function TLvlGraph.IsMultiSelection: boolean;
begin
Result:=(FirstSelected<>nil) and (FirstSelected.NextSelected<>nil);
end;
function TLvlGraph.GetEdge(SourceCaption, TargetCaption: string;
CreateIfNotExists: boolean): TLvlGraphEdge;
var
Source: TLvlGraphNode;
Target: TLvlGraphNode;
begin
Source:=GetNode(SourceCaption,CreateIfNotExists);
if Source=nil then exit(nil);
Target:=GetNode(TargetCaption,CreateIfNotExists);
if Target=nil then exit(nil);
Result:=GetEdge(Source,Target,CreateIfNotExists);
end;
function TLvlGraph.GetEdge(Source, Target: TLvlGraphNode;
CreateIfNotExists: boolean): TLvlGraphEdge;
begin
Result:=Source.FindOutEdge(Target);
if Result<>nil then exit;
if CreateIfNotExists then begin
Result:=FEdgeClass.Create(Source,Target);
StructureChanged(Result,opInsert);
end;
end;
procedure TLvlGraph.InternalRemoveLevel(Lvl: TLvlGraphLevel);
var
i: Integer;
begin
if Levels[Lvl.Index]<>Lvl then
raise Exception.Create('inconsistency');
fLevels.Delete(Lvl.Index);
// update level Index
for i:=Lvl.Index to LevelCount-1 do
Levels[i].FIndex:=i;
StructureChanged(Lvl,opRemove);
end;
procedure TLvlGraph.SelectionChanged;
begin
Invalidate;
if OnSelectionChanged<>nil then
OnSelectionChanged(Self);
end;
procedure TLvlGraph.CreateTopologicalLevels(HighLevels: boolean);
{$DEFINE LvlGraphConsistencyCheck}
var
ExtNodes: TAvlTree; // tree of TGraphLevelerNode sorted by Node
MaxLevel: Integer;
function GetExtNode(Node: TLvlGraphNode): TGraphLevelerNode;
begin
Result:=TGraphLevelerNode(ExtNodes.FindKey(Pointer(Node),@CompareLGNodeWithLevelerNode).Data);
end;
procedure Traverse(ExtNode: TGraphLevelerNode);
var
Node: TLvlGraphNode;
e: Integer;
Edge: TLvlGraphEdge;
ExtNextNode: TGraphLevelerNode;
Cnt: Integer;
begin
if ExtNode.Visited then exit;
ExtNode.InPath:=true;
ExtNode.Visited:=true;
Node:=ExtNode.Node;
if HighLevels then
Cnt:=Node.OutEdgeCount
else
Cnt:=Node.InEdgeCount;
for e:=0 to Cnt-1 do begin
if HighLevels then begin
Edge:=Node.OutEdges[e];
ExtNextNode:=GetExtNode(Edge.Target);
end else begin
Edge:=Node.InEdges[e];
ExtNextNode:=GetExtNode(Edge.Source);
end;
if ExtNextNode.InPath then begin
Edge.FBackEdge:=true // edge is part of a cycle
end else begin
Traverse(ExtNextNode);
ExtNode.Level:=Max(ExtNode.Level,ExtNextNode.Level+1);
end;
end;
MaxLevel:=Max(MaxLevel,ExtNode.Level);
// backtrack
ExtNode.InPath:=false;
end;
var
i: Integer;
Node: TLvlGraphNode;
ExtNode: TGraphLevelerNode;
j: Integer;
Edge: TLvlGraphEdge;
begin
//WriteDebugReport('TLvlGraph.CreateTopologicalLevels START');
{$IFDEF LvlGraphConsistencyCheck}
ConsistencyCheck(false);
{$ENDIF}
ExtNodes:=TAvlTree.Create(@CompareGraphLevelerNodes);
try
// init ExtNodes
// clear BackEdge flags
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
ExtNode:=TGraphLevelerNode.Create;
ExtNode.Node:=Node;
ExtNodes.Add(ExtNode);
for j:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[j];
Edge.fBackEdge:=false;
end;
end;
// traverse all nodes
MaxLevel:=0;
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
Traverse(GetExtNode(Node));
end;
// set levels
LevelCount:=Max(LevelCount,MaxLevel+1);
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
ExtNode:=GetExtNode(Node);
if HighLevels then
Node.Level:=Levels[MaxLevel-ExtNode.Level]
else
Node.Level:=Levels[ExtNode.Level];
end;
// delete unneeded levels
LevelCount:=MaxLevel+1;
finally
ExtNodes.FreeAndClear;
ExtNodes.Free;
end;
//WriteDebugReport('TLvlGraph.CreateTopologicalLevels END');
{$IFDEF LvlGraphConsistencyCheck}
ConsistencyCheck(true);
{$ENDIF}
end;
procedure TLvlGraph.SplitLongEdges(SplitMode: TLvlGraphEdgeSplitMode);
// replace edges over several levels into several short edges by adding hidden nodes
type
TNodeInfo = record
HiddenNodes: TLvlGraphNodeArray;
LongInEdges, LongOutEdges: integer;
end;
PNodeInfo = ^TNodeInfo;
var
NodeToInfo: TPointerToPointerTree; // node to TNodeInfo
n: Integer;
SourceNode: TLvlGraphNode;
e: Integer;
Edge: TLvlGraphEdge;
TargetNode: TLvlGraphNode;
EdgeWeight: Single;
EdgeData: Pointer;
HiddenNodes: TLvlGraphNodeArray;
l: Integer;
LastNode: TLvlGraphNode;
NextNode: TLvlGraphNode;
AVLNode: TAvlTreeNode;
P2PItem: PPointerToPointerItem;
MergeAtSourceNode: Boolean;
SourceInfo: PNodeInfo;
TargetInfo: PNodeInfo;
begin
if SplitMode=lgesNone then exit;
NodeToInfo:=TPointerToPointerTree.Create;
try
// create node infos
for n:=0 to NodeCount-1 do begin
SourceNode:=Nodes[n];
New(SourceInfo);
FillByte(SourceInfo^,SizeOf(TNodeInfo),0);
SetLength(SourceInfo^.HiddenNodes,LevelCount);
for e:=0 to SourceNode.OutEdgeCount-1 do begin
Edge:=SourceNode.OutEdges[e];
if Edge.Target.Level.Index-SourceNode.Level.Index<=1 then continue;
SourceInfo^.LongOutEdges+=1;
end;
for e:=0 to SourceNode.InEdgeCount-1 do begin
Edge:=SourceNode.InEdges[e];
if SourceNode.Level.Index-Edge.Source.Level.Index<=1 then continue;
SourceInfo^.LongInEdges+=1;
end;
//debugln(['TLvlGraph.SplitLongEdges ',SourceNode.Caption,' LongOutEdges=',SourceInfo^.LongOutEdges,' LongInEdges=',SourceInfo^.LongInEdges]);
NodeToInfo[SourceNode]:=SourceInfo;
end;
// split long edges
for n:=0 to NodeCount-1 do begin
SourceNode:=Nodes[n];
for e:=SourceNode.OutEdgeCount-1 downto 0 do begin // Note: run downwards, because edges will be deleted
Edge:=SourceNode.OutEdges[e];
TargetNode:=Edge.Target;
if TargetNode.Level.Index-SourceNode.Level.Index<=1 then continue;
//debugln(['TLvlGraph.SplitLongEdges long edge: ',SourceNode.Caption,'(',SourceNode.Level.Index,') ',TargetNode.Caption,'(',TargetNode.Level.Index,')']);
EdgeWeight:=Edge.Weight;
EdgeData:=Edge.Data;
// remove long edge
Edge.Free;
// create merged hidden nodes
if SplitMode in [lgesMergeSource,lgesMergeTarget,lgesMergeHighest] then
begin
SourceInfo:=PNodeInfo(NodeToInfo[SourceNode]);
TargetInfo:=PNodeInfo(NodeToInfo[TargetNode]);
MergeAtSourceNode:=true;
case SplitMode of
lgesMergeTarget: MergeAtSourceNode:=false;
lgesMergeHighest: MergeAtSourceNode:=SourceInfo^.LongOutEdges>=TargetInfo^.LongInEdges;
end;
//debugln(['TLvlGraph.SplitLongEdges ',SourceNode.Caption,'=',SourceInfo^.LongOutEdges,' ',TargetNode.Caption,'=',TargetInfo^.LongInEdges,' MergeAtSourceNode=',MergeAtSourceNode]);
if MergeAtSourceNode then
HiddenNodes:=SourceInfo^.HiddenNodes
else
HiddenNodes:=TargetInfo^.HiddenNodes;
// create hidden nodes
for l:=SourceNode.Level.Index+1 to TargetNode.Level.Index-1 do
if HiddenNodes[l]=nil then
HiddenNodes[l]:=CreateHiddenNode(l);
end;
// create edges
LastNode:=SourceNode;
for l:=SourceNode.Level.Index+1 to TargetNode.Level.Index do begin
if l<TargetNode.Level.Index then begin
if SplitMode=lgesSeparate then
NextNode:=CreateHiddenNode(l)
else
NextNode:=HiddenNodes[l];
end else
NextNode:=TargetNode;
Edge:=GetEdge(LastNode,NextNode,true);
Edge.Weight:=Edge.Weight+EdgeWeight;
if Edge.Data=nil then
Edge.Data:=EdgeData;
LastNode:=NextNode;
end;
end;
end;
finally
// free NodeToInfo
AVLNode:=NodeToInfo.Tree.FindLowest;
while AVLNode<>nil do begin
P2PItem:=PPointerToPointerItem(AVLNode.Data);
SourceInfo:=PNodeInfo(P2PItem^.Value);
Dispose(SourceInfo);
AVLNode:=NodeToInfo.Tree.FindSuccessor(AVLNode);
end;
NodeToInfo.Free;
end;
end;
procedure TLvlGraph.ScaleNodeDrawSizes(NodeGapAbove, NodeGapBelow,
HardMaxTotal, HardMinOneNode, SoftMaxTotal, SoftMinOneNode: integer; out
PixelPerWeight: single);
{ NodeGapAbove: minimum space above each node
NodeGapBelow: minimum space below each node
HardMaxTotal: maximum size of largest level
HardMinOneNode: minimum size of a node
SoftMaxTotal: preferred maximum size of the largest level, total can be bigger
to achieve HardMinOneNode
SoftMinOneNode: preferred minimum size of a node, can be smaller to achieve
SoftMaxTotal
Order of precedence: HardMinOneNode, SoftMaxTotal, SoftMinOneNode
}
var
SmallestWeight: Single;
i: Integer;
Node: TLvlGraphNode;
j: Integer;
Edge: TLvlGraphEdge;
Level: TLvlGraphLevel;
LvlWeight: Single;
MinPixelPerWeight, PrefMinPixelPerWeight: single;
DrawHeight: integer;
MaxPixelPerWeight, PrefMaxPixelPerWeight: single;
Gap: Integer;
begin
PixelPerWeight:=1.0;
//debugln(['TLvlGraph.ScaleNodeDrawSizes',
// ' NodeGapAbove=',NodeGapAbove,' NodeGapBelow=',NodeGapBelow,
// ' HardMaxTotal=',HardMaxTotal,' HardMinOneNode=',HardMinOneNode,
// ' SoftMaxTotal=',SoftMaxTotal,' SoftMinOneNode=',SoftMinOneNode]);
// sanitize input
HardMinOneNode:=Max(0,HardMinOneNode);
SoftMinOneNode:=Max(SoftMinOneNode,HardMinOneNode);
HardMaxTotal:=Max(1,HardMaxTotal);
SoftMaxTotal:=Min(Max(1,SoftMaxTotal),HardMaxTotal);
SmallestWeight:=-1.0;
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
for j:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[j];
if Edge.Weight<=0.0 then continue;
if (SmallestWeight<0) or (SmallestWeight>Edge.Weight) then
SmallestWeight:=Edge.Weight;
end;
end;
if SmallestWeight<0 then SmallestWeight:=1.0;
if SmallestWeight>0 then begin
MinPixelPerWeight:=single(HardMinOneNode)/SmallestWeight;
PrefMinPixelPerWeight:=single(SoftMinOneNode)/SmallestWeight;
end else begin
MinPixelPerWeight:=single(HardMinOneNode);
PrefMinPixelPerWeight:=single(SoftMinOneNode);
end;
//debugln(['TLvlGraph.ScaleNodeDrawSizes SmallestWeight=',SmallestWeight,
// ' MinPixelPerWeight=',MinPixelPerWeight,
// ' PrefMinPixelPerWeight=',PrefMinPixelPerWeight]);
MaxPixelPerWeight:=0.0;
PrefMaxPixelPerWeight:=0.0;
for i:=0 to LevelCount-1 do begin
Level:=Levels[i];
// LvlWeight = how much weight to draw
// DrawHeight - how much pixel left to draw the weight
LvlWeight:=0.0;
Gap:=0;
DrawHeight:=HardMaxTotal;
for j:=0 to Level.Count-1 do begin
// ToDo: Node is probably uninitialized.
LvlWeight+=Max(Node.InWeight,Node.OutWeight);
Gap+=NodeGapAbove+NodeGapBelow;
end;
if LvlWeight=0.0 then continue;
DrawHeight:=Max(1,HardMaxTotal-Gap);
PixelPerWeight:=single(DrawHeight)/LvlWeight;
if (MaxPixelPerWeight=0.0) or (MaxPixelPerWeight>PixelPerWeight) then
MaxPixelPerWeight:=PixelPerWeight;
DrawHeight:=Max(1,SoftMaxTotal-Gap);
PixelPerWeight:=single(DrawHeight)/LvlWeight;
if (PrefMaxPixelPerWeight=0.0) or (PrefMaxPixelPerWeight>PixelPerWeight) then
PrefMaxPixelPerWeight:=PixelPerWeight;
end;
//debugln(['TLvlGraph.ScaleNodeDrawSizes MaxPixelPerWeight=',MaxPixelPerWeight,' PrefMaxPixelPerWeight=',PrefMaxPixelPerWeight]);
PixelPerWeight:=PrefMinPixelPerWeight;
if PrefMaxPixelPerWeight>0.0 then
PixelPerWeight:=Min(PixelPerWeight,PrefMaxPixelPerWeight);
PixelPerWeight:=Max(PixelPerWeight,MinPixelPerWeight);
if MaxPixelPerWeight>0.0 then
PixelPerWeight:=Min(PixelPerWeight,MaxPixelPerWeight);
//debugln(['TLvlGraph.ScaleNodeDrawSizes PixelPerWeight=',PixelPerWeight]);
SetAllNodeDrawSizes(PixelPerWeight,SmallestWeight);
end;
procedure TLvlGraph.SetAllNodeDrawSizes(PixelPerWeight: single;
MinWeight: single);
var
i: Integer;
Node: TLvlGraphNode;
begin
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
Node.DrawSize:=round(Max(MinWeight,Max(Node.InWeight,Node.OutWeight))*PixelPerWeight+0.5);
end;
end;
procedure TLvlGraph.MarkBackEdges;
var
i: Integer;
Node: TLvlGraphNode;
j: Integer;
Edge: TLvlGraphEdge;
begin
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
for j:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[j];
Edge.fBackEdge:=Edge.IsBackEdge;
end;
end;
end;
procedure TLvlGraph.MinimizeCrossings;
begin
LvlGraphMinimizeCrossings(Self);
end;
procedure TLvlGraph.MinimizeOverlappings(MinPos: integer;
NodeGapAbove: integer; NodeGapBelow: integer; aLevel: integer);
var
i: Integer;
Level: TLvlGraphLevel;
Node: TLvlGraphNode;
Last: TLvlGraphNode;
begin
if aLevel<0 then begin
for i:=0 to LevelCount-1 do
MinimizeOverlappings(MinPos,NodeGapAbove,NodeGapBelow,i);
end else begin
Level:=Levels[aLevel];
Last:=nil;
for i:=0 to Level.Count-1 do begin
Node:=Level[i];
if Last=nil then
Node.DrawPosition:=MinPos+NodeGapAbove
else if Node.Visible then
Node.DrawPosition:=Max(Node.DrawPosition,Last.DrawPositionEnd+NodeGapBelow+NodeGapAbove)
else
Node.DrawPosition:=Max(Node.DrawPosition,Last.DrawPositionEnd+1);
//debugln(['TLvlGraph.MinimizeOverlappings Level=',aLevel,' Node=',Node.Caption,' Size=',Node.DrawSize,' Position=',Node.DrawPosition]);
Last:=Node;
end;
end;
end;
procedure TLvlGraph.SetColors(Palette: TLazCtrlPalette);
var
i: Integer;
begin
for i:=0 to NodeCount-1 do
Nodes[i].Color:=Palette[i];
end;
procedure TLvlGraph.WriteDebugReport(Msg: string);
var
l: Integer;
Level: TLvlGraphLevel;
i: Integer;
Node: TLvlGraphNode;
Edge: TLvlGraphEdge;
j: Integer;
begin
debugln([Msg,' NodeCount=',NodeCount,' LevelCount=',LevelCount]);
debugln([' Nodes:']);
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
dbgout([' ',i,'/',NodeCount,': "',Node.Caption,'" OutEdges:']);
for j:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[j];
dbgout('"',Edge.Target.Caption,'",');
end;
debugln;
end;
debugln([' Levels:']);
for l:=0 to LevelCount-1 do begin
dbgout([' Level: ',l,'/',LevelCount]);
Level:=Levels[l];
if l<>Level.Index then
debugln(['ERROR: l<>Level.Index=',Level.Index]);
dbgout(' ');
for i:=0 to Level.Count-1 do begin
dbgout('"',Level.Nodes[i].Caption,'",');
end;
debugln;
end;
end;
procedure TLvlGraph.ConsistencyCheck(WithBackEdge: boolean);
var
i: Integer;
Node: TLvlGraphNode;
j: Integer;
Edge: TLvlGraphEdge;
Level: TLvlGraphLevel;
begin
for i:=0 to LevelCount-1 do begin
Level:=Levels[i];
if Level.Index<>i then
raise Exception.Create('');
for j:=0 to Level.Count-1 do begin
Node:=Level.Nodes[j];
if Node.Level<>Level then
raise Exception.Create('');
if Level.IndexOf(Node)<j then
raise Exception.Create('');
end;
end;
for i:=0 to NodeCount-1 do begin
Node:=Nodes[i];
for j:=0 to Node.OutEdgeCount-1 do begin
Edge:=Node.OutEdges[j];
if Edge.Source<>Node then
raise Exception.Create('');
if Edge.Target.FInEdges.IndexOf(Edge)<0 then
raise Exception.Create('');
if WithBackEdge and (Edge.BackEdge<>Edge.IsBackEdge) then
raise Exception.Create('Edge.BackEdge '+Edge.AsString+' Edge.BackEdge='+dbgs(Edge.BackEdge)+' Edge.IsBackEdge='+dbgs(Edge.IsBackEdge)+' Source.Index='+dbgs(Edge.Source.Level.Index)+' Target.Index='+dbgs(Edge.Target.Level.Index));
end;
for j:=0 to Node.InEdgeCount-1 do begin
Edge:=Node.InEdges[j];
if Edge.Target<>Node then
raise Exception.Create('');
if Edge.Source.FOutEdges.IndexOf(Edge)<0 then
raise Exception.Create('');
end;
if Node.Level.fNodes.IndexOf(Node)<0 then
raise Exception.Create('');
end;
end;
{ TLvlGraphEdge }
procedure TLvlGraphEdge.SetWeight(AValue: single);
var
Diff: single;
begin
if AValue<0.0 then AValue:=0.0;
if FWeight=AValue then Exit;
Diff:=AValue-FWeight;
Source.FOutWeight+=Diff;
Target.FInWeight+=Diff;
FWeight:=AValue;
Source.Invalidate;
end;
procedure TLvlGraphEdge.SetHighlighted(AValue: boolean);
begin
if FHighlighted=AValue then Exit;
FHighlighted:=AValue;
Source.Invalidate;
end;
constructor TLvlGraphEdge.Create(TheSource: TLvlGraphNode;
TheTarget: TLvlGraphNode);
begin
FSource:=TheSource;
FTarget:=TheTarget;
Source.FOutEdges.Add(Self);
Target.FInEdges.Add(Self);
end;
destructor TLvlGraphEdge.Destroy;
var
OldGraph: TLvlGraph;
begin
OldGraph:=Source.Graph;
Source.FOutEdges.Remove(Self);
Target.FInEdges.Remove(Self);
FSource:=nil;
FTarget:=nil;
if OldGraph<>nil then
OldGraph.StructureChanged(Self,opRemove);
inherited Destroy;
end;
function TLvlGraphEdge.IsBackEdge: boolean;
begin
Result:=Source.Level.Index>=Target.Level.Index;
end;
function TLvlGraphEdge.GetVisibleSourceNodes: TLvlGraphNodeArray;
// return all visible nodes connected in Source direction
begin
Result:=NodeAVLTreeToNodeArray(GetVisibleSourceNodesAsAVLTree,true,true);
end;
function TLvlGraphEdge.GetVisibleSourceNodesAsAVLTree: TAvlTree;
// return all visible nodes connected in Source direction
var
Visited: TAvlTree;
procedure Search(Node: TLvlGraphNode);
var
i: Integer;
begin
if Node=nil then exit;
if Visited.Find(Node)<>nil then exit;
Visited.Add(Node);
if Node.Visible then begin
Result.Add(Node);
end else begin
for i:=0 to Node.InEdgeCount-1 do
Search(Node.InEdges[i].Source);
end;
end;
begin
Result:=TAvlTree.Create;
Visited:=TAvlTree.Create;
try
Search(Source);
finally
Visited.Free;
end;
end;
function TLvlGraphEdge.GetVisibleTargetNodes: TLvlGraphNodeArray;
// return all visible nodes connected in Target direction
begin
Result:=NodeAVLTreeToNodeArray(GetVisibleTargetNodesAsAVLTree,true,true);
end;
function TLvlGraphEdge.GetVisibleTargetNodesAsAVLTree: TAvlTree;
// return all visible nodes connected in Target direction
var
Visited: TAvlTree;
procedure Search(Node: TLvlGraphNode);
var
i: Integer;
begin
if Node=nil then exit;
if Visited.Find(Node)<>nil then exit;
Visited.Add(Node);
if Node.Visible then begin
Result.Add(Node);
end else begin
for i:=0 to Node.OutEdgeCount-1 do
Search(Node.OutEdges[i].Target);
end;
end;
begin
Result:=TAvlTree.Create;
Visited:=TAvlTree.Create;
try
Search(Source);
finally
Visited.Free;
end;
end;
function TLvlGraphEdge.AsString: string;
begin
Result:='('+Source.Caption+'->'+Target.Caption+')';
end;
{ TLvlGraphNode }
function TLvlGraphNode.InEdgeCount: integer;
begin
Result:=FInEdges.Count;
end;
function TLvlGraphNode.GetInEdges(Index: integer): TLvlGraphEdge;
begin
Result:=TLvlGraphEdge(FInEdges[Index]);
end;
function TLvlGraphNode.GetIndexInLevel: integer;
begin
if Level=nil then exit(-1);
Result:=Level.IndexOf(Self);
end;
function TLvlGraphNode.GetOutEdges(Index: integer): TLvlGraphEdge;
begin
Result:=TLvlGraphEdge(FOutEdges[Index]);
end;
procedure TLvlGraphNode.SetCaption(AValue: string);
begin
if FCaption=AValue then Exit;
FCaption:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.SetColor(AValue: TFPColor);
begin
if FColor=AValue then Exit;
FColor:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.OnLevelDestroy;
begin
if Level.Index>0 then
Level:=Graph.Levels[0]
else if Graph.LevelCount>1 then
Level:=Graph.Levels[1]
else
fLevel:=nil;
end;
procedure TLvlGraphNode.SetDrawSize(AValue: integer);
begin
if FDrawSize=AValue then Exit;
FDrawSize:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.SetImageEffect(AValue: TGraphicsDrawEffect);
begin
if FImageEffect=AValue then Exit;
FImageEffect:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.SetImageIndex(AValue: integer);
begin
if FImageIndex=AValue then Exit;
FImageIndex:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.SetIndexInLevel(AValue: integer);
begin
Level.MoveNode(Self,AValue);
end;
procedure TLvlGraphNode.SetLevel(AValue: TLvlGraphLevel);
begin
if AValue=nil then
raise Exception.Create('node needs a level');
if AValue.Graph<>Graph then
raise Exception.Create('wrong graph');
if FLevel=AValue then Exit;
if FLevel<>nil then
UnbindLevel;
FLevel:=AValue;
FLevel.fNodes.Add(Self);
end;
procedure TLvlGraphNode.SetOverlayIndex(AValue: integer);
begin
if FOverlayIndex=AValue then Exit;
FOverlayIndex:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.SetSelected(AValue: boolean);
procedure Unselect;
begin
if FPrevSelected<>nil then
FPrevSelected.FNextSelected:=FNextSelected
else
Graph.FFirstSelected:=FNextSelected;
if FNextSelected<>nil then
FNextSelected.FPrevSelected:=FPrevSelected
else
Graph.FLastSelected:=FPrevSelected;
FNextSelected:=nil;
FPrevSelected:=nil;
end;
procedure Select;
begin
FPrevSelected:=Graph.LastSelected;
if FPrevSelected<>nil then
FPrevSelected.FNextSelected:=Self
else
Graph.FFirstSelected:=Self;
Graph.FLastSelected:=Self;
end;
begin
if FSelected=AValue then begin
if Graph=nil then exit;
if not FSelected then exit;
if Graph.LastSelected=Self then exit;
// make this node the last selected
Unselect;
Select;
SelectionChanged;
exit;
end;
// change Selected
FSelected:=AValue;
if Graph<>nil then begin
if Selected then begin
Select;
end else begin
Unselect;
end;
end;
SelectionChanged;
end;
procedure TLvlGraphNode.SetVisible(AValue: boolean);
begin
if FVisible=AValue then Exit;
FVisible:=AValue;
Invalidate;
end;
procedure TLvlGraphNode.UnbindLevel;
begin
if FLevel<>nil then
FLevel.fNodes.Remove(Self);
end;
procedure TLvlGraphNode.SelectionChanged;
begin
if Graph<>nil then
Graph.SelectionChanged;
end;
procedure TLvlGraphNode.Invalidate;
begin
if Graph<>nil then
Graph.Invalidate;
end;
constructor TLvlGraphNode.Create(TheGraph: TLvlGraph; TheCaption: string;
TheLevel: TLvlGraphLevel);
begin
FGraph:=TheGraph;
FCaption:=TheCaption;
FInEdges:=TFPList.Create;
FOutEdges:=TFPList.Create;
FDrawSize:=1;
FVisible:=true;
FImageIndex:=-1;
FOverlayIndex:=-1;
FImageEffect:=DefaultLvlGraphNodeImageEffect;
Level:=TheLevel;
end;
destructor TLvlGraphNode.Destroy;
begin
Selected:=false;
Clear;
UnbindLevel;
if Graph<>nil then
Graph.InternalRemoveNode(Self);
FreeAndNil(FInEdges);
FreeAndNil(FOutEdges);
inherited Destroy;
end;
procedure TLvlGraphNode.Clear;
begin
while InEdgeCount>0 do
InEdges[InEdgeCount-1].Free;
while OutEdgeCount>0 do
OutEdges[OutEdgeCount-1].Free;
end;
function TLvlGraphNode.IndexOfInEdge(Source: TLvlGraphNode): integer;
begin
for Result:=0 to InEdgeCount-1 do
if InEdges[Result].Source=Source then exit;
Result:=-1;
end;
function TLvlGraphNode.FindInEdge(Source: TLvlGraphNode): TLvlGraphEdge;
var
i: Integer;
begin
i:=IndexOfInEdge(Source);
if i>=0 then
Result:=InEdges[i]
else
Result:=nil;
end;
function TLvlGraphNode.IndexOfOutEdge(Target: TLvlGraphNode): integer;
begin
for Result:=0 to OutEdgeCount-1 do
if OutEdges[Result].Target=Target then exit;
Result:=-1;
end;
function TLvlGraphNode.FindOutEdge(Target: TLvlGraphNode): TLvlGraphEdge;
var
i: Integer;
begin
i:=IndexOfOutEdge(Target);
if i>=0 then
Result:=OutEdges[i]
else
Result:=nil;
end;
function TLvlGraphNode.OutEdgeCount: integer;
begin
Result:=FOutEdges.Count;
end;
function TLvlGraphNode.GetVisibleSourceNodes: TLvlGraphNodeArray;
// return all visible nodes connected in Source direction
begin
Result:=NodeAVLTreeToNodeArray(GetVisibleSourceNodesAsAVLTree,true,true);
end;
function TLvlGraphNode.GetVisibleSourceNodesAsAVLTree: TAvlTree;
// return all visible nodes connected in Source direction
procedure Search(Node: TLvlGraphNode);
var
i: Integer;
begin
if Node=nil then exit;
if Node.Visible then begin
Result.Add(Node);
end else begin
for i:=0 to Node.InEdgeCount-1 do
Search(Node.InEdges[i].Source);
end;
end;
var
i: Integer;
begin
Result:=TAvlTree.Create;
for i:=0 to InEdgeCount-1 do
Search(InEdges[i].Source);
end;
function TLvlGraphNode.GetVisibleTargetNodes: TLvlGraphNodeArray;
// return all visible nodes connected in Target direction
begin
Result:=NodeAVLTreeToNodeArray(GetVisibleTargetNodesAsAVLTree,true,true);
end;
function TLvlGraphNode.GetVisibleTargetNodesAsAVLTree: TAvlTree;
// return all visible nodes connected in Target direction
var
Visited: TAvlTree;
procedure Search(Node: TLvlGraphNode);
var
i: Integer;
begin
if Node=nil then exit;
if Visited.Find(Node)<>nil then exit;
Visited.Add(Node);
if Node.Visible then begin
Result.Add(Node);
end else begin
for i:=0 to Node.OutEdgeCount-1 do
Search(Node.OutEdges[i].Target);
end;
end;
var
i: Integer;
begin
Result:=TAvlTree.Create;
Visited:=TAvlTree.Create;
try
for i:=0 to OutEdgeCount-1 do
Search(OutEdges[i].Target);
finally
Visited.Free;
end;
end;
function TLvlGraphNode.DrawCenter: integer;
begin
Result:=DrawPosition+(DrawSize div 2);
end;
function TLvlGraphNode.DrawPositionEnd: integer;
begin
Result:=DrawPosition+DrawSize;
end;
end.
|