rlbot-flatbuffers 0.14.6__tar.gz → 0.14.7__tar.gz

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.
Files changed (24) hide show
  1. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/Cargo.lock +3 -3
  2. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/Cargo.toml +1 -1
  3. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/PKG-INFO +1 -1
  4. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/matchconfig.fbs +124 -5
  5. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/src/lib.rs +11 -0
  6. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/LICENSE +0 -0
  7. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/README.md +0 -0
  8. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/class_inject.rs +0 -0
  9. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/enums.rs +0 -0
  10. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/generator.rs +0 -0
  11. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/main.rs +0 -0
  12. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/pyi.rs +0 -0
  13. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/structs.rs +0 -0
  14. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/codegen/unions.rs +0 -0
  15. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/FLATBUFFERS-LICENSE +0 -0
  16. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/README.md +0 -0
  17. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/comms.fbs +0 -0
  18. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/flatc +0 -0
  19. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/flatc.exe +0 -0
  20. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/gamedata.fbs +0 -0
  21. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/gamestatemanip.fbs +0 -0
  22. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/rendering.fbs +0 -0
  23. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/flatbuffers-schema/rlbot.fbs +0 -0
  24. {rlbot_flatbuffers-0.14.6 → rlbot_flatbuffers-0.14.7}/pyproject.toml +0 -0
@@ -153,9 +153,9 @@ dependencies = [
153
153
 
154
154
  [[package]]
155
155
  name = "once_cell"
156
- version = "1.21.1"
156
+ version = "1.21.3"
157
157
  source = "registry+https://github.com/rust-lang/crates.io-index"
158
- checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
158
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
159
159
 
160
160
  [[package]]
161
161
  name = "portable-atomic"
@@ -279,7 +279,7 @@ dependencies = [
279
279
 
280
280
  [[package]]
281
281
  name = "rlbot_flatbuffers"
282
- version = "0.14.6"
282
+ version = "0.14.7"
283
283
  dependencies = [
284
284
  "flatbuffers",
285
285
  "get-size",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rlbot_flatbuffers"
3
- version = "0.14.6"
3
+ version = "0.14.7"
4
4
  edition = "2024"
5
5
  description = "A Python module implemented in Rust for serializing and deserializing RLBot's flatbuffers"
6
6
  repository = "https://github.com/VirxEC/rlbot_flatbuffers_py"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rlbot_flatbuffers
3
- Version: 0.14.6
3
+ Version: 0.14.7
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -123,6 +123,16 @@ enum MaxScoreMutator : ubyte {
123
123
  ThreeGoals,
124
124
  FiveGoals,
125
125
  SevenGoals,
126
+ TenGoals,
127
+ TwentyGoals,
128
+ ThirtyGoals,
129
+ FortyGoals,
130
+ FiftyGoals,
131
+ SixtyGoals,
132
+ SeventyGoals,
133
+ EightyGoals,
134
+ NinetyGoals,
135
+ HundredGoals,
126
136
  Unlimited
127
137
  }
128
138
 
@@ -174,7 +184,11 @@ enum BallTypeMutator : ubyte {
174
184
  Anniversary,
175
185
  Haunted,
176
186
  Ekin,
177
- SpookyCube
187
+ SpookyCube,
188
+ Egg,
189
+ PlayerSeeking,
190
+ Dropshot,
191
+ ScoreAbsorb
178
192
  }
179
193
 
180
194
  /// Ball weight mutator options.
@@ -203,7 +217,15 @@ enum BallBouncinessMutator : ubyte {
203
217
  Low,
204
218
  High,
205
219
  SuperHigh,
206
- LowishBounciness,
220
+ Lowish,
221
+ }
222
+
223
+ /// Ball gravity mutator options.
224
+ enum BallGravityMutator: ubyte {
225
+ Default,
226
+ Low,
227
+ High,
228
+ SuperHigh
207
229
  }
208
230
 
209
231
  /// Boost amount mutator options.
@@ -227,7 +249,9 @@ enum RumbleMutator : ubyte {
227
249
  SpikeRush,
228
250
  HauntedBallBeam,
229
251
  Tactical,
230
- BatmanRumble
252
+ BatmanRumble,
253
+ GrapplingOnly,
254
+ HaymakerOnly,
231
255
  }
232
256
 
233
257
  /// Boost strength mutator options.
@@ -254,7 +278,9 @@ enum DemolishMutator : ubyte {
254
278
  Disabled,
255
279
  FriendlyFire,
256
280
  OnContact,
257
- OnContactFF
281
+ OnContactFF,
282
+ OnBallContact,
283
+ OnBallContactFF
258
284
  }
259
285
 
260
286
  /// Respawn time mutator options.
@@ -284,6 +310,77 @@ enum AudioMutator : ubyte {
284
310
  Haunted
285
311
  }
286
312
 
313
+ enum TerritoryMutator : ubyte {
314
+ Default,
315
+ Territory
316
+ }
317
+
318
+ enum StaleBallMutator : ubyte {
319
+ Default,
320
+ ThirtySeconds
321
+ }
322
+
323
+ enum JumpMutator : ubyte {
324
+ Default,
325
+ Grounded,
326
+ Two,
327
+ Three,
328
+ Four,
329
+ Unlimited,
330
+ NoJumps
331
+ }
332
+
333
+ enum DodgeTimerMutator : ubyte {
334
+ Default,
335
+ TwoSeconds,
336
+ ThreeSeconds,
337
+ Unlimited
338
+ }
339
+
340
+ enum PossessionScoreMutator : ubyte {
341
+ Default,
342
+ OneSecond,
343
+ TwoSeconds,
344
+ ThreeSeconds
345
+ }
346
+
347
+ enum DemolishScoreMutator : ubyte {
348
+ Default,
349
+ One,
350
+ Two,
351
+ Three
352
+ }
353
+
354
+ enum NormalGoalScoreMutator : ubyte {
355
+ Default,
356
+ Zero,
357
+ Two,
358
+ Three,
359
+ Five,
360
+ Ten
361
+ }
362
+
363
+ enum AerialGoalScoreMutator : ubyte {
364
+ Default,
365
+ Zero,
366
+ Two,
367
+ Three,
368
+ Five,
369
+ Ten
370
+ }
371
+
372
+ enum AssistGoalScoreMutator : ubyte {
373
+ Default,
374
+ One,
375
+ Two,
376
+ Three
377
+ }
378
+
379
+ enum InputRestrictionMutator : ubyte {
380
+ Default,
381
+ Backwards
382
+ }
383
+
287
384
  /// All mutators options.
288
385
  table MutatorSettings {
289
386
  /// Duration of the match.
@@ -294,7 +391,7 @@ table MutatorSettings {
294
391
  multi_ball:MultiBallMutator;
295
392
  /// The overtime rules and tiebreaker.
296
393
  overtime:OvertimeMutator;
297
- /// The series length (unsupported).
394
+ /// The series length.
298
395
  series_length:SeriesLengthMutator;
299
396
  /// A game speed multiplier.
300
397
  game_speed:GameSpeedMutator;
@@ -327,6 +424,28 @@ table MutatorSettings {
327
424
  game_event:GameEventMutator;
328
425
  /// Additional audio options for custom modes.
329
426
  audio:AudioMutator;
427
+ /// Ball gravity.
428
+ ball_gravity:BallGravityMutator;
429
+ /// Territory mutator.
430
+ territory:TerritoryMutator;
431
+ /// Stale ball mutator.
432
+ stale_ball:StaleBallMutator;
433
+ /// Jumps mutator.
434
+ jump:JumpMutator;
435
+ /// Dodge timer mutator.
436
+ dodge_timer:DodgeTimerMutator;
437
+ /// Possession score mutator.
438
+ possession_score:PossessionScoreMutator;
439
+ /// Demolish score mutator.
440
+ demolish_score:DemolishScoreMutator;
441
+ /// Normal goal score mutator.
442
+ normal_goal_score:NormalGoalScoreMutator;
443
+ /// Aerial goal score mutator.
444
+ aerial_goal_score:AerialGoalScoreMutator;
445
+ /// Assist goal score mutator.
446
+ assist_goal_score:AssistGoalScoreMutator;
447
+ /// Player input restriction mutator.
448
+ input_restriction:InputRestrictionMutator;
330
449
  }
331
450
 
332
451
  /// Possible behaviours when a match is started while another match is in progress.
@@ -209,10 +209,13 @@ pynamedmodule! {
209
209
  doc: "rlbot_flatbuffers is a Python module implemented in Rust for serializing and deserializing RLBot's flatbuffers.",
210
210
  name: rlbot_flatbuffers,
211
211
  classes: [
212
+ AerialGoalScoreMutator,
212
213
  AirState,
214
+ AssistGoalScoreMutator,
213
215
  AudioMutator,
214
216
  BallAnchor,
215
217
  BallBouncinessMutator,
218
+ BallGravityMutator,
216
219
  BallInfo,
217
220
  BallMaxSpeedMutator,
218
221
  BallPrediction,
@@ -236,11 +239,13 @@ pynamedmodule! {
236
239
  CustomBot,
237
240
  CylinderShape,
238
241
  DemolishMutator,
242
+ DemolishScoreMutator,
239
243
  DesiredBallState,
240
244
  DesiredCarState,
241
245
  DesiredGameState,
242
246
  DesiredMatchInfo,
243
247
  DesiredPhysics,
248
+ DodgeTimerMutator,
244
249
  ExistingMatchBehavior,
245
250
  FieldInfo,
246
251
  Float,
@@ -251,6 +256,8 @@ pynamedmodule! {
251
256
  GoalInfo,
252
257
  GravityMutator,
253
258
  Human,
259
+ InputRestrictionMutator,
260
+ JumpMutator,
254
261
  Launcher,
255
262
  Line3D,
256
263
  LoadoutPaint,
@@ -263,6 +270,7 @@ pynamedmodule! {
263
270
  MaxTimeMutator,
264
271
  MultiBallMutator,
265
272
  MutatorSettings,
273
+ NormalGoalScoreMutator,
266
274
  OvertimeMutator,
267
275
  PartyMember,
268
276
  Physics,
@@ -272,6 +280,7 @@ pynamedmodule! {
272
280
  PlayerInput,
273
281
  PlayerLoadout,
274
282
  PolyLine3D,
283
+ PossessionScoreMutator,
275
284
  PredictionSlice,
276
285
  Psyonix,
277
286
  PsyonixSkill,
@@ -292,11 +301,13 @@ pynamedmodule! {
292
301
  SeriesLengthMutator,
293
302
  SetLoadout,
294
303
  SphereShape,
304
+ StaleBallMutator,
295
305
  StartCommand,
296
306
  StopCommand,
297
307
  String2D,
298
308
  String3D,
299
309
  TeamInfo,
310
+ TerritoryMutator,
300
311
  TextHAlign,
301
312
  TextVAlign,
302
313
  Touch,