rlbot-flatbuffers 0.18.4__cp310-abi3-win_amd64.whl → 0.18.5__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 +22 -6
- rlbot_flatbuffers/rlbot_flatbuffers.pyd +0 -0
- {rlbot_flatbuffers-0.18.4.dist-info → rlbot_flatbuffers-0.18.5.dist-info}/METADATA +1 -1
- rlbot_flatbuffers-0.18.5.dist-info/RECORD +8 -0
- rlbot_flatbuffers-0.18.4.dist-info/RECORD +0 -8
- {rlbot_flatbuffers-0.18.4.dist-info → rlbot_flatbuffers-0.18.5.dist-info}/WHEEL +0 -0
- {rlbot_flatbuffers-0.18.4.dist-info → rlbot_flatbuffers-0.18.5.dist-info}/licenses/LICENSE +0 -0
rlbot_flatbuffers/__init__.pyi
CHANGED
|
@@ -2257,6 +2257,22 @@ class MatchComm:
|
|
|
2257
2257
|
def __str__(self) -> str: ...
|
|
2258
2258
|
def __repr__(self) -> str: ...
|
|
2259
2259
|
|
|
2260
|
+
class PingRequest:
|
|
2261
|
+
"""
|
|
2262
|
+
Ping request message
|
|
2263
|
+
"""
|
|
2264
|
+
|
|
2265
|
+
def __new__(cls) -> PingRequest: ...
|
|
2266
|
+
def __init__(self) -> None: ...
|
|
2267
|
+
|
|
2268
|
+
class PingResponse:
|
|
2269
|
+
"""
|
|
2270
|
+
Ping response message
|
|
2271
|
+
"""
|
|
2272
|
+
|
|
2273
|
+
def __new__(cls) -> PingResponse: ...
|
|
2274
|
+
def __init__(self) -> None: ...
|
|
2275
|
+
|
|
2260
2276
|
class RenderingStatus:
|
|
2261
2277
|
"""
|
|
2262
2278
|
As an interface message, this requests for a specificed agent to have its ability to render changed.
|
|
@@ -5117,7 +5133,7 @@ class CorePacket:
|
|
|
5117
5133
|
Packet containing a CoreMessage
|
|
5118
5134
|
"""
|
|
5119
5135
|
|
|
5120
|
-
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | RenderingStatus
|
|
5136
|
+
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus
|
|
5121
5137
|
|
|
5122
5138
|
__match_args__ = (
|
|
5123
5139
|
"message",
|
|
@@ -5125,11 +5141,11 @@ class CorePacket:
|
|
|
5125
5141
|
|
|
5126
5142
|
def __new__(
|
|
5127
5143
|
cls,
|
|
5128
|
-
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | RenderingStatus = BallPrediction(),
|
|
5144
|
+
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus = BallPrediction(),
|
|
5129
5145
|
) -> CorePacket: ...
|
|
5130
5146
|
def __init__(
|
|
5131
5147
|
self,
|
|
5132
|
-
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | RenderingStatus = BallPrediction(),
|
|
5148
|
+
message: BallPrediction | ControllableTeamInfo | DisconnectSignal | FieldInfo | GamePacket | MatchComm | MatchConfiguration | PingRequest | PingResponse | RenderingStatus = BallPrediction(),
|
|
5133
5149
|
) -> None: ...
|
|
5134
5150
|
def pack(self) -> bytes:
|
|
5135
5151
|
"""
|
|
@@ -5152,7 +5168,7 @@ class InterfacePacket:
|
|
|
5152
5168
|
Packet containing a InterfaceMessage
|
|
5153
5169
|
"""
|
|
5154
5170
|
|
|
5155
|
-
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand
|
|
5171
|
+
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand
|
|
5156
5172
|
|
|
5157
5173
|
__match_args__ = (
|
|
5158
5174
|
"message",
|
|
@@ -5160,11 +5176,11 @@ class InterfacePacket:
|
|
|
5160
5176
|
|
|
5161
5177
|
def __new__(
|
|
5162
5178
|
cls,
|
|
5163
|
-
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
|
|
5179
|
+
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
|
|
5164
5180
|
) -> InterfacePacket: ...
|
|
5165
5181
|
def __init__(
|
|
5166
5182
|
self,
|
|
5167
|
-
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
|
|
5183
|
+
message: ConnectionSettings | DesiredGameState | DisconnectSignal | InitComplete | MatchComm | MatchConfiguration | PingRequest | PingResponse | PlayerInput | RemoveRenderGroup | RenderGroup | RenderingStatus | SetLoadout | StartCommand | StopCommand = ConnectionSettings(),
|
|
5168
5184
|
) -> None: ...
|
|
5169
5185
|
def pack(self) -> bytes:
|
|
5170
5186
|
"""
|
|
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.5
|
|
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.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,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
rlbot_flatbuffers-0.18.4.dist-info/METADATA,sha256=fGbH52CxEukv0-ze16tRS-un85EH6DD69o_FxjZjmLw,5391
|
|
2
|
-
rlbot_flatbuffers-0.18.4.dist-info/WHEEL,sha256=4EDp_7DiFfWl1yYv5M4wSosAn5L_xgD1dyrQxQxfCx8,95
|
|
3
|
-
rlbot_flatbuffers-0.18.4.dist-info/licenses/LICENSE,sha256=tnBqJ024pW1c3LUmlgNzvGH3ceFiLbcUNhw8fGR90P0,1083
|
|
4
|
-
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
-
rlbot_flatbuffers/__init__.pyi,sha256=de6hWbKpR3cLaILnDqxk8X49Zh8tk2UJ_xEpw48XVmY,134172
|
|
6
|
-
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=c1hMcL4vGhYfWwNlGi1DkUBQuj4a8WnEbrEQhUyTx9w,1477120
|
|
8
|
-
rlbot_flatbuffers-0.18.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|