File size: 136,629 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 |
ShouldShowAssociateLightsShortcut = empty_func
local voxelSizeX = const.SlabSizeX or 0
local voxelSizeY = const.SlabSizeY or 0
local voxelSizeZ = const.SlabSizeZ or 0
local halfVoxelSizeX = voxelSizeX / 2
local halfVoxelSizeY = voxelSizeY / 2
local halfVoxelSizeZ = voxelSizeZ / 2
local InvalidZ = const.InvalidZ
local noneWallMat = const.SlabNoMaterial
if FirstLoad then
DestroyedSlabsThisTick = {}
RepairedSlabsThisTick = {}
DestroyedCOThisTick = {}
DestroyedObjectsThisTick = {}
end
SlabNeighbourMask = {
Top = 1,
Bottom = 1 << 1,
Left = 1 << 2,
Right = 1 << 3,
AllDestroyed = 1 | (1 << 1) | (1 << 2) | (1 << 3),
}
local function IsStructuralRow(r)
--return (r - 2 * (r/5)) % 3 == 0
return false
end
maskToOppositeMask = {
[SlabNeighbourMask.Left] = SlabNeighbourMask.Right,
[SlabNeighbourMask.Right] = SlabNeighbourMask.Left,
[SlabNeighbourMask.Top] = SlabNeighbourMask.Bottom,
[SlabNeighbourMask.Bottom] = SlabNeighbourMask.Top,
}
local invertDiagEntMask = {
[SlabNeighbourMask.Right | SlabNeighbourMask.Top] = SlabNeighbourMask.Left | SlabNeighbourMask.Bottom,
[SlabNeighbourMask.Left | SlabNeighbourMask.Top] = SlabNeighbourMask.Right | SlabNeighbourMask.Bottom,
[SlabNeighbourMask.Right | SlabNeighbourMask.Bottom] = SlabNeighbourMask.Left | SlabNeighbourMask.Top,
[SlabNeighbourMask.Left | SlabNeighbourMask.Bottom] = SlabNeighbourMask.Right | SlabNeighbourMask.Top,
}
local maskToCharWall = {
[SlabNeighbourMask.Left] = "R", --with mirror
[SlabNeighbourMask.Right] = "R",
[SlabNeighbourMask.Top] = "T",
[SlabNeighbourMask.Bottom] = "B",
[SlabNeighbourMask.Right | SlabNeighbourMask.Top] = "RT",
[SlabNeighbourMask.Left | SlabNeighbourMask.Top] = "RT", --mirror
[SlabNeighbourMask.Right | SlabNeighbourMask.Bottom] = "RB",
[SlabNeighbourMask.Left | SlabNeighbourMask.Bottom] = "RB", --mirror
}
local maskToCharFloor = {
[SlabNeighbourMask.Left] = "R", --with mirror
[SlabNeighbourMask.Right] = "R",
[SlabNeighbourMask.Top] = "B", --mirror
[SlabNeighbourMask.Bottom] = "B",
}
maskToString = {
[SlabNeighbourMask.Left] = "Left",
[SlabNeighbourMask.Right] = "Right",
[SlabNeighbourMask.Top] = "Top",
[SlabNeighbourMask.Bottom] = "Bottom",
}
local function manageAttachsAttaches(self, a, sc, suffix, variant, index, m1, m2)
variant = variant or self.variant
if variant == "IndoorIndoor" then
local atts = a:GetAttaches() or empty_table
local a1 = atts[1] or PlaceObject("Object")
local a2 = atts[2] or PlaceObject("Object")
if self:GetGameFlags(const.gofPermanent) ~= 0 then
a1:SetGameFlags(const.gofPermanent)
a2:SetGameFlags(const.gofPermanent)
end
m2 = m2 or self.indoor_material_1
m1 = m1 or self.indoor_material_2
local e1 = self:ComposeBrokenDecInteriorAttachName(sc, suffix, m1, index)
local e2 = self:ComposeBrokenDecInteriorAttachName(sc, suffix, m2, (index or 0) + 2659)
if not IsValidEntity(e1) then
self:ReportMissingBrokenDecInteriorAttach(e1)
else
a1:ChangeEntity(e1)
end
if not IsValidEntity(e2) then
self:ReportMissingBrokenDecInteriorAttach(e2)
else
a2:ChangeEntity(e2)
end
a:Attach(a1)
a1:SetAttachAngle(0)
a1:SetMirrored(false)
a:Attach(a2)
a2:SetAttachAngle(180*60)
a2:SetMirrored(true)
elseif variant == "OutdoorIndoor" then
local atts = a:GetAttaches() or empty_table
local a1 = atts[1] or PlaceObject("Object")
for i = 2, #atts do
DoneObject(atts[i])
end
if self:GetGameFlags(const.gofPermanent) ~= 0 then
a1:SetGameFlags(const.gofPermanent)
end
m1 = m1 or self.indoor_material_1
local e1 = self:ComposeBrokenDecInteriorAttachName(sc, suffix, m1, index)
if not IsValidEntity(e1) then
self:ReportMissingBrokenDecInteriorAttach(e1)
else
a1:ChangeEntity(e1)
end
a:Attach(a1)
a1:SetAttachAngle(180*60)
a1:SetMirrored(true)
else
a:DestroyAttaches()
end
end
function GetDestroyedSlabAttachId(sideFlag, offset)
return xxhash(sideFlag, offset)
end
DefineClass("DestroyableFloorSlab", "Slab")
DefineClass.DestroyedSlabAttach = {
__parents = { "Object", "EditorSubVariantObject" },
flags = { gofPermanent = false },
use_self_colors = false,
index = false,
--editor stuff
parent = false,
offset = false,
angle = false,
}
DestroyedAttachClass = "DestroyedSlabAttach"
function OnDestroyedAttachDeleted(o)
--common stub
end
function DestroyedSlabAttach:Destroy()
--this should only get called from editor when pressing shift+d on an attach when DestroyedAttachSelectionEnabled is true
--I find myself pressing shift+d instead of delete often hence this handling
OnDestroyedAttachDeleted(self)
DoneObject(self)
end
function DestroyedSlabAttach:GetId()
return GetDestroyedSlabAttachId(self:GetSide(), self:GetParent() and self:GetAttachOffset() or self.offset)
end
function DestroyedSlabAttach:GetSide()
local p = self:GetParent() or self.parent
assert(p)
local da = p.destroyed_attaches
if da.Top == self or table.find(da.Top, self) then
return SlabNeighbourMask.Top
elseif da.Bottom == self or table.find(da.Bottom, self) then
return SlabNeighbourMask.Bottom
elseif da.Right == self or table.find(da.Right, self) then
return SlabNeighbourMask.Right
else
return SlabNeighbourMask.Left
end
end
function DestroyedSlabAttach:ManageAttaches()
local p = self:GetParent() or self.parent
local sideFlag = self:GetSide()
local sc = p:MaskToChar(maskToOppositeMask[sideFlag]) --art is reversed
local curE = self:GetEntity()
local suffix = string.match(curE, "%d+$")
local variant = p.variant
if IsKindOf(p, "SlabWallObject") then
--slabwallobjs dont have variants
local slabAtAttchPos = MapGetFirst(self, 0, "WallSlab", function(o)
return o.invisible_reasons and not o.invisible_reasons["suppressed"]
end)
if slabAtAttchPos then
variant = slabAtAttchPos.variant
end
end
manageAttachsAttaches(p, self, sc, suffix, variant, self.index)
end
function DestroyedSlabAttach:CycleEntity(delta)
if EditorSubVariantObject.CycleEntity(self, delta) then
self:ManageAttaches()
local p = self.parent or self:GetParent()
local id = self:GetId()
p.da_subvariants = p.da_subvariants or {}
p.da_subvariants[id] = self.subvariant
end
end
--WallInt_Colonial_Wall_BrokenDec_R_01
function Slab:ComposeBrokenDecInteriorAttachName(side, suffix, material, index)
material = material or self.material
local svd = (Presets.SlabPreset.SlabIndoorMaterials or empty_table)[material]
local subvarId = string.format("broken_attach_attaches_%s_subvariants", string.lower(side))
local subvariants, total = GetMaterialSubvariants(svd, subvarId)
if subvariants and #subvariants > 0 then
return GetRandomSubvariantEntity(self:GetSeed(total, 7001 + (index or 0)), subvariants, function(suffix, material, side)
return string.format("WallInt_%s_Wall_BrokenDec_%s_%s", material, side, suffix)
end, material, side)
else
return string.format("WallInt_%s_Wall_BrokenDec_%s_%s", material, side, suffix)
end
end
function Slab:GetBrokenDecAttachesBaseString()
return "broken_attaches_%s_subvariants"
end
local roofCompToDecSubvariantArr = {
Eave = "broken_attaches_eave_%s_subvariants",
Rake = "broken_attaches_rake_%s_subvariants",
Ridge = "broken_attaches_ridge_%s_subvariants",
Gable = "broken_attaches_gable_%s_subvariants",
}
function RoofSlab:GetBrokenDecAttachesBaseString()
return roofCompToDecSubvariantArr[self.roof_comp] or Slab.GetBrokenDecAttachesBaseString()
end
function GetRandomSubvariantEntityAvoidSubvariant(random, subvariants, avoidSubvariant, get_ent_func, ...)
if not avoidSubvariant then
return GetRandomSubvariantEntity(random, subvariants, get_ent_func, ...)
end
local t = 0
for i = 1, #subvariants do
t = t + subvariants[i].chance
if i == #subvariants or t > random then
local suff = subvariants[i].suffix
if suff == avoidSubvariant then
if i < #subvariants then
i = i + 1
elseif i > 1 then
i = i - 1
end
end
local ret = get_ent_func(subvariants[i].suffix, ...)
while i > 1 and not IsValidEntity(ret) do
--fallback to first valid ent in the set
i = i - 1
ret = (subvariants[i].chance > 0 or i == 1) and get_ent_func(subvariants[i].suffix, ...) or false
end
return ret, subvariants[i].suffix
end
end
end
--WallExt_Colonial_Wall_ExEx_BrokenDec_R_01
function Slab:ComposeBrokenDecName(side, seedConst, subvariant, avoidSubvariant) --sides are R, T, B
local svd = self:GetMaterialPreset()
local str = self:GetBrokenDecAttachesBaseString()
local subvarId = string.format(str, string.lower(side))
local subvariants, total = GetMaterialSubvariants(svd, subvarId)
local e = self:GetBaseEntityName()
if not subvariant and subvariants and #subvariants > 0 then
return GetRandomSubvariantEntityAvoidSubvariant(self:GetSeed(total, seedConst or 0), subvariants, avoidSubvariant, function(suffix, e, side)
return string.format("%s_BrokenDec_%s_%s", e, side, suffix)
end, e, side)
elseif subvariant then
local subvarStr = subvariant >= 10 and tostring(subvariant) or string.format("0%s", tostring(subvariant))
return string.format("%s_BrokenDec_%s_%s", e, side, subvarStr), subvarStr
else
return string.format("%s_BrokenDec_%s_01", e, side), "01"
end
end
function RoofPlaneSlab:ComposeBrokenDecName(side, ...)
if side == "T" or side == "B" then
--flip t and b when flipped by angle
local a = self:GetAngle() / 60
if a == 180 or a == 270 then
side = side == "T" and "B" or "T"
end
end
return Slab.ComposeBrokenDecName(self, side, ...)
end
function RoofPlaneSlab:ComposeBrokenEntityName(side)
if side == "T" or side == "B" then
--flip t and b when flipped by angle
local a = self:GetAngle() / 60
if a == 180 or a == 270 then
side = side == "T" and "B" or "T"
end
end
return Slab.ComposeBrokenEntityName(self, side)
end
function SlabWallObject:ComposeBrokenDecName(side, nbrvar, count, subvariant, material) --sides are R, T, B
local material_list = Presets.SlabPreset.SlabMaterials
material = material or self.material
local svd = material_list and material_list[material]
local subvarId = string.format("broken_attaches_%s_subvariants", string.lower(side))
local subvariants, total = GetMaterialSubvariants(svd, subvarId)
local e = string.format("WallExt_%s_Wall_%s", material, variantToVariantName[nbrvar])
if not subvariant and subvariants and #subvariants > 0 then
return GetRandomSubvariantEntity(self:GetSeed(total, count), subvariants, function(suffix, e, side)
return string.format("%s_BrokenDec_%s_%s", e, side, suffix)
end, e, side)
elseif subvariant then
local subvarStr = subvariant >= 10 and tostring(subvariant) or string.format("0%s", tostring(subvariant))
return string.format("%s_BrokenDec_%s_%s", e, side, subvarStr), subvarStr
else
return string.format("%s_BrokenDec_%s_01", e, side), "01"
end
end
--WallExt_Colonial_Wall_ExEx_Broken_R_01
function Slab:ComposeBrokenEntityName(side) --sides are R, T, B
local svd = self:GetMaterialPreset()
local subvarId = string.format("broken_%s_subvariants", string.lower(side))
local subvariants, total = GetMaterialSubvariants(svd, subvarId)
local e = self:GetBaseEntityName()
if subvariants and #subvariants > 0 then
if self.subvariant ~= -1 then --user selected subvar
local digitStr = self:GetSubvariantDigitStr(subvariants)
return string.format("%s_Broken_%s_%s", e, side, digitStr)
else
return GetRandomSubvariantEntity(self:GetSeed(total), subvariants, function(suffix, e, side)
return string.format("%s_Broken_%s_%s", e, side, suffix)
end, e, side)
end
else
local digitStr = self:GetSubvariantDigitStr()
return string.format("%s_Broken_%s_%s", e, side, digitStr)
end
end
--WallExt_Colonial_Wall_ExEx_Damaged_01
function Slab:ComposeDamagedEntityName()
local svd = self:GetMaterialPreset()
local subvariants, total = GetMaterialSubvariants(svd, "damaged_subvariants")
local e = self:GetBaseEntityName()
if subvariants and #subvariants > 0 then
if self.subvariant ~= -1 then --user selected subvar
local digitStr = self:GetSubvariantDigitStr(subvariants)
return string.format("%s_Damaged_%s", e, digitStr)
else
return GetRandomSubvariantEntity(self:GetSeed(total), subvariants, function(suffix, e)
return string.format("%s_Damaged_%s", e, suffix)
end, e)
end
else
local digitStr = self:GetSubvariantDigitStr()
return string.format("%s_Damaged_%s", e, digitStr)
end
end
--WallInt_Planks_Wall_Broken_R_02 --maybe.. who knows..
function Slab:ComposeBrokenIndoorMaterialEntityName(mat)
local svd = (Presets.SlabPreset.SlabIndoorMaterials or empty_table)[mat]
local side = maskToCharWall[self.diagonal_ent_mask ~= 0 and invertDiagEntMask[self.diagonal_ent_mask] or self.destroyed_entity_side]
local subvarId = string.format("broken_%s_subvariants", string.lower(side))
local subvariants, total = GetMaterialSubvariants(svd, subvarId)
if subvariants and #subvariants > 0 then
return GetRandomSubvariantEntity(self:GetSeed(total), subvariants, function(suffix, mat, side)
return string.format("WallInt_%s_Wall_Broken_%s_%s", mat, side, suffix)
end, mat, side)
else
return string.format("WallInt_%s_Wall_Broken_%s_01", mat, side)
end
end
function Slab:MaskToChar(m)
return maskToCharWall[m]
end
function DestroyableFloorSlab:MaskToChar(m)
return maskToCharFloor[m]
end
local maskToCharRake = {
[SlabNeighbourMask.Left] = "B",
[SlabNeighbourMask.Right] = "T",
}
function RoofEdgeSlab:MaskToChar(m)
if self.roof_comp == "Rake" then
return maskToCharRake[m]
end
return maskToCharWall[m]
end
function Slab:ShouldAddAttachOnNoNbr(sideFlag)
return false
end
function Slab:IsRoofPlane()
return false
end
function RoofPlaneSlab:IsRoofPlane()
return true
end
function Slab:UpdateDestroyedState()
if not self.use_replace_ent_destruction then
return self:UpdateDestroyedStateInternal()
else
return self:UpdateDestroyedStateInternal_ReplaceEntity()
end
end
function Slab:UpdateDestroyedStateInternal_ReplaceEntity()
local e = self:ComposeDamagedEntityName()
if IsValidEntity(e) then
if e ~= self:GetEntity() then
self.destroyed_entity_side = 0
self.destroyed_entity = false
self.diagonal_ent_mask = 0
self:ChangeEntity(e)
self:SetEnumFlags(const.efCollision + const.efApplyToGrids)
self:ResetVisibilityFlags()
collision.SetAllowedMask(self, self.collision_mask or 0)
end
else
self:ReportMissingDamagedEntity(e)
end
return true
end
function WallSlab:ShouldAddAttachOnNoNbr(sideFlag, isStructuralRow, osf)
osf = osf or maskToOppositeMask[sideFlag]
local cnbr = self:GetNeighbourCorner(sideFlag)
if not cnbr or cnbr.is_destroyed then
--check for windows
local x, y, z = self:GetPosXYZ()
local nbr = self:GetNeighbour(sideFlag, nil, 0)
if not nbr or not nbr.wall_obj then --window on this side, use attach
return false
end
end
return true
end
function DestroyableFloorSlab:ShouldAddAttachOnNoNbr(sideFlag)
return self:IsStructuralRow(sideFlag)
end
function ShouldFlipSideFlag(sideFlag, nbr, myAngle, me)
--if its top or bot, same angle as me or a floor take the opposite side flag, else same side
return ((sideFlag & 12) == 0) or nbr:GetAngle() == myAngle or IsKindOfClasses(nbr, "DestroyableFloorSlab", "RoomCorner") or (me and IsKindOf(me, "RoomCorner"))
end
function GetNeigbhourSideFlagTowardMe(sideFlag, nbr, self)
local a = self:GetAngle()
if self:IsRoofPlane() then
local ha = nbr:GetAngle()
if (abs(a - ha) / 60) % 180 == 90 then
return 0
end
end
return ShouldFlipSideFlag(sideFlag, nbr, a, self)
and maskToOppositeMask[sideFlag] or sideFlag
end
local sideToSeedConst = {
[SlabNeighbourMask.Left] = 0,
[SlabNeighbourMask.Right] = 181,
[SlabNeighbourMask.Top] = 0,
[SlabNeighbourMask.Bottom] = 83,
}
local function processSideHelper(self, da, sideFlag, mask)
local ss = maskToString[sideFlag]
local osf = maskToOppositeMask[sideFlag]
local hasDestroyedNbr = (mask & sideFlag) == sideFlag
local a = self:GetAngle()
if self.is_destroyed then
::begin::
local isStructuralRow = self:IsStructuralRow(sideFlag)
if (not hasDestroyedNbr or isStructuralRow) then --has a non destroyed nbr on this side (or empty space or corner)
local attId = GetDestroyedSlabAttachId(sideFlag, point30)
local forcedSubvariant = self.da_subvariants and self.da_subvariants[attId] or false
local addAttch = forcedSubvariant ~= 0
local nbrs = self:GetNeighbour(sideFlag, "all")
local firstNbr = IsValid(nbrs) and nbrs or type(nbrs) == "table" and nbrs[1]
if addAttch then
if not IsValid(firstNbr) then
addAttch = self:ShouldAddAttachOnNoNbr(sideFlag, isStructuralRow, osf)
else
local isRoofPlane = self:IsRoofPlane()
local destroyedNbrs = 0
local function processNbr(nbr)
if nbr.is_destroyed then
destroyedNbrs = destroyedNbrs + 1
end
local ha = nbr:GetAngle()
if not hasDestroyedNbr and not nbr.use_replace_ent_destruction and
((a == ha or sideFlag < 4) and (nbr.destroyed_entity_side & osf) == osf or --same orientation or top/bot and opposite side
a ~= ha and sideFlag >= 4 and (nbr.destroyed_entity_side & sideFlag) == sideFlag) or --diff orientation and left/right and same side
(isRoofPlane and #nbrs == 1 and (abs(a - ha)/60) % 180 ~= 0) then
--nbr uses ent towards us
addAttch = false
end
end
if IsValid(nbrs) then
processNbr(nbrs)
elseif type(nbrs) == "table" then
for i = 1, #nbrs do
processNbr(nbrs[i])
if not addAttch then
break
end
end
end
if addAttch and destroyedNbrs > 0 then
--fallback fix for when .destroyed_neighbours is not updated with real nbr state
--nbr failed to tweak our state flags, but is destroyed
--probably a different room that is aligned with gaps to us
--so what we do is update the flags and reset the current procedure
self.destroyed_neighbours = self.destroyed_neighbours | sideFlag
mask = self.destroyed_neighbours
hasDestroyedNbr = true
goto begin
end
end
end
if addAttch then
local sc = self:MaskToChar(osf)
local avoidSubviariant = nil
if not forcedSubvariant and sideFlag == SlabNeighbourMask.Right then
local ssc = maskToString[osf]
if da[ssc] then
local ose = da[ssc]:GetEntity()
avoidSubviariant = string.match(ose, "%d+$")
end
end
local e, suffix = self:ComposeBrokenDecName(sc, sideToSeedConst[sideFlag], forcedSubvariant, avoidSubviariant)
if not da[ss] then
local a = PlaceObject(DestroyedAttachClass)
if self:GetGameFlags(const.gofPermanent) ~= 0 then
a:SetGameFlags(const.gofPermanent)
end
if not IsValidEntity(e) then
self:ReportMissingBrokenDec(e)
a:ChangeEntity("InvisibleObject", "idle")
else
a:ChangeEntity(e)
end
da[ss] = a
else
--attch already exists, refresh ent
if e and e ~= da[ss]:GetEntity() then
if not IsValidEntity(e) then
self:ReportMissingBrokenDec(e)
da[ss]:ChangeEntity("InvisibleObject", "idle")
else
da[ss]:ChangeEntity(e)
end
end
end
--manage attach's interior attaches
local a = da[ss]
collision.SetAllowedMask(a, 0)
manageAttachsAttaches(self, a, sc, suffix)
elseif da[ss] then
--attach exists but it shouldn't
DoneObject(da[ss])
da[ss] = false
end
elseif not isStructuralRow then
--nbr is destroyed and not structural row
DoneObject(da[ss])
da[ss] = false
local nbr = self:GetNeighbour(sideFlag)
if IsValid(nbr) then
if ((sideFlag & 12) == 0) or nbr:GetAngle() == a then
nbr:DestroyDestroyedAttach(osf, self)
else
nbr:DestroyDestroyedAttach(sideFlag, self)
end
end
end
else --not destroyed
local nbr
local destroyedNbrSideIsFree = true
if hasDestroyedNbr then
nbr = self:GetNeighbour(sideFlag)
if IsValid(nbr) then
if IsKindOf(nbr, "SlabWallObject") then
--in this case we only care if it's on top and its broken
local _, state = nbr:GetDestroyedEntityAndState() --it will pick ent in this pass so we can't check directly
destroyedNbrSideIsFree = not state:starts_with("broken") and (sideFlag ~= 1 or self.force_destroyed_entity == sideFlag)
else
destroyedNbrSideIsFree = (nbr.diagonal_ent_mask & osf) == 0
end
end
end
if hasDestroyedNbr and not self.destroyed_entity then --has a destroyed nbr on this side and hasn't picked ent yet
--we can set a special entity facing the destruction
--if we do, we got to make sure nbr doesn't have an attch there
if self.force_no_destroyed_entity then
return
end
local random = -1
local isStackable = self.class == "RoofWallSlab"
local stack
if self.force_destroyed_entity then
if self.force_destroyed_entity == sideFlag then
random = 100
else
random = 0
end
else
if isStackable then
stack = MapGet(self, 0, self.class, nil, const.efVisible)
for _, obj in ipairs(stack) do
random = Max(obj:GetSeed(100, 102317), random)
end
else
random = self:GetSeed(100, 102317)
end
end
if destroyedNbrSideIsFree and random >= 50 then
if IsValid(nbr) then
if ShouldFlipSideFlag(sideFlag, nbr, a) then
nbr:DestroyDestroyedAttach(osf, self)
else
nbr:DestroyDestroyedAttach(sideFlag, self)
end
else
--somebody flagged this direction as having a destroyed nbr, yet it's missing.
--last time it was because invisible/suppressed slabs were getting destroyed.
--assert(false) --well that sux.
end
local sc = self:MaskToChar(sideFlag)
self:UnlockSubvariantReversible()
self.destroyed_entity = self:ComposeBrokenEntityName(sc)
if not IsValidEntity(self.destroyed_entity) then
self:ReportMissingBrokenEntity(self.destroyed_entity)
self.destroyed_entity = nil
return
end
self.destroyed_entity_side = sideFlag
for i = 1, #(stack or "") do
if stack[i] ~= self then
stack[i].destroyed_entity_side = (sideFlag & 12) ~= 0 and a ~= stack[i]:GetAngle() and osf or sideFlag
stack[i].destroyed_entity = self.destroyed_entity
stack[i]:UnlockSubvariantReversible()
end
end
if IsValid(nbr) then
nbr:UpdateDecorationsDestroyedState()
end
end
elseif not hasDestroyedNbr and (self.destroyed_entity_side & sideFlag) == sideFlag then
--nbr got repaired
self.destroyed_entity_side = 0
self.destroyed_entity = false
self:RestorePreDestructionSubvariant()
elseif hasDestroyedNbr and (self.destroyed_entity_side & sideFlag) == sideFlag then
if destroyedNbrSideIsFree then
--status quoe, refresh ent
local sc = self:MaskToChar(sideFlag)
self.destroyed_entity = self:ComposeBrokenEntityName(sc)
if not IsValidEntity(self.destroyed_entity) then
self:ReportMissingBrokenEntity(self.destroyed_entity)
self.destroyed_entity = nil
return
end
else
--nbr picked a diag ent on this side, clean up
self.destroyed_entity_side = 0
self.destroyed_entity = false
self:RestorePreDestructionSubvariant()
end
end
end
end
function Slab:ForEachStackedVisible(func, ...)
MapForEach(self, 0, self.class, nil, const.efVisible, function(o, func, ...)
func(o, ...)
end, func, ...)
end
function Slab:ForEachNeighbour(sideFlag, func, ...)
local nbrs = self:GetNeighbour(sideFlag, "all")
if IsValid(nbrs) then
func(nbrs, ...)
else
for i = 1, #(nbrs or "") do
func(nbrs[i], ...)
end
end
end
function Slab:SetDestroyedEntityAndFlags()
self.destroyed_entity_side = 0
self.destroyed_entity = false
self.diagonal_ent_mask = 0
if self:GetEntity() ~= "InvisibleObject" then
self:ChangeEntity("InvisibleObject", "idle")
self.entity = "InvisibleObject" --needed for corners
end
self:ClearEnumFlags(const.efCollision + const.efApplyToGrids) --these dont get saved and need to be re-applied
end
function SlabWallObject:SetDestroyedEntityAndFlags()
local e = self:GetEntity()
local ne, state = self:GetDestroyedEntityAndState()
if e and e ~= "" and e ~= "InvisibleObject" then
if e ~= self.class then
print("once", "SlabWallObject non destroyed ent unrecoverable. Ent - " .. e .. " Cls - " .. self.class)
end
end
self.destroyed_entity_side = 0
self.destroyed_entity = false
self.diagonal_ent_mask = 0
if self:GetEntity() ~= ne or self:GetStateText() ~= state then
if ne == "InvisibleObject" then
--when going to inv obj for the first time kill light attaches
self:DestroyAttaches("ParSystem", "SpotLight")
end
self:ChangeEntity(ne, state)
self:SetState(state)
end
self:ClearEnumFlags(const.efCollision + const.efApplyToGrids) --these dont get saved and need to be re-applied
if self.is_destroyed and self:HasMember("pass_through_state") then
self.pass_through_state = "broken"
end
end
function RoofEdgeSlab:UpdateDestroyedStateInternal()
local mask = self.destroyed_neighbours
self.destroyed_attaches = self.destroyed_attaches or {Top = false, Bottom = false, Left = false, Right = false}
local da = self.destroyed_attaches
local isDestroyed = self.is_destroyed
if isDestroyed then
self:SetDestroyedEntityAndFlags()
else
return false --has only attaches so let non destroyed guys pick their regular ents
end
for i = 2, 3 do
processSideHelper(self, da, 1 << i, mask)
end
local isMirrored = self:GetMirrored()
local rc = self.roof_comp
if da.Right then
local ml = isMirrored
if rc == "Gable" or rc == "Eave" then
ml = not ml
end
da.Right:SetMirrored(ml)
self:Attach(da.Right)
end
if da.Left then
local ml = isMirrored
if rc == "Ridge" then
ml = not ml
end
da.Left:SetMirrored(ml)
self:Attach(da.Left)
end
self:RefreshColors()
self:SetWarped(self:GetWarped())
return true
end
function SlabWallObject:GetOffset(row)
return (row - self.width/2 - (self.width % 2 == 0 and 0 or 1))
end
function SlabWallObject:GetLeftOffset()
return self:GetOffset(1)
end
function SlabWallObject:GetRightOffset()
return self:GetOffset(self.width)
end
local SlabWallObjectBrokenDecAttachMaterials = {
Colonial = true,
}
local SlabWallObjectBrokenDecExceptionEnts = {
TallDoor_Colonial_Double_02 = true,
Window_Colonial_Single_01 = true,
WindowBig_Colonial_Single_03 = true,
WindowBig_Colonial_Single_04 = true,
WindowBig_Colonial_Single_05 = true,
WindowBig_Colonial_Double_02 = true,
}
function SlabWallObject:ForEachNeighbourOnAllSidesAndAroundCorners(func, ...)
local function iterate(nbrs, func, ...)
for j = 1, #(nbrs or "") do
if func(nbrs[j], ...) == "break" then
return true
end
end
end
for i = 0, 3 do
local sf = 1 << i
local nbrs = self:GetNeighbour(sf)
if iterate(nbrs, func, ...) then return end
if i >= 2 then --left or right
nbrs = self:GetNeighboursAroundCorner(sf)
if iterate(nbrs, func, ...) then return end
else
nbrs = self:GetNeighbourFloor(sf)
if iterate(nbrs, func, ...) then return end
end
end
end
function SlabWallObject:HasLiveNeighbour()
local ret = false
self:ForEachNeighbourOnAllSidesAndAroundCorners(function(nbr)
if not nbr.is_destroyed then
ret = true
return "break"
end
end)
return ret
end
function SlabWallObject:HasLiveNeighbourBelow()
local nbrs = self:GetNeighbour(SlabNeighbourMask.Bottom)
for i = 1, #(nbrs or "") do
if not nbrs[i].is_destroyed then
return true
end
end
return false
end
function SlabWallObject:HasLivingNeighbourOnTwoSidesOrBelow()
local left, right, top, bot = self:GetNeighbours()
local count = 0
local function test(arr)
for i = 1, #(arr or "") do
if not arr[i].is_destroyed then
return true
end
end
end
if test(bot) then return true end
if test(top) then count = count + 1 end
if test(left) then count = count + 1 end
if count >= 2 then return true end
if test(right) then count = count + 1 end
return count >= 2
end
function ComputeBrokenStateForObj(obj)
return "broken"
end
function SlabWallObject:GetDestroyedEntityAndState()
if not self:ShouldHaveBrokenDecAttaches() and self:HasState("broken") then
if self.width > 0 and self:HasLivingNeighbourOnTwoSidesOrBelow()
or self.width == 0 and self:HasLiveNeighbourBelow() then
local state = ComputeBrokenStateForObj(self)
return self:GetEntity(), state
end
end
return "InvisibleObject", "idle"
end
function SlabWallObject:ShouldHaveBrokenDecAttaches()
if not SlabWallObjectBrokenDecAttachMaterials[self.material] then return false end
local notDestroyedEnt = self.class
if SlabWallObjectBrokenDecExceptionEnts[notDestroyedEnt] then return false end
return true
end
local function DecSetDestroyedEnt(dec, e, de, destroyed_by)
if e ~= "InvisibleObject" then
assert(IsKindOf(dec, "Object"))
if not rawget(dec, "orig_decoration_ent") then
rawset(dec, "orig_decoration_ent", e)
end
if destroyed_by then
if not rawget(dec, "destroyed_by") then
rawset(dec, "destroyed_by", destroyed_by)
end
end
de = de or "InvisibleObject"
if not IsValidEntity(de) then
print("once", "Failed to find entity for broken decoration: " .. de)
else
dec:ChangeEntity(de)
end
end
end
local function DecRestoreOrigEnt(dec, e, repaired_by)
local destroyed_by = rawget(dec, "destroyed_by")
if destroyed_by ~= nil and repaired_by ~= destroyed_by then
return
end
local oe = rawget(dec, "orig_decoration_ent")
if oe ~= e then
dec:ChangeEntity(oe)
rawset(dec, "orig_decoration_ent", nil)
end
end
function SlabWallObject:UpdateDestroyedStateInternal()
--WINDOW/DOOR
local isDestroyed = self.is_destroyed
if isDestroyed then
self:SetDestroyedEntityAndFlags()
else
return false
end
self.destroyed_attaches = self.destroyed_attaches or {Top = {}, Bottom = {}, Left = {}, Right = {}}
local da = self.destroyed_attaches
local left, right, top, bottom = self:GetNeighbours()
local count = 0
local h = self.height
local leftOffset = self:GetLeftOffset()
local rightOffset = self:GetRightOffset()
local ma = self:GetAngle()
local mp = self:GetPos()
local side = self.side or slabAngleToDir[ma]
local isFlipped = side ~= slabAngleToDir[ma]
local flippedMultiplier = isFlipped and 1 or -1
local function addAttchObj(arr)
count = count + 1
local o = IsValid(arr[count]) and arr[count] or PlaceObject(DestroyedAttachClass)
if rawget(o, "use_self_colors") then
--wrong obj type
table.insert(arr, count, PlaceObject(DestroyedAttachClass))
o = arr[count]
end
if self:GetGameFlags(const.gofPermanent) ~= 0 then
o:SetGameFlags(const.gofPermanent)
end
arr[count] = o
o.index = count
return o
end
local function prepAttach(arr, sc, variant, sideString, subvariant, material)
local o = addAttchObj(arr)
local e, suffix = self:ComposeBrokenDecName(sc, variant, count, subvariant, material)
if not IsValidEntity(e) then
self:ReportMissingBrokenDec(e)
else
o:ChangeEntity(e)
end
collision.SetAllowedMask(o, 0)
self:Attach(o)
if sideString == "Right" then
o:SetMirrored(true)
else
o:SetMirrored(false)
end
return o, suffix
end
local function prepArgs(variant, mat, slabAtAttchPos)
local m1, m2
if slabAtAttchPos then
variant = slabAtAttchPos.variant
mat = slabAtAttchPos.material
m1 = variant == "IndoorIndoor" and slabAtAttchPos.indoor_material_2 or slabAtAttchPos.indoor_material_1
m2 = slabAtAttchPos.indoor_material_1
else
m1 = self.material
end
return variant, mat, m1, m2
end
local function processNbr(nbr, sideFlag, sideString)
if IsValid(nbr) then
local isLeftOrRight = (sideFlag & 12) ~= 0 --sideString == "Left" or sideString == "Right"
if IsKindOf(nbr, "SlabWallObject") then
--door or window nbr..
--this adds destroyed dec attaches in the areas where this destroyed window is adjacent with non destroyed windows
if not nbr.is_destroyed or (isLeftOrRight and self:IsStructuralRow(sideFlag)) then
--figure out attach pos and count
local c, oz, zs, oy, ys
if isLeftOrRight then
local hp = nbr:GetPos()
local zd = Max(hp:z() - mp:z(), 0)
local minz = mp:z() + zd
local maxz = Min((nbr.height - 1) * voxelSizeZ + hp:z(), (h - 1) * voxelSizeZ + mp:z())
c = (maxz - minz) / voxelSizeZ + 1
oz = zd
zs = voxelSizeZ
ys = 0
if sideString == "Left" then
oy = leftOffset * voxelSizeY * flippedMultiplier
else
oy = rightOffset * voxelSizeY * flippedMultiplier
end
else
zs = 0
ys = voxelSizeX
if sideString == "Top" then
oz = (h - 1) * voxelSizeZ
else
oz = 0
end
--ns - x
--we - y
local hp = nbr:GetPos()
local function calcHelper(ms, nbr, mpy, hpy)
local mlo = leftOffset * ms
local mly = mlo * voxelSizeX - halfVoxelSizeX * ms + mpy
local hlo = nbr:GetLeftOffset() * ms
local hly = hlo * voxelSizeX - halfVoxelSizeX * ms + hpy
local mro = rightOffset * ms
local mry = mro * voxelSizeX + halfVoxelSizeX * ms + mpy
local hro = nbr:GetRightOffset() * ms
local hry = hro * voxelSizeX + halfVoxelSizeX * ms + hpy
local miniy = Max(Min(mly, mry), Min(hly, hry))
local maxiy = Min(Max(mly, mry), Max(hly, hry))
c = (maxiy - miniy) / voxelSizeY
oy = (miniy + halfVoxelSizeY) - mpy
oy = oy * ms * flippedMultiplier
ys = ys * ms * flippedMultiplier
end
if side == "North" or side == "South" then
local ms = side == "North" and -1 or 1
calcHelper(ms, nbr, mp:x(), hp:x())
else
local ms = side == "East" and -1 or 1
calcHelper(ms, nbr, mp:y(), hp:y())
end
end
local osf = maskToOppositeMask[sideFlag]
local arr = da[sideString]
local sc = WallSlab.MaskToChar(self, osf)
for i = 1, c do
local attPos = point(0, oy + (i - 1) * ys, oz + (i - 1) * zs)
local id = GetDestroyedSlabAttachId(sideFlag, attPos)
local subvariant = self.da_subvariants and self.da_subvariants[id] or false
if subvariant ~= 0 then
local wAttPos = self:GetRelativePoint(attPos)
local slabAtAttchPos = MapGetFirst(wAttPos, 0, "WallSlab", function(o)
return o.invisible_reasons and not o.invisible_reasons["suppressed"]
end)
local variant, mat, m1, m2 = prepArgs("OutdoorIndoor", self.material, slabAtAttchPos)
local o, suffix = prepAttach(arr, sc, variant, sideString, subvariant, mat)
manageAttachsAttaches(self, o, sc, suffix, variant, count, m1, m2)
o:SetAttachOffset(attPos)
end
end
end
else --wall slab nbr
local osf = maskToOppositeMask[sideFlag]
if (not nbr.is_destroyed or (isLeftOrRight and self:IsStructuralRow(sideFlag)))
and ((not isLeftOrRight or nbr.side == side) and nbr.destroyed_entity_side ~= osf --top or bot or same orientation and osf
or isLeftOrRight and nbr.side ~= side and nbr.destroyed_entity_side ~= sideFlag) then --left or right and different orientation and sideFlag
local attPos, worldAttPos = self:GetDestroyedAttachOffset(sideFlag, nbr, mp)
local id = GetDestroyedSlabAttachId(sideFlag, attPos)
local subvariant = self.da_subvariants and self.da_subvariants[id] or false
if subvariant ~= 0 then
local slabAtAttchPos = MapGetFirst(worldAttPos, 0, "WallSlab", function(o)
return o.invisible_reasons and not o.invisible_reasons["suppressed"]
end)
local arr = da[sideString]
local sc = WallSlab.MaskToChar(self, osf)
local variant, mat, m1, m2 = prepArgs(false, false, slabAtAttchPos or nbr)
local o, suffix = prepAttach(arr, sc, variant, sideString, subvariant, mat)
local ad = abs(self:GetAngle() - nbr:GetAngle())
manageAttachsAttaches(self, o, sc, suffix, variant, count, m1, m2)
o:SetAttachOffset(attPos)
end
end
end
else
for i = 1, #(nbr or "") do
processNbr(nbr[i], sideFlag, sideString)
end
end
end
local function cleanup(arr)
for i = count + 1, #(arr or "") do
DoneObject(arr[i])
arr[i] = nil
end
count = 0
end
local function appendNbrs(t1, t2)
if IsValid(t1) then
if IsValid(t2) then
return {t1, t2}
elseif t2 then
return table.iappend({t1}, t2)
else
return t1
end
elseif t1 then
if IsValid(t2) then
table.insert(t1, t2)
return t1
elseif t2 then
return table.iappend(t1, t2)
else
return t1
end
else
return t2
end
end
if self:ShouldHaveBrokenDecAttaches() then
local lc = self:GetNeighbourCorner(SlabNeighbourMask.Left)
left = appendNbrs(left, lc)
local rc = self:GetNeighbourCorner(SlabNeighbourMask.Right)
right = appendNbrs(right, rc)
processNbr(left, SlabNeighbourMask.Left, "Left")
cleanup(da.Left)
processNbr(right, SlabNeighbourMask.Right, "Right")
cleanup(da.Right)
processNbr(top, SlabNeighbourMask.Top, "Top")
cleanup(da.Top)
processNbr(bottom, SlabNeighbourMask.Bottom, "Bottom")
cleanup(da.Bottom)
else
cleanup(da.Left)
cleanup(da.Right)
end
self:RefreshColors()
local decs = self:GetDecorations()
for i = 1, #(decs or "") do
DecSetDestroyedEnt(decs[i], decs[i]:GetEntity(), nil, self)
end
self:UpdateDecorationsDestroyedState()
return true
end
local function ShouldProcessDecsDestroyedStateForNbrSWO(swo)
return not swo.is_destroyed and swo.material == "Colonial" and swo.width > 0 and swo.height > 1
end
local function ShouldProcessDecsDestroyedStateForSWO(swo)
return swo.is_destroyed and swo.material == "Colonial" and swo.width > 0 and swo.height > 1
end
function SlabWallObject:UpdateDecorationsDestroyedState()
if ShouldProcessDecsDestroyedStateForSWO(self) then
--colonial slabwallobjs' art has built in friezes at the top edge :|
local leftOffset = self:GetLeftOffset()
local rightOffset = self:GetRightOffset()
local ma = self:GetAngle()
local side = self.side or slabAngleToDir[ma]
local isFlipped = side ~= slabAngleToDir[ma]
local x, y, z = self:GetPosXYZ()
local lns = self:GetNeighbourWallSlab(SlabNeighbourMask.Left)
local rns = self:GetNeighbourWallSlab(SlabNeighbourMask.Right)
local topz = z + (self.height - 1) * voxelSizeZ
local ln, rn
for i = #(lns or ""), 1, -1 do
local lnn = lns[i]
if lnn:GetPos():z() >= topz then
ln = lnn
break
end
end
for i = #(rns or ""), 1, -1 do
local rnn = rns[i]
if rnn:GetPos():z() >= topz then
rn = rnn
break
end
end
local function processWindowNbrs(wn)
if wn then
if #wn <= 0 then
local hisz = wn:GetPos():z()
if topz <= wn.height * voxelSizeZ + hisz and topz >= hisz then
return wn
end
else
for i = 1, #wn do
local hisz = wn[i]:GetPos():z()
if topz <= wn[i].height * voxelSizeZ + hisz and topz >= hisz then
return wn[i]
end
end
end
end
return nil
end
local lnIsWindow, rnIsWindow
if not ln then
local lw = self:GetNeighbourWindow(SlabNeighbourMask.Left)
ln = processWindowNbrs(lw)
ln = ln and ShouldProcessDecsDestroyedStateForNbrSWO(ln) and ln or false
lnIsWindow = ln and true or false
end
if not rn then
local rw = self:GetNeighbourWindow(SlabNeighbourMask.Right)
rn = processWindowNbrs(rw)
rn = rn and ShouldProcessDecsDestroyedStateForNbrSWO(rn) and rn or false
rnIsWindow = rn and true or false
end
if ln and not ln.is_destroyed then
local proceed = lnIsWindow or MapGetFirst(self:GetRelativePoint(point(0, -voxelSizeX * (leftOffset - 1), topz - z)), 10, "DestroyableWallDecoration")
if proceed then
local att = PlaceObject("Object", {use_self_colors = true})
self:Attach(att)
att:ChangeEntity("WallDec_Colonial_Frieze_Body_BrokenDec_R_01")
att:SetAttachOffset(point(0, voxelSizeX * leftOffset, topz - z))
att:SetColorization(IsValid(proceed) and proceed or self, "ignore_his_max")
self.destroyed_attaches = self.destroyed_attaches or {Top = {}, Bottom = {}, Left = {}, Right = {}}
table.insert(self.destroyed_attaches.Left, att)
end
end
if rn and not rn.is_destroyed then
local proceed = rnIsWindow or MapGetFirst(self:GetRelativePoint(point(0, -voxelSizeX * (rightOffset + 1), topz - z)), 10, "DestroyableWallDecoration")
if proceed then
local att = PlaceObject("Object", {use_self_colors = true})
self:Attach(att)
att:ChangeEntity("WallDec_Colonial_Frieze_Body_BrokenDec_L_01")
att:SetAttachOffset(point(0, -voxelSizeX * rightOffset, topz - z))
att:SetColorization(IsValid(proceed) and proceed or self, "ignore_his_max")
self.destroyed_attaches = self.destroyed_attaches or {Top = {}, Bottom = {}, Left = {}, Right = {}}
table.insert(self.destroyed_attaches.Right, att)
end
end
end
end
function RoofPlaneSlab:UpdateDestroyedStateInternal()
if self.roof_comp == "Gable" then
--it's a roof edge mascarading as a plane
return RoofEdgeSlab.UpdateDestroyedStateInternal(self)
end
--ROOF
local mask = self.destroyed_neighbours
self.destroyed_attaches = self.destroyed_attaches or {Top = false, Bottom = false, Left = false, Right = false}
local da = self.destroyed_attaches
local isDestroyed = self.is_destroyed
for i = 0, 3 do
processSideHelper(self, da, 1 << i, mask)
end
local a = self:GetAngle()
local isFlipped = (a == 180 * 60 or a == 270 * 60)
if isDestroyed then
self:SetDestroyedEntityAndFlags()
--check for diagonal ents
local lOrRExist = (da.Left or da.Right)
local rbPossible = (isFlipped and da.Top or not isFlipped and da.Bottom) and lOrRExist
local rtPossible = (isFlipped and da.Bottom or not isFlipped and da.Top) and lOrRExist
if rtPossible or rbPossible then
if self:GetSeed(100, 97577) >= 50 then
local side
if rtPossible and rbPossible then
if self:GetSeed(100, 7759) >= 50 then
side = "RT"
else
side = "RB"
end
elseif rtPossible then
side = "RT"
else
side = "RB"
end
local e = self:ComposeBrokenEntityName(side)
if IsValidEntity(e) then
self:ChangeEntity(e)
self:ResetVisibilityFlags()
if side == "RB" and not isFlipped or isFlipped and side == "RT" then
self:DestroyDestroyedAttach(SlabNeighbourMask.Bottom, self)
self.diagonal_ent_mask = SlabNeighbourMask.Bottom
else
self:DestroyDestroyedAttach(SlabNeighbourMask.Top, self)
self.diagonal_ent_mask = SlabNeighbourMask.Top
end
if da.Left then
self.diagonal_ent_mask = self.diagonal_ent_mask | SlabNeighbourMask.Left
self:DestroyDestroyedAttach(SlabNeighbourMask.Left, self)
else
self.diagonal_ent_mask = self.diagonal_ent_mask | SlabNeighbourMask.Right
self:DestroyDestroyedAttach(SlabNeighbourMask.Right, self)
end
end
end
end
end
if self.destroyed_entity and self:GetEntity() ~= self.destroyed_entity then
if IsValidEntity(self.destroyed_entity) then
self:ChangeEntity(self.destroyed_entity)
self:ResetVisibilityFlags()
end
self:UpdateVariantEntities()
end
local isMirrored = not isFlipped and (self.destroyed_entity_side & SlabNeighbourMask.Left) ~= 0
or (isFlipped and (self.destroyed_entity_side & SlabNeighbourMask.Right) ~= 0)
or not isFlipped and (self.diagonal_ent_mask & SlabNeighbourMask.Right) ~= 0
or isFlipped and (self.diagonal_ent_mask & SlabNeighbourMask.Left) ~= 0
self:SetMirrored(isMirrored)
local hasAtLeastOneAttch = false
if da.Right then
local m = not isMirrored
if isFlipped then m = not m end
da.Right:SetMirrored(m)
self:Attach(da.Right)
hasAtLeastOneAttch = true
end
if da.Left then
local m = isMirrored
if isFlipped then m = not m end
da.Left:SetMirrored(m)
self:Attach(da.Left)
hasAtLeastOneAttch = true
end
if da.Top then
self:Attach(da.Top)
hasAtLeastOneAttch = true
end
if da.Bottom then
self:Attach(da.Bottom)
hasAtLeastOneAttch = true
end
if not isDestroyed and not hasAtLeastOneAttch and not self.destroyed_entity then
--our destroyed state is the same as a non destroyed state
return false --let updateent do its thing
end
self:RefreshColors()
self:SetWarped(self:GetWarped())
return true
end
function RoofCorner:UpdateDestroyedStateInternal()
local isDestroyed = self.is_destroyed
if isDestroyed then
self:SetDestroyedEntityAndFlags()
end
self:RefreshColors()
self:SetWarped(self:GetWarped())
return isDestroyed
end
function RoomCorner:UpdateDestroyedStateInternal()
local isDestroyed = self.is_destroyed
if isDestroyed then
self:SetDestroyedEntityAndFlags()
end
self:UpdateDecorationsDestroyedState()
self:RefreshColors()
self:SetWarped(self:GetWarped())
return isDestroyed
end
function WallSlab:UpdateDestroyedStateInternal()
--WALL
local mask = self.destroyed_neighbours
self.destroyed_attaches = self.destroyed_attaches or {Top = false, Bottom = false, Left = false, Right = false}
local da = self.destroyed_attaches
local isDestroyed = self.is_destroyed
for i = 0, 3 do
processSideHelper(self, da, 1 << i, mask)
end
if isDestroyed then
local odem = self.diagonal_ent_mask
self:SetDestroyedEntityAndFlags()
if da.Top and (da.Left or da.Right) then
--maybe use diagonal ent?
if not IsKindOf(self, "RoofWallSlab") and not self.always_visible and self:GetSeed(100, 97577) >= 50 then
--roof walls stack, so rolls there are weird, all stacked should roll and at least one success means success, just disable for sanity
--always_visible check is a hacky way to know whether we are part of a vent window
local e = self:ComposeBrokenEntityName("RB")
if IsValidEntity(e) then
self:ChangeEntity(e)
self:ResetVisibilityFlags()
self:DestroyDestroyedAttach(SlabNeighbourMask.Top, self)
if da.Left then
self.diagonal_ent_mask = (SlabNeighbourMask.Left | SlabNeighbourMask.Top)
self:DestroyDestroyedAttach(SlabNeighbourMask.Left, self)
else
self.diagonal_ent_mask = (SlabNeighbourMask.Right | SlabNeighbourMask.Top)
self:DestroyDestroyedAttach(SlabNeighbourMask.Right, self)
end
end
end
end
if odem ~= self.diagonal_ent_mask then
self:UpdateVariantEntities()
end
end
if self.destroyed_entity and self:GetEntity() ~= self.destroyed_entity then
if IsValidEntity(self.destroyed_entity) then
self:ChangeEntity(self.destroyed_entity)
self:ResetVisibilityFlags()
end
self:UpdateVariantEntities()
end
local isMirrored = (self.destroyed_entity_side & SlabNeighbourMask.Left) ~= 0
or (self.diagonal_ent_mask & SlabNeighbourMask.Right) ~= 0
self:SetMirrored(isMirrored)
if self.variant_objects then
--these are rotated 180 so always mirror
local mi = (self.destroyed_entity_side & (SlabNeighbourMask.Left | SlabNeighbourMask.Right)) ~= 0
self.variant_objects[1]:SetMirrored(mi)
local o = self.variant_objects[2]
if IsValid(o) then
o:SetMirrored(not mi)
end
end
local hasAtLeastOneAttch = false
if da.Right then
da.Right:SetMirrored(true and not isMirrored)
self:Attach(da.Right)
hasAtLeastOneAttch = true
end
if da.Left then
da.Left:SetMirrored(isMirrored)
self:Attach(da.Left)
hasAtLeastOneAttch = true
end
if da.Top then
self:Attach(da.Top)
hasAtLeastOneAttch = true
end
if da.Bottom then
self:Attach(da.Bottom)
hasAtLeastOneAttch = true
end
if self.diagonal_ent_mask ~= 0 then
local o1 = self.variant_objects and self.variant_objects[1]
local o2 = self.variant_objects and self.variant_objects[2]
if IsValid(o1) then
o1:SetMirrored(true)
end
if IsValid(o2) then
o2:SetMirrored(false)
end
end
self:UpdateDecorationsDestroyedState()
if not isDestroyed and not hasAtLeastOneAttch and not self.destroyed_entity then
--our destroyed state is the same as a non destroyed state
return false --let updateent do its thing
end
self:RefreshColors()
self:SetWarped(self:GetWarped())
return true
end
local horizontalDecorationNames = {
"Frieze",
"Socle",
"FenceTop",
}
local function IsHorizontalDecoration(ent_name, obj)
for i = 1, #horizontalDecorationNames do
local str = horizontalDecorationNames[i]
if string.find(ent_name, str) then
local my_axis = obj:GetAxis()
if my_axis ~= axis_z and my_axis ~= -axis_z then
--named as such but rotated
return false
end
return true
end
end
return false
end
function ComposeBrokenDecorationAttachName(self, e, sc, var, t, suppressError)
assert(string.find(e, "%d+", -2), e)
t = t or "BrokenDec"
if not var then
local varStr = string.sub(e, -2)
var = tonumber(varStr) or 1
end
local be = string.sub(e, 1, -3)
local ret = string.format("%s%s_%s_%s", be, t, sc, var < 10 and string.format("0%d", var) or tostring(var))
if IsValidEntity(ret) then
return ret
else
local err
if not slab_missing_entity_white_list[e] and not slab_missing_entity_white_list[ret] then
err = "ComposeBrokenDecorationAttachName " .. ret .. " is invalid ent. " .. " Original ent " .. e .. ". " .. tostring(self.handle)
if not suppressError then
print("once", err)
end
end
return "InvisibleObject", err
end
end
local epsilon = 10 * 60
function Slab:UpdateDecorationsDestroyedState()
local decs = self:GetDecorations()
local da = self.destroyed_attaches
local isDestroyed = self.is_destroyed
local a = self:GetAngle()
local mask = self.destroyed_neighbours
local ds = self.destroyed_entity_side
local ln = self:GetNeighbour(SlabNeighbourMask.Left)
local rn = self:GetNeighbour(SlabNeighbourMask.Right)
local tn = self:GetNeighbour(SlabNeighbourMask.Top)
local bn = self:GetNeighbour(SlabNeighbourMask.Bottom)
--local diagl = (self.diagonal_ent_mask & SlabNeighbourMask.Left) ~= 0
--local diagr = (self.diagonal_ent_mask & SlabNeighbourMask.Right) ~= 0
local diagt = (self.diagonal_ent_mask & SlabNeighbourMask.Top) ~= 0
for i = 1, #(decs or "") do
local d = decs[i]
local e = d:GetEntity()
local na = 1
local oe = rawget(d, "orig_decoration_ent") or d:GetEntity()
local isHorizontal = IsHorizontalDecoration(oe, d)
local isTop = string.find(oe, "_Top")
local isBot = string.find(oe, "_Bottom")
local varStr = string.sub(oe, -2)
local var = tonumber(varStr) or 1
local forceNoT = isBot and var > 1
local forceNoB = isTop and var > 1
local function AddAttch(d, oe, sc)
local ae = ComposeBrokenDecorationAttachName(self, oe, sc, var)
if not IsValidEntity(ae) then
print("once", "Failed to find entity for broken attach for decoration: " .. ae)
return
end
local att
repeat
att = d:GetAttach(na) or PlaceObject("Object")
na = na + 1
until not rawget(att, "editor_ignore")
att:ChangeEntity(ae)
d:Attach(att)
att:SetColorization(d, "ignore_his_max")
end
if not isDestroyed then
--dec is destroyed, but we aren't, maybe repair
d:DestroyAttaches()
if not forceNoB and not isHorizontal and (ds & SlabNeighbourMask.Top) ~= 0 and e ~= "InvisibleObject" then
local ne, err = ComposeBrokenDecorationAttachName(self, oe, "B", var, "Broken", "suppressError")
if ne == "InvisibleObject" then
ne = ComposeBrokenDecorationAttachName(self, oe, "B")
if ne == "InvisibleObject" then
print(err)
end
end
DecSetDestroyedEnt(d, oe, ne, self)
elseif not forceNoT and not isHorizontal and (ds & SlabNeighbourMask.Bottom) ~= 0 and e ~= "InvisibleObject" then
local ne, err = ComposeBrokenDecorationAttachName(self, oe, "T", var, "Broken", "suppressError")
if ne == "InvisibleObject" then
ne = ComposeBrokenDecorationAttachName(self, oe, "T")
if ne == "InvisibleObject" then
print(err)
end
end
DecSetDestroyedEnt(d, oe, ne, self)
elseif e ~= oe then
DecRestoreOrigEnt(d, e, self)
end
elseif isDestroyed then
DecSetDestroyedEnt(d, e, nil, self)
local decA = d:GetAngle()
local x, y, z = d:GetPosXYZ()
z = z or terrain.GetHeight(d:GetPos())
local cls = "DestroyableWallDecoration"
if isHorizontal then
if (ln and (mask & SlabNeighbourMask.Left) == 0) or da and da.Left then
local sc = abs(decA - a) < epsilon and "R" or "L" --art is flipped
AddAttch(d, oe, sc)
end
if (rn and (mask & SlabNeighbourMask.Right) == 0) or da and da.Right then
local sc = abs(decA - a) < epsilon and "L" or "R" --art is flipped
AddAttch(d, oe, sc)
end
else --vertical
local function filter(o, test_str)
local e = o:GetEntity()
return e == o.class or string.find(e, test_str)
end
if (not forceNoT and not isTop) and (da and da.Top or diagt or (tn and (tn.destroyed_entity_side & SlabNeighbourMask.Bottom) == 0 and (mask & SlabNeighbourMask.Top) == 0)) then
--check for a dec on top
local nd = MapGetFirst(x, y, z + voxelSizeZ, 0, cls, filter, "Broken_B")
if nd and nd:GetEntity() ~= "InvisibleObject" then
AddAttch(d, oe, "T")
end
end
if not forceNoB and (da and da.Bottom or (bn and (bn.destroyed_entity_side & SlabNeighbourMask.Top) == 0 and (mask & SlabNeighbourMask.Bottom) == 0)) then
local nd = MapGetFirst(x, y, z - voxelSizeZ, 0, cls, filter, "Broken_T")
if nd and nd:GetEntity() ~= "InvisibleObject" then
AddAttch(d, oe, "B")
end
end
end
end
while d:GetAttach(na) do
DoneObject(d:GetAttach(na))
end
end
end
function DestroyableFloorSlab:GetNeighbourCorner()
end
function DestroyableFloorSlab:UpdateDestroyedStateInternal()
--FLOOR
local mask = self.destroyed_neighbours
self.destroyed_attaches = self.destroyed_attaches or {Top = false, Bottom = false, Left = false, Right = false}
local da = self.destroyed_attaches
local isDestroyed = self.is_destroyed
if isDestroyed then
self:SetDestroyedEntityAndFlags()
self:SetAngle(0)
end
for i = 0, 3 do
processSideHelper(self, da, 1 << i, mask)
end
local isFlipped = false
if isDestroyed then
--check for diagonal ents
local lOrRExist = da.Left or da.Right
local rbPossible = da.Bottom and lOrRExist
local rtPossible = da.Top and lOrRExist
if rtPossible or rbPossible then
if self:GetSeed(100, 97577) >= 50 then
local e = self:ComposeBrokenEntityName("RB")
if IsValidEntity(e) then
if rtPossible and rbPossible then
if self:GetSeed(100, 7759) < 50 then
isFlipped = true
end
elseif rbPossible then
isFlipped = true
end
self:ChangeEntity(e)
self:ResetVisibilityFlags()
if isFlipped then
self:DestroyDestroyedAttach(SlabNeighbourMask.Bottom, self)
self.diagonal_ent_mask = SlabNeighbourMask.Bottom
self:SetAngle(180*60)
else
self:DestroyDestroyedAttach(SlabNeighbourMask.Top, self)
self.diagonal_ent_mask = SlabNeighbourMask.Top
end
if da.Left then
self.diagonal_ent_mask = self.diagonal_ent_mask | SlabNeighbourMask.Left
self:DestroyDestroyedAttach(SlabNeighbourMask.Left, self)
else
self.diagonal_ent_mask = self.diagonal_ent_mask | SlabNeighbourMask.Right
self:DestroyDestroyedAttach(SlabNeighbourMask.Right, self)
end
end
end
end
elseif self.destroyed_entity and self:GetEntity() ~= self.destroyed_entity then
if IsValidEntity(self.destroyed_entity) then
self:ChangeEntity(self.destroyed_entity)
self:ResetVisibilityFlags()
end
if (self.destroyed_entity_side & SlabNeighbourMask.Top) ~= 0 then
self:SetAngle(180*60)
else
self:SetAngle(0)
end
end
local isMirrored = (self.destroyed_entity_side & SlabNeighbourMask.Left) ~= 0
or not isFlipped and (self.diagonal_ent_mask & SlabNeighbourMask.Right) ~= 0
or isFlipped and (self.diagonal_ent_mask & SlabNeighbourMask.Left) ~= 0
self:SetMirrored(isMirrored)
local hasAtLeastOneAttch = false
if da.Right then
local m = not isMirrored
if isFlipped then m = not m end
da.Right:SetMirrored(m)
self:Attach(da.Right)
hasAtLeastOneAttch = true
end
if da.Left then
local m = isMirrored
if isFlipped then m = not m end
da.Left:SetMirrored(m)
self:Attach(da.Left)
hasAtLeastOneAttch = true
end
if da.Top then
self:Attach(da.Top)
if isFlipped then da.Top:SetAttachAngle(180*60) end
hasAtLeastOneAttch = true
end
if da.Bottom then
self:Attach(da.Bottom)
if not isFlipped then da.Bottom:SetAttachAngle(180*60) end
hasAtLeastOneAttch = true
end
if not isDestroyed and not hasAtLeastOneAttch and not self.destroyed_entity then
--our destroyed state is the same as a non destroyed state
return false --let updateent do its thing
end
self:RefreshColors()
self:SetWarped(self:GetWarped())
return true
end
function Slab:IsStructuralSlab(r)
return self:IsInvulnerable() or self.force_structural
end
function Slab:IsStructuralRow(r)
return false
end
function Slab:GetNeighbours()
end
function Slab:GetNeighbour()
end
function Slab:GetNeighboursAroundCorner()
end
function Slab:GetDecorationQueryBox()
end
function Slab:GetDecorations()
end
function Slab:GetNeighbourWindow()
end
function Slab:GetStairNeighbours()
end
function Slab:ClearDaSubvariants(sideFlag, attPos)
if self.da_subvaraints then
attPos = attPos or point30
local id = GetDestroyedSlabAttachId(sideFlag, attPos)
self.da_subvaraints[id] = nil
if not next(self.da_subvaraints) then
self.da_subvaraints = nil
end
end
end
function Slab:DestroyDestroyedAttach(sideFlag)
local ss = maskToString[sideFlag]
local att = self.destroyed_attaches and self.destroyed_attaches[ss]
if att then
DoneObject(att)
self.destroyed_attaches[ss] = false
end
self:ClearDaSubvariants(sideFlag)
end
function RoofWallSlab:DestroyDestroyedAttach(sideFlag)
MapForEach(self, 0, "RoofWallSlab", nil, const.efVisible, function(o, sideFlag, self)
if (sideFlag & 12) == 0 or o:GetAngle() == self:GetAngle() then
Slab.DestroyDestroyedAttach(o, sideFlag)
else
local osf = maskToOppositeMask[sideFlag]
Slab.DestroyDestroyedAttach(o, osf)
end
end, sideFlag, self)
end
function Slab:GetDestroyedAttachOffset()
return point30
end
function SlabWallObject:GetDestroyedAttachOffset(sideFlag, nbr, mp)
mp = mp or self:GetPos()
local hp = nbr:GetPos()
local dp = mp - hp
local dx, dy, dz = dp:xyz()
local attPos
if (sideFlag & 12) ~= 0 then --is left or right
local offs = IsKindOf(nbr, "WallSlab") and voxelSizeX or halfVoxelSizeX
attPos = hp + point(sign(dx) * offs, sign(dy) * offs, 0)
else
attPos = hp + point(0, 0, sign(dz) * voxelSizeZ)
end
local localAttPos = self:GetLocalPoint(attPos)
return localAttPos, attPos
end
function SlabWallObject:DestroyDestroyedAttach(sideFlag, nbr)
local da = self.destroyed_attaches
if not da then return end
local attPos = self:GetDestroyedAttachOffset(sideFlag, nbr)
self:ClearDaSubvariants(sideFlag, attPos)
local atts = da[maskToString[sideFlag] ]
for i = #(atts or ""), 1, -1 do
local a = atts[i]
if not IsValid(a) then
--malicious people go around and kill attaches, so this can be dead at any time;
table.remove(atts, i)
print(string.format("Found invalid attch h[%s] class[%s] i[%d] side[%s]", tostring(self.handle), self.class, i, maskToString[sideFlag]))
elseif (a.offset or a:GetAttachOffset()) == attPos and IsKindOf(a, DestroyedAttachClass) then --other class attaches never get destroyed..
table.remove(atts, i)
DoneObject(a)
if #atts <= 0 then
local canClear = true
for side, satts in pairs(da) do
if #satts > 0 then
canClear = false
break
end
end
if canClear then
self.destroyed_attaches = false
end
end
return
end
end
end
function Slab:IsGrounded()
local x, y, z = self:GetPosXYZ()
local tz = terrain.GetHeight(x, y)
if z <= tz or abs(z - tz) < voxelSizeZ then
return true --on ground
end
return false
end
function Slab:ReportMissingDamagedEntity(ent)
self:ReportMissingDestructionEntity(ent, "Failed to find damaged entity " .. ent)
end
function Slab:ReportMissingBrokenEntity(ent)
self:ReportMissingDestructionEntity(ent, "Failed to find broken entity " .. ent)
end
function Slab:ReportMissingBrokenDecInteriorAttach(ent)
self:ReportMissingDestructionEntity(ent, "Failed to find broken dec interior attach entity " .. ent)
end
function Slab:ReportMissingBrokenDec(ent)
self:ReportMissingDestructionEntity(ent, "Failed to find broken dec entity " .. ent)
end
function Slab:ReportMissingDestructionEntity(ent, msg)
if not slab_missing_entity_white_list[ent] then
print(string.format("[%s][%s][%s] %s", tostring(rawget(self, "handle")), self.class, GetMapName(), msg))
slab_missing_entity_white_list[ent] = true
end
end
wallSidewaysOffsets = {
North = { x = 1, y = 0 },
South = { x = -1, y = 0 },
East = { x = 0, y = 1 },
West = { x = 0, y = -1 },
}
function RoofEdgeSlab:GetNeighbours()
return self:GetNeighbour(SlabNeighbourMask.Left), self:GetNeighbour(SlabNeighbourMask.Right)
end
local function RoofEdgeSlab_GetNeighbour(self, sideFlag, corner)
if self.roof_comp == "RakeGable" then return end
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
local pt
local s = slabAngleToDir[self:GetAngle()] --for some reason .side is bogus for roofedgeslabs
local xstep, ystep = voxelSizeX, voxelSizeY
if corner then
xstep, ystep = xstep / 2, ystep / 2
end
if sideFlag == SlabNeighbourMask.Left then
local offs = wallSidewaysOffsets[s]
pt = point(x + offs.x * xstep, y + offs.y * ystep)
elseif sideFlag == SlabNeighbourMask.Right then
local offs = wallSidewaysOffsets[s]
pt = point(x - offs.x * xstep, y - offs.y * ystep)
else
return false
end
local room = self.room
local oz = z
local checkAngle
if self.roof_comp ~= "Gable" then
oz = room and room:GetRoofZAndDir(pt) or z
oz = oz == const.InvalidZ and z or oz
else -- == "Gable"
checkAngle = self:GetAngle() --if different gables are crossing eachother in 90 degree fashion, check the angle to make sure we are getting the nbr that is aligned the same as us and not the one perpendicular to us.
end
local mirrored = self:GetMirrored()
if not corner then
local cls = self.class
return MapGetFirst(pt:x(), pt:y(), oz, 0, cls, nil, const.efVisible,
function(o, mirrored, angle)
return o:GetMirrored() == mirrored and (not angle or angle == o:GetAngle())
end, mirrored, checkAngle)
or MapGetFirst(self, 0, cls, nil, const.efVisible, function(o, self) return o ~= self end, self)
or MapGetFirst(pt:x(), pt:y(), oz, 0, cls, nil, const.efVisible)
else
local cls = "RoofCorner"
return MapGetFirst(pt:x(), pt:y(), oz, 0, cls, nil, const.efVisible)
end
end
function RoofEdgeSlab:GetNeighbourCorner(sideFlag)
return RoofEdgeSlab_GetNeighbour(self, sideFlag, "corner")
end
function RoofEdgeSlab:GetNeighbour(sideFlag)
return RoofEdgeSlab_GetNeighbour(self, sideFlag)
end
cornerAngleToSidewaysOffsets = {
[0] = { x = 0, y = -1 },
[180 * 60] = { x = 0, y = 1 },
[270 * 60] = { x = 1, y = 0 },
[90 * 60] = { x = -1, y = 0 },
}
function RoofCorner:GetNeighbours()
return self:GetNeighbourEdge(SlabNeighbourMask.Left),
self:GetNeighbourEdge(SlabNeighbourMask.Right)
end
function RoofCorner:GetNeighbour(...)
return self:GetNeighbourEdge(...)
end
function RoofCorner:GetNeighbourEdge(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
local pt
local xstep, ystep = voxelSizeX / 2, voxelSizeY / 2
local a = self:GetAngle()
local offs = cornerAngleToSidewaysOffsets[a]
local m = self:GetMirrored()
if sideFlag == SlabNeighbourMask.Left then
pt = point(x + offs.y * xstep, y + offs.x * ystep)
elseif sideFlag == SlabNeighbourMask.Right then
local mm = (m and -1 or 1)
pt = point(x - offs.x * xstep * mm, y + offs.y * ystep * mm)
else
return false
end
return MapGetFirst(pt, 1, "RoofEdgeSlab", nil, const.efVisible)
end
function RoofPlaneSlab:IsStructuralSlab()
return self:IsInvulnerable() or self.force_structural
end
function RoofPlaneSlab:IsStructuralRow(sideFlag)
return false
end
function RoofPlaneSlab:GetNeighbourEdge(sideFlag, corner)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
local a = self:GetAngle()
local flipped = a % (180 * 60) ~= 0
local pt
if not flipped and sideFlag == SlabNeighbourMask.Left
or flipped and sideFlag == SlabNeighbourMask.Bottom then
if not corner then
pt = point(x, y + halfVoxelSizeY)
else
pt = point(x - halfVoxelSizeX, y + halfVoxelSizeY)
end
elseif not flipped and sideFlag == SlabNeighbourMask.Right
or flipped and sideFlag == SlabNeighbourMask.Top then
if not corner then
pt = point(x, y - halfVoxelSizeY)
else
pt = point(x + halfVoxelSizeX, y - halfVoxelSizeY)
end
elseif not flipped and sideFlag == SlabNeighbourMask.Top
or flipped and sideFlag == SlabNeighbourMask.Left then
if not corner then
pt = point(x - halfVoxelSizeX, y)
else
pt = point(x - halfVoxelSizeX, y - halfVoxelSizeY)
end
elseif not flipped and sideFlag == SlabNeighbourMask.Bottom
or flipped and sideFlag == SlabNeighbourMask.Right then
if not corner then
pt = point(x + halfVoxelSizeX, y)
else
pt = point(x + halfVoxelSizeX, y + halfVoxelSizeY)
end
else
return false
end
-------------
local room = self.room
if room then
local rb = room.roof_box
if rb then
local delta = rb:min() - pt
if abs(delta:x()) >= voxelSizeX and abs(delta:y()) >= voxelSizeY then
delta = rb:max() - pt
if abs(delta:x()) >= voxelSizeX and abs(delta:y()) >= voxelSizeY then
--2 far from edge
return false
end
end
end
end
local oz = room and room:GetRoofZAndDir(pt) or z
oz = oz == const.InvalidZ and z or oz
local anotherZWhereEdgesMayPreside = room:AdjustGableCapZ(oz)
local cp = self:GetClipPlane()
local cls = not corner and "RoofEdgeSlab" or "RoofCorner"
if cp ~= 0 and (sideFlag == SlabNeighbourMask.Right or sideFlag == SlabNeighbourMask.Left) then
local function filter(o, cp)
return o:GetClipPlane() == cp
end
return MapGetFirst(pt:x(), pt:y(), oz, 0, cls, nil, const.efVisible, filter, cp)
or MapGetFirst(pt:x(), pt:y(), anotherZWhereEdgesMayPreside, 0, cls, nil, const.efVisible, filter, cp)
or MapGetFirst(pt:x(), pt:y(), anotherZWhereEdgesMayPreside + 1, 0, cls, nil, const.efVisible, filter, cp) --old round error could cause these to be offset
else
return MapGetFirst(pt:x(), pt:y(), oz, 0, cls, nil, const.efVisible)
or MapGetFirst(pt:x(), pt:y(), anotherZWhereEdgesMayPreside, 0, cls, nil, const.efVisible)
or MapGetFirst(pt:x(), pt:y(), anotherZWhereEdgesMayPreside + 1, 0, cls, nil, const.efVisible)
end
end
function RoofPlaneSlab:GetNeighbourWallSlab(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
z = snapZ(z)
local nz = snapZ(z - 1) --look on the tile below as well since these guys are bent
local a = self:GetAngle()
local flipped = a % (180 * 60) ~= 0
if not flipped and sideFlag == SlabNeighbourMask.Left
or flipped and sideFlag == SlabNeighbourMask.Bottom then
return MapGetFirst(x, y + halfVoxelSizeY, z, 0, "WallSlab", nil, const.efVisible) or MapGetFirst(x, y + halfVoxelSizeY, nz, 0, "WallSlab", nil, const.efVisible)
elseif not flipped and sideFlag == SlabNeighbourMask.Right
or flipped and sideFlag == SlabNeighbourMask.Top then
return MapGetFirst(x, y - halfVoxelSizeY, z, 0, "WallSlab", nil, const.efVisible) or MapGetFirst(x, y - halfVoxelSizeY, nz, 0, "WallSlab", nil, const.efVisible)
elseif not flipped and sideFlag == SlabNeighbourMask.Top
or flipped and sideFlag == SlabNeighbourMask.Left then
return MapGetFirst(x - halfVoxelSizeX, y, z, 0, "WallSlab", nil, const.efVisible) or MapGetFirst(x - halfVoxelSizeX, y, nz, 0, "WallSlab", nil, const.efVisible)
elseif not flipped and sideFlag == SlabNeighbourMask.Bottom
or flipped and sideFlag == SlabNeighbourMask.Right then
return MapGetFirst(x + halfVoxelSizeX, y, z, 0, "WallSlab", nil, const.efVisible) or MapGetFirst(x + halfVoxelSizeX, y, nz, 0, "WallSlab", nil, const.efVisible)
end
return false
end
function RoofPlaneSlab:GetNeighbour(sideFlag, all)
if self.roof_comp == "Gable" then
--it's a roof edge mascarading as a plane
return RoofEdgeSlab.GetNeighbour(self, sideFlag)
end
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
local room = self.room
local a = self:GetAngle()
local flipped = a % (180 * 60) ~= 0
local pt
if not flipped and sideFlag == SlabNeighbourMask.Left
or flipped and sideFlag == SlabNeighbourMask.Bottom then
pt = point(x, y + voxelSizeY)
elseif not flipped and sideFlag == SlabNeighbourMask.Right
or flipped and sideFlag == SlabNeighbourMask.Top then
pt = point(x, y - voxelSizeY)
elseif not flipped and sideFlag == SlabNeighbourMask.Bottom
or flipped and sideFlag == SlabNeighbourMask.Right then
pt = point(x + voxelSizeX, y)
elseif not flipped and sideFlag == SlabNeighbourMask.Top
or flipped and sideFlag == SlabNeighbourMask.Left then
pt = point(x - voxelSizeX, y)
end
local oz = room and room:GetRoofZAndDir(pt) or z
oz = oz == const.InvalidZ and z or oz
local getfunc = all and MapGet or MapGetFirst
return getfunc(pt:x(), pt:y(), oz, 0, "RoofPlaneSlab", nil, const.efVisible, function(o, a) return o:GetClipPlane() == 0 or o:GetAngle() == a end, a)
--sometimes we are looking for adjacent pieces of a different room that ld makes look like a single roof, then oz would be bogus
or z ~= oz
and getfunc(pt:x(), pt:y(), z, 0, "RoofPlaneSlab", nil, const.efVisible, function(o, a) return o:GetClipPlane() == 0 or o:GetAngle() == a end, a)
end
function RoofPlaneSlab:GetNeighbours()
return self:GetNeighbour(SlabNeighbourMask.Left, "all"),
self:GetNeighbour(SlabNeighbourMask.Right, "all"),
self:GetNeighbour(SlabNeighbourMask.Top, "all"),
self:GetNeighbour(SlabNeighbourMask.Bottom, "all")
end
function WallSlab:IsStructuralSlab()
return self:IsInvulnerable() or self:IsGrounded() or self:IsStructuralRow(SlabNeighbourMask.Left) or self:IsStructuralRow(SlabNeighbourMask.Right) or self.force_structural
end
function WallSlab:IsStructuralRow(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local vx, vy, vz, a = WallWorldToVoxel(self)
local s = slabAngleToDir[self:GetAngle()]
if s == "North" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vx + 1)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vx)
end
elseif s == "South" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vx)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vx + 1)
end
elseif s == "West" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vy)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vy + 1)
end
elseif s == "East" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vy + 1)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vy)
end
end
return false
end
RoofWallSlab.IsStructuralRow = empty_func --structural rows on roof can clip so, just no structure there
function RoomCorner:GetDecorationQueryBox()
local e = self:GetEntity()
if e ~= "InvisibleObject" then
return self:GetObjectBBox():grow(1)
end
local min = self:GetRelativePoint(point(-10, -10, 0))
local max = self:GetRelativePoint(point(110, 110, voxelSizeZ))
local a, b, c = min:xyz()
local d, e, f = max:xyz()
return box(Min(a, d), Min(b, e), c, Max(a, d), Max(b, e), f)
end
function WallSlab:GetDecorationQueryBox()
local e = self:GetEntity()
local add = 0
local minz = 0
if not self:GetNeighbour(SlabNeighbourMask.Bottom) then
minz = -voxelSizeZ
end
if e ~= "InvisibleObject" then
local b = self:GetObjectBBox():grow(-add)
if minz ~= 0 then
local growth = abs(minz) / 2
b = b:grow(0, 0, growth)
b = Offset(b, point(0, 0, -growth))
end
return b
end
local min = self:GetRelativePoint(point(-86, -halfVoxelSizeX + add, minz)) --x const probably comes from somewhere
local max = self:GetRelativePoint(point(86, halfVoxelSizeX - add, voxelSizeZ))
local a, b, c = min:xyz()
local d, e, f = max:xyz()
return box(Min(a, d), Min(b, e), c, Max(a, d), Max(b, e), f)
end
function SlabWallObject:GetDecorationQueryBox()
local e = self:GetEntity()
local add = -1
local minz = 0
if not self:GetNeighbour(SlabNeighbourMask.Bottom) then
minz = -voxelSizeZ
end
if e ~= "InvisibleObject" then
local b = self:GetObjectBBox():grow(-add)
if minz ~= 0 then
local growth = abs(minz) / 2
b = b:grow(0, 0, growth)
b = Offset(b, point(0, 0, -growth))
end
return b
end
local leftOffset = self:GetLeftOffset()
local rightOffset = self:GetRightOffset()
local min = self:GetRelativePoint(point(-100, -halfVoxelSizeX + add - rightOffset * voxelSizeX, minz)) --x const probably comes from somewhere
local max = self:GetRelativePoint(point(100, halfVoxelSizeX - add - leftOffset * voxelSizeX, voxelSizeZ * self.height))
local a, b, c = min:xyz()
local d, e, f = max:xyz()
return box(Min(a, d), Min(b, e), c, Max(a, d), Max(b, e), f)
end
function WallSlab:GetCornerDecorations()
return false
end
SlabWallObject.GetCornerDecorations = WallSlab.GetCornerDecorations
function RoomCorner:GetCornerDecorations()
return true
end
function WallSlab:GetDecorations()
local qb = self:GetDecorationQueryBox()
local getCorners = self:GetCornerDecorations()
local minz = qb:minz()
local maxz = qb:maxz()
return MapGet(qb, "CObject", function(o, minz, maxz)
if o:GetParent() then return end
local _, __, z = o:GetPosXYZ()
if not z or (minz <= z and maxz > z) then
local e = o:GetEntity()
--this can be a class check at some point, assets need to be marked from art spec
return (rawget(o, "orig_decoration_ent") or e:starts_with("WallDec_")) and (getCorners or not string.find(e, "Corner"))
end
end, minz, maxz)
end
SlabWallObject.GetDecorations = WallSlab.GetDecorations
RoomCorner.GetDecorations = WallSlab.GetDecorations
function WallSlab:GetNeighboursAroundCorner(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local s = slabAngleToDir[self:GetAngle()]
local x, y, z = self:GetPosXYZ()
local r1, r2
local function filter(o)
return o:GetEnumFlags(const.efVisible) ~= 0 or o.wall_obj
end
if sideFlag == SlabNeighbourMask.Left then
local offs = wallSidewaysOffsets[s]
if offs.x ~= 0 then
r1 = MapGetFirst(x + offs.x * halfVoxelSizeX, y + halfVoxelSizeY, z, 0, "WallSlab", filter)
r2 = MapGetFirst(x + offs.x * halfVoxelSizeX, y - halfVoxelSizeY, z, 0, "WallSlab", filter)
else
r1 = MapGetFirst(x + halfVoxelSizeX, y + offs.y * halfVoxelSizeY, z, 0, "WallSlab", filter)
r2 = MapGetFirst(x - halfVoxelSizeX, y + offs.y * halfVoxelSizeY, z, 0, "WallSlab", filter)
end
end
if sideFlag == SlabNeighbourMask.Right then
local offs = wallSidewaysOffsets[s]
if offs.x ~= 0 then
r1 = MapGetFirst(x - offs.x * halfVoxelSizeX, y + halfVoxelSizeY, z, 0, "WallSlab", filter)
r2 = MapGetFirst(x - offs.x * halfVoxelSizeX, y - halfVoxelSizeY, z, 0, "WallSlab", filter)
else
r1 = MapGetFirst(x + halfVoxelSizeX, y - offs.y * halfVoxelSizeY, z, 0, "WallSlab", filter)
r2 = MapGetFirst(x - halfVoxelSizeX, y - offs.y * halfVoxelSizeY, z, 0, "WallSlab", filter)
end
end
r1 = r1 and not r1.isVisible and r1.wall_obj or r1
r2 = r2 and not r2.isVisible and r2.wall_obj or r2
return r1 or r2, r1 and r2
end
function WallSlab:GetNeighbourCorner(sideFlag, all)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local s = slabAngleToDir[self:GetAngle()]
local x, y, z = self:GetPosXYZ()
local f = all and MapGet or MapGetFirst
if sideFlag == SlabNeighbourMask.Left then
local offs = wallSidewaysOffsets[s]
return f(x + offs.x * halfVoxelSizeX, y + offs.y * halfVoxelSizeY, z, 0, "RoomCorner", nil, const.efVisible)
end
if sideFlag == SlabNeighbourMask.Right then
local offs = wallSidewaysOffsets[s]
return f(x - offs.x * halfVoxelSizeX, y - offs.y * halfVoxelSizeY, z, 0, "RoomCorner", nil, const.efVisible)
end
end
function WallSlab:GetNeighbour(sideFlag, all, enumFlags)
local rez = self:GetNeighbourWallSlab(sideFlag, all, enumFlags)
if not IsValid(rez) and #(rez or "") <= 0 then
rez = self:GetNeighbourWindow(sideFlag)
end
return rez
end
function WallSlab:GetNeighbourWallSlab(sideFlag, all, enumFlags)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local s = slabAngleToDir[self:GetAngle()]
local x, y, z = self:GetPosXYZ()
enumFlags = enumFlags == nil and const.efVisible or enumFlags
if sideFlag == SlabNeighbourMask.Left then
local offs = wallSidewaysOffsets[s]
return not all and MapGetFirst(x + offs.x * voxelSizeX, y + offs.y * voxelSizeY, z, 0, "WallSlab", nil, enumFlags)
or all and (MapGet(x + offs.x * voxelSizeX, y + offs.y * voxelSizeY, z, 0, "WallSlab", nil, enumFlags) or empty_table)
end
if sideFlag == SlabNeighbourMask.Right then
local offs = wallSidewaysOffsets[s]
return not all and MapGetFirst(x - offs.x * voxelSizeX, y - offs.y * voxelSizeY, z, 0, "WallSlab", nil, enumFlags)
or all and (MapGet(x - offs.x * voxelSizeX, y - offs.y * voxelSizeY, z, 0, "WallSlab", nil, enumFlags) or empty_table)
end
if sideFlag == SlabNeighbourMask.Top then
return not all and MapGetFirst(x, y, z + voxelSizeZ, 0, "WallSlab", nil, enumFlags)
or all and (MapGet(x, y, z + voxelSizeZ, 0, "WallSlab", nil, enumFlags) or empty_table)
end
if sideFlag == SlabNeighbourMask.Bottom then
return not all and MapGetFirst(x, y, z - voxelSizeZ, 0, "WallSlab", nil, enumFlags)
or all and (MapGet(x, y, z - voxelSizeZ, 0, "WallSlab", nil, enumFlags) or empty_table)
end
end
function WallSlab:GetNeighbours()
return self:GetNeighbour(SlabNeighbourMask.Left, "all"),
self:GetNeighbour(SlabNeighbourMask.Right, "all"),
self:GetNeighbour(SlabNeighbourMask.Top, "all"),
self:GetNeighbour(SlabNeighbourMask.Bottom, "all")
end
function WallSlab:GetNeighbourWindow(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local wallNbr = self:GetNeighbourWallSlab(sideFlag, false, ~const.efVisible)
return wallNbr and wallNbr.wall_obj or false
end
function WallSlab:GetNeighbourFloor(sideFlag)
local offs
if sideFlag == SlabNeighbourMask.Top then
offs = point(halfVoxelSizeX, 0, 0)
elseif sideFlag == SlabNeighbourMask.Bottom then
offs = point(-halfVoxelSizeX, 0, 0)
else
return
end
local f = self:GetRelativePoint(offs)
return MapGetFirst(f, 0, "DestroyableFloorSlab", "RoofPlaneSlab", nil, const.efVisible)
end
local function getNbrPosHelper(x, y, z, w, width, h, side, corner)
local tx, ty, tz
local wf = (w - width/2 - (width % 2 == 0 and 0 or 1))
tz = z + (h - 1) * voxelSizeZ
local cornerOffset = corner and halfVoxelSizeX or 0
if side == "East" then
tx = x
ty = y - wf * voxelSizeY + cornerOffset * sign(wf)
elseif side == "West" then
tx = x
ty = y + wf * voxelSizeY - cornerOffset * sign(wf)
elseif side == "North" then
tx = x - wf * voxelSizeX + cornerOffset * sign(wf)
ty = y
else
tx = x + wf * voxelSizeX - cornerOffset * sign(wf)
ty = y
end
return tx, ty, tz
end
local function processPosHelper(tx, ty, tz, ret, all, enumFlags, class, class2)
--DbgAddVector(point(tx, ty, tz))
local rez
if not class2 then
rez = not all and MapGetFirst(tx, ty, tz, 0, class, nil, enumFlags)
or all and MapGet(tx, ty, tz, 0, class, nil, enumFlags)
else
rez = not all and MapGetFirst(tx, ty, tz, 0, class, class2, nil, enumFlags)
or all and MapGet(tx, ty, tz, 0, class, class2, nil, enumFlags)
end
if rez then
ret = ret or {}
if not all then
table.insert(ret, rez)
else
table.iappend(ret, rez)
end
end
return ret
end
local function processVerticalNbrsHelper(height, tx, ty, z, ret, all, enumFlags, class)
for h = 1, height do
local tz = z + (h - 1) * voxelSizeZ
ret = processPosHelper(tx, ty, tz, ret, all, enumFlags, class)
end
return ret
end
function SlabWallObject:GetNeighbours()
return self:GetNeighbour(SlabNeighbourMask.Left, "all"),
self:GetNeighbour(SlabNeighbourMask.Right, "all"),
self:GetNeighbour(SlabNeighbourMask.Top, "all"),
self:GetNeighbour(SlabNeighbourMask.Bottom, "all")
end
function SlabWallObject:GetNeighbour(sideFlag, all, enumFlags)
local rez = self:GetNeighbourWallSlab(sideFlag, all, enumFlags)
local rezw = self:GetNeighbourWindow(sideFlag)
if rez then
if IsValid(rezw) then
table.insert(rez, rezw)
elseif type(rezw) == "table" then
table.iappend(rez, rezw)
end
else
rez = rezw
end
return rez
end
function SlabWallObject:GetNeighbourCorner(sideFlag, all, enumFlags)
return self:GetNeighbourWallSlab(sideFlag, all, enumFlags, "adjustForCorner")
end
function SlabWallObject:GetNeighbourFloor(sideFlag, all)
local ret
local side = self.side or slabAngleToDir[self:GetAngle()]
local width = Max(self.width, 1)
local height = self.height
local x, y, z = self:GetPosXYZ()
local enumFlags = const.efVisible
if not z then
z = terrain.GetHeight(x, y)
end
local xOffs, yOffs = 0, 0
if side == "West" then
xOffs = halfVoxelSizeX
elseif side == "East" then
xOffs = -halfVoxelSizeX
elseif side == "North" then
yOffs = halfVoxelSizeY
else
yOffs = -halfVoxelSizeY
end
if sideFlag == SlabNeighbourMask.Top then
for w = 1, width do
local tx, ty, tz = getNbrPosHelper(x, y, z, w, width, 0, side)
tx = tx - xOffs
ty = ty - yOffs
ret = processPosHelper(tx, ty, z, ret, all, enumFlags, "DestroyableFloorSlab", "RoofPlaneSlab")
end
end
if sideFlag == SlabNeighbourMask.Bottom then
for w = 1, width do
local tx, ty, tz = getNbrPosHelper(x, y, z, w, width, 0, side)
tx = tx + xOffs
ty = ty + yOffs
ret = processPosHelper(tx, ty, z, ret, all, enumFlags, "DestroyableFloorSlab", "RoofPlaneSlab")
end
end
return ret
end
function SlabWallObject:GetNeighbourWallSlab(sideFlag, all, enumFlags, adjustForCorner)
local ret
local side = slabAngleToDir[self:GetAngle()]
local width = Max(self.width, 1)
local height = self.height
local x, y, z = self:GetPosXYZ()
enumFlags = enumFlags == nil and const.efVisible or enumFlags
if not z then
z = terrain.GetHeight(x, y)
end
if sideFlag == SlabNeighbourMask.Left then
local tx, ty, _ = getNbrPosHelper(x, y, z, 0, width, height, side, adjustForCorner)
ret = processVerticalNbrsHelper(height, tx, ty, z, ret, all, enumFlags, not adjustForCorner and "WallSlab" or "RoomCorner")
end
if sideFlag == SlabNeighbourMask.Right then
local tx, ty, _ = getNbrPosHelper(x, y, z, width + 1, width, height, side, adjustForCorner)
ret = processVerticalNbrsHelper(height, tx, ty, z, ret, all, enumFlags, not adjustForCorner and "WallSlab" or "RoomCorner")
end
if sideFlag == SlabNeighbourMask.Top then
for w = 1, width do
local tx, ty, tz = getNbrPosHelper(x, y, z, w, width, height + 1, side, adjustForCorner)
ret = processPosHelper(tx, ty, tz, ret, all, enumFlags, not adjustForCorner and "WallSlab" or "RoomCorner")
end
end
if sideFlag == SlabNeighbourMask.Bottom then
for w = 1, width do
local tx, ty, tz = getNbrPosHelper(x, y, z, w, width, 0, side, adjustForCorner)
ret = processPosHelper(tx, ty, tz, ret, all, enumFlags, not adjustForCorner and "WallSlab" or "RoomCorner")
end
end
return ret
end
local function getNbrAroundCornerPosHelper(x, y, z, w, width, h, side)
local tx, ty, tz
local wf = (w - width/2 - (width % 2 == 0 and 0 or 1))
local sign = wf / abs(wf)
tz = z + (h - 1) * voxelSizeZ
if side == "East" then
tx = x
ty = y - wf * voxelSizeY + halfVoxelSizeY * sign
return tx + halfVoxelSizeX, ty, tz, tx - halfVoxelSizeX, ty, tz
elseif side == "West" then
tx = x
ty = y + wf * voxelSizeY - halfVoxelSizeY * sign
return tx + halfVoxelSizeX, ty, tz, tx - halfVoxelSizeX, ty, tz
elseif side == "North" then
tx = x - wf * voxelSizeX + halfVoxelSizeX * sign
ty = y
return tx, ty + halfVoxelSizeY, tz, tx, ty - halfVoxelSizeY, tz
else
tx = x + wf * voxelSizeX - halfVoxelSizeX * sign
ty = y
return tx, ty + halfVoxelSizeY, tz, tx, ty - halfVoxelSizeY, tz
end
end
function SlabWallObject:GetNeighboursAroundCorner(sideFlag)
local ret
local side = self.side
local width = Max(self.width, 1)
local height = self.height
local x, y, z = self:GetPosXYZ()
local enumFlags = nil
local all = nil
if not z then
z = terrain.GetHeight(x, y)
end
if sideFlag == SlabNeighbourMask.Left then
local tx1, ty1, _, tx2, ty2, _ = getNbrAroundCornerPosHelper(x, y, z, 0, width, height, side)
ret = processVerticalNbrsHelper(height, tx1, ty1, z, ret, all, enumFlags, "WallSlab")
ret = processVerticalNbrsHelper(height, tx2, ty2, z, ret, all, enumFlags, "WallSlab")
end
if sideFlag == SlabNeighbourMask.Right then
local tx1, ty1, _, tx2, ty2, _ = getNbrAroundCornerPosHelper(x, y, z, width + 1, width, height, side)
ret = processVerticalNbrsHelper(height, tx1, ty1, z, ret, all, enumFlags, "WallSlab")
ret = processVerticalNbrsHelper(height, tx2, ty2, z, ret, all, enumFlags, "WallSlab")
end
local swos = false
for i = #(ret or ""), 1, -1 do
local ws = ret[i]
if not ws.isVisible then
table.remove(ret, i)
if ws.wall_obj then
swos = swos or {}
swos[ws.wall_obj] = true
end
end
end
for swo, _ in pairs(swos or empty_table) do
table.insert(ret, swo)
end
return ret
end
function SlabWallObject:GetNeighbourWindow(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local ret
local retIsTable = false
local wallNbrs = self:GetNeighbourWallSlab(sideFlag, "all", ~const.efVisible)
if wallNbrs and #wallNbrs > 0 then
for i = 1, #wallNbrs do
local nbr = wallNbrs[i]
if nbr.wall_obj then
if not ret then
ret = nbr.wall_obj
elseif not retIsTable and ret ~= nbr.wall_obj then
ret = {ret}
table.insert_unique(ret, nbr.wall_obj)
retIsTable = true
elseif retIsTable then
table.insert_unique(ret, nbr.wall_obj)
end
end
end
end
return ret
end
function SlabWallObject:IsStructuralSlab()
if self:IsGrounded() or self.force_structural then
return true
end
local lo = self:GetLeftOffset()
local ro = self:GetRightOffset()
local vx, vy, vz, a = WallWorldToVoxel(self)
local s = slabAngleToDir[self:GetAngle()]
local min, max
if s == "North" then
min = vx - ro
max = vx + lo + 1
elseif s == "South" then
min = vx - lo
max = vx + ro + 1
elseif s == "West" then
min = vy - lo
max = vy + ro + 1
elseif s == "East" then
min = vy - ro
max = vy + lo + 1
end
for i = min, max do
if IsStructuralRow(i) then
return true
end
end
return false
end
function SlabWallObject:IsStructuralRow(sideFlag)
local vx, vy, vz, a = WallWorldToVoxel(self)
local s = slabAngleToDir[self:GetAngle()]
local lo = self:GetLeftOffset()
local ro = self:GetRightOffset()
if s == "North" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vx + lo + 1)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vx - ro)
end
elseif s == "South" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vx - lo)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vx + ro + 1)
end
elseif s == "West" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vy - lo)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vy + ro + 1)
end
elseif s == "East" then
if sideFlag == SlabNeighbourMask.Left then
return IsStructuralRow(vy + lo + 1)
elseif sideFlag == SlabNeighbourMask.Right then
return IsStructuralRow(vy - ro)
end
end
return false
end
function DestroyableFloorSlab:IsStructuralSlab()
return self:IsInvulnerable() or self.force_structural
or self:IsGrounded()
end
function DestroyableFloorSlab:GetNeighbourWallSlab(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
if sideFlag == SlabNeighbourMask.Left then
return MapGetFirst(x, y + halfVoxelSizeY, z, 0, "WallSlab", nil, const.efVisible)
elseif sideFlag == SlabNeighbourMask.Right then
return MapGetFirst(x, y - halfVoxelSizeY, z, 0, "WallSlab", nil, const.efVisible)
elseif sideFlag == SlabNeighbourMask.Top then
return MapGetFirst(x - halfVoxelSizeX, y, z, 0, "WallSlab", nil, const.efVisible)
elseif sideFlag == SlabNeighbourMask.Bottom then
return MapGetFirst(x + halfVoxelSizeX, y, z, 0, "WallSlab", nil, const.efVisible)
end
return false
end
function DestroyableFloorSlab:GetNeighbour(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local vx, vy, vz = WorldToVoxel(self)
if sideFlag == SlabNeighbourMask.Left then
return GetFloorAlignedObj(vx, vy + 1, vz, self.class)
end
if sideFlag == SlabNeighbourMask.Right then
return GetFloorAlignedObj(vx, vy - 1, vz, self.class)
end
if sideFlag == SlabNeighbourMask.Top then
return GetFloorAlignedObj(vx - 1, vy, vz, self.class)
end
if sideFlag == SlabNeighbourMask.Bottom then
return GetFloorAlignedObj(vx + 1, vy, vz, self.class)
end
end
function DestroyableFloorSlab:GetStairNeighbours()
local ret
local vx, vy, vz = WorldToVoxel(self)
local cls = "StairSlab"
local function add(val)
if val then
ret = ret or {}
ret[#ret + 1] = val
end
end
add(GetFloorAlignedObj(vx, vy + 1, vz, cls))
add(GetFloorAlignedObj(vx, vy + 1, vz + 1, cls))
add(GetFloorAlignedObj(vx, vy - 1, vz, cls))
add(GetFloorAlignedObj(vx, vy - 1, vz + 1, cls))
add(GetFloorAlignedObj(vx - 1, vy, vz, cls))
add(GetFloorAlignedObj(vx - 1, vy, vz + 1, cls))
add(GetFloorAlignedObj(vx + 1, vy, vz, cls))
add(GetFloorAlignedObj(vx + 1, vy, vz + 1, cls))
return ret
end
function DestroyableFloorSlab:GetNeighbours()
local vx, vy, vz = WorldToVoxel(self)
local cls = self.class
local left = GetFloorAlignedObj(vx, vy + 1, vz, cls)
local right = GetFloorAlignedObj(vx, vy - 1, vz, cls)
local top = GetFloorAlignedObj(vx - 1, vy, vz, cls)
local bottom = GetFloorAlignedObj(vx + 1, vy, vz, cls)
return left, right, top, bottom
end
function RoomCorner:GetNeighbourWallSlab(sideFlag, all, enumFlags)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local s = self.side or slabAngleToDir[self:GetAngle()]
local x, y, z = self:GetPosXYZ()
enumFlags = enumFlags == nil and const.efVisible or enumFlags
if sideFlag == SlabNeighbourMask.Left then
local offs = wallSidewaysOffsets[s]
--DbgAddVector(point(x + offs.x * halfVoxelSizeX, y + offs.y * halfVoxelSizeY, z))
return not all and MapGetFirst(x + offs.x * halfVoxelSizeX, y + offs.y * halfVoxelSizeY, z, 0, "WallSlab", nil, enumFlags)
or all and (MapGet(x + offs.x * halfVoxelSizeX, y + offs.y * halfVoxelSizeY, z, 0, "WallSlab", nil, enumFlags) or empty_table)
end
if sideFlag == SlabNeighbourMask.Right then
local offs = wallSidewaysOffsets[s]
--DbgAddVector(point(x - offs.y * halfVoxelSizeX, y + offs.x * halfVoxelSizeY, z))
return not all and MapGetFirst(x - offs.y * halfVoxelSizeX, y + offs.x * halfVoxelSizeY, z, 0, "WallSlab", nil, enumFlags)
or all and (MapGet(x - offs.y * halfVoxelSizeX, y + offs.x * halfVoxelSizeY, z, 0, "WallSlab", nil, enumFlags) or empty_table)
end
end
RoomCorner.GetNeighbourWindow = WallSlab.GetNeighbourWindow
function RoomCorner:GetNeighbour(sideFlag, all, enumFlags)
--presumably has only t and b nbrs
enumFlags = enumFlags == nil and const.efVisible or enumFlags
local x, y, z = self:GetPosXYZ()
if sideFlag == SlabNeighbourMask.Top then
return not all and MapGetFirst(x, y, z + voxelSizeZ, 0, "RoomCorner", nil, enumFlags) or
all and (MapGet(x, y, z + voxelSizeZ, 0, "RoomCorner", nil, enumFlags))
end
if sideFlag == SlabNeighbourMask.Bottom then
return not all and MapGetFirst(x, y, z - voxelSizeZ, 0, "RoomCorner", nil, enumFlags) or
all and (MapGet(x, y, z - voxelSizeZ, 0, "RoomCorner", nil, enumFlags))
end
return nil
end
function RoomCorner:GetNeighbours()
return self:GetNeighbourWallSlab(SlabNeighbourMask.Left, "all"), self:GetNeighbourWallSlab(SlabNeighbourMask.Right, "all"), self:GetNeighbour(SlabNeighbourMask.Top, "all"), self:GetNeighbour(SlabNeighbourMask.Bottom, "all")
end
DefineClass.Destroyable = {
__parents = { "Object" },
properties = {
{ id = "is_destroyed", editor = "bool", default = false, no_edit = true },
},
}
function Destroyable:SetupFlags()
end
AutoResolveMethods.OnDestroy = "call"
Destroyable.OnDestroy = empty_func
function ShouldPlayDestructionFX(obj)
return true --stub
end
function Destroyable:Destroy()
self.is_destroyed = true
if not IsEditorActive() and ShouldPlayDestructionFX(self) then
self:PlayDestructionFX()
end
self:OnDestroy()
end
function Destroyable:Repair()
self.is_destroyed = false
end
local function touch(o, touchedSlabs) --for easier dbg
if IsValid(o) and not o.is_destroyed then
touchedSlabs[o] = true
end
end
local function touchd(o, touchedDestroyedSlabs)
if IsValid(o) and o.is_destroyed then
touchedDestroyedSlabs[o] = true
end
end
local function processRepairedRoofEdgeNbrHelper(slab, sideFlag, touchedDestroyedSlabs, touchedSlabs, corner)
local e = slab:GetNeighbourEdge(sideFlag, corner)
if e then
if e.is_destroyed then
e:Repair()
end
end
end
local function processRoofEdgeNbrHelper(slab, sideFlag, touchedDestroyedSlabs, touchedSlabs, corner)
local e = slab:GetNeighbourEdge(sideFlag, corner)
if e then
if e.is_destroyed then
touchedDestroyedSlabs[e] = true
else
e:Destroy()
end
end
end
local function _processCornerNbrHelper(c, slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
if IsValid(c) then
if c.is_destroyed then
touchedDestroyedSlabs[c] = true
local otherWall = c:GetNeighbourWallSlab(sideFlag) or c:GetNeighbourWindow(sideFlag)
if otherWall then
touchedDestroyedSlabs[otherWall] = true
end
else
local s = slab.side or slabAngleToDir[slab:GetAngle()]
local isStructuralCorner = ((s == "North" or s == "South") and slab:IsStructuralRow(sideFlag)) or false --consider only x axis rows for corners
if not isStructuralCorner then
local otherWall = c:GetNeighbourWallSlab(sideFlag) or c:GetNeighbourWindow(sideFlag)
if otherWall then
local osf = maskToOppositeMask[sideFlag]
s = otherWall.side or slabAngleToDir[otherWall:GetAngle()]
isStructuralCorner = ((s == "North" or s == "South") and otherWall:IsStructuralRow(osf)) or false
if not isStructuralCorner and otherWall.is_destroyed then
--no structure row on either side and both walls destroyed
c:Destroy()
touchedDestroyedSlabs[otherWall] = true
else
touch(otherWall, touchedSlabs)
end
else --no other wall
c:Destroy()
end
end
end
elseif type(c) == "table" then
for i = 1, #c do
_processCornerNbrHelper(c[i], slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
end
end
end
local function processCornerNbrHelper(slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
local c = slab:GetNeighbourCorner(sideFlag, "all")
_processCornerNbrHelper(c, slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
end
local function _processRepairedCornerNbrHelper(c, slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
if IsValid(c) then
if c.is_destroyed then
c:Repair()
local otherWall = c:GetNeighbourWallSlab(sideFlag)
if otherWall then
if otherWall.is_destroyed then
touchedDestroyedSlabs[otherWall] = true
else
touch(otherWall, touchedSlabs)
end
end
end
elseif type(c) == "table" then
for i = 1, #c do
_processRepairedCornerNbrHelper(c[i], slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
end
end
end
local function processRepairedCornerNbrHelper(slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
local c = slab:GetNeighbourCorner(sideFlag, "all")
_processRepairedCornerNbrHelper(c, slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
end
local function _processRepairedNbr(n, sideFlag, touchedDestroyedSlabs, touchedSlabs, slab)
if IsValid(n) then
local osf = GetNeigbhourSideFlagTowardMe(sideFlag, n, slab)
n.destroyed_neighbours = n.destroyed_neighbours & (~osf)
if n.is_destroyed then
touchedDestroyedSlabs[n] = true
else
touch(n, touchedSlabs)
end
elseif type(n) == "table" then
for i = 1, #n do
_processRepairedNbr(n[i], sideFlag, touchedDestroyedSlabs, touchedSlabs, slab)
end
end
end
local function processRepairedNbr(slab, sideFlag, touchedDestroyedSlabs, touchedSlabs)
local n = slab:GetNeighbour(sideFlag, "all")
_processRepairedNbr(n, sideFlag, touchedDestroyedSlabs, touchedSlabs, slab)
return IsValid(n) or #(n or "") > 0
end
function processStackedRoofWalls(slab, method)
MapForEach(slab, 0, slab.class, nil, const.efVisible, function(other, slab, method)
if other ~= slab then
other[method](other)
end
end, slab, method)
end
local function processStackedRoofs(slab, method)
if slab:GetClipPlane() ~= 0 then
--clipped tiles overlap, kill everything overlapping
MapForEach(slab, 0, slab.class, nil, const.efVisible, function(obj, slab, method)
if obj ~= slab then
obj[method](obj)
end
end, slab, method)
if slab.room then
--this would work for new roofs, but there was a nasty round error so gable pieces are offset
local other = MapGetFirst(slab, 1, slab.class, nil, const.efVisible, function(o) return o.roof_comp == "Gable" end)
if other then
other[method](other)
end
end
end
end
local function destroyRoffWallsHelper(x, y, z, method)
local others = MapGet(x, y, z, 0, "RoofWallSlab", nil, const.efVisible)
for i = 1, #(others or "") do
local o = others[i]
if o:GetClipPlane() ~= 0 then
o[method](o)
end
end
end
local function processWallsBelowEaves(slab, method)
local x, y, z = slab:GetPosXYZ()
z = snapZ(z)
destroyRoffWallsHelper(x, y, z, method) --tile below
local bz = snapZ(z - 1) --tile below that
destroyRoffWallsHelper(x, y, bz, method)
local rp = slab:GetRelativePoint(point(0, -halfVoxelSizeY, 0))
destroyRoffWallsHelper(rp:x(), rp:y(), z, method) --offset tile below
destroyRoffWallsHelper(rp:x(), rp:y(), bz, method) --offset tile below that
local rp = slab:GetRelativePoint(point(0, halfVoxelSizeY, 0))
destroyRoffWallsHelper(rp:x(), rp:y(), z, method) --other dir offset tile below
destroyRoffWallsHelper(rp:x(), rp:y(), bz, method) --offset tile below that
end
local function processWallsBelowRoofPlanes(slab, method)
local x, y, z = slab:GetPosXYZ()
local a = slab:GetAngle()
local flipped = a % (180 * 60) ~= 0
local lx, ly, rx, ry
if not flipped then
ly = y + halfVoxelSizeY
ry = y - halfVoxelSizeY
rx = x
lx = x
else
lx = x - halfVoxelSizeX
rx = x + halfVoxelSizeX
ry = y
ly = y
end
z = snapZ(z)
destroyRoffWallsHelper(lx, ly, z, method) --tile below
destroyRoffWallsHelper(rx, ry, z, method) --tile below
local bz = snapZ(z - 1) --tile below that
destroyRoffWallsHelper(lx, ly, bz, method)
destroyRoffWallsHelper(rx, ry, bz, method)
if not flipped then
local ox = x - halfVoxelSizeX
destroyRoffWallsHelper(ox, ly, z, method) --offset tile below
destroyRoffWallsHelper(ox, ly, bz, method) --offset tile further below
destroyRoffWallsHelper(ox, ry, z, method) --offset tile below
destroyRoffWallsHelper(ox, ry, bz, method) --offset tile further below
ox = x + halfVoxelSizeX
destroyRoffWallsHelper(ox, ly, z, method) --offset in other dir tile below
destroyRoffWallsHelper(ox, ly, bz, method) --offset in other dir tile further below
destroyRoffWallsHelper(ox, ry, z, method) --offset in other dir tile below
destroyRoffWallsHelper(ox, ry, bz, method) --offset in other dir tile further below
else
local oy = y - halfVoxelSizeY
destroyRoffWallsHelper(lx, oy, z, method) --offset tile below
destroyRoffWallsHelper(lx, oy, bz, method) --offset tile further below
destroyRoffWallsHelper(rx, oy, z, method) --offset tile below
destroyRoffWallsHelper(rx, oy, bz, method) --offset tile further below
oy = y + halfVoxelSizeY
destroyRoffWallsHelper(lx, oy, z, method) --offset in other dir tile below
destroyRoffWallsHelper(lx, oy, bz, method) --offset in other dir tile further below
destroyRoffWallsHelper(rx, oy, z, method) --offset in other dir tile below
destroyRoffWallsHelper(rx, oy, bz, method) --offset in other dir tile further below
end
end
local function processGableEdges(slab, method)
--look for gable edges
local cls
local mp = slab:GetPos()
local s = slabAngleToDir[slab:GetAngle()]
local offs = wallSidewaysOffsets[s]
if IsKindOf(slab, "RoofPlaneSlab") then
cls = "RoofEdgeSlab"
elseif IsKindOf(slab, "RoofEdgeSlab") then
cls = "RoofCorner"
end
local l = MapGetFirst(mp:x() + offs.x * halfVoxelSizeX, mp:y() + offs.y * halfVoxelSizeY, mp:z(), 0, cls, nil, const.efVisible)
local r = MapGetFirst(mp:x() - offs.x * halfVoxelSizeX, mp:y() - offs.y * halfVoxelSizeY, mp:z(), 0, cls, nil, const.efVisible)
if l then l[method](l) end
if r then r[method](r) end
end
local maxDist = voxelSizeZ * 2
function WallSlab:TryGetAdjacentRoofPlane(aboveOnly)
local offs = point(-halfVoxelSizeX, 0, 0)
local f = self:GetRelativePoint(offs)
local _, _, selfZ = self:GetPosXYZ()
local roof = MapGetFirst(f, 1, "RoofPlaneSlab", nil, const.efVisible, function(o, self, selfZ)
return o.roof_comp == "Plane" and
(not self.room or o.room == self.room or (not o.room or o.room:IsRoofOnly() and not self.room:HasRoofSet())) and
(not aboveOnly or o:GetPos():z() >= selfZ)
end, self, selfZ)
return roof and IsCloser(roof, f, maxDist) and roof or false
end
function WallSlab:TryGetAdjacentRoofPlaneInFront()
local offs = point(halfVoxelSizeX, 0, 0)
local f = self:GetRelativePoint(offs)
local _, _, selfZ = self:GetPosXYZ()
local roof = MapGetFirst(f, 1, "RoofPlaneSlab", nil, const.efVisible, function(o, self, selfZ)
local _, _, oz = o:GetPosXYZ()
return o.roof_comp == "Plane" and
(not o.room or o.room:IsRoofOnly()) and
(oz >= selfZ and oz < (selfZ + voxelSizeZ))
end, self, selfZ)
return roof
end
RoofEdgeSlab.TryGetAdjacentRoofPlane = WallSlab.TryGetAdjacentRoofPlane
function ShouldDoDestructionPass()
return not (#DestroyedCOThisTick <= 0 and #RepairedSlabsThisTick <= 0 and #DestroyedSlabsThisTick <= 0 and #DestroyedObjectsThisTick <= 0)
end
local debrisThisTick = 0
function ProcessDestroyedObjectsThisTick()
if not ShouldDoDestructionPass() then
return
end
SuspendPassEdits("ProcessDestroyedObjectsThisTick")
--print("pass", #DestroyedCOThisTick, #RepairedSlabsThisTick, #DestroyedSlabsThisTick, #DestroyedObjectsThisTick)
local allDestroyed = {}
debrisThisTick = 0
while #DestroyedSlabsThisTick > 0 or #RepairedSlabsThisTick > 0 do --disconnected slabs will generate another pass, run it now to avoid suspendpassresume between passes
table.iappend(allDestroyed, ProcessDestroyedSlabsThisTick())
end
--sound fx
local c = #allDestroyed
if c > 0 then
local fxPos = AveragePoint(allDestroyed)
local fxAction = c < 5 and "BulkDestructionSmall" or c < 9 and "BulkDestructionMedium" or "BulkDestructionLarge"
PlayFX(fxAction, "start", nil, nil, fxPos)
end
ProcessDestroyedGenericObjectsThisTick()
ProcessDestroyedCOThisTick()
ResumePassEdits("ProcessDestroyedObjectsThisTick")
Msg("DestructionPassDone")
end
function ProcessDestroyedGenericObjectsThisTick()
--stub
end
function ProcessDestroyedCOThisTick()
if #DestroyedCOThisTick <= 0 then
return
end
DoneObjects(DestroyedCOThisTick)
DestroyedCOThisTick = {}
end
local function TouchNonDestroyedNeighbours(o, touchedSlabs)
local nbrs = {o:GetNeighbours()}
local function porcessNeighbours(lst)
if IsValid(lst) then
if not lst.is_destroyed then
touch(lst, touchedSlabs)
end
else
for i, nbr in ipairs(lst) do
porcessNeighbours(nbr)
end
end
end
for _, lst in ipairs(nbrs) do
porcessNeighbours(lst)
end
end
function ProcessObjectsAroundSlabs(destroyedFloorBoxes, destroyedFloorMap, destroyedWallBoxes, destroyedRoofBoxes)
--project specific
end
local point21 = point(1, 1, 0)
function ProcessDestroyedSlabsThisTick()
if #RepairedSlabsThisTick <= 0 and #DestroyedSlabsThisTick <= 0 then
return
end
local lst = DestroyedSlabsThisTick
local touchedSlabs = {}
local touchedDestroyedSlabs = {}
DestroyedSlabsThisTick = {}
local destroyedFloorMap = {}
local destroyedFloorBoxes = {}
local function AddFloorBox(box)
local nb = box:grow(1) --grow to catch touching boxes
for i = 1, #destroyedFloorBoxes do
local ob = destroyedFloorBoxes[i]
local ir = ob:Intersect(nb)
if ir == const.irInside or ob == nb then
return
end
if ir ~= const.irOutside then
local nb = AddRects(ob, box)
table.remove(destroyedFloorBoxes, i)
AddFloorBox(nb)
return
end
end
table.insert(destroyedFloorBoxes, box)
end
local function appendBoxToBoxContainer(box, boxContainer)
local x, y, z = box:sizexyz()
for i, otherBox in ipairs(boxContainer) do
local nb = AddRects(box, otherBox)
local ox, oy, oz = otherBox:sizexyz()
local nx, ny, nz = nb:sizexyz()
if oz + z >= nz and ((nx == x and (oy + y + 1) >= ny)
or (ny == y and (ox + x + 1) >= nx)) then
boxContainer[i] = nb
return i
end
end
table.insert(boxContainer, box)
return #boxContainer
end
--appendBoxToBoxContainer = C_AppendBoxToBoxContainer
local extrudeBoxWith = 200
local destroyedWallBoxes = {}
local destroyedWallBoxesOnTop = {}
local function AddWallBox(box, growZ)
local x, y, z = box:sizexyz()
growZ = growZ or 0
if x < y then
box = box:grow(extrudeBoxWith, 0, growZ)
elseif x > y then
box = box:grow(0, extrudeBoxWith, growZ)
else
box = box:grow(extrudeBoxWith, extrudeBoxWith, growZ)
end
local i = appendBoxToBoxContainer(box, destroyedWallBoxes)
if growZ > 0 then
destroyedWallBoxesOnTop[i] = true
end
end
local destroyedRoofBoxes = {}
local function AddRoofBox(b, slab)
local z = slab.room and slab.room.roof_box:minz() or b:minz() - extrudeBoxWith
b = box( (b:min() + point21):SetZ(z), (b:max() + point21):AddZ(extrudeBoxWith))
appendBoxToBoxContainer(b, destroyedRoofBoxes)
end
local roomsWithDestroyedRoofPlaneSlabs = {}
local roomsWithDestroyedRoofEdgeSlabs = {}
local roomsWithDestroyedSlabs = {}
local inEditor = IsEditorActive()
local i = 1
while i <= #lst do
local slab = lst[i]
slab:SetDestroyedState(inEditor)
touchedDestroyedSlabs[slab] = true
if slab.room then
roomsWithDestroyedSlabs[slab.room] = true
end
local ured = slab.use_replace_ent_destruction
--process nbrs
local left, right, top, bottom = slab:GetNeighbours()
local function processNeighbours(o, sideFlag, touchedDestroyedSlabs, touchedSlabs)
if IsValid(o) then
if not ured then
local f = GetNeigbhourSideFlagTowardMe(sideFlag, o, slab)
o.destroyed_neighbours = o.destroyed_neighbours | f
end
if o.is_destroyed then
touchedDestroyedSlabs[o] = true
if o:GetStateText():starts_with("broken") then
--if its a "broken" slabwallobj it could spontaenously decide it no longer is such and repaired nbrs need to fix their broken look towards it
TouchNonDestroyedNeighbours(o, touchedSlabs)
end
if rawget(o, "always_visible") then
--sometimes we wont get the window but rather it's walls
touchd(MapGetFirst(o, 0, "SlabWallObject"), touchedDestroyedSlabs)
end
else
touch(o, touchedSlabs)
end
elseif type(o) == "table" then
for i = 1, #o do
processNeighbours(o[i], sideFlag, touchedDestroyedSlabs, touchedSlabs)
end
end
end
local function destroyAndPush(s)
if IsValid(s) and not s.is_destroyed then
touchedDestroyedSlabs[s] = true
s:Destroy()
end
end
if IsKindOf(slab, "WallSlab") then
local ventWindowOwned = slab.always_visible
if IsKindOf(slab, "RoofWallSlab") or ventWindowOwned then
--these stack, destroy all stacked pieces
processStackedRoofWalls(slab, "Destroy")
end
if ventWindowOwned then
local w = MapGetFirst(slab, 0, "SlabWallObject")
if w and not w.is_destroyed then
w:Destroy()
end
end
local nbr = slab:TryGetAdjacentRoofPlane()
touch(nbr, touchedSlabs)
--check for nbr corners and figure out what to do
processCornerNbrHelper(slab, SlabNeighbourMask.Left, touchedDestroyedSlabs, touchedSlabs)
processCornerNbrHelper(slab, SlabNeighbourMask.Right, touchedDestroyedSlabs, touchedSlabs)
--destroy floors in front or behind
local offs = point(halfVoxelSizeX, 0, 0)
local f = slab:GetRelativePoint(offs)
local floor = MapGetFirst(f, 0, "FloorSlab", "CeilingSlab", nil, const.efVisible)
destroyAndPush(floor)
f = slab:GetRelativePoint(-offs)
floor = MapGetFirst(f, 0, "FloorSlab", "CeilingSlab", nil, const.efVisible)
destroyAndPush(floor)
local lnbr1, lnbr2 = slab:GetNeighboursAroundCorner(SlabNeighbourMask.Left)
local rnbr1, rnbr2 = slab:GetNeighboursAroundCorner(SlabNeighbourMask.Right)
--process T junktion walls
if IsValid(left) or #(left or "") > 0 then
destroyAndPush(lnbr1)
destroyAndPush(lnbr2)
else
touchd(lnbr1, touchedDestroyedSlabs)
touchd(lnbr2, touchedDestroyedSlabs)
end
if IsValid(right) or #(right or "") > 0 then
local nbr1, nbr2 = slab:GetNeighboursAroundCorner(SlabNeighbourMask.Right)
destroyAndPush(rnbr1)
destroyAndPush(rnbr2)
else
touchd(rnbr1, touchedDestroyedSlabs)
touchd(rnbr2, touchedDestroyedSlabs)
end
AddWallBox(slab:GetObjectBBox(), not top and extrudeBoxWith)
elseif IsKindOf(slab, "RoofPlaneSlab") and slab.roof_comp ~= "Gable" then
MapForEach(slab:GetObjectBBox(), "RoofPlaneSlab", function(o, slab)
--destroy all roof planes on the same 2d pos
if o ~= slab then
o:Destroy()
end
end, slab)
processStackedRoofs(slab, "Destroy")
processWallsBelowRoofPlanes(slab, "Destroy")
for i = 0, 3 do
processRoofEdgeNbrHelper(slab, 1 << i, touchedDestroyedSlabs, touchedSlabs)
processRoofEdgeNbrHelper(slab, 1 << i, touchedDestroyedSlabs, touchedSlabs, "corner")
end
roomsWithDestroyedRoofPlaneSlabs[slab.room] = true
AddRoofBox(slab:GetObjectBBox(), slab)
local ceiling = MapGetFirst(slab, 1, "CeilingSlab", nil, const.efVisible)
if ceiling then
local cx, cy, cz = ceiling:GetPosXYZ()
local sx, sy, sz = slab:GetPosXYZ()
local range = voxelSizeZ * (slab:GetSeed(2, 2179) + 1)
if sz >= cz and sz - cz <= range then
ceiling:Destroy()
end
end
elseif IsKindOf(slab, "RoofEdgeSlab") then
if slab.roof_comp ~= "Gable" then
processWallsBelowEaves(slab, "Destroy")
local nbr = slab:TryGetAdjacentRoofPlane()
if IsValid(nbr) then
nbr:Destroy()
end
end
roomsWithDestroyedRoofEdgeSlabs[slab.room] = true
elseif IsKindOf(slab, "SlabWallObject") then
processCornerNbrHelper(slab, SlabNeighbourMask.Left, touchedDestroyedSlabs, touchedSlabs)
processCornerNbrHelper(slab, SlabNeighbourMask.Right, touchedDestroyedSlabs, touchedSlabs)
AddWallBox(slab:GetObjectBBox())
for _, nbr in ipairs(slab:GetNeighboursAroundCorner(SlabNeighbourMask.Left) or empty_table) do
touch(nbr, touchedSlabs)
end
for _, nbr in ipairs(slab:GetNeighboursAroundCorner(SlabNeighbourMask.Right) or empty_table) do
touch(nbr, touchedSlabs)
end
elseif IsKindOf(slab, "FloorSlab") then
destroyedFloorMap[EncodeVoxelPos(slab)] = true
AddFloorBox(slab:GetObjectBBox())
elseif IsKindOf(slab, "RoomCorner") then
AddWallBox(slab:GetObjectBBox(), not top and extrudeBoxWith)
end
processNeighbours(left, SlabNeighbourMask.Left, touchedDestroyedSlabs, touchedSlabs)
processNeighbours(right, SlabNeighbourMask.Right, touchedDestroyedSlabs, touchedSlabs)
processNeighbours(top, SlabNeighbourMask.Top, touchedDestroyedSlabs, touchedSlabs)
processNeighbours(bottom, SlabNeighbourMask.Bottom, touchedDestroyedSlabs, touchedSlabs)
if rawget(slab, "roof_comp") == "Gable" then
processGableEdges(slab, "Destroy")
end
if #DestroyedSlabsThisTick > 0 then
table.iappend(lst, DestroyedSlabsThisTick)
DestroyedSlabsThisTick = {}
end
i = i + 1
end
local processedDestroyedThisPass = lst
--repaired slabs
lst = RepairedSlabsThisTick
RepairedSlabsThisTick = {}
i = 1
while i <= #lst do
local slab = lst[i]
slab:SetRepairedState()
touch(slab, touchedSlabs)
--process neighbours
for i = 0, 3 do
processRepairedNbr(slab, 1 << i, touchedDestroyedSlabs, touchedSlabs)
end
if IsKindOf(slab, "WallSlab") then
if IsKindOf(slab, "RoofWallSlab") then
--these stack, destroy all stacked pieces
processStackedRoofWalls(slab, "Repair")
end
--check for nbr corners and figure out what to do
processRepairedCornerNbrHelper(slab, SlabNeighbourMask.Right, touchedDestroyedSlabs, touchedSlabs)
processRepairedCornerNbrHelper(slab, SlabNeighbourMask.Left, touchedDestroyedSlabs, touchedSlabs)
--intentionally don't repair floors and t junctions
elseif IsKindOf(slab, "RoofPlaneSlab") and slab.roof_comp ~= "Gable" then
processStackedRoofs(slab, "Repair")
processWallsBelowRoofPlanes(slab, "Repair")
for i = 0, 3 do
processRepairedRoofEdgeNbrHelper(slab, 1 << i, touchedDestroyedSlabs, touchedSlabs)
processRepairedRoofEdgeNbrHelper(slab, 1 << i, touchedDestroyedSlabs, touchedSlabs, "corner")
end
elseif IsKindOf(slab, "RoofEdgeSlab") then
if slab.roof_comp ~= "Gable" then
processWallsBelowEaves(slab, "Repair")
end
end
if rawget(slab, "roof_comp") == "Gable" then
processGableEdges(slab, "Repair")
end
if #RepairedSlabsThisTick > 0 then
table.iappend(lst, RepairedSlabsThisTick)
RepairedSlabsThisTick = {}
end
i = i + 1
end
--check for islands
local connectedSlabs = {}
local disconnectedSlabs = {}
local allDestroyed = SlabNeighbourMask.AllDestroyed
for slab, _ in sorted_handled_obj_key_pairs(touchedSlabs) do
if IsKindOf(slab, "RoofWallSlab") then
--if the tile is not voxel aligned not much we can do with it.
local x1, y1, z1 = WallVoxelToWorld(WallWorldToVoxel(slab))
local x2, y2, z2 = slab:GetPosXYZ()
if x1 ~= x2 or y1 ~= y2 then
connectedSlabs[slab] = true
end
end
if not IsKindOfClasses(slab, "WallSlab", "FloorSlab", "RoofPlaneSlab", "CeilingSlab", "SlabWallObject", "RoofEdgeSlab", "RoofCorner") then --only these support structures and such for now
connectedSlabs[slab] = true
elseif IsKindOf(slab, "RoofPlaneSlab") and slab.roof_comp == "Gable" then
connectedSlabs[slab] = true
elseif not disconnectedSlabs[slab] and not connectedSlabs[slab] then
local waveFront = {slab}
local passed = {}
local waveIsConnected = false
local count = 0 --for dbg
while #waveFront > 0 do
local nxtSlab = waveFront[#waveFront]
waveFront[#waveFront] = nil
waveFront[nxtSlab] = nil
assert(not passed[nxtSlab])
passed[nxtSlab] = true
local isLarge = IsKindOf(nxtSlab, "SlabWallObject")
if not waveIsConnected then
if connectedSlabs[nxtSlab] or nxtSlab:IsStructuralSlab() then
waveIsConnected = true
--DbgAddVector(nxtSlab:GetPos())
break
end
end
local function pushNbr(nbr)
if IsValid(nbr) then
if nbr and (not nbr.is_destroyed or nbr.use_replace_ent_destruction) and not passed[nbr] and not waveFront[nbr] then
table.insert(waveFront, nbr)
waveFront[nbr] = true
end
elseif type(nbr) == "table" then
for i = 1, #nbr do
pushNbr(nbr[i])
end
end
end
local sm = nxtSlab.destroyed_neighbours
local topNbr, botNbr, leftNbr, rightNbr
if (sm & SlabNeighbourMask.Top) == 0 or isLarge then
local nbr = nxtSlab:GetNeighbour(SlabNeighbourMask.Top)
topNbr = nbr
pushNbr(nbr)
end
if (sm & SlabNeighbourMask.Left) == 0 or isLarge then
local nbr = nxtSlab:GetNeighbour(SlabNeighbourMask.Left)
leftNbr = nbr
pushNbr(nbr)
end
local snbr1, snbr2 = nxtSlab:GetNeighboursAroundCorner(SlabNeighbourMask.Left) --propagate sideways around corners
pushNbr(snbr1)
pushNbr(snbr2)
if (sm & SlabNeighbourMask.Right) == 0 or isLarge then
local nbr = nxtSlab:GetNeighbour(SlabNeighbourMask.Right)
rightNbr = nbr
pushNbr(nbr)
end
snbr1, snbr2 = nxtSlab:GetNeighboursAroundCorner(SlabNeighbourMask.Right) --propagate sideways around corners
pushNbr(snbr1)
pushNbr(snbr2)
if (sm & SlabNeighbourMask.Bottom) == 0 or isLarge then
local nbr = nxtSlab:GetNeighbour(SlabNeighbourMask.Bottom)
botNbr = nbr
pushNbr(nbr)
end
if IsKindOf(nxtSlab, "WallSlab") then
--look for floors
pushNbr(nxtSlab:GetNeighbourFloor(SlabNeighbourMask.Top))
pushNbr(nxtSlab:GetNeighbourFloor(SlabNeighbourMask.Bottom))
--add roof planes above roof walls as nbrs
if not topNbr then --if we got a destroyed top nbr it exists, if it wasn't destroyed and we didn't get it it doesn't, so we must be @ the top row
local nbr = nxtSlab:TryGetAdjacentRoofPlane("aboveOnly")
pushNbr(nbr)
end
pushNbr(nxtSlab:TryGetAdjacentRoofPlaneInFront()) --eaves sticking out of walls
elseif IsKindOfClasses(nxtSlab, "RoofPlaneSlab", "DestroyableFloorSlab") then
--add roof walls below roof planes as nbrs
--or add walls nbring floors
if not topNbr then
pushNbr(nxtSlab:GetNeighbourWallSlab(SlabNeighbourMask.Top))
end
if not botNbr then
pushNbr(nxtSlab:GetNeighbourWallSlab(SlabNeighbourMask.Bottom))
end
if not leftNbr then
pushNbr(nxtSlab:GetNeighbourWallSlab(SlabNeighbourMask.Left))
end
if not rightNbr then
pushNbr(nxtSlab:GetNeighbourWallSlab(SlabNeighbourMask.Right))
end
--check for stairs around floors and treat them as structure, since they are invulnerable
pushNbr(nxtSlab:GetStairNeighbours())
if IsKindOf(nxtSlab, "RoofPlaneSlab") then
if not topNbr then
pushNbr(nxtSlab:GetNeighbourEdge(SlabNeighbourMask.Top))
end
if not botNbr then
pushNbr(nxtSlab:GetNeighbourEdge(SlabNeighbourMask.Bottom))
end
if not leftNbr then
pushNbr(nxtSlab:GetNeighbourEdge(SlabNeighbourMask.Left))
end
if not rightNbr then
pushNbr(nxtSlab:GetNeighbourEdge(SlabNeighbourMask.Right))
end
end
elseif IsKindOf(nxtSlab, "RoofEdgeSlab") then
pushNbr(nxtSlab:TryGetAdjacentRoofPlane())
if not leftNbr then
pushNbr(nxtSlab:GetNeighbourCorner(SlabNeighbourMask.Left))
end
if not rightNbr then
pushNbr(nxtSlab:GetNeighbourCorner(SlabNeighbourMask.Right))
end
end
count = count + 1
end
--print(count)
local t = waveIsConnected and connectedSlabs or disconnectedSlabs
for slab2, _ in pairs(passed) do
t[slab2] = true
end
end
end
local destroyed_disconnected = 0
for slab, _ in sorted_handled_obj_key_pairs(disconnectedSlabs) do
--force vulnerable if it is due to material or ld mark, will not force to vulnerable if it is invulnerable due to being interactable or any other reason.
--also, only invulnerable doors are not structural
--http://mantis.haemimontgames.com/view.php?id=206986
slab.invulnerable = false
slab:Destroy()
destroyed_disconnected = destroyed_disconnected + 1
end
if inEditor and destroyed_disconnected > 0 then
print(string.format("<color 165 0 255>%d slabs were not connected to structural slabs and were destroyed!</color>", destroyed_disconnected))
end
for slab, _ in sorted_handled_obj_key_pairs(touchedSlabs) do
if IsValid(slab) and connectedSlabs[slab] then --small window fake slabs may become invalid if the window was destroyed since we touched them
slab:UpdateEntity()
slab:UpdateVariantEntities()
slab:UpdateDecorationsDestroyedState()
end
end
for slab, _ in sorted_handled_obj_key_pairs(touchedDestroyedSlabs) do
if not table.find(DestroyedSlabsThisTick, slab) then --got destroyed this tick, it will update next tick
slab:UpdateEntity()
end
end
for room, _ in pairs(roomsWithDestroyedRoofPlaneSlabs) do
if room then
Notify(room, "OnRoofPlaneTilesDestroyed")
end
end
for room, _ in pairs(roomsWithDestroyedRoofEdgeSlabs) do
if room then
Notify(room, "OnRoofEdgeTilesDestroyed")
end
end
for room, _ in pairs(roomsWithDestroyedSlabs) do
Notify(room, "OnSlabsDestroyed")
end
ProcessObjectsAroundSlabs(destroyedFloorBoxes, destroyedFloorMap, destroyedWallBoxes, destroyedRoofBoxes, destroyedWallBoxesOnTop)
if inEditor then
--reselect destroyed slabs because their selection box disappears
local sel = editor.GetSel()
for i = #(sel or ""), 1, -1 do
local o = sel[i]
if touchedDestroyedSlabs[o] then
editor.RemoveObjFromSel(o, true)
--editor.AddObjToSel(o, true)
end
end
end
return processedDestroyedThisPass
end
function Volume:CheckInteriorLightingOnDestruction()
if self.dont_use_interior_lighting or self:IsRoofOnly() then return end
if IsEditorActive() then return end
--if more than 40% destroyed?
local total = 0
local destroyed = 0
self:ForEachSpawnedObj(function(o)
if o.isVisible then
total = total + 1
if o.is_destroyed then
destroyed = destroyed + 1
end
end
end)
local perc = MulDivRound(destroyed, 100, total)
if perc >= 40 then
self:Setdont_use_interior_lighting(true)
end
end
function Volume:OnSlabsDestroyed()
self:CheckInteriorLightingOnDestruction()
end
MapGameTimeRepeat("DestructionPP", -1, function()
WaitWakeup()
Sleep(0) --cmd objs hit directly need a bit for their command to fire, wait for them;
ProcessDestroyedObjectsThisTick()
end)
function WakeUpDestructionPP()
--needs to be real time in f3 so it works for ld
--needs to be game time not in f3 so it works in mp
local editor = IsEditorActive()
if editor then
DelayedCall(0, ProcessDestroyedObjectsThisTick)
else
Wakeup(PeriodicRepeatThreads["DestructionPP"])
end
end
function AppendDestroyedSlab(obj)
NetUpdateHash("AppendDestroyedSlab", obj)
table.insert(DestroyedSlabsThisTick, obj)
WakeUpDestructionPP()
end
function AppendRepairedSlab(obj)
table.insert(RepairedSlabsThisTick, obj)
WakeUpDestructionPP()
end
function DoneCombatObject(obj)
if IsKindOf(obj, "Unit") or not IsKindOf(obj, "CObject") then
table.insert(DestroyedCOThisTick, obj)
WakeUpDestructionPP()
else
obj:Destroy() --treat non unit co as generic destroyables
end
end
DefineClass.DestroyableSlab = {
__parents = { "Destroyable" },
properties = {
{ id = "destroyed_neighbours", editor = "number", default = 0, no_edit = true },
{ id = "destroyed_entity", editor = "string", default = false, no_edit = true },
{ id = "destroyed_entity_side", editor = "number", default = 0, no_edit = true },
{ id = "pre_destruction_subvariant", editor = "number", default = -1, no_edit = true },
{ id = "da_subvariants", editor = "prop_table", default = false, no_edit = true }, --.da_subvariants = {[id] = subvar, ...
{ id = "force_destroyed_entity", editor = "bool", default = false, no_edit = true },
{ category = "Slabs", id = "force_no_destroyed_entity", name = "Force No Destroyed Entity", editor = "bool", default = false, help = "If true, this slab will never look partially damaged due to neighbour being destroyed." },
{ category = "Slabs", id = "force_structural", name = "Force Structural", editor = "bool", default = false, },
{ category = "Slabs", id = "buttons2", name = "Buttons", editor = "buttons", default = false, dont_save = true, read_only = true,
buttons = {
{name = "Destroy", func = "DestroyFromEditor"},
{name = "Repair", func = "Repair"},
},
},
},
destroyed_attaches = false, --attaches don't get saved so rebuild them
diagonal_ent_mask = 0, --mark which sides the diag ent covers,
invulnerable = true, --by default, all are invulnerable so hand placed slabs are invulnerable, room and roof try to make all their owned slabs vulnerable
origin_of_destruction = false,
play_size_fx = false,
selection_marker = false,
collision_mask = false, --this preserves cm for repair purposes
use_replace_ent_destruction = false, --used to distinguish the type of destruction to use with this obj
}
local function EnumNeighbours(nbr, func)
if IsValid(nbr) then
func(nbr)
elseif type(nbr) == "table" then
for i = 1, #nbr do
func(nbr[i])
end
end
end
function DestroyableSlab:ManageSelectionMarker(create)
end
function DestroyableSlab:Setforce_no_destroyed_entity(val)
self.force_no_destroyed_entity = val
if val then
self:Repair()
else
local t = {self:GetNeighbours()}
for _, nbrs in ipairs(t) do
EnumNeighbours(nbrs, function(nbr)
if nbr.is_destroyed then
AppendDestroyedSlab(nbr)
end
end)
end
end
end
function DestroyableSlab:RestorePreDestructionSubvariant()
self.subvariant = self.pre_destruction_subvariant
self.pre_destruction_subvariant = -1
end
function DestroyableSlab:UnlockSubvariantReversible()
self.pre_destruction_subvariant = self.subvariant
self.subvariant = -1
end
function DestroyableSlab:ResetDestroyedState()
self.is_destroyed = nil
self.destroyed_neighbours = nil
self.destroyed_entity = nil
self.destroyed_entity_side = nil
self.force_no_destroyed_entity = nil
self.force_destroyed_entity = nil
self.da_subvariants = nil
self.diagonal_ent_mask = nil
self.use_replace_ent_destruction = nil
for k, v in pairs(self.destroyed_attaches or empty_table) do
DoneObject(v)
end
self.destroyed_attaches = nil
end
function DestroyableSlab:Die()
--command func called on death
CombatLog("debug", T{Untranslated(" <name> was destroyed"), name = self:GetLogName()})
self:Destroy()
end
--resolve inheritence, zulu specific
Slab.Die = DestroyableSlab.Die
--corners only get destroyed trhough nbr walls
RoomCorner.Die = empty_func
function DestroyableSlab:DestroyFromEditor()
self:SetforceInvulnerableBecauseOfGameRules(false)
self:Destroy()
end
dbgForceUseDamaged = false
function DestroyableSlab:ShouldUseReplaceEntDestruction()
--figure out destruction type, i.e. use_replace_ent_destruction = ?
if not IsEditorActive() or dbgForceUseDamaged then
local svd = self:GetMaterialPreset()
if svd.use_damaged or (svd.use_damaged_first_floor and self.floor == 1) then
return true
end
end
end
function DestroyableSlab:Destroy(origin_of_destruction)
if self.is_destroyed or self:IsInvulnerable() then
return
end
self:UnlockSubvariantReversible() --clear user selected subvar on death
self.origin_of_destruction = origin_of_destruction
Destroyable.Destroy(self)
self.use_replace_ent_destruction = self:ShouldUseReplaceEntDestruction()
AppendDestroyedSlab(self)
self:ManageSelectionMarker(true and not self.use_replace_ent_destruction)
end
function DestroyableSlab:Repair(dont_propagate)
if not self.is_destroyed then
if self.destroyed_entity then
local side = self.destroyed_entity_side
local isStacked = IsKindOf(self, "RoofWallSlab")
local nbrs = self:GetNeighbour(side, isStacked or nil) --roof wall slabs are sometimes stacked, need to fix all nbrs in that case
self.destroyed_entity_side = 0
self.destroyed_entity = false
self.force_no_destroyed_entity = true
self.force_destroyed_entity = false
SuspendPassEdits("DestroyableSlab:Repair")
if nbrs then
nbrs = IsValid(nbrs) and {nbrs} or nbrs
for _, nbr in ipairs(nbrs) do
if nbr.da_subvariants then
--DbgAddCircle(nbr:GetPos(), 200)
local f = GetNeigbhourSideFlagTowardMe(side, nbr, self)
local offset = nbr:GetDestroyedAttachOffset(f, self)
local id = GetDestroyedSlabAttachId(f, offset)
nbr.da_subvariants[id] = nil
if not next(nbr.da_subvariants) then
nbr.da_subvariants = nil
end
end
nbr:UpdateDestroyedState()
end
end
self:RestorePreDestructionSubvariant()
self:UpdateEntity()
self:UpdateVariantEntities()
if not dont_propagate and isStacked then
local lst = MapGet(self, 0, self.class)
for _, slab in ipairs(lst) do
if slab ~= self then
slab:Repair("dont_propagate")
end
end
end
ResumePassEdits("DestroyableSlab:Repair")
end
return
end
self:RestorePreDestructionSubvariant()
self.da_subvariants = nil
self.diagonal_ent_mask = nil
Destroyable.Repair(self)
AppendRepairedSlab(self)
self:ManageSelectionMarker(false)
end
function SlabWallObject:SetDestroyedState()
DestroyableSlab.SetDestroyedState(self)
self:UpdateManagedSlabs()
self:UpdateManagedObj()
self:DestroyAttaches()
end
function DestroyableFloorSlab:SetDestroyedState(...)
DestroyableSlab.SetDestroyedState(self, ...)
if not self.use_replace_ent_destruction then
self:SetAngle(0)
end
end
function DestroyableSlab:SetDestroyedState(no_debris)
self.collision_mask = collision.GetAllowedMask(self)
self.force_no_destroyed_entity = nil
self.force_destroyed_entity = nil
if not no_debris then
--attaches spread debris, so b4 destroyattaches
self:SpreadDebris()
end
self:DestroyAttaches()
self.destroyed_attaches = false
self:ClearEnumFlags(const.efCollision + const.efApplyToGrids)
collision.SetAllowedMask(self, 0)
Msg("DestroyableSlabDestroyed", self, no_debris)
end
function DestroyableSlab:SetRepairedState()
self:DestroyAttaches()
self.destroyed_attaches = false
self.use_replace_ent_destruction = false
self:SetEnumFlags(const.efCollision + const.efApplyToGrids)
collision.SetAllowedMask(self, self.collision_mask or 0)
self:SetState("idle")
end
local details_cache = {}
local function GetDebrisLOD()
local detail = EngineOptions.ObjectDetail
local LOD = details_cache[detail]
if LOD then
return LOD
end
LOD = table.find_value(OptionsData.Options.ObjectDetail, "value", detail).ObjectLODPercents
details_cache[detail] = LOD
return LOD
end
function DestroyableSlab:GetDebrisInfo(entity)
local classes, debris_min, debris_max = GetDebrisInfo(entity or self:GetEntity())
if not classes then
return 0
end
local LOD = GetDebrisLOD()
local count = classes and ((debris_min + self:Random(debris_max - debris_min + 1)) * LOD / 100) or 0
local radius = const.DebrisExplodeRadius
return count, classes, radius
end
function SpreadDebris(self, count, debris_classes, radius, origin_of_destruction)
PlayFX("SpreadDebris", "explosion", self, self.material)
local slab_pos = self:GetPos()
for i = 1, count do
debrisThisTick = debrisThisTick + 1
--throttle debris
local div = Min(((debrisThisTick) / 100) + 1, 10)
if (debrisThisTick % div) ~= 0 then
goto vlad
end
local slot = self:Random(debris_classes.total_weight)
local idx = GetRandomItemByWeight(debris_classes, slot, "weight")
local class = debris_classes[idx].class
local debris = PlaceObject(class)
debris.spawning_obj = self
debris:SetColorization(self)
debris:StartPhase("Explode", slab_pos, radius, origin_of_destruction or self.origin_of_destruction)
--debris:BootDebris("Explode", slab_pos, radius, origin_of_destruction or self.origin_of_destruction) --this basically shifts the hit from creating mny gtts to a later frame
::vlad::
end
end
function DestroyableSlab:SpreadDebris()
MapForEach(self:GetObjectBBox():grow(halfVoxelSizeX / 4, halfVoxelSizeY / 4, halfVoxelSizeZ / 4), "Debris", DoneObject)
local count, debris_classes, radius = self:GetDebrisInfo()
if count <= 0 then return end
SpreadDebris(self, count, debris_classes, radius)
end
function WallSlab:SpreadDebris()
MapForEach(self:GetObjectBBox():grow(halfVoxelSizeX / 4, halfVoxelSizeY / 4, halfVoxelSizeZ / 4), "Debris", DoneObject)
local count, debris_classes, radius = self:GetDebrisInfo()
if count > 0 then
SpreadDebris(self, count, debris_classes, radius)
end
for _, o in ipairs(self.variant_objects or empty_table) do
count, debris_classes, radius = self:GetDebrisInfo(o:GetEntity())
if count > 0 then
SpreadDebris(o, count, debris_classes, radius, self.origin_of_destruction)
end
end
end
const.TestExplodeRadius = voxelSizeX * 2 + 10
function DbgTestExplode(pt, fx)
if not pt then
local eye = camera.GetEye()
local cursor = ScreenToGame(terminal.GetMousePos())
local sp = eye
local ep = (cursor - eye) * 1000 + cursor
local closest = false
local objs = IntersectObjectsOnSegment(sp, ep, 0, "Slab", function(o)
if o.isVisible and not o.is_destroyed then
closest = not closest and o or IsCloser(sp, o, closest) and o or closest
return true
end
end)
if closest then
local p1, p2 = ClipSegmentWithBox3D(sp, ep, closest)
pt = p1 or closest:GetPos()
end
end
if not pt then
pt = GetTerrainCursor()
end
if fx then
local terrainPt = GetExplosionDecalPos(pt)
local surf_fx_type = GetObjMaterial(pt)
local fxPt = abs(terrainPt:z() - pt:z()) <= voxelSizeZ * 2 and terrainPt or pt
PlayFX(fx, "start", "FragGrenade", surf_fx_type, fxPt)
end
local to_destroy = {}
MapForEach(pt, const.TestExplodeRadius + voxelSizeX, "Slab", "CeilingSlab", const.efVisible, 0, 0, function(o, pt, rad)
if IsCloser(o, pt, rad) then
table.insert(to_destroy, {slab = o, dist = o:GetDist(pt)})
end
end, pt, const.TestExplodeRadius)
table.sort(to_destroy, function(a, b) return a.dist < b.dist end)
for _, descr in ipairs(to_destroy) do
descr.slab:Destroy(pt)
end
end
DefineClass.DestroyableWallDecoration = {
__parents = { "Destroyable" },
properties = {
{ id = "managed_by_slab", editor = "bool", default = true, no_edit = true },
},
orig_ent = false, --need this for repair
}
function DestroyableWallDecoration:ChangeEntity(ne)
if self.handle == 1415991251 then
local a = 9
end
self.orig_ent = self.orig_ent or self:GetEntity()
Destroyable.ChangeEntity(self, ne)
end
function DestroyableWallDecoration:GetNeighbour(sideFlag)
assert(sideFlag & (sideFlag - 1) == 0) --only 1 flag must be set
local x, y, z = self:GetPosXYZ()
local qx, qy, qz
local s = slabAngleToDir[self:GetAngle()]
if sideFlag == SlabNeighbourMask.Left then
local offs = wallSidewaysOffsets[s]
qx, qy, qz = x + offs.x * voxelSizeX, y + offs.y * voxelSizeY, z
elseif sideFlag == SlabNeighbourMask.Right then
local offs = wallSidewaysOffsets[s]
qx, qy, qz = x - offs.x * voxelSizeX, y - offs.y * voxelSizeY, z
elseif sideFlag == SlabNeighbourMask.Top then
qx, qy, qz = x, y, z + voxelSizeZ
elseif sideFlag == SlabNeighbourMask.Bottom then
qx, qy, qz = x, y, z - voxelSizeZ
else
return false
end
--not all decs have the proper class
return MapGetFirst(qx, qy, qz, 0, "CObject", function(o) return IsKindOf(o, self.class) or o:GetEntity():starts_with("WallDec_") end)
end
function DestroyableWallDecoration:GetNeighbours()
local e = self.orig_ent or self:GetEntity()
if IsHorizontalDecoration(e) then
return self:GetNeighbour(SlabNeighbourMask.Left), self:GetNeighbour(SlabNeighbourMask.Right), false, false
else
return false, false, self:GetNeighbour(SlabNeighbourMask.Top), self:GetNeighbour(SlabNeighbourMask.Bottom)
end
end
--stubs for when used in common code with slab objs -> flat roof with parapet atm
function DestroyableWallDecoration:Setcolors(val)
self:SetColorization(val or self:GetDefaultColorizationSet())
end
function DestroyableWallDecoration:Setinterior_attach_colors()
end
function DestroyableWallDecoration:DelayedUpdateEntity()
end
function DestroyableWallDecoration:UpdateVariantEntities()
end
function DestroyableWallDecoration:UpdateEntity()
end
function DestroyableWallDecoration:UnlockSubvariant()
end
function DestroyableWallDecoration:AlignObj()
end
function MakeRoofWallSlabVulnerable()
MapForEach("map", "RoofWallSlab", function(o)
if o.room then
o.invulnerable = false
o.forceInvulnerableBecauseOfGameRules = false
end
end)
end
function EditorDestroyRepairSelectedObjs(destroy, class)
local fname = destroy and "Destroy" or "Repair"
local sel = editor.GetSel()
for _, obj in ipairs(sel) do
if obj:GetEnumFlags(const.efVisible) ~= 0 and (not class or IsKindOf(obj, class)) and obj:HasMember(fname) then --in bacon cobj doesn't have destroy, in zulu it does
obj[fname](obj)
end
end
end |