rlbot-flatbuffers 0.18.5__cp310-abi3-win_amd64.whl → 0.18.6__cp310-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rlbot_flatbuffers/__init__.pyi +248 -62
- rlbot_flatbuffers/rlbot_flatbuffers.pyd +0 -0
- {rlbot_flatbuffers-0.18.5.dist-info → rlbot_flatbuffers-0.18.6.dist-info}/METADATA +1 -1
- rlbot_flatbuffers-0.18.6.dist-info/RECORD +8 -0
- {rlbot_flatbuffers-0.18.5.dist-info → rlbot_flatbuffers-0.18.6.dist-info}/WHEEL +1 -1
- rlbot_flatbuffers-0.18.5.dist-info/RECORD +0 -8
- {rlbot_flatbuffers-0.18.5.dist-info → rlbot_flatbuffers-0.18.6.dist-info}/licenses/LICENSE +0 -0
rlbot_flatbuffers/__init__.pyi
CHANGED
|
@@ -1570,7 +1570,10 @@ class BoostPadState:
|
|
|
1570
1570
|
self,
|
|
1571
1571
|
is_active: bool = False,
|
|
1572
1572
|
timer: float = 0.0,
|
|
1573
|
-
) -> None:
|
|
1573
|
+
) -> None:
|
|
1574
|
+
"""
|
|
1575
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1576
|
+
"""
|
|
1574
1577
|
def __str__(self) -> str: ...
|
|
1575
1578
|
def __repr__(self) -> str: ...
|
|
1576
1579
|
|
|
@@ -1604,7 +1607,10 @@ class Color:
|
|
|
1604
1607
|
g: int = 0,
|
|
1605
1608
|
b: int = 0,
|
|
1606
1609
|
a: int = 255,
|
|
1607
|
-
) -> None:
|
|
1610
|
+
) -> None:
|
|
1611
|
+
"""
|
|
1612
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1613
|
+
"""
|
|
1608
1614
|
def __str__(self) -> str: ...
|
|
1609
1615
|
def __repr__(self) -> str: ...
|
|
1610
1616
|
|
|
@@ -1688,7 +1694,10 @@ class ControllerState:
|
|
|
1688
1694
|
boost: bool = False,
|
|
1689
1695
|
handbrake: bool = False,
|
|
1690
1696
|
use_item: bool = False,
|
|
1691
|
-
) -> None:
|
|
1697
|
+
) -> None:
|
|
1698
|
+
"""
|
|
1699
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1700
|
+
"""
|
|
1692
1701
|
def __str__(self) -> str: ...
|
|
1693
1702
|
def __repr__(self) -> str: ...
|
|
1694
1703
|
|
|
@@ -1710,7 +1719,10 @@ class Float:
|
|
|
1710
1719
|
def __init__(
|
|
1711
1720
|
self,
|
|
1712
1721
|
val: float = 0.0,
|
|
1713
|
-
) -> None:
|
|
1722
|
+
) -> None:
|
|
1723
|
+
"""
|
|
1724
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1725
|
+
"""
|
|
1714
1726
|
def __str__(self) -> str: ...
|
|
1715
1727
|
def __repr__(self) -> str: ...
|
|
1716
1728
|
|
|
@@ -1749,7 +1761,10 @@ class Rotator:
|
|
|
1749
1761
|
pitch: float = 0.0,
|
|
1750
1762
|
yaw: float = 0.0,
|
|
1751
1763
|
roll: float = 0.0,
|
|
1752
|
-
) -> None:
|
|
1764
|
+
) -> None:
|
|
1765
|
+
"""
|
|
1766
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1767
|
+
"""
|
|
1753
1768
|
def __str__(self) -> str: ...
|
|
1754
1769
|
def __repr__(self) -> str: ...
|
|
1755
1770
|
|
|
@@ -1816,7 +1831,10 @@ class ScoreInfo:
|
|
|
1816
1831
|
saves: int = 0,
|
|
1817
1832
|
shots: int = 0,
|
|
1818
1833
|
demolitions: int = 0,
|
|
1819
|
-
) -> None:
|
|
1834
|
+
) -> None:
|
|
1835
|
+
"""
|
|
1836
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1837
|
+
"""
|
|
1820
1838
|
def __str__(self) -> str: ...
|
|
1821
1839
|
def __repr__(self) -> str: ...
|
|
1822
1840
|
|
|
@@ -1850,7 +1868,10 @@ class TeamInfo:
|
|
|
1850
1868
|
self,
|
|
1851
1869
|
team_index: int = 0,
|
|
1852
1870
|
score: int = 0,
|
|
1853
|
-
) -> None:
|
|
1871
|
+
) -> None:
|
|
1872
|
+
"""
|
|
1873
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1874
|
+
"""
|
|
1854
1875
|
def __str__(self) -> str: ...
|
|
1855
1876
|
def __repr__(self) -> str: ...
|
|
1856
1877
|
|
|
@@ -1876,7 +1897,10 @@ class Vector2:
|
|
|
1876
1897
|
self,
|
|
1877
1898
|
x: float = 0.0,
|
|
1878
1899
|
y: float = 0.0,
|
|
1879
|
-
) -> None:
|
|
1900
|
+
) -> None:
|
|
1901
|
+
"""
|
|
1902
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1903
|
+
"""
|
|
1880
1904
|
def __str__(self) -> str: ...
|
|
1881
1905
|
def __repr__(self) -> str: ...
|
|
1882
1906
|
|
|
@@ -1907,7 +1931,10 @@ class Vector3:
|
|
|
1907
1931
|
x: float = 0.0,
|
|
1908
1932
|
y: float = 0.0,
|
|
1909
1933
|
z: float = 0.0,
|
|
1910
|
-
) -> None:
|
|
1934
|
+
) -> None:
|
|
1935
|
+
"""
|
|
1936
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1937
|
+
"""
|
|
1911
1938
|
def __str__(self) -> str: ...
|
|
1912
1939
|
def __repr__(self) -> str: ...
|
|
1913
1940
|
|
|
@@ -1941,7 +1968,10 @@ class Physics:
|
|
|
1941
1968
|
rotation: Rotator = Rotator(),
|
|
1942
1969
|
velocity: Vector3 = Vector3(),
|
|
1943
1970
|
angular_velocity: Vector3 = Vector3(),
|
|
1944
|
-
) -> None:
|
|
1971
|
+
) -> None:
|
|
1972
|
+
"""
|
|
1973
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
1974
|
+
"""
|
|
1945
1975
|
def __str__(self) -> str: ...
|
|
1946
1976
|
def __repr__(self) -> str: ...
|
|
1947
1977
|
|
|
@@ -1974,7 +2004,10 @@ class PredictionSlice:
|
|
|
1974
2004
|
self,
|
|
1975
2005
|
game_seconds: float = 0.0,
|
|
1976
2006
|
physics: Physics = Physics(),
|
|
1977
|
-
) -> None:
|
|
2007
|
+
) -> None:
|
|
2008
|
+
"""
|
|
2009
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2010
|
+
"""
|
|
1978
2011
|
def __str__(self) -> str: ...
|
|
1979
2012
|
def __repr__(self) -> str: ...
|
|
1980
2013
|
|
|
@@ -2065,7 +2098,10 @@ class PlayerLoadout:
|
|
|
2065
2098
|
loadout_paint: LoadoutPaint | None = None,
|
|
2066
2099
|
primary_color_lookup: Color | None = None,
|
|
2067
2100
|
secondary_color_lookup: Color | None = None,
|
|
2068
|
-
) -> None:
|
|
2101
|
+
) -> None:
|
|
2102
|
+
"""
|
|
2103
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2104
|
+
"""
|
|
2069
2105
|
def pack(self) -> bytes:
|
|
2070
2106
|
"""
|
|
2071
2107
|
Serializes this instance into a byte array
|
|
@@ -2114,7 +2150,10 @@ class RenderAnchor:
|
|
|
2114
2150
|
self,
|
|
2115
2151
|
world: Vector3 = Vector3(),
|
|
2116
2152
|
relative: BallAnchor | CarAnchor | None = None,
|
|
2117
|
-
) -> None:
|
|
2153
|
+
) -> None:
|
|
2154
|
+
"""
|
|
2155
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2156
|
+
"""
|
|
2118
2157
|
def pack(self) -> bytes:
|
|
2119
2158
|
"""
|
|
2120
2159
|
Serializes this instance into a byte array
|
|
@@ -2158,7 +2197,10 @@ class BoxShape:
|
|
|
2158
2197
|
length: float = 0.0,
|
|
2159
2198
|
width: float = 0.0,
|
|
2160
2199
|
height: float = 0.0,
|
|
2161
|
-
) -> None:
|
|
2200
|
+
) -> None:
|
|
2201
|
+
"""
|
|
2202
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2203
|
+
"""
|
|
2162
2204
|
def pack(self) -> bytes:
|
|
2163
2205
|
"""
|
|
2164
2206
|
Serializes this instance into a byte array
|
|
@@ -2240,7 +2282,10 @@ class MatchComm:
|
|
|
2240
2282
|
team_only: bool = False,
|
|
2241
2283
|
display: str | None = None,
|
|
2242
2284
|
content: bytes = bytes(),
|
|
2243
|
-
) -> None:
|
|
2285
|
+
) -> None:
|
|
2286
|
+
"""
|
|
2287
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2288
|
+
"""
|
|
2244
2289
|
def pack(self) -> bytes:
|
|
2245
2290
|
"""
|
|
2246
2291
|
Serializes this instance into a byte array
|
|
@@ -2311,7 +2356,10 @@ class RenderingStatus:
|
|
|
2311
2356
|
index: int = 0,
|
|
2312
2357
|
is_bot: bool = False,
|
|
2313
2358
|
status: bool = False,
|
|
2314
|
-
) -> None:
|
|
2359
|
+
) -> None:
|
|
2360
|
+
"""
|
|
2361
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2362
|
+
"""
|
|
2315
2363
|
def pack(self) -> bytes:
|
|
2316
2364
|
"""
|
|
2317
2365
|
Serializes this instance into a byte array
|
|
@@ -2360,7 +2408,10 @@ class DesiredPhysics:
|
|
|
2360
2408
|
rotation: RotatorPartial | None = None,
|
|
2361
2409
|
velocity: Vector3Partial | None = None,
|
|
2362
2410
|
angular_velocity: Vector3Partial | None = None,
|
|
2363
|
-
) -> None:
|
|
2411
|
+
) -> None:
|
|
2412
|
+
"""
|
|
2413
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2414
|
+
"""
|
|
2364
2415
|
def pack(self) -> bytes:
|
|
2365
2416
|
"""
|
|
2366
2417
|
Serializes this instance into a byte array
|
|
@@ -2514,7 +2565,10 @@ class MatchConfiguration:
|
|
|
2514
2565
|
enable_state_setting: bool = False,
|
|
2515
2566
|
auto_save_replay: bool = False,
|
|
2516
2567
|
freeplay: bool = False,
|
|
2517
|
-
) -> None:
|
|
2568
|
+
) -> None:
|
|
2569
|
+
"""
|
|
2570
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2571
|
+
"""
|
|
2518
2572
|
def pack(self) -> bytes:
|
|
2519
2573
|
"""
|
|
2520
2574
|
Serializes this instance into a byte array
|
|
@@ -2576,7 +2630,10 @@ class ConnectionSettings:
|
|
|
2576
2630
|
wants_ball_predictions: bool = False,
|
|
2577
2631
|
wants_comms: bool = False,
|
|
2578
2632
|
close_between_matches: bool = False,
|
|
2579
|
-
) -> None:
|
|
2633
|
+
) -> None:
|
|
2634
|
+
"""
|
|
2635
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2636
|
+
"""
|
|
2580
2637
|
def pack(self) -> bytes:
|
|
2581
2638
|
"""
|
|
2582
2639
|
Serializes this instance into a byte array
|
|
@@ -2612,7 +2669,10 @@ class ConsoleCommand:
|
|
|
2612
2669
|
def __init__(
|
|
2613
2670
|
self,
|
|
2614
2671
|
command: str = "",
|
|
2615
|
-
) -> None:
|
|
2672
|
+
) -> None:
|
|
2673
|
+
"""
|
|
2674
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2675
|
+
"""
|
|
2616
2676
|
def pack(self) -> bytes:
|
|
2617
2677
|
"""
|
|
2618
2678
|
Serializes this instance into a byte array
|
|
@@ -2659,7 +2719,10 @@ class ControllableInfo:
|
|
|
2659
2719
|
self,
|
|
2660
2720
|
index: int = 0,
|
|
2661
2721
|
identifier: int = 0,
|
|
2662
|
-
) -> None:
|
|
2722
|
+
) -> None:
|
|
2723
|
+
"""
|
|
2724
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2725
|
+
"""
|
|
2663
2726
|
def pack(self) -> bytes:
|
|
2664
2727
|
"""
|
|
2665
2728
|
Serializes this instance into a byte array
|
|
@@ -2699,7 +2762,10 @@ class CylinderShape:
|
|
|
2699
2762
|
self,
|
|
2700
2763
|
diameter: float = 0.0,
|
|
2701
2764
|
height: float = 0.0,
|
|
2702
|
-
) -> None:
|
|
2765
|
+
) -> None:
|
|
2766
|
+
"""
|
|
2767
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2768
|
+
"""
|
|
2703
2769
|
def pack(self) -> bytes:
|
|
2704
2770
|
"""
|
|
2705
2771
|
Serializes this instance into a byte array
|
|
@@ -2779,7 +2845,10 @@ class LoadoutPaint:
|
|
|
2779
2845
|
hat_paint_id: int = 0,
|
|
2780
2846
|
trails_paint_id: int = 0,
|
|
2781
2847
|
goal_explosion_paint_id: int = 0,
|
|
2782
|
-
) -> None:
|
|
2848
|
+
) -> None:
|
|
2849
|
+
"""
|
|
2850
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2851
|
+
"""
|
|
2783
2852
|
def pack(self) -> bytes:
|
|
2784
2853
|
"""
|
|
2785
2854
|
Serializes this instance into a byte array
|
|
@@ -2815,7 +2884,10 @@ class RemoveRenderGroup:
|
|
|
2815
2884
|
def __init__(
|
|
2816
2885
|
self,
|
|
2817
2886
|
id: int = 0,
|
|
2818
|
-
) -> None:
|
|
2887
|
+
) -> None:
|
|
2888
|
+
"""
|
|
2889
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2890
|
+
"""
|
|
2819
2891
|
def pack(self) -> bytes:
|
|
2820
2892
|
"""
|
|
2821
2893
|
Serializes this instance into a byte array
|
|
@@ -2885,7 +2957,10 @@ class ScriptConfiguration:
|
|
|
2885
2957
|
run_command: str = "",
|
|
2886
2958
|
script_id: int = 0,
|
|
2887
2959
|
agent_id: str = "",
|
|
2888
|
-
) -> None:
|
|
2960
|
+
) -> None:
|
|
2961
|
+
"""
|
|
2962
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
2963
|
+
"""
|
|
2889
2964
|
def pack(self) -> bytes:
|
|
2890
2965
|
"""
|
|
2891
2966
|
Serializes this instance into a byte array
|
|
@@ -2921,7 +2996,10 @@ class SphereShape:
|
|
|
2921
2996
|
def __init__(
|
|
2922
2997
|
self,
|
|
2923
2998
|
diameter: float = 0.0,
|
|
2924
|
-
) -> None:
|
|
2999
|
+
) -> None:
|
|
3000
|
+
"""
|
|
3001
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3002
|
+
"""
|
|
2925
3003
|
def pack(self) -> bytes:
|
|
2926
3004
|
"""
|
|
2927
3005
|
Serializes this instance into a byte array
|
|
@@ -2956,7 +3034,10 @@ class StartCommand:
|
|
|
2956
3034
|
def __init__(
|
|
2957
3035
|
self,
|
|
2958
3036
|
config_path: str = "",
|
|
2959
|
-
) -> None:
|
|
3037
|
+
) -> None:
|
|
3038
|
+
"""
|
|
3039
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3040
|
+
"""
|
|
2960
3041
|
def pack(self) -> bytes:
|
|
2961
3042
|
"""
|
|
2962
3043
|
Serializes this instance into a byte array
|
|
@@ -2991,7 +3072,10 @@ class StopCommand:
|
|
|
2991
3072
|
def __init__(
|
|
2992
3073
|
self,
|
|
2993
3074
|
shutdown_server: bool = False,
|
|
2994
|
-
) -> None:
|
|
3075
|
+
) -> None:
|
|
3076
|
+
"""
|
|
3077
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3078
|
+
"""
|
|
2995
3079
|
def pack(self) -> bytes:
|
|
2996
3080
|
"""
|
|
2997
3081
|
Serializes this instance into a byte array
|
|
@@ -3038,7 +3122,10 @@ class BallAnchor:
|
|
|
3038
3122
|
self,
|
|
3039
3123
|
index: int = 0,
|
|
3040
3124
|
local: Vector3 = Vector3(),
|
|
3041
|
-
) -> None:
|
|
3125
|
+
) -> None:
|
|
3126
|
+
"""
|
|
3127
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3128
|
+
"""
|
|
3042
3129
|
def pack(self) -> bytes:
|
|
3043
3130
|
"""
|
|
3044
3131
|
Serializes this instance into a byte array
|
|
@@ -3078,7 +3165,10 @@ class BallPrediction:
|
|
|
3078
3165
|
def __init__(
|
|
3079
3166
|
self,
|
|
3080
3167
|
slices: Sequence[PredictionSlice] = [],
|
|
3081
|
-
) -> None:
|
|
3168
|
+
) -> None:
|
|
3169
|
+
"""
|
|
3170
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3171
|
+
"""
|
|
3082
3172
|
def pack(self) -> bytes:
|
|
3083
3173
|
"""
|
|
3084
3174
|
Serializes this instance into a byte array
|
|
@@ -3125,7 +3215,10 @@ class BoostPad:
|
|
|
3125
3215
|
self,
|
|
3126
3216
|
location: Vector3 = Vector3(),
|
|
3127
3217
|
is_full_boost: bool = False,
|
|
3128
|
-
) -> None:
|
|
3218
|
+
) -> None:
|
|
3219
|
+
"""
|
|
3220
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3221
|
+
"""
|
|
3129
3222
|
def pack(self) -> bytes:
|
|
3130
3223
|
"""
|
|
3131
3224
|
Serializes this instance into a byte array
|
|
@@ -3172,7 +3265,10 @@ class CarAnchor:
|
|
|
3172
3265
|
self,
|
|
3173
3266
|
index: int = 0,
|
|
3174
3267
|
local: Vector3 = Vector3(),
|
|
3175
|
-
) -> None:
|
|
3268
|
+
) -> None:
|
|
3269
|
+
"""
|
|
3270
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3271
|
+
"""
|
|
3176
3272
|
def pack(self) -> bytes:
|
|
3177
3273
|
"""
|
|
3178
3274
|
Serializes this instance into a byte array
|
|
@@ -3219,7 +3315,10 @@ class ControllableTeamInfo:
|
|
|
3219
3315
|
self,
|
|
3220
3316
|
team: int = 0,
|
|
3221
3317
|
controllables: Sequence[ControllableInfo] = [],
|
|
3222
|
-
) -> None:
|
|
3318
|
+
) -> None:
|
|
3319
|
+
"""
|
|
3320
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3321
|
+
"""
|
|
3223
3322
|
def pack(self) -> bytes:
|
|
3224
3323
|
"""
|
|
3225
3324
|
Serializes this instance into a byte array
|
|
@@ -3297,7 +3396,10 @@ class CustomBot:
|
|
|
3297
3396
|
loadout: PlayerLoadout | None = None,
|
|
3298
3397
|
agent_id: str = "",
|
|
3299
3398
|
hivemind: bool = False,
|
|
3300
|
-
) -> None:
|
|
3399
|
+
) -> None:
|
|
3400
|
+
"""
|
|
3401
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3402
|
+
"""
|
|
3301
3403
|
def pack(self) -> bytes:
|
|
3302
3404
|
"""
|
|
3303
3405
|
Serializes this instance into a byte array
|
|
@@ -3333,7 +3435,10 @@ class DesiredBallState:
|
|
|
3333
3435
|
def __init__(
|
|
3334
3436
|
self,
|
|
3335
3437
|
physics: DesiredPhysics = DesiredPhysics(),
|
|
3336
|
-
) -> None:
|
|
3438
|
+
) -> None:
|
|
3439
|
+
"""
|
|
3440
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3441
|
+
"""
|
|
3337
3442
|
def pack(self) -> bytes:
|
|
3338
3443
|
"""
|
|
3339
3444
|
Serializes this instance into a byte array
|
|
@@ -3380,7 +3485,10 @@ class DesiredMatchInfo:
|
|
|
3380
3485
|
self,
|
|
3381
3486
|
world_gravity_z: float | None = None,
|
|
3382
3487
|
game_speed: float | None = None,
|
|
3383
|
-
) -> None:
|
|
3488
|
+
) -> None:
|
|
3489
|
+
"""
|
|
3490
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3491
|
+
"""
|
|
3384
3492
|
def pack(self) -> bytes:
|
|
3385
3493
|
"""
|
|
3386
3494
|
Serializes this instance into a byte array
|
|
@@ -3447,7 +3555,10 @@ class GoalInfo:
|
|
|
3447
3555
|
direction: Vector3 = Vector3(),
|
|
3448
3556
|
width: float = 0.0,
|
|
3449
3557
|
height: float = 0.0,
|
|
3450
|
-
) -> None:
|
|
3558
|
+
) -> None:
|
|
3559
|
+
"""
|
|
3560
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3561
|
+
"""
|
|
3451
3562
|
def pack(self) -> bytes:
|
|
3452
3563
|
"""
|
|
3453
3564
|
Serializes this instance into a byte array
|
|
@@ -3546,7 +3657,10 @@ class MatchInfo:
|
|
|
3546
3657
|
game_speed: float = 0.0,
|
|
3547
3658
|
last_spectated: int = 0,
|
|
3548
3659
|
frame_num: int = 0,
|
|
3549
|
-
) -> None:
|
|
3660
|
+
) -> None:
|
|
3661
|
+
"""
|
|
3662
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3663
|
+
"""
|
|
3550
3664
|
def pack(self) -> bytes:
|
|
3551
3665
|
"""
|
|
3552
3666
|
Serializes this instance into a byte array
|
|
@@ -3600,7 +3714,10 @@ class PlayerConfiguration:
|
|
|
3600
3714
|
variety: CustomBot | Human | PsyonixBot = CustomBot(),
|
|
3601
3715
|
team: int = 0,
|
|
3602
3716
|
player_id: int = 0,
|
|
3603
|
-
) -> None:
|
|
3717
|
+
) -> None:
|
|
3718
|
+
"""
|
|
3719
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3720
|
+
"""
|
|
3604
3721
|
def pack(self) -> bytes:
|
|
3605
3722
|
"""
|
|
3606
3723
|
Serializes this instance into a byte array
|
|
@@ -3640,7 +3757,10 @@ class PlayerInput:
|
|
|
3640
3757
|
self,
|
|
3641
3758
|
player_index: int = 0,
|
|
3642
3759
|
controller_state: ControllerState = ControllerState(),
|
|
3643
|
-
) -> None:
|
|
3760
|
+
) -> None:
|
|
3761
|
+
"""
|
|
3762
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3763
|
+
"""
|
|
3644
3764
|
def pack(self) -> bytes:
|
|
3645
3765
|
"""
|
|
3646
3766
|
Serializes this instance into a byte array
|
|
@@ -3688,7 +3808,10 @@ class RenderGroup:
|
|
|
3688
3808
|
self,
|
|
3689
3809
|
render_messages: Sequence[RenderMessage] = [],
|
|
3690
3810
|
id: int = 0,
|
|
3691
|
-
) -> None:
|
|
3811
|
+
) -> None:
|
|
3812
|
+
"""
|
|
3813
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3814
|
+
"""
|
|
3692
3815
|
def pack(self) -> bytes:
|
|
3693
3816
|
"""
|
|
3694
3817
|
Serializes this instance into a byte array
|
|
@@ -3723,7 +3846,10 @@ class RenderMessage:
|
|
|
3723
3846
|
def __init__(
|
|
3724
3847
|
self,
|
|
3725
3848
|
variety: Line3D | PolyLine3D | Rect2D | Rect3D | String2D | String3D = Line3D(),
|
|
3726
|
-
) -> None:
|
|
3849
|
+
) -> None:
|
|
3850
|
+
"""
|
|
3851
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3852
|
+
"""
|
|
3727
3853
|
def pack(self) -> bytes:
|
|
3728
3854
|
"""
|
|
3729
3855
|
Serializes this instance into a byte array
|
|
@@ -3778,7 +3904,10 @@ class RotatorPartial:
|
|
|
3778
3904
|
pitch: float | None = None,
|
|
3779
3905
|
yaw: float | None = None,
|
|
3780
3906
|
roll: float | None = None,
|
|
3781
|
-
) -> None:
|
|
3907
|
+
) -> None:
|
|
3908
|
+
"""
|
|
3909
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3910
|
+
"""
|
|
3782
3911
|
def pack(self) -> bytes:
|
|
3783
3912
|
"""
|
|
3784
3913
|
Serializes this instance into a byte array
|
|
@@ -3826,7 +3955,10 @@ class SetLoadout:
|
|
|
3826
3955
|
self,
|
|
3827
3956
|
index: int = 0,
|
|
3828
3957
|
loadout: PlayerLoadout = PlayerLoadout(),
|
|
3829
|
-
) -> None:
|
|
3958
|
+
) -> None:
|
|
3959
|
+
"""
|
|
3960
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
3961
|
+
"""
|
|
3830
3962
|
def pack(self) -> bytes:
|
|
3831
3963
|
"""
|
|
3832
3964
|
Serializes this instance into a byte array
|
|
@@ -3885,7 +4017,10 @@ class Touch:
|
|
|
3885
4017
|
location: Vector3 = Vector3(),
|
|
3886
4018
|
normal: Vector3 = Vector3(),
|
|
3887
4019
|
ball_index: int = 0,
|
|
3888
|
-
) -> None:
|
|
4020
|
+
) -> None:
|
|
4021
|
+
"""
|
|
4022
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4023
|
+
"""
|
|
3889
4024
|
def pack(self) -> bytes:
|
|
3890
4025
|
"""
|
|
3891
4026
|
Serializes this instance into a byte array
|
|
@@ -3930,7 +4065,10 @@ class Vector3Partial:
|
|
|
3930
4065
|
x: float | None = None,
|
|
3931
4066
|
y: float | None = None,
|
|
3932
4067
|
z: float | None = None,
|
|
3933
|
-
) -> None:
|
|
4068
|
+
) -> None:
|
|
4069
|
+
"""
|
|
4070
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4071
|
+
"""
|
|
3934
4072
|
def pack(self) -> bytes:
|
|
3935
4073
|
"""
|
|
3936
4074
|
Serializes this instance into a byte array
|
|
@@ -3975,7 +4113,10 @@ class BallInfo:
|
|
|
3975
4113
|
self,
|
|
3976
4114
|
physics: Physics = Physics(),
|
|
3977
4115
|
shape: BoxShape | CylinderShape | SphereShape = BoxShape(),
|
|
3978
|
-
) -> None:
|
|
4116
|
+
) -> None:
|
|
4117
|
+
"""
|
|
4118
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4119
|
+
"""
|
|
3979
4120
|
def pack(self) -> bytes:
|
|
3980
4121
|
"""
|
|
3981
4122
|
Serializes this instance into a byte array
|
|
@@ -4015,7 +4156,10 @@ class DesiredCarState:
|
|
|
4015
4156
|
self,
|
|
4016
4157
|
physics: DesiredPhysics | None = None,
|
|
4017
4158
|
boost_amount: float | None = None,
|
|
4018
|
-
) -> None:
|
|
4159
|
+
) -> None:
|
|
4160
|
+
"""
|
|
4161
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4162
|
+
"""
|
|
4019
4163
|
def pack(self) -> bytes:
|
|
4020
4164
|
"""
|
|
4021
4165
|
Serializes this instance into a byte array
|
|
@@ -4064,7 +4208,10 @@ class FieldInfo:
|
|
|
4064
4208
|
self,
|
|
4065
4209
|
boost_pads: Sequence[BoostPad] = [],
|
|
4066
4210
|
goals: Sequence[GoalInfo] = [],
|
|
4067
|
-
) -> None:
|
|
4211
|
+
) -> None:
|
|
4212
|
+
"""
|
|
4213
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4214
|
+
"""
|
|
4068
4215
|
def pack(self) -> bytes:
|
|
4069
4216
|
"""
|
|
4070
4217
|
Serializes this instance into a byte array
|
|
@@ -4107,7 +4254,10 @@ class Line3D:
|
|
|
4107
4254
|
start: RenderAnchor = RenderAnchor(),
|
|
4108
4255
|
end: RenderAnchor = RenderAnchor(),
|
|
4109
4256
|
color: Color = Color(),
|
|
4110
|
-
) -> None:
|
|
4257
|
+
) -> None:
|
|
4258
|
+
"""
|
|
4259
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4260
|
+
"""
|
|
4111
4261
|
def pack(self) -> bytes:
|
|
4112
4262
|
"""
|
|
4113
4263
|
Serializes this instance into a byte array
|
|
@@ -4146,7 +4296,10 @@ class PolyLine3D:
|
|
|
4146
4296
|
self,
|
|
4147
4297
|
points: Sequence[Vector3] = [],
|
|
4148
4298
|
color: Color = Color(),
|
|
4149
|
-
) -> None:
|
|
4299
|
+
) -> None:
|
|
4300
|
+
"""
|
|
4301
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4302
|
+
"""
|
|
4150
4303
|
def pack(self) -> bytes:
|
|
4151
4304
|
"""
|
|
4152
4305
|
Serializes this instance into a byte array
|
|
@@ -4197,7 +4350,10 @@ class PsyonixBot:
|
|
|
4197
4350
|
name: str = "",
|
|
4198
4351
|
loadout: PlayerLoadout | None = None,
|
|
4199
4352
|
bot_skill: PsyonixSkill = PsyonixSkill(),
|
|
4200
|
-
) -> None:
|
|
4353
|
+
) -> None:
|
|
4354
|
+
"""
|
|
4355
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4356
|
+
"""
|
|
4201
4357
|
def pack(self) -> bytes:
|
|
4202
4358
|
"""
|
|
4203
4359
|
Serializes this instance into a byte array
|
|
@@ -4278,7 +4434,10 @@ class Rect2D:
|
|
|
4278
4434
|
color: Color = Color(),
|
|
4279
4435
|
h_align: TextHAlign = TextHAlign(),
|
|
4280
4436
|
v_align: TextVAlign = TextVAlign(),
|
|
4281
|
-
) -> None:
|
|
4437
|
+
) -> None:
|
|
4438
|
+
"""
|
|
4439
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4440
|
+
"""
|
|
4282
4441
|
def pack(self) -> bytes:
|
|
4283
4442
|
"""
|
|
4284
4443
|
Serializes this instance into a byte array
|
|
@@ -4367,7 +4526,10 @@ class String2D:
|
|
|
4367
4526
|
background: Color = Color(),
|
|
4368
4527
|
h_align: TextHAlign = TextHAlign(),
|
|
4369
4528
|
v_align: TextVAlign = TextVAlign(),
|
|
4370
|
-
) -> None:
|
|
4529
|
+
) -> None:
|
|
4530
|
+
"""
|
|
4531
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4532
|
+
"""
|
|
4371
4533
|
def pack(self) -> bytes:
|
|
4372
4534
|
"""
|
|
4373
4535
|
Serializes this instance into a byte array
|
|
@@ -4429,7 +4591,10 @@ class DesiredGameState:
|
|
|
4429
4591
|
car_states: Sequence[DesiredCarState] = [],
|
|
4430
4592
|
match_info: DesiredMatchInfo | None = None,
|
|
4431
4593
|
console_commands: Sequence[ConsoleCommand] = [],
|
|
4432
|
-
) -> None:
|
|
4594
|
+
) -> None:
|
|
4595
|
+
"""
|
|
4596
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4597
|
+
"""
|
|
4433
4598
|
def pack(self) -> bytes:
|
|
4434
4599
|
"""
|
|
4435
4600
|
Serializes this instance into a byte array
|
|
@@ -4503,7 +4668,10 @@ class Rect3D:
|
|
|
4503
4668
|
color: Color = Color(),
|
|
4504
4669
|
h_align: TextHAlign = TextHAlign(),
|
|
4505
4670
|
v_align: TextVAlign = TextVAlign(),
|
|
4506
|
-
) -> None:
|
|
4671
|
+
) -> None:
|
|
4672
|
+
"""
|
|
4673
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4674
|
+
"""
|
|
4507
4675
|
def pack(self) -> bytes:
|
|
4508
4676
|
"""
|
|
4509
4677
|
Serializes this instance into a byte array
|
|
@@ -4584,7 +4752,10 @@ class String3D:
|
|
|
4584
4752
|
background: Color = Color(),
|
|
4585
4753
|
h_align: TextHAlign = TextHAlign(),
|
|
4586
4754
|
v_align: TextVAlign = TextVAlign(),
|
|
4587
|
-
) -> None:
|
|
4755
|
+
) -> None:
|
|
4756
|
+
"""
|
|
4757
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4758
|
+
"""
|
|
4588
4759
|
def pack(self) -> bytes:
|
|
4589
4760
|
"""
|
|
4590
4761
|
Serializes this instance into a byte array
|
|
@@ -4654,7 +4825,10 @@ class GamePacket:
|
|
|
4654
4825
|
balls: Sequence[BallInfo] = [],
|
|
4655
4826
|
match_info: MatchInfo = MatchInfo(),
|
|
4656
4827
|
teams: Sequence[TeamInfo] = [],
|
|
4657
|
-
) -> None:
|
|
4828
|
+
) -> None:
|
|
4829
|
+
"""
|
|
4830
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
4831
|
+
"""
|
|
4658
4832
|
def pack(self) -> bytes:
|
|
4659
4833
|
"""
|
|
4660
4834
|
Serializes this instance into a byte array
|
|
@@ -4855,7 +5029,10 @@ class PlayerInfo:
|
|
|
4855
5029
|
has_dodged: bool = False,
|
|
4856
5030
|
dodge_elapsed: float = 0.0,
|
|
4857
5031
|
dodge_dir: Vector2 = Vector2(),
|
|
4858
|
-
) -> None:
|
|
5032
|
+
) -> None:
|
|
5033
|
+
"""
|
|
5034
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
5035
|
+
"""
|
|
4859
5036
|
def pack(self) -> bytes:
|
|
4860
5037
|
"""
|
|
4861
5038
|
Serializes this instance into a byte array
|
|
@@ -5111,7 +5288,10 @@ class MutatorSettings:
|
|
|
5111
5288
|
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
5112
5289
|
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
5113
5290
|
scoring_rule: ScoringRuleMutator = ScoringRuleMutator(),
|
|
5114
|
-
) -> None:
|
|
5291
|
+
) -> None:
|
|
5292
|
+
"""
|
|
5293
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
5294
|
+
"""
|
|
5115
5295
|
def pack(self) -> bytes:
|
|
5116
5296
|
"""
|
|
5117
5297
|
Serializes this instance into a byte array
|
|
@@ -5146,7 +5326,10 @@ class CorePacket:
|
|
|
5146
5326
|
def __init__(
|
|
5147
5327
|
self,
|
|
5148
5328
|
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus = BallPrediction(),
|
|
5149
|
-
) -> None:
|
|
5329
|
+
) -> None:
|
|
5330
|
+
"""
|
|
5331
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
5332
|
+
"""
|
|
5150
5333
|
def pack(self) -> bytes:
|
|
5151
5334
|
"""
|
|
5152
5335
|
Serializes this instance into a byte array
|
|
@@ -5181,7 +5364,10 @@ class InterfacePacket:
|
|
|
5181
5364
|
def __init__(
|
|
5182
5365
|
self,
|
|
5183
5366
|
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
|
|
5184
|
-
) -> None:
|
|
5367
|
+
) -> None:
|
|
5368
|
+
"""
|
|
5369
|
+
NOTE: All field initialization before `__init__`, inside of `__new__`.
|
|
5370
|
+
"""
|
|
5185
5371
|
def pack(self) -> bytes:
|
|
5186
5372
|
"""
|
|
5187
5373
|
Serializes this instance into a byte array
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlbot_flatbuffers
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.6
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
rlbot_flatbuffers\__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
2
|
+
rlbot_flatbuffers\__init__.pyi,sha256=VLx4Eg34eVV26vOoYHa2f9eYM9pkIsQP2dqKB-glpXo,140765
|
|
3
|
+
rlbot_flatbuffers\py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
rlbot_flatbuffers\rlbot_flatbuffers.pyd,sha256=zOytZtlqRdD5tnjEntec3eEK1Jqzddc9sNlSjtQNTtw,1313280
|
|
5
|
+
rlbot_flatbuffers-0.18.6.dist-info\METADATA,sha256=p5SWbiUPqhJeCLQekKBMI49AUYRAVQ4koaVaTZEJ5l4,5391
|
|
6
|
+
rlbot_flatbuffers-0.18.6.dist-info\WHEEL,sha256=ZMDDxh9OPoaLQ4P2dJmgI1XsENYSzjzq8fErKKVw5iE,96
|
|
7
|
+
rlbot_flatbuffers-0.18.6.dist-info\licenses\LICENSE,sha256=tnBqJ024pW1c3LUmlgNzvGH3ceFiLbcUNhw8fGR90P0,1083
|
|
8
|
+
rlbot_flatbuffers-0.18.6.dist-info\RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
rlbot_flatbuffers-0.18.5.dist-info/METADATA,sha256=oDnPGwqxFawFZvNEBGR-1SblTmfDzuMN_F1VpksfWKc,5391
|
|
2
|
-
rlbot_flatbuffers-0.18.5.dist-info/WHEEL,sha256=4EDp_7DiFfWl1yYv5M4wSosAn5L_xgD1dyrQxQxfCx8,95
|
|
3
|
-
rlbot_flatbuffers-0.18.5.dist-info/licenses/LICENSE,sha256=tnBqJ024pW1c3LUmlgNzvGH3ceFiLbcUNhw8fGR90P0,1083
|
|
4
|
-
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
-
rlbot_flatbuffers/__init__.pyi,sha256=dVq7UJ3shX-5LPVmcGgefEUKp5kXvgSrXYzV1_-j3vk,134627
|
|
6
|
-
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=YAoV8i_4y7ZunGP26vB33zGvImApSbA9Y0d43b1Goow,1418240
|
|
8
|
-
rlbot_flatbuffers-0.18.5.dist-info/RECORD,,
|
|
File without changes
|