Spaces:
Runtime error
Runtime error
File size: 74,213 Bytes
ce81a16 |
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 |
// <auto-generated>
// This code was auto-generated by a tool, every time
// the tool executes this code will be reset.
//
// If you need to extend the classes generated to add
// fields or methods to them, please create partial
// declarations in another file.
// </auto-generated>
#pragma warning disable 0649
#pragma warning disable 1522
#pragma warning disable 0414
#pragma warning disable 0219
#pragma warning disable 0109
namespace Quantum {
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Photon.Deterministic;
using Quantum.Core;
using Quantum.Collections;
using Quantum.Inspector;
using Quantum.Physics2D;
using Quantum.Physics3D;
using Optional = Quantum.Inspector.OptionalAttribute;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
public enum TurnEndReason : int {
Time,
Skip,
Play,
Resolved,
}
public enum TurnStatus : int {
Inactive,
Active,
Resolving,
}
public enum TurnType : int {
Play,
Countdown,
}
[System.FlagsAttribute()]
public enum InputButtons : int {
}
public static unsafe partial class InputButtons_ext {
public static Boolean IsFlagSet(this InputButtons self, InputButtons flag) {
return (self & flag) == flag;
}
public static InputButtons SetFlag(this InputButtons self, InputButtons flag) {
return self | flag;
}
public static InputButtons ClearFlag(this InputButtons self, InputButtons flag) {
return self & ~flag;
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet1024 {
public const Int32 SIZE = 128;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[16];
public const Int32 BitsSize = 1024;
public Int32 Length {
get {
return 1024;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet1024*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 1024, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet1024* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet1024* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet1024* set) {
Native.Utils.Clear(&set->bits[0], 128);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet1024* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet1024 FromArray(UInt64[] values) {
Assert.Always(16 == values.Length);
BitSet1024 result = default;
for (int i = 0; i < 16; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 1024);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 1024);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 128);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 37;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 16);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet1024*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 16);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet128 {
public const Int32 SIZE = 16;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[2];
public const Int32 BitsSize = 128;
public Int32 Length {
get {
return 128;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet128*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 128, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet128* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet128* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet128* set) {
Native.Utils.Clear(&set->bits[0], 16);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet128* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet128 FromArray(UInt64[] values) {
Assert.Always(2 == values.Length);
BitSet128 result = default;
for (int i = 0; i < 2; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 128);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 128);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 16);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 41;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 2);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet128*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 2);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet2 {
public const Int32 SIZE = 8;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[1];
public const Int32 BitsSize = 2;
public Int32 Length {
get {
return 2;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet2*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 2, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet2* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet2* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet2* set) {
Native.Utils.Clear(&set->bits[0], 8);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet2* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet2 FromArray(UInt64[] values) {
Assert.Always(1 == values.Length);
BitSet2 result = default;
for (int i = 0; i < 1; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 2);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 2);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 8);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 43;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 1);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet2*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 1);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet2048 {
public const Int32 SIZE = 256;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[32];
public const Int32 BitsSize = 2048;
public Int32 Length {
get {
return 2048;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet2048*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 2048, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet2048* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet2048* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet2048* set) {
Native.Utils.Clear(&set->bits[0], 256);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet2048* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet2048 FromArray(UInt64[] values) {
Assert.Always(32 == values.Length);
BitSet2048 result = default;
for (int i = 0; i < 32; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 2048);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 2048);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 256);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 47;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 32);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet2048*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 32);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet256 {
public const Int32 SIZE = 32;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[4];
public const Int32 BitsSize = 256;
public Int32 Length {
get {
return 256;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet256*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 256, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet256* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet256* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet256* set) {
Native.Utils.Clear(&set->bits[0], 32);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet256* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet256 FromArray(UInt64[] values) {
Assert.Always(4 == values.Length);
BitSet256 result = default;
for (int i = 0; i < 4; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 256);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 256);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 32);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 53;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 4);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet256*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 4);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet4096 {
public const Int32 SIZE = 512;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[64];
public const Int32 BitsSize = 4096;
public Int32 Length {
get {
return 4096;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet4096*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 4096, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet4096* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet4096* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet4096* set) {
Native.Utils.Clear(&set->bits[0], 512);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet4096* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet4096 FromArray(UInt64[] values) {
Assert.Always(64 == values.Length);
BitSet4096 result = default;
for (int i = 0; i < 64; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 4096);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 4096);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 512);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 59;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 64);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet4096*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 64);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BitSet512 {
public const Int32 SIZE = 64;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
private fixed UInt64 bits[8];
public const Int32 BitsSize = 512;
public Int32 Length {
get {
return 512;
}
}
public static void Print(void* ptr, FramePrinter printer) {
var p = (BitSet512*)ptr;
printer.ScopeBegin();
UnmanagedUtils.PrintBytesBits((byte*)&p->bits, 512, 64, printer);
printer.ScopeEnd();
}
[System.ObsoleteAttribute("Use instance Set method instead")]
public static void Set(BitSet512* set, Int32 bit) {
set->bits[bit/64] |= (1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance Clear method instead")]
public static void Clear(BitSet512* set, Int32 bit) {
set->bits[bit/64] &= ~(1UL<<(bit%64));
}
[System.ObsoleteAttribute("Use instance ClearAll method instead")]
public static void ClearAll(BitSet512* set) {
Native.Utils.Clear(&set->bits[0], 64);
}
[System.ObsoleteAttribute("Use instance IsSet method instead")]
public static Boolean IsSet(BitSet512* set, Int32 bit) {
return (set->bits[bit/64]&(1UL<<(bit%64))) != 0UL;
}
public static BitSet512 FromArray(UInt64[] values) {
Assert.Always(8 == values.Length);
BitSet512 result = default;
for (int i = 0; i < 8; ++i) {
result.bits[i] = values[i];
}
return result;
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Set(Int32 bit) {
Assert.Check(bit >= 0 && bit < 512);
fixed (UInt64* p = bits) (p[bit/64]) |= (1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Clear(Int32 bit) {
Assert.Check(bit >= 0 && bit < 512);
fixed (UInt64* p = bits) (p[bit/64]) &= ~(1UL<<(bit%64));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void ClearAll() {
fixed (UInt64* p = bits) Native.Utils.Clear(p, 64);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public Boolean IsSet(Int32 bit) {
fixed (UInt64* p = bits) return ((p[bit/64])&(1UL<<(bit%64))) != 0UL;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 61;
fixed (UInt64* p = bits) hash = hash * 31 + HashCodeUtils.GetArrayHashCode(p, 8);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BitSet512*)ptr;
serializer.Stream.SerializeBuffer(&p->bits[0], 8);
}
}
[StructLayout(LayoutKind.Explicit)]
[Quantum.AssetRefAttribute(typeof(BallPoolSpec))]
[System.SerializableAttribute()]
public unsafe partial struct AssetRefBallPoolSpec : IEquatable<AssetRefBallPoolSpec>, IAssetRef<BallPoolSpec> {
public const Int32 SIZE = 8;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
public AssetGuid Id;
public override String ToString() {
return AssetRef.ToString(Id);
}
public static implicit operator AssetRefBallPoolSpec(BallPoolSpec value) {
var r = default(AssetRefBallPoolSpec);
if (value != null) {
r.Id = value.Guid;
}
return r;
}
public override Boolean Equals(Object obj) {
return obj is AssetRefBallPoolSpec other && Equals(other);
}
public Boolean Equals(AssetRefBallPoolSpec other) {
return Id.Equals(other.Id);
}
public static Boolean operator ==(AssetRefBallPoolSpec a, AssetRefBallPoolSpec b) {
return a.Id == b.Id;
}
public static Boolean operator !=(AssetRefBallPoolSpec a, AssetRefBallPoolSpec b) {
return a.Id != b.Id;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 67;
hash = hash * 31 + Id.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (AssetRefBallPoolSpec*)ptr;
AssetGuid.Serialize(&p->Id, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
[Quantum.AssetRefAttribute(typeof(ConfigAssets))]
[System.SerializableAttribute()]
public unsafe partial struct AssetRefConfigAssets : IEquatable<AssetRefConfigAssets>, IAssetRef<ConfigAssets> {
public const Int32 SIZE = 8;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
public AssetGuid Id;
public override String ToString() {
return AssetRef.ToString(Id);
}
public static implicit operator AssetRefConfigAssets(ConfigAssets value) {
var r = default(AssetRefConfigAssets);
if (value != null) {
r.Id = value.Guid;
}
return r;
}
public override Boolean Equals(Object obj) {
return obj is AssetRefConfigAssets other && Equals(other);
}
public Boolean Equals(AssetRefConfigAssets other) {
return Id.Equals(other.Id);
}
public static Boolean operator ==(AssetRefConfigAssets a, AssetRefConfigAssets b) {
return a.Id == b.Id;
}
public static Boolean operator !=(AssetRefConfigAssets a, AssetRefConfigAssets b) {
return a.Id != b.Id;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 71;
hash = hash * 31 + Id.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (AssetRefConfigAssets*)ptr;
AssetGuid.Serialize(&p->Id, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
[Quantum.AssetRefAttribute(typeof(GameConfig))]
[System.SerializableAttribute()]
public unsafe partial struct AssetRefGameConfig : IEquatable<AssetRefGameConfig>, IAssetRef<GameConfig> {
public const Int32 SIZE = 8;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
public AssetGuid Id;
public override String ToString() {
return AssetRef.ToString(Id);
}
public static implicit operator AssetRefGameConfig(GameConfig value) {
var r = default(AssetRefGameConfig);
if (value != null) {
r.Id = value.Guid;
}
return r;
}
public override Boolean Equals(Object obj) {
return obj is AssetRefGameConfig other && Equals(other);
}
public Boolean Equals(AssetRefGameConfig other) {
return Id.Equals(other.Id);
}
public static Boolean operator ==(AssetRefGameConfig a, AssetRefGameConfig b) {
return a.Id == b.Id;
}
public static Boolean operator !=(AssetRefGameConfig a, AssetRefGameConfig b) {
return a.Id != b.Id;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 73;
hash = hash * 31 + Id.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (AssetRefGameConfig*)ptr;
AssetGuid.Serialize(&p->Id, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
[Quantum.AssetRefAttribute(typeof(TurnConfig))]
[System.SerializableAttribute()]
public unsafe partial struct AssetRefTurnConfig : IEquatable<AssetRefTurnConfig>, IAssetRef<TurnConfig> {
public const Int32 SIZE = 8;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
public AssetGuid Id;
public override String ToString() {
return AssetRef.ToString(Id);
}
public static implicit operator AssetRefTurnConfig(TurnConfig value) {
var r = default(AssetRefTurnConfig);
if (value != null) {
r.Id = value.Guid;
}
return r;
}
public override Boolean Equals(Object obj) {
return obj is AssetRefTurnConfig other && Equals(other);
}
public Boolean Equals(AssetRefTurnConfig other) {
return Id.Equals(other.Id);
}
public static Boolean operator ==(AssetRefTurnConfig a, AssetRefTurnConfig b) {
return a.Id == b.Id;
}
public static Boolean operator !=(AssetRefTurnConfig a, AssetRefTurnConfig b) {
return a.Id != b.Id;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 79;
hash = hash * 31 + Id.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (AssetRefTurnConfig*)ptr;
AssetGuid.Serialize(&p->Id, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
[Quantum.AssetRefAttribute(typeof(UserMap))]
[System.SerializableAttribute()]
public unsafe partial struct AssetRefUserMap : IEquatable<AssetRefUserMap>, IAssetRef<UserMap> {
public const Int32 SIZE = 8;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
public AssetGuid Id;
public override String ToString() {
return AssetRef.ToString(Id);
}
public static implicit operator AssetRefUserMap(UserMap value) {
var r = default(AssetRefUserMap);
if (value != null) {
r.Id = value.Guid;
}
return r;
}
public override Boolean Equals(Object obj) {
return obj is AssetRefUserMap other && Equals(other);
}
public Boolean Equals(AssetRefUserMap other) {
return Id.Equals(other.Id);
}
public static Boolean operator ==(AssetRefUserMap a, AssetRefUserMap b) {
return a.Id == b.Id;
}
public static Boolean operator !=(AssetRefUserMap a, AssetRefUserMap b) {
return a.Id != b.Id;
}
public override Int32 GetHashCode() {
unchecked {
var hash = 83;
hash = hash * 31 + Id.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (AssetRefUserMap*)ptr;
AssetGuid.Serialize(&p->Id, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BallPoolPlayer {
public const Int32 SIZE = 48;
public const Int32 ALIGNMENT = 8;
[FieldOffset(0)]
public PlayerRef Ref;
[FieldOffset(4)]
public QBoolean StripedBalls;
[FieldOffset(8)]
public TurnData TurnStats;
public override Int32 GetHashCode() {
unchecked {
var hash = 89;
hash = hash * 31 + Ref.GetHashCode();
hash = hash * 31 + StripedBalls.GetHashCode();
hash = hash * 31 + TurnStats.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BallPoolPlayer*)ptr;
PlayerRef.Serialize(&p->Ref, serializer);
QBoolean.Serialize(&p->StripedBalls, serializer);
Quantum.TurnData.Serialize(&p->TurnStats, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct Input {
public const Int32 SIZE = 48;
public const Int32 ALIGNMENT = 8;
[FieldOffset(8)]
public FPVector2 BallPosition;
[FieldOffset(24)]
public FPVector3 Direction;
[FieldOffset(0)]
public FP ForceBarMarkPos;
public const int MAX_COUNT = 2;
public override Int32 GetHashCode() {
unchecked {
var hash = 97;
hash = hash * 31 + BallPosition.GetHashCode();
hash = hash * 31 + Direction.GetHashCode();
hash = hash * 31 + ForceBarMarkPos.GetHashCode();
return hash;
}
}
public static Input Read(FrameSerializer serializer) {
Input i = new Input();
Serialize(&i, serializer);
return i;
}
public static void Write(FrameSerializer serializer, Input i) {
Serialize(&i, serializer);
}
public Boolean IsDown(InputButtons button) {
switch (button) {
}
return false;
}
public Boolean WasPressed(InputButtons button) {
switch (button) {
}
return false;
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (Input*)ptr;
FP.Serialize(&p->ForceBarMarkPos, serializer);
FPVector2.Serialize(&p->BallPosition, serializer);
FPVector3.Serialize(&p->Direction, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct TurnData {
public const Int32 SIZE = 40;
public const Int32 ALIGNMENT = 8;
[FieldOffset(24)]
public AssetRefTurnConfig ConfigRef;
[FieldOffset(32)]
public EntityRef Entity;
[FieldOffset(0)]
public Int32 Number;
[FieldOffset(8)]
public PlayerRef Player;
[FieldOffset(12)]
public TurnStatus Status;
[FieldOffset(4)]
public Int32 Ticks;
[FieldOffset(16)]
public TurnType Type;
public override Int32 GetHashCode() {
unchecked {
var hash = 101;
hash = hash * 31 + ConfigRef.GetHashCode();
hash = hash * 31 + Entity.GetHashCode();
hash = hash * 31 + Number.GetHashCode();
hash = hash * 31 + Player.GetHashCode();
hash = hash * 31 + (Int32)Status;
hash = hash * 31 + Ticks.GetHashCode();
hash = hash * 31 + (Int32)Type;
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (TurnData*)ptr;
serializer.Stream.Serialize(&p->Number);
serializer.Stream.Serialize(&p->Ticks);
PlayerRef.Serialize(&p->Player, serializer);
serializer.Stream.Serialize((Int32*)&p->Status);
serializer.Stream.Serialize((Int32*)&p->Type);
Quantum.AssetRefTurnConfig.Serialize(&p->ConfigRef, serializer);
EntityRef.Serialize(&p->Entity, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct _globals_ {
public const Int32 SIZE = 776;
public const Int32 ALIGNMENT = 8;
[FieldOffset(4)]
public QBoolean CapturedEighthBall;
[FieldOffset(120)]
public TurnData CurrentTurn;
[FieldOffset(48)]
public FP DeltaTime;
[FieldOffset(80)]
public FrameMetaData FrameMetaData;
[FieldOffset(8)]
public QBoolean HasFirstCaptured;
[FieldOffset(12)]
public QBoolean IsFirstTurn;
[FieldOffset(32)]
public AssetRefMap Map;
[FieldOffset(56)]
public NavMeshRegionMask NavMeshRegions;
[FieldOffset(480)]
public PhysicsSceneSettings PhysicsSettings;
[FieldOffset(40)]
public BitSet2 PlayerLastConnectionState;
[FieldOffset(16)]
public QBoolean PlayerScoreThisTurn;
[FieldOffset(160)]
[FramePrinter.FixedArrayAttribute(typeof(BallPoolPlayer), 2)]
private fixed Byte _Players_[96];
[FieldOffset(20)]
public QBoolean ReplaceWhiteBall;
[FieldOffset(64)]
public RNGSession RngSession;
[FieldOffset(352)]
public BitSet1024 Systems;
[FieldOffset(0)]
public Int32 TicksResolving;
[FieldOffset(24)]
public QBoolean WhiteBallFirstContact;
[FieldOffset(256)]
[FramePrinter.FixedArrayAttribute(typeof(Input), 2)]
private fixed Byte _input_[96];
public FixedArray<BallPoolPlayer> Players {
get {
fixed (byte* p = _Players_) { return new FixedArray<BallPoolPlayer>(p, 48, 2); }
}
}
public FixedArray<Input> input {
get {
fixed (byte* p = _input_) { return new FixedArray<Input>(p, 48, 2); }
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 103;
hash = hash * 31 + CapturedEighthBall.GetHashCode();
hash = hash * 31 + CurrentTurn.GetHashCode();
hash = hash * 31 + DeltaTime.GetHashCode();
hash = hash * 31 + FrameMetaData.GetHashCode();
hash = hash * 31 + HasFirstCaptured.GetHashCode();
hash = hash * 31 + IsFirstTurn.GetHashCode();
hash = hash * 31 + Map.GetHashCode();
hash = hash * 31 + NavMeshRegions.GetHashCode();
hash = hash * 31 + PhysicsSettings.GetHashCode();
hash = hash * 31 + PlayerLastConnectionState.GetHashCode();
hash = hash * 31 + PlayerScoreThisTurn.GetHashCode();
hash = hash * 31 + HashCodeUtils.GetArrayHashCode(Players);
hash = hash * 31 + ReplaceWhiteBall.GetHashCode();
hash = hash * 31 + RngSession.GetHashCode();
hash = hash * 31 + Systems.GetHashCode();
hash = hash * 31 + TicksResolving.GetHashCode();
hash = hash * 31 + WhiteBallFirstContact.GetHashCode();
hash = hash * 31 + HashCodeUtils.GetArrayHashCode(input);
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (_globals_*)ptr;
serializer.Stream.Serialize(&p->TicksResolving);
QBoolean.Serialize(&p->CapturedEighthBall, serializer);
QBoolean.Serialize(&p->HasFirstCaptured, serializer);
QBoolean.Serialize(&p->IsFirstTurn, serializer);
QBoolean.Serialize(&p->PlayerScoreThisTurn, serializer);
QBoolean.Serialize(&p->ReplaceWhiteBall, serializer);
QBoolean.Serialize(&p->WhiteBallFirstContact, serializer);
AssetRefMap.Serialize(&p->Map, serializer);
Quantum.BitSet2.Serialize(&p->PlayerLastConnectionState, serializer);
FP.Serialize(&p->DeltaTime, serializer);
NavMeshRegionMask.Serialize(&p->NavMeshRegions, serializer);
RNGSession.Serialize(&p->RngSession, serializer);
FrameMetaData.Serialize(&p->FrameMetaData, serializer);
Quantum.TurnData.Serialize(&p->CurrentTurn, serializer);
FixedArray.Serialize(p->Players, serializer, StaticDelegates.SerializeBallPoolPlayer);
FixedArray.Serialize(p->input, serializer, StaticDelegates.SerializeInput);
Quantum.BitSet1024.Serialize(&p->Systems, serializer);
PhysicsSceneSettings.Serialize(&p->PhysicsSettings, serializer);
}
}
[StructLayout(LayoutKind.Explicit)]
public unsafe partial struct BallFields : Quantum.IComponent {
public const Int32 SIZE = 40;
public const Int32 ALIGNMENT = 8;
[FieldOffset(4)]
public QBoolean InTable;
[FieldOffset(0)]
public Int32 Number;
[FieldOffset(16)]
public AssetRefBallPoolSpec Spec;
[FieldOffset(24)]
public FPVector2 Spin;
[FieldOffset(8)]
public QBoolean Striped;
public override Int32 GetHashCode() {
unchecked {
var hash = 107;
hash = hash * 31 + InTable.GetHashCode();
hash = hash * 31 + Number.GetHashCode();
hash = hash * 31 + Spec.GetHashCode();
hash = hash * 31 + Spin.GetHashCode();
hash = hash * 31 + Striped.GetHashCode();
return hash;
}
}
public static void Serialize(void* ptr, FrameSerializer serializer) {
var p = (BallFields*)ptr;
serializer.Stream.Serialize(&p->Number);
QBoolean.Serialize(&p->InTable, serializer);
QBoolean.Serialize(&p->Striped, serializer);
Quantum.AssetRefBallPoolSpec.Serialize(&p->Spec, serializer);
FPVector2.Serialize(&p->Spin, serializer);
}
}
public unsafe partial class Frame {
private ISignalOnBallPoolShot[] _ISignalOnBallPoolShotSystems;
private ISignalOnBallPoolHitHole[] _ISignalOnBallPoolHitHoleSystems;
private ISignalOnTurnEnded[] _ISignalOnTurnEndedSystems;
private ISignalOnPlayCommandReceived[] _ISignalOnPlayCommandReceivedSystems;
private ISignalOnSkipCommandReceived[] _ISignalOnSkipCommandReceivedSystems;
partial void AllocGen() {
_globals = (_globals_*)Context.Allocator.AllocAndClear(sizeof(_globals_));
}
partial void FreeGen() {
Context.Allocator.Free(_globals);
}
partial void CopyFromGen(Frame frame) {
Native.Utils.Copy(_globals, frame._globals, sizeof(_globals_));
}
static partial void InitStaticGen() {
ComponentTypeId.Setup(() => {
ComponentTypeId.Add<Quantum.BallFields>(Quantum.BallFields.Serialize, null, null, ComponentFlags.None);
});
}
partial void InitGen() {
Initialize(this, this.SimulationConfig.Entities);
_ISignalOnBallPoolShotSystems = BuildSignalsArray<ISignalOnBallPoolShot>();
_ISignalOnBallPoolHitHoleSystems = BuildSignalsArray<ISignalOnBallPoolHitHole>();
_ISignalOnTurnEndedSystems = BuildSignalsArray<ISignalOnTurnEnded>();
_ISignalOnPlayCommandReceivedSystems = BuildSignalsArray<ISignalOnPlayCommandReceived>();
_ISignalOnSkipCommandReceivedSystems = BuildSignalsArray<ISignalOnSkipCommandReceived>();
_ComponentSignalsOnAdded = new ComponentReactiveCallbackInvoker[ComponentTypeId.Type.Length];
_ComponentSignalsOnRemoved = new ComponentReactiveCallbackInvoker[ComponentTypeId.Type.Length];
BuildSignalsArrayOnComponentAdded<Quantum.BallFields>();
BuildSignalsArrayOnComponentRemoved<Quantum.BallFields>();
BuildSignalsArrayOnComponentAdded<CharacterController2D>();
BuildSignalsArrayOnComponentRemoved<CharacterController2D>();
BuildSignalsArrayOnComponentAdded<CharacterController3D>();
BuildSignalsArrayOnComponentRemoved<CharacterController3D>();
BuildSignalsArrayOnComponentAdded<MapEntityLink>();
BuildSignalsArrayOnComponentRemoved<MapEntityLink>();
BuildSignalsArrayOnComponentAdded<NavMeshAvoidanceAgent>();
BuildSignalsArrayOnComponentRemoved<NavMeshAvoidanceAgent>();
BuildSignalsArrayOnComponentAdded<NavMeshAvoidanceObstacle>();
BuildSignalsArrayOnComponentRemoved<NavMeshAvoidanceObstacle>();
BuildSignalsArrayOnComponentAdded<NavMeshPathfinder>();
BuildSignalsArrayOnComponentRemoved<NavMeshPathfinder>();
BuildSignalsArrayOnComponentAdded<NavMeshSteeringAgent>();
BuildSignalsArrayOnComponentRemoved<NavMeshSteeringAgent>();
BuildSignalsArrayOnComponentAdded<PhysicsBody2D>();
BuildSignalsArrayOnComponentRemoved<PhysicsBody2D>();
BuildSignalsArrayOnComponentAdded<PhysicsBody3D>();
BuildSignalsArrayOnComponentRemoved<PhysicsBody3D>();
BuildSignalsArrayOnComponentAdded<PhysicsCollider2D>();
BuildSignalsArrayOnComponentRemoved<PhysicsCollider2D>();
BuildSignalsArrayOnComponentAdded<PhysicsCollider3D>();
BuildSignalsArrayOnComponentRemoved<PhysicsCollider3D>();
BuildSignalsArrayOnComponentAdded<Transform2D>();
BuildSignalsArrayOnComponentRemoved<Transform2D>();
BuildSignalsArrayOnComponentAdded<Transform2DVertical>();
BuildSignalsArrayOnComponentRemoved<Transform2DVertical>();
BuildSignalsArrayOnComponentAdded<Transform3D>();
BuildSignalsArrayOnComponentRemoved<Transform3D>();
BuildSignalsArrayOnComponentAdded<View>();
BuildSignalsArrayOnComponentRemoved<View>();
}
public void SetPlayerInput(Int32 player, Input input) {
if ((uint)player >= (uint)_globals->input.Length) { throw new System.ArgumentOutOfRangeException("player"); }
var i = _globals->input.GetPointer(player);
i->Direction = input.Direction;
i->ForceBarMarkPos = input.ForceBarMarkPos;
i->BallPosition = input.BallPosition;
}
public Input* GetPlayerInput(Int32 player) {
if ((uint)player >= (uint)_globals->input.Length) { throw new System.ArgumentOutOfRangeException("player"); }
return _globals->input.GetPointer(player);
}
public unsafe partial struct FrameSignals {
public void OnBallPoolShot(PlayerRef player) {
var array = _f._ISignalOnBallPoolShotSystems;
for (Int32 i = 0; i < array.Length; ++i) {
var s = array[i];
if (_f.SystemIsEnabledInHierarchy((SystemBase)s)) {
s.OnBallPoolShot(_f, player);
}
}
}
public void OnBallPoolHitHole(EntityRef ball) {
var array = _f._ISignalOnBallPoolHitHoleSystems;
for (Int32 i = 0; i < array.Length; ++i) {
var s = array[i];
if (_f.SystemIsEnabledInHierarchy((SystemBase)s)) {
s.OnBallPoolHitHole(_f, ball);
}
}
}
public void OnTurnEnded(TurnData data, TurnEndReason reason) {
var array = _f._ISignalOnTurnEndedSystems;
for (Int32 i = 0; i < array.Length; ++i) {
var s = array[i];
if (_f.SystemIsEnabledInHierarchy((SystemBase)s)) {
s.OnTurnEnded(_f, data, reason);
}
}
}
public void OnPlayCommandReceived(PlayerRef player, PlayCommandData data) {
var array = _f._ISignalOnPlayCommandReceivedSystems;
for (Int32 i = 0; i < array.Length; ++i) {
var s = array[i];
if (_f.SystemIsEnabledInHierarchy((SystemBase)s)) {
s.OnPlayCommandReceived(_f, player, data);
}
}
}
public void OnSkipCommandReceived(PlayerRef player, SkipCommandData data) {
var array = _f._ISignalOnSkipCommandReceivedSystems;
for (Int32 i = 0; i < array.Length; ++i) {
var s = array[i];
if (_f.SystemIsEnabledInHierarchy((SystemBase)s)) {
s.OnSkipCommandReceived(_f, player, data);
}
}
}
}
public unsafe partial struct FrameEvents {
public const Int32 EVENT_TYPE_COUNT = 18;
public static Int32 GetParentEventID(Int32 eventID) {
switch (eventID) {
case EventTurnTypeChanged.ID: return EventTurnEvent.ID;
case EventTurnStatusChanged.ID: return EventTurnEvent.ID;
case EventTurnEnded.ID: return EventTurnEvent.ID;
case EventTurnTimerReset.ID: return EventTurnEvent.ID;
case EventTurnActivated.ID: return EventTurnEvent.ID;
case EventPlayCommandReceived.ID: return EventCommandEvent.ID;
case EventSkipCommandReceived.ID: return EventCommandEvent.ID;
default: return -1;
}
}
public static System.Type GetEventType(Int32 eventID) {
switch (eventID) {
case EventMessage.ID: return typeof(EventMessage);
case EventRemoveBall.ID: return typeof(EventRemoveBall);
case EventEndGame.ID: return typeof(EventEndGame);
case EventReplaceBall.ID: return typeof(EventReplaceBall);
case EventCueHitBall.ID: return typeof(EventCueHitBall);
case EventBallsCollision.ID: return typeof(EventBallsCollision);
case EventBallsHitWall.ID: return typeof(EventBallsHitWall);
case EventBallsHitHole.ID: return typeof(EventBallsHitHole);
case EventGameplayEnded.ID: return typeof(EventGameplayEnded);
case EventTurnEvent.ID: return typeof(EventTurnEvent);
case EventTurnTypeChanged.ID: return typeof(EventTurnTypeChanged);
case EventTurnStatusChanged.ID: return typeof(EventTurnStatusChanged);
case EventTurnEnded.ID: return typeof(EventTurnEnded);
case EventTurnTimerReset.ID: return typeof(EventTurnTimerReset);
case EventTurnActivated.ID: return typeof(EventTurnActivated);
case EventCommandEvent.ID: return typeof(EventCommandEvent);
case EventPlayCommandReceived.ID: return typeof(EventPlayCommandReceived);
case EventSkipCommandReceived.ID: return typeof(EventSkipCommandReceived);
default: throw new System.ArgumentOutOfRangeException("eventID");
}
}
public EventMessage Message(String Header, String Text) {
var ev = _f.Context.AcquireEvent<EventMessage>(EventMessage.ID);
ev.Header = Header;
ev.Text = Text;
_f.AddEvent(ev);
return ev;
}
public EventRemoveBall RemoveBall(Int32 Num) {
var ev = _f.Context.AcquireEvent<EventRemoveBall>(EventRemoveBall.ID);
ev.Num = Num;
_f.AddEvent(ev);
return ev;
}
public EventEndGame EndGame(PlayerRef Winner) {
var ev = _f.Context.AcquireEvent<EventEndGame>(EventEndGame.ID);
ev.Winner = Winner;
_f.AddEvent(ev);
return ev;
}
public EventReplaceBall ReplaceBall() {
var ev = _f.Context.AcquireEvent<EventReplaceBall>(EventReplaceBall.ID);
_f.AddEvent(ev);
return ev;
}
public EventCueHitBall CueHitBall() {
var ev = _f.Context.AcquireEvent<EventCueHitBall>(EventCueHitBall.ID);
_f.AddEvent(ev);
return ev;
}
public EventBallsCollision BallsCollision() {
var ev = _f.Context.AcquireEvent<EventBallsCollision>(EventBallsCollision.ID);
_f.AddEvent(ev);
return ev;
}
public EventBallsHitWall BallsHitWall() {
var ev = _f.Context.AcquireEvent<EventBallsHitWall>(EventBallsHitWall.ID);
_f.AddEvent(ev);
return ev;
}
public EventBallsHitHole BallsHitHole() {
var ev = _f.Context.AcquireEvent<EventBallsHitHole>(EventBallsHitHole.ID);
_f.AddEvent(ev);
return ev;
}
public EventGameplayEnded GameplayEnded() {
if (_f.IsPredicted) return null;
var ev = _f.Context.AcquireEvent<EventGameplayEnded>(EventGameplayEnded.ID);
_f.AddEvent(ev);
return ev;
}
public EventTurnTypeChanged TurnTypeChanged(TurnData Turn, TurnType PreviousType) {
if (_f.IsPredicted) return null;
var ev = _f.Context.AcquireEvent<EventTurnTypeChanged>(EventTurnTypeChanged.ID);
ev.Turn = Turn;
ev.PreviousType = PreviousType;
_f.AddEvent(ev);
return ev;
}
public EventTurnStatusChanged TurnStatusChanged(TurnData Turn, TurnStatus PreviousStatus) {
if (_f.IsPredicted) return null;
var ev = _f.Context.AcquireEvent<EventTurnStatusChanged>(EventTurnStatusChanged.ID);
ev.Turn = Turn;
ev.PreviousStatus = PreviousStatus;
_f.AddEvent(ev);
return ev;
}
public EventTurnEnded TurnEnded(TurnData Turn, TurnEndReason Reason) {
if (_f.IsPredicted) return null;
var ev = _f.Context.AcquireEvent<EventTurnEnded>(EventTurnEnded.ID);
ev.Turn = Turn;
ev.Reason = Reason;
_f.AddEvent(ev);
return ev;
}
public EventTurnTimerReset TurnTimerReset(TurnData Turn) {
if (_f.IsPredicted) return null;
var ev = _f.Context.AcquireEvent<EventTurnTimerReset>(EventTurnTimerReset.ID);
ev.Turn = Turn;
_f.AddEvent(ev);
return ev;
}
public EventTurnActivated TurnActivated(TurnData Turn) {
if (_f.IsPredicted) return null;
var ev = _f.Context.AcquireEvent<EventTurnActivated>(EventTurnActivated.ID);
ev.Turn = Turn;
_f.AddEvent(ev);
return ev;
}
public EventPlayCommandReceived PlayCommandReceived(PlayerRef Player, PlayCommandData Data) {
var ev = _f.Context.AcquireEvent<EventPlayCommandReceived>(EventPlayCommandReceived.ID);
ev.Player = Player;
ev.Data = Data;
_f.AddEvent(ev);
return ev;
}
public EventSkipCommandReceived SkipCommandReceived(PlayerRef Player, SkipCommandData Data) {
var ev = _f.Context.AcquireEvent<EventSkipCommandReceived>(EventSkipCommandReceived.ID);
ev.Player = Player;
ev.Data = Data;
_f.AddEvent(ev);
return ev;
}
}
public unsafe partial struct FrameAssets {
public BallPoolSpec BallPoolSpec(AssetRefBallPoolSpec assetRef) {
return _f.FindAsset<BallPoolSpec>(assetRef.Id);
}
public ConfigAssets ConfigAssets(AssetRefConfigAssets assetRef) {
return _f.FindAsset<ConfigAssets>(assetRef.Id);
}
public GameConfig GameConfig(AssetRefGameConfig assetRef) {
return _f.FindAsset<GameConfig>(assetRef.Id);
}
public UserMap UserMap(AssetRefUserMap assetRef) {
return _f.FindAsset<UserMap>(assetRef.Id);
}
public TurnConfig TurnConfig(AssetRefTurnConfig assetRef) {
return _f.FindAsset<TurnConfig>(assetRef.Id);
}
}
}
public unsafe interface ISignalOnBallPoolShot : ISignal {
void OnBallPoolShot(Frame f, PlayerRef player);
}
public unsafe interface ISignalOnBallPoolHitHole : ISignal {
void OnBallPoolHitHole(Frame f, EntityRef ball);
}
public unsafe interface ISignalOnTurnEnded : ISignal {
void OnTurnEnded(Frame f, TurnData data, TurnEndReason reason);
}
public unsafe interface ISignalOnPlayCommandReceived : ISignal {
void OnPlayCommandReceived(Frame f, PlayerRef player, PlayCommandData data);
}
public unsafe interface ISignalOnSkipCommandReceived : ISignal {
void OnSkipCommandReceived(Frame f, PlayerRef player, SkipCommandData data);
}
public unsafe partial class EventMessage : EventBase {
public new const Int32 ID = 0;
public String Header;
public String Text;
protected EventMessage(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventMessage() :
base(0, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 37;
hash = hash * 31 + Header.GetHashCode();
hash = hash * 31 + Text.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventRemoveBall : EventBase {
public new const Int32 ID = 1;
public Int32 Num;
protected EventRemoveBall(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventRemoveBall() :
base(1, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 41;
hash = hash * 31 + Num.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventEndGame : EventBase {
public new const Int32 ID = 2;
public PlayerRef Winner;
protected EventEndGame(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventEndGame() :
base(2, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 43;
hash = hash * 31 + Winner.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventReplaceBall : EventBase {
public new const Int32 ID = 3;
protected EventReplaceBall(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventReplaceBall() :
base(3, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 47;
return hash;
}
}
}
public unsafe partial class EventCueHitBall : EventBase {
public new const Int32 ID = 4;
protected EventCueHitBall(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventCueHitBall() :
base(4, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 53;
return hash;
}
}
}
public unsafe partial class EventBallsCollision : EventBase {
public new const Int32 ID = 5;
protected EventBallsCollision(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventBallsCollision() :
base(5, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 59;
return hash;
}
}
}
public unsafe partial class EventBallsHitWall : EventBase {
public new const Int32 ID = 6;
protected EventBallsHitWall(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventBallsHitWall() :
base(6, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 61;
return hash;
}
}
}
public unsafe partial class EventBallsHitHole : EventBase {
public new const Int32 ID = 7;
protected EventBallsHitHole(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventBallsHitHole() :
base(7, EventFlags.Server|EventFlags.Client) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 67;
return hash;
}
}
}
public unsafe partial class EventGameplayEnded : EventBase {
public new const Int32 ID = 8;
protected EventGameplayEnded(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventGameplayEnded() :
base(8, EventFlags.Server|EventFlags.Client|EventFlags.Synced) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 71;
return hash;
}
}
}
public abstract unsafe partial class EventTurnEvent : EventBase {
public new const Int32 ID = 9;
public TurnData Turn;
protected EventTurnEvent(Int32 id, EventFlags flags) :
base(id, flags) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 73;
hash = hash * 31 + Turn.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventTurnTypeChanged : EventTurnEvent {
public new const Int32 ID = 10;
public TurnType PreviousType;
protected EventTurnTypeChanged(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventTurnTypeChanged() :
base(10, EventFlags.Server|EventFlags.Client|EventFlags.Synced) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 79;
hash = hash * 31 + Turn.GetHashCode();
hash = hash * 31 + PreviousType.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventTurnStatusChanged : EventTurnEvent {
public new const Int32 ID = 11;
public TurnStatus PreviousStatus;
protected EventTurnStatusChanged(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventTurnStatusChanged() :
base(11, EventFlags.Server|EventFlags.Client|EventFlags.Synced) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 83;
hash = hash * 31 + Turn.GetHashCode();
hash = hash * 31 + PreviousStatus.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventTurnEnded : EventTurnEvent {
public new const Int32 ID = 12;
public TurnEndReason Reason;
protected EventTurnEnded(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventTurnEnded() :
base(12, EventFlags.Server|EventFlags.Client|EventFlags.Synced) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 89;
hash = hash * 31 + Turn.GetHashCode();
hash = hash * 31 + Reason.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventTurnTimerReset : EventTurnEvent {
public new const Int32 ID = 13;
protected EventTurnTimerReset(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventTurnTimerReset() :
base(13, EventFlags.Server|EventFlags.Client|EventFlags.Synced) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 97;
hash = hash * 31 + Turn.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventTurnActivated : EventTurnEvent {
public new const Int32 ID = 14;
protected EventTurnActivated(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventTurnActivated() :
base(14, EventFlags.Server|EventFlags.Client|EventFlags.Synced) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 101;
hash = hash * 31 + Turn.GetHashCode();
return hash;
}
}
}
public abstract unsafe partial class EventCommandEvent : EventBase {
public new const Int32 ID = 15;
public PlayerRef Player;
protected EventCommandEvent(Int32 id, EventFlags flags) :
base(id, flags) {
}
public new QuantumGame Game {
get {
return (QuantumGame)base.Game;
}
set {
base.Game = value;
}
}
public override Int32 GetHashCode() {
unchecked {
var hash = 103;
hash = hash * 31 + Player.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventPlayCommandReceived : EventCommandEvent {
public new const Int32 ID = 16;
public PlayCommandData Data;
protected EventPlayCommandReceived(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventPlayCommandReceived() :
base(16, EventFlags.Server|EventFlags.Client) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 107;
hash = hash * 31 + Player.GetHashCode();
hash = hash * 31 + Data.GetHashCode();
return hash;
}
}
}
public unsafe partial class EventSkipCommandReceived : EventCommandEvent {
public new const Int32 ID = 17;
public SkipCommandData Data;
protected EventSkipCommandReceived(Int32 id, EventFlags flags) :
base(id, flags) {
}
public EventSkipCommandReceived() :
base(17, EventFlags.Server|EventFlags.Client) {
}
public override Int32 GetHashCode() {
unchecked {
var hash = 109;
hash = hash * 31 + Player.GetHashCode();
hash = hash * 31 + Data.GetHashCode();
return hash;
}
}
}
public static unsafe partial class BitStreamExtensions {
public static void Serialize(this IBitStream stream, ref AssetRefBallPoolSpec value) {
stream.Serialize(ref value.Id.Value);
}
public static void Serialize(this IBitStream stream, ref AssetRefConfigAssets value) {
stream.Serialize(ref value.Id.Value);
}
public static void Serialize(this IBitStream stream, ref AssetRefGameConfig value) {
stream.Serialize(ref value.Id.Value);
}
public static void Serialize(this IBitStream stream, ref AssetRefTurnConfig value) {
stream.Serialize(ref value.Id.Value);
}
public static void Serialize(this IBitStream stream, ref AssetRefUserMap value) {
stream.Serialize(ref value.Id.Value);
}
}
[System.SerializableAttribute()]
public unsafe partial class BallPoolSpec : AssetObject {
}
[System.SerializableAttribute()]
public unsafe partial class ConfigAssets : AssetObject {
}
[System.SerializableAttribute()]
public unsafe partial class GameConfig : AssetObject {
}
[System.SerializableAttribute()]
public unsafe partial class UserMap : AssetObject {
}
[System.SerializableAttribute()]
public unsafe partial class TurnConfig : AssetObject {
}
public unsafe partial class ComponentPrototypeVisitor : Prototypes.ComponentPrototypeVisitorBase {
public virtual void Visit(Prototypes.BallFields_Prototype prototype) {
VisitFallback(prototype);
}
}
public static unsafe partial class Constants {
public const Int32 MAX_PLAYERS = 2;
}
public static unsafe partial class StaticDelegates {
public static FrameSerializer.Delegate SerializeBallPoolPlayer;
public static FrameSerializer.Delegate SerializeInput;
static partial void InitGen() {
SerializeBallPoolPlayer = Quantum.BallPoolPlayer.Serialize;
SerializeInput = Quantum.Input.Serialize;
}
}
public unsafe partial class TypeRegistry {
partial void AddGenerated() {
Register(typeof(AssetGuid), AssetGuid.SIZE);
Register(typeof(Quantum.AssetRefBallPoolSpec), Quantum.AssetRefBallPoolSpec.SIZE);
Register(typeof(AssetRefCharacterController2DConfig), AssetRefCharacterController2DConfig.SIZE);
Register(typeof(AssetRefCharacterController3DConfig), AssetRefCharacterController3DConfig.SIZE);
Register(typeof(Quantum.AssetRefConfigAssets), Quantum.AssetRefConfigAssets.SIZE);
Register(typeof(AssetRefEntityPrototype), AssetRefEntityPrototype.SIZE);
Register(typeof(AssetRefEntityView), AssetRefEntityView.SIZE);
Register(typeof(Quantum.AssetRefGameConfig), Quantum.AssetRefGameConfig.SIZE);
Register(typeof(AssetRefMap), AssetRefMap.SIZE);
Register(typeof(AssetRefNavMesh), AssetRefNavMesh.SIZE);
Register(typeof(AssetRefNavMeshAgentConfig), AssetRefNavMeshAgentConfig.SIZE);
Register(typeof(AssetRefPhysicsMaterial), AssetRefPhysicsMaterial.SIZE);
Register(typeof(AssetRefPolygonCollider), AssetRefPolygonCollider.SIZE);
Register(typeof(AssetRefTerrainCollider), AssetRefTerrainCollider.SIZE);
Register(typeof(Quantum.AssetRefTurnConfig), Quantum.AssetRefTurnConfig.SIZE);
Register(typeof(Quantum.AssetRefUserMap), Quantum.AssetRefUserMap.SIZE);
Register(typeof(Quantum.BallFields), Quantum.BallFields.SIZE);
Register(typeof(Quantum.BallPoolPlayer), Quantum.BallPoolPlayer.SIZE);
Register(typeof(Quantum.BitSet1024), Quantum.BitSet1024.SIZE);
Register(typeof(Quantum.BitSet128), Quantum.BitSet128.SIZE);
Register(typeof(Quantum.BitSet2), Quantum.BitSet2.SIZE);
Register(typeof(Quantum.BitSet2048), Quantum.BitSet2048.SIZE);
Register(typeof(Quantum.BitSet256), Quantum.BitSet256.SIZE);
Register(typeof(Quantum.BitSet4096), Quantum.BitSet4096.SIZE);
Register(typeof(Quantum.BitSet512), Quantum.BitSet512.SIZE);
Register(typeof(Button), Button.SIZE);
Register(typeof(CharacterController2D), CharacterController2D.SIZE);
Register(typeof(CharacterController3D), CharacterController3D.SIZE);
Register(typeof(ColorRGBA), ColorRGBA.SIZE);
Register(typeof(ComponentPrototypeRef), ComponentPrototypeRef.SIZE);
Register(typeof(DistanceJoint), DistanceJoint.SIZE);
Register(typeof(DistanceJoint3D), DistanceJoint3D.SIZE);
Register(typeof(EntityPrototypeRef), EntityPrototypeRef.SIZE);
Register(typeof(EntityRef), EntityRef.SIZE);
Register(typeof(FP), FP.SIZE);
Register(typeof(FPBounds2), FPBounds2.SIZE);
Register(typeof(FPBounds3), FPBounds3.SIZE);
Register(typeof(FPMatrix2x2), FPMatrix2x2.SIZE);
Register(typeof(FPMatrix3x3), FPMatrix3x3.SIZE);
Register(typeof(FPMatrix4x4), FPMatrix4x4.SIZE);
Register(typeof(FPQuaternion), FPQuaternion.SIZE);
Register(typeof(FPVector2), FPVector2.SIZE);
Register(typeof(FPVector3), FPVector3.SIZE);
Register(typeof(FrameMetaData), FrameMetaData.SIZE);
Register(typeof(HingeJoint), HingeJoint.SIZE);
Register(typeof(HingeJoint3D), HingeJoint3D.SIZE);
Register(typeof(Hit), Hit.SIZE);
Register(typeof(Hit3D), Hit3D.SIZE);
Register(typeof(Quantum.Input), Quantum.Input.SIZE);
Register(typeof(Quantum.InputButtons), 4);
Register(typeof(Joint), Joint.SIZE);
Register(typeof(Joint3D), Joint3D.SIZE);
Register(typeof(LayerMask), LayerMask.SIZE);
Register(typeof(MapEntityId), MapEntityId.SIZE);
Register(typeof(MapEntityLink), MapEntityLink.SIZE);
Register(typeof(NavMeshAvoidanceAgent), NavMeshAvoidanceAgent.SIZE);
Register(typeof(NavMeshAvoidanceObstacle), NavMeshAvoidanceObstacle.SIZE);
Register(typeof(NavMeshPathfinder), NavMeshPathfinder.SIZE);
Register(typeof(NavMeshRegionMask), NavMeshRegionMask.SIZE);
Register(typeof(NavMeshSteeringAgent), NavMeshSteeringAgent.SIZE);
Register(typeof(NullableFP), NullableFP.SIZE);
Register(typeof(NullableFPVector2), NullableFPVector2.SIZE);
Register(typeof(NullableFPVector3), NullableFPVector3.SIZE);
Register(typeof(NullableNonNegativeFP), NullableNonNegativeFP.SIZE);
Register(typeof(PhysicsBody2D), PhysicsBody2D.SIZE);
Register(typeof(PhysicsBody3D), PhysicsBody3D.SIZE);
Register(typeof(PhysicsCollider2D), PhysicsCollider2D.SIZE);
Register(typeof(PhysicsCollider3D), PhysicsCollider3D.SIZE);
Register(typeof(PhysicsSceneSettings), PhysicsSceneSettings.SIZE);
Register(typeof(PlayerRef), PlayerRef.SIZE);
Register(typeof(Ptr), Ptr.SIZE);
Register(typeof(QBoolean), QBoolean.SIZE);
Register(typeof(Quantum.Ptr), Quantum.Ptr.SIZE);
Register(typeof(RNGSession), RNGSession.SIZE);
Register(typeof(Shape2D), Shape2D.SIZE);
Register(typeof(Shape3D), Shape3D.SIZE);
Register(typeof(SpringJoint), SpringJoint.SIZE);
Register(typeof(SpringJoint3D), SpringJoint3D.SIZE);
Register(typeof(Transform2D), Transform2D.SIZE);
Register(typeof(Transform2DVertical), Transform2DVertical.SIZE);
Register(typeof(Transform3D), Transform3D.SIZE);
Register(typeof(Quantum.TurnData), Quantum.TurnData.SIZE);
Register(typeof(Quantum.TurnEndReason), 4);
Register(typeof(Quantum.TurnStatus), 4);
Register(typeof(Quantum.TurnType), 4);
Register(typeof(View), View.SIZE);
Register(typeof(Quantum._globals_), Quantum._globals_.SIZE);
}
}
public unsafe partial class FramePrinterGen {
public static void EnsureNotStripped() {
FramePrinter.EnsurePrimitiveNotStripped<Quantum.AssetRefBallPoolSpec>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.AssetRefConfigAssets>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.AssetRefGameConfig>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.AssetRefTurnConfig>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.AssetRefUserMap>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.InputButtons>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.TurnEndReason>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.TurnStatus>();
FramePrinter.EnsurePrimitiveNotStripped<Quantum.TurnType>();
}
}
}
namespace Quantum.Prototypes {
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Photon.Deterministic;
using Quantum.Core;
using Quantum.Collections;
using Quantum.Inspector;
using Quantum.Physics2D;
using Quantum.Physics3D;
using Optional = Quantum.Inspector.OptionalAttribute;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
[System.SerializableAttribute()]
[Prototype(typeof(TurnEndReason))]
public unsafe partial struct TurnEndReason_Prototype {
public Int32 Value;
public static implicit operator TurnEndReason(TurnEndReason_Prototype value) {
return (TurnEndReason)value.Value;
}
public static implicit operator TurnEndReason_Prototype(TurnEndReason value) {
return new TurnEndReason_Prototype() { Value = (Int32)value };
}
}
[System.SerializableAttribute()]
[Prototype(typeof(TurnStatus))]
public unsafe partial struct TurnStatus_Prototype {
public Int32 Value;
public static implicit operator TurnStatus(TurnStatus_Prototype value) {
return (TurnStatus)value.Value;
}
public static implicit operator TurnStatus_Prototype(TurnStatus value) {
return new TurnStatus_Prototype() { Value = (Int32)value };
}
}
[System.SerializableAttribute()]
[Prototype(typeof(TurnType))]
public unsafe partial struct TurnType_Prototype {
public Int32 Value;
public static implicit operator TurnType(TurnType_Prototype value) {
return (TurnType)value.Value;
}
public static implicit operator TurnType_Prototype(TurnType value) {
return new TurnType_Prototype() { Value = (Int32)value };
}
}
[System.SerializableAttribute()]
[Prototype(typeof(InputButtons))]
public unsafe partial struct InputButtons_Prototype {
public Int32 Value;
public static implicit operator InputButtons(InputButtons_Prototype value) {
return (InputButtons)value.Value;
}
public static implicit operator InputButtons_Prototype(InputButtons value) {
return new InputButtons_Prototype() { Value = (Int32)value };
}
}
[System.SerializableAttribute()]
[Prototype(typeof(BallFields))]
public sealed unsafe partial class BallFields_Prototype : ComponentPrototype<BallFields> {
public FPVector2 Spin;
public Int32 Number;
public QBoolean Striped;
public AssetRefBallPoolSpec Spec;
public QBoolean InTable;
partial void MaterializeUser(Frame frame, ref BallFields result, in PrototypeMaterializationContext context);
public override Boolean AddToEntity(FrameBase f, EntityRef entity, in PrototypeMaterializationContext context) {
BallFields component = default;
Materialize((Frame)f, ref component, in context);
return f.Set(entity, component) == SetResult.ComponentAdded;
}
public void Materialize(Frame frame, ref BallFields result, in PrototypeMaterializationContext context) {
result.InTable = this.InTable;
result.Number = this.Number;
result.Spec = this.Spec;
result.Spin = this.Spin;
result.Striped = this.Striped;
MaterializeUser(frame, ref result, in context);
}
public override void Dispatch(ComponentPrototypeVisitorBase visitor) {
((ComponentPrototypeVisitor)visitor).Visit(this);
}
}
[System.SerializableAttribute()]
[Prototype(typeof(BallPoolPlayer))]
public sealed unsafe partial class BallPoolPlayer_Prototype : StructPrototype {
public PlayerRef Ref;
public TurnData_Prototype TurnStats;
public QBoolean StripedBalls;
partial void MaterializeUser(Frame frame, ref BallPoolPlayer result, in PrototypeMaterializationContext context);
public void Materialize(Frame frame, ref BallPoolPlayer result, in PrototypeMaterializationContext context) {
result.Ref = this.Ref;
result.StripedBalls = this.StripedBalls;
this.TurnStats.Materialize(frame, ref result.TurnStats, in context);
MaterializeUser(frame, ref result, in context);
}
}
[System.SerializableAttribute()]
[Prototype(typeof(Input))]
public sealed unsafe partial class Input_Prototype : StructPrototype {
public FPVector3 Direction;
public FP ForceBarMarkPos;
public FPVector2 BallPosition;
partial void MaterializeUser(Frame frame, ref Input result, in PrototypeMaterializationContext context);
public void Materialize(Frame frame, ref Input result, in PrototypeMaterializationContext context) {
result.BallPosition = this.BallPosition;
result.Direction = this.Direction;
result.ForceBarMarkPos = this.ForceBarMarkPos;
MaterializeUser(frame, ref result, in context);
}
}
[System.SerializableAttribute()]
[Prototype(typeof(TurnData))]
public sealed unsafe partial class TurnData_Prototype : StructPrototype {
public PlayerRef Player;
public MapEntityId Entity;
public AssetRefTurnConfig ConfigRef;
public TurnType_Prototype Type;
public TurnStatus_Prototype Status;
public Int32 Number;
public Int32 Ticks;
partial void MaterializeUser(Frame frame, ref TurnData result, in PrototypeMaterializationContext context);
public void Materialize(Frame frame, ref TurnData result, in PrototypeMaterializationContext context) {
result.ConfigRef = this.ConfigRef;
PrototypeValidator.FindMapEntity(this.Entity, in context, out result.Entity);
result.Number = this.Number;
result.Player = this.Player;
result.Status = this.Status;
result.Ticks = this.Ticks;
result.Type = this.Type;
MaterializeUser(frame, ref result, in context);
}
}
public unsafe partial class FlatEntityPrototypeContainer {
[ArrayLength(0, 1)]
public List<Prototypes.BallFields_Prototype> BallFields;
partial void CollectGen(List<ComponentPrototype> target) {
Collect(BallFields, target);
}
public unsafe partial class StoreVisitor {
public override void Visit(Prototypes.BallFields_Prototype prototype) {
Storage.Store(prototype, ref Storage.BallFields);
}
}
}
}
#pragma warning restore 0649
#pragma warning restore 1522
#pragma warning restore 0414
#pragma warning restore 0219
#pragma warning restore 0109
|