3 releases
0.1.0-alpha.3 | Dec 6, 2022 |
---|---|
0.1.0-alpha.1 | Dec 5, 2022 |
#66 in Games
14KB
217 lines
wotbreplay-inspector
World of Tanks Blitz replay inspector in Rust. Uses eigenein/wotbreplay-parser
under the hood.
Quickstart
Convert known fields into JSON
wotbreplay-inspector 20221205_1409__zeekrab_A140_ASTRON_REX_105_2308651318200102307.wotbreplay battle-results
{
"timestamp": 1670245795,
"players": [
{
"account_id": 534505602,
"info": {
"nickname": "Roberto_Cadenas_Diaz",
"platoon_id": null,
"team_number": 2,
"clan_tag": "ORUGA",
// ...
Note: this ignores any unknown fields.
Dump full decoded structure into TOML
Useful for manual inspection:
wotbreplay-inspector 20221205_1409__zeekrab_A140_ASTRON_REX_105_2308651318200102307.wotbreplay battle-results --raw
[[1]]
type = "VarInt"
unsigned = 65543
signed = -32772
[[2]]
type = "VarInt"
unsigned = 1670282196
signed = 835141098
[[3]]
type = "VarInt"
unsigned = 1
signed = -1
[[4]]
type = "VarInt"
unsigned = 1
signed = -1
# ...
Dependencies
~10MB
~107K SLoC