SaltieRL / carball

📈 A Rocket League replay decompiling and analysis library
https://saltierl.github.io/carball/dev/bench/
Apache License 2.0
143 stars 48 forks source link

Incomplete Replay Data Question #277

Open davechurchill opened 1 year ago

davechurchill commented 1 year ago

Hello! Thank you so much for your parser, it has saved me a ton of time and effort. I have a question for you with regards to some replays that I have which appear to have incomplete data in them. Here's some stats from a set of around 1200 replay files I obtained online:

Total Replays: 1200 With PlayerStats: 1032 Complete PlayerStats: 715

'With PlayerStats' means that replay['properties'] contains a 'PlayerStats' array containing an overview of that player's name, team, performance in the match, etc. 'Complete PlayerStats' means that the PlayerStats array size is actually equal to the number of players in the game after looking at all the network frames. In this example, nearly 30% of the replays with a PlayerStats array do not actually contain information about all the players, for example the PlayerStats array may be of size 3 for a 2v2 game.

My questions are the following:

Thank you again for the software