rlbot-flatbuffers 0.14.7__cp310-abi3-win_amd64.whl → 0.16.0__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 +54 -26
- rlbot_flatbuffers/rlbot_flatbuffers.pyd +0 -0
- {rlbot_flatbuffers-0.14.7.dist-info → rlbot_flatbuffers-0.16.0.dist-info}/METADATA +1 -1
- rlbot_flatbuffers-0.16.0.dist-info/RECORD +8 -0
- rlbot_flatbuffers-0.14.7.dist-info/RECORD +0 -8
- {rlbot_flatbuffers-0.14.7.dist-info → rlbot_flatbuffers-0.16.0.dist-info}/WHEEL +0 -0
- {rlbot_flatbuffers-0.14.7.dist-info → rlbot_flatbuffers-0.16.0.dist-info}/licenses/LICENSE +0 -0
rlbot_flatbuffers/__init__.pyi
CHANGED
|
@@ -8,7 +8,7 @@ __version__: str
|
|
|
8
8
|
class InvalidFlatbuffer(ValueError): ...
|
|
9
9
|
|
|
10
10
|
class AerialGoalScoreMutator:
|
|
11
|
-
|
|
11
|
+
One = AerialGoalScoreMutator(0)
|
|
12
12
|
Zero = AerialGoalScoreMutator(1)
|
|
13
13
|
Two = AerialGoalScoreMutator(2)
|
|
14
14
|
Three = AerialGoalScoreMutator(3)
|
|
@@ -66,7 +66,7 @@ class AirState:
|
|
|
66
66
|
def __repr__(self) -> str: ...
|
|
67
67
|
|
|
68
68
|
class AssistGoalScoreMutator:
|
|
69
|
-
|
|
69
|
+
Zero = AssistGoalScoreMutator(0)
|
|
70
70
|
One = AssistGoalScoreMutator(1)
|
|
71
71
|
Two = AssistGoalScoreMutator(2)
|
|
72
72
|
Three = AssistGoalScoreMutator(3)
|
|
@@ -1017,7 +1017,7 @@ class DemolishMutator:
|
|
|
1017
1017
|
def __repr__(self) -> str: ...
|
|
1018
1018
|
|
|
1019
1019
|
class DemolishScoreMutator:
|
|
1020
|
-
|
|
1020
|
+
Zero = DemolishScoreMutator(0)
|
|
1021
1021
|
One = DemolishScoreMutator(1)
|
|
1022
1022
|
Two = DemolishScoreMutator(2)
|
|
1023
1023
|
Three = DemolishScoreMutator(3)
|
|
@@ -1283,7 +1283,7 @@ class DesiredPhysics:
|
|
|
1283
1283
|
def __repr__(self) -> str: ...
|
|
1284
1284
|
|
|
1285
1285
|
class DodgeTimerMutator:
|
|
1286
|
-
|
|
1286
|
+
OnePointTwentyFiveSeconds = DodgeTimerMutator(0)
|
|
1287
1287
|
TwoSeconds = DodgeTimerMutator(1)
|
|
1288
1288
|
ThreeSeconds = DodgeTimerMutator(2)
|
|
1289
1289
|
Unlimited = DodgeTimerMutator(3)
|
|
@@ -1900,9 +1900,14 @@ class MatchConfiguration:
|
|
|
1900
1900
|
Additional configuration for the launching method.
|
|
1901
1901
|
See launcher.
|
|
1902
1902
|
"""
|
|
1903
|
-
|
|
1903
|
+
auto_start_agents: bool
|
|
1904
1904
|
"""
|
|
1905
|
-
If true, RLBot will start the bots
|
|
1905
|
+
If true, RLBot will start the bots and scripts that has a non-empty run command in their player/script configuration.
|
|
1906
|
+
"""
|
|
1907
|
+
wait_for_agents: bool
|
|
1908
|
+
"""
|
|
1909
|
+
If true, RLBot will start the match only once all bots and script have connected and are ready.
|
|
1910
|
+
If false, the match will start as soon as the map loads.
|
|
1906
1911
|
"""
|
|
1907
1912
|
game_map_upk: str
|
|
1908
1913
|
"""
|
|
@@ -1962,7 +1967,8 @@ class MatchConfiguration:
|
|
|
1962
1967
|
__match_args__ = (
|
|
1963
1968
|
"launcher",
|
|
1964
1969
|
"launcher_arg",
|
|
1965
|
-
"
|
|
1970
|
+
"auto_start_agents",
|
|
1971
|
+
"wait_for_agents",
|
|
1966
1972
|
"game_map_upk",
|
|
1967
1973
|
"player_configurations",
|
|
1968
1974
|
"script_configurations",
|
|
@@ -1981,7 +1987,8 @@ class MatchConfiguration:
|
|
|
1981
1987
|
cls,
|
|
1982
1988
|
launcher: Launcher = Launcher(),
|
|
1983
1989
|
launcher_arg: str = "",
|
|
1984
|
-
|
|
1990
|
+
auto_start_agents: bool = False,
|
|
1991
|
+
wait_for_agents: bool = False,
|
|
1985
1992
|
game_map_upk: str = "",
|
|
1986
1993
|
player_configurations: Sequence[PlayerConfiguration] = [],
|
|
1987
1994
|
script_configurations: Sequence[ScriptConfiguration] = [],
|
|
@@ -1999,7 +2006,8 @@ class MatchConfiguration:
|
|
|
1999
2006
|
self,
|
|
2000
2007
|
launcher: Launcher = Launcher(),
|
|
2001
2008
|
launcher_arg: str = "",
|
|
2002
|
-
|
|
2009
|
+
auto_start_agents: bool = False,
|
|
2010
|
+
wait_for_agents: bool = False,
|
|
2003
2011
|
game_map_upk: str = "",
|
|
2004
2012
|
player_configurations: Sequence[PlayerConfiguration] = [],
|
|
2005
2013
|
script_configurations: Sequence[ScriptConfiguration] = [],
|
|
@@ -2199,7 +2207,7 @@ class MatchPhase:
|
|
|
2199
2207
|
def __repr__(self) -> str: ...
|
|
2200
2208
|
|
|
2201
2209
|
class MaxScoreMutator:
|
|
2202
|
-
|
|
2210
|
+
Unlimited = MaxScoreMutator(0)
|
|
2203
2211
|
OneGoal = MaxScoreMutator(1)
|
|
2204
2212
|
ThreeGoals = MaxScoreMutator(2)
|
|
2205
2213
|
FiveGoals = MaxScoreMutator(3)
|
|
@@ -2214,7 +2222,6 @@ class MaxScoreMutator:
|
|
|
2214
2222
|
EightyGoals = MaxScoreMutator(12)
|
|
2215
2223
|
NinetyGoals = MaxScoreMutator(13)
|
|
2216
2224
|
HundredGoals = MaxScoreMutator(14)
|
|
2217
|
-
Unlimited = MaxScoreMutator(15)
|
|
2218
2225
|
|
|
2219
2226
|
def __new__(cls, value: int = 0): ...
|
|
2220
2227
|
def __init__(self, value: int = 0):
|
|
@@ -2228,7 +2235,7 @@ class MaxScoreMutator:
|
|
|
2228
2235
|
def __repr__(self) -> str: ...
|
|
2229
2236
|
|
|
2230
2237
|
class MaxTimeMutator:
|
|
2231
|
-
|
|
2238
|
+
Unlimited = MaxTimeMutator(0)
|
|
2232
2239
|
ElevenMinutes = MaxTimeMutator(1)
|
|
2233
2240
|
|
|
2234
2241
|
def __new__(cls, value: int = 0): ...
|
|
@@ -2512,7 +2519,7 @@ class MutatorSettings:
|
|
|
2512
2519
|
def __repr__(self) -> str: ...
|
|
2513
2520
|
|
|
2514
2521
|
class NormalGoalScoreMutator:
|
|
2515
|
-
|
|
2522
|
+
One = NormalGoalScoreMutator(0)
|
|
2516
2523
|
Zero = NormalGoalScoreMutator(1)
|
|
2517
2524
|
Two = NormalGoalScoreMutator(2)
|
|
2518
2525
|
Three = NormalGoalScoreMutator(3)
|
|
@@ -2798,9 +2805,9 @@ class PlayerInfo:
|
|
|
2798
2805
|
"""
|
|
2799
2806
|
The team of the player.
|
|
2800
2807
|
"""
|
|
2801
|
-
boost:
|
|
2808
|
+
boost: float
|
|
2802
2809
|
"""
|
|
2803
|
-
The current boost.
|
|
2810
|
+
The current boost, from 0 to 100.
|
|
2804
2811
|
"""
|
|
2805
2812
|
spawn_id: int
|
|
2806
2813
|
"""
|
|
@@ -2888,7 +2895,7 @@ class PlayerInfo:
|
|
|
2888
2895
|
is_bot: bool = False,
|
|
2889
2896
|
name: str = "",
|
|
2890
2897
|
team: int = 0,
|
|
2891
|
-
boost:
|
|
2898
|
+
boost: float = 0,
|
|
2892
2899
|
spawn_id: int = 0,
|
|
2893
2900
|
accolades: Sequence[str] = [],
|
|
2894
2901
|
last_input: ControllerState = ControllerState(),
|
|
@@ -2912,7 +2919,7 @@ class PlayerInfo:
|
|
|
2912
2919
|
is_bot: bool = False,
|
|
2913
2920
|
name: str = "",
|
|
2914
2921
|
team: int = 0,
|
|
2915
|
-
boost:
|
|
2922
|
+
boost: float = 0,
|
|
2916
2923
|
spawn_id: int = 0,
|
|
2917
2924
|
accolades: Sequence[str] = [],
|
|
2918
2925
|
last_input: ControllerState = ControllerState(),
|
|
@@ -3135,7 +3142,7 @@ class PolyLine3D:
|
|
|
3135
3142
|
def __repr__(self) -> str: ...
|
|
3136
3143
|
|
|
3137
3144
|
class PossessionScoreMutator:
|
|
3138
|
-
|
|
3145
|
+
Off = PossessionScoreMutator(0)
|
|
3139
3146
|
OneSecond = PossessionScoreMutator(1)
|
|
3140
3147
|
TwoSeconds = PossessionScoreMutator(2)
|
|
3141
3148
|
ThreeSeconds = PossessionScoreMutator(3)
|
|
@@ -3273,9 +3280,13 @@ class Rect2D:
|
|
|
3273
3280
|
"""
|
|
3274
3281
|
Color of the rectangle.
|
|
3275
3282
|
"""
|
|
3276
|
-
|
|
3283
|
+
h_align: TextHAlign
|
|
3284
|
+
"""
|
|
3285
|
+
The horizontal alignment of the rectangle.
|
|
3286
|
+
"""
|
|
3287
|
+
v_align: TextVAlign
|
|
3277
3288
|
"""
|
|
3278
|
-
|
|
3289
|
+
The vertical alignment of the rectangle.
|
|
3279
3290
|
"""
|
|
3280
3291
|
|
|
3281
3292
|
__match_args__ = (
|
|
@@ -3284,7 +3295,8 @@ class Rect2D:
|
|
|
3284
3295
|
"width",
|
|
3285
3296
|
"height",
|
|
3286
3297
|
"color",
|
|
3287
|
-
"
|
|
3298
|
+
"h_align",
|
|
3299
|
+
"v_align",
|
|
3288
3300
|
)
|
|
3289
3301
|
|
|
3290
3302
|
def __new__(
|
|
@@ -3294,7 +3306,8 @@ class Rect2D:
|
|
|
3294
3306
|
width: float = 0,
|
|
3295
3307
|
height: float = 0,
|
|
3296
3308
|
color: Color = Color(),
|
|
3297
|
-
|
|
3309
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3310
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3298
3311
|
): ...
|
|
3299
3312
|
def __init__(
|
|
3300
3313
|
self,
|
|
@@ -3303,7 +3316,8 @@ class Rect2D:
|
|
|
3303
3316
|
width: float = 0,
|
|
3304
3317
|
height: float = 0,
|
|
3305
3318
|
color: Color = Color(),
|
|
3306
|
-
|
|
3319
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3320
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3307
3321
|
): ...
|
|
3308
3322
|
def pack(self) -> bytes:
|
|
3309
3323
|
"""
|
|
@@ -3346,12 +3360,22 @@ class Rect3D:
|
|
|
3346
3360
|
"""
|
|
3347
3361
|
The color of the rectangle.
|
|
3348
3362
|
"""
|
|
3363
|
+
h_align: TextHAlign
|
|
3364
|
+
"""
|
|
3365
|
+
The horizontal alignment of the anchor in the rectangle.
|
|
3366
|
+
"""
|
|
3367
|
+
v_align: TextVAlign
|
|
3368
|
+
"""
|
|
3369
|
+
The vertical alignment of the anchor in the rectangle.
|
|
3370
|
+
"""
|
|
3349
3371
|
|
|
3350
3372
|
__match_args__ = (
|
|
3351
3373
|
"anchor",
|
|
3352
3374
|
"width",
|
|
3353
3375
|
"height",
|
|
3354
3376
|
"color",
|
|
3377
|
+
"h_align",
|
|
3378
|
+
"v_align",
|
|
3355
3379
|
)
|
|
3356
3380
|
|
|
3357
3381
|
def __new__(
|
|
@@ -3360,6 +3384,8 @@ class Rect3D:
|
|
|
3360
3384
|
width: float = 0,
|
|
3361
3385
|
height: float = 0,
|
|
3362
3386
|
color: Color = Color(),
|
|
3387
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3388
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3363
3389
|
): ...
|
|
3364
3390
|
def __init__(
|
|
3365
3391
|
self,
|
|
@@ -3367,6 +3393,8 @@ class Rect3D:
|
|
|
3367
3393
|
width: float = 0,
|
|
3368
3394
|
height: float = 0,
|
|
3369
3395
|
color: Color = Color(),
|
|
3396
|
+
h_align: TextHAlign = TextHAlign(),
|
|
3397
|
+
v_align: TextVAlign = TextVAlign(),
|
|
3370
3398
|
): ...
|
|
3371
3399
|
def pack(self) -> bytes:
|
|
3372
3400
|
"""
|
|
@@ -3713,7 +3741,7 @@ class RotatorPartial:
|
|
|
3713
3741
|
def __repr__(self) -> str: ...
|
|
3714
3742
|
|
|
3715
3743
|
class RumbleMutator:
|
|
3716
|
-
|
|
3744
|
+
Off = RumbleMutator(0)
|
|
3717
3745
|
DefaultRumble = RumbleMutator(1)
|
|
3718
3746
|
Slow = RumbleMutator(2)
|
|
3719
3747
|
Civilized = RumbleMutator(3)
|
|
@@ -3978,7 +4006,7 @@ class SphereShape:
|
|
|
3978
4006
|
def __repr__(self) -> str: ...
|
|
3979
4007
|
|
|
3980
4008
|
class StaleBallMutator:
|
|
3981
|
-
|
|
4009
|
+
Unlimited = StaleBallMutator(0)
|
|
3982
4010
|
ThirtySeconds = StaleBallMutator(1)
|
|
3983
4011
|
|
|
3984
4012
|
def __new__(cls, value: int = 0): ...
|
|
@@ -4288,7 +4316,7 @@ class TeamInfo:
|
|
|
4288
4316
|
def __repr__(self) -> str: ...
|
|
4289
4317
|
|
|
4290
4318
|
class TerritoryMutator:
|
|
4291
|
-
|
|
4319
|
+
Off = TerritoryMutator(0)
|
|
4292
4320
|
Territory = TerritoryMutator(1)
|
|
4293
4321
|
|
|
4294
4322
|
def __new__(cls, value: int = 0): ...
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlbot_flatbuffers
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
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-0.16.0.dist-info/METADATA,sha256=eacnbMUJWzYu21vOXm6nKYQZNxC87vCtdW7N4whR8Lg,3912
|
|
2
|
+
rlbot_flatbuffers-0.16.0.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
|
|
3
|
+
rlbot_flatbuffers-0.16.0.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
+
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
+
rlbot_flatbuffers/__init__.pyi,sha256=TvW6Wa6IOWhEDyRSwGCKiph_khq6tzwLCsIxPNtwvuQ,126141
|
|
6
|
+
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=tYX2HANEcY1kK2gp4tcFoTPw6MJXPB03VeFM8r9jjUw,2165248
|
|
8
|
+
rlbot_flatbuffers-0.16.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
rlbot_flatbuffers-0.14.7.dist-info/METADATA,sha256=tBadcpt0IpBE3DPh2rQBtCznW8Gtk8vCi37Dl4gJNDo,3912
|
|
2
|
-
rlbot_flatbuffers-0.14.7.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
|
|
3
|
-
rlbot_flatbuffers-0.14.7.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
-
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
-
rlbot_flatbuffers/__init__.pyi,sha256=wRzEH4ABU6J6UnUODkGwelb9u_-hURLir6FufJ6WVHw,125235
|
|
6
|
-
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=7_mmVhVhkmM2jiJIsLAGX6G61JGFbJJQS0_GsvadhvU,2055168
|
|
8
|
-
rlbot_flatbuffers-0.14.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|