-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In BGA log parser, parse stats as well (#403)
- **Add stats.proto and unit test for simple game stats** - **Load the right fixture for the test** - **Add logic to parse player stats** - **Remove print** - **Search for stats event instead of looking at the very end** - **Make skipping a little faster** - **Don't print** - **Add comment** - **Make win/tie search a little more resilient** - **Simplify logic** - **Simplify a little more** - **Add script to fix emu cup data** - **Fix user names in worker script**
- Loading branch information
1 parent
0038e11
commit a6454a4
Showing
11 changed files
with
404 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
ark_nova_stats/bga_log_parser/fixtures/533468391_darcelmaw_hardyzhao.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
syntax = "proto3"; | ||
|
||
package ark_nova_stats.bga_log_parser.proto; | ||
|
||
message Map { | ||
|
||
} |
Oops, something went wrong.