Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Use new binaryen version in CI #123

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ac11e6a
Expose wasm functions via SystemApi trait
TrueDoctor Nov 1, 2020
d51e50f
Port redering and event piplines to the ecs
TrueDoctor Nov 5, 2020
128a4e3
Restructure engine.rs
TrueDoctor Nov 5, 2020
05226b4
Appy review suggestions
TrueDoctor Nov 5, 2020
28d6a71
Merge pull request #101 from squirrel-labs/feature-engine-io
TrueDoctor Nov 5, 2020
47fe857
Fix threading by allowing adding on message listenens to all workers
TrueDoctor Nov 5, 2020
280ef31
Adjust logging verbosity
TrueDoctor Nov 5, 2020
58d5366
Merge pull request #103 from squirrel-labs/bugfix-threading
TrueDoctor Nov 5, 2020
5069c91
Initalize audio_context upon first keypress
TrueDoctor Dec 31, 2020
b8d7cbd
Fix format
TrueDoctor Dec 31, 2020
96fd05a
Merge pull request #111 from squirrel-labs/audio_policy
TrueDoctor Dec 31, 2020
7beb8dd
Make zoom position adjustable
TrueDoctor Dec 31, 2020
dc1a433
Merge pull request #112 from squirrel-labs/feature-zoom-position
TrueDoctor Dec 31, 2020
0fcc176
Add self referencing struct for animation storage
TrueDoctor Dec 17, 2020
7b69d71
Implement persistent animations in game engine
TrueDoctor Dec 17, 2020
25eb062
Restructure Keyboard handling
TrueDoctor Dec 29, 2020
d5f5eae
Update spine-rs
TrueDoctor Dec 30, 2020
1843f6a
Implement moving an changing direction
TrueDoctor Dec 30, 2020
0203498
Refactor animation systems
TrueDoctor Dec 31, 2020
c6ad61e
Cleanup code
TrueDoctor Dec 31, 2020
54c9ffb
Rewrite collision engine
nat-rix Nov 5, 2020
ef4c1a8
Add collisions for Vec2 and AABox
nat-rix Dec 5, 2020
1d4ab16
Implement collision between aabox and rbox
nat-rix Dec 30, 2020
6c23cd0
Write tests & fixes for point vs aabox collision
nat-rix Dec 30, 2020
d6a02e0
Add aabox vs aabox tests
nat-rix Dec 31, 2020
44d0c8e
Cleanup collision detection code
TrueDoctor Jan 1, 2021
c3ebeca
Add tests for rbox inside another rbox an flybys
TrueDoctor Jan 2, 2021
8f5e99b
Merge pull request #104 from squirrel-labs/feature-physics-engine
nat-rix Jan 2, 2021
2c131ba
Apply review fixes
TrueDoctor Jan 2, 2021
2ac322b
Merge pull request #110 from squirrel-labs/anmation_interpolation
TrueDoctor Jan 2, 2021
218159a
Add hierarchy system to gamen engine
TrueDoctor Jan 5, 2021
5962b33
Merge pull request #117 from squirrel-labs/feature-hierarchy
TrueDoctor Jan 5, 2021
52f1470
Deprecate wasm_processor in favor of wasm_set_stack_pointer
TrueDoctor Mar 14, 2021
0d7f5dc
Merge pull request #120 from squirrel-labs/deprecate_wasm_preprocessor
TrueDoctor Mar 19, 2021
a31c19d
Add mutable-globals to the build features
nat-rix Mar 21, 2021
0630315
Replace llvm atomic functions with instructions
nat-rix Mar 22, 2021
db59169
Remove the wasm init memory function
nat-rix Mar 22, 2021
c4b2cb5
Merge pull request #122 from squirrel-labs/bugfix-llvm-intrinsic-rename
TrueDoctor Mar 22, 2021
f0df346
Use new binaryen version
TrueDoctor Apr 8, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
196 changes: 107 additions & 89 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ members = [
"rask-server",
"wasm",
"lobby/",
"wasm/wasm-processor",
"wasm/wasm-sync"
]

Expand Down
Loading