Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup basic window functionality #7

Merged
merged 46 commits into from
Apr 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
c673812
wpgu start initial commit, working boids
Mar 14, 2022
125d992
WIP, it compiles now
Mar 14, 2022
2492c12
WIP, triangle
Mar 14, 2022
5d8686e
WIP, triangle
Mar 14, 2022
e50ef95
more WIP
Mar 14, 2022
3cfbf56
more WIP
Mar 14, 2022
049917a
fixed redrawing
Mar 14, 2022
5e65394
suff
VincentLagerros Mar 14, 2022
14df589
nytt WIP, kapacitet för fler modeller
Mar 14, 2022
282cad7
added my balls
VincentLagerros Mar 14, 2022
eedbc1d
added camera fly and golf balls
VincentLagerros Mar 14, 2022
0157a40
fixed camera
VincentLagerros Mar 15, 2022
0b34240
added deltatime & framerate
VincentLagerros Mar 15, 2022
04a458f
add icon remove cursor
ollisco Mar 15, 2022
64444cf
remove another dupe line
ollisco Mar 15, 2022
6574987
add png logo
ollisco Mar 15, 2022
8f7c20c
fixed icon
VincentLagerros Mar 15, 2022
fa2e2b3
added best icon
VincentLagerros Mar 15, 2022
a6841c4
Add Q and E to switch between camera control and cursor control
ollisco Mar 15, 2022
85c4976
resolve icon merge conflicts
ollisco Mar 15, 2022
6ed1284
made code cleaner
VincentLagerros Mar 15, 2022
7870982
remove warnings from main.rs
ollisco Mar 15, 2022
d991687
Remove unused variables and imports
ollisco Mar 15, 2022
411e1e9
changed camera speed to dt
VincentLagerros Mar 15, 2022
8eb695d
Add 'How to run' and keybindings to README
ollisco Mar 15, 2022
ad0b7b8
Abstract away window functionality to reduce code duplication and boi…
ollisco Mar 15, 2022
af63ef6
Added internal support for more advanced model management
TerraDOOM Mar 16, 2022
1a47533
fixed IDE
TerraDOOM Mar 16, 2022
90b1b52
Code formatting & cleanup; Fix bug on non-windows
foodelevator Mar 16, 2022
3ec4bdb
Initial Cleanup, extract instance creating
ollisco Mar 17, 2022
84776bb
fixup im.rs
ollisco Mar 17, 2022
aa23a8a
🧹 Just sweeping up some unclean code 🧹
foodelevator Mar 17, 2022
db6979e
🧹 Just sweeping some stuff under the rug 🧹
foodelevator Mar 17, 2022
8f2f047
Oh damn i lost my broom
foodelevator Mar 17, 2022
7e22f68
🧹 Found it! 🧹
foodelevator Mar 17, 2022
3469213
📦 Moving stuff around 📦
foodelevator Mar 18, 2022
69bef01
Give control flow back to `main` function
foodelevator Mar 18, 2022
f21c727
Fix error handling
foodelevator Mar 18, 2022
7212363
Fix aspect ratio
foodelevator Mar 18, 2022
17071bc
Remove (not) ppm image generator
foodelevator Mar 18, 2022
733013f
Cleanup wpgu for PR (#22)
ollisco Mar 20, 2022
902e4db
Added .DS_Store to gitignore
OlleStrand Mar 25, 2022
5d9690e
Revert "Added .DS_Store to gitignore"
OlleStrand Mar 25, 2022
21c06bd
Added DS_Store to gitignore
OlleStrand Mar 25, 2022
79e6017
Added line drawing support to the renderer
TerraDOOM Mar 27, 2022
116db3e
Merge branch 'cleanup-wpgu' into wpgu-start
TerraDOOM Mar 27, 2022
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@

# These are backup files generated by rustfmt
**/*.rs.bk

# emacs backup files
*~

# OS Specific
.DS_Store
Loading