diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-09-16 21:17:43 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2023-09-16 21:39:43 +0300 |
| commit | cd6b1c97e341976031ff86ae49e62dce37ffcebb (patch) | |
| tree | f00c39237d8bcf704393643d6457180accbc6044 | |
| parent | feat: parsing sar custom data (#4) (diff) | |
| download | sdp.go-cd6b1c97e341976031ff86ae49e62dce37ffcebb.tar.gz sdp.go-cd6b1c97e341976031ff86ae49e62dce37ffcebb.tar.bz2 sdp.go-cd6b1c97e341976031ff86ae49e62dce37ffcebb.zip | |
docs: update the readme
| -rw-r--r-- | README.md | 23 |
1 files changed, 21 insertions, 2 deletions
| @@ -1,2 +1,21 @@ | |||
| 1 | # DemoParser [](https://goreportcard.com/report/github.com/pektezol/demoparser) [](https://github.com/pektezol/DemoParser/actions/workflows/CI.yml) [](https://github.com/pektezol/DemoParser/blob/main/LICENSE) | 1 | # DemoParser [](https://goreportcard.com/report/github.com/pektezol/demoparser) [](https://github.com/pektezol/DemoParser/blob/main/LICENSE) |
| 2 | Work-In-Progress demo parser for Portal 2. \ No newline at end of file | 2 | |
| 3 | Work-In-Progress demo parser for Portal 2 written in Golang. | ||
| 4 | |||
| 5 | Usage: | ||
| 6 | |||
| 7 | ```bash | ||
| 8 | $ ./parser demo.dem | ||
| 9 | ``` | ||
| 10 | |||
| 11 | Currently supports: | ||
| 12 | |||
| 13 | - File or folder input using the CLI. | ||
| 14 | - Basic parsing of demo headers each message type. | ||
| 15 | - Basic parsing of packet classes. | ||
| 16 | - Custom injected SAR data parsing. | ||
| 17 | |||
| 18 | TODO: | ||
| 19 | |||
| 20 | - StringTableEntry parsing. | ||
| 21 | - In-depth packet class parsing for each class. | ||