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
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#include <cstdio>
#include <cstdarg>
#include <exception>
#include <string>
#include "cfile/cfile.h"
#include "controlconfig/controlsconfig.h"
#include "controlconfig/presets.h"
#include "debugconsole/console.h"
#include "def_files/def_files.h"
#include "globalincs/pstypes.h"
#include "globalincs/systemvars.h"
#include "io/joy.h"
#include "io/key.h"
#include "io/mouse.h"
#include "localization/localize.h"
#include "options/Option.h"
#include "osapi/dialogs.h"
#include "parse/parselo.h"
#include "scripting/scripting.h"
#include <map>
// z64: These enumerations MUST equal to those in controlsconfig.cpp...
// z64: Really need a better way than this.
enum CC_tab {
NO_TAB =-1, // Not on any tab accisible by the player
TARGET_TAB =0, // Targeting controls
SHIP_TAB =1, // Flight controls
WEAPON_TAB =2, // Weapon selection and firing controls (and countermeasures)
COMPUTER_TAB =3 // Energy Management and Misc. controls
};
int Failed_key_index;
// Joystick configuration
int Joy_dead_zone_size = 10;
auto DeadZoneOption = options::OptionBuilder<int>("Input.JoystickDeadZone",
std::pair<const char*, int>{"Deadzone", 1377},
std::pair<const char*, int>{"The deadzone used for all joysticks", 1744})
.category(std::make_pair("Input", 1827))
.range(0, 45)
.level(options::ExpertLevel::Beginner)
.default_val(10)
.bind_to(&Joy_dead_zone_size)
.importance(1)
.flags({options::OptionFlags::RetailBuiltinOption})
.finish();
int Joy_sensitivity = 9;
auto SensitivityOption = options::OptionBuilder<int>("Input.JoystickSensitivity",
std::pair<const char*, int>{"Sensitivity", 1745},
std::pair<const char*, int>{"The sensitivity used for all joysticks", 1746})
.category(std::make_pair("Input", 1827))
.range(0, 9)
.level(options::ExpertLevel::Beginner)
.default_val(9)
.bind_to(&Joy_sensitivity)
.importance(2)
.flags({options::OptionFlags::RetailBuiltinOption})
.finish();
//! arrays which hold the key mappings. The array index represents a key-independent action.
//! please use SPACES for aligning the fields of this array
//! When adding new controls, order that they show up is dependant on their location in IoActionId, not on their hardcoded locations here
//! It is still recommended however that the order between declaration and definition is maintained for easy lookup
//XSTR:OFF
SCP_vector<CCI> Control_config;
//! Vector of presets. Each preset is a collection of bindings that can be copied into Control_config's bindings. [0] is the default preset.
SCP_vector<CC_preset> Control_config_presets;
struct LuaHook {
bool enabled = false;
luacpp::LuaFunction hook;
luacpp::LuaFunction override;
};
SCP_map<IoActionId, LuaHook> Lua_hooks;
/**
* Initializes the Control_config vector and the hardcoded defaults preset
*/
void control_config_common_init_bindings() {
Control_config.clear(); // Clear exisitng vectory, just in case init is run more than once for whatever reason
CCI_builder Builder(Control_config);
Builder.start()
// Note: when adding new controls, group them according to the tab they would show up on.
// action_id, key_default, secondary, tab, XStR index, Text, CC_Type
// Note: when adding new controls, if a control does nothing in retail data, it should be disabled by default. The controls config menu
// is cluttered enough as is, don't need to mess it up any more. --z64
// Ship targeting
(TARGET_NEXT, KEY_T, -1, TARGET_TAB, 1, "Target Next Ship", CC_TYPE_TRIGGER)
(TARGET_PREV, KEY_SHIFTED | KEY_T, -1, TARGET_TAB, 1, "Target Previous Ship", CC_TYPE_TRIGGER)
(TARGET_NEXT_CLOSEST_HOSTILE, KEY_H, 2, TARGET_TAB, 1, "Target Next Closest Hostile Ship", CC_TYPE_TRIGGER)
(TARGET_PREV_CLOSEST_HOSTILE, KEY_SHIFTED | KEY_H, -1, TARGET_TAB, 1, "Target Previous Closest Hostile Ship", CC_TYPE_TRIGGER)
(TOGGLE_AUTO_TARGETING, KEY_ALTED | KEY_H, -1, TARGET_TAB, 1, "Toggle Auto Targeting", CC_TYPE_TRIGGER)
(TARGET_NEXT_CLOSEST_FRIENDLY, KEY_F, -1, TARGET_TAB, 1, "Target Next Closest Friendly Ship", CC_TYPE_TRIGGER)
(TARGET_PREV_CLOSEST_FRIENDLY, KEY_SHIFTED | KEY_F, -1, TARGET_TAB, 1, "Target Previous Closest Friendly Ship", CC_TYPE_TRIGGER)
(TARGET_SHIP_IN_RETICLE, KEY_Y, 4, TARGET_TAB, 1, "Target Ship in Reticle", CC_TYPE_TRIGGER)
(TARGET_CLOSEST_SHIP_ATTACKING_TARGET, KEY_G, -1, TARGET_TAB, 1, "Target Target's Nearest Attacker", CC_TYPE_TRIGGER)
(TARGET_LAST_TRANMISSION_SENDER, KEY_ALTED | KEY_Y, -1, TARGET_TAB, 1, "Target Last Ship to Send Transmission", CC_TYPE_TRIGGER)
(STOP_TARGETING_SHIP, KEY_ALTED | KEY_T, -1, TARGET_TAB, 1, "Turn Off Targeting", CC_TYPE_TRIGGER)
(TARGET_SUBOBJECT_IN_RETICLE, KEY_V, -1, TARGET_TAB, 1, "Target Subsystem in Reticle", CC_TYPE_TRIGGER)
(TARGET_NEXT_SUBOBJECT, KEY_S, -1, TARGET_TAB, 1, "Target Next Subsystem", CC_TYPE_TRIGGER)
(TARGET_PREV_SUBOBJECT, KEY_SHIFTED | KEY_S, -1, TARGET_TAB, 1, "Target Previous Subsystem", CC_TYPE_TRIGGER)
(STOP_TARGETING_SUBSYSTEM, KEY_ALTED | KEY_S, -1, TARGET_TAB, 1, "Turn Off Targeting of Subsystems", CC_TYPE_TRIGGER)
(TARGET_CLOSEST_SHIP_ATTACKING_SELF, KEY_R, 6, TARGET_TAB, 1, "Target Closest Attacking Ship", CC_TYPE_TRIGGER)
(TARGET_TARGETS_TARGET, KEY_J, -1, TARGET_TAB, 1, "Target Target's Target", CC_TYPE_TRIGGER)
(TARGET_NEXT_ESCORT_SHIP, KEY_E, -1, TARGET_TAB, 1, "Target Next Escort Ship", CC_TYPE_TRIGGER)
(TARGET_CLOSEST_REPAIR_SHIP, KEY_ALTED | KEY_R, -1, TARGET_TAB, 1, "Target Closest Repair Ship", CC_TYPE_TRIGGER)
(TARGET_NEXT_UNINSPECTED_CARGO, KEY_U, -1, TARGET_TAB, 1, "Target Next Uninspected Cargo", CC_TYPE_TRIGGER)
(TARGET_PREV_UNINSPECTED_CARGO, KEY_SHIFTED | KEY_U, -1, TARGET_TAB, 1, "Target Previous Uninspected Cargo", CC_TYPE_TRIGGER)
(TARGET_NEWEST_SHIP, KEY_N, -1, TARGET_TAB, 1, "Target Newest Ship in Area", CC_TYPE_TRIGGER)
(TARGET_NEXT_LIVE_TURRET, KEY_K, -1, TARGET_TAB, 1, "Target Next Live Turret", CC_TYPE_TRIGGER)
(TARGET_PREV_LIVE_TURRET, KEY_SHIFTED | KEY_K, -1, TARGET_TAB, 1, "Target Previous Live Turret", CC_TYPE_TRIGGER)
(TARGET_NEXT_BOMB, KEY_B, -1, TARGET_TAB, 1, "Target Next Hostile Bomb or Bomber", CC_TYPE_TRIGGER)
(TARGET_PREV_BOMB, KEY_SHIFTED | KEY_B, -1, TARGET_TAB, 1, "Target Previous Hostile Bomb or Bomber", CC_TYPE_TRIGGER)
// flight controls (Rotation)
(BANK_LEFT, KEY_PAD7, -1, SHIP_TAB, 1, "Bank Left", CC_TYPE_CONTINUOUS)
(BANK_RIGHT, KEY_PAD9, -1, SHIP_TAB, 1, "Bank Right", CC_TYPE_CONTINUOUS)
(PITCH_FORWARD, KEY_PAD8, -1, SHIP_TAB, 1, "Pitch Forward", CC_TYPE_CONTINUOUS)
(PITCH_BACK, KEY_PAD2, -1, SHIP_TAB, 1, "Pitch Backward", CC_TYPE_CONTINUOUS)
(YAW_LEFT, KEY_PAD4, -1, SHIP_TAB, 1, "Yaw Left", CC_TYPE_CONTINUOUS)
(YAW_RIGHT, KEY_PAD6, -1, SHIP_TAB, 1, "Yaw Right", CC_TYPE_CONTINUOUS)
// flight controls (Throttle)
(ZERO_THROTTLE, KEY_BACKSP, -1, SHIP_TAB, 1, "Set Throttle to Zero", CC_TYPE_TRIGGER)
(MAX_THROTTLE, KEY_SLASH, -1, SHIP_TAB, 1, "Set Throttle to Max", CC_TYPE_TRIGGER)
(ONE_THIRD_THROTTLE, KEY_LBRACKET, -1, SHIP_TAB, 1, "Set Throttle to One-Third", CC_TYPE_TRIGGER)
(TWO_THIRDS_THROTTLE, KEY_RBRACKET, -1, SHIP_TAB, 1, "Set Throttle to Two-Thirds", CC_TYPE_TRIGGER)
(PLUS_5_PERCENT_THROTTLE, KEY_EQUAL, -1, SHIP_TAB, 1, "Increase Throttle 5 Percent", CC_TYPE_TRIGGER)
(MINUS_5_PERCENT_THROTTLE, KEY_MINUS, -1, SHIP_TAB, 1, "Decrease Throttle 5 Percent", CC_TYPE_TRIGGER)
// flight controls (Thrust)
(FORWARD_THRUST, KEY_A, -1, SHIP_TAB, 1, "Forward Thrust", CC_TYPE_CONTINUOUS)
(REVERSE_THRUST, KEY_Z, -1, SHIP_TAB, 1, "Reverse Thrust", CC_TYPE_CONTINUOUS)
(RIGHT_SLIDE_THRUST, KEY_SHIFTED | KEY_3, -1, SHIP_TAB, 1, "Right Thrust", CC_TYPE_CONTINUOUS)
(LEFT_SLIDE_THRUST, KEY_SHIFTED | KEY_1, -1, SHIP_TAB, 1, "Left Thrust", CC_TYPE_CONTINUOUS)
(UP_SLIDE_THRUST, KEY_SHIFTED | KEY_PADPLUS, -1, SHIP_TAB, 1, "Up Thrust", CC_TYPE_CONTINUOUS)
(DOWN_SLIDE_THRUST, KEY_SHIFTED | KEY_PADENTER, -1, SHIP_TAB, 1, "Down Thrust", CC_TYPE_CONTINUOUS)
// flight controls (flight modes)
(BANK_WHEN_PRESSED, -1, -1, SHIP_TAB, 1, "Bank When Pressed", CC_TYPE_CONTINUOUS)
(AFTERBURNER, KEY_TAB, 5, SHIP_TAB, 1, "Afterburner", CC_TYPE_CONTINUOUS)
(GLIDE_WHEN_PRESSED, -1, -1, SHIP_TAB, 1774, "Glide When Pressed", CC_TYPE_CONTINUOUS)
(TOGGLE_GLIDING, KEY_ALTED | KEY_G, -1, SHIP_TAB, 1775, "Toggle Gliding", CC_TYPE_TRIGGER)
// flight controls (axes)
(JOY_HEADING_AXIS, JOY_X_AXIS, MOUSE_X_AXIS, SHIP_TAB, 1016, "Turn (Yaw) Axis", CC_TYPE_AXIS_REL)
(JOY_PITCH_AXIS, JOY_Y_AXIS, MOUSE_Y_AXIS, SHIP_TAB, 1017, "Pitch Axis", CC_TYPE_AXIS_REL)
(JOY_BANK_AXIS, JOY_RX_AXIS, -1, SHIP_TAB, 1018, "Bank Axis", CC_TYPE_AXIS_REL)
(JOY_ABS_THROTTLE_AXIS, -1, -1, SHIP_TAB, 1019, "Absolute Throttle Axis", CC_TYPE_AXIS_ABS)
(JOY_REL_THROTTLE_AXIS, -1, -1, SHIP_TAB, 1020, "Relative Throttle Axis", CC_TYPE_AXIS_REL)
// weapons
(FIRE_PRIMARY, KEY_LCTRL, 0, WEAPON_TAB, 1, "Fire Primary Weapon", CC_TYPE_CONTINUOUS)
(FIRE_SECONDARY, KEY_SPACEBAR, 1, WEAPON_TAB, 1, "Fire Secondary Weapon", CC_TYPE_CONTINUOUS)
(CYCLE_NEXT_PRIMARY, KEY_PERIOD, -1, WEAPON_TAB, 1, "Cycle Primary Weapon Forward", CC_TYPE_TRIGGER)
(CYCLE_PREV_PRIMARY, KEY_COMMA, -1, WEAPON_TAB, 1, "Cycle Primary Weapon Backward", CC_TYPE_TRIGGER)
(CYCLE_PRIMARY_WEAPON_SEQUENCE, KEY_O, -1, WEAPON_TAB, 1776, "Cycle Primary Weapon Firing Rate", CC_TYPE_TRIGGER)
(CYCLE_SECONDARY, KEY_DIVIDE, -1, WEAPON_TAB, 1, "Cycle Secondary Weapon Forward", CC_TYPE_TRIGGER)
(CYCLE_NUM_MISSLES, KEY_SHIFTED | KEY_DIVIDE, -1, WEAPON_TAB, 1, "Cycle Secondary Weapon Firing Rate", CC_TYPE_TRIGGER)
(LAUNCH_COUNTERMEASURE, KEY_X, 3, WEAPON_TAB, 1, "Launch Countermeasure", CC_TYPE_TRIGGER)
// matching speed
(MATCH_TARGET_SPEED, KEY_M, -1, COMPUTER_TAB, 1, "Match Target Speed", CC_TYPE_TRIGGER)
(TOGGLE_AUTO_MATCH_TARGET_SPEED, KEY_ALTED | KEY_M, -1, COMPUTER_TAB, 1, "Toggle Auto Speed Matching", CC_TYPE_TRIGGER)
// squadmate messaging
(ATTACK_MESSAGE, KEY_SHIFTED | KEY_A, -1, COMPUTER_TAB, 1, "(Squadmate) Attack My Target", CC_TYPE_TRIGGER)
(DISARM_MESSAGE, KEY_SHIFTED | KEY_Z, -1, COMPUTER_TAB, 1, "(Squadmate) Disarm My Target", CC_TYPE_TRIGGER)
(DISABLE_MESSAGE, KEY_SHIFTED | KEY_D, -1, COMPUTER_TAB, 1, "(Squadmate) Disable My Target", CC_TYPE_TRIGGER)
(ATTACK_SUBSYSTEM_MESSAGE, KEY_SHIFTED | KEY_V, -1, COMPUTER_TAB, 1, "(Squadmate) Attack My Subsystem", CC_TYPE_TRIGGER)
(CAPTURE_MESSAGE, KEY_SHIFTED | KEY_X, -1, COMPUTER_TAB, 1, "(Squadmate) Capture My Target", CC_TYPE_TRIGGER)
(ENGAGE_MESSAGE, KEY_SHIFTED | KEY_E, -1, COMPUTER_TAB, 1, "(Squadmate) Engage Enemy", CC_TYPE_TRIGGER)
(FORM_MESSAGE, KEY_SHIFTED | KEY_W, -1, COMPUTER_TAB, 1, "(Squadmate) Form on My Wing", CC_TYPE_TRIGGER)
(IGNORE_MESSAGE, KEY_SHIFTED | KEY_I, -1, COMPUTER_TAB, 1, "(Squadmate) Ignore My Target", CC_TYPE_TRIGGER)
(PROTECT_MESSAGE, KEY_SHIFTED | KEY_P, -1, COMPUTER_TAB, 1, "(Squadmate) Protect My Target", CC_TYPE_TRIGGER)
(COVER_MESSAGE, KEY_SHIFTED | KEY_C, -1, COMPUTER_TAB, 1, "(Squadmate) Cover Me", CC_TYPE_TRIGGER)
(WARP_MESSAGE, KEY_SHIFTED | KEY_J, -1, COMPUTER_TAB, 1, "(Squadmate) Return to Base", CC_TYPE_TRIGGER)
(REARM_MESSAGE, KEY_SHIFTED | KEY_R, -1, COMPUTER_TAB, 1, "(Squadmate) Rearm Me", CC_TYPE_TRIGGER)
// Views
(VIEW_CHASE, KEY_PADMULTIPLY, -1, COMPUTER_TAB, 1, "Chase View", CC_TYPE_TRIGGER)
(VIEW_EXTERNAL, KEY_PADPERIOD, -1, COMPUTER_TAB, 1, "External View", CC_TYPE_TRIGGER)
(VIEW_EXTERNAL_TOGGLE_CAMERA_LOCK, KEY_PADENTER, -1, COMPUTER_TAB, 1, "Toggle External Camera Lock", CC_TYPE_TRIGGER)
(VIEW_SLEW, KEY_PAD0, -1, COMPUTER_TAB, 1, "Free-Look View", CC_TYPE_CONTINUOUS)
(VIEW_OTHER_SHIP, KEY_PADDIVIDE, -1, COMPUTER_TAB, 1, "Current Target View", CC_TYPE_TRIGGER)
(VIEW_DIST_INCREASE, KEY_PADPLUS, -1, COMPUTER_TAB, 1, "Increase View Distance", CC_TYPE_CONTINUOUS)
(VIEW_DIST_DECREASE, KEY_PADMINUS, -1, COMPUTER_TAB, 1, "Decrease View Distance", CC_TYPE_CONTINUOUS)
(VIEW_CENTER, KEY_PAD5, -1, COMPUTER_TAB, 1, "Center View", CC_TYPE_CONTINUOUS)
(PADLOCK_UP, -1, 33, COMPUTER_TAB, 1, "View Up", CC_TYPE_CONTINUOUS)
(PADLOCK_DOWN, -1, 32, COMPUTER_TAB, 1, "View Rear", CC_TYPE_CONTINUOUS)
(PADLOCK_LEFT, -1, 34, COMPUTER_TAB, 1, "View Left", CC_TYPE_CONTINUOUS)
(PADLOCK_RIGHT, -1, 35, COMPUTER_TAB, 1, "View Right", CC_TYPE_CONTINUOUS)
(VIEW_TOPDOWN, -1, -1, COMPUTER_TAB, 1777, "Top-Down View", CC_TYPE_TRIGGER)
(VIEW_TRACK_TARGET, -1, -1, COMPUTER_TAB, 1778, "Target Padlock View", CC_TYPE_TRIGGER)
(RADAR_RANGE_CYCLE, KEY_RAPOSTRO, -1, COMPUTER_TAB, 1, "Cycle Radar Range", CC_TYPE_TRIGGER)
(SQUADMSG_MENU, KEY_C, -1, COMPUTER_TAB, 1, "Communications Menu", CC_TYPE_TRIGGER)
(SHOW_GOALS, -1, -1, NO_TAB, 1, "Show Objectives", CC_TYPE_TRIGGER, true)
(END_MISSION, KEY_ALTED | KEY_J, -1, COMPUTER_TAB, 1, "Enter Subspace (End Mission)", CC_TYPE_TRIGGER)
(INCREASE_WEAPON, KEY_INSERT, -1, COMPUTER_TAB, 1, "Weapon Energy Increase", CC_TYPE_TRIGGER)
(DECREASE_WEAPON, KEY_DELETE, -1, COMPUTER_TAB, 1, "Weapon Energy Decrease", CC_TYPE_TRIGGER)
(INCREASE_SHIELD, KEY_HOME, -1, COMPUTER_TAB, 1, "Shield Energy Increase", CC_TYPE_TRIGGER)
(DECREASE_SHIELD, KEY_END, -1, COMPUTER_TAB, 1, "Shield Energy Decrease", CC_TYPE_TRIGGER)
(INCREASE_ENGINE, KEY_PAGEUP, -1, COMPUTER_TAB, 1, "Engine Energy Increase", CC_TYPE_TRIGGER)
(DECREASE_ENGINE, KEY_PAGEDOWN, -1, COMPUTER_TAB, 1, "Engine Energy Decrease", CC_TYPE_TRIGGER)
(ETS_EQUALIZE, KEY_ALTED | KEY_D, -1, COMPUTER_TAB, 1, "Equalize Energy Settings", CC_TYPE_TRIGGER)
(SHIELD_EQUALIZE, KEY_Q, 7, COMPUTER_TAB, 1, "Equalize Shields", CC_TYPE_TRIGGER)
(SHIELD_XFER_TOP, KEY_UP, -1, COMPUTER_TAB, 1, "Augment Shield Forward", CC_TYPE_TRIGGER)
(SHIELD_XFER_BOTTOM, KEY_DOWN, -1, COMPUTER_TAB, 1, "Augment Shield Rear", CC_TYPE_TRIGGER)
(SHIELD_XFER_LEFT, KEY_LEFT, -1, COMPUTER_TAB, 1, "Augment Shield Left", CC_TYPE_TRIGGER)
(SHIELD_XFER_RIGHT, KEY_RIGHT, -1, COMPUTER_TAB, 1, "Augment Shield Right", CC_TYPE_TRIGGER)
(XFER_SHIELD, KEY_SCROLLOCK, -1, COMPUTER_TAB, 1, "Transfer Energy Laser->Shield", CC_TYPE_TRIGGER)
(XFER_LASER, KEY_SHIFTED | KEY_SCROLLOCK, -1, COMPUTER_TAB, 1, "Transfer Energy Shield->Laser", CC_TYPE_TRIGGER)
// Navigation and Autopilot
(SHOW_NAVMAP, -1, -1, NO_TAB, 1, "Show Nav Map", CC_TYPE_TRIGGER, true)
(AUTO_PILOT_TOGGLE, KEY_ALTED | KEY_A, -1, COMPUTER_TAB, 1779, "Toggle Auto Pilot", CC_TYPE_TRIGGER)
(NAV_CYCLE, KEY_ALTED | KEY_N, -1, COMPUTER_TAB, 1780, "Cycle Nav Points", CC_TYPE_TRIGGER)
// Escort
(ADD_REMOVE_ESCORT, KEY_ALTED | KEY_E, -1, COMPUTER_TAB, 1, "Add or Remove Escort", CC_TYPE_TRIGGER)
(ESCORT_CLEAR, KEY_ALTED | KEY_SHIFTED | KEY_E, -1, COMPUTER_TAB, 1, "Clear Escort List", CC_TYPE_TRIGGER)
// Multiplayer
(MULTI_MESSAGE_ALL, KEY_1, -1, COMPUTER_TAB, 1, "(Multiplayer) Message All", CC_TYPE_TRIGGER)
(MULTI_MESSAGE_FRIENDLY, KEY_2, -1, COMPUTER_TAB, 1, "(Multiplayer) Message Friendly", CC_TYPE_TRIGGER)
(MULTI_MESSAGE_HOSTILE, KEY_3, -1, COMPUTER_TAB, 1, "(Multiplayer) Message Hostile", CC_TYPE_TRIGGER)
(MULTI_MESSAGE_TARGET, KEY_4, -1, COMPUTER_TAB, 1, "(Multiplayer) Message Target", CC_TYPE_TRIGGER)
(MULTI_OBSERVER_ZOOM_TO, KEY_ALTED | KEY_X, -1, COMPUTER_TAB, 1, "(Multiplayer) Observer Zoom to Target", CC_TYPE_TRIGGER)
(MULTI_TOGGLE_NETINFO, KEY_SHIFTED | KEY_N, -1, COMPUTER_TAB, 1, "(Multiplayer) Toggle Network Info", CC_TYPE_TRIGGER)
(MULTI_SELF_DESTRUCT, KEY_SHIFTED | KEY_END, -1, COMPUTER_TAB, 1, "(Multiplayer) Self Destruct", CC_TYPE_TRIGGER)
// Time compression
(TIME_SPEED_UP, KEY_SHIFTED | KEY_PERIOD, -1, COMPUTER_TAB, 1, "Time Compression Increase", CC_TYPE_TRIGGER)
(TIME_SLOW_DOWN, KEY_SHIFTED | KEY_COMMA, -1, COMPUTER_TAB, 1, "Time Compression Decrease", CC_TYPE_TRIGGER)
// HUD
(TOGGLE_HUD, KEY_SHIFTED | KEY_O, -1, COMPUTER_TAB, 1, "Toggle HUD", CC_TYPE_TRIGGER)
(TOGGLE_HUD_CONTRAST, KEY_L, -1, COMPUTER_TAB, 1, "Toggle High HUD Contrast", CC_TYPE_TRIGGER)
(TOGGLE_HUD_SHADOWS, KEY_ALTED | KEY_L, -1, COMPUTER_TAB, 1781, "Toggle HUD Drop Shadows", CC_TYPE_TRIGGER)
(HUD_TARGETBOX_TOGGLE_WIREFRAME, KEY_ALTED | KEY_SHIFTED | KEY_Q, -1, COMPUTER_TAB, 1, "Toggle HUD Wireframe Target View", CC_TYPE_TRIGGER)
// Custom Controls
(CUSTOM_CONTROL_1, KEY_ALTED | KEY_SHIFTED | KEY_1, -1, COMPUTER_TAB, 1784, "Custom Control 1", CC_TYPE_TRIGGER, true)
(CUSTOM_CONTROL_2, KEY_ALTED | KEY_SHIFTED | KEY_2, -1, COMPUTER_TAB, 1785, "Custom Control 2", CC_TYPE_TRIGGER, true)
(CUSTOM_CONTROL_3, KEY_ALTED | KEY_SHIFTED | KEY_3, -1, COMPUTER_TAB, 1786, "Custom Control 3", CC_TYPE_TRIGGER, true)
(CUSTOM_CONTROL_4, KEY_ALTED | KEY_SHIFTED | KEY_4, -1, COMPUTER_TAB, 1787, "Custom Control 4", CC_TYPE_TRIGGER, true)
(CUSTOM_CONTROL_5, KEY_ALTED | KEY_SHIFTED | KEY_5, -1, COMPUTER_TAB, 1788, "Custom Control 5", CC_TYPE_TRIGGER, true)
.end(); // Builder
// init default preset
Control_config_presets.clear();
CC_preset preset;
preset.bindings.reserve(Control_config.size());
preset.name = "default";
preset.type = Preset_t::hardcode;
for (auto &item : Control_config) {
preset.bindings.push_back(CCB(item));
}
Control_config_presets.push_back(preset);
};
// Map used to convert strings in the Controlconfigdefaults.tbl into their respective IoActionId
// This might also be used to save old pilotfiles, but the order will be important.
// The new .tbl shall use the IoActionId's themselves.
SCP_unordered_map<SCP_string, IoActionId> old_text = {
{"Target Next Ship", TARGET_NEXT},
{"Target Previous Ship", TARGET_PREV},
{"Target Next Closest Hostile Ship", TARGET_NEXT_CLOSEST_HOSTILE},
{"Target Previous Closest Hostile Ship", TARGET_PREV_CLOSEST_HOSTILE},
{"Toggle Auto Targeting", TOGGLE_AUTO_TARGETING},
{"Target Next Closest Friendly Ship", TARGET_NEXT_CLOSEST_FRIENDLY},
{"Target Previous Closest Friendly Ship", TARGET_PREV_CLOSEST_FRIENDLY},
{"Target Ship in Reticle", TARGET_SHIP_IN_RETICLE},
{"Target Target's Nearest Attacker", TARGET_CLOSEST_SHIP_ATTACKING_TARGET},
{"Target Last Ship to Send Transmission", TARGET_LAST_TRANMISSION_SENDER},
{"Turn Off Targeting", STOP_TARGETING_SHIP},
{"Target Subsystem in Reticle", TARGET_SUBOBJECT_IN_RETICLE},
{"Target Next Subsystem", TARGET_NEXT_SUBOBJECT},
{"Target Previous Subsystem", TARGET_PREV_SUBOBJECT},
{"Turn Off Targeting of Subsystems", STOP_TARGETING_SUBSYSTEM},
{"Match Target Speed", MATCH_TARGET_SPEED},
{"Toggle Auto Speed Matching", TOGGLE_AUTO_MATCH_TARGET_SPEED},
{"Fire Primary Weapon", FIRE_PRIMARY},
{"Fire Secondary Weapon", FIRE_SECONDARY},
{"Cycle Forward Primary Weapon", CYCLE_NEXT_PRIMARY},
{"Cycle Backward Primary Weapon", CYCLE_PREV_PRIMARY},
{"Cycle Secondary Weapon Bank", CYCLE_SECONDARY},
{"Cycle Secondary Weapon Firing Rate", CYCLE_NUM_MISSLES},
{"Launch Countermeasure", LAUNCH_COUNTERMEASURE},
{"Forward Thrust", FORWARD_THRUST},
{"Reverse Thrust", REVERSE_THRUST},
{"Bank Left", BANK_LEFT},
{"Bank Right", BANK_RIGHT},
{"Pitch Forward", PITCH_FORWARD},
{"Pitch Backward", PITCH_BACK},
{"Turn Left", YAW_LEFT},
{"Turn Right", YAW_RIGHT},
{"Set Throttle to Zero", ZERO_THROTTLE},
{"Set Throttle to Max", MAX_THROTTLE},
{"Set Throttle to One-Third", ONE_THIRD_THROTTLE},
{"Set Throttle to Two-Thirds", TWO_THIRDS_THROTTLE},
{"Increase Throttle 5 Percent", PLUS_5_PERCENT_THROTTLE},
{"Decrease Throttle 5 Percent", MINUS_5_PERCENT_THROTTLE},
{"Attack My Target", ATTACK_MESSAGE},
{"Disarm My Target", DISARM_MESSAGE},
{"Disable My Target", DISABLE_MESSAGE},
{"Attack My Subsystem", ATTACK_SUBSYSTEM_MESSAGE},
{"Capture My Target", CAPTURE_MESSAGE},
{"Engage Enemy", ENGAGE_MESSAGE},
{"Form on My Wing", FORM_MESSAGE},
{"Ignore My Target", IGNORE_MESSAGE},
{"Protect My Target", PROTECT_MESSAGE},
{"Cover Me", COVER_MESSAGE},
{"Return to Base", WARP_MESSAGE},
{"Rearm Me", REARM_MESSAGE},
{"Target Closest Attacking Ship", TARGET_CLOSEST_SHIP_ATTACKING_SELF},
{"Chase View", VIEW_CHASE},
{"External View", VIEW_EXTERNAL},
{"Toggle External Camera Lock", VIEW_EXTERNAL_TOGGLE_CAMERA_LOCK},
{"Free Look View", VIEW_SLEW},
{"Current Target View", VIEW_OTHER_SHIP},
{"Increase View Distance", VIEW_DIST_INCREASE},
{"Decrease View Distance", VIEW_DIST_DECREASE},
{"Center View", VIEW_CENTER},
{"View Up", PADLOCK_UP},
{"View Rear", PADLOCK_DOWN},
{"View Left", PADLOCK_LEFT},
{"View Right", PADLOCK_RIGHT},
{"Cycle Radar Range", RADAR_RANGE_CYCLE},
{"Communications Menu", SQUADMSG_MENU},
{"Show Objectives", SHOW_GOALS},
{"Enter Subspace (End Mission)", END_MISSION},
{"Target Target's Target", TARGET_TARGETS_TARGET},
{"Afterburner", AFTERBURNER},
{"Increase Weapon Energy", INCREASE_WEAPON},
{"Decrease Weapon Energy", DECREASE_WEAPON},
{"Increase Shield Energy", INCREASE_SHIELD},
{"Decrease Shield Energy", DECREASE_SHIELD},
{"Increase Engine Energy", INCREASE_ENGINE},
{"Decrease Engine Energy", DECREASE_ENGINE},
{"Equalize Energy Settings", ETS_EQUALIZE},
{"Equalize Shields", SHIELD_EQUALIZE},
{"Augment Forward Shield", SHIELD_XFER_TOP},
{"Augment Rear Shield", SHIELD_XFER_BOTTOM},
{"Augment Left Shield", SHIELD_XFER_LEFT},
{"Augment Right Shield", SHIELD_XFER_RIGHT},
{"Transfer Energy Laser->Shield", XFER_SHIELD},
{"Transfer Energy Shield->Laser", XFER_LASER},
{"Show Damage Popup Window", GLIDE_WHEN_PRESSED},
{"Glide When Pressed", GLIDE_WHEN_PRESSED},
{"Bank When Pressed", BANK_WHEN_PRESSED},
{"Show Nav Map", SHOW_NAVMAP},
{"Add or Remove Escort", ADD_REMOVE_ESCORT},
{"Clear Escort List", ESCORT_CLEAR},
{"Target Next Escort Ship", TARGET_NEXT_ESCORT_SHIP},
{"Target Closest Repair Ship", TARGET_CLOSEST_REPAIR_SHIP},
{"Target Next Uninspected Cargo", TARGET_NEXT_UNINSPECTED_CARGO},
{"Target Previous Uninspected Cargo", TARGET_PREV_UNINSPECTED_CARGO},
{"Target Newest Ship in Area", TARGET_NEWEST_SHIP},
{"Target Next Live Turret", TARGET_NEXT_LIVE_TURRET},
{"Target Previous Live Turret", TARGET_PREV_LIVE_TURRET},
{"Target Next Hostile Bomb or Bomber", TARGET_NEXT_BOMB},
{"Target Previous Hostile Bomb or Bomber", TARGET_PREV_BOMB},
{"(Multiplayer) Message All", MULTI_MESSAGE_ALL},
{"(Multiplayer) Message Friendly", MULTI_MESSAGE_FRIENDLY},
{"(Multiplayer) Message Hostile", MULTI_MESSAGE_HOSTILE},
{"(Multiplayer) Message Target", MULTI_MESSAGE_TARGET},
{"(Multiplayer) Observer Zoom to Target", MULTI_OBSERVER_ZOOM_TO},
{"Increase Time Compression", TIME_SPEED_UP},
{"Decrease Time Compression", TIME_SLOW_DOWN},
{"Toggle High HUD Contrast", TOGGLE_HUD_CONTRAST},
{"Toggle HUD Drop Shadows", TOGGLE_HUD_SHADOWS},
{"(Multiplayer) Toggle Network Info", MULTI_TOGGLE_NETINFO},
{"(Multiplayer) Self Destruct", MULTI_SELF_DESTRUCT},
{"Toggle HUD", TOGGLE_HUD},
{"Right Thrust", RIGHT_SLIDE_THRUST},
{"Left Thrust", LEFT_SLIDE_THRUST},
{"Up Thrust", UP_SLIDE_THRUST},
{"Down Thrust", DOWN_SLIDE_THRUST},
{"Toggle HUD Wireframe Target View", HUD_TARGETBOX_TOGGLE_WIREFRAME},
{"Top-Down View", VIEW_TOPDOWN},
{"Target Padlock View", VIEW_TRACK_TARGET},
{"Toggle Auto Pilot", AUTO_PILOT_TOGGLE},
{"Cycle Nav Points", NAV_CYCLE},
{"Toggle Gliding", TOGGLE_GLIDING},
{"Cycle Primary Weapon Firing Rate", CYCLE_PRIMARY_WEAPON_SEQUENCE},
{"Custom Control 1", CUSTOM_CONTROL_1},
{"Custom Control 2", CUSTOM_CONTROL_2},
{"Custom Control 3", CUSTOM_CONTROL_3},
{"Custom Control 4", CUSTOM_CONTROL_4},
{"Custom Control 5", CUSTOM_CONTROL_5},
};
const char* Joy_button_text_german_u[] = {
"Knopf 1", "Knopf 2", "Knopf 3", "Knopf 4", "Knopf 5", "Knopf 6",
"Knopf 7", "Knopf 8", "Knopf 9", "Knopf 10", "Knopf 11", "Knopf 12",
"Knopf 13", "Knopf 14", "Knopf 15", "Knopf 16", "Knopf 17", "Knopf 18",
"Knopf 19", "Knopf 20", "Knopf 21", "Knopf 22", "Knopf 23", "Knopf 24",
"Knopf 25", "Knopf 26", "Knopf 27", "Knopf 28", "Knopf 29", "Knopf 30",
"Knopf 31", "Knopf 32", "Hut Hinten", "Hut Vorne", "Hut Links", "Hut Rechts"
};
const char* Joy_button_text_french_u[] = {
"Bouton 1", "Bouton 2", "Bouton 3", "Bouton 4", "Bouton 5", "Bouton 6",
"Bouton 7", "Bouton 8", "Bouton 9", "Bouton 10", "Bouton 11", "Bouton 12",
"Bouton 13", "Bouton 14", "Bouton 15", "Bouton 16", "Bouton 17", "Bouton 18",
"Bouton 19", "Bouton 20", "Bouton 21", "Bouton 22", "Bouton 23", "Bouton 24",
"Bouton 25", "Bouton 26", "Bouton 27", "Bouton 28", "Bouton 29", "Bouton 30",
"Bouton 31", "Bouton 32", ("Chapeau Arri\xc3\xa8""re"), "Chapeau Avant", "Chapeau Gauche", "Chapeau Droite"
};
const char* Joy_button_text_polish_u[] = {
"Przyc.1", "Przyc.2", "Przyc.3", "Przyc.4", "Przyc.5", "Przyc.6",
"Przyc.7", "Przyc.8", "Przyc.9", "Przyc.10", "Przyc.11", "Przyc.12",
"Przyc.13", "Przyc.14", "Przyc.15", "Przyc.16", "Przyc.17", "Przyc.18",
"Przyc.19", "Przyc.20", "Przyc.21", "Przyc.22", "Przyc.23", "Przyc.24",
"Przyc.25", "Przyc.26", "Przyc.27", "Przyc.28", "Przyc.29", "Przyc.30",
"Przyc.31", "Przyc.32", "Hat Ty\xc5\x82", ("Hat Prz\xc3\xb3""d"), "Hat Lewo", "Hat Prawo"
};
const char* Joy_button_text_english_u[] = {
"Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6",
"Button 7", "Button 8", "Button 9", "Button 10", "Button 11", "Button 12",
"Button 13", "Button 14", "Button 15", "Button 16", "Button 17", "Button 18",
"Button 19", "Button 20", "Button 21", "Button 22", "Button 23", "Button 24",
"Button 25", "Button 26", "Button 27", "Button 28", "Button 29", "Button 30",
"Button 31", "Button 32", "Hat Back", "Hat Forward", "Hat Left", "Hat Right"
};
const char* Joy_button_text_german[] = {
"Knopf 1", "Knopf 2", "Knopf 3", "Knopf 4", "Knopf 5", "Knopf 6",
"Knopf 7", "Knopf 8", "Knopf 9", "Knopf 10", "Knopf 11", "Knopf 12",
"Knopf 13", "Knopf 14", "Knopf 15", "Knopf 16", "Knopf 17", "Knopf 18",
"Knopf 19", "Knopf 20", "Knopf 21", "Knopf 22", "Knopf 23", "Knopf 24",
"Knopf 25", "Knopf 26", "Knopf 27", "Knopf 28", "Knopf 29", "Knopf 30",
"Knopf 31", "Knopf 32", "Hut Hinten", "Hut Vorne", "Hut Links", "Hut Rechts"
};
const char* Joy_button_text_french[] = {
"Bouton 1", "Bouton 2", "Bouton 3", "Bouton 4", "Bouton 5", "Bouton 6",
"Bouton 7", "Bouton 8", "Bouton 9", "Bouton 10", "Bouton 11", "Bouton 12",
"Bouton 13", "Bouton 14", "Bouton 15", "Bouton 16", "Bouton 17", "Bouton 18",
"Bouton 19", "Bouton 20", "Bouton 21", "Bouton 22", "Bouton 23", "Bouton 24",
"Bouton 25", "Bouton 26", "Bouton 27", "Bouton 28", "Bouton 29", "Bouton 30",
"Bouton 31", "Bouton 32", "Chapeau Arri\x8Are", "Chapeau Avant", "Chapeau Gauche", "Chapeau Droite"
};
const char* Joy_button_text_polish[] = {
"Przyc.1", "Przyc.2", "Przyc.3", "Przyc.4", "Przyc.5", "Przyc.6",
"Przyc.7", "Przyc.8", "Przyc.9", "Przyc.10", "Przyc.11", "Przyc.12",
"Przyc.13", "Przyc.14", "Przyc.15", "Przyc.16", "Przyc.17", "Przyc.18",
"Przyc.19", "Przyc.20", "Przyc.21", "Przyc.22", "Przyc.23", "Przyc.24",
"Przyc.25", "Przyc.26", "Przyc.27", "Przyc.28", "Przyc.29", "Przyc.30",
"Przyc.31", "Przyc.32", "Hat Ty\xB3", "Hat Prz\xF3\x64", "Hat Lewo", "Hat Prawo"
};
//English scancodes are still needed eclusively for the scripting API, as we need to give generic and stable scan code names to the API that are neither translated nor localized to keyboard layout.
const char *Scan_code_text_english[] = {
"", "Esc", "1", "2", "3", "4", "5", "6",
"7", "8", "9", "0", "-", "=", "Backspace", "Tab",
"Q", "W", "E", "R", "T", "Y", "U", "I",
"O", "P", "[", "]", "Enter", "Left Ctrl", "A", "S",
"D", "F", "G", "H", "J", "K", "L", ";",
"'", "`", "Shift", "\\", "Z", "X", "C", "V",
"B", "N", "M", ",", ".", "/", "Shift", "Pad *",
"Alt", "Spacebar", "Caps Lock", "F1", "F2", "F3", "F4", "F5",
"F6", "F7", "F8", "F9", "F10", "Pause", "Scroll Lock", "Pad 7",
"Pad 8", "Pad 9", "Pad -", "Pad 4", "Pad 5", "Pad 6", "Pad +", "Pad 1",
"Pad 2", "Pad 3", "Pad 0", "Pad .", "", "", "", "F11",
"F12", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "Pad Enter", "Right Ctrl", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "Pad /", "", "Print Scrn",
"Alt", "", "", "", "", "", "", "",
"", "", "", "", "", "Num Lock", "", "Home",
"Up Arrow", "Page Up", "", "Left Arrow", "", "Right Arrow", "", "End",
"Down Arrow", "Page Down", "Insert", "Delete", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "",
};
const char* Joy_button_text_english[] = {
"Button 1", "Button 2", "Button 3", "Button 4", "Button 5", "Button 6",
"Button 7", "Button 8", "Button 9", "Button 10", "Button 11", "Button 12",
"Button 13", "Button 14", "Button 15", "Button 16", "Button 17", "Button 18",
"Button 19", "Button 20", "Button 21", "Button 22", "Button 23", "Button 24",
"Button 25", "Button 26", "Button 27", "Button 28", "Button 29", "Button 30",
"Button 31", "Button 32", "Hat Back", "Hat Forward", "Hat Left", "Hat Right"
};
const char **Joy_button_text = Joy_button_text_english;
bool Generate_controlconfig_table = false;
int sections_read = 0; // Number of sections read within the controlconfigdefaults.tbl
const int BTN_MSG_LEN = 40; //! Max length of textified keys and buttons. Used in key/button translation functions
int translate_key_to_index(const char *key, bool find_override)
{
unsigned int max_scan_codes;
unsigned int i;
int index = -1;
bool alt = false;
bool shift = false;
max_scan_codes = sizeof(Scan_code_text_english) / sizeof(char *);
// look for modifiers
Assert(key);
if (!strnicmp(key, "Alt", 3)) {
alt = true;
key += 3;
if (*key)
key++;
}
if (!strnicmp(key, "Shift", 5)) {
shift = true;
key += 5;
if (*key)
key++;
}
// look up index for default key
if (*key) {
for (i=0; i<max_scan_codes; i++)
if (!stricmp(key, Scan_code_text_english[i])) {
index = i;
break;
}
if (i == max_scan_codes)
return -1;
if (shift)
index |= KEY_SHIFTED;
if (alt)
index |= KEY_ALTED;
// convert scancode to Control_config index
if (find_override) {
for (i = 0; i < Control_config.size(); ++i) {
if (!Control_config[i].disabled && (Control_config[i].get_btn(CID_KEYBOARD) == index)) {
index = static_cast<int>(i);
break;
}
}
} else {
const auto& default_bindings = Control_config_presets[0].bindings;
for (i = 0; i < Control_config.size(); ++i) {
if (!Control_config[i].disabled && (default_bindings[i].get_btn(CID_KEYBOARD) == index)) {
index = static_cast<int>(i);
break;
}
}
}
if (i == Control_config.size())
return -1;
return index;
}
return -1;
}
const char *translate_key(char *key)
{
int index = -1;
static char text[BTN_MSG_LEN] = {""};
index = translate_key_to_index(key, false);
if (index < 0) {
return nullptr;
}
const CC_bind &first = Control_config[index].first;
const CC_bind &second = Control_config[index].second;
Failed_key_index = index;
if (!first.empty() && !second.empty()) {
strcpy_s(text, first.textify().c_str());
strcat_s(text, " ");
strcat_s(text, XSTR("or", 1672));
strcat_s(text, " ");
strcat_s(text, second.textify().c_str());
} else if (!first.empty()) {
strcpy_s(text, first.textify().c_str());
} else if (!second.empty()) {
strcpy_s(text, second.textify().c_str());
} else {
strcpy_s(text, XSTR("None", 1673));
}
return text;
}
const char *textify_scancode(int code)
{
static char text[BTN_MSG_LEN];
if (code < 0)
return XSTR("None", 1673);
int keycode = code & KEY_MASK;
text[0] = '\0';
if (code & KEY_ALTED && !(keycode == KEY_LALT || keycode == KEY_RALT)) {
if(Lcl_gr){
strcat_s(text, "Alt-");
} else if(Lcl_fr){
strcat_s(text, "Alt-");
} else {
strcat_s(text, "Alt-");
}
}
if (code & KEY_SHIFTED && !(keycode == KEY_LSHIFT || keycode == KEY_RSHIFT)) {
if(Lcl_gr){
strcat_s(text, "Shift-");
} else if(Lcl_fr){
strcat_s(text, "Maj.-");
} else {
strcat_s(text, "Shift-");
}
}
SCP_string name;
unicode::convert_encoding(name, SDL_GetKeyName(SDL_GetKeyFromScancode(fs2_to_sdl(keycode))), unicode::Encoding::Encoding_utf8);
strcat_s(text, name.c_str());
return text;
}
const char *textify_scancode_universal(int code)
{
static char text[BTN_MSG_LEN];
if (code < 0)
return "None";
int keycode = code & KEY_MASK;
text[0] = '\0';
if (code & KEY_ALTED && !(keycode == KEY_LALT || keycode == KEY_RALT)) {
strcat_s(text, "Alt-");
}
if (code & KEY_SHIFTED && !(keycode == KEY_LSHIFT || keycode == KEY_RSHIFT)) {
strcat_s(text, "Shift-");
}
strcat_s(text, Scan_code_text_english[keycode]);
return text;
}
//XSTR:ON
void control_config_common_load_overrides();
void cid_assign(CID & A, const short B)
{
Assert((B >= CID_NONE) && (B < CID_JOY_MAX));
A = static_cast<CID>(B);
}
// initialize common control config stuff - call at game startup after localization has been initialized
void control_config_common_init()
{
// Init hardcoded bindings
control_config_common_init_bindings();
for (int i=0; i<CCFG_MAX; i++) {
Control_config[i].continuous_ongoing = false;
}
for (int i = 0; i < Action::NUM_VALUES; i++) {
Control_config[i + JOY_AXIS_BEGIN].analog_value = JOY_AXIS_CENTER;
Control_config[i + JOY_AXIS_BEGIN].digital_used = TIMESTAMP::invalid();
}
// TODO It's not memory efficient to keep the presets loaded into memory all the time, but we do need to know which
// preset we're currently using for .plr and .csg
// Load controlconfigdefaults.tbl overrides and mod presets
control_config_common_load_overrides();
// load player presets
load_preset_files();
// Init control label localization
if (Unicode_text_mode) {
if (Lcl_gr) {
Joy_button_text = Joy_button_text_german_u;
}
else if (Lcl_fr) {
Joy_button_text = Joy_button_text_french_u;
}
else if (Lcl_pl) {
Joy_button_text = Joy_button_text_polish_u;
}
else {
Joy_button_text = Joy_button_text_english_u;
}
}
else {
if (Lcl_gr) {
Joy_button_text = Joy_button_text_german;
}
else if (Lcl_fr) {
Joy_button_text = Joy_button_text_french;
}
else if (Lcl_pl) {
Joy_button_text = Joy_button_text_polish;
}
else {
Joy_button_text = Joy_button_text_english;
}
}
// Old XSTR indices have been put beside their corresponding label in case we use them again
Axis_text[0] = vm_strdup(XSTR("X Axis", 1647)); // XSTR 1021 - "Joystick/Mouse X Axis"
Axis_text[1] = vm_strdup(XSTR("Y Axis", 1648)); // XSTR 1022 - "Joystick/Mouse Y Axis"
Axis_text[2] = vm_strdup(XSTR("Z Axis", 1649)); // XSTR 1023 - "Joystick Z Axis"
Axis_text[3] = vm_strdup(XSTR("rX Axis", 1650)); // XSTR 1024 - "Joystick rX Axis"
Axis_text[4] = vm_strdup(XSTR("rY Axis", 1651)); // XSTR 1025 - "Joystick rY Axis"
Axis_text[5] = vm_strdup(XSTR("rZ Axis", 1652)); // XSTR 1026 - "Joystick rZ Axis"
Mouse_button_text[0] = vm_strdup(XSTR("Left Button", 1027));
Mouse_button_text[1] = vm_strdup(XSTR("Right Button", 1028));
Mouse_button_text[2] = vm_strdup(XSTR("Mid Button", 1029));
Mouse_button_text[3] = vm_strdup(XSTR("X1 Button", 1653));
Mouse_button_text[4] = vm_strdup(XSTR("X2 Button", 1654));
Mouse_button_text[5] = vm_strdup(XSTR("Wheel Up", 1655));
Mouse_button_text[6] = vm_strdup(XSTR("Wheel Down", 1656));
Mouse_button_text[7] = vm_strdup(XSTR("Wheel Left", 1657));
Mouse_button_text[8] = vm_strdup(XSTR("Wheel Right", 1658));
Script_system.OnStateDestroy.add([](lua_State*) -> void { Lua_hooks.clear(); });
}
/*
* @brief close any common control config stuff, called at game_shutdown()
*/
void control_config_common_close()
{
// free strings
for (auto&& text : Axis_text) {
if (text != nullptr) {
vm_free(text);
text = nullptr;
}
}
for (auto&& text : Mouse_button_text) {
if (text != nullptr) {
vm_free(text);
text = nullptr;
}
}
}
SCP_map<SCP_string, short> mKeyNameToVal;
SCP_map<SCP_string, short> mMouseNameToVal;
SCP_map<SCP_string, short> mAxisNameToVal;
SCP_map<SCP_string, short> mHatNameToVal;
SCP_map<SCP_string, CC_type> mCCTypeNameToVal;
SCP_map<SCP_string, char> mCCTabNameToVal;
SCP_map<SCP_string, IoActionId> mActionToVal;
SCP_map<SCP_string, CID> mCIDNameToVal;
SCP_map<SCP_string, char> mCCFNameToVal;
/*! Helper function to LoadEnumsIntoMaps(), Loads the Keyboard definitions/enumerations into mKeyNameToVal
*/
void LoadEnumsIntoKeyMap() {
// Dirty macro hack :D
#define ADD_ENUM_TO_KEY_MAP(Enum) mKeyNameToVal[#Enum] = (Enum);
ADD_ENUM_TO_KEY_MAP(KEY_SHIFTED)
/*
ADD_ENUM_TO_KEY_MAP(KEY_ALTED)
ADD_ENUM_TO_KEY_MAP(KEY_CTRLED)
ADD_ENUM_TO_KEY_MAP(KEY_DEBUGGED)
ADD_ENUM_TO_KEY_MAP(KEY_DEBUGGED1)
ADD_ENUM_TO_KEY_MAP(KEY_MASK)
ADD_ENUM_TO_KEY_MAP(KEY_DEBUG_KEY)
*/
ADD_ENUM_TO_KEY_MAP(KEY_0)
ADD_ENUM_TO_KEY_MAP(KEY_1)
ADD_ENUM_TO_KEY_MAP(KEY_2)
ADD_ENUM_TO_KEY_MAP(KEY_3)
ADD_ENUM_TO_KEY_MAP(KEY_4)
ADD_ENUM_TO_KEY_MAP(KEY_5)
ADD_ENUM_TO_KEY_MAP(KEY_6)
ADD_ENUM_TO_KEY_MAP(KEY_7)
ADD_ENUM_TO_KEY_MAP(KEY_8)
ADD_ENUM_TO_KEY_MAP(KEY_9)
ADD_ENUM_TO_KEY_MAP(KEY_A)
ADD_ENUM_TO_KEY_MAP(KEY_B)
ADD_ENUM_TO_KEY_MAP(KEY_C)
ADD_ENUM_TO_KEY_MAP(KEY_D)
ADD_ENUM_TO_KEY_MAP(KEY_E)
ADD_ENUM_TO_KEY_MAP(KEY_F)
ADD_ENUM_TO_KEY_MAP(KEY_G)
ADD_ENUM_TO_KEY_MAP(KEY_H)
ADD_ENUM_TO_KEY_MAP(KEY_I)
ADD_ENUM_TO_KEY_MAP(KEY_J)
ADD_ENUM_TO_KEY_MAP(KEY_K)
ADD_ENUM_TO_KEY_MAP(KEY_L)
ADD_ENUM_TO_KEY_MAP(KEY_M)
ADD_ENUM_TO_KEY_MAP(KEY_N)
ADD_ENUM_TO_KEY_MAP(KEY_O)
ADD_ENUM_TO_KEY_MAP(KEY_P)
ADD_ENUM_TO_KEY_MAP(KEY_Q)
ADD_ENUM_TO_KEY_MAP(KEY_R)
ADD_ENUM_TO_KEY_MAP(KEY_S)
ADD_ENUM_TO_KEY_MAP(KEY_T)
ADD_ENUM_TO_KEY_MAP(KEY_U)
ADD_ENUM_TO_KEY_MAP(KEY_V)
ADD_ENUM_TO_KEY_MAP(KEY_W)
ADD_ENUM_TO_KEY_MAP(KEY_X)
ADD_ENUM_TO_KEY_MAP(KEY_Y)
ADD_ENUM_TO_KEY_MAP(KEY_Z)
ADD_ENUM_TO_KEY_MAP(KEY_MINUS)
ADD_ENUM_TO_KEY_MAP(KEY_EQUAL)
ADD_ENUM_TO_KEY_MAP(KEY_DIVIDE)
ADD_ENUM_TO_KEY_MAP(KEY_SLASH)
ADD_ENUM_TO_KEY_MAP(KEY_SLASH_UK)
ADD_ENUM_TO_KEY_MAP(KEY_COMMA)
ADD_ENUM_TO_KEY_MAP(KEY_PERIOD)
ADD_ENUM_TO_KEY_MAP(KEY_SEMICOL)
ADD_ENUM_TO_KEY_MAP(KEY_LBRACKET)
ADD_ENUM_TO_KEY_MAP(KEY_RBRACKET)
ADD_ENUM_TO_KEY_MAP(KEY_RAPOSTRO)
ADD_ENUM_TO_KEY_MAP(KEY_LAPOSTRO)
ADD_ENUM_TO_KEY_MAP(KEY_ESC)
ADD_ENUM_TO_KEY_MAP(KEY_ENTER)
ADD_ENUM_TO_KEY_MAP(KEY_BACKSP)
ADD_ENUM_TO_KEY_MAP(KEY_TAB)
ADD_ENUM_TO_KEY_MAP(KEY_SPACEBAR)
ADD_ENUM_TO_KEY_MAP(KEY_NUMLOCK)
ADD_ENUM_TO_KEY_MAP(KEY_SCROLLOCK)
ADD_ENUM_TO_KEY_MAP(KEY_CAPSLOCK)
ADD_ENUM_TO_KEY_MAP(KEY_LSHIFT)
ADD_ENUM_TO_KEY_MAP(KEY_RSHIFT)
ADD_ENUM_TO_KEY_MAP(KEY_LALT)
ADD_ENUM_TO_KEY_MAP(KEY_RALT)
ADD_ENUM_TO_KEY_MAP(KEY_LCTRL)
ADD_ENUM_TO_KEY_MAP(KEY_RCTRL)
ADD_ENUM_TO_KEY_MAP(KEY_F1)
ADD_ENUM_TO_KEY_MAP(KEY_F2)
ADD_ENUM_TO_KEY_MAP(KEY_F3)
ADD_ENUM_TO_KEY_MAP(KEY_F4)
ADD_ENUM_TO_KEY_MAP(KEY_F5)
ADD_ENUM_TO_KEY_MAP(KEY_F6)
ADD_ENUM_TO_KEY_MAP(KEY_F7)
ADD_ENUM_TO_KEY_MAP(KEY_F8)
ADD_ENUM_TO_KEY_MAP(KEY_F9)
ADD_ENUM_TO_KEY_MAP(KEY_F10)
ADD_ENUM_TO_KEY_MAP(KEY_F11)
ADD_ENUM_TO_KEY_MAP(KEY_F12)
ADD_ENUM_TO_KEY_MAP(KEY_PAD0)
ADD_ENUM_TO_KEY_MAP(KEY_PAD1)
ADD_ENUM_TO_KEY_MAP(KEY_PAD2)
ADD_ENUM_TO_KEY_MAP(KEY_PAD3)
ADD_ENUM_TO_KEY_MAP(KEY_PAD4)
ADD_ENUM_TO_KEY_MAP(KEY_PAD5)
ADD_ENUM_TO_KEY_MAP(KEY_PAD6)
ADD_ENUM_TO_KEY_MAP(KEY_PAD7)
ADD_ENUM_TO_KEY_MAP(KEY_PAD8)
ADD_ENUM_TO_KEY_MAP(KEY_PAD9)
ADD_ENUM_TO_KEY_MAP(KEY_PADMINUS)
ADD_ENUM_TO_KEY_MAP(KEY_PADPLUS)
ADD_ENUM_TO_KEY_MAP(KEY_PADPERIOD)
ADD_ENUM_TO_KEY_MAP(KEY_PADDIVIDE)
ADD_ENUM_TO_KEY_MAP(KEY_PADMULTIPLY)
ADD_ENUM_TO_KEY_MAP(KEY_PADENTER)
ADD_ENUM_TO_KEY_MAP(KEY_INSERT)
ADD_ENUM_TO_KEY_MAP(KEY_HOME)
ADD_ENUM_TO_KEY_MAP(KEY_PAGEUP)
ADD_ENUM_TO_KEY_MAP(KEY_DELETE)
ADD_ENUM_TO_KEY_MAP(KEY_END)
ADD_ENUM_TO_KEY_MAP(KEY_PAGEDOWN)
ADD_ENUM_TO_KEY_MAP(KEY_UP)
ADD_ENUM_TO_KEY_MAP(KEY_DOWN)
ADD_ENUM_TO_KEY_MAP(KEY_LEFT)
ADD_ENUM_TO_KEY_MAP(KEY_RIGHT)
ADD_ENUM_TO_KEY_MAP(KEY_PRINT_SCRN)
ADD_ENUM_TO_KEY_MAP(KEY_PAUSE)
ADD_ENUM_TO_KEY_MAP(KEY_BREAK)
#undef ADD_ENUM_TO_KEY_MAP
}
/*! Helper function to LoadEnumsIntoMaps(), Loads the Control Types enumerations into mCCTypeNameToVal
*/
void LoadEnumsIntoCCTypeMap() {
// Dirty macro hack :D
#define ADD_ENUM_TO_CCTYPE_MAP(Enum) mCCTypeNameToVal[#Enum] = (Enum);
ADD_ENUM_TO_CCTYPE_MAP(CC_TYPE_TRIGGER)
ADD_ENUM_TO_CCTYPE_MAP(CC_TYPE_CONTINUOUS)
ADD_ENUM_TO_CCTYPE_MAP(CC_TYPE_AXIS_ABS)
ADD_ENUM_TO_CCTYPE_MAP(CC_TYPE_AXIS_REL)
ADD_ENUM_TO_CCTYPE_MAP(CC_TYPE_AXIS_BTN_NEG)
ADD_ENUM_TO_CCTYPE_MAP(CC_TYPE_AXIS_BTN_POS)
#undef ADD_ENUM_TO_CCTYPE_MAP
}
/*! Helper function to LoadEnumsIntoMaps(), Loads the Control Tabs enumerations into mCCTabNameToVal
*/
void LoadEnumsIntoCCTabMap() {
// Dirty macro hack :D
#define ADD_ENUM_TO_CCTAB_MAP(Enum) mCCTabNameToVal[#Enum] = (Enum);
ADD_ENUM_TO_CCTAB_MAP(NO_TAB)
ADD_ENUM_TO_CCTAB_MAP(TARGET_TAB)
ADD_ENUM_TO_CCTAB_MAP(SHIP_TAB)
ADD_ENUM_TO_CCTAB_MAP(WEAPON_TAB)
ADD_ENUM_TO_CCTAB_MAP(COMPUTER_TAB)
#undef ADD_ENUM_TO_CCTAB_MAP
}
/*! Helper function to LoadEnumsIntoMaps(), Loads the IoActionId enums into mActionToVal
*/
void LoadEnumsIntoActionMap() {
#define ADD_ENUM_TO_ACTION_MAP(Enum) mActionToVal[#Enum] = (Enum);
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_CLOSEST_HOSTILE)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV_CLOSEST_HOSTILE)
ADD_ENUM_TO_ACTION_MAP(TOGGLE_AUTO_TARGETING)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_CLOSEST_FRIENDLY)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV_CLOSEST_FRIENDLY)
ADD_ENUM_TO_ACTION_MAP(TARGET_SHIP_IN_RETICLE)
ADD_ENUM_TO_ACTION_MAP(TARGET_CLOSEST_SHIP_ATTACKING_TARGET)
ADD_ENUM_TO_ACTION_MAP(TARGET_LAST_TRANMISSION_SENDER)
ADD_ENUM_TO_ACTION_MAP(STOP_TARGETING_SHIP)
ADD_ENUM_TO_ACTION_MAP(TARGET_SUBOBJECT_IN_RETICLE)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_SUBOBJECT)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV_SUBOBJECT)
ADD_ENUM_TO_ACTION_MAP(STOP_TARGETING_SUBSYSTEM)
ADD_ENUM_TO_ACTION_MAP(MATCH_TARGET_SPEED)
ADD_ENUM_TO_ACTION_MAP(TOGGLE_AUTO_MATCH_TARGET_SPEED)
ADD_ENUM_TO_ACTION_MAP(FIRE_PRIMARY)
ADD_ENUM_TO_ACTION_MAP(FIRE_SECONDARY)
ADD_ENUM_TO_ACTION_MAP(CYCLE_NEXT_PRIMARY)
ADD_ENUM_TO_ACTION_MAP(CYCLE_PREV_PRIMARY)
ADD_ENUM_TO_ACTION_MAP(CYCLE_SECONDARY)
ADD_ENUM_TO_ACTION_MAP(CYCLE_NUM_MISSLES)
ADD_ENUM_TO_ACTION_MAP(LAUNCH_COUNTERMEASURE)
ADD_ENUM_TO_ACTION_MAP(FORWARD_THRUST)
ADD_ENUM_TO_ACTION_MAP(REVERSE_THRUST)
ADD_ENUM_TO_ACTION_MAP(BANK_LEFT)
ADD_ENUM_TO_ACTION_MAP(BANK_RIGHT)
ADD_ENUM_TO_ACTION_MAP(PITCH_FORWARD)
ADD_ENUM_TO_ACTION_MAP(PITCH_BACK)
ADD_ENUM_TO_ACTION_MAP(YAW_LEFT)
ADD_ENUM_TO_ACTION_MAP(YAW_RIGHT)
ADD_ENUM_TO_ACTION_MAP(ZERO_THROTTLE)
ADD_ENUM_TO_ACTION_MAP(MAX_THROTTLE)
ADD_ENUM_TO_ACTION_MAP(ONE_THIRD_THROTTLE)
ADD_ENUM_TO_ACTION_MAP(TWO_THIRDS_THROTTLE)
ADD_ENUM_TO_ACTION_MAP(PLUS_5_PERCENT_THROTTLE)
ADD_ENUM_TO_ACTION_MAP(MINUS_5_PERCENT_THROTTLE)
ADD_ENUM_TO_ACTION_MAP(ATTACK_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(DISARM_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(DISABLE_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(ATTACK_SUBSYSTEM_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(CAPTURE_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(ENGAGE_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(FORM_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(IGNORE_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(PROTECT_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(COVER_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(WARP_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(REARM_MESSAGE)
ADD_ENUM_TO_ACTION_MAP(TARGET_CLOSEST_SHIP_ATTACKING_SELF)
ADD_ENUM_TO_ACTION_MAP(VIEW_CHASE)
ADD_ENUM_TO_ACTION_MAP(VIEW_EXTERNAL)
ADD_ENUM_TO_ACTION_MAP(VIEW_EXTERNAL_TOGGLE_CAMERA_LOCK)
ADD_ENUM_TO_ACTION_MAP(VIEW_SLEW)
ADD_ENUM_TO_ACTION_MAP(VIEW_OTHER_SHIP)
ADD_ENUM_TO_ACTION_MAP(VIEW_DIST_INCREASE)
ADD_ENUM_TO_ACTION_MAP(VIEW_DIST_DECREASE)
ADD_ENUM_TO_ACTION_MAP(VIEW_CENTER)
ADD_ENUM_TO_ACTION_MAP(PADLOCK_UP)
ADD_ENUM_TO_ACTION_MAP(PADLOCK_DOWN)
ADD_ENUM_TO_ACTION_MAP(PADLOCK_LEFT)
ADD_ENUM_TO_ACTION_MAP(PADLOCK_RIGHT)
ADD_ENUM_TO_ACTION_MAP(RADAR_RANGE_CYCLE)
ADD_ENUM_TO_ACTION_MAP(SQUADMSG_MENU)
ADD_ENUM_TO_ACTION_MAP(SHOW_GOALS)
ADD_ENUM_TO_ACTION_MAP(END_MISSION)
ADD_ENUM_TO_ACTION_MAP(TARGET_TARGETS_TARGET)
ADD_ENUM_TO_ACTION_MAP(AFTERBURNER)
ADD_ENUM_TO_ACTION_MAP(INCREASE_WEAPON)
ADD_ENUM_TO_ACTION_MAP(DECREASE_WEAPON)
ADD_ENUM_TO_ACTION_MAP(INCREASE_SHIELD)
ADD_ENUM_TO_ACTION_MAP(DECREASE_SHIELD)
ADD_ENUM_TO_ACTION_MAP(INCREASE_ENGINE)
ADD_ENUM_TO_ACTION_MAP(DECREASE_ENGINE)
ADD_ENUM_TO_ACTION_MAP(ETS_EQUALIZE)
ADD_ENUM_TO_ACTION_MAP(SHIELD_EQUALIZE)
ADD_ENUM_TO_ACTION_MAP(SHIELD_XFER_TOP)
ADD_ENUM_TO_ACTION_MAP(SHIELD_XFER_BOTTOM)
ADD_ENUM_TO_ACTION_MAP(SHIELD_XFER_LEFT)
ADD_ENUM_TO_ACTION_MAP(SHIELD_XFER_RIGHT)
ADD_ENUM_TO_ACTION_MAP(XFER_SHIELD)
ADD_ENUM_TO_ACTION_MAP(XFER_LASER)
ADD_ENUM_TO_ACTION_MAP(GLIDE_WHEN_PRESSED)
ADD_ENUM_TO_ACTION_MAP(BANK_WHEN_PRESSED)
ADD_ENUM_TO_ACTION_MAP(SHOW_NAVMAP)
ADD_ENUM_TO_ACTION_MAP(ADD_REMOVE_ESCORT)
ADD_ENUM_TO_ACTION_MAP(ESCORT_CLEAR)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_ESCORT_SHIP)
ADD_ENUM_TO_ACTION_MAP(TARGET_CLOSEST_REPAIR_SHIP)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_UNINSPECTED_CARGO)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV_UNINSPECTED_CARGO)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEWEST_SHIP)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_LIVE_TURRET)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV_LIVE_TURRET)
ADD_ENUM_TO_ACTION_MAP(TARGET_NEXT_BOMB)
ADD_ENUM_TO_ACTION_MAP(TARGET_PREV_BOMB)
ADD_ENUM_TO_ACTION_MAP(MULTI_MESSAGE_ALL)
ADD_ENUM_TO_ACTION_MAP(MULTI_MESSAGE_FRIENDLY)
ADD_ENUM_TO_ACTION_MAP(MULTI_MESSAGE_HOSTILE)
ADD_ENUM_TO_ACTION_MAP(MULTI_MESSAGE_TARGET)
ADD_ENUM_TO_ACTION_MAP(MULTI_OBSERVER_ZOOM_TO)
ADD_ENUM_TO_ACTION_MAP(TIME_SPEED_UP)
ADD_ENUM_TO_ACTION_MAP(TIME_SLOW_DOWN)
ADD_ENUM_TO_ACTION_MAP(TOGGLE_HUD_CONTRAST)
ADD_ENUM_TO_ACTION_MAP(TOGGLE_HUD_SHADOWS)
ADD_ENUM_TO_ACTION_MAP(MULTI_TOGGLE_NETINFO)
ADD_ENUM_TO_ACTION_MAP(MULTI_SELF_DESTRUCT)
ADD_ENUM_TO_ACTION_MAP(TOGGLE_HUD)
ADD_ENUM_TO_ACTION_MAP(RIGHT_SLIDE_THRUST)
ADD_ENUM_TO_ACTION_MAP(LEFT_SLIDE_THRUST)
ADD_ENUM_TO_ACTION_MAP(UP_SLIDE_THRUST)
ADD_ENUM_TO_ACTION_MAP(DOWN_SLIDE_THRUST)
ADD_ENUM_TO_ACTION_MAP(HUD_TARGETBOX_TOGGLE_WIREFRAME)
ADD_ENUM_TO_ACTION_MAP(VIEW_TOPDOWN)
ADD_ENUM_TO_ACTION_MAP(VIEW_TRACK_TARGET)
ADD_ENUM_TO_ACTION_MAP(AUTO_PILOT_TOGGLE)
ADD_ENUM_TO_ACTION_MAP(NAV_CYCLE)
ADD_ENUM_TO_ACTION_MAP(TOGGLE_GLIDING)
ADD_ENUM_TO_ACTION_MAP(CYCLE_PRIMARY_WEAPON_SEQUENCE)
ADD_ENUM_TO_ACTION_MAP(CUSTOM_CONTROL_1)
ADD_ENUM_TO_ACTION_MAP(CUSTOM_CONTROL_2)
ADD_ENUM_TO_ACTION_MAP(CUSTOM_CONTROL_3)
ADD_ENUM_TO_ACTION_MAP(CUSTOM_CONTROL_4)
ADD_ENUM_TO_ACTION_MAP(CUSTOM_CONTROL_5)
ADD_ENUM_TO_ACTION_MAP(JOY_HEADING_AXIS)
ADD_ENUM_TO_ACTION_MAP(JOY_PITCH_AXIS)
ADD_ENUM_TO_ACTION_MAP(JOY_BANK_AXIS)
ADD_ENUM_TO_ACTION_MAP(JOY_ABS_THROTTLE_AXIS)
ADD_ENUM_TO_ACTION_MAP(JOY_REL_THROTTLE_AXIS)
#undef ADD_ENUM_TO_ACTION_MAP
Assertion(mActionToVal.size() == CCFG_MAX, "Missing or unknown IoActionId's detected. mActionToVal.size()=%i; CCFG_MAX=%i", static_cast<int>(mActionToVal.size()), CCFG_MAX);
}
void LoadEnumsIntoCIDMap() {
#define ADD_ENUM_TO_CID_MAP(Enum) mCIDNameToVal[#Enum] = (Enum);
ADD_ENUM_TO_CID_MAP(CID_NONE)
ADD_ENUM_TO_CID_MAP(CID_KEYBOARD)
ADD_ENUM_TO_CID_MAP(CID_MOUSE)
ADD_ENUM_TO_CID_MAP(CID_JOY0)
ADD_ENUM_TO_CID_MAP(CID_JOY1)
ADD_ENUM_TO_CID_MAP(CID_JOY2)
ADD_ENUM_TO_CID_MAP(CID_JOY3)
// ADD_ENUM_TO_CID_MAP(CID_JOY_MAX) // Not mapped
#undef ADD_ENUM_TO_CID_MAP
}
void LoadEnumsIntoMouseMap() {
mMouseNameToVal["LEFT_BUTTON"] = MOUSE_LEFT_BUTTON;
mMouseNameToVal["RIGHT_BUTTON"] = MOUSE_RIGHT_BUTTON;
mMouseNameToVal["MIDDLE_BUTTON"] = MOUSE_MIDDLE_BUTTON;
mMouseNameToVal["X1_BUTTON"] = MOUSE_X1_BUTTON;
mMouseNameToVal["X2_BUTTON"] = MOUSE_X2_BUTTON;
mMouseNameToVal["WHEEL_UP"] = MOUSE_WHEEL_UP;
mMouseNameToVal["WHEEL_DOWN"] = MOUSE_WHEEL_DOWN;
mMouseNameToVal["WHEEL_LEFT"] = MOUSE_WHEEL_LEFT;
mMouseNameToVal["WHEEL_RIGHT"] = MOUSE_WHEEL_RIGHT;
}
void LoadEnumsIntoAxisMap() {
mAxisNameToVal["X_AXIS"] = JOY_X_AXIS;
mAxisNameToVal["Y_AXIS"] = JOY_Y_AXIS;
mAxisNameToVal["Z_AXIS"] = JOY_Z_AXIS;
mAxisNameToVal["RX_AXIS"] = JOY_RX_AXIS;
mAxisNameToVal["RY_AXIS"] = JOY_RY_AXIS;
mAxisNameToVal["RZ_AXIS"] = JOY_RZ_AXIS;
}
void LoadEnumsIntoHatMap() {
mHatNameToVal["UP"] = io::joystick::HatPosition::HAT_UP;
mHatNameToVal["RIGHT"] = io::joystick::HatPosition::HAT_RIGHT;
mHatNameToVal["DOWN"] = io::joystick::HatPosition::HAT_DOWN;
mHatNameToVal["LEFT"] = io::joystick::HatPosition::HAT_LEFT;
}
/*! Loads the various control configuration maps to allow the parsing functions to appropriately map string tokns to
* their associated enumerations. The string tokens in the controlconfigdefaults.tbl match directly to their names in
* the C++ code, such as "KEY_5" in the .tbl mapping to the #define KEY_5 value
*/
void LoadEnumsIntoMaps() {
LoadEnumsIntoKeyMap();
LoadEnumsIntoCCTypeMap();
LoadEnumsIntoCCTabMap();
LoadEnumsIntoActionMap();
LoadEnumsIntoCIDMap();
LoadEnumsIntoMouseMap();
LoadEnumsIntoAxisMap();
LoadEnumsIntoHatMap();
}
/**
* @brief Searches Control_config for a control that has the given ::text
*
* @returns The IoActionId of the control if successful, or
* @returns Control_config.size() if unsuccessful
*
* @details This also checks the old hardcoded names for backward compat. However, since the new ::text is overridable
* by controlconfigdefaults.tbl, any references to the new hardcoded names may fail after they've been changed in the
* default preset
*/
size_t find_control_by_text(SCP_string &text) {
size_t item_id;
// Search the current ::text
for (item_id = 0; item_id < Control_config.size(); ++item_id) {
if (text == Control_config[item_id].text) {
return item_id;
}
}
// Not found in new text, search old ::text
try {
item_id = old_text.at(text);
} catch (const std::out_of_range &) {
// Couldn't find in old ::text
return Control_config.size();
} // else, Found in old ::text
return item_id;
}
/**
* @brief LUA Controls Override cache
*
* @details:
* Button hooks can happen more than once a frame, and that is intended; Axis hooks happen exactly once a frame.
* However, due to implementation, continuous hooks could happen an unspecified number of times. So we need to cache
* if a hook occurred, and what its override setting was.
* `lua_was_called[IoActionId]` sets if this action has been run before
* `lua_override_cache[IoActionId]` sets the cached value for the action
*/
class controls_lua_override_cache {
std::bitset<IoActionId::CCFG_MAX> lua_was_called; //!< The cache storing if an id had been cached before
std::bitset<IoActionId::CCFG_MAX> lua_override_cache; //!< The cache storing the actual cached value
public:
/**
* @brief Resets the override cache and clears all values
*/
void reset() {
lua_was_called.reset();
lua_override_cache.reset();
}
/**
* @returns true if there is a cached value for this id, false otherwise
*/
bool isCached(IoActionId id) const {
return lua_was_called[id];
}
/**
* @returns the cached value for this id
*/
bool operator[](IoActionId id) const {
Assertion(isCached(id), "A lua override check for IoActionId %d's hook was requested, but the hook hasn't been cached.", id);
return lua_override_cache[id];
}
/**
* @brief Adds a new value to the cache
*/
void emplace(IoActionId id, bool override) {
lua_was_called[id] = true;
lua_override_cache[id] = override;
}
} Controls_lua_override_cache;
void control_reset_lua_cache() {
Controls_lua_override_cache.reset();
}
bool control_run_lua(IoActionId id, int value) {
auto hook_it = Lua_hooks.find(id);
if (hook_it == Lua_hooks.end() || !hook_it->second.enabled) {
return false;
}
const LuaHook& hook = hook_it->second;
const bool isAxis = Control_config[id].is_axis();
const bool isContinuous = Control_config[id].type == CC_TYPE_CONTINUOUS;
if (isContinuous) {
if (Controls_lua_override_cache.isCached(id)) {
//Found a cached value. Return and stop evaluating
return Controls_lua_override_cache[id];
}
Script_system.SetHookVar("Pressed", 'b', value != 0);
}
//Load hv.Value if it is an Axis
if(isAxis)
Script_system.SetHookVar("Value", 'f', f2fl(value));
//Check Override if it exists
bool override = false;
if (hook.override.isValid()) {
auto return_vals = hook.override.call(Script_system.GetLuaSession());
if (return_vals.size() != 1) {
Warning(LOCATION,
"Wrong number of return values for Lua keybinding override '%s'! Expected 1, got " SIZE_T_ARG ".",
ValToAction(id),
return_vals.size());
}
else if (return_vals[0].getValueType() != luacpp::ValueType::BOOLEAN) {
Warning(LOCATION, "Wrong return type detected for Lua keybinding override '%s', expected a boolean.", ValToAction(id));
}
else {
override = return_vals[0].getValue<bool>();
}
}
//Run Main Hook
if (hook.hook.isValid()) {
hook.hook.call(Script_system.GetLuaSession());
}
if(isAxis)
Script_system.RemHookVars({ "Value" });
if (isContinuous) {
Script_system.RemHookVars({ "Pressed" });
Controls_lua_override_cache.emplace(id, override);
}
return override;
}
void control_register_hook(IoActionId id, const luacpp::LuaFunction& hook, bool is_override, bool enabledByDefault) {
Control_config[id].scriptEnabledByDefault = enabledByDefault;
LuaHook* hook_entry = &Lua_hooks[id];
hook_entry->enabled = enabledByDefault;
if(!is_override)
hook_entry->hook = hook;
else
hook_entry->override = hook;
}
void control_reset_hook() {
for (auto& hook : Lua_hooks) {
hook.second.enabled = Control_config[hook.first].scriptEnabledByDefault;
}
}
void control_enable_hook(IoActionId id, bool enable) {
auto hook_it = Lua_hooks.find(id);
if (hook_it == Lua_hooks.end()) {
return;
}
hook_it->second.enabled = enable;
}
/**
* Stuffs the CCF flags into the given char. Needs item_id for validation.
* @details Unknown, unrecognized, or excessive flags are silently ignored on Release builds. Debug builds complain.
*/
void stuff_CCF(char& flags, size_t item_id) {
Assert(item_id < Control_config.size());
SCP_string szTempBuffer;
flags = 0;
stuff_string(szTempBuffer, F_NAME);
#ifndef NDEBUG
SCP_string flag_str;
size_t pos = 0;
size_t len = 0;
// Lambda to add flags.
// Debug version Eats the substring as it is found.
auto ADD_FLAG = [&](char id) {
flag_str = ValToCCF(id);
pos = szTempBuffer.find(flag_str);
len = flag_str.length();
if (pos != SCP_string::npos) {
flags |= id;
szTempBuffer.erase(pos, len);
}
};
#else
// Lambda to add flags.
// Release version doesn't modify szTempBuffer as it searches for substrings.
auto ADD_FLAG = [&](char id) {
if (szTempBuffer.find(ValToCCF(id)) != SCP_string::npos)
flags |= id;
};
#endif
ADD_FLAG(CCF_AXIS_BTN);
ADD_FLAG(CCF_RELATIVE);
ADD_FLAG(CCF_INVERTED);
ADD_FLAG(CCF_AXIS);
ADD_FLAG(CCF_HAT);
ADD_FLAG(CCF_BALL);
#ifndef NDEBUG
// Eat the "CCF_NONE" and "NONE" substrings
auto EAT_FLAG = [&](SCP_string str) {
pos = szTempBuffer.find(str);
len = str.length();
if (pos != SCP_string::npos) {
if (flags != 0) {
// Complain about bad habits
error_display(0,
"Flag 'NONE' passed to config item %i along with other flags, ignoring: \n'%s'",
static_cast<int>(item_id),
szTempBuffer.c_str()
);
}
szTempBuffer.erase(pos, len);
}
};
EAT_FLAG("CCF_NONE");
EAT_FLAG("NONE");
// Complain about any unknown flag strings
replace_all(szTempBuffer, ",", " ");
drop_white_space(szTempBuffer);
if (!szTempBuffer.empty()) {
error_display(0,
"Unknown (or excessive) flags passed to config item %i, ignoring: \n'%s'",
static_cast<int>(item_id),
szTempBuffer.c_str()
);
}
#endif
// Validate Flags
// This should all be recoverable, but complaining to the modder enforces the good practice of
// associating the binding with the input type (digital or analog)
char mask = 0;
switch (Control_config[item_id].type) {
case CC_TYPE_TRIGGER:
case CC_TYPE_CONTINUOUS:
// Digital control. May not have:
mask = flags & (CCF_AXIS | CCF_BALL);
if (mask != 0) {
error_display(0, "Illegal analog flags passed to digital config item %i, ignoring:\n'%s'", static_cast<int>(item_id), ValToCCF(mask).c_str());
flags &= ~(CCF_AXIS | CCF_BALL);
}
break;
case CC_TYPE_AXIS_ABS:
// Absolute Analog control. Must not have:
mask = flags & (CCF_AXIS_BTN | CCF_HAT);
if (mask != 0) {
error_display(0, "Illegal digital flags passed to analog config item %i, ignoring:\n'%s'", static_cast<int>(item_id), ValToCCF(mask).c_str());
flags &= ~(CCF_AXIS_BTN | CCF_HAT);
}
mask = flags & CCF_RELATIVE;
if (mask != 0) {
error_display(0, "Illegal RELATIVE flag passed to absolute analog config item %i, ignoring:\n'%s'", static_cast<int>(item_id), ValToCCF(mask).c_str());
flags &= ~CCF_RELATIVE;
}
// Must have
mask = flags & (CCF_AXIS | CCF_BALL);
if (mask == 0) {
error_display(0, "Missing analog flag 'AXIS' or 'BALL'! Assuming it is an axis...");
flags |= CCF_AXIS;
}
break;
case CC_TYPE_AXIS_REL:
// Relative Analog control. Must not have:
mask = flags & (CCF_AXIS_BTN | CCF_HAT);
if (mask != 0) {
error_display(0, "Illegal digital flags passed to analog config item %i, ignoring:\n'%s'", static_cast<int>(item_id), ValToCCF(mask).c_str());
flags &= ~(CCF_AXIS_BTN | CCF_HAT);
}
// Must have
mask = flags & (CCF_AXIS | CCF_BALL);
if (mask == 0) {
error_display(0, "Missing analog flag 'AXIS' or 'BALL'! Assuming it is an axis...");
flags |= CCF_AXIS;
}
mask = flags & CCF_RELATIVE;
if (mask == 0) {
error_display(0, "Missing RELATIVE flag for relative analog config item %i, adding...", static_cast<int>(item_id));
flags |= CCF_RELATIVE;
}
break;
case CC_TYPE_AXIS_BTN_NEG:
case CC_TYPE_AXIS_BTN_POS:
// Not implemented yet, just ignore
break;
}
}
// Legacy reading method for parsing keyboard and joystick/mouse bindings
// Will overwrite/override the given preset for all options found within the .tbl section
size_t read_bind_0(CC_preset &new_preset) {
SCP_string szTempBuffer;
stuff_string(szTempBuffer, F_NAME);
// Find the control
size_t item_id = find_control_by_text(szTempBuffer);
if (item_id == Control_config.size()) {
// Control wasn't found
// Warning: Not Found
error_display(0, "Unknown Bind Name: %s\n", szTempBuffer.c_str());
return item_id;
}
// Assign the various attributes to this control
auto& new_binding = new_preset.bindings[item_id];
int iTemp;
short key = new_binding.get_btn(CID_KEYBOARD);
// Key assignment and modifiers
if (optional_string("$Key Default:")) {
if (optional_string("NONE")) {
key = -1;
} else {
stuff_string(szTempBuffer, F_NAME);
key = mKeyNameToVal[szTempBuffer];
}
}
if (optional_string("$Key Mod Shift:")) {
stuff_int(&iTemp);
key |= (iTemp == 1) ? KEY_SHIFTED : 0;
}
if (optional_string("$Key Mod Alt:")) {
stuff_int(&iTemp);
key |= (iTemp == 1) ? KEY_ALTED : 0;
}
if (optional_string("$Key Mod Ctrl:")) {
stuff_int(&iTemp);
key |= (iTemp == 1) ? KEY_CTRLED : 0;
}
if (key > 0) {
new_binding.take(CC_bind(CID_KEYBOARD, key), 0);
} else {
new_binding.take(CC_bind(CID_KEYBOARD, static_cast<short>(-1)), -1);
}
// Joy btn assignment
if (optional_string("$Joy Default:")) {
stuff_int(&iTemp);
new_binding.take(CC_bind(CID_JOY0, static_cast<short>(iTemp)), 1);
}
return item_id;
}
// Reading method for parsing keyboard, mouse, and multi-joy bindings
// Will override/overwrite the given preset for all options found within the .tbl section
size_t read_bind_1(CC_preset &preset) {
CCB* item = nullptr;
SCP_string szTempBuffer;
int item_id = 0;
// $Bind:
stuff_string(szTempBuffer, F_NAME);
item_id = ActionToVal(szTempBuffer.c_str());
if (item_id >= 0) {
item = &preset.bindings[item_id];
} else {
// Control wasn't found
error_display(0, "Unknown Bind: %s\n", szTempBuffer.c_str());
return Control_config.size();
}
if (optional_string("$Primary:")) {
CID cid = CID_NONE;
char flags = '\0';
short btn = 0;
if (required_string("$Controller:")) {
stuff_string(szTempBuffer, F_NAME);
cid = CIDToVal(szTempBuffer.c_str());
}
// These items are required if the controller is defined
if (cid != CID_NONE) {
if (required_string("$Flags:")) {
stuff_CCF(flags, item_id);
}
if (required_string("$Input:")) {
stuff_string(szTempBuffer, F_NAME);
btn = InputToVal(cid, szTempBuffer.c_str());
}
}
item->first.take(cid, btn, flags);
}
// Second verse, same as the first
if (optional_string("$Secondary:")) {
CID cid = CID_NONE;
char flags = '\0';
short btn = 0;
if (required_string("$Controller:")) {
stuff_string(szTempBuffer, F_NAME);
cid = CIDToVal(szTempBuffer.c_str());
}
// These items are required if the controller is defined
if (cid != CID_NONE) {
if (required_string("$Flags:")) {
stuff_CCF(flags, item_id);
}
if (required_string("$Input:")) {
stuff_string(szTempBuffer, F_NAME);
btn = InputToVal(cid, szTempBuffer.c_str());
}
}
item->second.take(cid, btn, flags);
}
return static_cast<size_t>(item_id);
}
/**
* @brief Reads a section in controlconfigdefaults.tbl.
*
* @param[in] s Value of a call to optional_string_either(); 0 = "ControlConfigOverride" 1 = "ControlConfigPreset"
* @param[in] first_override Legacy support for unnamed #ControlConfigOverrides. If this is the first unnamed
* override, then overwrite the default preset, else, save it as an "<unnamed preset>"
*
* @details ControlConfigPresets are read in the exact same manner as ControlConfigOverrides, however only the bindings are available for modification.
* There may be only one #Override section, since it is in charge of non-binding members of the Control_config items
*/
void control_config_common_read_section(int s, bool first_override) {
Assertion((s == 0) || (s == 1), "Expected value of s to be either 0 or 1, found %i instead.", s);
CC_preset new_preset;
// Set references to the default preset and bindings
auto& default_preset = Control_config_presets[0];
auto& default_bindings = default_preset.bindings;
new_preset.bindings.clear();
new_preset.type = Preset_t::tbl;
if (s == 0) {
// #ControlConfigOverride
// Copy in defaults to have them overridden
std::copy(default_bindings.begin(), default_bindings.end(), std::back_inserter(new_preset.bindings));
} else {
// #ControlConfigPreset
// Start with clean slate
new_preset.bindings.resize(default_bindings.size());
}
// Assign name to the preset
if (optional_string("$Name:")) {
SCP_string name;
stuff_string(name, F_NAME);
new_preset.name = name;
auto it = std::find_if(Control_config_presets.begin(), Control_config_presets.end(), [&name](CC_preset& S) {return S.name == name;});
if ((s != 0) && (it != Control_config_presets.end())) {
// Error: This isn't an override, and we found a preset with the same name
throw parse::ParseException("Preset group found with same name as existing group: " + name);
}
} else {
if (first_override) {
new_preset.name = "default";
} else {
new_preset.name = "<unnamed preset>";
}
}
// Read the section
// Break if -1 (error) or 0 (#End found)
while (required_string_one_of(3, "#End", "$Bind Name:", "$Bind") > 0) {
size_t item_id;
switch (required_string_either("$Bind Name:", "$Bind:")) {
case 0:
// Old bindings
required_string("$Bind Name:");
item_id = read_bind_0(new_preset);
break;
case 1:
// New bindings
required_string("$Bind:");
item_id = read_bind_1(new_preset);
break;
default:
UNREACHABLE("[controlconfigdefaults.tbl] required_string_either passed something other than 0 or 1!");
item_id = Control_config.size();
}
if (item_id == Control_config.size()) {
// Bind not found.
// Try to resume
if (!skip_to_start_of_string_either("$Bind Name:", "$Bind", "#End")) {
Warning(LOCATION, "Could not find next binding in section `%s`, canceling read of section.", new_preset.name.c_str());
return;
} // Found next binding or end, continue loop
continue;
}
auto item = &Control_config[item_id];
SCP_string szTempBuffer;
int iTemp = 0;
// Section is #ControlConfigOverride
// If the section is #ControlConfigPreset, then any of these options would cause problems
if (s == 0) {
// Config menu options
if (optional_string("$Category:")) {
stuff_string(szTempBuffer, F_NAME);
try {
item->tab = mCCTabNameToVal.at(szTempBuffer);
} catch (std::out_of_range&) {
Warning(LOCATION,"Table tried to set '$Category' for a category that doesn't exist: %s",szTempBuffer.c_str());
}
}
if (optional_string("$Text:")) {
stuff_string(item->text, F_NAME);
item->indexXSTR = 0;
}
if (optional_string("$Has XStr:")) {
stuff_int(&iTemp);
item->indexXSTR = iTemp;
}
if (optional_string("$Type:")) {
stuff_string(szTempBuffer, F_NAME);
try {
item->type = mCCTypeNameToVal.at(szTempBuffer);
} catch (std::out_of_range&) {
Warning(LOCATION,"Table tried to set '$Type' for a type that doesn't exist: %s",szTempBuffer.c_str());
}
}
// Gameplay options
if (optional_string("$Disable:")) {
stuff_boolean(&item->disabled);
} else if (optional_string("+Disable")) {
item->disabled = true;
} else {
item->disabled = false;
}
if (optional_string("$Locked:")) {
stuff_boolean(&item->locked);
} else if (optional_string("+Locked")) {
item->locked = true;
} else {
item->locked = false;
}
}
}
required_string("#End");
// Override the hardcoded defaults if this is an override section and the preset name is "default"
// Error case of preset sections named "default" is handled in the beginning of this function
if ((s == 0) && (new_preset.name == "default")) {
Control_config_presets[0] = new_preset;
mprintf(("[controlconfigdefaults.tbl] Overrode default preset.\n"));
}
auto duplicate = preset_find_duplicate(new_preset);
if (duplicate == Control_config_presets.end()) {
// No duplicate, add new preset
Control_config_presets.push_back(new_preset);
mprintf(("[controlconfigdefaults.tbl] Added Preset '%s'\n", new_preset.name.c_str()));
} else if (duplicate->name != new_preset.name) {
if (s == 0) {
// Rename the duplicate with the new_preset name
// The .tbl takes precedence over any player presets
duplicate->name = new_preset.name;
mprintf(("[controlconfigdefaults.tbl] Renamed duplicate '%s' preset to '%s'\n", duplicate->name.c_str(), new_preset.name.c_str()));
} else {
// Presets are not allowed to rename
Warning(LOCATION, "Ignoring Preset '%s'. (Duplicate of '%s' and is not an Override)", new_preset.name.c_str(), duplicate->name.c_str());
mprintf(("[controlconfigdefaults.tbl] Ignoring Preset '%s'. (Duplicate of '%s' and is not an Override)\n", new_preset.name.c_str(), duplicate->name.c_str()));
}
} // Else, silently ignore the duplicate since it has the same name
mprintf(("[controlconfigdefaults.tbl] Ignoring duplicate Preset '%s'\n", new_preset.name.c_str()));
};
/**
* @brief Reads controlconfigdefaults.tbl. Adds a preset to Control_config_presets or overrides the hardcoded default preset
*/
void control_config_common_read_tbl() {
if (cf_exists_full("controlconfigdefaults.tbl", CF_TYPE_TABLES)) {
read_file_text("controlconfigdefaults.tbl", CF_TYPE_TABLES);
} else {
read_file_text_from_default(defaults_get_file("controlconfigdefaults.tbl"));
}
reset_parse();
sections_read = 0;
// start parsing
int s = optional_string_either("#ControlConfigOverride", "#ControlConfigPreset");
while (s != -1) {
sections_read++;
// Found section header, parse it
control_config_common_read_section(s, sections_read == 1);
s = optional_string_either("#ControlConfigOverride", "#ControlConfigPreset");
}
mprintf(("[controlconfigdefaults.tbl] found %i sections\n", sections_read));
}
/**
* @brief Writes the default preset into controlconfigdefaults.tbl
*
* @param[in] overwrite If true, overwrite any existing .tbl
*
* @returns 0 if successful
* @returns 1 if not successful - nothing was saved
*/
template<class FILETYPE>
int control_config_common_write_tbl_segment(FILETYPE* cfile, int preset, int (* puts)(const char *, FILETYPE*) ) {
if (preset == 0) {
puts("#ControlConfigOverride\n", cfile);
} else {
puts("#ControlConfigPreset\n", cfile);
}
puts(("$Name: " + Control_config_presets[preset].name + "\n").c_str(), cfile);
// Write bindings for all controls
for (size_t i = 0; i < Control_config.size(); ++i) {
auto& item = Control_config[i];
auto& bindings = Control_config_presets[preset].bindings[i];
auto& first = bindings.first;
auto& second = bindings.second;
puts(("$Bind: " + SCP_string(ValToAction(static_cast<int>(i))) + "\n").c_str(), cfile);
// Primary binding
puts(" $Primary:\n", cfile);
puts((" $Controller: " + ValToCID(first.get_cid()) + "\n").c_str(), cfile);
if (first.get_cid() != CID_NONE) {
puts((" $Flags: " + ValToCCF(first.get_flags()) + "\n").c_str(), cfile);
puts((" $Input: " + ValToInput(first) + "\n").c_str(), cfile);
}
// Secondary binding
puts(" $Secondary:\n", cfile);
puts((" $Controller: " + ValToCID(second.get_cid()) + "\n").c_str(), cfile);
if (second.get_cid() != CID_NONE) {
puts((" $Flags: " + ValToCCF(second.get_flags()) + "\n").c_str(), cfile);
puts((" $Input: " + ValToInput(second) + "\n").c_str(), cfile);
}
// Config menu options (default #Override Only)
if (preset == 0) {
puts((" $Category: " + ValToCCTab(item.tab) + "\n").c_str(), cfile);
puts((" $Text: " + item.text + "\n").c_str(), cfile);
puts((" $Has XStr: " + std::to_string(item.indexXSTR) + "\n").c_str(), cfile);
puts((" $Type: " + ValToCCType(item.type) + "\n").c_str(), cfile);
}
}
puts("#End\n", cfile);
return 0;
}
int control_config_common_write_tbl(bool overwrite = false, bool all = false) {
if (cf_exists_full("controlconfigdefaults.tbl", CF_TYPE_TABLES) && !overwrite) {
// File exists, and we're told to not overwrite it. Bail
return 1;
}
CFILE* cfile = cfopen("controlconfigdefaults.tbl", "w", CFILE_NORMAL, CF_TYPE_TABLES);
if (cfile == nullptr) {
// Could not open. Bail.
return 1;
}
if(all)
load_preset_files();
control_config_common_write_tbl_segment(cfile, 0, &cfputs);
if (all) {
for (size_t i = 1; i < Control_config_presets.size(); i++) {
control_config_common_write_tbl_segment(cfile, (int)i, &cfputs);
}
}
cfclose(cfile);
return 0;
}
int control_config_common_write_tbl_root(bool overwrite = true) {
if (cf_exists_full("controlconfigdefaults.tbl", CF_TYPE_ROOT) && !overwrite) {
// File exists, and we're told to not overwrite it. Bail
return 1;
}
FILE* fp = fopen("controlconfigdefaults.tbl", "w");
if (fp == nullptr) {
// Could not open. Bail.
return 1;
}
for (size_t i = 0; i < Control_config_presets.size(); i++) {
control_config_common_write_tbl_segment(fp, (int)i, &fputs);
}
fclose(fp);
return 0;
}
DCF(save_ccd, "Save the current Control Configuration Defaults to .tbl") {
if (dc_optional_string_either("help", "--help")) {
dc_printf("Will write (and overwrite) a controlconfigdefault.tbl in root/tables with the current profile. Use --all to export all profiles.\n");
return;
}
bool createAll = false;
if (dc_optional_string_either("all", "--all")) {
createAll = true;
}
if (!control_config_common_write_tbl(true, createAll)) {
dc_printf("Default bindings saved to controlconfigdefaults.tbl\n");
} else {
dc_printf("Error: Unable to save Control Configuration Defaults.\n");
}
}
DCF(load_ccd, "Reloads Control Configuration Defaults and Presets from .tbl") {
control_config_common_read_tbl();
dc_printf("Default bindings and presets loaded.\n");
}
/**
* @brief Parses controlconfigdefault.tbl, and overrides the default control configuration for each valid entry in the .tbl
*/
void control_config_common_load_overrides()
{
LoadEnumsIntoMaps();
if (Generate_controlconfig_table) {
load_preset_files();
control_config_common_write_tbl_root();
}
try {
control_config_common_read_tbl();
}
catch (const parse::ParseException& e)
{
mprintf(("TABLES: Unable to parse 'controlconfigdefaults.tbl'! Error message = '%s'.\n", e.what()));
return;
}
}
int ActionToVal(const char * str) {
Assert(str != nullptr);
auto it = mActionToVal.find(str);
if (it == mActionToVal.end()) {
return -1;
} // else
return it->second;
}
char CCFToVal(const char * str) {
Assert(str != nullptr);
char val = 0;
// Keep up to date with ValToCCF
if (strstr(str, "AXIS_BTN") != nullptr) {
val |= CCF_AXIS_BTN;
}
if (strstr(str, "RELATIVE") != nullptr) {
val |= CCF_RELATIVE;
}
if (strstr(str, "INVERTED") != nullptr) {
val |= CCF_INVERTED;
}
if (strstr(str, "AXIS") != nullptr) {
val |= CCF_AXIS;
}
if (strstr(str, "HAT") != nullptr) {
val |= CCF_HAT;
}
if (strstr(str, "BALL") != nullptr) {
val |= CCF_BALL;
}
return val;
}
char CCTabToVal(const char *str) {
Assert(str != nullptr);
auto it = mCCTabNameToVal.find(str);
if (it == mCCTabNameToVal.end()) {
return CC_tab::NO_TAB;
} // else
// TODO: make the CCTabToVal map use the CC_tab enum instead of chars.
return static_cast<CC_tab>(it->second);
}
CC_type CCTypeToVal(const char *str) {
Assert(str != nullptr);
auto it = mCCTypeNameToVal.find(str);
if (it == mCCTypeNameToVal.end()) {
return CC_type::CC_TYPE_TRIGGER;
} // else
return it->second;
}
CID CIDToVal(const char * str) {
Assert(str != nullptr);
auto it = mCIDNameToVal.find(str);
if (it == mCIDNameToVal.end()) {
return CID_NONE;
} // else
return it->second;
}
short JoyToVal(const char * str) {
Assert(str != nullptr);
auto it = mAxisNameToVal.find(str);
if (it != mAxisNameToVal.end()) {
// is an axis
return it->second;
}
/*
it = mHatNameToVal.find(str);
if (it != mHatNameToVal.end()) {
// is a hat
return it->second;
}
*/
// Is it a button?
auto val = static_cast<short>(atoi(str));
// atoi returns 0 if the str is invalid, so we need check it actually is 0
if ((val == 0) && (str[0] != '0')) {
// Not a button
Error(LOCATION, "PST: Unknown input value for Joystick: '%s'", str);
return -1;
} else {
// is a button
return val;
}
}
short KeyboardToVal(const char * str) {
Assert(str != nullptr);
short val = 0;
const char * ch;
// Alt must be checked first
ch = strstr(str, "ALT-");
if (ch != nullptr) {
// Add the Alt mask, and advance str past "ALT-"
// -1 to exclude the '\0'
val |= KEY_ALTED;
str += sizeof("ALT-") - 1;
}
ch = strstr(str, "SHIFT-");
if ( ch != nullptr) {
val |= KEY_SHIFTED;
str += sizeof("SHIFT-") - 1;
}
auto it = mKeyNameToVal.find(str);
if (it == mKeyNameToVal.end()) {
// not bound
val = -1;
} else {
val |= it->second;
}
return val;
}
short InputToVal(CID cid, const char * str) {
Assert(str != nullptr);
short val = -1;
switch (cid) {
case CID_MOUSE:
val = MouseToVal(str);
break;
case CID_KEYBOARD:
val = KeyboardToVal(str);
break;
case CID_JOY0:
case CID_JOY1:
case CID_JOY2:
case CID_JOY3:
val = JoyToVal(str);
break;
case CID_NONE:
val = -1;
break;
default:
Error(LOCATION, "Unknown CID");
break;
}
return val;
}
short MouseToVal(const char * str) {
Assert(str != nullptr);
// is it an axis?
auto it = mAxisNameToVal.find(str);
if (it != mAxisNameToVal.end()) {
// is an axis
if (it->second < MOUSE_NUM_AXES) {
return it->second;
} else {
Error(LOCATION, "Illegal axis for mouse: '%s'", str);
return -1;
}
}
// is it a button?
it = mMouseNameToVal.find(str);
if (it != mMouseNameToVal.end()) {
// is a button
return bit_distance(it->second);
}
// Else, I dunno
Error(LOCATION, "Unknown input value for Mouse: '%s'", str);
return -1;
}
const char * ValToAction(IoActionId id) {
auto it = std::find_if(mActionToVal.begin(), mActionToVal.end(),
[id](const std::pair<SCP_string, IoActionId>& pair) { return pair.second == id; });
if (it == mActionToVal.end()) {
// Shouldn't happen
Error(LOCATION, "Unknown IoActionId %i", id);
return "NONE";
} else {
return it->first.c_str();
}
}
const char * ValToAction(int id) {
if ((id < 0) && (static_cast<size_t>(id) >= Control_config.size())) {
return "NONE";
}
return ValToAction(static_cast<IoActionId>(id));
}
SCP_string ValToCCF(char id) {
// Keep this up to date with the CCF defines in controlsconfig.h
// This one doesn't get a map since its a mask that has to be constructed/deconst
SCP_string str;
if (id & CCF_AXIS_BTN) {
// if (!str.empty())
// str += ", ";
str += "AXIS_BTN";
}
if (id & CCF_RELATIVE) {
if (!str.empty())
str += ", ";
str += "RELATIVE";
}
if (id & CCF_INVERTED) {
if (!str.empty())
str += ", ";
str += "INVERTED";
}
if (id & CCF_AXIS) {
if (!str.empty())
str += ", ";
str += "AXIS";
}
if (id & CCF_HAT) {
if (!str.empty())
str += ", ";
str += "HAT";
}
if (id & CCF_BALL) {
if (!str.empty())
str += ", ";
str += "BALL";
}
if (str.empty()) {
// If unsupported flags, or (id == CCF_NONE), list as "None"
str = "NONE";
}
return str;
}
SCP_string ValToCCTab(char tab) {
auto it = std::find_if(mCCTabNameToVal.cbegin(), mCCTabNameToVal.cend(),
[tab](const std::pair<SCP_string, char>& pair) {return pair.second == static_cast<char>(tab); });
if (it == mCCTabNameToVal.cend()) {
// Shouldn't happen
UNREACHABLE("Unknown Tab value %i", static_cast<int>(tab));
return "NONE";
} else {
return it->first;
}
}
SCP_string ValToCCType(CC_type type) {
auto it = std::find_if(mCCTypeNameToVal.cbegin(), mCCTypeNameToVal.cend(),
[type](const std::pair<SCP_string, CC_type>& pair) { return pair.second == type; });
if (it == mCCTypeNameToVal.cend()) {
// Shouldn't happen
UNREACHABLE("Unknown CC_type value %i", static_cast<int>(type));
return "NONE";
} else {
return it->first;
}
}
SCP_string ValToCID(CID id) {
auto it = std::find_if(mCIDNameToVal.cbegin(), mCIDNameToVal.cend(),
[id](const std::pair<SCP_string, CID>& pair) {return pair.second == id; });
if (it == mCIDNameToVal.cend()) {
// Shouldn't happen
Error(LOCATION, "Unknown CID value %i", id);
return "NONE";
} else {
return it->first.c_str();
}
}
SCP_string ValToCID(int id) {
if ((id < 0) || (id >= CID_JOY_MAX)) {
return "NONE";
}
return ValToCID(static_cast<CID>(id));
}
SCP_string ValToInput(const CC_bind &bind) {
SCP_string str;
switch (bind.get_cid()) {
case CID_MOUSE:
str = ValToMouse(bind);
break;
case CID_KEYBOARD:
str = ValToKeyboard(bind);
break;
case CID_JOY0:
case CID_JOY1:
case CID_JOY2:
case CID_JOY3:
str = ValToJoy(bind);
break;
case CID_NONE:
str = "NONE";
break;
default:
Error(LOCATION, "Unknown CID");
break;
}
return str;
}
SCP_string ValToMouse(const CC_bind &bind) {
Assert(bind.get_cid() == CID_MOUSE);
if (bind.get_flags() & CCF_AXIS) {
// is an axis
if (bind.get_btn() >= MOUSE_NUM_AXES) {
Error(LOCATION, "Invalid mouse axis '%i'", bind.get_btn());
return "NONE";
}
auto it = std::find_if(mAxisNameToVal.begin(), mAxisNameToVal.end(),
[bind](const std::pair<SCP_string, short>& pair) { return pair.second == bind.get_btn(); });
if (it == mAxisNameToVal.end()) {
Error(LOCATION, "Unknown input value for Mouse axis '%i'", bind.get_btn());
return "NONE";
}
return it->first;
} // else, its a button
auto it = std::find_if(mMouseNameToVal.begin(), mMouseNameToVal.end(),
[bind](const std::pair<SCP_string, short>& pair) { return pair.second == (1 << bind.get_btn()); });
if (it == mMouseNameToVal.end()) {
Error(LOCATION, "Unknown input value for Mouse button: '%i'", bind.get_btn());
return "NONE";
} else {
return it->first;
}
}
SCP_string ValToKeyboard(const CC_bind &bind) {
SCP_string str;
Assert(bind.get_cid() == CID_KEYBOARD);
// Can't use textify_scancode since we want the key enum strings
short btn = bind.get_btn();
if (btn & KEY_ALTED) {
str += "ALT-";
}
if (btn & KEY_SHIFTED) {
str += "SHIFT-";
}
btn &= KEY_MASK;
auto it = std::find_if(mKeyNameToVal.cbegin(), mKeyNameToVal.cend(),
[btn](const std::pair<SCP_string, short>& pair) {return pair.second == btn; });
if (it == mKeyNameToVal.cend()) {
// Shouldn't happen
Error(LOCATION, "Unknown key %i", btn);
} else {
str += it->first;
}
return str;
}
SCP_string ValToJoy(const CC_bind &bind) {
SCP_string str;
const auto btn = bind.get_btn();
const auto cid = bind.get_cid();
const auto flags = bind.get_flags();
Assert((cid == CID_JOY0) || (cid == CID_JOY1) ||
(cid == CID_JOY2) || (cid == CID_JOY3));
if (flags & (CCF_AXIS | CCF_BALL)) {
// is an axis or ball
auto it = std::find_if(mAxisNameToVal.begin(), mAxisNameToVal.end(),
[btn](const std::pair<SCP_string, short>& pair) { return pair.second == btn; });
if (it == mAxisNameToVal.end()) {
// should never happen
UNREACHABLE("Unknown error occured during reverse lookup of joy input string.");
} // else print out value
str = it->first;
/* } else if (bind.flags & CCF_HAT) {
// TODO Still currently encoded as buttons
// Is a hat
int hat_id = bind.btn / 4;
int hat_pos = bind.btn % 4;
auto it = std::find_if(mJoyNameToVal.begin(), mJoyNameToVal.end(),
[hat_pos](std::pair<SCP_string, int> pair) { return pair.second == hat_pos; });
if (it == mJoyNameToVal.end()) {
// should never happen
Error(LOCATION, "Unknown error occured during reverse lookup of joy input string.");
} // else print out value
sprintf(str, "HAT-%i %s", hat_id, it->first.c_str());
*/
} else if (btn != -1) {
// Is a button
sprintf(str, "%i", btn);
} else {
// Unbound
str = "NONE";
}
return str;
}
bool CC_bind::operator==(const CC_bind &B) const
{
return (btn == B.btn) && (cid == B.cid) && (flags == B.flags);
}
bool CC_bind::operator!=(const CC_bind &B) const
{
return !(*this == B);
}
bool CC_bind::invert_agnostic_equals(const CC_bind &B) const
{
// invert both
auto my_flags = flags | CCF_INVERTED;
auto other_flags = B.flags | CCF_INVERTED;
return (btn == B.btn) && (cid == B.cid) && (my_flags == other_flags);
}
void CC_bind::clear()
{
cid = CID_NONE;
btn = -1;
flags &= ~(CCF_AXIS); // Clear all flags except these
}
bool CC_bind::empty() const
{
return cid == CID_NONE;
}
short CC_bind::get_btn() const
{
return btn;
}
CID CC_bind::get_cid() const
{
return cid;
}
char CC_bind::get_flags() const
{
return flags;
}
void CC_bind::invert(bool inv)
{
if (inv) {
flags |= CCF_INVERTED;
} else {
flags &= ~CCF_INVERTED;
}
}
void CC_bind::invert_toggle() {
flags ^= CCF_INVERTED;
}
bool CC_bind::conflicts_with(const CC_bind& B) const {
// Bail early if CID or btn are not the same
if ((cid != B.cid) || (btn != B.btn)) {
return false;
}
// Check if A is an Axis or Axis Button, and if B is an Axis or Axis Button
char mask = (CCF_AXIS_BTN | CCF_AXIS);
if ((flags & mask) && (B.flags & mask)) {
return true;
}
// Check if Hat
if (flags & B.flags & CCF_HAT) {
return true;
}
// Check if Ball
if (flags & B.flags & CCF_BALL) {
return true;
}
// These flags don't cause a conflict for anything other than buttons/keys:
// CCF_RELATIVE, CCF_INVERTED
mask = (CCF_AXIS_BTN | CCF_AXIS | CCF_HAT | CCF_BALL | CCF_RELATIVE | CCF_INVERTED);
// z64: I really don't like this form, even if its "simpler" and "faster" according to clang-tidy
// First off, check if A or B is NOT a button, as according to the mask. Buttons do not have a flag, so we check
// if they are any of the other input types
// Next, we return the inverse of the result. Negative of a Negative = Positive. Not Not a button = Is a button
return !((flags | B.flags) & mask);
}
bool CC_bind::is_inverted() const {
return static_cast<bool>(flags & CCF_INVERTED);
}
void CC_bind::take(CID _cid, short _btn, char _flags) {
cid = _cid;
btn = _btn;
flags = _flags;
validate();
}
void CC_bind::validate() {
if (cid == CID_NONE) {
flags = 0;
btn = -1;
return;
} else if (btn == -1) {
cid = CID_NONE;
flags = 0;
return;
}
if (cid == CID_KEYBOARD) {
// Keyboard has no flags
flags = 0;
return;
}
if (cid == CID_MOUSE) {
// Mouse doesn't have these flags
flags &= ~(CCF_BALL | CCF_HAT | CCF_AXIS_BTN | CCF_HAT);
return;
}
}
SCP_string CC_bind::textify() const {
SCP_string prefix;
SCP_string retval;
// TODO: XSTR the Mouse/Joy prefix
switch (cid) {
case CID_MOUSE:
prefix = "Mouse ";
break;
case CID_JOY0:
prefix = "Joy-0 ";
break;
case CID_JOY1:
prefix = "Joy-1 ";
break;
case CID_JOY2:
prefix = "Joy-2 ";
break;
case CID_JOY3:
prefix = "Joy-3 ";
break;
case CID_NONE:
case CID_KEYBOARD:
default:
// No prefix
break;
}
if (flags & CCF_AXIS) {
// Is Axis
if (cid == CID_NONE) {
retval = "None";
} else {
Assert((btn >= 0) && (btn < NUM_AXIS_TEXT));
retval = SCP_string(Axis_text[btn]);
}
} else {
// Is button or key
switch (cid) {
case CID_KEYBOARD:
retval = textify_scancode(btn);
break;
case CID_MOUSE:
Assert((btn >= 0) && (btn < NUM_MOUSE_TEXT));
retval = SCP_string(Mouse_button_text[btn]);
break;
case CID_JOY0:
case CID_JOY1:
case CID_JOY2:
case CID_JOY3:
Assert((btn >= 0) && (btn < JOY_TOTAL_BUTTONS));
retval = SCP_string(Joy_button_text[btn]);
break;
case CID_NONE:
default:
retval = "None";
break;
}
}
return prefix + retval;
}
bool CCB::empty() const {
return (first.empty() && second.empty());
}
void CCB::take(CC_bind A, int order) {
A.validate();
switch (order) {
case 0:
first = A;
if (second.get_cid() == A.get_cid()) {
second.clear();
}
break;
case 1:
second = A;
if (first.get_cid() == A.get_cid()) {
first.clear();
}
break;
case -1:
// Overwrite existing, or put in empty
if (first.get_cid() == A.get_cid()) {
first = A;
} else if (second.get_cid() == A.get_cid()) {
second = A;
} else if (first.empty()) {
first = A;
} else if (second.empty()) {
second = A;
}
break;
default:
return;
}
}
void CCB::clear() {
first.clear();
second.clear();
}
short CCB::get_btn(CID cid) const {
if (first.get_cid() == cid) {
return first.get_btn();
} else if (second.get_cid() == cid) {
return second.get_btn();
} else {
return -1;
}
}
bool CCB::operator==(const CCB& A) const {
return (first == A.first) && (second == A.second);
}
bool CCB::operator!=(const CCB& A) const {
return !this->operator==(A);
}
bool CCB::has_first_conflict(const CCB& A) const {
// coverity[copy_paste_error:FALSE]
return !first.empty() && (first.conflicts_with(A.first) || first.conflicts_with(A.second));
}
bool CCB::has_second_conflict(const CCB& A) const {
// coverity[copy_paste_error:FALSE]
return !second.empty() && (second.conflicts_with(A.first) || second.conflicts_with(A.second));
}
CCI& CCI::operator=(const CCI& A) {
first = A.first;
second = A.second;
tab = A.tab;
indexXSTR = A.indexXSTR;
text = A.text;
type = A.type;
analog_value = A.analog_value;
digital_used = A.digital_used;
disabled = A.disabled;
locked = A.locked;
scriptEnabledByDefault = A.scriptEnabledByDefault;
continuous_ongoing = A.continuous_ongoing;
return *this;
};
CCI& CCI::operator=(const CCB& A) {
first = A.first;
second = A.second;
return *this;
};
CC_bind* CCB::find(const CC_bind &A) {
if (first == A) {
return &first;
} else if (second == A) {
return &second;
}
return nullptr;
}
CC_bind* CCB::find(CID A) {
if (first.get_cid() == A) {
return &first;
} else if (second.get_cid() == A) {
return &second;
}
return nullptr;
}
CC_bind* CCB::find_flags(const char mask) {
// ((A & B) ^ B) is true if A has any bit in B that's different
// !((A & B) ^ B) should therefore mean A has all bits in B
if (!((first.get_flags() & mask) ^ mask)) {
return &first;
}
if (!((second.get_flags() & mask) ^ mask)) {
return &second;
}
return nullptr;
}
void CCB::invert(bool inv) {
first.invert(inv);
second.invert(inv);
}
void CCB::invert_toggle() {
first.invert_toggle();
second.invert_toggle();
}
bool CCB::is_inverted() const {
return first.is_inverted() && second.is_inverted();
}
bool CCI::is_axis() {
switch (type) {
case CC_TYPE_AXIS_ABS:
case CC_TYPE_AXIS_REL:
case CC_TYPE_AXIS_BTN_NEG:
case CC_TYPE_AXIS_BTN_POS:
return true;
default:
return false;
}
}
CCI_builder::CCI_builder(SCP_vector<CCI>& _ControlConfig) : ControlConfig(_ControlConfig) {
ControlConfig.resize(CCFG_MAX);
};
CCI_builder& CCI_builder::start() {
return *this;
};
void CCI_builder::end() {};
CCI_builder& CCI_builder::operator()(IoActionId action_id, short primary, short secondary, char tab, int indexXSTR, const char *text, CC_type type, bool disabled) {
Assert(action_id < CCFG_MAX);
CCI& item = ControlConfig[action_id];
// Initialize the current bindings to defaults. Defaults will be saved to a preset after Control_config is built
// Current bindings will be overwritten once the player's bindings is read in.
if ((type == CC_TYPE_AXIS_ABS) ||
(type == CC_TYPE_AXIS_REL) ||
(type == CC_TYPE_AXIS_BTN_POS) ||
(type == CC_TYPE_AXIS_BTN_NEG)) {
// This is an analog control
item.take(CC_bind(CID_JOY0, primary, CCF_AXIS), 0);
item.take(CC_bind(CID_MOUSE, secondary, CCF_AXIS), 1);
} else {
// This is a digital control
item.take(CC_bind(CID_KEYBOARD, primary), 0);
item.take(CC_bind(CID_JOY0, secondary), 1);
}
// Assign the UI members
item.text.assign(text);
item.indexXSTR = indexXSTR;
item.tab = tab;
// Assign the CC_type
item.type = type;
if (tab == NO_TAB) {
mprintf(("Control item defined without a valid tab. Disabling: %s\n", item.text.c_str()));
item.disabled = true;
}
// Enable if it has a valid tab and if caller wants it enabled
if ((tab != NO_TAB) && !disabled) {
item.disabled = false;
}
return *this;
}
CC_preset& CC_preset::operator=(const CC_preset& A) {
name = A.name;
type = A.type;
std::copy(A.bindings.begin(), A.bindings.end(), bindings.begin());
return *this;
};
bool CC_preset::is_duplicate_of(CC_preset& A) {
for (size_t i = 0; i < A.bindings.size(); ++i) {
if (bindings[i] != A.bindings[i]) {
// Found a binding that's different. Thus, this preset is not a duplicate
return false;
}
}
// Else, did not find any differences in the bindings. Thus, this preset is a duplicate
return true;
}
|