RocketRP 1.2.4
dotnet add package RocketRP --version 1.2.4
NuGet\Install-Package RocketRP -Version 1.2.4
<PackageReference Include="RocketRP" Version="1.2.4" />
<PackageVersion Include="RocketRP" Version="1.2.4" />
<PackageReference Include="RocketRP" />
paket add RocketRP --version 1.2.4
#r "nuget: RocketRP, 1.2.4"
#:package RocketRP@1.2.4
#addin nuget:?package=RocketRP&version=1.2.4
#tool nuget:?package=RocketRP&version=1.2.4
RocketRP
A Rocket League Replay parser written in C#. Replay files are converted to an object which can be exported as JSON.
RocketRP can also convert the object or generated JSON file back into a replay file. This functionality hasn't been extensively tested and might not always work.
Supports all Rocket League versions up to at least v2.53 (2025-06-17). Newer versions will likely also work because the replay format doesn't change often. RocketRP successfully parses all my 900+ replays dating back to early 2016. If you find a replay that fails to get parsed, please create an issue so I can look into fixing it.
RocketRP can also be used to convert custom training files to and from objects and JSON.
Usage
Replays
You can parse or write a replay file by calling:
Replay replay = Replay.Deserialize(replayPath, parseNetstream, enforceCRC);
replay.Serialize(outputFilePath);
To convert to or from JSON you can do:
ReplayJsonSerializer serializer = new ReplayJsonSerializer();
string jsonData = serializer.Serialize(replay, prettyPrint);
Replay replay = serializer.Deserialize(jsonData);
Trainings
You can parse or write a replay file by calling:
SaveData<SaveData_GameEditor_Training_TA> training = SaveData<SaveData_GameEditor_Training_TA>.Deserialize(trainingPath, true, enforceCRC);
training.Serialize(outputFilePath);
To convert to or from JSON you can do:
SaveDataJsonSerializer serializer = new SaveDataJsonSerializer();
string jsonData = serializer.Serialize(training, prettyPrint);
SaveData<SaveData_GameEditor_Training_TA> training = serializer.Deserialize<SaveData_GameEditor_Training_TA>(jsonData);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
- System.Text.Encoding.CodePages (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
1.2.4 | 138 | 7/2/2025 |
1.2.3 | 127 | 6/30/2025 |
1.1.12 | 87 | 5/3/2025 |
1.1.11 | 89 | 3/15/2025 |
1.1.10 | 74 | 3/15/2025 |
1.1.9 | 137 | 1/1/2025 |
1.1.8 | 116 | 1/1/2025 |
1.1.7 | 130 | 12/11/2024 |
1.1.6 | 118 | 12/5/2024 |
1.1.5 | 111 | 10/29/2024 |
1.1.4 | 110 | 10/25/2024 |
1.1.3 | 125 | 10/24/2024 |
1.1.2 | 110 | 9/23/2024 |
1.1.0 | 148 | 8/13/2024 |
1.0.4 | 131 | 8/10/2024 |
1.0.3 | 129 | 6/6/2024 |
1.0.2 | 118 | 6/4/2024 |
1.0.1 | 134 | 6/2/2024 |
1.0.0 | 127 | 6/2/2024 |