File size: 101,017 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 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Text;
using Unity.Collections;
using Unity.Collections.LowLevel.Unsafe;
using UnityEngine.InputSystem.Controls;
using UnityEngine.InputSystem.LowLevel;
using UnityEngine.InputSystem.Utilities;
////REVIEW: some of the stuff here is really low-level; should we move it into a separate static class inside of .LowLevel?
namespace UnityEngine.InputSystem
{
/// <summary>
/// Various extension methods for <see cref="InputControl"/>. Mostly low-level routines.
/// </summary>
public static class InputControlExtensions
{
/// <summary>
/// Find a control of the given type in control hierarchy of <paramref name="control"/>.
/// </summary>
/// <param name="control">Control whose parents to inspect.</param>
/// <typeparam name="TControl">Type of control to look for. Actual control type can be
/// subtype of this.</typeparam>
/// <remarks>The found control of type <typeparamref name="TControl"/> which may be either
/// <paramref name="control"/> itself or one of its parents. If no such control was found,
/// returns <c>null</c>.</remarks>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c>.</exception>
public static TControl FindInParentChain<TControl>(this InputControl control)
where TControl : InputControl
{
if (control == null)
throw new ArgumentNullException(nameof(control));
for (var parent = control; parent != null; parent = parent.parent)
if (parent is TControl parentOfType)
return parentOfType;
return null;
}
////REVIEW: This ist too high up in the class hierarchy; can be applied to any kind of control without it being readily apparent what exactly it means
/// <summary>
/// Check whether the given control is considered pressed according to the button press threshold.
/// </summary>
/// <param name="control">Control to check.</param>
/// <param name="buttonPressPoint">Optional custom button press point. If not supplied, <see cref="InputSettings.defaultButtonPressPoint"/>
/// is used.</param>
/// <returns>True if the actuation of the given control is high enough for it to be considered pressed.</returns>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c>.</exception>
/// <remarks>
/// This method checks the actuation level of the control as <see cref="IsActuated"/> does. For <see cref="Controls.ButtonControl"/>s
/// and other <c>float</c> value controls, this will effectively check whether the float value of the control exceeds the button
/// point threshold. Note that if the control is an axis that can be both positive and negative, the press threshold works in
/// both directions, i.e. it can be crossed both in the positive direction and in the negative direction.
/// </remarks>
/// <seealso cref="IsActuated"/>
/// <seealso cref="InputSettings.defaultButtonPressPoint"/>
/// <seealso cref="InputSystem.settings"/>
public static bool IsPressed(this InputControl control, float buttonPressPoint = 0)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (Mathf.Approximately(0, buttonPressPoint))
{
if (control is ButtonControl button)
buttonPressPoint = button.pressPointOrDefault;
else
buttonPressPoint = ButtonControl.s_GlobalDefaultButtonPressPoint;
}
return control.IsActuated(buttonPressPoint);
}
/// <summary>
/// Return true if the given control is actuated.
/// </summary>
/// <param name="control"></param>
/// <param name="threshold">Magnitude threshold that the control must match or exceed to be considered actuated.
/// An exception to this is the default value of zero. If threshold is zero, the control must have a magnitude
/// greater than zero.</param>
/// <returns></returns>
/// <remarks>
/// Actuation is defined as a control having a magnitude (<see cref="InputControl.EvaluateMagnitude()"/>
/// greater than zero or, if the control does not support magnitudes, has been moved from its default
/// state.
///
/// In practice, this means that when actuated, a control will produce a value other than its default
/// value.
/// </remarks>
public static bool IsActuated(this InputControl control, float threshold = 0)
{
// First perform cheap memory check. If we're in default state, we don't
// need to invoke virtuals on the control.
if (control.CheckStateIsAtDefault())
return false;
// Check magnitude of actuation.
var magnitude = control.magnitude;
if (magnitude < 0)
{
// We know the control is not in default state but we also know it doesn't support
// magnitude. So, all we can say is that it is actuated. Not how much it is actuated.
//
// If we're looking for a specific threshold here, consider the control to always
// be under. But if not, consider it actuated "by virtue of not being in default state".
if (Mathf.Approximately(threshold, 0))
return true;
return false;
}
if (Mathf.Approximately(threshold, 0))
return magnitude > 0;
return magnitude >= threshold;
}
/// <summary>
/// Read the current value of the control and return it as an object.
/// </summary>
/// <returns></returns>
/// <remarks>
/// This method allocates GC memory and thus may cause garbage collection when used during gameplay.
///
/// Use <seealso cref="ReadValueIntoBuffer"/> to read values generically without having to know the
/// specific value type of a control.
/// </remarks>
/// <seealso cref="ReadValueIntoBuffer"/>
/// <seealso cref="InputControl{TValue}.ReadValue"/>
public static unsafe object ReadValueAsObject(this InputControl control)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
return control.ReadValueFromStateAsObject(control.currentStatePtr);
}
/// <summary>
/// Read the current, processed value of the control and store it into the given memory buffer.
/// </summary>
/// <param name="buffer">Buffer to store value in. Note that the value is not stored with the offset
/// found in <see cref="InputStateBlock.byteOffset"/> of the control's <see cref="InputControl.stateBlock"/>. It will
/// be stored directly at the given address.</param>
/// <param name="bufferSize">Size of the memory available at <paramref name="buffer"/> in bytes. Has to be
/// at least <see cref="InputControl.valueSizeInBytes"/>. If the size is smaller, nothing will be written to the buffer.</param>
/// <seealso cref="InputControl.valueSizeInBytes"/>
/// <seealso cref="InputControl.valueType"/>
/// <seealso cref="InputControl.ReadValueFromStateIntoBuffer"/>
public static unsafe void ReadValueIntoBuffer(this InputControl control, void* buffer, int bufferSize)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (buffer == null)
throw new ArgumentNullException(nameof(buffer));
control.ReadValueFromStateIntoBuffer(control.currentStatePtr, buffer, bufferSize);
}
/// <summary>
/// Read the control's default value and return it as an object.
/// </summary>
/// <param name="control">Control to read default value from.</param>
/// <returns></returns>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is null.</exception>
/// <remarks>
/// This method allocates GC memory and should thus not be used during normal gameplay.
/// </remarks>
/// <seealso cref="InputControl.hasDefaultState"/>
/// <seealso cref="InputControl.defaultStatePtr"/>
public static unsafe object ReadDefaultValueAsObject(this InputControl control)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
return control.ReadValueFromStateAsObject(control.defaultStatePtr);
}
/// <summary>
/// Read the value for the given control from the given event.
/// </summary>
/// <param name="control">Control to read value for.</param>
/// <param name="inputEvent">Event to read value from. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <typeparam name="TValue">Type of value to read.</typeparam>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c>.</exception>
/// <exception cref="ArgumentException"><paramref name="inputEvent"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</exception>
/// <returns>The value for the given control as read out from the given event or <c>default(TValue)</c> if the given
/// event does not contain a value for the control (e.g. if it is a <see cref="DeltaStateEvent"/> not containing the relevant
/// portion of the device's state memory).</returns>
public static TValue ReadValueFromEvent<TValue>(this InputControl<TValue> control, InputEventPtr inputEvent)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!ReadValueFromEvent(control, inputEvent, out var value))
return default;
return value;
}
/// <summary>
/// Check if the given event contains a value for the given control and if so, read the value.
/// </summary>
/// <param name="control">Control to read value for.</param>
/// <param name="inputEvent">Input event. This must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.
/// Note that in the case of a <see cref="DeltaStateEvent"/>, the control may not actually be part of the event. In this
/// case, the method returns false and stores <c>default(TValue)</c> in <paramref name="value"/>.</param>
/// <param name="value">Variable that receives the control value.</param>
/// <typeparam name="TValue">Type of value to read.</typeparam>
/// <returns>True if the value has been successfully read from the event, false otherwise.</returns>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c>.</exception>
/// <exception cref="ArgumentException"><paramref name="inputEvent"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</exception>
/// <seealso cref="ReadUnprocessedValueFromEvent{TValue}(InputControl{TValue},InputEventPtr)"/>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", MessageId = "2#")]
public static unsafe bool ReadValueFromEvent<TValue>(this InputControl<TValue> control, InputEventPtr inputEvent, out TValue value)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
var statePtr = control.GetStatePtrFromStateEvent(inputEvent);
if (statePtr == null)
{
value = control.ReadDefaultValue();
return false;
}
value = control.ReadValueFromState(statePtr);
return true;
}
/// <summary>
/// Read the value of <paramref name="control"/> from the given <paramref name="inputEvent"/> without having to
/// know the specific value type of the control.
/// </summary>
/// <param name="control">Control to read the value for.</param>
/// <param name="inputEvent">An <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/> to read the value from.</param>
/// <returns>The current value for the control or <c>null</c> if the control's value is not included
/// in the event.</returns>
/// <seealso cref="InputControl.ReadValueFromStateAsObject"/>
public static unsafe object ReadValueFromEventAsObject(this InputControl control, InputEventPtr inputEvent)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
var statePtr = control.GetStatePtrFromStateEvent(inputEvent);
if (statePtr == null)
return control.ReadDefaultValueAsObject();
return control.ReadValueFromStateAsObject(statePtr);
}
public static TValue ReadUnprocessedValueFromEvent<TValue>(this InputControl<TValue> control, InputEventPtr eventPtr)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
var result = default(TValue);
control.ReadUnprocessedValueFromEvent(eventPtr, out result);
return result;
}
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", MessageId = "2#")]
public static unsafe bool ReadUnprocessedValueFromEvent<TValue>(this InputControl<TValue> control, InputEventPtr inputEvent, out TValue value)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
var statePtr = control.GetStatePtrFromStateEvent(inputEvent);
if (statePtr == null)
{
value = control.ReadDefaultValue();
return false;
}
value = control.ReadUnprocessedValueFromState(statePtr);
return true;
}
////REVIEW: this has the opposite argument order of WriteValueFromObjectIntoState; fix!
public static unsafe void WriteValueFromObjectIntoEvent(this InputControl control, InputEventPtr eventPtr, object value)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
var statePtr = control.GetStatePtrFromStateEvent(eventPtr);
if (statePtr == null)
return;
control.WriteValueFromObjectIntoState(value, statePtr);
}
/// <summary>
/// Write the control's current value into <paramref name="statePtr"/>.
/// </summary>
/// <param name="control">Control to read the current value from and to store state for in <paramref name="statePtr"/>.</param>
/// <param name="statePtr">State to receive the control's value in its respective <see cref="InputControl.stateBlock"/>.</param>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is null or <paramref name="statePtr"/> is null.</exception>
/// <remarks>
/// This method is equivalent to <see cref="InputControl{TValue}.WriteValueIntoState"/> except that one does
/// not have to know the value type of the given control.
/// </remarks>
/// <exception cref="NotSupportedException">The control does not support writing. This is the case, for
/// example, that compute values (such as the magnitude of a vector).</exception>
/// <seealso cref="InputControl{TValue}.WriteValueIntoState"/>
public static unsafe void WriteValueIntoState(this InputControl control, void* statePtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
var valueSize = control.valueSizeInBytes;
var valuePtr = UnsafeUtility.Malloc(valueSize, 8, Allocator.Temp);
try
{
control.ReadValueFromStateIntoBuffer(control.currentStatePtr, valuePtr, valueSize);
control.WriteValueFromBufferIntoState(valuePtr, valueSize, statePtr);
}
finally
{
UnsafeUtility.Free(valuePtr, Allocator.Temp);
}
}
public static unsafe void WriteValueIntoState<TValue>(this InputControl control, TValue value, void* statePtr)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!(control is InputControl<TValue> controlOfType))
throw new ArgumentException(
$"Expecting control of type '{typeof(TValue).Name}' but got '{control.GetType().Name}'");
controlOfType.WriteValueIntoState(value, statePtr);
}
public static unsafe void WriteValueIntoState<TValue>(this InputControl<TValue> control, TValue value, void* statePtr)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
var valuePtr = UnsafeUtility.AddressOf(ref value);
var valueSize = UnsafeUtility.SizeOf<TValue>();
control.WriteValueFromBufferIntoState(valuePtr, valueSize, statePtr);
}
public static unsafe void WriteValueIntoState<TValue>(this InputControl<TValue> control, void* statePtr)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
control.WriteValueIntoState(control.ReadValue(), statePtr);
}
/// <summary>
///
/// </summary>
/// <param name="state"></param>
/// <param name="value">Value for <paramref name="control"/> to write into <paramref name="state"/>.</param>
/// <typeparam name="TState"></typeparam>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is null.</exception>
/// <exception cref="ArgumentException">Control's value does not fit within the memory of <paramref name="state"/>.</exception>
/// <exception cref="NotSupportedException"><paramref name="control"/> does not support writing.</exception>
public static unsafe void WriteValueIntoState<TValue, TState>(this InputControl<TValue> control, TValue value, ref TState state)
where TValue : struct
where TState : struct, IInputStateTypeInfo
{
if (control == null)
throw new ArgumentNullException(nameof(control));
// Make sure the control's state actually fits within the given state.
var sizeOfState = UnsafeUtility.SizeOf<TState>();
if (control.stateOffsetRelativeToDeviceRoot + control.m_StateBlock.alignedSizeInBytes >= sizeOfState)
throw new ArgumentException(
$"Control {control.path} with offset {control.stateOffsetRelativeToDeviceRoot} and size of {control.m_StateBlock.sizeInBits} bits is out of bounds for state of type {typeof(TState).Name} with size {sizeOfState}",
nameof(state));
// Write value.
var statePtr = (byte*)UnsafeUtility.AddressOf(ref state);
control.WriteValueIntoState(value, statePtr);
}
public static void WriteValueIntoEvent<TValue>(this InputControl control, TValue value, InputEventPtr eventPtr)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!eventPtr.valid)
throw new ArgumentNullException(nameof(eventPtr));
if (!(control is InputControl<TValue> controlOfType))
throw new ArgumentException(
$"Expecting control of type '{typeof(TValue).Name}' but got '{control.GetType().Name}'");
controlOfType.WriteValueIntoEvent(value, eventPtr);
}
public static unsafe void WriteValueIntoEvent<TValue>(this InputControl<TValue> control, TValue value, InputEventPtr eventPtr)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!eventPtr.valid)
throw new ArgumentNullException(nameof(eventPtr));
var statePtr = control.GetStatePtrFromStateEvent(eventPtr);
if (statePtr == null)
return;
control.WriteValueIntoState(value, statePtr);
}
/// <summary>
/// Copy the state of the device to the given memory buffer.
/// </summary>
/// <param name="device">An input device.</param>
/// <param name="buffer">Buffer to copy the state of the device to.</param>
/// <param name="bufferSizeInBytes">Size of <paramref name="buffer"/> in bytes.</param>
/// <exception cref="ArgumentException"><paramref name="bufferSizeInBytes"/> is less than or equal to 0.</exception>
/// <exception cref="ArgumentNullException"><paramref name="device"/> is <c>null</c>.</exception>
/// <remarks>
/// The method will copy however much fits into the given buffer. This means that if the state of the device
/// is larger than what fits into the buffer, not all of the device's state is copied.
/// </remarks>
/// <seealso cref="InputControl.stateBlock"/>
public static unsafe void CopyState(this InputDevice device, void* buffer, int bufferSizeInBytes)
{
if (device == null)
throw new ArgumentNullException(nameof(device));
if (bufferSizeInBytes <= 0)
throw new ArgumentException("bufferSizeInBytes must be positive", nameof(bufferSizeInBytes));
var stateBlock = device.m_StateBlock;
var sizeToCopy = Math.Min(bufferSizeInBytes, stateBlock.alignedSizeInBytes);
UnsafeUtility.MemCpy(buffer, (byte*)device.currentStatePtr + stateBlock.byteOffset, sizeToCopy);
}
/// <summary>
/// Copy the state of the device to the given struct.
/// </summary>
/// <param name="device">An input device.</param>
/// <param name="state">Struct to copy the state of the device into.</param>
/// <typeparam name="TState">A state struct type such as <see cref="MouseState"/>.</typeparam>
/// <exception cref="ArgumentException">The state format of <typeparamref name="TState"/> does not match
/// the state form of <paramref name="device"/>.</exception>
/// <exception cref="ArgumentNullException"><paramref name="device"/> is <c>null</c>.</exception>
/// <remarks>
/// This method will copy memory verbatim into the memory of the given struct. It will copy whatever
/// memory of the device fits into the given struct.
/// </remarks>
/// <seealso cref="InputControl.stateBlock"/>
public static unsafe void CopyState<TState>(this InputDevice device, out TState state)
where TState : struct, IInputStateTypeInfo
{
if (device == null)
throw new ArgumentNullException(nameof(device));
state = default;
if (device.stateBlock.format != state.format)
throw new ArgumentException(
$"Struct '{typeof(TState).Name}' has state format '{state.format}' which doesn't match device '{device}' with state format '{device.stateBlock.format}'",
nameof(TState));
var stateSize = UnsafeUtility.SizeOf<TState>();
var statePtr = UnsafeUtility.AddressOf(ref state);
device.CopyState(statePtr, stateSize);
}
/// <summary>
/// Check whether the memory of the given control is in its default state.
/// </summary>
/// <param name="control">An input control on a device that's been added to the system (see <see cref="InputDevice.added"/>).</param>
/// <returns>True if the state memory of the given control corresponds to the control's default.</returns>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c>.</exception>
/// <remarks>
/// This method is a cheaper check than actually reading out the value from the control and checking whether it
/// is the same value as the default value. The method bypasses all value reading and simply performs a trivial
/// memory comparison of the control's current state memory to the default state memory stored for the control.
///
/// Note that the default state for the memory of a control does not necessary need to be all zeroes. For example,
/// a stick axis may be stored as an unsigned 8-bit value with the memory state corresponding to a 0 value being 127.
/// </remarks>
/// <seealso cref="InputControl.stateBlock"/>
public static unsafe bool CheckStateIsAtDefault(this InputControl control)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
return CheckStateIsAtDefault(control, control.currentStatePtr);
}
/// <summary>
/// Check if the given state corresponds to the default state of the control.
/// </summary>
/// <param name="control">Control to check the state for in <paramref name="statePtr"/>.</param>
/// <param name="statePtr">Pointer to a state buffer containing the <see cref="InputControl.stateBlock"/> for <paramref name="control"/>.</param>
/// <param name="maskPtr">If not null, only bits set to <c>false</c> (!) in the buffer will be taken into account. This can be used
/// to mask out noise, i.e. every bit that is set in the mask is considered to represent noise.</param>
/// <returns>True if the control/device is in its default state.</returns>
/// <remarks>
/// Note that default does not equate all zeroes. Stick axes, for example, that are stored as unsigned byte
/// values will have their resting position at 127 and not at 0. This is why we explicitly store default
/// state in a memory buffer instead of assuming zeroes.
/// </remarks>
/// <seealso cref="InputControl{TValue}.ReadDefaultValue"/>
public static unsafe bool CheckStateIsAtDefault(this InputControl control, void* statePtr, void* maskPtr = null)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
return control.CompareState(statePtr, control.defaultStatePtr, maskPtr);
}
public static unsafe bool CheckStateIsAtDefaultIgnoringNoise(this InputControl control)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
return control.CheckStateIsAtDefaultIgnoringNoise(control.currentStatePtr);
}
/// <summary>
/// Check if the given state corresponds to the default state of the control or has different state only
/// for parts marked as noise.
/// </summary>
/// <param name="control">Control to check the state for in <paramref name="statePtr"/>.</param>
/// <param name="statePtr">Pointer to a state buffer containing the <see cref="InputControl.stateBlock"/> for <paramref name="control"/>.</param>
/// <returns>True if the control/device is in its default state (ignoring any bits marked as noise).</returns>
/// <remarks>
/// Note that default does not equate all zeroes. Stick axes, for example, that are stored as unsigned byte
/// values will have their resting position at 127 and not at 0. This is why we explicitly store default
/// state in a memory buffer instead of assuming zeroes.
/// </remarks>
/// <seealso cref="InputControl{TValue}.ReadDefaultValue"/>
/// <seealso cref="InputControl.noisy"/>
/// <seealso cref="InputControl.noiseMaskPtr"/>
public static unsafe bool CheckStateIsAtDefaultIgnoringNoise(this InputControl control, void* statePtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
return control.CheckStateIsAtDefault(statePtr, InputStateBuffers.s_NoiseMaskBuffer);
}
/// <summary>
/// Compare the control's current state to the state stored in <paramref name="statePtr"/>.
/// </summary>
/// <param name="statePtr">State memory containing the control's <see cref="InputControl.stateBlock"/>.</param>
/// <returns>True if </returns>
/// <seealso cref="InputControl.currentStatePtr"/>
/// <remarks>
/// This method ignores noise
///
/// This method will not actually read values but will instead compare state directly as it is stored
/// in memory. <see cref="InputControl{TValue}.ReadValue"/> is not invoked and thus processors will
/// not be run.
/// </remarks>
public static unsafe bool CompareStateIgnoringNoise(this InputControl control, void* statePtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
return control.CompareState(control.currentStatePtr, statePtr, control.noiseMaskPtr);
}
/// <summary>
/// Compare the control's stored state in <paramref name="firstStatePtr"/> to <paramref name="secondStatePtr"/>.
/// </summary>
/// <param name="firstStatePtr">Memory containing the control's <see cref="InputControl.stateBlock"/>.</param>
/// <param name="secondStatePtr">Memory containing the control's <see cref="InputControl.stateBlock"/></param>
/// <param name="maskPtr">Optional mask. If supplied, it will be used to mask the comparison between
/// <paramref name="firstStatePtr"/> and <paramref name="secondStatePtr"/> such that any bit not set in the
/// mask will be ignored even if different between the two states. This can be used, for example, to ignore
/// noise in the state (<see cref="InputControl.noiseMaskPtr"/>).</param>
/// <returns>True if the state is equivalent in both memory buffers.</returns>
/// <remarks>
/// Unlike <see cref="InputControl.CompareValue"/>, this method only compares raw memory state. If used on a stick, for example,
/// it may mean that this method returns false for two stick values that would compare equal using <see cref="InputControl.CompareValue"/>
/// (e.g. if both stick values fall below the deadzone).
/// </remarks>
/// <seealso cref="InputControl.CompareValue"/>
public static unsafe bool CompareState(this InputControl control, void* firstStatePtr, void* secondStatePtr, void* maskPtr = null)
{
////REVIEW: for compound controls, do we want to go check leaves so as to not pick up on non-control noise in the state?
//// e.g. from HID input reports; or should we just leave that to maskPtr?
var firstPtr = (byte*)firstStatePtr + (int)control.m_StateBlock.byteOffset;
var secondPtr = (byte*)secondStatePtr + (int)control.m_StateBlock.byteOffset;
var mask = maskPtr != null ? (byte*)maskPtr + (int)control.m_StateBlock.byteOffset : null;
if (control.m_StateBlock.sizeInBits == 1)
{
// If we have a mask and the bit is set in the mask, the control is to be ignored
// and thus we consider it at default value.
if (mask != null && MemoryHelpers.ReadSingleBit(mask, control.m_StateBlock.bitOffset))
return true;
return MemoryHelpers.ReadSingleBit(secondPtr, control.m_StateBlock.bitOffset) ==
MemoryHelpers.ReadSingleBit(firstPtr, control.m_StateBlock.bitOffset);
}
return MemoryHelpers.MemCmpBitRegion(firstPtr, secondPtr,
control.m_StateBlock.bitOffset, control.m_StateBlock.sizeInBits, mask);
}
public static unsafe bool CompareState(this InputControl control, void* statePtr, void* maskPtr = null)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
return control.CompareState(control.currentStatePtr, statePtr, maskPtr);
}
/// <summary>
/// Return true if the current value of <paramref name="control"/> is different to the one found
/// in <paramref name="statePtr"/>.
/// </summary>
/// <param name="control">Control whose state to compare to what is stored in <paramref name="statePtr"/>.</param>
/// <param name="statePtr">A block of input state memory containing the <see cref="InputControl.stateBlock"/>
/// of <paramref name="control."/></param>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c> or <paramref name="statePtr"/>
/// is <c>null</c>.</exception>
/// <returns>True if the value of <paramref name="control"/> stored in <paramref name="statePtr"/> is different
/// compared to what <see cref="InputControl{T}.ReadValue"/> of the control returns.</returns>
public static unsafe bool HasValueChangeInState(this InputControl control, void* statePtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (statePtr == null)
throw new ArgumentNullException(nameof(statePtr));
return control.CompareValue(control.currentStatePtr, statePtr);
}
/// <summary>
/// Return true if <paramref name="control"/> has a different value (from its current one) in
/// <paramref name="eventPtr"/>.
/// </summary>
/// <param name="control">An input control.</param>
/// <param name="eventPtr">An input event. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <returns>True if <paramref name="eventPtr"/> contains a value for <paramref name="control"/> that is different
/// from the control's current value (see <see cref="InputControl{TValue}.ReadValue"/>).</returns>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c> -or- <paramref name="eventPtr"/> is a <c>null</c> pointer (see <see cref="InputEventPtr.valid"/>).</exception>
/// <exception cref="ArgumentException"><paramref name="eventPtr"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</exception>
public static unsafe bool HasValueChangeInEvent(this InputControl control, InputEventPtr eventPtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!eventPtr.valid)
throw new ArgumentNullException(nameof(eventPtr));
var statePtr = control.GetStatePtrFromStateEvent(eventPtr);
if (statePtr == null)
return false;
return control.CompareValue(control.currentStatePtr, statePtr);
}
/// <summary>
/// Given a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>, return the raw memory pointer that can
/// be used, for example, with <see cref="InputControl{T}.ReadValueFromState"/> to read out the value of <paramref name="control"/>
/// contained in the event.
/// </summary>
/// <param name="control">Control to access state for in the given state event.</param>
/// <param name="eventPtr">A <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/> containing input state.</param>
/// <returns>A pointer that can be used with methods such as <see cref="InputControl{TValue}.ReadValueFromState"/> or <c>null</c>
/// if <paramref name="eventPtr"/> does not contain state for the given <paramref name="control"/>.</returns>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c> -or- <paramref name="eventPtr"/> is invalid.</exception>
/// <exception cref="ArgumentException"><paramref name="eventPtr"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</exception>
/// <remarks>
/// Note that the given state event must have the same state format (see <see cref="InputStateBlock.format"/>) as the device
/// to which <paramref name="control"/> belongs. If this is not the case, the method will invariably return <c>null</c>.
///
/// In practice, this means that the method cannot be used with touch events or, in general, with events sent to devices
/// that implement <see cref="IInputStateCallbackReceiver"/> (which <see cref="Touchscreen"/> does) except if the event
/// is in the same state format as the device. Touch events will generally be sent as state events containing only the
/// state of a single <see cref="Controls.TouchControl"/>, not the state of the entire <see cref="Touchscreen"/>.
/// </remarks>
public static unsafe void* GetStatePtrFromStateEvent(this InputControl control, InputEventPtr eventPtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!eventPtr.valid)
throw new ArgumentNullException(nameof(eventPtr));
return GetStatePtrFromStateEventUnchecked(control, eventPtr, eventPtr.type);
}
internal static unsafe void* GetStatePtrFromStateEventUnchecked(this InputControl control, InputEventPtr eventPtr, FourCC eventType)
{
uint stateOffset;
FourCC stateFormat;
uint stateSizeInBytes;
void* statePtr;
if (eventType == StateEvent.Type)
{
var stateEvent = StateEvent.FromUnchecked(eventPtr);
stateOffset = 0;
stateFormat = stateEvent->stateFormat;
stateSizeInBytes = stateEvent->stateSizeInBytes;
statePtr = stateEvent->state;
}
else if (eventType == DeltaStateEvent.Type)
{
var deltaEvent = DeltaStateEvent.FromUnchecked(eventPtr);
// If it's a delta event, we need to subtract the delta state offset if it's not set to the root of the device
stateOffset = deltaEvent->stateOffset;
stateFormat = deltaEvent->stateFormat;
stateSizeInBytes = deltaEvent->deltaStateSizeInBytes;
statePtr = deltaEvent->deltaState;
}
else
{
throw new ArgumentException($"Event must be a StateEvent or DeltaStateEvent but is a {eventType} instead",
nameof(eventPtr));
}
// Make sure we have a state event compatible with our device. The event doesn't
// have to be specifically for our device (we don't require device IDs to match) but
// the formats have to match and the size must be within range of what we're trying
// to read.
var device = control.device;
if (stateFormat != device.m_StateBlock.format)
{
// If the device is an IInputStateCallbackReceiver, there's a chance it actually recognizes
// the state format in the event and can correlate it to the state as found on the device.
if (!device.hasStateCallbacks ||
!((IInputStateCallbackReceiver)device).GetStateOffsetForEvent(control, eventPtr, ref stateOffset))
return null;
}
// Once a device has been added, global state buffer offsets are baked into control hierarchies.
// We need to unsubtract those offsets here.
// NOTE: If the given device has not actually been added to the system, the offset is simply 0
// and this is a harmless NOP.
stateOffset += device.m_StateBlock.byteOffset;
// Return null if state is out of range.
ref var controlStateBlock = ref control.m_StateBlock;
var controlOffset = (int)controlStateBlock.effectiveByteOffset - stateOffset;
if (controlOffset < 0 || controlOffset + controlStateBlock.alignedSizeInBytes > stateSizeInBytes)
return null;
return (byte*)statePtr - (int)stateOffset;
}
/// <summary>
/// Writes the default state of <paramref name="control"/> into <paramref name="eventPtr"/>.
/// </summary>
/// <param name="control">A control whose default state to write.</param>
/// <param name="eventPtr">A valid pointer to either a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c> -or- <paramref name="eventPtr"/> contains
/// a null pointer.</exception>
/// <exception cref="ArgumentException"><paramref name="eventPtr"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</exception>
/// <returns>True if the default state for <paramref name="control"/> was written to <paramref name="eventPtr"/>, false if the
/// given state or delta state event did not include memory for the given control.</returns>
/// <remarks>
/// Note that the default state of a control does not necessarily need to correspond to zero-initialized memory. For example, if
/// an axis control yields a range of [-1..1] and is stored as a signed 8-bit value, the default state will be 127, not 0.
///
/// <example>
/// <code>
/// // Reset the left gamepad stick to its default state (which results in a
/// // value of (0,0).
/// using (StateEvent.From(Gamepad.all[0], out var eventPtr))
/// {
/// Gamepad.all[0].leftStick.ResetToDefaultStateInEvent(eventPtr);
/// InputSystem.QueueEvent(eventPtr);
/// }
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="InputControl.defaultStatePtr"/>
public static unsafe bool ResetToDefaultStateInEvent(this InputControl control, InputEventPtr eventPtr)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!eventPtr.valid)
throw new ArgumentNullException(nameof(eventPtr));
var eventType = eventPtr.type;
if (eventType != StateEvent.Type && eventType != DeltaStateEvent.Type)
throw new ArgumentException("Given event is not a StateEvent or a DeltaStateEvent", nameof(eventPtr));
var statePtr = (byte*)control.GetStatePtrFromStateEvent(eventPtr);
if (statePtr == null)
return false;
var defaultStatePtr = (byte*)control.defaultStatePtr;
ref var stateBlock = ref control.m_StateBlock;
var offset = stateBlock.byteOffset;
MemoryHelpers.MemCpyBitRegion(statePtr + offset, defaultStatePtr + offset, stateBlock.bitOffset, stateBlock.sizeInBits);
return true;
}
/// <summary>
/// Queue a value change on the given <paramref name="control"/> which will be processed and take effect
/// in the next input update.
/// </summary>
/// <param name="control">Control to change the value of.</param>
/// <param name="value">New value for the control.</param>
/// <param name="time">Optional time at which the value change should take effect. If set, this will become
/// the <see cref="InputEvent.time"/> of the queued event. If the time is in the future and the update mode is
/// set to <see cref="InputSettings.UpdateMode.ProcessEventsInFixedUpdate"/>, the event will not be processed until
/// it falls within the time of an input update slice. Otherwise, the event will invariably be consumed in the
/// next input update (see <see cref="InputSystem.Update"/>).</param>
/// <typeparam name="TValue">Type of value.</typeparam>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is null.</exception>
public static void QueueValueChange<TValue>(this InputControl<TValue> control, TValue value, double time = -1)
where TValue : struct
{
if (control == null)
throw new ArgumentNullException(nameof(control));
////TODO: if it's not a bit-addressing control, send a delta state change only
using (StateEvent.From(control.device, out var eventPtr))
{
if (time >= 0)
eventPtr.time = time;
control.WriteValueIntoEvent(value, eventPtr);
InputSystem.QueueEvent(eventPtr);
}
}
/// <summary>
/// Modify <paramref name="newState"/> to write an accumulated value of the control
/// rather than the value currently found in the event.
/// </summary>
/// <param name="control">Control to perform the accumulation on.</param>
/// <param name="currentStatePtr">Memory containing the control's current state. See <see
/// cref="InputControl.currentStatePtr"/>.</param>
/// <param name="newState">Event containing the new state about to be written to the device.</param>
/// <exception cref="ArgumentNullException"><paramref name="control"/> is <c>null</c>.</exception>
/// <remarks>
/// This method reads the current, unprocessed value of the control from <see cref="InputControl.currentStatePtr"/>
/// and then adds it to the value of the control found in <paramref name="newState"/>.
///
/// Note that the method does nothing if a value for the control is not contained in <paramref name="newState"/>.
/// This can be the case, for example, for <see cref="DeltaStateEvent"/>s.
/// </remarks>
/// <seealso cref="Pointer.delta"/>
public static unsafe void AccumulateValueInEvent(this InputControl<float> control, void* currentStatePtr, InputEventPtr newState)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!control.ReadUnprocessedValueFromEvent(newState, out var newValue))
return; // Value for the control not contained in the given event.
var oldValue = control.ReadUnprocessedValueFromState(currentStatePtr);
control.WriteValueIntoEvent(oldValue + newValue, newState);
}
internal static unsafe void AccumulateValueInEvent(this InputControl<Vector2> control, void* currentStatePtr, InputEventPtr newState)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (!control.ReadUnprocessedValueFromEvent(newState, out var newValue))
return; // Value for the control not contained in the given event.
var oldDelta = control.ReadUnprocessedValueFromState(currentStatePtr);
control.WriteValueIntoEvent(oldDelta + newValue, newState);
}
public static void FindControlsRecursive<TControl>(this InputControl parent, IList<TControl> controls, Func<TControl, bool> predicate)
where TControl : InputControl
{
if (parent == null)
throw new ArgumentNullException(nameof(parent));
if (controls == null)
throw new ArgumentNullException(nameof(controls));
if (predicate == null)
throw new ArgumentNullException(nameof(predicate));
if (parent is TControl parentAsTControl && predicate(parentAsTControl))
controls.Add(parentAsTControl);
var children = parent.children;
var childCount = children.Count;
for (var i = 0; i < childCount; ++i)
{
var child = parent.children[i];
FindControlsRecursive(child, controls, predicate);
}
}
internal static string BuildPath(this InputControl control, string deviceLayout, StringBuilder builder = null)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (string.IsNullOrEmpty(deviceLayout))
throw new ArgumentNullException(nameof(deviceLayout));
if (builder == null)
builder = new StringBuilder();
var device = control.device;
builder.Append('<');
builder.Append(deviceLayout.Escape("\\>", "\\>"));
builder.Append('>');
// Add usages of device, if any.
var deviceUsages = device.usages;
for (var i = 0; i < deviceUsages.Count; ++i)
{
builder.Append('{');
builder.Append(deviceUsages[i].ToString().Escape("\\}", "\\}"));
builder.Append('}');
}
builder.Append(InputControlPath.Separator);
// If any of the components contains a backslash, double it up as in control paths,
// these serve as escape characters.
var devicePath = device.path.Replace("\\", "\\\\");
var controlPath = control.path.Replace("\\", "\\\\");
builder.Append(controlPath, devicePath.Length + 1, controlPath.Length - devicePath.Length - 1);
return builder.ToString();
}
/// <summary>
/// Flags that control which controls are returned by <see cref="InputControlExtensions.EnumerateControls"/>.
/// </summary>
[Flags]
public enum Enumerate
{
/// <summary>
/// Ignore controls whose value is at default (see <see cref="InputControl{TValue}.ReadDefaultValue"/>).
/// </summary>
IgnoreControlsInDefaultState = 1 << 0,
/// <summary>
/// Ignore controls whose value is the same as their current value (see <see cref="InputControl{TValue}.ReadValue"/>).
/// </summary>
IgnoreControlsInCurrentState = 1 << 1,
/// <summary>
/// Include controls that are <see cref="InputControl.synthetic"/> and/or use state from other other controls (see
/// <see cref="Layouts.InputControlLayout.ControlItem.useStateFrom"/>). These are excluded by default.
/// </summary>
IncludeSyntheticControls = 1 << 2,
/// <summary>
/// Include noisy controls (see <see cref="InputControl.noisy"/>). These are excluded by default.
/// </summary>
IncludeNoisyControls = 1 << 3,
/// <summary>
/// For any leaf control returned by the enumeration, also return all the parent controls (see <see cref="InputControl.parent"/>)
/// in turn (but not the root <see cref="InputDevice"/> itself).
/// </summary>
IncludeNonLeafControls = 1 << 4,
}
/// <summary>
/// Go through the controls that have values in <paramref name="eventPtr"/>, apply the given filters, and return each
/// control one by one.
/// </summary>
/// <param name="eventPtr">An input event. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <param name="flags">Filter settings that determine which controls to return.</param>
/// <param name="device">Input device from which to enumerate controls. If this is <c>null</c>, then the <see cref="InputEvent.deviceId"/>
/// from the given <paramref name="eventPtr"/> will be used to locate the device via <see cref="InputSystem.GetDeviceById"/>. If the device
/// cannot be found, an exception will be thrown. Note that type of device must match the state stored in the given event.</param>
/// <param name="magnitudeThreshold">If not zero, minimum actuation threshold (see <see cref="InputControl.EvaluateMagnitude()"/>) that
/// a control must reach (as per value in the given <paramref name="eventPtr"/>) in order for it to be included in the enumeration.</param>
/// <returns>An enumerator for the controls with values in <paramref name="eventPtr"/>.</returns>
/// <exception cref="ArgumentNullException"><paramref name="eventPtr"/> is a <c>null</c> pointer (see <see cref="InputEventPtr.valid"/>).</exception>
/// <exception cref="ArgumentException"><paramref name="eventPtr"/> is not a <see cref="StateEvent"/> and not a <see cref="DeltaStateEvent"/> -or-
/// <paramref name="device"/> is <c>null</c> and no device was found with a <see cref="InputDevice.deviceId"/> matching that of <see cref="InputEvent.deviceId"/>
/// found in <paramref name="eventPtr"/>.</exception>
/// <remarks>
/// This method is much more efficient than manually iterating over the controls of <paramref name="device"/> and locating
/// the ones that have changed in <paramref name="eventPtr"/>. See <see cref="InputEventControlEnumerator"/> for details.
///
/// This method will not allocate GC memory and can safely be used with <c>foreach</c> loops.
/// </remarks>
/// <seealso cref="InputEventControlEnumerator"/>
/// <seealso cref="StateEvent"/>
/// <seealso cref="DeltaStateEvent"/>
/// <seealso cref="EnumerateChangedControls"/>
public static InputEventControlCollection EnumerateControls(this InputEventPtr eventPtr, Enumerate flags, InputDevice device = null, float magnitudeThreshold = 0)
{
if (!eventPtr.valid)
throw new ArgumentNullException(nameof(eventPtr), "Given event pointer must not be null");
var eventType = eventPtr.type;
if (eventType != StateEvent.Type && eventType != DeltaStateEvent.Type)
throw new ArgumentException($"Event must be a StateEvent or DeltaStateEvent but is a {eventType} instead", nameof(eventPtr));
// Look up device from event, if no device was supplied.
if (device == null)
{
var deviceId = eventPtr.deviceId;
device = InputSystem.GetDeviceById(deviceId);
if (device == null)
throw new ArgumentException($"Cannot find device with ID {deviceId} referenced by event", nameof(eventPtr));
}
return new InputEventControlCollection { m_Device = device, m_EventPtr = eventPtr, m_Flags = flags, m_MagnitudeThreshold = magnitudeThreshold };
}
/// <summary>
/// Go through all controls in the given <paramref name="eventPtr"/> that have changed value.
/// </summary>
/// <param name="eventPtr">An input event. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <param name="device">Input device from which to enumerate controls. If this is <c>null</c>, then the <see cref="InputEvent.deviceId"/>
/// from the given <paramref name="eventPtr"/> will be used to locate the device via <see cref="InputSystem.GetDeviceById"/>. If the device
/// cannot be found, an exception will be thrown. Note that type of device must match the state stored in the given event.</param>
/// <param name="magnitudeThreshold">If not zero, minimum actuation threshold (see <see cref="InputControl.EvaluateMagnitude()"/>) that
/// a control must reach (as per value in the given <paramref name="eventPtr"/>) in order for it to be included in the enumeration.</param>
/// <returns>An enumerator for the controls that have changed values in <paramref name="eventPtr"/>.</returns>
/// <remarks>
/// This method is a shorthand for calling <see cref="EnumerateControls"/> with <see cref="Enumerate.IgnoreControlsInCurrentState"/>.
///
/// <example>
/// <code>
/// // Detect button presses.
/// InputSystem.onEvent +=
/// (eventPtr, device) =>
/// {
/// // Ignore anything that is not a state event.
/// var eventType = eventPtr.type;
/// if (eventType != StateEvent.Type && eventType != DeltaStateEvent.Type)
/// return;
///
/// // Find all changed controls actuated above the button press threshold.
/// foreach (var control in eventPtr.EnumerateChangedControls
/// (device: device, magnitudeThreshold: InputSystem.settings.defaultButtonPressThreshold))
/// if (control is ButtonControl button)
/// Debug.Log($"Button {button} was pressed");
/// }
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="InputSystem.onEvent"/>
/// <seealso cref="EnumerateControls"/>
/// <seealso cref="InputEventControlEnumerator"/>
public static InputEventControlCollection EnumerateChangedControls(this InputEventPtr eventPtr, InputDevice device = null, float magnitudeThreshold = 0)
{
return eventPtr.EnumerateControls
(Enumerate.IgnoreControlsInCurrentState, device, magnitudeThreshold);
}
/// <summary>
/// Return true if the given <paramref name="eventPtr"/> has any <see cref="Input"/>
/// </summary>
/// <param name="eventPtr">An event. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <param name="magnitude">The threshold value that a button must be actuated by to be considered pressed.</param>
/// <param name="buttonControlsOnly">Whether the method should only consider button controls.</param>
/// <returns></returns>
/// <exception cref="ArgumentNullException"><paramref name="eventPtr"/> is a <c>null</c> pointer.</exception>
/// <exception cref="ArgumentException"><paramref name="eventPtr"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/> -or-
/// the <see cref="InputDevice"/> referenced by the <see cref="InputEvent.deviceId"/> in the event cannot be found.</exception>
/// <seealso cref="EnumerateChangedControls"/>
/// <seealso cref="ButtonControl.isPressed"/>
public static bool HasButtonPress(this InputEventPtr eventPtr, float magnitude = -1, bool buttonControlsOnly = true)
{
return eventPtr.GetFirstButtonPressOrNull(magnitude, buttonControlsOnly) != null;
}
/// <summary>
/// Get the first pressed button from the given event or null if the event doesn't contain a new button press.
/// </summary>
/// <param name="eventPtr">An event. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <param name="magnitude">The threshold value that a control must be actuated by (see
/// <see cref="InputControl.EvaluateMagnitude()"/>) to be considered pressed. If not given, defaults to <see
/// cref="InputSettings.defaultButtonPressPoint"/>.</param>
/// <param name="buttonControlsOnly">Whether the method should only consider <see cref="ButtonControl"/>s. Otherwise,
/// any <see cref="InputControl"/> that has an actuation (see <see cref="InputControl.EvaluateMagnitude()"/>) equal to
/// or greater than the given <paramref name="magnitude"/> will be considered a pressed button. This is 'true' by
/// default.</param>
/// <returns>The control that was pressed.</returns>
/// <exception cref="ArgumentNullException"><paramref name="eventPtr"/> is a <c>null</c> pointer.</exception>
/// <exception cref="ArgumentException">The <see cref="InputDevice"/> referenced by the <see cref="InputEvent.deviceId"/> in the event cannot
/// be found.</exception>
/// <seealso cref="EnumerateChangedControls"/>
/// <seealso cref="ButtonControl.isPressed"/>
/// <remarks>Buttons will be evaluated in the order that they appear in the devices layout i.e. the bit position of each control
/// in the devices state memory. For example, in the gamepad state, button north (bit position 4) will be evaluated before button
/// east (bit position 5), so if both buttons were pressed in the given event, button north would be returned.
/// Note that the function returns null if the <paramref name="eventPtr"/> is not a StateEvent or DeltaStateEvent.</remarks>
public static InputControl GetFirstButtonPressOrNull(this InputEventPtr eventPtr, float magnitude = -1, bool buttonControlsOnly = true)
{
if (eventPtr.type != StateEvent.Type && eventPtr.type != DeltaStateEvent.Type)
return null;
if (magnitude < 0)
magnitude = InputSystem.settings.defaultButtonPressPoint;
foreach (var control in eventPtr.EnumerateControls(Enumerate.IgnoreControlsInDefaultState, magnitudeThreshold: magnitude))
{
if (buttonControlsOnly && !control.isButton)
continue;
return control;
}
return null;
}
/// <summary>
/// Enumerate all pressed buttons in the given event.
/// </summary>
/// <param name="eventPtr">An event. Must be a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</param>
/// <param name="magnitude">The threshold value that a button must be actuated by to be considered pressed.</param>
/// <param name="buttonControlsOnly">Whether the method should only consider button controls.</param>
/// <returns>An enumerable collection containing all buttons that were pressed in the given event.</returns>
/// <exception cref="ArgumentNullException"><paramref name="eventPtr"/> is a <c>null</c> pointer.</exception>
/// <exception cref="ArgumentException">The <see cref="InputDevice"/> referenced by the <see cref="InputEvent.deviceId"/> in the event cannot be found.</exception>
/// <remarks>Returns an empty enumerable if the <paramref name="eventPtr"/> is not a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.</remarks>
/// <seealso cref="EnumerateChangedControls"/>
/// <seealso cref="ButtonControl.isPressed"/>
public static IEnumerable<InputControl> GetAllButtonPresses(this InputEventPtr eventPtr, float magnitude = -1, bool buttonControlsOnly = true)
{
if (eventPtr.type != StateEvent.Type && eventPtr.type != DeltaStateEvent.Type)
yield break;
if (magnitude < 0)
magnitude = InputSystem.settings.defaultButtonPressPoint;
foreach (var control in eventPtr.EnumerateControls(Enumerate.IgnoreControlsInDefaultState, magnitudeThreshold: magnitude))
{
if (buttonControlsOnly && !control.isButton)
continue;
yield return control;
}
}
/// <summary>
/// Allows iterating over the controls referenced by an <see cref="InputEvent"/> via <see cref="InputEventControlEnumerator"/>.
/// </summary>
/// <seealso cref="InputControlExtensions.EnumerateControls"/>
/// <seealso cref="InputControlExtensions.EnumerateChangedControls"/>
public struct InputEventControlCollection : IEnumerable<InputControl>
{
internal InputDevice m_Device;
internal InputEventPtr m_EventPtr;
internal Enumerate m_Flags;
internal float m_MagnitudeThreshold;
/// <summary>
/// The event being iterated over. A <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>.
/// </summary>
public InputEventPtr eventPtr => m_EventPtr;
/// <summary>
/// Enumerate the controls in the event.
/// </summary>
/// <returns>An enumerator.</returns>
public InputEventControlEnumerator GetEnumerator()
{
return new InputEventControlEnumerator(m_EventPtr, m_Device, m_Flags, m_MagnitudeThreshold);
}
IEnumerator<InputControl> IEnumerable<InputControl>.GetEnumerator()
{
return GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
}
/// <summary>
/// Iterates over the controls in a <see cref="StateEvent"/> or <see cref="DeltaStateEvent"/>
/// while optionally applying certain filtering criteria.
/// </summary>
/// <remarks>
/// One problem with state events (that is, <see cref="StateEvent"/> and <see cref="DeltaStateEvent"/>)
/// is that they contain raw blocks of memory which may contain state changes for arbitrary many
/// controls on a device at the same time. Locating individual controls and determining which have
/// changed state and how can thus be quite inefficient.
///
/// This helper aims to provide an easy and efficient way to iterate over controls relevant to a
/// given state event. Instead of iterating over the controls of a device looking for the ones
/// relevant to a given event, enumeration is done the opposite by efficiently searching through
/// the memory contained in an event and then mapping data found in the event back to controls
/// on a given device.
///
/// <example>
/// <code>
/// // Inefficient:
/// foreach (var control in device.allControls)
/// {
/// // Skip control if it is noisy, synthetic, or not a leaf control.
/// if (control.synthetic || control.noisy || control.children.Count > 0)
/// continue;
///
/// // Locate the control in the event.
/// var statePtr = eventPtr.GetStatePtrFromStateEvent(eventPtr);
/// if (statePtr == null)
/// continue; // Control not included in event.
///
/// // See if the control is actuated beyond a minimum threshold.
/// if (control.EvaluateMagnitude(statePtr) < 0.001f)
/// continue;
///
/// Debug.Log($"Found actuated control {control}");
/// }
///
/// // Much more efficient:
/// foreach (var control in eventPtr.EnumerateControls(
/// InputControlExtensions.Enumerate.IgnoreControlsInDefaultState,
/// device: device,
/// magnitudeThreshold: 0.001f))
/// {
/// Debug.Log($"Found actuated control {control}");
/// }
/// </code>
/// </example>
/// </remarks>
/// <seealso cref="InputControlExtensions.EnumerateControls"/>
/// <seealso cref="InputControlExtensions.EnumerateChangedControls"/>
public unsafe struct InputEventControlEnumerator : IEnumerator<InputControl>
{
private Enumerate m_Flags;
private readonly InputDevice m_Device;
private readonly uint[] m_StateOffsetToControlIndex;
private readonly int m_StateOffsetToControlIndexLength;
private readonly InputControl[] m_AllControls;
private byte* m_DefaultState; // Already offset by device offset.
private byte* m_CurrentState;
private byte* m_NoiseMask; // Already offset by device offset.
private InputEventPtr m_EventPtr;
private InputControl m_CurrentControl;
private int m_CurrentIndexInStateOffsetToControlIndexMap;
private uint m_CurrentControlStateBitOffset;
private byte* m_EventState;
private uint m_CurrentBitOffset;
private uint m_EndBitOffset;
private float m_MagnitudeThreshold;
internal InputEventControlEnumerator(InputEventPtr eventPtr, InputDevice device, Enumerate flags, float magnitudeThreshold = 0)
{
Debug.Assert(eventPtr.valid, "eventPtr should be valid at this point");
Debug.Assert(device != null, "Need to have valid device at this point");
m_Device = device;
m_StateOffsetToControlIndex = device.m_StateOffsetToControlMap;
m_StateOffsetToControlIndexLength = m_StateOffsetToControlIndex.LengthSafe();
m_AllControls = device.m_ChildrenForEachControl;
m_EventPtr = eventPtr;
m_Flags = flags;
m_CurrentControl = null;
m_CurrentIndexInStateOffsetToControlIndexMap = default;
m_CurrentControlStateBitOffset = 0;
m_EventState = default;
m_CurrentBitOffset = default;
m_EndBitOffset = default;
m_MagnitudeThreshold = magnitudeThreshold;
if ((flags & Enumerate.IncludeNoisyControls) == 0)
m_NoiseMask = (byte*)device.noiseMaskPtr + device.m_StateBlock.byteOffset;
else
m_NoiseMask = default;
if ((flags & Enumerate.IgnoreControlsInDefaultState) != 0)
m_DefaultState = (byte*)device.defaultStatePtr + device.m_StateBlock.byteOffset;
else
m_DefaultState = default;
if ((flags & Enumerate.IgnoreControlsInCurrentState) != 0)
m_CurrentState = (byte*)device.currentStatePtr + device.m_StateBlock.byteOffset;
else
m_CurrentState = default;
Reset();
}
private bool CheckDefault(uint numBits)
{
return MemoryHelpers.MemCmpBitRegion(m_EventState, m_DefaultState, m_CurrentBitOffset, numBits, m_NoiseMask);
}
private bool CheckCurrent(uint numBits)
{
return MemoryHelpers.MemCmpBitRegion(m_EventState, m_CurrentState, m_CurrentBitOffset, numBits, m_NoiseMask);
}
public bool MoveNext()
{
if (!m_EventPtr.valid)
throw new ObjectDisposedException("Enumerator has already been disposed");
// If we are to include non-leaf controls and we have a current control, walk
// up the tree until we reach the device.
if (m_CurrentControl != null && (m_Flags & Enumerate.IncludeNonLeafControls) != 0)
{
var parent = m_CurrentControl.parent;
if (parent != m_Device)
{
m_CurrentControl = parent;
return true;
}
}
var ignoreDefault = m_DefaultState != null;
var ignoreCurrent = m_CurrentState != null;
// Search for the next control that matches our filter criteria.
while (true)
{
m_CurrentControl = null;
// If we are ignoring certain state values, try to skip over as much memory as we can.
if (ignoreCurrent || ignoreDefault)
{
// If we are not byte-aligned, search whatever bits are left in the current byte.
if ((m_CurrentBitOffset & 0x7) != 0)
{
var bitsLeftInByte = (m_CurrentBitOffset + 8) & 0x7;
if ((ignoreCurrent && CheckCurrent(bitsLeftInByte))
|| (ignoreDefault && CheckDefault(bitsLeftInByte)))
m_CurrentBitOffset += bitsLeftInByte;
}
// Search byte by byte.
while (m_CurrentBitOffset < m_EndBitOffset)
{
var byteOffset = m_CurrentBitOffset >> 3;
var eventByte = m_EventState[byteOffset];
var maskByte = m_NoiseMask != null ? m_NoiseMask[byteOffset] : 0xff;
if (ignoreCurrent)
{
var currentByte = m_CurrentState[byteOffset];
if ((currentByte & maskByte) == (eventByte & maskByte))
{
m_CurrentBitOffset += 8;
continue;
}
}
if (ignoreDefault)
{
var defaultByte = m_DefaultState[byteOffset];
if ((defaultByte & maskByte) == (eventByte & maskByte))
{
m_CurrentBitOffset += 8;
continue;
}
}
break;
}
}
// See if we've reached the end.
if (m_CurrentBitOffset >= m_EndBitOffset
|| m_CurrentIndexInStateOffsetToControlIndexMap >= m_StateOffsetToControlIndexLength) // No more controls.
return false;
// No, so find the control at the current bit offset.
for (;
m_CurrentIndexInStateOffsetToControlIndexMap < m_StateOffsetToControlIndexLength;
++m_CurrentIndexInStateOffsetToControlIndexMap)
{
InputDevice.DecodeStateOffsetToControlMapEntry(
m_StateOffsetToControlIndex[m_CurrentIndexInStateOffsetToControlIndexMap],
out var controlIndex,
out var controlBitOffset,
out var controlBitSize);
// If the control's bit region lies *before* the memory we're looking at,
// skip it.
if (controlBitOffset < m_CurrentControlStateBitOffset ||
m_CurrentBitOffset >= (controlBitOffset + controlBitSize - m_CurrentControlStateBitOffset))
continue;
// If the bit region we're looking at lies *before* the current control,
// keep searching through memory.
if ((controlBitOffset - m_CurrentControlStateBitOffset) >= m_CurrentBitOffset + 8)
{
// Jump to location of control.
m_CurrentBitOffset = controlBitOffset - m_CurrentControlStateBitOffset;
break;
}
// If the control's bit region runs past of what we actually have (may be the case both
// with delta events and normal state events), skip it.
if (controlBitOffset + controlBitSize - m_CurrentControlStateBitOffset > m_EndBitOffset)
continue;
// If the control is byte-aligned both in its start offset and its length,
// we have what we're looking for.
if ((controlBitOffset & 0x7) == 0 && (controlBitSize & 0x7) == 0)
{
m_CurrentControl = m_AllControls[controlIndex];
}
else
{
// Otherwise, we may need to check the bit region specifically for the control.
if ((ignoreCurrent && MemoryHelpers.MemCmpBitRegion(m_EventState, m_CurrentState, controlBitOffset - m_CurrentControlStateBitOffset, controlBitSize, m_NoiseMask))
|| (ignoreDefault && MemoryHelpers.MemCmpBitRegion(m_EventState, m_DefaultState, controlBitOffset - m_CurrentControlStateBitOffset, controlBitSize, m_NoiseMask)))
continue;
m_CurrentControl = m_AllControls[controlIndex];
}
if ((m_Flags & Enumerate.IncludeNoisyControls) == 0 && m_CurrentControl.noisy)
{
m_CurrentControl = null;
continue;
}
if ((m_Flags & Enumerate.IncludeSyntheticControls) == 0)
{
var controlHasSharedState = (m_CurrentControl.m_ControlFlags &
(InputControl.ControlFlags.UsesStateFromOtherControl |
InputControl.ControlFlags.IsSynthetic)) != 0;
// Filter out synthetic and useStateFrom controls.
if (controlHasSharedState)
{
m_CurrentControl = null;
continue;
}
}
++m_CurrentIndexInStateOffsetToControlIndexMap;
break;
}
if (m_CurrentControl != null)
{
// If we are the filter by magnitude, last check is to go let the control evaluate
// its magnitude based on the data in the event and if it's too low, keep searching.
if (m_MagnitudeThreshold != 0)
{
var statePtr = m_EventState - (m_CurrentControlStateBitOffset >> 3) - m_Device.m_StateBlock.byteOffset;
var magnitude = m_CurrentControl.EvaluateMagnitude(statePtr);
if (magnitude >= 0 && magnitude < m_MagnitudeThreshold)
continue;
}
return true;
}
}
}
public void Reset()
{
if (!m_EventPtr.valid)
throw new ObjectDisposedException("Enumerator has already been disposed");
var eventType = m_EventPtr.type;
FourCC stateFormat;
if (eventType == StateEvent.Type)
{
var stateEvent = StateEvent.FromUnchecked(m_EventPtr);
m_EventState = (byte*)stateEvent->state;
m_EndBitOffset = stateEvent->stateSizeInBytes * 8;
m_CurrentBitOffset = 0;
stateFormat = stateEvent->stateFormat;
}
else if (eventType == DeltaStateEvent.Type)
{
var deltaEvent = DeltaStateEvent.FromUnchecked(m_EventPtr);
m_EventState = (byte*)deltaEvent->deltaState - deltaEvent->stateOffset; // We access m_EventState as if it contains a full state event.
m_CurrentBitOffset = deltaEvent->stateOffset * 8;
m_EndBitOffset = m_CurrentBitOffset + deltaEvent->deltaStateSizeInBytes * 8;
stateFormat = deltaEvent->stateFormat;
}
else
{
throw new NotSupportedException($"Cannot iterate over controls in event of type '{eventType}'");
}
m_CurrentIndexInStateOffsetToControlIndexMap = 0;
m_CurrentControlStateBitOffset = 0;
m_CurrentControl = null;
// If the state format of the event does not match that of the device,
// we need to go through the IInputStateCallbackReceiver machinery to adapt.
if (stateFormat != m_Device.m_StateBlock.format)
{
var stateOffset = 0u;
if (m_Device.hasStateCallbacks &&
((IInputStateCallbackReceiver)m_Device).GetStateOffsetForEvent(null, m_EventPtr, ref stateOffset))
{
m_CurrentControlStateBitOffset = stateOffset * 8;
if (m_CurrentState != null)
m_CurrentState += stateOffset;
if (m_DefaultState != null)
m_DefaultState += stateOffset;
if (m_NoiseMask != null)
m_NoiseMask += stateOffset;
}
else
{
// https://fogbugz.unity3d.com/f/cases/1395648/
if (m_Device is Touchscreen && m_EventPtr.IsA<StateEvent>() &&
StateEvent.FromUnchecked(m_EventPtr)->stateFormat == TouchState.Format)
{
// if GetStateOffsetForEvent(null, ...) return false on touchscreen it means that
// we don't have a free slot for incoming touch, so ignore it for now
}
else
throw new InvalidOperationException(
$"{eventType} event with state format {stateFormat} cannot be used with device '{m_Device}'");
}
}
// NOTE: We *could* run a CheckDefault() or even CheckCurrent() over the entire event here to rule
// it out entirely. However, we don't do so based on the assumption that *in general* this will
// only *add* time. Rationale:
//
// - We assume that it is very rare for devices to send events matching the state the device
// already has (i.e. *entire* event is just == current state).
// - We assume that it is less common than the opposite for devices to send StateEvents containing
// nothing but default state. This happens frequently for the keyboard but is very uncommon for mice,
// touchscreens, and gamepads (where the sticks will almost never be exactly at default).
// - We assume that for DeltaStateEvents it is in fact quite common to contain only default state but
// that since in most cases these will contain state for either a very small set of controls or even
// just a single one, the work we do in MoveNext somewhat closely matches that we'd here with a CheckXXX()
// call but that we'd add work to every DeltaStateEvent if we were to have the upfront comparison here.
}
public void Dispose()
{
m_EventPtr = default;
}
public InputControl Current => m_CurrentControl;
object IEnumerator.Current => Current;
}
// Undocumented APIs. Meant to be used only by auto-generated, precompiled layouts.
// These APIs exist solely to keep access to the various properties/fields internal
// and only allow their contents to be modified in a controlled manner.
#region Undocumented
public static ControlBuilder Setup(this InputControl control)
{
if (control == null)
throw new ArgumentNullException(nameof(control));
if (control.isSetupFinished)
throw new InvalidOperationException($"The setup of {control} cannot be modified; control is already in use");
return new ControlBuilder { control = control };
}
public static DeviceBuilder Setup(this InputDevice device, int controlCount, int usageCount, int aliasCount)
{
if (device == null)
throw new ArgumentNullException(nameof(device));
if (device.isSetupFinished)
throw new InvalidOperationException($"The setup of {device} cannot be modified; control is already in use");
if (controlCount < 1)
throw new ArgumentOutOfRangeException(nameof(controlCount));
if (usageCount < 0)
throw new ArgumentOutOfRangeException(nameof(usageCount));
if (aliasCount < 0)
throw new ArgumentOutOfRangeException(nameof(aliasCount));
device.m_Device = device;
device.m_ChildrenForEachControl = new InputControl[controlCount];
if (usageCount > 0)
{
device.m_UsagesForEachControl = new InternedString[usageCount];
device.m_UsageToControl = new InputControl[usageCount];
}
if (aliasCount > 0)
device.m_AliasesForEachControl = new InternedString[aliasCount];
return new DeviceBuilder { device = device };
}
public struct ControlBuilder
{
public InputControl control { get; internal set; }
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder At(InputDevice device, int index)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (device == null)
throw new ArgumentNullException(nameof(device));
if (index < 0 || index >= device.m_ChildrenForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(index));
#endif
device.m_ChildrenForEachControl[index] = control;
control.m_Device = device;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithParent(InputControl parent)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (parent == null)
throw new ArgumentNullException(nameof(parent));
if (parent == control)
throw new ArgumentException("Control cannot be its own parent", nameof(parent));
#endif
control.m_Parent = parent;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithName(string name)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (string.IsNullOrEmpty(name))
throw new ArgumentNullException(nameof(name));
#endif
control.m_Name = new InternedString(name);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithDisplayName(string displayName)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (string.IsNullOrEmpty(displayName))
throw new ArgumentNullException(nameof(displayName));
#endif
control.m_DisplayNameFromLayout = new InternedString(displayName);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithShortDisplayName(string shortDisplayName)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (string.IsNullOrEmpty(shortDisplayName))
throw new ArgumentNullException(nameof(shortDisplayName));
#endif
control.m_ShortDisplayNameFromLayout = new InternedString(shortDisplayName);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithLayout(InternedString layout)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (layout.IsEmpty())
throw new ArgumentException("Layout name cannot be empty", nameof(layout));
#endif
control.m_Layout = layout;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithUsages(int startIndex, int count)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (startIndex < 0 || startIndex >= control.device.m_UsagesForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(startIndex));
if (count < 0 || startIndex + count > control.device.m_UsagesForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(count));
#endif
control.m_UsageStartIndex = startIndex;
control.m_UsageCount = count;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithAliases(int startIndex, int count)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (startIndex < 0 || startIndex >= control.device.m_AliasesForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(startIndex));
if (count < 0 || startIndex + count > control.device.m_AliasesForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(count));
#endif
control.m_AliasStartIndex = startIndex;
control.m_AliasCount = count;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithChildren(int startIndex, int count)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (startIndex < 0 || startIndex >= control.device.m_ChildrenForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(startIndex));
if (count < 0 || startIndex + count > control.device.m_ChildrenForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(count));
#endif
control.m_ChildStartIndex = startIndex;
control.m_ChildCount = count;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithStateBlock(InputStateBlock stateBlock)
{
control.m_StateBlock = stateBlock;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithDefaultState(PrimitiveValue value)
{
control.m_DefaultState = value;
control.m_Device.hasControlsWithDefaultState = true;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithMinAndMax(PrimitiveValue min, PrimitiveValue max)
{
control.m_MinValue = min;
control.m_MaxValue = max;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder WithProcessor<TProcessor, TValue>(TProcessor processor)
where TValue : struct
where TProcessor : InputProcessor<TValue>
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (processor == null)
throw new ArgumentNullException(nameof(processor));
#endif
////REVIEW: have a parameterized version of ControlBuilder<TValue> so we don't need the cast?
////TODO: size array to exact needed size before-hand
((InputControl<TValue>)control).m_ProcessorStack.Append(processor);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder IsNoisy(bool value)
{
control.noisy = value;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder IsSynthetic(bool value)
{
control.synthetic = value;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder DontReset(bool value)
{
control.dontReset = value;
if (value)
control.m_Device.hasDontResetControls = true;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ControlBuilder IsButton(bool value)
{
control.isButton = value;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Finish()
{
control.isSetupFinished = true;
}
}
public struct DeviceBuilder
{
public InputDevice device { get; internal set; }
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithName(string name)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (string.IsNullOrEmpty(name))
throw new ArgumentNullException(nameof(name));
#endif
device.m_Name = new InternedString(name);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithDisplayName(string displayName)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (string.IsNullOrEmpty(displayName))
throw new ArgumentNullException(nameof(displayName));
#endif
device.m_DisplayNameFromLayout = new InternedString(displayName);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithShortDisplayName(string shortDisplayName)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (string.IsNullOrEmpty(shortDisplayName))
throw new ArgumentNullException(nameof(shortDisplayName));
#endif
device.m_ShortDisplayNameFromLayout = new InternedString(shortDisplayName);
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithLayout(InternedString layout)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (layout.IsEmpty())
throw new ArgumentException("Layout name cannot be empty", nameof(layout));
#endif
device.m_Layout = layout;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithChildren(int startIndex, int count)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (startIndex < 0 || startIndex >= device.device.m_ChildrenForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(startIndex));
if (count < 0 || startIndex + count > device.device.m_ChildrenForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(count));
#endif
device.m_ChildStartIndex = startIndex;
device.m_ChildCount = count;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithStateBlock(InputStateBlock stateBlock)
{
device.m_StateBlock = stateBlock;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder IsNoisy(bool value)
{
device.noisy = value;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithControlUsage(int controlIndex, InternedString usage, InputControl control)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (controlIndex < 0 || controlIndex >= device.m_UsagesForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(controlIndex));
if (usage.IsEmpty())
throw new ArgumentException(nameof(usage));
if (control == null)
throw new ArgumentNullException(nameof(control));
#endif
device.m_UsagesForEachControl[controlIndex] = usage;
device.m_UsageToControl[controlIndex] = control;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithControlAlias(int controlIndex, InternedString alias)
{
#if UNITY_EDITOR || DEVELOPMENT_BUILD
if (controlIndex < 0 || controlIndex >= device.m_AliasesForEachControl.Length)
throw new ArgumentOutOfRangeException(nameof(controlIndex));
if (alias.IsEmpty())
throw new ArgumentException(nameof(alias));
#endif
device.m_AliasesForEachControl[controlIndex] = alias;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public DeviceBuilder WithStateOffsetToControlIndexMap(uint[] map)
{
device.m_StateOffsetToControlMap = map;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public unsafe DeviceBuilder WithControlTree(byte[] controlTreeNodes, ushort[] controlTreeIndicies)
{
var sizeOfNode = UnsafeUtility.SizeOf<InputDevice.ControlBitRangeNode>();
var numNodes = controlTreeNodes.Length / sizeOfNode;
device.m_ControlTreeNodes = new InputDevice.ControlBitRangeNode[numNodes];
fixed(byte* nodePtr = controlTreeNodes)
{
for (var i = 0; i < numNodes; i++)
{
device.m_ControlTreeNodes[i] = *(InputDevice.ControlBitRangeNode*)(nodePtr + i * sizeOfNode);
}
}
device.m_ControlTreeIndices = controlTreeIndicies;
return this;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Finish()
{
device.isSetupFinished = true;
}
}
#endregion
}
}
|