-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* decompile replay with boxcars * refactor header parsing to boxcars format * refactor frame parsing to boxcars format 1 * update boxcars-py * readd flagged attribute handling * workaround for checking invalid actor ids * temp json file no longer needed * dropshot fixes * fix rotation on old replays * fix party leader parsing * fix error test * fix more tests * fix rest of the tests * clean up rattletrap * Added benchmarking to this pr * Add boxcars-py==0.1.1 to setup.py * Update benchmarking.yml * Update unsigned check for Engine.PlayerReplicationInfo:Team * Add safety check to GameEventHandler * add safety check for player team coming in at 4294967295 * update boxcars-py to 0.1.2 * handle new boxcars actor id format * update boxcars-py to 0.1.3 * fix camera settings * Update version number Co-authored-by: dtracers <[email protected]> Co-authored-by: Paul Seelman <[email protected]> Co-authored-by: Sciguymjm <[email protected]>
- Loading branch information
1 parent
7f188c8
commit 5d4385d
Showing
37 changed files
with
284 additions
and
593 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ venv/ | |
output | ||
.env | ||
.coverage | ||
rattletrap-* | ||
*.iml | ||
build/ | ||
carball.egg* | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
36 | ||
0 |
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
include requirements.txt | ||
include CARBALL_VERSION | ||
include init.py | ||
include carball/rattletrap/* | ||
include carball/analysis/* | ||
exclude carball/generated/* | ||
exclude carball/rattletrap/rattletrap-* | ||
recursive-include carball/generated/api *.py | ||
recursive-include carball *.xlsx |
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 |
---|---|---|
@@ -1 +1 @@ | ||
6 | ||
7 |
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
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
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
Oops, something went wrong.
5d4385d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Carball Benchmarks short_dropshot
carball/tests/benchmarking/benchmarking.py::test_short_dropshot
0.7242620648921544
iter/sec (stddev: 0.013851141960900187
)0.6077960552972108
iter/sec (stddev: 0.14301398941268187
)0.84
This comment was automatically generated by workflow using github-action-benchmark.
5d4385d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Carball Benchmarks intensive_oce_rlcs
carball/tests/benchmarking/benchmarking.py::test_intensive_oce_rlcs
0.06628853108761427
iter/sec (stddev: 0.16453871651497817
)0.06158342967316056
iter/sec (stddev: 0.19138208928114414
)0.93
This comment was automatically generated by workflow using github-action-benchmark.
5d4385d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Carball Benchmarks short_sample
carball/tests/benchmarking/benchmarking.py::test_short_sample
0.8343127981107309
iter/sec (stddev: 0.006526974199851653
)0.8930344604838997
iter/sec (stddev: 0.010219842775693095
)1.07
This comment was automatically generated by workflow using github-action-benchmark.
5d4385d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Carball Benchmarks full_rumble
carball/tests/benchmarking/benchmarking.py::test_full_rumble
0.06857996977966617
iter/sec (stddev: 0.3222570123747885
)0.05764721815835153
iter/sec (stddev: 0.6732893019363476
)0.84
This comment was automatically generated by workflow using github-action-benchmark.
5d4385d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Carball Benchmarks oce_rlcs
carball/tests/benchmarking/benchmarking.py::test_oce_rlcs
0.059391772044466225
iter/sec (stddev: 0.20357461942764168
)0.06239892238499711
iter/sec (stddev: 0.5863510863501828
)1.05
This comment was automatically generated by workflow using github-action-benchmark.