KO
|
EN
gitlite — search
Search
#python
#react
#typescript
#cpp
#api
#nextjs
#golang
#javascript
#deep-learning
#openai
#css
#html
wotreplay
★ 7
Open GitHub ↗
WoT Replay Parser
Download README (.md)
Explore Similar Repositories
StranikS_Scan-mods
:
Mods for WorldOfTanks
wg-mod
:
A CLI to help people making WorldOfTanks mods
wot-vt-converter
:
convert 3dsmax2012-generated obj format into WorldofTanks vt file, or extract one from legacy BigWorld primitives file.
WSPinger-ClustersList
:
List of actual casters of WorldOfTanks for the program WSPinger
wows_replay_on_linux-Obsolete-
:
Watch replay files of World of Tanks & Warships on Linux desktop
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
wotreplay
?
Download (.md)
# WoTReplay [](https://travis-ci.org/kosh04/wotreplay) [](https://goreportcard.com/report/github.com/kosh04/wotreplay) [](https://godoc.org/github.com/kosh04/wotreplay) [World of Tanks](https://worldoftanks.com/) Replay Parser (written in Go) *This package is work in progress* ## Usage ### command-line $ wotreplay-parse [-out FILE] *.wotreplay $ wotreplay-parse FILE.wotreplay | jq . { "Date": "08.06.2017 04:52:35", "Map": "聖なる谷", "Gamemode": "1:Random", "Reason": "1:Extermination", "Tank": "ussr-R41_T-50", "Player": "kosh04", "Version": "World of Tanks v.0.9.19.0.1 #450" } ### Go code import ( "fmt" "github.com/kosh04/wotreplay" ) r, err := wotreplay.ParseFile("FILE.wotreplay") if err != nil { // ParseError } fmt.Println(r) ## TODO - [ ] Define JSON data type of Matchstart, ButtleResult, etc - [ ] Analyze packet - [ ] Friendly command-line - [ ] [wotrp2j.py](https://github.com/Phalynx/WoT-Replay-To-JSON) compatible JSON - [ ] Enable parse of old replays ## Similar Projects - https://github.com/evido/wotreplay-parser (C++) - https://github.com/Aimdrol/WoT-Replay-Analyzer (exe only) - https://github.com/Phalynx/WoT-Replay-To-JSON (Python) - https://gist.github.com/benvanstaveren/2402016 (Perl) - https://github.com/thesilvervestgroup/wot-replay-parser (PHP) ## License MIT License