File size: 115,575 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 |
local function lUpdateSquadCurrentSector(squad, old_sector, new_sector, from_map)
if old_sector == new_sector then return end
local dir = gv_DeploymentDir
gv_DeploymentDir = false
local comingFromUnderground = IsSectorUnderground(old_sector)
local goingToUnderground = IsSectorUnderground(new_sector)
-- If coming from and moving to an underground sector, we are moving underground.
if comingFromUnderground and goingToUnderground then
comingFromUnderground = false
goingToUnderground = false
end
if not dir and old_sector then
if comingFromUnderground then
dir = "Underground"
else
local old_y, old_x = sector_unpack(old_sector)
local new_y, new_x = sector_unpack(new_sector)
if old_x < new_x then
dir = "West"
elseif old_x > new_x then
dir = "East"
elseif old_y < new_y then
dir = "North"
elseif old_y > new_y then
dir = "South"
end
end
end
if not dir and new_sector and goingToUnderground then
dir = "Underground"
end
for _, session_id in ipairs(squad.units) do
local merc = gv_UnitData[session_id]
merc.arrival_dir = dir or "North"
merc.already_spawned_on_map = false
merc.retreat_to_sector = false
end
if #GetSectorSquadsFromSide(gv_CurrentSectorId, "player1") == 0 then -- all squads left current sector, reload map if someone returns and then close satellite view
ForceReloadSectorMap = true -- if a squad returns to the map and the satellite is closed without map reload, we need to reload exploration
ObjModified(Game)
Msg("AllSquadsLeftSector")
end
end
function GetSectorSquadsToSpawnInTactical(sector_id)
return GetSquadsInSector(sector_id, "exclude_travelling", "include_militia", "exclude_arriving")
end
function LocalCheckUnitsMapPresence()
if not gv_Squads then return end
local update_map
local respawn_squads
for i, squad in ipairs(g_SquadsArray) do
local squadSector = squad.CurrentSector
local squadPresent = squadSector == gv_CurrentSectorId and not IsSquadTravelling(squad)
for _, session_id in ipairs(squad.units) do
local unit = g_Units[session_id]
local ud = gv_UnitData[session_id]
if not squadPresent and unit then
DoneObject(unit)
update_map = true
elseif squadPresent and not (unit and ud.already_spawned_on_map) then
respawn_squads = true
update_map = true
end
end
end
if respawn_squads then
MapForEachMarker("GridMarker", nil, function(marker)
marker:RecalcAreaPositions()
end)
UpdateEntranceAreasVisibility()
local conflict = GetSectorConflict()
local player, enemy = GetSectorSquadsToSpawnInTactical(gv_CurrentSectorId)
local squads = player
table.iappend(squads, enemy)
SpawnSquads(table.map(squads, "UniqueId"), conflict and conflict.spawn_mode or "explore")
end
-- remove released mercs or units who are no longer in a squad (like deleted enemy units from ModifySectorEnemySquads)
for i = #g_Units, 1, -1 do
local unit = g_Units[i]
if (unit:IsMerc() and not unit.Squad) or not unit.session_id then
DoneObject(unit)
update_map = true
end
end
if update_map then
SetupTeamsFromMap()
EnsureCurrentSquad()
end
ForceUpdateCommonUnitControlUI()
end
function NetSyncEvents.CheckUnitsMapPresence()
LocalCheckUnitsMapPresence()
end
function NetSyncEvents.CheatSatelliteTeleportSquad(squad_id, sector_id)
local squad = gv_Squads[squad_id]
if sector_id == squad.CurrentSector then return end
local sector = gv_Sectors[sector_id]
local squadWnd = g_SatelliteUI.squad_to_wnd[squad_id]
if not squadWnd then return end
local prev_sector_id = GetSquadPrevSector(squadWnd:GetVisualPos(), sector_id, sector.XMapPosition)
local curr_sector = gv_Sectors[squad.CurrentSector]
if curr_sector.conflict then
ResolveConflict(curr_sector)
end
-- reset operation
SectorOperation_CancelByGame(squad.units, false, true)
-- Ensure previous sector is valid
if IsTravelBlocked(sector_id, prev_sector_id) then
ForEachSectorCardinal(sector_id, function(s)
if not IsTravelBlocked(sector_id, s) then
prev_sector_id = s
return "break"
end
end)
end
SetSatelliteSquadCurrentSector(squad, sector_id, nil, "teleport", prev_sector_id)
if not gv_Sectors[sector_id].reveal_allowed then -- Teleported to unrevealed sector.
print("You teleported to an unrevealed sector. Use the 'Reveal All Sectors' cheat or you won't see your squad.")
end
squad.Retreat = false
squad:CancelTravel()
ObjModified("gv_SatelliteView")
ObjModified(gv_Squads)
end
function SquadReachedDest(squad)
return not squad.route or #squad.route == 1 and squad.route[1][1] == squad.CurrentSector
end
function NetSyncEvents.SatelliteStartShortcutMovement(squad_id, startTime, startSector)
SatelliteStartShortcutMovement(squad_id, startTime, startSector)
end
function SatelliteStartShortcutMovement(squad_id, startTime, startSector)
local squad = gv_Squads[squad_id]
squad.traversing_shortcut_start = startTime
squad.traversing_shortcut_start_sId = startSector
RecalcRevealedSectors()
Msg("SquadStartTraversingShortcut", squad)
end
function NetSyncEvents.SatelliteReachSector(squad_id, sector_id, ...)
local squad = gv_Squads[squad_id]
SetSatelliteSquadCurrentSector(squad, sector_id, ...)
end
function SetSatelliteSquadSide(unique_id, side)
local squad = unique_id and gv_Squads[unique_id]
if squad then
squad.Side = side
RemoveSquadsFromLists(squad)
AddSquadToLists(squad)
end
ObjModified(squad)
end
function IsWaterSector(sector)
if type(sector) == "string" then
sector = gv_Sectors[sector]
end
return sector and sector.Passability == "Water"
end
function SetSatelliteSquadCurrentSector(squad, sector_id, update_pos, teleport, prev_sector_id)
RemoveSquadFromSectorList(squad, squad.CurrentSector)
AddSquadToSectorList(squad, sector_id)
prev_sector_id = prev_sector_id or squad.CurrentSector
squad.arrive_in_sector = false
squad.PreviousSector = prev_sector_id
squad.CurrentSector = sector_id
local prev_sector = gv_Sectors[prev_sector_id]
local sector = gv_Sectors[sector_id]
if teleport then
squad.returning_water_travel = false
squad.water_route = false
SetSquadWaterTravel(squad, false)
squad.route = false
squad.uninterruptable_travel = false
else
local previousSectorIsWater = IsWaterSector(prev_sector)
local currentSectorIsWater = IsWaterSector(sector)
if not previousSectorIsWater and prev_sector_id then
squad.PreviousLandSector = prev_sector_id
end
-- If not retreating then add all previous sectors in the water route property.
if not squad.returning_water_travel then
if not previousSectorIsWater and currentSectorIsWater then
squad.water_route = { prev_sector_id }
end
if previousSectorIsWater then
if not currentSectorIsWater then
squad.water_route = false
elseif squad.water_route then
table.insert(squad.water_route, prev_sector_id)
end
end
end
-- If not travelling over water, reset trackers.
if not currentSectorIsWater and (not prev_sector or previousSectorIsWater) then
squad.returning_water_travel = false
squad.water_route = false
end
end
Msg("SquadSectorChanged", squad)
lUpdateSquadCurrentSector(squad, prev_sector_id, sector_id)
if update_pos then
squad.XVisualPos = sector.XMapPosition
end
local wasShortcut = false
if squad.traversing_shortcut_start then
wasShortcut = true
end
if teleport then
squad.traversing_shortcut_start_sId = false
squad.traversing_shortcut_start = false
SatelliteReachSectorCenter(squad.UniqueId, sector_id, prev_sector_id)
Msg("SquadTeleported", squad)
else
-- check for conflict
CheckAndEnterConflict(sector, squad, wasShortcut and squad.CurrentSector or prev_sector_id)
end
if wasShortcut then
squad.traversing_shortcut_start = false
squad.traversing_shortcut_start_sId = false
squad.traversing_shortcut_water = false
end
-- Optimization
-- Only update sector visuals when enemies move (as they can move out of the visible area)
-- and when the previous or current sector has an underground sector (as it could be toggled)
if not g_SatelliteUI then return end
if squad.Side ~= "player1" or gv_Sectors[sector_id .. "_Underground"] or gv_Sectors[prev_sector_id .. "_Underground"] then
g_SatelliteUI:UpdateSectorVisuals(prev_sector_id)
g_SatelliteUI:UpdateSectorVisuals(sector_id)
end
if wasShortcut then
RecalcRevealedSectors()
local squad_id = squad.UniqueId
local squadWnd = g_SatelliteUI.squad_to_wnd[squad_id]
if squadWnd then
local endSector = gv_Sectors[sector_id]
local endSectorPos = endSector.XMapPosition
squadWnd:SetPos(endSectorPos:x(), endSectorPos:y())
end
end
ObjModified(gv_Squads)
ObjModified(squad)
ObjModified(gv_Sectors[sector_id])
end
function SatelliteReachSectorCenter(squad_id, sector_id, prev_sector_id, dontUpdateRoute, dontCheckConflict, reason)
NetUpdateHash("SatelliteReachSectorCenter", squad_id, sector_id, prev_sector_id, dontUpdateRoute, dontCheckConflict)
local squad = gv_Squads[squad_id]
local route = squad.route
local player_squad = squad.Side == "player1" or squad.Side == "player2"
-- Delete route step
local vrUnit, returningLandTravel = false, false
if route and route[1] and not dontUpdateRoute then
local thisSection = route[1]
returningLandTravel = thisSection.returning_land_travel
table.remove(thisSection, 1)
-- Correct shortcut indices
if thisSection.shortcuts then
local shortcutsCorrected = {}
for i, _ in pairs(thisSection.shortcuts) do
local newIndex = i - 1
if newIndex >= 1 then
shortcutsCorrected[i - 1] = true
end
end
thisSection.shortcuts = shortcutsCorrected
end
if not gv_Squads[squad_id] then return end -- Squad despawned.
-- Reached end of route section
if route[1] and #route[1] == 0 then
table.remove(route, 1)
local reached = #route == 0 -- reached final destination
if reached and player_squad then
squad.uninterruptable_travel = false
squad.Retreat = false
CombatLog("important", T{801526980739, "<SquadName> has reached <SectorId(sector)>", SquadName = Untranslated(squad.Name), sector = squad.CurrentSector})
ObjModified("gv_SatelliteView")
Msg("PlayerSquadReachedDestination", squad_id)
if GetAccountStorageOptionValue("AutoPauseDestReached") then
SetCampaignSpeed(0, "UI")
end
end
if reached then
squad.route = false
Msg("SquadFinishedTraveling", squad)
-- Dynamic DB squads despawn once they reach the destination
if route.despawn_at_last_sector then
squad.despawn_on_next_tick = true
end
end
end
elseif route and route.center_old_movement then
local visualPos = GetSquadVisualPos(squad)
assert(visualPos == gv_Sectors[sector_id].XMapPosition)
route.center_old_movement = false
end
local nextSector = route and route[1]
nextSector = nextSector and nextSector[1][1]
local nextSectorIsWater = nextSector and gv_Sectors[nextSector].Passability == "Water"
local currentSectorIsWater = gv_Sectors[sector_id].Passability == "Water"
SetSquadWaterTravel(squad, nextSectorIsWater or currentSectorIsWater)
-- sector event when a player squad reaches the sector center in satellite
if player_squad then
ExecuteSectorEvents("SE_OnSquadReachSectorCenter", sector_id)
end
NetUpdateHash("SatelliteReachSectorCenter_FireMessage", squad_id, sector_id)
Msg("ReachSectorCenter", squad_id, sector_id, prev_sector_id)
-- Check if joining a squad, or any squad wants to join this one
if player_squad then
if squad.joining_squad then
-- Don't process further if squad joined another.
if UpdateJoiningSquad(squad) then
Msg("SquadStoppedTravelling", squad)
return
end
else
-- Loop in reverse as joining squads will remove items
for i = #g_PlayerSquads, 1, -1 do
local s = g_PlayerSquads[i]
if s.joining_squad == squad.UniqueId and s.CurrentSector == squad.CurrentSector then
UpdateJoiningSquad(s)
end
end
end
end
if dontCheckConflict then return end
local sector = gv_Sectors[sector_id]
if IsEnemySquad(squad_id) and (sector.Side == "enemy1" or sector.Side == "enemy2") then
return
end
-- check for conflict
local conflictSide = CheckAndEnterConflict(sector, squad, prev_sector_id)
-- check for forced conflict
if sector.ForceConflict and player_squad and not squad.Retreat and not sector.conflict then
EnterConflict(sector, prev_sector_id, conflictSide) -- should this be "locked" = sector.ForceConflict?
end
vrUnit = player_squad and (squad.units[AsyncRand(#squad.units) + 1] or squad.units[1])
local isPrevSectorU = gv_Sectors[prev_sector_id] and gv_Sectors[prev_sector_id].GroundSector
-- Play VR
if vrUnit and not sector.conflict and not returningLandTravel and (not reason or reason ~= "squad_split") then
local unit = vrUnit
if sector.InterestingSector and not sector.player_visited then
PlayVoiceResponse(unit, "InterestingSector")
elseif (not route or #route == 0) and not isPrevSectorU then
PlayVoiceResponse(unit, "SectorArrived")
elseif IsSquadTravelling(squad) then
PlayVoiceResponse(unit, "Travelling")
end
end
if player_squad then
gv_Sectors[sector_id].player_visited = true
end
-- change side
-- shield retreat as it can cause a recentering and we don't take over a sector while retreating from it
local sideChanged = false
if not sector.conflict and not squad.militia and not squad.Retreat then
sideChanged = SatelliteSectorSetSide(sector_id, squad.Side)
end
if player_squad or sector.Guardpost then
RecalcRevealedSectors()
elseif sideChanged and g_SatelliteUI then
g_SatelliteUI:UpdateSectorVisuals(sector_id)
end
if SquadCantMove(squad) then
CreateGameTimeThread(function()
--this will kill curr thread
Msg("SquadStoppedTravelling", squad)
end)
end
end
function GetTotalRouteTravelTime(start, route, squad)
if not start or not route then return 0, {} end
local units = squad.units
local side = squad.Side
local previous = start
local time = 0;
local breakdown = false
for i, w in ipairs(route) do
for ii, s in ipairs(w) do
if previous then
local nextTravel, _, __, b = GetSectorTravelTime(previous, s, route, units, nil, nil, side)
if b and #b > 0 then
breakdown = b -- The breakdown for all sectors along the route should be the same if they're of the same terrain type.
end
if nextTravel then
time = time + Max(nextTravel, lMinVisualTravelTime * 2)
end
end
previous = s
end
end
-- Subtract the time the squad has already crossed.
-- This can occur when changing routes mid travel (such as cancelling).
if not IsTraversingShortcut(squad) then
local currentSectorId = squad.CurrentSector
local currentSector = currentSectorId and gv_Sectors[currentSectorId]
local targetPos = currentSector and currentSector.XMapPosition
local visualPos = targetPos and GetSquadVisualPos(squad)
local previousSectorId = visualPos and currentSectorId and targetPos and
GetSquadPrevSector(visualPos, currentSectorId, targetPos)
local timeFirstSector = previousSectorId and
GetSectorTravelTime(previousSectorId, currentSectorId, false, squad.units, nil, nil, squad.Side)
if timeFirstSector then
local prevPos = gv_Sectors[previousSectorId].XMapPosition
local _, __, timeLeft = GetContinueInterpolationParams(
prevPos:x(),
prevPos:y(),
targetPos:x(),
targetPos:y(),
timeFirstSector,
visualPos)
if timeLeft then
local routeTimeCovered = time - timeLeft
routeTimeCovered = DivCeil(routeTimeCovered, const.Scale.min) * const.Scale.min
time = routeTimeCovered
end
end
else
local sectorFrom = squad.CurrentSector
local sectorTo = route and route[1] and route[1][1]
local shortcut = GetShortcutByStartEnd(sectorFrom, sectorTo)
if shortcut then
local travelTime = shortcut:GetTravelTime()
local arrivalTime = squad.traversing_shortcut_start + travelTime
local timeLeft = arrivalTime - Game.CampaignTime
local timePassed = travelTime - timeLeft
local routeTimeCovered = time - timePassed
routeTimeCovered = DivCeil(routeTimeCovered, const.Scale.min) * const.Scale.min
time = routeTimeCovered
end
end
return time, breakdown or empty_table
end
function RouteEndsInWater(route)
if #route > 0 and #route[#route] > 0 then
local last_path = route[#route]
local last_sector = last_path[#last_path]
return gv_Sectors[last_sector].Passability == "Water"
end
end
function RouteOverBlockedSector(route)
if not route then return false end
for i, wp in ipairs(route) do
for _, sectorId in ipairs(wp) do
local sector = gv_Sectors[sectorId]
if sector.Passability == "Blocked" then
return sectorId
end
end
end
return false
end
function GetRouteTotalPrice(route, squad)
local price = 0
local pricePerSector = 0
local cannotPayPast = false
local prevSectorId = squad and squad.CurrentSector
for i, r in ipairs(route) do
for j, sector_id in ipairs(r or empty_table) do
local prevSector = gv_Sectors[prevSectorId]
local sector = gv_Sectors[sector_id]
local shortcuts = r.shortcuts
if shortcuts and shortcuts[j] then
local shortcutPreset = GetShortcutByStartEnd(prevSectorId, sector_id)
if shortcutPreset and shortcutPreset.water_shortcut then
local cost = prevSector:GetTravelPrice(squad)
price = price + cost * shortcutPreset.TravelTimeInSectors
end
end
-- Get the cost from the port we just left
if prevSector and prevSector.Passability == "Land and Water" and prevSector.Port and not prevSector.PortLocked then
if sector.Passability == "Water" then
pricePerSector = prevSector:GetTravelPrice(squad)
end
end
-- Travelling on water still
if sector.Passability == "Water" and pricePerSector then
price = price + pricePerSector
else
pricePerSector = 0
end
if not cannotPayPast and not CanPay(price) then
cannotPayPast = sector_id
end
prevSectorId = sector_id
end
end
return price, cannotPayPast
end
function IsRouteForbidden(route, squad)
if not route then return true end
if route.invalid_shim then return true end
local routePrice, cannotPayPast = GetRouteTotalPrice(route, squad)
local firstErrorSectorId = false
local canPlaceWaypoint = false
local errors = {}
if Platform.demo then
local allowedSectors = {
["I1"] = true,
["I2"] = true,
["I3"] = true,
["H2"] = true,
["H3"] = true,
["H4"] = true,
}
for i, wp in ipairs(route) do
for _, sectorId in ipairs(wp) do
if not allowedSectors[sectorId] then
firstErrorSectorId = sectorId
errors[#errors + 1] = T(697751324120, "Not available in Demo")
break
end
end
end
end
if squad and squad.CurrentSector and gv_Sectors[squad.CurrentSector].conflict then
errors[#errors + 1] = T(735827574209, "Squads in conflict can't receive travel orders.")
firstErrorSectorId = firstErrorSectorId or squad.CurrentSector
end
if route.no_boat then
errors[#errors + 1] = T(866576847121, "You do not have access to a port in order to cross water sectors.")
firstErrorSectorId = firstErrorSectorId or route.no_boat
--[[ elseif not CanPay(routePrice) then
errors[#errors + 1] = T(968093564193, "Not enough money to pay for boat travel.")
firstErrorSectorId = firstErrorSectorId or cannotPayPast]]
elseif RouteEndsInWater(route) then
errors[#errors + 1] = T(368683270532, "The route ends in a water sector.")
firstErrorSectorId = firstErrorSectorId or route[#route] and route[#route][#route[#route]]
canPlaceWaypoint = true
else
local sectorId = RouteOverBlockedSector(route)
if sectorId then
-- Pathfinding will never pick it, so we only need to realistically consider it as the last sector.
errors[#errors + 1] = T(399282935830, "The route ends on an impassable sector.")
firstErrorSectorId = firstErrorSectorId or sectorId
end
end
return #errors > 0, errors, firstErrorSectorId, canPlaceWaypoint
end
function GetSquadBusyAvailable(squad_id)
local busy, available = {}, {}
for _, merc_id in ipairs(gv_Squads[squad_id].units or empty_table) do
local operation = gv_UnitData[merc_id].Operation
if operation~= "Idle" and operation ~= "Traveling" then
busy[#busy + 1] = {merc_id = merc_id,operation = operation}
else
available[#available + 1] = merc_id
end
end
return busy, available
end
function GetSplitMoveChoice(busy, available)
local names = {}
for _, data in ipairs(busy) do
names[#names + 1] = gv_UnitData[data.merc_id].Nick
end
local singleMerc = #busy + #available == 1
local anyAvailable = #available > 0
local text
if singleMerc then
text = T{19660331151, "<em><list></em> is busy, do you want to move them anyway?", list = names[1]}
elseif #busy > 1 and #available == 0 then
text = T{153471084276, "<em><list></em> are busy, do you want to move them anyway?", list = ConcatListWithAnd(names)}
elseif #busy > 1 then
text = T{301515941137, "<em><list></em> are busy, do you want to split the squad?", list = ConcatListWithAnd(names)}
else
text = T{733472305625, "<em><list></em> is busy, do you want to split the squad?", list = names[1]}
end
local res = WaitPopupChoice(GetInGameInterface(), {
translate = true,
text = text,
choice1 = T(681120834266, "Force Move"),
choice1_gamepad_shortcut = "ButtonX",
choice2 = (not singleMerc and anyAvailable) and T(743829766820, "Split Squad"),
choice2_gamepad_shortcut = "ButtonY",
choice3 = T(395359253564, "Cancel Move"),
choice3_gamepad_shortcut = "ButtonB",
})
if res == 2 then
return "split"
elseif res == 1 then
return "force"
else
return "cancel"
end
end
function FixTreatWoundsOperations(busy)
for i, data in ipairs(busy) do
local operation = data.operation
local sector_operation = SectorOperations[operation]
local merc = gv_UnitData[data.merc_id]
local refund_amount
local prof_id = merc.OperationProfession
if merc.OperationProfessions and merc.OperationProfessions["Doctor"] and merc.OperationProfessions["Patient"] then
assert(operation=="TreatWounds")
refund_amount = sector_operation:GetOperationCost(merc, "Patient")
for _,cst in ipairs(sector_operation:GetOperationCost(merc, "Doctor")) do
table.insert(refund_amount, cst)
end
else
refund_amount = sector_operation:GetOperationCost(merc, prof_id)
end
NetSyncEvent("RestoreOperationCostAndSetOperation", data.merc_id, refund_amount, "Idle", prof_id, false,false, "check_completed")
end
end
function TryAssignSatelliteSquadRoute(squad_id, route)
local busy, available = GetSquadBusyAvailable(squad_id)
local res
if next(busy) then
res = GetSplitMoveChoice(busy, available)
if res == "split" then
NetSyncEvent("SplitMercsAndAssignRoute", table.map(busy, "merc_id"), squad_id, route, "keepJoiningSquad")
elseif res == "force" then
FixTreatWoundsOperations(busy)
NetSyncEvent("AssignSatelliteSquadRoute", squad_id, route, "keepJoiningSquad")
end
else
NetSyncEvent("AssignSatelliteSquadRoute", squad_id, route, "keepJoiningSquad")
end
return res == "cancel" and "cancel"
end
function NetSyncEvents.SquadCancelTravel(squad_id, keepJoiningSquad, force)
local self = gv_Squads[squad_id]
if not self then return end
if not force and (SquadTravelCancelled(self) or not IsSquadTravelling(self, "skip_satellite_tick")) then
return
end
local route = false
-- If cancelling on a shortcut just stop after it
-- todo: should we maybe backtrack?
if IsTraversingShortcut(self) then
route = {}
route[1] = { self.route[1][1], shortcuts = { true } }
-- Don't consider as water route if cancelling at last tile (which is supposed to be a land tile)
elseif self.water_route and self.water_route[1] ~= self.CurrentSector then
route = {}
route[1] = table.reverse(self.water_route)
self.returning_water_travel = true
-- If currently not centered then return to center
elseif not IsSquadInSectorVisually(self, self.CurrentSector) then
route = {}
route[1] = {self.CurrentSector, ["returning_land_travel"] = true}
end
local visualPos = g_SatelliteUI and g_SatelliteUI.squad_to_wnd[self.UniqueId] and g_SatelliteUI.squad_to_wnd[self.UniqueId]:GetVisualPos()
NetSyncEvents.AssignSatelliteSquadRoute(self.UniqueId, route, keepJoiningSquad, visualPos, true)
end
function NetSyncEvents.AssignSatelliteSquadRoute(squad_id, route, keepJoiningSquad, pos, cancel)
NetUpdateHash("AssignSatelliteSquadRoute", squad_id, Game and Game.CampaignTime)
local squad = gv_Squads[squad_id]
if cancel then
for _, unit_id in ipairs(squad.units) do
local unit_data = gv_UnitData[unit_id]
if unit_data.Operation == "Traveling" then
unit_data:SetCurrentOperation("Idle")
end
end
end
SetSatelliteSquadRoute(squad, route, keepJoiningSquad, nil, pos)
end
function SplitSquad(squad, merc_ids)
if #squad.units == 1 or #merc_ids == 0 then return squad.UniqueId end
assert(squad.CurrentSector)
if not squad.CurrentSector then return end
local name = SquadName:GetNewSquadName(squad.Side)
local squad_id = CreateNewSatelliteSquad({
Side = squad.Side,
CurrentSector = squad.CurrentSector,
PreviousSector = squad.PreviousSector,
PreviousLandSector = squad.PreviousLandSector,
VisualPos = squad.VisualPos,
Name = name
}, merc_ids, nil, nil, nil, "squad_split"
)
return squad_id
end
function NetSyncEvents.SplitSquad(squad_id, merc_ids)
local squad = gv_Squads[squad_id]
local new_squad_id = SplitSquad(squad, merc_ids)
Msg("SyncSplitSquad", new_squad_id, squad_id)
end
-- Split off busy mercs and set a route for the squad.
function NetSyncEvents.SplitMercsAndAssignRoute(busy_merc_ids, old_squad_id, route, keepJoiningSquad)
local old_squad = gv_Squads[old_squad_id]
SplitSquad(old_squad, busy_merc_ids)
SetSatelliteSquadRoute(old_squad, route, keepJoiningSquad)
end
function SetSatelliteSquadRoute(squad, route, keepJoiningSquad, from, squadPos)
if g_TestCombat and not squad then return end
assert(squad)
NetUpdateHash("SetSatelliteRoute", squad.UniqueId, route, keepJoiningSquad, from, squadPos)
local wasTravelling = IsSquadTravelling(squad)
local nextSector = route and route[1] and route[1][1]
local nextIsUnderground = nextSector and IsSectorUnderground(nextSector)
local squadSectorPreset = squad.CurrentSector and gv_Sectors[squad.CurrentSector]
local squadSectorGroundSectorId = squadSectorPreset and squadSectorPreset.GroundSector
if squadSectorGroundSectorId and (nextSector and not nextIsUnderground) then
local from_map = from == "from_map"
SetSatelliteSquadCurrentSector(squad, squadSectorGroundSectorId, from_map)
SatelliteReachSectorCenter(squad.UniqueId, squad.CurrentSector, squad.PreviousSector)
-- Manually remove the overground sector from the route.
local firstWp = route and route[1]
if firstWp and firstWp[1] == squadSectorGroundSectorId then
table.remove(firstWp, 1)
if #firstWp == 0 then
table.remove(route, 1)
else
-- Correct shortcut indices if any
if firstWp.shortcuts then
local shortcutsCorrected = {}
for i, _ in pairs(firstWp.shortcuts) do
local newIndex = i - 1
if newIndex >= 1 then
shortcutsCorrected[i - 1] = true
end
end
firstWp.shortcuts = shortcutsCorrected
end
end
-- It is possible for there to be nothing else in the route as well.
if #route == 0 then
route = false
local curSector = gv_Sectors[squad.CurrentSector]
ObjModified(curSector)
Msg("SquadStartedTravelling", squad)
end
end
end
if route and route[1] then
assert(route[1].returning_land_travel or
route[1][1] ~= squad.CurrentSector or
route.water_route_assignment_route or
squad.Retreat)
end
if squad.Retreat then squad.Retreat = false end
-- If was pathing to join a squad, and a route is set - it no longer is. (Unless set by the tick itself)
if not keepJoiningSquad and squad.joining_squad then
TurnJoiningSquadIntoNormal(squad)
end
squad.route = route
if squadPos and g_SatelliteUI and g_SatelliteUI.squad_to_wnd[squad.UniqueId] then
g_SatelliteUI.squad_to_wnd[squad.UniqueId]:SetPos(squadPos:xy())
end
if squad.route then
SectorOperation_CancelByGame(squad.units)
else
SetSatelliteSquadCurrentSector(squad, squad.CurrentSector, "update_pos", "teleport")
Msg("SquadStoppedTravelling", squad)
return
end
-- Prevent squads starting travel from briefly missing conflict.
local curSector = gv_Sectors[squad.CurrentSector]
if not wasTravelling and not squad.Retreat and not curSector.conflict then
-- Used to mark this squad as not being centered despite not having moved yet.
-- This will prevent other cases of briefly missing conflict,
-- such as when the player squad is fast enough to exit the sector before the next check.
-- This property doesn't need to persist so we'll just set to false right after to prevent side effects.
squad.consider_visually_moved = true
CheckAndEnterConflict(curSector, squad, squad.PreviousSector)
squad.consider_visually_moved = false
end
-- If the first sector in the route is a water tile,
-- we're water travelling from the get go.
local first = route and route[1]
first = first and first[1]
SetSquadWaterTravel(squad, gv_Sectors[first].Passability == "Water")
ObjModified(curSector)
Msg("SquadStartedTravelling", squad)
end
function SetSquadTravellingActivity(squad)
-- This function can be called outside of satellite view when exiting via interactable.
-- The reason being that the routes are calculated beforehand due to user input popups being able to cancel the exit altogether.
local manualSync = not gv_SatelliteView
SectorOperation_CancelByGame(squad.units, false, true)
for _, unit_id in ipairs(squad.units) do
-- Sync unit to unitdata before we change the unitdata, so we can get
-- the latest version of the unit
local mapUnit = manualSync and g_Units[unit_id]
if mapUnit then
mapUnit:SyncWithSession("map")
end
local unit_data = gv_UnitData[unit_id]
local prev_operation = unit_data.Operation
unit_data:SetCurrentOperation("Traveling")
if unit_data.TravelTimerStart == 0 then
unit_data.TravelTimerStart = Game.CampaignTime
unit_data.RestTimer = 0
DbgTravelTimerPrint(unit_id, "start travel", "travel: ", unit_data.TravelTime / const.Scale.h or 0)
end
-- Sync new changes with unit
if mapUnit then
mapUnit:SyncWithSession("session")
end
end
end
function SetSatelliteSquadSecretRoute(squad, dest, time)
SetSatelliteSquadRoute(squad, false)
squad.arrive_in_sector = {time = time, sector_id = dest}
squad.CurrentSector = false
end
function SendSatelliteSquadOnRoute(squad, dest, params)
local route = GenerateRouteDijkstra(squad.CurrentSector, dest, squad.route, squad.units, params and params.enemy_guardpost and "enemy_guardpost", nil, squad.Side)
if not route then
assert(false, "SendSatelliteSquadOnRoute - spawned squad could not find route to target sector. " .. squad.CurrentSector .. "->" .. dest)
return
end
route = {route} -- Waypointify
SetSatelliteSquadRoute(squad, route)
end
function GetSquadVisualPos(squad)
local visPos = false
if g_SatelliteUI and g_SatelliteUI.squad_to_wnd[squad.UniqueId] then
local wnd = g_SatelliteUI.squad_to_wnd[squad.UniqueId]
if wnd.box == empty_box then
visPos = squad.XVisualPos
else
visPos = wnd:GetTravelPos()
end
else
visPos = squad.XVisualPos
end
return visPos
end
function IsSquadInSectorVisually(squad, sectorId)
local visPos = GetSquadVisualPos(squad)
sectorId = sectorId or squad.CurrentSector
local sector = gv_Sectors[sectorId]
-- Workaround for legacy saves. Remove in the future.
if not sector.XMapPosition then visPos = false end
if squad.CurrentSector ~= sectorId then return false end
if squad.consider_visually_moved then return false end
if not visPos or visPos == sector.XMapPosition then return true end
return false
end
function IsSquadTravelling(squad, regardlessSatelliteTickPassed)
if not squad then return false end
if squad.arrival_squad then return true end
if squad.Retreat then return true end
local squadSectorId = squad.CurrentSector
local squadSector = gv_Sectors[squadSectorId]
if squadSector.conflict and IsSquadInSectorVisually(squad, squadSectorId) then
return false
end
return squad.route and squad.route[1] and squad.route[1] and (squad.route.satellite_tick_passed or regardlessSatelliteTickPassed) and not squad.wait_in_sector
end
function AreSquadsInTheSameSectorVisually(squad1, squad2, undergroundInsensitive)
local sector1 = squad1.CurrentSector
local sector2 = squad2.CurrentSector
local visuallyThere1 = IsSquadInSectorVisually(squad1, sector1)
local visuallyThere2 = IsSquadInSectorVisually(squad2, sector2)
if undergroundInsensitive then
sector1 = gv_Sectors[sector1].GroundSector or sector1
sector2 = gv_Sectors[sector2].GroundSector or sector2
end
if sector1 ~= sector2 then return false end
return visuallyThere1 and visuallyThere2
end
function IsSquadInConflict(squad)
local squadSectorId = squad.CurrentSector
local squadSector = gv_Sectors[squadSectorId]
return squadSector.conflict and (not IsSquadTravelling(squad) and not IsTraversingShortcut(squad))
end
function IsSquadHasRoute(squad)
return squad and squad.route and squad.route[1]
end
function IsSquadInDestinationSector(squad)
return squad and squad.route and #squad.route == 1 and #squad.route[1] == 1 and squad.route[1][1] == squad.CurrentSector
end
-- moving squad from sector to sector without player control
function UninterruptableSquadTravel(squads_sectors_list, src_sector_id, dest_sector_id)
local squads = {}
for _, sector_id in ipairs(squads_sectors_list) do
for i, squad in ipairs(g_SquadsArray) do
if squad.CurrentSector == sector_id and
(squad.Side == "player1" or squad.Side == "player2") and not squad.arrival_squad then
squads[#squads + 1] = squad
end
end
end
for i, squad in ipairs(squads) do
local squadSector = squad.CurrentSector
if src_sector_id and src_sector_id ~= squadSector then
SetSatelliteSquadCurrentSector(squad, src_sector_id, true, "teleport")
if gv_Sectors[squadSector].conflict then ResolveConflict(gv_Sectors[squadSector], true) end
end
if src_sector_id == dest_sector_id then
return
end
squad.uninterruptable_travel = true
local route = GenerateRouteDijkstra(squad.CurrentSector, dest_sector_id, false, squad.units, nil, nil, squad.Side)
if route then
SetSatelliteSquadRoute(squad, { route })
end
end
end
function LocalPlayerHasAuthorityOverSquad(squad)
if squad.uninterruptable_travel then
return false
end
local count = 0
local units = squad.units
for i, session_id in ipairs(units) do
local merc = gv_UnitData[session_id]
if merc and merc:IsLocalPlayerControlled() then
count = count + 1
end
end
local unitCount = #units
return count > unitCount / 2 or (unitCount % 2 == 0 and count == unitCount / 2 and NetIsHost())
end
function GetSquadFinalDestination(startSector, route)
if not route then
return startSector, true
end
local routeDestination = false
local isCurrent = true
if route then
local finalPoint = route[#route]
if finalPoint then
routeDestination = finalPoint[#finalPoint]
isCurrent = routeDestination == startSector
else
routeDestination = startSector
isCurrent = true
end
end
return routeDestination, isCurrent
end
function GetSectorSquadsFromSide(sector_id, side1, side2)
if not sector_id then return empty_table end
local sector = gv_Sectors[sector_id]
local squads = {}
for i, squad in ipairs(sector.all_squads) do
if not squad.militia and not squad.arrival_squad and (not side1 or squad.Side == side1 or squad.Side == side2) then
squads[#squads + 1] = squad
end
end
return squads
end
function GetSectorSquads(sector_id)
local squads = {}
local sector = gv_Sectors[sector_id]
for i, squad in ipairs(sector and sector.all_squads) do
if not squad.arrival_squad then
squads[#squads + 1] = squad
end
end
return squads
end
function GetPlayerSectorUnits(sector_id, getUnits)
local squads = GetSectorSquadsFromSide(sector_id, "player1","player2")
local units = {}
for _, squad in ipairs(squads) do
for _, unit_id in ipairs(squad.units) do
local unit = getUnits and g_Units[unit_id] or gv_UnitData[unit_id]
assert(not table.find(units, unit))
units[#units + 1] = unit
end
end
return units
end
function FilterMercs(mercs, filter_func)
local filtered = {}
for _, merc in ipairs(mercs) do
if filter_func(merc) then
filtered[#filtered + 1] = merc
end
end
return filtered
end
function GetBestStatMerc(mercs, stat)
local best_stat = 0
local best_merc
for _, merc in ipairs(mercs) do
if not merc:IsTravelling() and merc[stat] > best_stat then
best_stat = merc[stat]
best_merc = merc
end
end
return best_merc
end
function GetUnitsByIds(unitIds, getUnitData)
local units = {}
for _, id in ipairs(unitIds) do
units[#units+1] = getUnitData and gv_UnitData[id] or g_Units[id]
end
return units
end
function GetUnitsFromSquads(squads, getUnitData)
local units = {}
for _, squad in ipairs(squads) do
table.iappend(units, GetUnitsByIds(squad.units, getUnitData))
end
return units
end
function HasRoad(from_sector_id, to_sector_id, cache_neighbors)
return GetDirectionProperty(from_sector_id, to_sector_id, "Roads", cache_neighbors)
end
function IsTravelBlocked(from_sector_id, to_sector_id, cache_neighbors)
return GetDirectionProperty(from_sector_id, to_sector_id, "BlockTravel", cache_neighbors) or gv_Sectors[to_sector_id].Passability == "Blocked"
end
function GetDirectionProperty(from_sector_id, to_sector_id, prop_id, cache_neighbors)
local from_sector = gv_Sectors[from_sector_id]
if cache_neighbors then
local dir = cache_neighbors[to_sector_id]
local fs = dir and from_sector[prop_id]
return fs and fs[dir]
else
for _, dir in ipairs(const.WorldDirections) do
if GetNeighborSector(from_sector_id, dir) == to_sector_id then
return from_sector[prop_id] and from_sector[prop_id][dir]
end
end
end
end
local opposite_directions =
{
North = "South",
South = "North",
East = "West",
West = "East",
}
function SectorTravelBlocked(from_sector_id, to_sector_id, _, pass_mode, __, dir, cache_neighbors)
local from_sector = gv_Sectors[from_sector_id]
local to_sector = gv_Sectors[to_sector_id]
if
IsTravelBlocked(from_sector_id, to_sector_id, cache_neighbors) or
pass_mode == "land_only" and to_sector.Passability == "Water"
then
return true
end
if pass_mode ~= "land_water_river" and
GetDirectionProperty(from_sector_id, to_sector_id, "BlockTravelRiver", cache_neighbors) then
return true
end
if to_sector.Passability == "Water" then
if pass_mode == "land_water_boatless" then
return false
elseif pass_mode == "land_water" or pass_mode == "land_water_river" then
if from_sector.Passability == "Land" or from_sector.Passability == "Land and Water" then
return not (from_sector.Port and not from_sector.PortLocked and from_sector.Side == "player1" and IsBoatAvailable())
end
end
end
return false
end
function AreSectorsSameCity(sector_a, sector_b)
if sector_a.City == sector_b.City and sector_a.City ~= "none" then
return true
end
if sector_a.GroundSector == sector_b.Id or sector_b.GroundSector == sector_a.Id then
return true
end
return false
end
function GetSectorTravelTime(from_sector_id, to_sector_id, route, units, pass_mode, _, side, dir, cache_shortcuts, cache_neighbors)
local shortcut
if to_sector_id and not AreAdjacentSectors(from_sector_id, to_sector_id) then
shortcut = GetShortcutByStartEnd(from_sector_id, to_sector_id)
end
-- If entering/exiting underground from overground then its always instant
-- We need to specially handle this as it is possible for an overground sector to connect to
-- another sector's underground sector (i.e. secret tunnel)
local from_underground = IsSectorUnderground(from_sector_id)
local to_underground = IsSectorUnderground(to_sector_id)
if from_underground ~= to_underground then return 0 end
if pass_mode == "display_invalid" then
return 1
end
if not shortcut and (to_sector_id and SectorTravelBlocked(from_sector_id, to_sector_id, route, pass_mode, _, dir, cache_neighbors)) then
return false
end
-- Since we don't pass in a reference to the squad we cant check squad.diamond_briefcase
if route and route.diamond_briefcase then
local time = const.Satellite.SectorTravelTimeDiamonds
time = DivCeil(time, const.Scale.min) * const.Scale.min
return time * 2, time, time, {}
end
local is_player = side and (side == "player1" or side == "player2")
local breakdown = is_player and {} or false
local max_leadership, max_leadership_merc = 0, false
if is_player then
for i, u in ipairs(units or empty_table) do
local unit_data = gv_UnitData[u]
if max_leadership < unit_data.Leadership then
max_leadership = unit_data.Leadership
max_leadership_merc = unit_data.session_id
end
end
end
local squadModifier = is_player and 100 - (const.Satellite.SectorTravelTimeBase - max_leadership) or 0
if is_player then
breakdown[#breakdown + 1] = { Text = T(703764048855, "Squad Speed"), Value = squadModifier, Category = "squad",
rollover = T{898857286023, "The squad speed is defined by the merc with the highest Leadership in the squad.<newline><mercName><right><stat>",
mercName = max_leadership_merc and UnitDataDefs[max_leadership_merc] and UnitDataDefs[max_leadership_merc].Nick or Untranslated("???"),
stat = max_leadership
}
}
end
local from_sector = gv_Sectors[from_sector_id]
local to_sector = to_sector_id and gv_Sectors[to_sector_id]
if to_sector then
if AreSectorsSameCity(from_sector, to_sector) then
return 0, 0, 0, breakdown
end
if (side == "enemy1" or side == "diamonds") and to_sector.ImpassableForEnemies then
return false
end
if side == "diamonds" and to_sector.ImpassableForDiamonds then
return false
end
end
local terrain_type1 = gv_Sectors[from_sector_id].TerrainType
local terrain_type2 = to_sector_id and gv_Sectors[to_sector_id].TerrainType
-- Water terrain type isnt always applied to water passability tiles
if gv_Sectors[from_sector_id] and gv_Sectors[from_sector_id].Passability == "Water" then terrain_type1 = "Water" end
if gv_Sectors[to_sector_id] and gv_Sectors[to_sector_id].Passability == "Water" then terrain_type2 = "Water" end
local travel_time_modifier1 = SectorTerrainTypes[terrain_type1] and SectorTerrainTypes[terrain_type1].TravelMod or 100
local travel_time_modifier2 = to_sector_id and SectorTerrainTypes[terrain_type2] and SectorTerrainTypes[terrain_type2].TravelMod or travel_time_modifier1
local hasRoad = false;
if to_sector_id and HasRoad(from_sector_id, to_sector_id, cache_neighbors) then
travel_time_modifier1 = const.Satellite.RoadTravelTimeMod
travel_time_modifier2 = const.Satellite.RoadTravelTimeMod
hasRoad = true
end
-- Special travel that is considered as travelling on the river but isn't through shortcuts.
local isRiverSectors
if cache_shortcuts ~= nil then
isRiverSectors = IsRiverSector(from_sector_id, not not shortcut, cache_shortcuts)
else
isRiverSectors = not shortcut and IsRiverSector(from_sector_id) and IsRiverSector(to_sector_id, "two_way")
end
if is_player then
local mod = travel_time_modifier2
if isRiverSectors then
breakdown[#breakdown + 1] = { Text = T(414143808849, "<em>(River)</em>"), Category = "sector-special", special = "road" }
elseif mod ~= 0 and terrain_type1 ~= "Water" and terrain_type2 ~= "Water" and not shortcut then
if hasRoad then
breakdown[#breakdown + 1] = { Text = T(561135531078, "<em>(Road)</em>"), Value = 100 - mod, Category = "sector-special", special = "river" }
end
local difficultyText = false
if mod == 100 then
difficultyText = T(714191851131, --[[Terrain difficulty]] "Normal")
elseif mod <= 25 then
difficultyText = T(367857875968, --[[Terrain difficulty]] "Very Easy")
elseif mod <= 75 then
difficultyText = T(825299951074, --[[Terrain difficulty]] "Easy")
elseif mod >= 150 then
difficultyText = T(625725601692, --[[Terrain difficulty]] "Very Hard")
elseif mod >= 120 then
difficultyText = T(835764015096, --[[Terrain difficulty]] "Hard")
end
breakdown[#breakdown + 1] = { Text = T(379323289276, "Terrain"), Value = difficultyText, ValueType = "text", Category = "sector" }
end
end
-- travel with the speed of the slowest unit
travel_time_modifier1 = travel_time_modifier1
travel_time_modifier2 = travel_time_modifier2
local sector_travel_time = is_player and const.Satellite.SectorTravelTime or const.Satellite.SectorTravelTimeEnemy
if squadModifier ~= 0 then
-- speed is increased by:
-- new_t = (S/V) * old_t where constant S == 100 and V == 100 + modifier
sector_travel_time = MulDivRound(sector_travel_time, 100, 100 + squadModifier)
end
local travel_time_1 = sector_travel_time * travel_time_modifier1 / 100
local travel_time_2 = sector_travel_time * travel_time_modifier2 / 100
if to_sector_id == from_sector_id and #(units or "") > 0 then
local ud = gv_UnitData[units[1]]
local squad = ud and ud.Squad
squad = squad and gv_Squads[squad]
if squad then
local squadPos = GetSquadVisualPos(squad)
local retreatSector = from_sector.XMapPosition
local from = GetSquadPrevSector(squadPos, from_sector_id, retreatSector)
from = from and gv_Sectors[from].XMapPosition
local diff = retreatSector - from
local passed = squadPos - from
local passedDDiff = Dot(passed, diff)
local percentPassed = passedDDiff ~= 0 and MulDivRound(passedDDiff, 1000, Dot(diff, diff)) or 0
travel_time_1 = MulDivRound(travel_time_1, percentPassed, 1000)
travel_time_2 = 0
end
elseif shortcut then
travel_time_2 = shortcut:GetTravelTime()
travel_time_1 = 0
elseif isRiverSectors then
travel_time_2 = const.SatelliteShortcut.RiverTravelTime + 1
travel_time_1 = 0
end
-- If landing from water or travelling in water move at a constant speed.
local waterTravel = const.Satellite.SectorTravelTimeWater
if terrain_type1 == "Water" or terrain_type2 == "Water" then
travel_time_1 = waterTravel / 2
travel_time_2 = waterTravel / 2
end
-- Round to campaign time increments
travel_time_1 = DivCeil(travel_time_1, const.Scale.min) * const.Scale.min
travel_time_2 = DivCeil(travel_time_2, const.Scale.min) * const.Scale.min
return travel_time_1 + travel_time_2, travel_time_1, travel_time_2, breakdown
end
function NetSyncEvents.SetArrivingMercSector(merc_id, sector_id)
LocalSetArrivingMercSector(merc_id, sector_id)
end
function LocalSetArrivingMercSector(merc_id, sector_id, days)
-- When a merc is hired as arriving they will start arriving at the default sector
-- prior to the destination popup opening. Once the player picks a destination this
-- function is called again with the chosen sector. We need to handle the case
-- where the chosen destination is the default one as otherwise the merc will be
-- added to their own squad a second time.
local merc = gv_UnitData[merc_id]
local prevArrivingSquad = merc.Squad
local unitArriveTime = GetOperationTimeLeft(merc, "Arriving")
local newMercSector = sector_id or GetCurrentCampaignPreset().InitialSector
local squadToAddIn
for i, s in ipairs(GetPlayerMercSquads()) do
if s.Side == "player1" and s.CurrentSector == newMercSector and s.arrival_squad then
-- Check when the arrival will end for units in this squad
local willArriveWithThisSquad = true
for i, u in ipairs(s.units) do
local ud = gv_UnitData[u]
local left = GetOperationTimeLeft(ud, "Arriving")
if left ~= unitArriveTime then
willArriveWithThisSquad = false
break
end
end
if #s.units >= const.Satellite.MercSquadMaxPeople then
willArriveWithThisSquad = false
end
if willArriveWithThisSquad then
squadToAddIn = s
break
end
end
end
local bestArrivalDir = false
local sector = gv_Sectors[newMercSector]
ForEachSectorAround(newMercSector, 1, function(otherSector)
if IsTravelBlocked(otherSector, newMercSector) then return end
local otherSectorPreset = gv_Sectors[otherSector]
if otherSectorPreset.Passability ~= "Water" and otherSectorPreset.Passability ~= "Land and Water" then return end
local dir = GetSectorDirection(newMercSector, otherSector)
bestArrivalDir = dir
end)
if bestArrivalDir then
merc.arrival_dir = bestArrivalDir
end
local squad_id = squadToAddIn and squadToAddIn.UniqueId
if prevArrivingSquad and squadToAddIn and squadToAddIn.UniqueId == prevArrivingSquad then
return
end
if squadToAddIn then
AddUnitsToSquad(squadToAddIn, {merc_id}, days, days and InteractionRand(nil, "Satellite"))
else
squad_id = CreateNewSatelliteSquad({
Side = "player1",
CurrentSector = newMercSector,
Name = Presets.SquadName.Default.Arriving.Name,
arrival_squad = true
}, {merc_id}, days)
end
if merc.Operation == "Arriving" then
Msg("OperationChanged", merc, "Arriving", "Arriving")
end
end
if FirstLoad then
FilterUserTextsThread = false
end
function OnMsg.LoadGame()
DeleteThread(FilterUserTextsThread)
end
function OnMsg.NewGame()
DeleteThread(FilterUserTextsThread)
end
LoadingUnitName = T{977270273792, --[[ Merc Nick awaiting filtering; Limit to 8 characters ]] "Loading" }
function LocalHireMerc(merc_id, price, medical, days)
local alreadyHired = gv_UnitData[merc_id] and gv_UnitData[merc_id].Squad
local unitData = gv_UnitData[merc_id]
if IsUserText(unitData.Nick) then
local loading = _InternalTranslate(LoadingUnitName)
SetCustomFilteredUserTexts({ unitData.Nick, unitData.Name }, { loading, loading })
end
FilterUserTextsThread = CreateRealTimeThread(function()
if IsUserText(unitData.Nick) then
local errors = AsyncFilterUserTexts({ unitData.Nick, unitData.Name })
if errors then
for _, err in ipairs(errors) do
SetCustomFilteredUserText(err.user_text)
end
end
Msg("TranslationChanged")
end
local timeFormatted = days and FormatCampaignTime(days * const.Scale.day, "in_days") or ""
if alreadyHired then
local newTotal = FormatCampaignTime((unitData.HiredUntil + days * const.Scale.day) - Game.CampaignTime, "in_days")
CombatLog("short", T{595935156980, "<MercName> contract extended by <duration> (<newTotal>)",
duration = timeFormatted,
MercName = unitData.Name,
newTotal = newTotal
})
elseif days then
CombatLog("short", T{537438751389, "Hired <MercName> for <duration> (<money(price)>)", duration = timeFormatted, MercName = unitData.Nick or unitData.Name,price = price})
else
CombatLog("short", T{157053856815, "Hired <MercName> (<money(price)>)", MercName = unitData.Nick or unitData.Name, price = price})
end
FilterUserTextsThread = false
end)
AddMoney(-price, "salary", "noCombatLog")
SetMercStateFlag(merc_id, "LastHirePayment", price)
local currentDailySalary = (price and days) and DivRound(price - medical, days) or 0
SetMercStateFlag(merc_id, "CurrentDailySalary", currentDailySalary)
if alreadyHired then
days = days or 0
-- When the contract expires it is possible for a couple minutes extra to have passed
-- due to rounding of satellite ticks. Since we want the UI to display the exact time
-- in days when hired (ex. 3D instead of 2D 57m) we clamp the time to the campaign time
-- if it is in the past.
if not unitData.HiredUntil or unitData.HiredUntil < Game.CampaignTime then
unitData.HiredUntil = Game.CampaignTime
end
unitData.HiredUntil = unitData.HiredUntil + days*const.Scale.day
if g_Units[merc_id] then
g_Units[merc_id].HiredUntil = unitData.HiredUntil
end
Msg("MercContractExtended", unitData)
else
-- Initial mercs arrive instantly.
LocalSetArrivingMercSector(merc_id, false, days)
NetSyncEvents.MercSetOperation(merc_id, "Arriving")
-- Compensate contract with arrival time
if unitData.HiredUntil then
local arrivalTime = SectorOperations.Arriving:ProgressCompleteThreshold(unitData)
unitData.HiredUntil = unitData.HiredUntil + arrivalTime
Msg("UnitUpdateTimelineContractEvent", merc_id)
end
if not g_CurrentSquad then g_CurrentSquad = unitData.Squad end
end
ObjModified(unitData)
ObjModified("coop button")
ObjModified("MercHired")
Msg("MercHired", merc_id, price, days, alreadyHired)
gv_UnitData[merc_id]:CallReactions("OnMercHired", price, days, alreadyHired)
end
function GetMercArrivalTime()
if InitialConflictNotStarted() then return const.Satellite.MercArrivalTime / 2 end
return const.Satellite.MercArrivalTime
end
function TFormat.MercArrivalTimeHours()
return GetMercArrivalTime() / const.Scale.h
end
local lArrivalDelayed = false
local lArrivedMercsQueue = false
local function lArrivalFxDelayed(merc, sectorId)
if IsValidThread(lArrivalDelayed) then
lArrivedMercsQueue[#lArrivedMercsQueue + 1] = merc
return
end
lArrivedMercsQueue = { merc }
lArrivalDelayed = CreateMapRealTimeThread(function()
WaitAllOtherThreads()
local perSector = {}
for i, m in ipairs(lArrivedMercsQueue) do
local squad = gv_Squads[m.Squad]
local sector = squad and squad.CurrentSector
if not perSector[sector] then
perSector[sector] = { m }
else
table.insert(perSector[sector], m)
end
end
for sectorId, mercs in sorted_pairs(perSector) do
local spawnedSectorName = GetSectorName(gv_Sectors[sectorId])
local mercName = false
local mercVr = false
if #mercs == 1 then
local merc = mercs[1]
mercName = merc.Nick
mercVr = merc
else
local nicks = {}
for i, merc in ipairs(mercs) do
nicks[#nicks + 1] = merc.Nick
end
mercName = ConcatListWithAnd(nicks)
mercVr = table.rand(mercs)
end
CombatLog("important", T{540838596254, "<MercNick> arrived in <sectorName>", {
MercNick = mercName,
sectorName = spawnedSectorName
}})
PlayVoiceResponse(mercVr, "SectorArrived")
end
end)
end
function HiredMercArrived(merc, days)
local merc_id = merc.session_id
-- Find sector to place in.
local arrivalSquad = merc.Squad
if arrivalSquad then
arrivalSquad = gv_Squads[arrivalSquad]
end
local newMercSector = arrivalSquad and arrivalSquad.CurrentSector
newMercSector = newMercSector or GetCurrentCampaignPreset().InitialSector
local squadToAddIn
for i, s in ipairs(GetPlayerMercSquads()) do
if not s.arrival_squad and s.CurrentSector == newMercSector and not IsSquadTravelling(s) and #s.units < const.Satellite.MercSquadMaxPeople then
squadToAddIn = s
break
end
end
if squadToAddIn then
if days then -- Just hired
AddUnitsToSquad(squadToAddIn, {merc_id}, days, InteractionRand(nil, "Satellite"))
else -- Actually arrived
AddUnitToSquad(squadToAddIn.UniqueId, merc_id)
end
else
CreateNewSatelliteSquad({
Side = "player1",
CurrentSector = newMercSector,
Name = SquadName:GetNewSquadName("player1"),
image = arrivalSquad and arrivalSquad.image
}, {merc_id}, days)
end
if not days then
lArrivalFxDelayed(merc)
end
merc:SetCurrentOperation("Idle")
ObjModified(arrivalSquad)
end
function NetSyncEvents.HireMerc(merc_id, price, medical, days, player_id)
local alreadyHired = gv_UnitData[merc_id] and gv_UnitData[merc_id].Squad
LocalHireMerc(merc_id, price, medical, days)
-- Give control to the player that hired the merc, unless the merc was already hired
-- which means their contract was extended
if player_id and not alreadyHired then
local ud = gv_UnitData[merc_id]
ud.ControlledBy = player_id
end
end
function CreateImpMercData(impTest, sync)
if sync then
g_ImpTest = impTest
end
local merc_id = impTest.final.merc_template.id
local unitData = gv_UnitData[merc_id]
local uni_template = UnitDataDefs[unitData.class]
-- sets default values the first time merc is created
if not impTest.final.nick then
impTest.final.nick = CreateUserText(_InternalTranslate(uni_template.Nick), "name")
end
if not impTest.final.name then
impTest.final.name = CreateUserText(_InternalTranslate(uni_template.Name), "name")
end
-- transfer stats, perks, names, nick
if impTest.final.nick == "" then
impTest.final.nick = CreateUserText("", "name")
end
if impTest.final.name == "" then
impTest.final.name = CreateUserText("", "name")
end
unitData.Nick = impTest.final.nick
unitData.Name = impTest.final.name
--specialization and stats
local stat_specialization_map = {Marksmanship = "Marksmen", Leadership="Leader", Medical = "Doctor", Explosives="ExplosiveExpert", Mechanical="Mechanic"}
local max_stat
local specialization = "AllRounder"
for _, stat_data in ipairs(impTest.final.stats) do
unitData:SetBase(stat_data.stat,stat_data.value)
local spec = stat_specialization_map[stat_data.stat]
if spec and (not max_stat and stat_data.value>80 or max_stat and stat_data.value> max_stat) then
max_stat = stat_data.value
specialization = spec
end
end
unitData.Specialization = specialization
unitData:InitDerivedProperties()
if sync then
unitData:RemoveAllCharacterEffects()
if impTest.final.perks.personal and impTest.final.perks.personal.perk then
unitData:AddStatusEffect(impTest.final.perks.personal.perk)
end
if impTest.final.perks.tactical then
for i, perk_data in ipairs(impTest.final.perks.tactical) do
if perk_data.perk then
unitData:AddStatusEffect(perk_data.perk)
end
end
end
end
return unitData
end
function NetSyncEvents.HireIMPMerc(impTest, merc_id, price, days)
local unitData = CreateImpMercData(impTest, "sync")
CombatLog("debug", "Imp Test final - " .. DbgImpPrintResult(impTest.final, "flat"))
LocalHireMerc(merc_id, price, 0, days)
end
function NetSyncEvents.ReleaseMerc(merc_id)
local unit = g_Units[merc_id] -- Could be on another map
if not gv_SatelliteView and unit then
unit:SyncWithSession("map")
unit:Despawn()
end
local unit_data = gv_UnitData[merc_id]
local squadId = unit_data.Squad
SectorOperation_CancelByGame({unit_data}, false, true)
PlayVoiceResponse(unit_data, "ContractExpired")
-- Send inventory to stash
local squad = gv_Squads[squadId]
local sectorId = squad.CurrentSector
local items = {}
unit_data:ForEachItemInSlot("Inventory", function(item, _, x, y, items)
if not item.locked then
items[#items + 1] = item
end
end, items)
AddToSectorInventory(sectorId,items)
unit_data:ForEachItemInSlot("Inventory", function(item, slot, left, top, unit_data, sectorId)
if not item.locked then
unit_data:RemoveItem("Inventory", item, "no_update")
NetUpdateHash("NetSyncEvents.ReleaseMerc_moving_items_params", item.class, item.id, sectorId)
end
end, unit_data, sectorId)
RemoveUnitFromSquad(unit_data, "despawn")
unit_data.Squad = false
unit_data.HiredUntil = false
unit_data.HireStatus = "Available"
Msg("MercHireStatusChanged", unit_data, "Hired", "Available")
Msg("MercReleased", unit_data, squadId)
NetSyncEvent("CheckUnitsMapPresence")
DelayedCall(0, ObjModified, gv_Squads)
if not gv_SatelliteView and unit then
EnsureCurrentSquad()
end
end
function AddUnitsToSquad(squad, unit_ids, days, seed)
if not squad.units then
squad.units = {}
end
local hire = squad.Side == "player1"
for _, unit_id in ipairs(unit_ids or empty_table) do
local unit_data = gv_UnitData[unit_id] -- All mercs should be predefined from the start
if not unit_data then unit_data = CreateUnitData(unit_id, false, seed) end -- Just in case
AddUnitToSquad(squad.UniqueId, unit_id, false, #unit_ids > 1)
if hire then
if unit_data.HireStatus ~= "Hired" then
assert(false, "AddUnitToSquad didnt set hired?")
unit_data.HireStatus = "Hired"
Msg("MercHireStatusChanged", unit_data, "Available", "Hired")
end
if days then
unit_data.HiredUntil = Game.CampaignTime + days*const.Scale.day
end
end
end
ObjModified(gv_Squads)
ObjModified(squad)
-- check imp
--Msg("UnitJoinedPlayerSquad", squad.UniqueId)
end
function GetRandomSquadLogo()
local logos = g_SquadLogos
local filteredLogos = {}
for i, logo in ipairs(logos) do
local used = false
for _, squad in ipairs(g_PlayerSquads) do
if squad.image == logo then
used = true
break
end
end
if not used then
filteredLogos[#filteredLogos+1] = logo
end
end
if #filteredLogos > 0 then
return filteredLogos[InteractionRand(#filteredLogos, "SquadLogo") + 1]
else
return logos[InteractionRand(#logos, "SquadLogo") + 1]
end
end
function CreateNewSatelliteSquad(predef_props, unit_ids, days, seed, enemy_squad_def, reason)
NetUpdateHash("CreateNewSatelliteSquad", hashParamTable(unit_ids), days, seed)
local squad = SatelliteSquad:new(predef_props)
local id = gv_NextSquadUniqueId
if not squad.image then
local is_player = squad.Side == "player1" or squad.Side == "player2"
if is_player then
squad.image = GetRandomSquadLogo()
elseif squad.militia then
squad.image = "UI/Icons/SateliteView/militia"
else
squad.image = "UI/Icons/SateliteView/enemy_squad"
end
end
squad.UniqueId = id
squad.enemy_squad_def = enemy_squad_def
gv_Squads[id] = squad
AddSquadToLists(squad)
gv_NextSquadUniqueId = id + 1
local current_sector = squad.CurrentSector
local previous_sector = squad.PreviousSector
AddUnitsToSquad(squad, unit_ids, days, seed or InteractionRand(nil, "Satellite"))
if current_sector and not squad.arrival_squad and not predef_props.XVisualPos then
SatelliteReachSectorCenter(id, current_sector, previous_sector, nil, nil, reason)
end
Msg("SquadSpawned", id, current_sector)
return id
end
function AddUnitToSquad(squad_id, unit_id, position, multiple)
NetUpdateHash("AddUnitToSquad", squad_id, unit_id, position, multiple)
local squad = gv_Squads[squad_id]
local unit_data = gv_UnitData[unit_id]
assert(squad)
if not unit_data then return end
local prev_squad_id = unit_data.Squad
if prev_squad_id then
OnChangeUnitSquad(unit_data, prev_squad_id, squad_id)
end
RemoveUnitFromSquad(unit_data, "move")
if position and position <= #squad.units then
table.insert(squad.units, position, unit_id)
else
table.insert(squad.units, unit_id)
end
unit_data.Squad = squad.UniqueId
if g_Units[unit_data.session_id] then
g_Units[unit_data.session_id].Squad = squad.UniqueId
end
if not multiple then
ObjModified(gv_Squads)
ObjModified(squad)
end
if squad.Side == "player1" then
if unit_data.HireStatus ~= "Hired" then
unit_data.HireStatus = "Hired"
if g_Units[unit_data.session_id] then
g_Units[unit_data.session_id].HireStatus = "Hired"
end
Msg("MercHireStatusChanged", unit_data, "Available", "Hired")
end
Msg("UnitJoinedPlayerSquad", squad_id, unit_id)
end
end
function OnMsg.MercHireStatusChanged(unitData, old, new)
local unit = g_Units[unitData.session_data]
if unit then
unit.HireStatus = new
end
end
function RemoveUnitFromSquad(unit_data, reason)
local squad_id = unit_data.Squad
local squad = gv_Squads[squad_id]
unit_data.OldSquad = squad_id
unit_data.Squad = false
if g_Units[unit_data.session_id] then
-- Mercs will be automatically despawned when their UnitData doesn't have an associated squad.
local unit = g_Units[unit_data.session_id]
unit.OldSquad = squad_id
if reason=="despawn" then
unit.session_id = false
end
-- We want to show dead mercs on the map as part of the squad (if they are not the last member of that squad)
if not (unit:IsDead() and unit:IsMerc() and squad and #squad.units > 1) then
unit.Squad = false
else
unit_data.Squad = squad_id
end
end
if not squad then
return
end
table.remove_value(squad.units, unit_data.session_id)
-- There is some bug with millitia units being present twice in
-- their squad for some reason 0.0
while table.find(squad.units, unit_data.session_id) do
assert(false) -- Unit was in the squad twice+ 0.0
table.remove_value(squad.units, unit_data.session_id)
end
if not squad.units or #squad.units == 0 then
Msg("PreSquadDespawned", squad_id, squad.CurrentSector, reason)
if squad.militia then
local sector = gv_Sectors[squad.CurrentSector]
if sector then
sector.militia_squad_id = false
end
end
RemoveSquadsFromLists(gv_Squads[squad_id])
gv_Squads[squad_id] = nil
Msg("SquadDespawned", squad_id, squad.CurrentSector, squad.Side)
end
ObjModified(squad)
end
function RemoveSquad(squad)
local units = squad.units or empty_table
for i = #units, 1, -1 do
RemoveUnitFromSquad(gv_UnitData[units[i]])
end
end
function CheckSquadJoiningFarAway(unit_data, squadFrom, squadTo)
local oldSquad = squadFrom
local squad = squadTo
-- If exact same pos via pause
local squadFromPos = GetSquadVisualPos(squadFrom)
local squadToPos = GetSquadVisualPos(squadTo)
if squadFromPos and squadFromPos == squadToPos then
return
end
local destination = GetSquadFinalDestination(squad.CurrentSector, squad.route)
if squadFrom.CurrentSector == destination and
not IsTraversingShortcut(squadFrom) and
not IsTraversingShortcut(squadTo) then -- No need to path find.
NetSyncEvent("JoinFarAwaySquad", unit_data.session_id, squad.UniqueId, oldSquad.UniqueId)
return "break"
end
if WaitQuestion(terminal.desktop,
T(824112417429, "Warning"),
T{984693643526, "<squadName> is in sector <SectorId(sector)>. Do you want to send <mercNick> to sector <SectorId(sector)>?",
squadName = Untranslated(squad.Name),
sector = destination,
mercNick = unit_data.Nick
},
T(689884995409, "Yes"),
T(782927325160, "No")) == "ok"
then
-- 1. Assign to squad on shortcut (to squad at destination, squad at source)
-- 2. Assign from squad on shortcut (to squad at destination, squad at source)
local route = false
if IsTraversingShortcut(oldSquad) then
local shortcutDestination = GetSquadFinalDestination(oldSquad, oldSquad.route)
local currentShortcutRoute = { oldSquad.route[1][1], shortcuts = { 1 } }
if destination == shortcutDestination then
route = { currentShortcutRoute }
else
route = GenerateRouteDijkstra(shortcutDestination, destination, false, empty_table, nil, nil, squad.Side)
route = { currentShortcutRoute, route }
end
else
route = GenerateRouteDijkstra(oldSquad.CurrentSector, destination, false, empty_table, nil, nil, squad.Side)
route = {route} --waypointify
end
if unit_data:HasStatusEffect("Exhausted") then
ShowExhaustedUnitsQuestion(oldSquad, {unit_data})
elseif route then
NetSyncEvent("JoinFarAwaySquad", unit_data.session_id, squad.UniqueId, oldSquad.UniqueId, route)
else
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T{345921875430, "Couldn't find route to <SectorId(destination)>.", destination = destination},
T(325411474155, "OK")
)
end
return "break"
else
return "break"
end
end
function TrySwapMercs(unit_data1, unit_data2)
local squad1 = unit_data1.Squad
local squad1Obj = gv_Squads[squad1]
local squad2 = unit_data2.Squad
local squad2Obj = gv_Squads[squad2]
local position1 = table.find(squad1Obj.units, unit_data1.session_id)
local position2 = table.find(squad2Obj.units, unit_data2.session_id)
-- Swap within same squad.
if squad1 == squad2 then
if unit_data1 == unit_data2 then return end
NetSyncEvent("AssignUnitToSquad", squad2, unit_data1.session_id, position2, nil, true)
NetSyncEvent("AssignUnitToSquad", squad1, unit_data2.session_id, position1)
return
end
-- If both squads contain one unit each then swapping is not allowed.
-- (What do we expect to happen here? Swap the squad names?)
if #squad1Obj.units == 1 and #squad2Obj.units == 1 then
return
end
-- The squad that has only one unit needs
-- to be swapped second to prevent
-- the squad from being destroyed.
if #squad1Obj.units == 1 then
squad1Obj, squad2Obj = squad2Obj, squad1Obj
squad1, squad2 = squad2, squad1
position1, position2 = position2, position1
unit_data1, unit_data2 = unit_data2, unit_data1
end
CreateRealTimeThread(function()
local sector1 = gv_Sectors[squad1Obj.CurrentSector]
local sector2 = gv_Sectors[squad2Obj.CurrentSector]
-- check if merc has arrived to his initial sector (for newly hired mercs)
if not sector1 or not sector2 or squad1Obj.arrival_squad or squad2Obj.arrival_squad then
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T(974403355605, "You can't reassign newly hired mercs who have not arrived in Grand Chien yet."),
T(325411474155, "OK")
)
return
end
--[[ if sector1 ~= sector2 and sector1.conflict or sector2.conflict then
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T(587785554300, "You can't reassign mercs to a squad in conflict."),
T(325411474155, "OK")
)
return
end]]
if sector1 ~= sector2 then
-- But don't allow retreating from/to underground when there is a conflict (via squad management)
if IsConflictMode(sector1.CurrentSector) or IsConflictMode(sector2.CurrentSector) then
return
end
local resp1 = CheckSquadJoiningFarAway(unit_data1, squad1Obj, squad2Obj)
local resp2 = CheckSquadJoiningFarAway(unit_data2, squad2Obj, squad1Obj)
if resp1 == "break" or resp2 == "break" then return end
end
NetSyncEvent("AssignUnitToSquad", squad2, unit_data1.session_id, position2)
NetSyncEvent("AssignUnitToSquad", squad1, unit_data2.session_id, position1)
end)
end
function TryAssignUnitToSquad(unit_data, squad_id, position)
local newSquad = not squad_id or squad_id < 0
local squad = gv_Squads[squad_id]
-- Moving to the same squad.
if squad_id == unit_data.Squad and not position then
return
end
if not unit_data or not newSquad and not gv_Squads[squad_id] then
assert(false)
return
end
CreateRealTimeThread(function()
local oldSquad = gv_Squads[unit_data.Squad]
local oldSector = oldSquad and oldSquad.CurrentSector
if not newSquad then
local unitCount, unitCountWithJoining = GetSquadUnitCountWithJoining(squad_id)
-- Check if trying to join a full squad.
if unitCount >= const.Satellite.MercSquadMaxPeople then
return
end
if unitCountWithJoining >= const.Satellite.MercSquadMaxPeople then
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T(764068678037, "That squad will be full when units traveling towards it join."),
T(325411474155, "OK")
)
return
end
end
-- Check if trying to join the squad already joining.
if not newSquad and oldSquad and oldSquad.joining_squad == squad.UniqueId then
return
end
-- Check if new squad is in conflict. (But only if there was a previous sector)
--[[ local sector = not newSquad and oldSector and gv_Sectors[squad.CurrentSector]
if not newSquad and sector and sector.conflict and oldSector ~= sector.Id then
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T(587785554300, "You can't reassign mercs to a squad in conflict."),
T(325411474155, "OK")
)
return
end]]
-- check if merc has arrived to his initial sector (for newly hired mercs)
if oldSquad and (not oldSquad.CurrentSector or oldSquad.arrival_squad) then
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T(974403355605, "You can't reassign newly hired mercs who have not arrived in Grand Chien yet."),
T(325411474155, "OK")
)
return
end
if squad and (not squad.CurrentSector or squad.arrival_squad) then
WaitMessage(terminal.desktop,
T(824112417429, "Warning"),
T(902906854574, "You can't reassign mercs to squads arriving in Grand Chien."),
T(325411474155, "OK")
)
return
end
if not newSquad and oldSquad then
-- Squads can join other squads that are above/underground on the same sector.
local oldSquadSectorGround = oldSquad.CurrentSector
oldSquadSectorGround = gv_Sectors[oldSquadSectorGround].GroundSector or oldSquadSectorGround
local newSquadSectorGround = squad.CurrentSector
newSquadSectorGround = gv_Sectors[newSquadSectorGround].GroundSector or newSquadSectorGround
-- But don't allow retreating from/to underground when there is a conflict (via squad management)
if IsConflictMode(oldSquad.CurrentSector) and oldSquad.CurrentSector ~= squad.CurrentSector then
return
end
local squadTravelling = IsSquadTravelling(squad) or squad.Retreat
local oldSquadTravelling = IsSquadTravelling(oldSquad) or oldSquad.Retreat
if newSquadSectorGround ~= oldSquadSectorGround or
IsTraversingShortcut(oldSquad) or oldSquadTravelling or
IsTraversingShortcut(squad) or squadTravelling then
if CheckSquadJoiningFarAway(unit_data, oldSquad, squad) == "break" then return end
end
end
NetSyncEvent("AssignUnitToSquad", squad and squad.UniqueId, unit_data.session_id, position, newSquad)
if oldSquad then ObjModified(oldSquad) end
ObjModified(newSquad)
end)
end
function NetSyncEvents.SetSquadLogo(squad_id, image)
local s = gv_Squads[squad_id]
assert(s)
s.image = image
ObjModified(s)
end
function NetSyncEvents.AssignUnitToSquad(squad_id, unit_id, position, create_new_squad, swap)
local unit_data = gv_Squads and gv_UnitData[unit_id]
if not unit_data then
return
end
if create_new_squad then
local squadCreationProps = {
Side = "player1",
Name = SquadName:GetNewSquadName("player1")
}
-- Copy properties from the old squad
local oldSquad = gv_Squads[unit_data.Squad]
if oldSquad then
squadCreationProps.CurrentSector = oldSquad.CurrentSector
squadCreationProps.PreviousSector = oldSquad.PreviousSector
squadCreationProps.PreviousLandSector = oldSquad.PreviousLandSector
squadCreationProps.XVisualPos = GetSquadVisualPos(oldSquad)
end
squad_id = CreateNewSatelliteSquad(squadCreationProps, {unit_id})
-- If the squad this unit was ejected from is traveling,
-- the new squad should travel to the next sector the old squad
-- was travelling to, or align itself to the current sector if
-- pre-reaching the current sector center.
local newSquad = gv_Squads[squad_id]
if oldSquad.route and IsSquadTravelling(oldSquad, oldSquad.Retreat and "tick-regardless") then
local oldRoute = oldSquad.route
local newRoute = {}
newRoute.satellite_tick_passed = oldRoute.satellite_tick_passed
if oldSquad.water_travel then
newRoute = table.copy(oldSquad.route, "deep")
newRoute.water_route_assignment_route = true
else
local nextSector = oldRoute[1][1]
assert(nextSector)
newRoute[1] = { nextSector }
-- This will prevent this route from being cancelled and
-- visually will act as a cancelled travel. Align to current.
if nextSector == newSquad.CurrentSector then
newRoute[1].returning_land_travel = true
end
end
if IsTraversingShortcut(oldSquad, oldSquad.Retreat and "tick-regardless") then
newRoute[1].shortcuts = { 1 }
newSquad.traversing_shortcut_start = oldSquad.traversing_shortcut_start
newSquad.traversing_shortcut_start_sId = oldSquad.traversing_shortcut_start_sId
newSquad.traversing_shortcut_water = oldSquad.traversing_shortcut_water
end
SetSatelliteSquadRoute(newSquad, newRoute)
newSquad.Retreat = oldSquad.Retreat
if oldSquad.water_travel then
assert(newSquad.water_travel)
newSquad.water_travel_cost = oldSquad.water_travel_cost
newSquad.water_travel_rest_timer = oldSquad.water_travel_rest_timer
newSquad.water_route = table.find(oldSquad.water_route, "deep")
newRoute.water_route_assignment_route = false
end
end
-- This merc was retreated but the whole squad didnt get marked as
-- retreating because the other mercs weren't retreated.
if unit_data.retreat_to_sector and not newSquad.Retreat then
local instant = RetreatMoveWholeSquad(newSquad.UniqueId, unit_data.retreat_to_sector, newSquad.CurrentSector)
if not instant then
newSquad.Retreat = true
end
end
else
local oldSquad = gv_Squads[unit_data.Squad]
local newSquad = gv_Squads[squad_id]
AddUnitToSquad(squad_id, unit_id, position, swap)
-- Non-retreating unit moved into a retreating squad - squad stops retreating.
-- If the retreat route was instant (to underground sector for instance),
-- then the transfer should be invalid as the new squad would be in a different sector
if newSquad.Retreat and not oldSquad.Retreat and not unit_data.retreat_to_sector then
newSquad.Retreat = false
SetSatelliteSquadRoute(newSquad, false)
end
end
Msg("UnitAssignedToSquad", squad_id, unit_id, create_new_squad)
ObjModified("hud_squads")
-- If just moved to a retreating squad, this means that there might not
-- be a non-retreating squad left here. Retreat via squad management xd (234437)
local newSquad = gv_Squads[squad_id]
if newSquad.Retreat then
local sectorId = newSquad.CurrentSector
local allySquads, enemySquads = GetSquadsInSector(sectorId, "excludeTravel", "includeMilitia", "excludeArrive", "excludeRetreat")
local playerHere = #allySquads > 0
if not playerHere then
local sector = gv_Sectors[sectorId]
assert(sector.conflict)
if sector.conflict then
ResolveConflict(sector, "no voice", false, "retreat")
end
end
end
end
function ReconstructJoiningSquadNames()
for _, squad in pairs(gv_Squads) do
if squad.joining_squad then
assert(#squad.units == 1, "Empty squad name should only happen when a single unit is traveling to squad in different sector.")
squad.Name = GenerateJoiningSquadName(gv_UnitData[squad.units[1]].Nick, gv_Squads[squad.joining_squad] and gv_Squads[squad.joining_squad].Name or SquadName:GetNewSquadName("player1"))
squad.ShortName = GenerateJoiningSquadName_Short(gv_UnitData[squad.units[1]].Nick, gv_Squads[squad.joining_squad] and gv_Squads[squad.joining_squad].Name or SquadName:GetNewSquadName("player1"))
end
end
end
function OnMsg.PreLoadSessionData()
ReconstructJoiningSquadNames()
end
function OnMsg.GatherSessionData()
for _, squad in pairs(gv_Squads) do
if squad.joining_squad then
squad.Name = ""
end
end
end
function OnMsg.GatherSessionDataEnd()
ReconstructJoiningSquadNames()
end
function GenerateJoiningSquadName(unit_nick, squad_name)
return T{590091407961, "<u(Name)> -> <u(OtherName)>",
Name = unit_nick,
OtherName = squad_name
}
end
function GenerateJoiningSquadName_Short(unit_nick, squad_name)
return T{246115235863, "-> <u(OtherName)>",
OtherName = SquadName:GetShortNameFromName(squad_name)
}
end
function SetSatelliteSquadRetreatRoute(squad, ...)
squad.Retreat = true -- We need this to allow the retreat route to be set (if it isnt valid as a normal route)
SetSatelliteSquadRoute(squad, ...)
squad.Retreat = true -- We need this since SetRoute will reset the retreat status
end
function NetSyncEvents.JoinFarAwaySquad(unit_id, joining_squad_id, old_squad_id, route)
local oldSquad = gv_Squads[old_squad_id]
local visPos = GetSquadVisualPos(oldSquad)
local squad_id = CreateNewSatelliteSquad({
Side = "player1",
CurrentSector = oldSquad.CurrentSector,
PreviousSector = oldSquad.PreviousSector,
PreviousLandSector = oldSquad.PreviousLandSector,
Name = GenerateJoiningSquadName(gv_UnitData[unit_id].Nick, gv_Squads[joining_squad_id].Name),
ShortName = GenerateJoiningSquadName_Short(gv_UnitData[unit_id].Nick, gv_Squads[joining_squad_id].Name),
XVisualPos = visPos -- The new squad should be created on the same visual pos that the old squad was on.
},
{unit_id}
)
local squad = gv_Squads[squad_id]
squad.joining_squad = joining_squad_id
local oldSquadWasTravelling = IsSquadTravelling(oldSquad)
if oldSquad.Retreat then
-- If retreating make sure the retreat route is kept,
-- UpdateJoiningSquad will set a true joining route after retreat finishes.
route = table.copy(oldSquad.route, "deep")
SetSatelliteSquadRetreatRoute(squad, route, "keep-join")
elseif route then
route.satellite_tick_passed = oldSquadWasTravelling
SetSatelliteSquadRoute(squad, route, "keep-join")
-- No route but old squad was travelling, this means that joining squad is probably on the same sector. Cancel travel to recenter.
elseif oldSquadWasTravelling then
NetSyncEvents.SquadCancelTravel(squad_id, "keep-join", "force") -- now cancel the route
if squad.route then squad.route.satellite_tick_passed = true end -- mark cancelled route as ongoing
end
if IsTraversingShortcut(oldSquad) then
squad.traversing_shortcut_start = oldSquad.traversing_shortcut_start
squad.traversing_shortcut_start_sId = oldSquad.traversing_shortcut_start_sId
squad.traversing_shortcut_water = oldSquad.traversing_shortcut_water
end
end
MapVar("gameOverState", 0)
local function lInternalCheckGameOver()
if GameState.no_gameover then
return
end
-- Another check got in before this thread,
-- gameover threads will be spammed by the thread above.
if gameOverState ~= 0 then return end
-- Squad isnt defeated
local playerTeam = GetCampaignPlayerTeam()
if not playerTeam:IsDefeated() then return end
gameOverState = 1
-- The team is considered defeated, wait for their current command to finish (Die/GetDowned)
WaitUnitsInIdleOrBehavior()
-- Now kill everyone who is downed (IsIncapaciated() == true but not dead)
for i, unit in ipairs(playerTeam.units) do
if unit.behavior ~= "Dead" and unit.command ~= "Die" then
unit:SetCommand("Die")
end
end
-- Wait for all die commands to play out
for i, unit in ipairs(playerTeam.units) do
while unit.command == "Die" do
WaitMsg("UnitDied", 1000)
end
end
-- Just in case wait for everything to settle once more
WaitUnitsInIdleOrBehavior()
if g_Combat then
g_Combat:End()
end
-- No more squads at all
if not AnyPlayerSquads() then
if Game.Money < 5000 then
ShowPopupNotification("GameOverNoMoney")
else
ShowPopupNotification("IncapacitatedNoMercs")
end
else
ShowPopupNotification("IncapacitatedWithMercs")
end
WaitAllPopupNotifications()
-- PVP game, Combat test etc.
if not next(gv_Squads) then
gameOverState = 3
OpenPreGameMainMenu("")
return
end
FireNetSyncEventOnHost("CheckGameOverAfterPopups")
end
local function lInternalCheckGameOverAfterPopups()
-- The condition here prevents a gameover on loading a save before the initial sector enter.
if not gv_SatelliteView and gv_CurrentSectorId and GameState.entered_sector then
local squadsHere = GetSquadsInSector(gv_CurrentSectorId, true, false, true)
if not squadsHere or #squadsHere == 0 then -- read the comment at the end to understand this
gameOverState = 3
-- Resolve conflict in case combat end didnt end it
local currentSector = gv_Sectors[gv_CurrentSectorId]
if currentSector and currentSector.conflict then
-- In case of gameover we need to store the conflict's special properties (such as locking)
currentSector.conflict_backup = table.copy(currentSector.conflict)
ResolveConflict(currentSector, "noVoice", false, "retreat")
end
for i, u in ipairs(g_Units) do
u:AddStatusEffect("Unaware")
end
-- If no mercs, pause the campaign time
local playerSquads = GetPlayerMercSquads() or empty_table
if #playerSquads == 0 then PauseCampaignTime("NoMercs") end
OpenSatelliteView()
return
end
end
end
function NetSyncEvents.CheckGameOverAfterPopups()
CreateGameTimeThread(lInternalCheckGameOverAfterPopups)
end
function NetSyncEvents.CheckGameOver()
if gameOverState ~= 0 then return end
CreateGameTimeThread(lInternalCheckGameOver)
end
function CheckGameOver()
FireNetSyncEventOnHost("CheckGameOver")
end
function OnMsg.MercHired()
ResumeCampaignTime("NoMercs")
end
function OnMsg.ZuluGameLoaded()
if gv_SatelliteView then return end
gameOverState = 0
CheckGameOver()
end
function OnMsg.SquadDespawned()
if gv_SatelliteView then
local playerSquads = GetPlayerMercSquads() or empty_table
if #playerSquads == 0 then PauseCampaignTime("NoMercs") end
end
end
function OnMsg.UnitDieStart(unit)
if unit.session_id and gv_UnitData[unit.session_id] then
local unitData = gv_UnitData[unit.session_id]
Msg("MercHireStatusChanged", unitData, unitData.HireStatus, "Dead")
unitData.HireStatus = "Dead"
unitData.HiredUntil = Game.CampaignTime
unitData.HitPoints = 0
NetUpdateHash("UD_UnitDied", unit.session_id)
RemoveUnitFromSquad(unitData)
local unit = g_Units[unit.session_id]
if unit then
unit.HireStatus = "Dead"
unit.HiredUntil = Game.CampaignTime
end
ObjModified(Selection)
-- end game
if unit and (unit.team.side == "player1" or unit.team.side == "player2") then
CheckGameOver()
end
end
end
-- heal mercs and add new mercs to squad
function HealUnitData(data, hp)
data.HitPoints = hp or data.MaxHitPoints
ObjModified(data)
end
function ReviveUnitData(data, hp)
HealUnitData(data, hp)
data:CreateStartingEquipment(data.randomization_seed)
end
function ReviveUnit(u, hp)
u:ReviveOnHealth(hp)
u:FlushCombatCache()
u:UpdateOutfit()
u:InitMercWeaponsAndActions()
end
function NetSyncEvents.HealMerc(merc_id)
local unit_data = gv_UnitData[merc_id]
if unit_data then
HealUnitData(unit_data)
end
if IsValid(g_Units[merc_id]) then
g_Units[merc_id]:ReviveOnHealth()
end
end
local function GetMinUnvisitedPathSizeSector(unvisited, sector_path_size)
local min = max_int
local min_sector
for sector, _ in sorted_pairs(unvisited) do
if sector_path_size[sector] < min then
min = sector_path_size[sector]
min_sector = sector
end
end
if min == max_int then return false end
return min_sector
end
function CheckIfPathTaken(curr, neigh, route, squad_curr_sector)
local prevSect = squad_curr_sector
for __, w in ipairs(route) do
for ___, s in ipairs(w) do
if prevSect == neigh and s == curr then
return true
end
prevSect = s
end
end
return false
end
PathingDirections = {"North", "South", "East", "West", "UpDown"}
DefineConstInt("Satellite", "AttackSquadPlayerSideWeight", 5)
function GenerateRouteDijkstra(start_sector, end_sector, fullRoute, units, pass_mode, squad_curr_sector, side, noShortcuts)
if start_sector == end_sector and pass_mode ~= "display_invalid" then
return false
end
local isEnemy = side == "enemy1" or side == "diamonds"
pass_mode = pass_mode or (isEnemy and "land_water_boatless" or "land_water")
-- Don't allow going into underground from satellite view, unless enemy
local startIsUnderground = gv_Sectors and gv_Sectors[start_sector] and gv_Sectors[start_sector].GroundSector
local endIsUnderground = gv_Sectors and gv_Sectors[end_sector] and gv_Sectors[end_sector].GroundSector
if not startIsUnderground and endIsUnderground then
if pass_mode ~= "display_invalid" and not isEnemy then
return false
end
end
local preferMySide = false
if pass_mode == "enemy_guardpost" then
preferMySide = true
pass_mode = "land_water_boatless"
end
if GetSectorDistance(start_sector, end_sector) == 1 and pass_mode ~= "display_invalid" then
local startSectorPreset = gv_Sectors[start_sector]
local startIsUnderground = not not startSectorPreset.GroundSector
local endIsUnderground = IsSectorUnderground(end_sector)
if startIsUnderground and not endIsUnderground and not startSectorPreset.CanGoUp then
return false
end
local dir = GetSectorDirection(start_sector, end_sector)
local time = GetSectorTravelTime(start_sector, end_sector, fullRoute, units, pass_mode, squad_curr_sector, side, dir)
if time then
return { end_sector }
end
end
local underground_sector_map = {}
local unvisited_sectors = {}
local sector_path_size = {}
local prev, prevIsShortcut = {}, false
for sector_id, sectorPreset in pairs(gv_Sectors) do
if sector_id == start_sector then
sector_path_size[sector_id] = 0
else
sector_path_size[sector_id] = max_int
end
unvisited_sectors[sector_id] = true
if sectorPreset.GroundSector then
underground_sector_map[sectorPreset.GroundSector] = sector_id
end
end
local curr = start_sector
while true do
local currPreset = gv_Sectors[curr]
local currentIsUnderground = not not currPreset.GroundSector
for _, dir in ipairs(PathingDirections) do
local neigh
if dir == "UpDown" then
if currentIsUnderground and
((currPreset.CanGoUp and start_sector == curr) or pass_mode == "display_invalid") then -- Current is underground, has above ground
neigh = currPreset.GroundSector
elseif underground_sector_map[curr] and
(pass_mode == "display_invalid" or (isEnemy and underground_sector_map[curr] == end_sector)) then -- Current is above ground, has underground
-- Don't allow pathing into underground from overground, except for enemies (when their destination is underground like C7 mine)
neigh = underground_sector_map[curr]
end
else
neigh = GetNeighborSector(curr, dir)
-- Underground in cardinal directions can only lead to another underground
if currentIsUnderground and not IsSectorUnderground(neigh) then
neigh = false
end
end
if unvisited_sectors[neigh] then
local time = GetSectorTravelTime(curr, neigh, fullRoute, units, pass_mode, squad_curr_sector, side, dir)
if time then
if preferMySide and side ~= gv_Sectors[neigh].Side then
time = time * const.Satellite.AttackSquadPlayerSideWeight
end
local time_value = time + sector_path_size[curr]
if time_value < sector_path_size[neigh] then
sector_path_size[neigh] = time_value
prev[neigh] = curr
end
end
end
end
-- Check satellite shortcuts
local shortcuts = noShortcuts and empty_table or GetShortcutsAtSector(curr, pass_mode == "retreat")
for i, shortcut in ipairs(shortcuts) do
local exit = shortcut.start_sector == curr and shortcut.end_sector or shortcut.start_sector
if unvisited_sectors[exit] then
local time = GetSectorTravelTime(curr, exit, fullRoute, units, pass_mode, squad_curr_sector, side)
if time then
if preferMySide and side ~= gv_Sectors[exit].Side then
time = time * const.Satellite.AttackSquadPlayerSideWeight
end
local time_value = time + sector_path_size[curr]
if time_value < sector_path_size[exit] then
sector_path_size[exit] = time_value
prev[exit] = curr
if not prevIsShortcut then prevIsShortcut = {} end
if not prevIsShortcut[curr] then prevIsShortcut[curr] = {} end
prevIsShortcut[curr][exit] = true
end
end
end
end
unvisited_sectors[curr] = nil
curr = GetMinUnvisitedPathSizeSector(unvisited_sectors, sector_path_size)
if not curr then return false end
if curr == end_sector then
local s = curr
local route_rev = {}
local water_sectors = 0
while s ~= start_sector do
table.insert(route_rev, s)
s = prev[s]
end
local reversedRoute = table.reverse(route_rev)
local prevS = start_sector
for i, s in ipairs(reversedRoute) do
if prevIsShortcut and prevIsShortcut[prevS] and prevIsShortcut[prevS][s] then
if not reversedRoute.shortcuts then reversedRoute.shortcuts = {} end
reversedRoute.shortcuts[i] = true
if Platform.developer then
local shortcutStart = prevS
local shortcutEnd = s
assert(GetShortcutByStartEnd(shortcutStart, shortcutEnd))
end
end
prevS = s
end
return reversedRoute, sector_path_size[end_sector]
end
end
end
function OnMsg.SatelliteTick()
local removeSquads = false
SatelliteTickPerSectorActivityCalled = {}-- reset operation update per tick
for _, squad in ipairs(g_SquadsArray) do
if squad.route and not squad.route.satellite_tick_passed and not SquadCantMove(squad) then
squad.route.satellite_tick_passed = true
Msg("SquadTravellingTickPassed", squad)
end
local player_squad = IsPlayer1Squad(squad)
if player_squad or not IsSquadTravelling(squad) then
SatelliteUnitsTick(squad)
ObjModified(gv_Sectors[squad.CurrentSector])
end
if squad.wait_in_sector and squad.wait_in_sector <= Game.CampaignTime then
SatelliteSquadWaitInSector(squad, false)
end
if squad.despawn_on_next_tick and not IsSquadInConflict(squad) and not IsSquadTravelling(squad) then
if not removeSquads then removeSquads = {} end
removeSquads[#removeSquads + 1] = squad
end
end
if removeSquads then
for i, squad in ipairs(removeSquads) do
RemoveSquad(squad)
end
end
end
function TurnJoiningSquadIntoNormal(squad)
squad.route = false
squad.joining_squad = false
squad.Name = SquadName:GetNewSquadName("player1")
squad.ShortName = false
ObjModified(squad)
end
function UpdateJoiningSquad(squad, canSetRoute)
local squadId = squad.UniqueId
if not gv_Squads[squadId] then return end -- Squad doesn't exist anymore
local joinSquad = gv_Squads[squad.joining_squad]
-- The squad we wanted to join is gone. (died, merged into another squad, etc)
if not joinSquad then
TurnJoiningSquadIntoNormal(squad)
-- Got to the destination
elseif AreSquadsInTheSameSectorVisually(joinSquad, squad, "undergroundInsensitive") then
squad.route = false
local newSquad = joinSquad
local unitId = squad.units[1]
local unit_data = gv_UnitData[unitId]
local bag = GetSquadBag(squad.UniqueId)
if bag and next(bag) then
AddItemsToSquadBag(newSquad.UniqueId, bag)
end
RemoveUnitFromSquad(unit_data)
table.insert(newSquad.units, unit_data.session_id)
unit_data.Squad = newSquad.UniqueId
ObjModified(newSquad)
InventoryUIResetSquadBag()
return true
elseif canSetRoute then
-- Dont set new routes while retreat is in progress
if squad.Retreat then return end
local route = GenerateRouteDijkstra(squad.CurrentSector, GetSquadFinalDestination(joinSquad.CurrentSector, joinSquad.route), squad.route, squad.units, nil, nil, squad.Side)
if route then
SetSatelliteSquadRoute(squad, { route }, true)
else
-- no new route, cancel travel
NetSyncEvents.SquadCancelTravel(squadId, not SquadCantMove(squad))
end
else
-- If not, update route towards the joining squad.
-- This needs to be done in a thread as this might be coming from the travel thread.
CreateRealTimeThread(UpdateJoiningSquad, squad, "canSetRoute")
end
end
function IsPlayer1Squad(squad)
return not squad.militia and squad.Side == "player1"
end
const.DbgTravelTimer = false
function DbgTravelTimerPrint(...)
if const.DbgTravelTimer then
print(...)
end
end
function GetHPAdditionalTiredTime(hp)
-- hp above this threshold will cause units to get tired slower (more time) (1% per hp)
-- hp below this threshold will cause them to get tired faster (less time) (1% per hp)
local hpLimit = const.Satellite.UnitTirednessTravelTimeHP
local diff = Clamp(hp - hpLimit, -50, 25)
return MulDivRound(const.Satellite.UnitTirednessTravelTime, diff, 100)
end
function OnMsg.ReachSectorCenter(squad_id, sector_id, prev_sector_id)
local squad = gv_Squads[squad_id]
local player_squad = IsPlayer1Squad(squad)
if not player_squad then return end
local travelling = IsSquadTravelling(squad) and not IsSquadInDestinationSector(squad)
local nonTireTravel = IsSquadWaterTravelling(squad) or IsTraversingShortcut(squad)
for idx, id in ipairs(squad.units) do
local unit_data = gv_UnitData[id]
if unit_data.TravelTimerStart > 0 then
local hp = unit_data.HitPoints
local additional = GetHPAdditionalTiredTime(hp)
NetUpdateHash("Tiredness", id, unit_data.TravelTimerStart, hp, additional, unit_data.Tiredness, nonTireTravel)
if not nonTireTravel then
local TirednessThreshold = const.Satellite.UnitTirednessTravelTime + additional
if not unit_data.WarnTired and TirednessThreshold - unit_data.TravelTime <= MulDivRound(TirednessThreshold, 20, 100) and
TirednessThreshold - unit_data.TravelTime > 0 then
if unit_data.Tiredness == 0 then
CombatLog("important", T{596219835266, "<name> is getting tired.", name = unit_data.Nick})
unit_data.WarnTired = true
elseif unit_data.Tiredness == 1 then
CombatLog("important", T{512750148013, "<name> is getting exhausted.", name = unit_data.Nick})
unit_data.WarnTired = true
end
end
if unit_data.TravelTime >= TirednessThreshold then
if unit_data.Tiredness < 2 then
unit_data:ChangeTired(1)
end
DbgTravelTimerPrint("change tired: ", unit_data.session_id, unit_data.Tiredness)
unit_data.TravelTime = 0
unit_data.TravelTimerStart = Game.CampaignTime
unit_data.WarnTired = false
end
end
end
-- If no longer travelling reset the activity to Idle
if not travelling then
DbgTravelTimerPrint("stop travel: ", unit_data.session_id, unit_data.Operation, (unit_data.TravelTime) / const.Scale.h)
unit_data.TravelTimerStart = 0
if unit_data.Operation == "Idle" or
unit_data.Operation == "Traveling" or
unit_data.Operation == "Arriving" then
unit_data:SetCurrentOperation("Idle")
if unit_data.RestTimer == 0 then
DbgTravelTimerPrint("start rest: ", unit_data.session_id, unit_data.Operation)
unit_data.RestTimer = Game.CampaignTime
end
end
end
end
end
OnMsg.OpenSatelliteView = function()
local squads = GetPlayerMercSquads()
for _, squad in ipairs(squads) do
local mercs = squad.units
for _, merc_id in ipairs(mercs) do
local merc = gv_UnitData[merc_id]
if not merc.Operation or merc.Operation == "Idle" then
--this is a sync msg
NetSyncEvents.MercSetOperation(merc_id, "Idle")
end
end
end
end
function SatelliteUnitRestTimeRemaining(ud, nextStepOnly)
if ud.Tiredness == 0 then return false end
if ud.RestTimer <= 0 then return false end
local steps = nextStepOnly and 1 or ud.Tiredness
return (const.Satellite.UnitTirednessRestTime * steps) - (Game.CampaignTime - ud.RestTimer)
end
if FirstLoad then
SatelliteTickPerSectorActivityCalled = {}
end
function SatelliteUnitsTick(squad)
local player_squad = IsPlayer1Squad(squad)
local nonTireTravel = IsSquadWaterTravelling(squad) or IsTraversingShortcut(squad)
local squadUnits = table.copy(squad.units) -- Arriving activty will modify squad list
local sector = gv_Sectors[squad.CurrentSector]
local sector_id = sector.Id
for _, id in ipairs(squadUnits) do
local unit_data = gv_UnitData[id]
local operation_id = unit_data.Operation
local is_operation_started = operation_id=="Idle" or operation_id=="Traveling" or operation_id=="Arriving" or sector and sector.started_operations and sector.started_operations[operation_id]
if not squad.Sleep then
SatelliteTickPerSectorActivityCalled[sector_id] = SatelliteTickPerSectorActivityCalled[sector_id] or {}
if not SatelliteTickPerSectorActivityCalled[sector_id][operation_id] then
SatelliteTickPerSectorActivityCalled[sector_id][operation_id] = true
local sector = gv_Sectors[squad.CurrentSector]
if is_operation_started then
SectorOperations[operation_id]:SectorMercsTick(unit_data)
is_operation_started = operation_id=="Idle" or operation_id=="Traveling" or operation_id=="Arriving" or sector and sector.started_operations and sector.started_operations[operation_id]
else
RecalcOperationETAs(sector,operation_id, "stopped")
end
end
if (player_squad or squad.villain) and is_operation_started and unit_data.Operation==operation_id then
SectorOperations[operation_id]:Tick(unit_data)
local excludingActivity = operation_id ~= "Idle" and operation_id ~= "Traveling" and operation_id ~= "Arriving" and operation_id ~= "RAndR"
local excludingProf = unit_data.OperationProfession ~= "Student" and unit_data.OperationProfession ~= "Patient"
if excludingActivity and excludingProf and is_operation_started then
if not squad.vrForActivity or not squad.vrForActivity[operation_id] or not squad.vrForActivity[operation_id].isPlayed then
local remainingTimeH = (GetOperationTimerETA(unit_data) or 0)/ const.Scale.h
local activityTimeH = (unit_data.OperationInitialETA or 0)/ const.Scale.h
local passedTimeH = activityTimeH - remainingTimeH
if remainingTimeH>0 and passedTimeH >= const.Satellite.BusySatViewHours then
squad.vrForActivity = squad.vrForActivity or {}
squad.vrForActivity[operation_id] = squad.vrForActivity[operation_id] or {}
table.insert_unique(squad.vrForActivity[operation_id], id)
end
end
end
end
end
if unit_data.TravelTimerStart>0 then
if not nonTireTravel then
unit_data.TravelTime = unit_data.TravelTime + (Game.CampaignTime - unit_data.TravelTimerStart)
end
DbgTravelTimerPrint("update travel: ", unit_data.session_id, (unit_data.TravelTime)/const.Scale.h)
unit_data.TravelTimerStart = Game.CampaignTime
end
if player_squad then
if (SatelliteUnitRestTimeRemaining(unit_data, "next_step_only") or 1) <= 0 then
unit_data:SetTired(unit_data.Tiredness>0 and Max(unit_data.Tiredness - 1, 0) or unit_data.Tiredness)
unit_data.RestTimer = Game.CampaignTime
unit_data.TravelTimerStart = 0
unit_data.TravelTime = 0
DbgTravelTimerPrint(id, "rest", "travel:",(unit_data.TravelTime)/const.Scale.h, " rest ", (Game.CampaignTime - unit_data.RestTimer)/const.Scale.h)
end
end
--NetUpdateHash("SatelliteUnitsTick", unit_data.session_id, unit_data.RestTimer, unit_data.Tiredness, unit_data.TravelTimerStart, unit_data.TravelTime)
unit_data:Tick()
end
for operation_id, units in pairs(squad.vrForActivity) do
local is_operation_started = sector and sector.started_operations and sector.started_operations[operation_id]
if is_operation_started and not squad.vrForActivity[operation_id].isPlayed then
local randUnit = table.rand(units)
PlayVoiceResponse(randUnit, "BusySatView")
squad.vrForActivity[operation_id].isPlayed = true
end
end
for _, id in ipairs(squad.units) do
ObjModified(gv_UnitData[id])
end
if squad.arrive_in_sector and squad.arrive_in_sector.time <= Game.CampaignTime then
local sector_id = squad.arrive_in_sector.sector_id
SetSatelliteSquadCurrentSector(squad, sector_id, nil, "teleport")
end
end
-- intel
function GetSectorIntelIds(sector_id)
local campaign = GetCurrentCampaignPreset()
local sector = table.find_value(campaign.Sectors, "Id", sector_id)
return sector and table.values(sector.Intel or empty_table, "sorted", "Id") or empty_table
end
function GetSessionIntelObj(sector_id, item_id)
local sector = gv_Sectors[sector_id]
return sector and sector.intel[item_id], sector
end
function DiscoverIntelForSector(sector_id, suppressNotification)
DiscoverIntelForSectors({sector_id}, suppressNotification)
end
function DiscoverIntelForSectors(sector_ids, suppressNotification)
NetUpdateHash("DiscoverIntelForSectors", suppressNotification, table.unpack(sector_ids))
local discoveredFor = {}
local alreadyKnown = false
for i, s in ipairs(sector_ids) do
local sector = gv_Sectors[s]
if not sector or not sector.Intel then
goto continue
end
if not suppressNotification then
if sector.intel_discovered then
alreadyKnown = true
end
discoveredFor[#discoveredFor + 1] = s
end
sector.intel_discovered = true
NetUpdateHash("DiscoverIntelForSectors2", s)
ObjModified(sector)
Msg("IntelDiscovered", s)
::continue::
end
if #discoveredFor == 0 then return end
Msg("SectorsIntelDiscovered", discoveredFor)
if #discoveredFor == 1 then
local sector = gv_Sectors[discoveredFor[1]]
local text = T{Presets.TacticalNotification.Default.intelFound.text, sector}
if alreadyKnown then
text = text .. T(504828030360, " (already known)")
end
CombatLog("important", text)
else
CombatLog("important", T{Presets.TacticalNotification.Default.intelFoundMultiple.text, sectors = discoveredFor})
end
end
function GetSectorsAvailableForIntel(radius)
local sectorIds = {}
for _, sector in sorted_pairs(gv_Sectors) do
if sector.Intel and not sector.intel_discovered then
if not radius or not gv_CurrentSectorId or GetSectorDistance(gv_CurrentSectorId, sector.Id) <= radius then
sectorIds[#sectorIds + 1] = sector.Id
end
end
end
return sectorIds
end
function DiscoverIntelForRandomSector(radius, suppressNotification)
local sectorIds = GetSectorsAvailableForIntel(radius)
if #sectorIds == 0 then return end
local sectorId = table.rand(sectorIds, InteractionRand(nil, "Satellite"))
NetUpdateHash("DiscoverIntelForRandomSector", gv_CurrentSectorId, sectorId, table.unpack(sectorIds))
DiscoverIntelForSector(sectorId, suppressNotification)
return sectorId
end
function OnMsg.SectorsIntelDiscovered(discoveredFor)
if #discoveredFor > 0 then
GetInGameInterface():SetMode(GetInGameInterfaceMode())
if g_Overview then
VisualizeIntelMarkers(true)
end
end
end
function GetSectorDistance(sectorId1, sectorId2)
local x1, y1 = sector_unpack(sectorId1)
local x2, y2 = sector_unpack(sectorId2)
return abs(x1 - x2) + abs(y1 - y2)
end
function GetSectorDirection(sectorId1, sectorId2)
local y1, x1 = sector_unpack(sectorId1)
local y2, x2 = sector_unpack(sectorId2)
if y1 == y2 then
return x1 > x2 and "West" or "East"
end
return y1 > y2 and "North" or "South"
end
function GetNeighborSector(sector_id, dir, campaign)
local neigh_id
local row, col = sector_unpack(sector_id)
local campaign = campaign or GetCurrentCampaignPreset()
if dir == "North" then
if row == campaign.sector_rowsstart then
return false
end
neigh_id = sector_pack(row - 1, col)
elseif dir == "South" then
local start_row = "A"
if row == campaign.sector_rows then
return false
end
neigh_id = sector_pack(row + 1, col)
elseif dir == "East" then
if col == campaign.sector_columns then
return false
end
neigh_id = sector_pack(row, col + 1)
elseif dir == "West" then
if col == 1 then
return false
end
neigh_id = sector_pack(row, col - 1)
end
-- Game only and not editor
if gv_Sectors then
local underground = IsSectorUnderground(sector_id)
if underground then
local undergroundId = neigh_id .. "_Underground"
if gv_Sectors[undergroundId] then
neigh_id = undergroundId
end
end
end
return neigh_id
end
function GetNeighborSectors(sector_id)
local sectors = {}
local row, col = sector_unpack(sector_id)
local campaign = GetCurrentCampaignPreset()
if row ~= campaign.sector_rowsstart then
sectors[sector_pack(row - 1, col)] = "North"
end
if row ~= campaign.sector_rows then
sectors[sector_pack(row + 1, col)] = "South"
end
if col ~= campaign.sector_columns then
sectors[sector_pack(row, col + 1)] = "East"
end
if col ~= 1 then
sectors[sector_pack(row, col - 1)] = "West"
end
return sectors
end
local function UpdateNeighborSector(sector, neigh_sector, dir, prop_id)
if not neigh_sector then return end
if not neigh_sector[prop_id] then
neigh_sector:SetProperty(prop_id, set())
end
if sector[prop_id] and sector[prop_id][dir] then
local prop_set = neigh_sector:GetProperty(prop_id)
prop_set[opposite_directions[dir]] = true
neigh_sector:SetProperty(prop_id, prop_set)
else
local prop_set = neigh_sector:GetProperty(prop_id)
prop_set[opposite_directions[dir]] = false
neigh_sector:SetProperty(prop_id, prop_set)
end
end
function UpdateNeighborSectorDirectionsProp(sector, dir, prop_id, session_update_only)
local neigh_id = GetNeighborSector(sector.Id, dir)
local currentCampaign = CampaignPresets[Game and Game.Campaign or "HotDiamonds"]
local campaign_neigh_sector = table.find_value(currentCampaign.Sectors, "Id", neigh_id)
if not session_update_only then UpdateNeighborSector(sector, campaign_neigh_sector, dir, prop_id) end
UpdateNeighborSector(sector, gv_Sectors[neigh_id], dir, prop_id)
end
function SatelliteSectorSetDirectionsProp(sector, prop_id, session_update_only)
for _, dir in ipairs(const.WorldDirections) do
UpdateNeighborSectorDirectionsProp(sector, dir, prop_id, session_update_only)
end
end
function SquadIsInCombat(squad_id)
if not g_Combat then
return false
end
local squad = gv_Squads[squad_id]
local sector_id = squad.CurrentSector
if gv_ActiveCombat ~= sector_id then
return false
end
return not IsSquadTravelling(squad)
end
function TFormat.SquadLocation(context)
if not context then return "" end
local routeDestination, isCurrent = GetSquadFinalDestination(context.CurrentSector, context.route)
if not isCurrent and routeDestination then
return T{712350743869, "<CurrentSector> > <routeDestination>",
CurrentSector = Untranslated(context.CurrentSector),
routeDestination = Untranslated(routeDestination)
}
else
return Untranslated(context.CurrentSector)
end
end
function TFormat.SquadMemberCount(context)
if not context then return 0 end
if context.UniqueId == -1 then
return #context.units
end
local squad = gv_Squads[context.UniqueId]
return Untranslated(squad and tostring(#squad.units) or "0")
end
function TFormat.GetSquadPower(context)
if not context then return 0 end
local power = GetSquadPower(context)
return Untranslated(power)
end
function GetSquadTiredUnits(squad, tired)
local exhausted
for _, u in ipairs(squad.units) do
local ud = gv_UnitData[u]
if ud:HasStatusEffect(tired) then
exhausted = exhausted or {}
table.insert(exhausted, ud)
end
end
return exhausted
end
function SatellitePopupQuestion(...)
PauseCampaignTime(GetUICampaignPauseReason("Popup"))
local res
if WaitQuestion(...) == "ok" then
res = true
end
ResumeCampaignTime(GetUICampaignPauseReason("Popup"))
return res
end
function SatellitePopupMessage(...)
PauseCampaignTime(GetUICampaignPauseReason("Popup"))
local res
if WaitMessage(...) == "ok" then
res = true
end
ResumeCampaignTime(GetUICampaignPauseReason("Popup"))
return res
end
function ShowExhaustedUnitsQuestion(squad, exhausted)
exhausted = GetSquadTiredUnits(squad, "Exhausted") or exhausted
if not exhausted or #exhausted == 0 then return end
local nicks = table.map(exhausted, "Nick")
local exhausted_units_listed = table.concat(nicks, ", ")
if exhausted and #exhausted < #squad.units then
local destination = next(squad.route) and GetSquadFinalDestination(squad.CurrentSector, squad.route) or false
local result = SatellitePopupQuestion(terminal.desktop,
T(824112417429, "Warning"),
T{246005211663, "Some mercs assigned to <em><squadName></em> are <em>exhausted</em> and can't travel anymore. The squad will stop to rest in <em><SectorName(sector_id)></em>. <newline><newline>You can split the squad and order non-exhausted mercs to carry on to <destination_sector_id>.\n\nExhausted mercs: <nicknames>",
squadName = Untranslated(squad.Name),
nicknames = exhausted_units_listed,
sector_id = gv_Sectors[squad.CurrentSector],
destination_sector_id = destination and gv_Sectors[destination].display_name or T(164957197964, "destination sector"),
},
T(167389155310, "Split squad"),
T(849471603425, "Stop Travel"))
return result and table.map(exhausted, "session_id") or false
else
local result = SatellitePopupMessage(terminal.desktop,
T(824112417429, "Warning"),
T{122112968253, "Some mercs assigned to <squadName> are exhausted and can't travel anymore. The squad will stop to rest in <sector_id>.\n\nExhausted mercs: <nicknames>",
squadName = Untranslated(squad.Name),
nicknames = exhausted_units_listed,
sector_id = gv_Sectors[squad.CurrentSector].display_name,
},
T(849471603425, "Stop Travel"))
return false
end
end
function HasTiredMember(squad, tired)
for _, u in ipairs(squad.units) do
local ud = gv_UnitData[u]
if ud:HasStatusEffect(tired) then
return true
end
end
end
function GetSquadExhaustedUnitIds(squad)
local exhausted
for _, u in ipairs(squad.units) do
local ud = gv_UnitData[u]
if ud:HasStatusEffect("Exhausted") then
exhausted = exhausted or {}
table.insert(exhausted, u)
end
end
return exhausted
end
--[[function HandleExhaustedUnitsQuestion(squad, exhausted)
if not gv_SatelliteView or not IsSquadTravelling(squad) or IsSquadInDestinationSector(squad) or not HasTiredMember(squad, "Exhausted") then
return
end
if IsSquadWaterTravelling(squad) or squad.uninterruptable_travel then
return
end
if SquadTravelCancelled(squad) then
return
end
if not LocalPlayerHasAuthorityOverSquad(squad) then
return
end
local exhausted_ids = ShowExhaustedUnitsQuestion(squad, exhausted)
if exhausted_ids and #exhausted_ids < #squad.units then
local squad_id = SplitSquad(squad, exhausted_ids)
local new_squad = gv_Squads[squad_id]
new_squad.water_route = squad.water_route and table.copy(squad.water_route, "deep") or false
new_squad.route = squad.route and table.copy(squad.route, "deep") or false
local oldSquadRoute
if squad.water_route then
oldSquadRoute = { table.reverse(new_squad.water_route) }
new_squad.returning_water_travel = true
new_squad.water_route = squad.water_route
else
-- It is expected for the squad to be centered when this is called,
-- so we dont need to cancel travel so we just remove the current route.
oldSquadRoute = false
end
NetSyncEvent("AssignSatelliteSquadRoute", squad_id, oldSquadRoute)
else
NetSyncEvent("SquadCancelTravel", squad.UniqueId)
end
end]]
function GetCurrentSectorPlayerSquads(sector_id)
return GetSectorSquadsFromSide(sector_id or gv_CurrentSectorId,"player1","player2")
end
function GetSquadsWithIds(squad_ids)
local squads = {}
for _, id in ipairs(squad_ids or empty_table) do
table.insert(squads, gv_Squads[id])
end
return squads
end
function SatelliteSquadWaitInSector(squad, time)
local had = not not squad.wait_in_sector
local willHave = not not time
squad.wait_in_sector = time or false
if had ~= willHave then Msg("SquadWaitInSectorChanged", squad) end
end
-- When sailing into water from land or moving in water should be true
-- Also when sailing from water into land
function SetSquadWaterTravel(squad, val)
local oldVal = squad.water_travel
squad.water_travel = val
if val == oldVal or squad.Side ~= "player1" then return end
-- Water travel rest logic
if val then -- Starting water travel
squad.water_travel_rest_timer = Game.CampaignTime
elseif (squad.water_travel_rest_timer or 0) > 0 then -- Finishing water travel
local timePassed = Game.CampaignTime - squad.water_travel_rest_timer
for i, u in ipairs(squad.units) do
local ud = gv_UnitData[u]
if timePassed >= const.Satellite.UnitTirednessRestTime then
ud:SetTired(ud.Tiredness>0 and Max(ud.Tiredness - 1, 0) or ud.Tiredness)
end
end
squad.water_travel_rest_timer = 0
end
end
function OnMsg.EnterSector()
local sector = gv_Sectors[gv_CurrentSectorId]
if not sector then return end
sector.discovered = true
end
function OnMsg.SquadSectorChanged(squad)
if squad.Side == "player1" then
local sector = gv_Sectors[squad.CurrentSector]
sector.discovered = true
end
end
function OnMsg.SquadStartedTravelling(squad)
if squad.Side == "player1" then
local route = squad.route
for i, wp in ipairs(route) do
for _, sId in ipairs(wp) do
local sector = gv_Sectors[sId]
sector.discovered = true
end
end
end
end
function DbgDiscoverAllSectors()
for id, s in pairs(gv_Sectors) do
s.discovered = true
end
end
function SavegameSessionDataFixups.SectorDiscoveredFix(session_data, _, lua_ver)
if lua_ver and lua_ver > 347132 then return end
local sectors = table.get(session_data, "gvars", "gv_Sectors")
if not sectors then return end
for i, s in pairs(sectors) do
if s.player_visited then
s.discovered = true
end
end
end |