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

Restructure build process to simplify the wasm memory fragmentation #62

Merged
merged 41 commits into from
Apr 12, 2020
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
94eaeaa
impl IntoIterator for Vec2, Vec3
konsumlamm Mar 13, 2020
0dad915
remove PartialOrd impl for Vec2, Vec3
konsumlamm Mar 13, 2020
78b6980
cargo fmt
konsumlamm Mar 14, 2020
7eb38f3
update tests
konsumlamm Mar 14, 2020
26a5645
remove unused files, start world module
konsumlamm Mar 14, 2020
6ab1c9d
add EngineError
konsumlamm Mar 14, 2020
28206c4
Add ressources module
TrueDoctor Mar 14, 2020
67f5d2f
Merge branch 'engine' of https://github.com/squirrel-labs/ratatosk in…
TrueDoctor Mar 15, 2020
fa39a5a
Add load Store fuction to library
TrueDoctor Mar 15, 2020
c81648a
Add lazy_static as dependency for rask engine
TrueDoctor Mar 15, 2020
3dd49cc
Implement collide for spine SRT
TrueDoctor Mar 15, 2020
289cf56
fix typos + doctest in resources module
konsumlamm Mar 15, 2020
0285b25
Merge branch 'engine' of https://github.com/squirrel-labs/ratatosk in…
konsumlamm Mar 15, 2020
667c729
various fixes
konsumlamm Mar 15, 2020
766d7c5
Rework mem fregmentation
TrueDoctor Apr 10, 2020
f44a9fd
stable?
TrueDoctor Apr 11, 2020
fa0c686
Fix errors during build process
TrueDoctor Apr 11, 2020
1758b05
Use meory ofsets, passed by the envorement variables
TrueDoctor Apr 11, 2020
7e16f99
Rename Library to ResourceTable
TrueDoctor Apr 11, 2020
6b4bcca
Cargo format
TrueDoctor Apr 11, 2020
2178923
Merge branch 'engine' into rework-memory
TrueDoctor Apr 11, 2020
00eb373
Rename ENV variables to match RESOURCE_TABLE
TrueDoctor Apr 11, 2020
257dbdf
Move formatting to the end of the pipeline
TrueDoctor Apr 11, 2020
1205cbf
Remove unused dependencies
TrueDoctor Apr 11, 2020
b6dfccf
Fix collision detection
konsumlamm Apr 12, 2020
9d3c548
Fix color_type
TrueDoctor Apr 12, 2020
43d744e
Fix doctest in resources/mod.rs
TrueDoctor Apr 12, 2020
6b24c1f
Replace rbox aabox collision
nat-rix Apr 12, 2020
570c6f6
Run cargo make format
nat-rix Apr 12, 2020
21e2539
Start introducing ResourceTable
TrueDoctor Apr 12, 2020
d3aade6
Merge branch 'engine' into rework-memory
TrueDoctor Apr 12, 2020
577f8be
Add upload_texture function to render
TrueDoctor Apr 12, 2020
ec19728
Crate gen/ directory if it does not exist
TrueDoctor Apr 12, 2020
5cb078c
Merge branch 'master' into rework-memory
TrueDoctor Apr 12, 2020
a445563
Fix broke Cargo.lock
TrueDoctor Apr 12, 2020
cc451e3
Fix some minor issues
TrueDoctor Apr 12, 2020
a49727d
Add lifetimes to GetStore trait
TrueDoctor Apr 12, 2020
2610d0e
Merge branch 'scheduling' into rework-memory
TrueDoctor Apr 12, 2020
e03029d
Diversify ResourceErrors
TrueDoctor Apr 12, 2020
d712d46
Remove lifetime specification from library
TrueDoctor Apr 12, 2020
5c7ed15
Fix minor issues
TrueDoctor Apr 12, 2020
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
10 changes: 5 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ kind: pipeline
name: default

steps:
- name: format
image: truedoctor/rust-wasm:nightly-2020-02-28
pull: if-not-exists
commands:
- nix-shell --run 'cargo make check-format' --arg inCI true # check formatting for all projects
- name: build
image: truedoctor/rust-wasm:nightly-2020-02-28
pull: if-not-exists
Expand Down Expand Up @@ -39,6 +34,11 @@ steps:
path: /tmp/demo
commands:
- cp -r client /tmp/demo
- name: format
image: truedoctor/rust-wasm:nightly-2020-02-28
pull: if-not-exists
commands:
- nix-shell --run 'cargo make check-format' --arg inCI true # check formatting for all projects

volumes:
- name: demo
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ gen/

# Direnv state-directory
.direnv/

# IntelliJ
ratatosk.iml
Loading