wotbreplay-inspector

World of Tanks Blitz replay inspector in Rust. Uses eigenein/wotbreplay-parser under the hood.

Crates.io Last commit GitHub Workflow Status License: MIT

Quickstart

Convert known fields into JSON

shell wotbreplay-inspector 20221205_1409__zeekrab_A140_ASTRON_REX_105_2308651318200102307.wotbreplay battle-results

json5 { "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:

shell wotbreplay-inspector 20221205_1409__zeekrab_A140_ASTRON_REX_105_2308651318200102307.wotbreplay battle-results --raw

```toml [[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

...

```