File size: 88,389 Bytes
18a519f | 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 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Unity.Collections;
using UnityEngine.InputSystem.Utilities;
////REVIEW: given we have the global ActionPerformed callback, do we really need the per-map callback?
////TODO: remove constraint of not being able to modify bindings while enabled from both actions and maps
//// (because of the sharing of state between multiple maps in an asset, we'd have to extend that constraint
//// to all maps in an asset in order to uphold it properly)
namespace UnityEngine.InputSystem
{
/// <summary>
/// A mechanism for collecting a series of input actions (see <see cref="InputAction"/>)
/// and treating them as a group.
/// </summary>
/// <remarks>
/// Each action map is a named collection of bindings and actions. Both are stored
/// as a flat list. The bindings are available through the <see cref="bindings"/>
/// property and the actions are available through the <see cref="actions"/> property.
///
/// The actions in a map are owned by the map. No action can appear in two maps
/// at the same time. To find the action map an action belongs to, use the
/// <see cref="InputAction.actionMap"/> property. Note that actions can also stand
/// on their own and thus do not necessarily need to belong to a map (in which case
/// the <see cref="InputAction.actionMap"/> property is <c>null</c>).
///
/// Within a map, all actions have to have names and each action name must
/// be unique. The <see cref="InputBinding.action"/> property of bindings in a map
/// are resolved within the <see cref="actions"/> in the map. Looking up actions
/// by name can be done through <see cref="FindAction(string,bool)"/>.
///
/// The <see cref="name"/> of the map itself can be empty, except if the map is part of
/// an <see cref="InputActionAsset"/> in which case it is required to have a name
/// which also must be unique within the asset.
///
/// Action maps are most useful for grouping actions that contextually
/// belong together. For example, one common usage is to separate the actions
/// that can be performed in the UI or in the main menu from those that can
/// be performed during gameplay. However, even within gameplay, multiple action
/// maps can be employed. For example, one could have different action maps for
/// driving and for walking plus one more map for the actions shared between
/// the two modes.
///
/// Action maps are usually created in the <a href="../manual/ActionAssets.html">action
/// editor</a> as part of <see cref="InputActionAsset"/>s. However, they can also be
/// created standing on their own directly in code or from JSON (see <see cref="FromJson"/>).
///
/// <example>
/// <code>
/// // Create a free-standing action map.
/// var map = new InputActionMap();
///
/// // Add some actions and bindings to it.
/// map.AddAction("action1", binding: "<Keyboard>/space");
/// map.AddAction("action2", binding: "<Gamepad>/buttonSouth");
/// </code>
/// </example>
///
/// Actions in action maps, like actions existing by themselves outside of action
/// maps, do not actively process input except if enabled. Actions can either
/// be enabled individually (see <see cref="InputAction.Enable"/> and <see
/// cref="InputAction.Disable"/>) or in bulk by enabling and disabling the
/// entire map (see <see cref="Enable"/> and <see cref="Disable"/>).
/// </remarks>
/// <seealso cref="InputActionAsset"/>
/// <seealso cref="InputAction"/>
[Serializable]
public sealed class InputActionMap : ICloneable, ISerializationCallbackReceiver, IInputActionCollection2, IDisposable
{
/// <summary>
/// Name of the action map.
/// </summary>
/// <value>Name of the action map.</value>
/// <remarks>
/// For action maps that are part of <see cref="InputActionAsset"/>s, this will always be
/// a non-null, non-empty string that is unique within the maps in the asset. For action maps
/// that are standing on their own, this can be null or empty.
/// </remarks>
public string name => m_Name;
/// <summary>
/// If the action map is part of an asset, this refers to the asset. Otherwise it is <c>null</c>.
/// </summary>
/// <value>Asset to which the action map belongs.</value>
public InputActionAsset asset => m_Asset;
/// <summary>
/// A stable, unique identifier for the map.
/// </summary>
/// <value>Unique ID for the action map.</value>
/// <remarks>
/// This can be used instead of the name to refer to the action map. Doing so allows referring to the
/// map such that renaming it does not break references.
/// </remarks>
/// <seealso cref="InputAction.id"/>
public Guid id
{
get
{
if (string.IsNullOrEmpty(m_Id))
GenerateId();
return new Guid(m_Id);
}
}
internal Guid idDontGenerate
{
get
{
if (string.IsNullOrEmpty(m_Id))
return default;
return new Guid(m_Id);
}
}
/// <summary>
/// Whether any action in the map is currently enabled.
/// </summary>
/// <value>True if any action in <see cref="actions"/> is currently enabled.</value>
/// <seealso cref="InputAction.enabled"/>
/// <seealso cref="Enable"/>
/// <seealso cref="InputAction.Enable"/>
public bool enabled => m_EnabledActionsCount > 0;
/// <summary>
/// List of actions contained in the map.
/// </summary>
/// <value>Collection of actions belonging to the map.</value>
/// <remarks>
/// Actions are owned by their map. The same action cannot appear in multiple maps.
///
/// Accessing this property. Note that values returned by the property become invalid if
/// the setup of actions in a map is changed.
/// </remarks>
/// <seealso cref="InputAction.actionMap"/>
public ReadOnlyArray<InputAction> actions => new ReadOnlyArray<InputAction>(m_Actions);
/// <summary>
/// List of bindings contained in the map.
/// </summary>
/// <value>Collection of bindings in the map.</value>
/// <remarks>
/// <see cref="InputBinding"/>s are owned by action maps and not by individual actions.
///
/// Bindings that trigger actions refer to the action by <see cref="InputAction.name"/>
/// or <see cref="InputAction.id"/>.
///
/// Accessing this property does not allocate. Note that values returned by the property
/// become invalid if the setup of bindings in a map is changed.
/// </remarks>
/// <seealso cref="InputAction.bindings"/>
public ReadOnlyArray<InputBinding> bindings => new ReadOnlyArray<InputBinding>(m_Bindings);
IEnumerable<InputBinding> IInputActionCollection2.bindings => bindings;
/// <summary>
/// Control schemes defined for the action map.
/// </summary>
/// <value>List of available control schemes.</value>
/// <remarks>
/// Control schemes can only be defined at the level of <see cref="InputActionAsset"/>s.
/// For action maps that are part of assets, this property will return the control schemes
/// from the asset. For free-standing action maps, this will return an empty list.
/// </remarks>
/// <seealso cref="InputActionAsset.controlSchemes"/>
public ReadOnlyArray<InputControlScheme> controlSchemes
{
get
{
if (m_Asset == null)
return new ReadOnlyArray<InputControlScheme>();
return m_Asset.controlSchemes;
}
}
/// <summary>
/// Binding mask to apply to all actions in the asset.
/// </summary>
/// <value>Optional mask that determines which bindings in the action map to enable.</value>
/// <remarks>
/// Binding masks can be applied at three different levels: for an entire asset through
/// <see cref="InputActionAsset.bindingMask"/>, for a specific map through this property,
/// and for single actions through <see cref="InputAction.bindingMask"/>. By default,
/// none of the masks will be set (that is, they will be <c>null</c>).
///
/// When an action is enabled, all the binding masks that apply to it are taken into
/// account. Specifically, this means that any given binding on the action will be
/// enabled only if it matches the mask applied to the asset, the mask applied
/// to the map that contains the action, and the mask applied to the action itself.
/// All the masks are individually optional.
///
/// Masks are matched against bindings using <see cref="InputBinding.Matches"/>.
///
/// Note that if you modify the masks applicable to an action while it is
/// enabled, the action's <see cref="InputAction.controls"/> will get updated immediately to
/// respect the mask. To avoid repeated binding resolution, it is most efficient
/// to apply binding masks before enabling actions.
///
/// Binding masks are non-destructive. All the bindings on the action are left
/// in place. Setting a mask will not affect the value of the <see cref="InputAction.bindings"/>
/// and <see cref="bindings"/> properties.
/// </remarks>
/// <seealso cref="InputBinding.MaskByGroup"/>
/// <seealso cref="InputAction.bindingMask"/>
/// <seealso cref="InputActionAsset.bindingMask"/>
public InputBinding? bindingMask
{
get => m_BindingMask;
set
{
if (m_BindingMask == value)
return;
m_BindingMask = value;
LazyResolveBindings(fullResolve: true);
}
}
/// <summary>
/// Set of devices that bindings in the action map can bind to.
/// </summary>
/// <value>Optional set of devices to use by bindings in the map.</value>
/// <remarks>
/// By default (with this property being <c>null</c>), bindings will bind to any of the
/// controls available through <see cref="InputSystem.devices"/>, that is, controls from all
/// devices in the system will be used.
///
/// By setting this property, binding resolution can instead be restricted to just specific
/// devices. This restriction can either be applied to an entire asset using <see
/// cref="InputActionMap.devices"/> or to specific action maps by using this property. Note that
/// if both this property and <see cref="InputActionAsset.devices"/> is set for a specific action
/// map, the list of devices on the action map will take precedence and the list on the
/// asset will be ignored for bindings in that action map.
///
/// <example>
/// <code>
/// // Create an action map containing a single action with a gamepad binding.
/// var actionMap = new InputActionMap();
/// var fireAction = actionMap.AddAction("Fire", binding: "<Gamepad>/buttonSouth");
/// asset.AddActionMap(actionMap);
///
/// // Let's assume we have two gamepads connected. If we enable the
/// // action map now, the 'Fire' action will bind to both.
/// actionMap.Enable();
///
/// // This will print two controls.
/// Debug.Log(string.Join("\n", fireAction.controls));
///
/// // To restrict the setup to just the first gamepad, we can assign
/// // to the 'devices' property.
/// actionMap.devices = new InputDevice[] { Gamepad.all[0] };
///
/// // Now this will print only one control.
/// Debug.Log(string.Join("\n", fireAction.controls));
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="InputActionAsset.devices"/>
public ReadOnlyArray<InputDevice>? devices
{
// Return asset's device list if we have none (only if we're part of an asset).
get => m_Devices.Get() ?? m_Asset?.devices;
set
{
if (m_Devices.Set(value))
LazyResolveBindings(fullResolve: false);
}
}
/// <summary>
/// Look up an action by name or ID.
/// </summary>
/// <param name="actionNameOrId">Name (as in <see cref="InputAction.name"/>) or ID (as in <see cref="InputAction.id"/>)
/// of the action. Note that matching of names is case-insensitive.</param>
/// <exception cref="ArgumentNullException"><paramref name="actionNameOrId"/> is <c>null</c>.</exception>
/// <exception cref="KeyNotFoundException">No action with the name or ID of <paramref name="actionNameOrId"/>
/// was found in the action map.</exception>
/// <remarks>
/// This method is equivalent to <see cref="FindAction(string,bool)"/> except it throws <c>KeyNotFoundException</c>
/// if no action with the given name or ID can be found.
/// </remarks>
/// <seealso cref="FindAction(string,bool)"/>
/// <seealso cref="FindAction(Guid)"/>
/// <see cref="actions"/>
public InputAction this[string actionNameOrId]
{
get
{
if (actionNameOrId == null)
throw new ArgumentNullException(nameof(actionNameOrId));
var action = FindAction(actionNameOrId);
if (action == null)
throw new KeyNotFoundException($"Cannot find action '{actionNameOrId}'");
return action;
}
}
////REVIEW: inconsistent naming; elsewhere we use "onActionTriggered" (which in turn is inconsistent with InputAction.started etc)
/// <summary>
/// Add or remove a callback that is triggered when an action in the map changes its <see cref="InputActionPhase">
/// phase</see>.
/// </summary>
/// <seealso cref="InputAction.started"/>
/// <seealso cref="InputAction.performed"/>
/// <seealso cref="InputAction.canceled"/>
public event Action<InputAction.CallbackContext> actionTriggered
{
add => m_ActionCallbacks.AddCallback(value);
remove => m_ActionCallbacks.RemoveCallback(value);
}
/// <summary>
/// Construct an action map with default values.
/// </summary>
public InputActionMap()
{
}
/// <summary>
/// Construct an action map with the given name.
/// </summary>
/// <param name="name">Name to give to the action map. By default <c>null</c>, i.e. does
/// not assign a name to the map.</param>
public InputActionMap(string name)
: this()
{
m_Name = name;
}
/// <summary>
/// Release internal state held on to by the action map.
/// </summary>
/// <remarks>
/// Once actions in a map are enabled, the map will allocate a block of state internally that
/// it will hold on to until disposed of. All actions in the map will share the same internal
/// state. Also, if the map is part of an <see cref="InputActionAsset"/> all maps and actions
/// in the same asset will share the same internal state.
///
/// Note that the internal state holds on to GC heap memory as well as memory from the
/// unmanaged, C++ heap.
/// </remarks>
public void Dispose()
{
m_State?.Dispose();
}
internal int FindActionIndex(string nameOrId)
{
////REVIEW: have transient lookup table? worth optimizing this?
//// Ideally, this should at least be an InternedString comparison but due to serialization,
//// that's quite tricky.
if (string.IsNullOrEmpty(nameOrId))
return -1;
if (m_Actions == null)
return -1;
// First time we hit this method, we populate the lookup table.
SetUpActionLookupTable();
var actionCount = m_Actions.Length;
var isOldBracedFormat = nameOrId.StartsWith("{") && nameOrId.EndsWith("}");
if (isOldBracedFormat)
{
var length = nameOrId.Length - 2;
for (var i = 0; i < actionCount; ++i)
{
if (string.Compare(m_Actions[i].m_Id, 0, nameOrId, 1, length) == 0)
return i;
}
}
if (m_ActionIndexByNameOrId.TryGetValue(nameOrId, out var actionIndex))
return actionIndex;
for (var i = 0; i < actionCount; ++i)
{
var action = m_Actions[i];
if (action.m_Id == nameOrId || string.Compare(m_Actions[i].m_Name, nameOrId, StringComparison.InvariantCultureIgnoreCase) == 0)
return i;
}
return InputActionState.kInvalidIndex;
}
private void SetUpActionLookupTable()
{
if (m_ActionIndexByNameOrId != null || m_Actions == null)
return;
m_ActionIndexByNameOrId = new Dictionary<string, int>();
var actionCount = m_Actions.Length;
for (var i = 0; i < actionCount; ++i)
{
var action = m_Actions[i];
// We want to make sure an action ID cannot change *after* we have created the table.
// NOTE: The *name* of an action, however, *may* change.
action.MakeSureIdIsInPlace();
// We create two lookup paths for each action:
// (1) By case-sensitive name.
// (2) By GUID string.
m_ActionIndexByNameOrId[action.name] = i;
m_ActionIndexByNameOrId[action.m_Id] = i;
}
}
internal void ClearActionLookupTable()
{
m_ActionIndexByNameOrId?.Clear();
}
private int FindActionIndex(Guid id)
{
if (m_Actions == null)
return InputActionState.kInvalidIndex;
var actionCount = m_Actions.Length;
for (var i = 0; i < actionCount; ++i)
if (m_Actions[i].idDontGenerate == id)
return i;
return InputActionState.kInvalidIndex;
}
/// <summary>
/// Find an action in the map by name or ID.
/// </summary>
/// <param name="actionNameOrId">Name (as in <see cref="InputAction.name"/>) or ID (as in <see cref="InputAction.id"/>)
/// of the action. Note that matching of names is case-insensitive.</param>
/// <param name="throwIfNotFound">If set to <see langword="true"/> will cause an exception to be thrown when the action was not found.</param>
/// <returns>The action with the given name or ID or <c>null</c> if no matching action
/// was found.</returns>
/// <exception cref="ArgumentNullException"><paramref name="actionNameOrId"/> is <c>null</c>.</exception>
/// <seealso cref="FindAction(Guid)"/>
public InputAction FindAction(string actionNameOrId, bool throwIfNotFound = false)
{
if (actionNameOrId == null)
throw new ArgumentNullException(nameof(actionNameOrId));
var index = FindActionIndex(actionNameOrId);
if (index == -1)
{
if (throwIfNotFound)
throw new ArgumentException($"No action '{actionNameOrId}' in '{this}'", nameof(actionNameOrId));
return null;
}
return m_Actions[index];
}
/// <summary>
/// Find an action by ID.
/// </summary>
/// <param name="id">ID (as in <see cref="InputAction.id"/>) of the action.</param>
/// <returns>The action with the given ID or null if no action in the map has
/// the given ID.</returns>
/// <seealso cref="FindAction(string,bool)"/>
public InputAction FindAction(Guid id)
{
var index = FindActionIndex(id);
if (index == -1)
return null;
return m_Actions[index];
}
/// <summary>
/// Check whether there are any bindings in the action map that can bind to
/// controls on the given device.
/// </summary>
/// <param name="device">An input device.</param>
/// <returns>True if any of the bindings in the map can resolve to controls on the device, false otherwise.</returns>
/// <exception cref="ArgumentNullException"><paramref name="device"/> is <c>null</c>.</exception>
/// <remarks>
/// The logic is entirely based on the contents of <see cref="bindings"/> and, more specifically,
/// <see cref="InputBinding.effectivePath"/> of each binding. Each path is checked using <see
/// cref="InputControlPath.Matches"/>. If any path matches, the method returns <c>true</c>.
///
/// Properties such as <see cref="devices"/> and <see cref="bindingMask"/> are ignored.
///
/// <example>
/// <code>
/// // Create action map with two actions and bindings.
/// var actionMap = new InputActionMap();
/// actionMap.AddAction("action1", binding: "<Gamepad>/buttonSouth");
/// actionMap.AddAction("action2", binding: "<XRController{LeftHand}>/{PrimaryAction}");
///
/// //
/// var gamepad = InputSystem.AddDevice<Gamepad>();
/// var xrController = InputSystem.AddDevice<XRController>();
///
/// // Returns true:
/// actionMap.IsUsableWith(gamepad);
///
/// // Returns false: (the XRController does not have the LeftHand usage assigned to it)
/// actionMap.IsUsableWith(xrController);
/// </code>
/// </example>
/// </remarks>
public bool IsUsableWithDevice(InputDevice device)
{
if (device == null)
throw new ArgumentNullException(nameof(device));
if (m_Bindings == null)
return false;
foreach (var binding in m_Bindings)
{
var path = binding.effectivePath;
if (string.IsNullOrEmpty(path))
continue;
if (InputControlPath.Matches(path, device))
return true;
}
return false;
}
/// <summary>
/// Enable all the actions in the map.
/// </summary>
/// <remarks>
/// This is equivalent to calling <see cref="InputAction.Enable"/> on each
/// action in <see cref="actions"/>, but is more efficient as the actions
/// will get enabled in bulk.
/// </remarks>
/// <seealso cref="Disable"/>
/// <seealso cref="enabled"/>
public void Enable()
{
if (m_Actions == null || m_EnabledActionsCount == m_Actions.Length)
return;
ResolveBindingsIfNecessary();
m_State.EnableAllActions(this);
}
/// <summary>
/// Disable all the actions in the map.
/// </summary>
/// <remarks>
/// This is equivalent to calling <see cref="InputAction.Disable"/> on each
/// action in <see cref="actions"/>, but is more efficient as the actions
/// will get disabled in bulk.
/// </remarks>
/// <seealso cref="Enable"/>
/// <seealso cref="enabled"/>
public void Disable()
{
if (!enabled)
return;
m_State.DisableAllActions(this);
}
/// <summary>
/// Produce an identical copy of the action map with its actions and bindings.
/// </summary>
/// <returns>A copy of the action map.</returns>
/// <remarks>
/// If the action map is part of an <see cref="InputActionAsset"/>, the clone will <em>not</em>
/// be. It will be a free-standing action map and <see cref="asset"/> will be <c>null</c>.
///
/// Note that the IDs for the map itself as well as for its <see cref="actions"/> and
/// <see cref="bindings"/> are not copied. Instead, new IDs will be assigned. Also, callbacks
/// installed on actions or on the map itself will not be copied over.
/// </remarks>
public InputActionMap Clone()
{
Debug.Assert(m_SingletonAction == null, "Internal (hidden) action maps of singleton actions should not be cloned");
var clone = new InputActionMap
{
m_Name = m_Name
};
// Clone actions.
if (m_Actions != null)
{
var actionCount = m_Actions.Length;
var actions = new InputAction[actionCount];
for (var i = 0; i < actionCount; ++i)
{
var original = m_Actions[i];
actions[i] = new InputAction
{
m_Name = original.m_Name,
m_ActionMap = clone,
m_Type = original.m_Type,
m_Interactions = original.m_Interactions,
m_Processors = original.m_Processors,
m_ExpectedControlType = original.m_ExpectedControlType,
};
}
clone.m_Actions = actions;
}
// Clone bindings.
if (m_Bindings != null)
{
var bindingCount = m_Bindings.Length;
var bindings = new InputBinding[bindingCount];
Array.Copy(m_Bindings, 0, bindings, 0, bindingCount);
for (var i = 0; i < bindingCount; ++i)
bindings[i].m_Id = default;
clone.m_Bindings = bindings;
}
return clone;
}
/// <summary>
/// Return an boxed instance of the action map.
/// </summary>
/// <returns>An boxed clone of the action map</returns>
/// <seealso cref="Clone"/>
object ICloneable.Clone()
{
return Clone();
}
/// <summary>
/// Return <c>true</c> if the action map contains the given action.
/// </summary>
/// <param name="action">An input action. Can be <c>null</c>.</param>
/// <returns>True if the action map contains <paramref name="action"/>, false otherwise.</returns>
public bool Contains(InputAction action)
{
if (action == null)
return false;
return action.actionMap == this;
}
/// <summary>
/// Return a string representation of the action map useful for debugging.
/// </summary>
/// <returns>A string representation of the action map.</returns>
/// <remarks>
/// For unnamed action maps, this will always be <c>"<Unnamed Action Map>"</c>.
/// </remarks>
public override string ToString()
{
if (m_Asset != null)
return $"{m_Asset}:{m_Name}";
if (!string.IsNullOrEmpty(m_Name))
return m_Name;
return "<Unnamed Action Map>";
}
/// <summary>
/// Enumerate the actions in the map.
/// </summary>
/// <returns>An enumerator going over the actions in the map.</returns>
/// <remarks>
/// This method supports to generically iterate over the actions in a map. However, it will usually
/// lead to GC allocation. Iterating directly over <see cref="actions"/> avoids allocating GC memory.
/// </remarks>
public IEnumerator<InputAction> GetEnumerator()
{
return actions.GetEnumerator();
}
/// <summary>
/// Enumerate the actions in the map.
/// </summary>
/// <returns>An enumerator going over the actions in the map.</returns>
/// <seealso cref="GetEnumerator"/>
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
// The state we persist is pretty much just a name, a flat list of actions, and a flat
// list of bindings. The rest is state we keep at runtime when a map is in use.
[SerializeField] internal string m_Name;
[SerializeField] internal string m_Id; // Can't serialize System.Guid and Unity's GUID is editor only.
[SerializeField] internal InputActionAsset m_Asset;
/// <summary>
/// List of actions in this map.
/// </summary>
[SerializeField] internal InputAction[] m_Actions;
/// <summary>
/// List of bindings in this map.
/// </summary>
/// <remarks>
/// For singleton actions, we ensure this is always the same as <see cref="InputAction.m_SingletonActionBindings"/>.
/// </remarks>
[SerializeField] internal InputBinding[] m_Bindings;
// These fields are caches. If m_Bindings is modified, these are thrown away
// and re-computed only if needed.
// NOTE: Because InputBindings are structs, m_BindingsForEachAction actually duplicates each binding
// (only in the case where m_Bindings has scattered references to actions).
////REVIEW: this will lead to problems when overrides are thrown into the mix
/// <summary>
/// For each entry in <see cref="m_Actions"/>, a slice of this array corresponds to the
/// action's bindings.
/// </summary>
/// <remarks>
/// Ideally, this array is the same as <see cref="m_Bindings"/> (the same as in literally reusing the
/// same array). However, we have no guarantee that <see cref="m_Bindings"/> is sorted by actions. In case it
/// isn't, we create a separate array with the bindings sorted by action and have each action reference
/// a slice through <see cref="InputAction.m_BindingsStartIndex"/> and <see cref="InputAction.m_BindingsCount"/>.
/// </remarks>
/// <seealso cref="SetUpPerActionControlAndBindingArrays"/>
[NonSerialized] private InputBinding[] m_BindingsForEachAction;
[NonSerialized] private InputControl[] m_ControlsForEachAction;
/// <summary>
/// Number of actions currently enabled in the map.
/// </summary>
/// <remarks>
/// This should only be written to by <see cref="InputActionState"/>.
/// </remarks>
[NonSerialized] internal int m_EnabledActionsCount;
// Action maps that are created internally by singleton actions to hold their data
// are never exposed and never serialized so there is no point allocating an m_Actions
// array.
[NonSerialized] internal InputAction m_SingletonAction;
[NonSerialized] internal int m_MapIndexInState = InputActionState.kInvalidIndex;
/// <summary>
/// Current execution state.
/// </summary>
/// <remarks>
/// Initialized when map (or any action in it) is first enabled.
/// </remarks>
[NonSerialized] internal InputActionState m_State;
[NonSerialized] internal InputBinding? m_BindingMask;
[NonSerialized] private Flags m_Flags;
[NonSerialized] internal int m_ParameterOverridesCount;
[NonSerialized] internal InputActionRebindingExtensions.ParameterOverride[] m_ParameterOverrides;
[NonSerialized] internal DeviceArray m_Devices;
[NonSerialized] internal CallbackArray<Action<InputAction.CallbackContext>> m_ActionCallbacks;
[NonSerialized] internal Dictionary<string, int> m_ActionIndexByNameOrId;
private bool needToResolveBindings
{
get => (m_Flags & Flags.NeedToResolveBindings) != 0;
set
{
if (value)
m_Flags |= Flags.NeedToResolveBindings;
else
m_Flags &= ~Flags.NeedToResolveBindings;
}
}
private bool bindingResolutionNeedsFullReResolve
{
get => (m_Flags & Flags.BindingResolutionNeedsFullReResolve) != 0;
set
{
if (value)
m_Flags |= Flags.BindingResolutionNeedsFullReResolve;
else
m_Flags &= ~Flags.BindingResolutionNeedsFullReResolve;
}
}
private bool controlsForEachActionInitialized
{
get => (m_Flags & Flags.ControlsForEachActionInitialized) != 0;
set
{
if (value)
m_Flags |= Flags.ControlsForEachActionInitialized;
else
m_Flags &= ~Flags.ControlsForEachActionInitialized;
}
}
private bool bindingsForEachActionInitialized
{
get => (m_Flags & Flags.BindingsForEachActionInitialized) != 0;
set
{
if (value)
m_Flags |= Flags.BindingsForEachActionInitialized;
else
m_Flags &= ~Flags.BindingsForEachActionInitialized;
}
}
[Flags]
private enum Flags
{
NeedToResolveBindings = 1 << 0,
BindingResolutionNeedsFullReResolve = 1 << 1,
ControlsForEachActionInitialized = 1 << 2,
BindingsForEachActionInitialized = 1 << 3,
}
internal static int s_DeferBindingResolution;
internal struct DeviceArray
{
private bool m_HaveValue;
private int m_DeviceCount;
private InputDevice[] m_DeviceArray; // May have extra capacity; we won't let go once allocated.
public int IndexOf(InputDevice device)
{
return m_DeviceArray.IndexOfReference(device, m_DeviceCount);
}
public bool Remove(InputDevice device)
{
var index = IndexOf(device);
if (index < 0)
return false;
m_DeviceArray.EraseAtWithCapacity(ref m_DeviceCount, index);
return true;
}
public ReadOnlyArray<InputDevice>? Get()
{
if (!m_HaveValue)
return null;
return new ReadOnlyArray<InputDevice>(m_DeviceArray, 0, m_DeviceCount);
}
public bool Set(ReadOnlyArray<InputDevice>? devices)
{
if (!devices.HasValue)
{
if (!m_HaveValue)
return false; // No change.
if (m_DeviceCount > 0)
Array.Clear(m_DeviceArray, 0, m_DeviceCount);
m_DeviceCount = 0;
m_HaveValue = false;
}
else
{
// See if the array actually changes content. Avoids re-resolving when there
// is no need to.
var array = devices.Value;
if (m_HaveValue && array.Count == m_DeviceCount && array.HaveEqualReferences(m_DeviceArray, m_DeviceCount))
return false;
if (m_DeviceCount > 0)
m_DeviceArray.Clear(ref m_DeviceCount);
m_HaveValue = true;
m_DeviceCount = 0;
ArrayHelpers.AppendListWithCapacity(ref m_DeviceArray, ref m_DeviceCount, array);
}
return true;
}
}
/// <summary>
/// Return the list of bindings for just the given actions.
/// </summary>
/// <param name="action"></param>
/// <returns></returns>
/// <remarks>
/// The bindings for a single action may be contiguous in <see cref="m_Bindings"/> or may be scattered
/// around. We don't keep persistent storage for these and instead set up a transient
/// array if and when bindings are queried directly from an action. In the simple case,
/// we don't even need a separate array but rather just need to find out which slice in the
/// bindings array corresponds to which action.
///
/// NOTE: Bindings for individual actions aren't queried by the system itself during normal
/// runtime operation so we only do this for cases where the user asks for the
/// information. If the user never asks for bindings or controls on a per-action basis,
/// none of this data gets initialized.
/// </remarks>
internal ReadOnlyArray<InputBinding> GetBindingsForSingleAction(InputAction action)
{
Debug.Assert(action != null, "Action cannot be null");
Debug.Assert(action.m_ActionMap == this, "Action must be in action map");
Debug.Assert(!action.isSingletonAction || m_SingletonAction == action, "Action is not a singleton action");
// See if we need to refresh.
if (!bindingsForEachActionInitialized)
SetUpPerActionControlAndBindingArrays();
return new ReadOnlyArray<InputBinding>(m_BindingsForEachAction, action.m_BindingsStartIndex,
action.m_BindingsCount);
}
internal ReadOnlyArray<InputControl> GetControlsForSingleAction(InputAction action)
{
Debug.Assert(m_State != null);
Debug.Assert(m_MapIndexInState != InputActionState.kInvalidIndex);
Debug.Assert(m_Actions != null);
Debug.Assert(action != null);
Debug.Assert(action.m_ActionMap == this);
Debug.Assert(!action.isSingletonAction || m_SingletonAction == action);
if (!controlsForEachActionInitialized)
SetUpPerActionControlAndBindingArrays();
return new ReadOnlyArray<InputControl>(m_ControlsForEachAction, action.m_ControlStartIndex,
action.m_ControlCount);
}
/// <summary>
/// Collect data from <see cref="m_Bindings"/> and <see cref="m_Actions"/> such that we can
/// we can cleanly expose it from <see cref="InputAction.bindings"/> and <see cref="InputAction.controls"/>.
/// </summary>
/// <remarks>
/// We set up per-action caches the first time their information is requested. Internally, we do not
/// use those arrays and thus they will not get set up by default.
///
/// Note that it is important to allow to call this method at a point where we have not resolved
/// controls yet (i.e. <see cref="m_State"/> is <c>null</c>). Otherwise, using <see cref="InputAction.bindings"/>
/// may trigger a control resolution which would be surprising.
/// </remarks>
private unsafe void SetUpPerActionControlAndBindingArrays()
{
// Handle case where we don't have any bindings.
if (m_Bindings == null)
{
m_ControlsForEachAction = null;
m_BindingsForEachAction = null;
controlsForEachActionInitialized = true;
bindingsForEachActionInitialized = true;
return;
}
if (m_SingletonAction != null)
{
// Dead simple case: map is internally owned by action. The entire
// list of bindings is specific to the action.
Debug.Assert(m_Bindings == m_SingletonAction.m_SingletonActionBindings,
"For singleton action, bindings array must match that of the action");
m_BindingsForEachAction = m_Bindings;
m_ControlsForEachAction = m_State?.controls;
m_SingletonAction.m_BindingsStartIndex = 0;
m_SingletonAction.m_BindingsCount = m_Bindings.Length;
m_SingletonAction.m_ControlStartIndex = 0;
m_SingletonAction.m_ControlCount = m_State?.totalControlCount ?? 0;
// Only complication, InputActionState allows a control to appear multiple times
// on the same action and InputAction.controls[] doesn't.
if (m_ControlsForEachAction.HaveDuplicateReferences(0, m_SingletonAction.m_ControlCount))
{
var numControls = 0;
var controls = new InputControl[m_SingletonAction.m_ControlCount];
for (var i = 0; i < m_SingletonAction.m_ControlCount; ++i)
{
if (!controls.ContainsReference(m_ControlsForEachAction[i]))
{
controls[numControls] = m_ControlsForEachAction[i];
++numControls;
}
}
m_ControlsForEachAction = controls;
m_SingletonAction.m_ControlCount = numControls;
}
}
else
{
////REVIEW: now that we have per-action binding information in UnmanagedMemory, this here can likely be done more easily
// Go through all bindings and slice them out to individual actions.
Debug.Assert(m_Actions != null, "Action map is associated with action but action map has no array of actions"); // Action isn't a singleton so this has to be true.
var mapIndices = m_State?.FetchMapIndices(this) ?? new InputActionState.ActionMapIndices();
// Reset state on each action. Important if we have actions that are no longer
// referred to by bindings.
for (var i = 0; i < m_Actions.Length; ++i)
{
var action = m_Actions[i];
action.m_BindingsCount = 0;
action.m_BindingsStartIndex = -1;
action.m_ControlCount = 0;
action.m_ControlStartIndex = -1;
}
// Count bindings on each action.
// After this loop, we can have one of two situations:
// 1) The bindings for any action X start at some index N and occupy the next m_BindingsCount slots.
// 2) The bindings for some or all actions are scattered across non-contiguous chunks of the array.
var bindingCount = m_Bindings.Length;
for (var i = 0; i < bindingCount; ++i)
{
var action = FindAction(m_Bindings[i].action);
if (action != null)
++action.m_BindingsCount;
}
// Collect the bindings and controls and bundle them into chunks.
var newBindingsArrayIndex = 0;
if (m_State != null && (m_ControlsForEachAction == null || m_ControlsForEachAction.Length != mapIndices.controlCount))
{
if (mapIndices.controlCount == 0)
m_ControlsForEachAction = null;
else
m_ControlsForEachAction = new InputControl[mapIndices.controlCount];
}
InputBinding[] newBindingsArray = null;
var currentControlIndex = 0;
for (var currentBindingIndex = 0; currentBindingIndex < m_Bindings.Length;)
{
var currentAction = FindAction(m_Bindings[currentBindingIndex].action);
if (currentAction == null || currentAction.m_BindingsStartIndex != -1)
{
// Skip bindings not targeting an action or bindings we have already processed
// (when gathering bindings for a single actions scattered across the array we may have
// skipping ahead).
++currentBindingIndex;
continue;
}
// Bindings for current action start at current index.
currentAction.m_BindingsStartIndex = newBindingsArray != null
? newBindingsArrayIndex
: currentBindingIndex;
currentAction.m_ControlStartIndex = currentControlIndex;
// Collect all bindings for the action. As part of that, also copy the controls
// for each binding over to m_ControlsForEachAction.
var bindingCountForCurrentAction = currentAction.m_BindingsCount;
Debug.Assert(bindingCountForCurrentAction > 0);
var sourceBindingToCopy = currentBindingIndex;
for (var i = 0; i < bindingCountForCurrentAction; ++i)
{
// See if we've come across a binding that doesn't belong to our currently looked at action.
if (FindAction(m_Bindings[sourceBindingToCopy].action) != currentAction)
{
// Yes, we have. Means the bindings for our actions are scattered in m_Bindings and
// we need to collect them.
// If this is the first action that has its bindings scattered around, switch to
// having a separate bindings array and copy whatever bindings we already processed
// over to it.
if (newBindingsArray == null)
{
newBindingsArray = new InputBinding[m_Bindings.Length];
newBindingsArrayIndex = sourceBindingToCopy;
Array.Copy(m_Bindings, 0, newBindingsArray, 0, sourceBindingToCopy);
}
// Find the next binding belonging to the action. We've counted bindings for
// the action in the previous pass so we know exactly how many bindings we
// can expect.
do
{
++sourceBindingToCopy;
Debug.Assert(sourceBindingToCopy < m_Bindings.Length);
}
while (FindAction(m_Bindings[sourceBindingToCopy].action) != currentAction);
}
else if (currentBindingIndex == sourceBindingToCopy)
++currentBindingIndex;
// Copy binding over to new bindings array, if need be.
if (newBindingsArray != null)
newBindingsArray[newBindingsArrayIndex++] = m_Bindings[sourceBindingToCopy];
// Copy controls for binding, if we have resolved controls already and if the
// binding isn't a composite (they refer to the controls from all of their part bindings
// but do not really resolve to controls themselves).
if (m_State != null && !m_Bindings[sourceBindingToCopy].isComposite)
{
ref var bindingState = ref m_State.bindingStates[mapIndices.bindingStartIndex + sourceBindingToCopy];
var controlCountForBinding = bindingState.controlCount;
if (controlCountForBinding > 0)
{
// Internally, we allow several bindings on a given action to resolve to the same control.
// Externally, however, InputAction.controls[] is a set and thus should not contain duplicates.
// So, instead of just doing a straight copy here, we copy controls one by one.
var controlStartIndexForBinding = bindingState.controlStartIndex;
for (var n = 0; n < controlCountForBinding; ++n)
{
var control = m_State.controls[controlStartIndexForBinding + n];
if (!m_ControlsForEachAction.ContainsReference(currentAction.m_ControlStartIndex,
currentAction.m_ControlCount, control))
{
m_ControlsForEachAction[currentControlIndex] = control;
++currentControlIndex;
++currentAction.m_ControlCount;
}
}
}
}
++sourceBindingToCopy;
}
}
if (newBindingsArray == null)
{
// Bindings are already clustered by action in m_Bindings
// so we can just stick to having one array only.
m_BindingsForEachAction = m_Bindings;
}
else
{
// Bindings are not clustered by action in m_Bindings so
// we had to allocate a separate array where the bindings are sorted.
m_BindingsForEachAction = newBindingsArray;
}
}
controlsForEachActionInitialized = true;
bindingsForEachActionInitialized = true;
}
internal void OnWantToChangeSetup()
{
if (asset != null)
{
foreach (var assetMap in asset.actionMaps)
if (assetMap.enabled)
throw new InvalidOperationException(
$"Cannot add, remove, or change elements of InputActionAsset {asset} while one or more of its actions are enabled");
}
else if (enabled)
{
throw new InvalidOperationException(
$"Cannot add, remove, or change elements of InputActionMap {this} while one or more of its actions are enabled");
}
}
internal void OnSetupChanged()
{
if (m_Asset != null)
{
m_Asset.MarkAsDirty();
foreach (var map in m_Asset.actionMaps)
map.m_State = default;
}
else
{
m_State = default;
}
ClearCachedActionData();
LazyResolveBindings(fullResolve: true);
}
internal void OnBindingModified()
{
ClearCachedActionData();
LazyResolveBindings(fullResolve: true);
}
////TODO: re-use allocations such that only grow the arrays and hit zero GC allocs when we already have enough memory
internal void ClearCachedActionData(bool onlyControls = false)
{
if (!onlyControls)
{
bindingsForEachActionInitialized = false;
m_BindingsForEachAction = default;
m_ActionIndexByNameOrId = default;
}
controlsForEachActionInitialized = false;
m_ControlsForEachAction = default;
}
internal void GenerateId()
{
m_Id = Guid.NewGuid().ToString();
}
/// <summary>
/// Resolve bindings right away if we have to. Otherwise defer it to when we next need
/// the bindings.
/// </summary>
internal bool LazyResolveBindings(bool fullResolve)
{
// Clear cached controls for actions. Don't need to necessarily clear m_BindingsForEachAction.
m_ControlsForEachAction = null;
controlsForEachActionInitialized = false;
// If we haven't had to resolve bindings yet, we can wait until when we
// actually have to.
if (m_State == null)
return false;
// We used to defer binding resolution here in case the map had no enabled actions. That behavior,
// however, leads to rather unpredictable BoundControlsChanged notifications (especially for
// rebinding UIs), so now we just always re-resolve anything that ever had an InputActionState
// created. Unfortunately, this can lead to some unnecessary re-resolving.
needToResolveBindings = true;
bindingResolutionNeedsFullReResolve |= fullResolve;
if (s_DeferBindingResolution > 0)
return false;
// Have to do it straight away.
ResolveBindings();
return true;
}
internal bool ResolveBindingsIfNecessary()
{
// NOTE: We only check locally for the current map here. When there are multiple maps
// in an asset, we may have maps that require re-resolution while others don't.
// We only resolve if a map is used that needs resolution to happen. Note that
// this will still resolve bindings for *all* maps in the asset.
if (m_State == null || needToResolveBindings)
{
if (m_State != null && m_State.isProcessingControlStateChange)
{
Debug.Assert(s_DeferBindingResolution > 0, "While processing control state changes, binding resolution should be suppressed");
return false;
}
ResolveBindings();
return true;
}
return false;
}
// We have three different starting scenarios for binding resolution:
//
// (1) From scratch.
// There is no InputActionState and we resolve everything from a completely fresh start. This happens when
// we either have not resolved bindings at all yet or when something touches the action setup (e.g. adds
// or removes an action or binding) and we thus throw away the existing InputActionState.
// NOTE:
// * Actions can be in enabled state.
// * No action can be in an in-progress state (since binding resolution is needed for actions to
// be processed, no action processing can have happened yet)
//
// (2) From an existing InputActionState when a device has been added or removed.
// There is an InputActionState and the action setup (maps, actions, bindings, binding masks) has not changed. However,
// the set of devices usable with the action has changed (either the per-asset/map device list or the global
// list, if we're using it).
// NOTE:
// * Actions can be in enabled state.
// * Actions *can* be in an in-progress state.
// IF the control currently driving the action is on a device that is no longer usable with the action, the
// action is CANCELLED. OTHERWISE, the action will be left as is and keep being in progress from its active control.
// * A device CONFIGURATION change will NOT go down this path (e.g. changing the Keyboard layout). This is because
// any binding path involving display names may now resolve to different controls -- which may impact currently
// active controls of in-progress actions.
// * A change in the USAGES of a device will NOT go down this path either. This is for the same reason -- i.e. an
// active control may no longer match the binding path it matched before. If, for example, we switch the left-hand
// and right-hand roles of two controllers, will will go down path (3) and not (2).
//
// (3) From an existing InputActionState on any other change not covered before.
// There is an InputActionState and the action setup (maps, actions, bindings, binding masks) may have changed. Also,
// any change may have happened in the set of usable devices and targeted controls. This includes binding overrides
// having been applied.
// NOTE:
// * Action can be in enabled state.
// * Actions *can* be in an in-progress state.
// Any such action will be CANCELLED as part of the re-resolution process.
//
// Both (1) and (3) are considered a "full resolve". (2) is not.
/// <summary>
/// Resolve all bindings to their controls and also add any action interactions
/// from the bindings.
/// </summary>
/// <remarks>
/// This is the core method of action binding resolution. All binding resolution goes through here.
///
/// The best way is for binding resolution to happen once for each action map at the beginning of the game
/// and to then enable and disable the maps as needed. However, the system will also re-resolve
/// bindings if the control setup in the system changes (i.e. if devices are added or removed
/// or if layouts in the system are changed).
///
/// Bindings can be re-resolved while actions are enabled. This happens changing device or binding
/// masks on action maps or assets (<see cref="devices"/>, <see cref="bindingMask"/>, <see cref="InputAction.bindingMask"/>,
/// <see cref="InputActionAsset.devices"/>, <see cref="InputActionAsset.bindingMask"/>). Doing so will
/// not affect the enable state of actions and, as much as possible, will try to take current
/// action states across.
/// </remarks>
internal void ResolveBindings()
{
// Make sure that if we trigger callbacks as part of disabling and re-enabling actions,
// we don't trigger a re-resolve while we're already resolving bindings.
using (InputActionRebindingExtensions.DeferBindingResolution())
{
// In case we have actions that are currently enabled, we temporarily retain the
// UnmanagedMemory of our InputActionState so that we can sync action states after
// we have re-resolved bindings.
var oldMemory = new InputActionState.UnmanagedMemory();
try
{
OneOrMore<InputActionMap, ReadOnlyArray<InputActionMap>> actionMaps;
// Start resolving.
var resolver = new InputBindingResolver();
// If we're part of an asset, we share state and thus binding resolution with
// all maps in the asset.
var needFullResolve = m_State == null;
if (m_Asset != null)
{
actionMaps = m_Asset.actionMaps;
Debug.Assert(actionMaps.Count > 0, "Asset referred to by action map does not have action maps");
// If there's a binding mask set on the asset, apply it.
resolver.bindingMask = m_Asset.m_BindingMask;
foreach (var map in actionMaps)
{
needFullResolve |= map.bindingResolutionNeedsFullReResolve;
map.needToResolveBindings = false;
map.bindingResolutionNeedsFullReResolve = false;
map.controlsForEachActionInitialized = false;
}
}
else
{
// Standalone action map (possibly a hidden one created for a singleton action).
// Gets its own private state.
actionMaps = this;
needFullResolve |= bindingResolutionNeedsFullReResolve;
needToResolveBindings = false;
bindingResolutionNeedsFullReResolve = false;
controlsForEachActionInitialized = false;
}
// If we already have a state, re-use the arrays we have already allocated.
// NOTE: We will install the arrays on the very same InputActionState instance below. In the
// case where we didn't have to grow the arrays, we should end up with zero GC allocations
// here.
var hasEnabledActions = false;
InputControlList<InputControl> activeControls = default;
if (m_State != null)
{
// Grab a clone of the current memory. We clone because disabling all the actions
// in the map will alter the memory state and we want the state before we start
// touching it.
oldMemory = m_State.memory.Clone();
m_State.PrepareForBindingReResolution(needFullResolve, ref activeControls, ref hasEnabledActions);
// Reuse the arrays we have so that we can avoid managed memory allocations, if possible.
resolver.StartWithPreviousResolve(m_State, isFullResolve: needFullResolve);
// Throw away old memory.
m_State.memory.Dispose();
}
// Resolve all maps in the asset.
foreach (var map in actionMaps)
resolver.AddActionMap(map);
// Install state.
if (m_State == null)
{
m_State = new InputActionState();
m_State.Initialize(resolver);
}
else
{
m_State.ClaimDataFrom(resolver);
}
if (m_Asset != null)
{
foreach (var map in actionMaps)
map.m_State = m_State;
m_Asset.m_SharedStateForAllMaps = m_State;
}
m_State.FinishBindingResolution(hasEnabledActions, oldMemory, activeControls, isFullResolve: needFullResolve);
}
finally
{
oldMemory.Dispose();
}
}
}
/// <inheritdoc/>
public int FindBinding(InputBinding mask, out InputAction action)
{
var index = FindBindingRelativeToMap(mask);
if (index == -1)
{
action = null;
return -1;
}
action = m_SingletonAction ?? FindAction(bindings[index].action);
return action.BindingIndexOnMapToBindingIndexOnAction(index);
}
/// <summary>
/// Find the index of the first binding that matches the given mask.
/// </summary>
/// <param name="mask">A binding. See <see cref="InputBinding.Matches"/> for details.</param>
/// <returns>Index into <see cref="InputAction.bindings"/> of <paramref name="action"/> of the binding
/// that matches <paramref name="mask"/>. If no binding matches, will return -1.</returns>
/// <remarks>
/// For details about matching bindings by a mask, see <see cref="InputBinding.Matches"/>.
///
/// <example>
/// <code>
/// var index = playerInput.actions.FindBindingRelativeToMap(
/// new InputBinding { path = "<Gamepad>/buttonSouth" });
///
/// if (index != -1)
/// Debug.Log($"Found binding with index {index}");
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="InputBinding.Matches"/>
/// <seealso cref="bindings"/>
internal int FindBindingRelativeToMap(InputBinding mask)
{
var bindings = m_Bindings;
var bindingsCount = bindings.LengthSafe();
for (var i = 0; i < bindingsCount; ++i)
{
ref var binding = ref bindings[i];
if (mask.Matches(ref binding))
return i;
}
return -1;
}
#region Serialization
////REVIEW: when GetParameter/SetParameter is coming, should these also be considered part of binding override data?
[Serializable]
internal struct BindingOverrideListJson
{
public List<BindingOverrideJson> bindings;
}
[Serializable]
internal struct BindingOverrideJson
{
// We save both the "map/action" path of the action as well as the binding ID.
// This gives us two avenues into finding our target binding to apply the override
// to.
public string action;
public string id;
public string path;
public string interactions;
public string processors;
public static BindingOverrideJson FromBinding(InputBinding binding, string actionName)
{
return new BindingOverrideJson
{
action = actionName,
id = binding.id.ToString() ,
path = binding.overridePath ?? "null",
interactions = binding.overrideInteractions ?? "null",
processors = binding.overrideProcessors ?? "null"
};
}
public static BindingOverrideJson FromBinding(InputBinding binding)
{
return FromBinding(binding, binding.action);
}
public static InputBinding ToBinding(BindingOverrideJson bindingOverride)
{
return new InputBinding
{
overridePath = bindingOverride.path != "null" ? bindingOverride.path : null,
overrideInteractions = bindingOverride.interactions != "null" ? bindingOverride.interactions : null,
overrideProcessors = bindingOverride.processors != "null" ? bindingOverride.processors : null,
};
}
}
// Action maps are serialized in two different ways. For storage as imported assets in Unity's Library/ folder
// and in player data and asset bundles as well as for surviving domain reloads, InputActionMaps are serialized
// directly by Unity. For storage as source data in user projects, InputActionMaps are serialized indirectly
// as JSON by setting up a separate set of structs that are then read and written using Unity's JSON serializer.
[Serializable]
internal struct BindingJson
{
public string name;
public string id;
public string path;
public string interactions;
public string processors;
public string groups;
public string action;
public bool isComposite;
public bool isPartOfComposite;
public InputBinding ToBinding()
{
return new InputBinding
{
name = string.IsNullOrEmpty(name) ? null : name,
m_Id = string.IsNullOrEmpty(id) ? null : id,
path = path,
action = string.IsNullOrEmpty(action) ? null : action,
interactions = string.IsNullOrEmpty(interactions) ? null : interactions,
processors = string.IsNullOrEmpty(processors) ? null : processors,
groups = string.IsNullOrEmpty(groups) ? null : groups,
isComposite = isComposite,
isPartOfComposite = isPartOfComposite,
};
}
public static BindingJson FromBinding(ref InputBinding binding)
{
return new BindingJson
{
name = binding.name,
id = binding.m_Id,
path = binding.path,
action = binding.action,
interactions = binding.interactions,
processors = binding.processors,
groups = binding.groups,
isComposite = binding.isComposite,
isPartOfComposite = binding.isPartOfComposite,
};
}
}
// Backwards-compatible read format.
[Serializable]
internal struct ReadActionJson
{
public string name;
public string type;
public string id;
public string expectedControlType;
public string expectedControlLayout;
public string processors;
public string interactions;
public bool passThrough;
public bool initialStateCheck;
// Bindings can either be on the action itself (in which case the action name
// for each binding is implied) or listed separately in the action file.
public BindingJson[] bindings;
public InputAction ToAction(string actionName = null)
{
// FormerlySerializedAs doesn't seem to work as expected so manually
// handling the rename here.
if (!string.IsNullOrEmpty(expectedControlLayout))
expectedControlType = expectedControlLayout;
// Determine type.
InputActionType actionType = default;
if (!string.IsNullOrEmpty(type))
actionType = (InputActionType)Enum.Parse(typeof(InputActionType), type, true);
else
{
// Old format that doesn't have type. Try to infer from settings.
if (passThrough)
actionType = InputActionType.PassThrough;
else if (initialStateCheck)
actionType = InputActionType.Value;
else if (!string.IsNullOrEmpty(expectedControlType) &&
(expectedControlType == "Button" || expectedControlType == "Key"))
actionType = InputActionType.Button;
}
return new InputAction(actionName ?? name, actionType)
{
m_Id = string.IsNullOrEmpty(id) ? null : id,
m_ExpectedControlType = !string.IsNullOrEmpty(expectedControlType)
? expectedControlType
: null,
m_Processors = processors,
m_Interactions = interactions,
wantsInitialStateCheck = initialStateCheck,
};
}
}
[Serializable]
internal struct WriteActionJson
{
public string name;
public string type;
public string id;
public string expectedControlType;
public string processors;
public string interactions;
public bool initialStateCheck;
public static WriteActionJson FromAction(InputAction action)
{
return new WriteActionJson
{
name = action.m_Name,
type = action.m_Type.ToString(),
id = action.m_Id,
expectedControlType = action.m_ExpectedControlType,
processors = action.processors,
interactions = action.interactions,
initialStateCheck = action.wantsInitialStateCheck,
};
}
}
[Serializable]
internal struct ReadMapJson
{
public string name;
public string id;
public ReadActionJson[] actions;
public BindingJson[] bindings;
}
[Serializable]
internal struct WriteMapJson
{
public string name;
public string id;
public WriteActionJson[] actions;
public BindingJson[] bindings;
public static WriteMapJson FromMap(InputActionMap map)
{
WriteActionJson[] jsonActions = null;
BindingJson[] jsonBindings = null;
var actions = map.m_Actions;
if (actions != null)
{
var actionCount = actions.Length;
jsonActions = new WriteActionJson[actionCount];
for (var i = 0; i < actionCount; ++i)
jsonActions[i] = WriteActionJson.FromAction(actions[i]);
}
var bindings = map.m_Bindings;
if (bindings != null)
{
var bindingCount = bindings.Length;
jsonBindings = new BindingJson[bindingCount];
for (var i = 0; i < bindingCount; ++i)
jsonBindings[i] = BindingJson.FromBinding(ref bindings[i]);
}
return new WriteMapJson
{
name = map.name,
id = map.id.ToString(),
actions = jsonActions,
bindings = jsonBindings,
};
}
}
// We write JSON in a less flexible format than we allow to be read. JSON files
// we read can just be flat lists of actions with the map name being contained in
// the action name and containing their own bindings directly. JSON files we write
// go map by map and separate bindings and actions.
[Serializable]
internal struct WriteFileJson
{
public WriteMapJson[] maps;
public static WriteFileJson FromMap(InputActionMap map)
{
return new WriteFileJson
{
maps = new[] {WriteMapJson.FromMap(map)}
};
}
public static WriteFileJson FromMaps(IEnumerable<InputActionMap> maps)
{
var mapCount = maps.Count();
if (mapCount == 0)
return new WriteFileJson();
var mapsJson = new WriteMapJson[mapCount];
var index = 0;
foreach (var map in maps)
mapsJson[index++] = WriteMapJson.FromMap(map);
return new WriteFileJson {maps = mapsJson};
}
}
// A JSON representation of one or more sets of actions.
// Contains a list of actions. Each action may specify the set it belongs to
// as part of its name ("set/action").
[Serializable]
internal struct ReadFileJson
{
public ReadActionJson[] actions;
public ReadMapJson[] maps;
public InputActionMap[] ToMaps()
{
var mapList = new List<InputActionMap>();
var actionLists = new List<List<InputAction>>();
var bindingLists = new List<List<InputBinding>>();
// Process actions listed at toplevel.
var actionCount = actions?.Length ?? 0;
for (var i = 0; i < actionCount; ++i)
{
var jsonAction = actions[i];
if (string.IsNullOrEmpty(jsonAction.name))
throw new InvalidOperationException($"Action number {i + 1} has no name");
////REVIEW: make sure all action names are unique?
// Determine name of action map.
string mapName = null;
var actionName = jsonAction.name;
var indexOfFirstSlash = actionName.IndexOf('/');
if (indexOfFirstSlash != -1)
{
mapName = actionName.Substring(0, indexOfFirstSlash);
actionName = actionName.Substring(indexOfFirstSlash + 1);
if (string.IsNullOrEmpty(actionName))
throw new InvalidOperationException(
$"Invalid action name '{jsonAction.name}' (missing action name after '/')");
}
// Try to find existing map.
InputActionMap map = null;
var mapIndex = 0;
for (; mapIndex < mapList.Count; ++mapIndex)
{
if (string.Compare(mapList[mapIndex].name, mapName, StringComparison.InvariantCultureIgnoreCase) == 0)
{
map = mapList[mapIndex];
break;
}
}
// Create new map if it's the first action in the map.
if (map == null)
{
// NOTE: No map IDs supported on this path.
map = new InputActionMap(mapName);
mapIndex = mapList.Count;
mapList.Add(map);
actionLists.Add(new List<InputAction>());
bindingLists.Add(new List<InputBinding>());
}
// Create action.
var action = jsonAction.ToAction(actionName);
actionLists[mapIndex].Add(action);
// Add bindings.
if (jsonAction.bindings != null)
{
var bindingsForMap = bindingLists[mapIndex];
for (var n = 0; n < jsonAction.bindings.Length; ++n)
{
var jsonBinding = jsonAction.bindings[n];
var binding = jsonBinding.ToBinding();
binding.action = action.m_Name;
bindingsForMap.Add(binding);
}
}
}
// Process maps.
var mapCount = maps?.Length ?? 0;
for (var i = 0; i < mapCount; ++i)
{
var jsonMap = maps[i];
var mapName = jsonMap.name;
if (string.IsNullOrEmpty(mapName))
throw new InvalidOperationException($"Map number {i + 1} has no name");
// Try to find existing map.
InputActionMap map = null;
var mapIndex = 0;
for (; mapIndex < mapList.Count; ++mapIndex)
{
if (string.Compare(mapList[mapIndex].name, mapName, StringComparison.InvariantCultureIgnoreCase) == 0)
{
map = mapList[mapIndex];
break;
}
}
// Create new map if we haven't seen it before.
if (map == null)
{
map = new InputActionMap(mapName)
{
m_Id = string.IsNullOrEmpty(jsonMap.id) ? null : jsonMap.id
};
mapIndex = mapList.Count;
mapList.Add(map);
actionLists.Add(new List<InputAction>());
bindingLists.Add(new List<InputBinding>());
}
// Process actions in map.
var actionCountInMap = jsonMap.actions?.Length ?? 0;
for (var n = 0; n < actionCountInMap; ++n)
{
var jsonAction = jsonMap.actions[n];
if (string.IsNullOrEmpty(jsonAction.name))
throw new InvalidOperationException($"Action number {i + 1} in map '{mapName}' has no name");
// Create action.
var action = jsonAction.ToAction();
actionLists[mapIndex].Add(action);
// Add bindings.
if (jsonAction.bindings != null)
{
var bindingList = bindingLists[mapIndex];
for (var k = 0; k < jsonAction.bindings.Length; ++k)
{
var jsonBinding = jsonAction.bindings[k];
var binding = jsonBinding.ToBinding();
binding.action = action.m_Name;
bindingList.Add(binding);
}
}
}
// Process bindings in map.
var bindingCountInMap = jsonMap.bindings?.Length ?? 0;
var bindingsForMap = bindingLists[mapIndex];
for (var n = 0; n < bindingCountInMap; ++n)
{
var jsonBinding = jsonMap.bindings[n];
var binding = jsonBinding.ToBinding();
bindingsForMap.Add(binding);
}
}
// Finalize arrays.
for (var i = 0; i < mapList.Count; ++i)
{
var map = mapList[i];
var actionArray = actionLists[i].ToArray();
var bindingArray = bindingLists[i].ToArray();
map.m_Actions = actionArray;
map.m_Bindings = bindingArray;
for (var n = 0; n < actionArray.Length; ++n)
{
var action = actionArray[n];
action.m_ActionMap = map;
}
}
return mapList.ToArray();
}
}
/// <summary>
/// Load one or more action maps from JSON.
/// </summary>
/// <param name="json">JSON representation of the action maps. Can be empty.</param>
/// <exception cref="ArgumentNullException"><paramref name="json"/> is <c>null</c>.</exception>
/// <returns>The array of action maps (may be empty) read from the given JSON string. Will not be
/// <c>null</c>.</returns>
/// <remarks>
/// Note that the format used by this method is different than what you
/// get if you call <c>JsonUtility.ToJson</c> on an InputActionMap instance. In other
/// words, the JSON format is not identical to the Unity serialized object representation
/// of the asset.
///
/// <example>
/// <code>
/// var maps = InputActionMap.FromJson(@"
/// {
/// ""maps"" : [
/// {
/// ""name"" : ""Gameplay"",
/// ""actions"" : [
/// { ""name"" : ""fire"", ""type"" : ""button"" }
/// ],
/// ""bindings"" : [
/// { ""path"" : ""<Gamepad>/leftTrigger"", ""action"" : ""fire"" }
/// ],
/// }
/// ]
/// }
/// ");
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="InputActionAsset.FromJson"/>
/// <seealso cref="ToJson(IEnumerable{InputActionMap})"/>
public static InputActionMap[] FromJson(string json)
{
if (json == null)
throw new ArgumentNullException(nameof(json));
var fileJson = JsonUtility.FromJson<ReadFileJson>(json);
return fileJson.ToMaps();
}
/// <summary>
/// Convert a set of action maps to JSON format.
/// </summary>
/// <param name="maps">List of action maps to serialize.</param>
/// <exception cref="ArgumentNullException"><paramref name="maps"/> is <c>null</c>.</exception>
/// <returns>JSON representation of the given action maps.</returns>
/// <remarks>
/// The result of this method can be loaded with <see cref="FromJson"/>.
///
/// Note that the format used by this method is different than what you
/// get if you call <c>JsonUtility.ToJson</c> on an InputActionMap instance. In other
/// words, the JSON format is not identical to the Unity serialized object representation
/// of the asset.
/// </remarks>
/// <seealso cref="FromJson"/>
public static string ToJson(IEnumerable<InputActionMap> maps)
{
if (maps == null)
throw new ArgumentNullException(nameof(maps));
var fileJson = WriteFileJson.FromMaps(maps);
return JsonUtility.ToJson(fileJson, true);
}
/// <summary>
/// Convert the action map to JSON format.
/// </summary>
/// <returns>A JSON representation of the action map.</returns>
/// <remarks>
/// The result of this method can be loaded with <see cref="FromJson"/>.
///
/// Note that the format used by this method is different than what you
/// get if you call <c>JsonUtility.ToJson</c> on an InputActionMap instance. In other
/// words, the JSON format is not identical to the Unity serialized object representation
/// of the asset.
/// </remarks>
public string ToJson()
{
var fileJson = WriteFileJson.FromMap(this);
return JsonUtility.ToJson(fileJson, true);
}
/// <summary>
/// Called by Unity before the action map is serialized using Unity's
/// serialization system.
/// </summary>
public void OnBeforeSerialize()
{
}
/// <summary>
/// Called by Unity after the action map has been deserialized using Unity's
/// serialization system.
/// </summary>
public void OnAfterDeserialize()
{
m_State = null;
m_MapIndexInState = InputActionState.kInvalidIndex;
// Restore references of actions linking back to us.
if (m_Actions != null)
{
var actionCount = m_Actions.Length;
for (var i = 0; i < actionCount; ++i)
m_Actions[i].m_ActionMap = this;
}
// Make sure we don't retain any cached per-action data when using serialization
// to doctor around in action map configurations in the editor.
ClearCachedActionData();
ClearActionLookupTable();
}
#endregion
}
}
|