summary refs log tree commit diff stats
path: root/src/game.cpp
Commit message (Collapse)AuthorAgeFilesLines
* we can now build a mac bundle!Star Rauchenberger2022-03-201-4/+5
|
* fixed bug that restarts game & doubles music if you press esc while fading inStar Rauchenberger2022-03-201-1/+3
|
* added fade in to new gameStar Rauchenberger2022-03-191-0/+14
| | | | and fixed music on new game
* added wasd movementStar Rauchenberger2022-03-191-4/+4
|
* menu!Star Rauchenberger2022-03-191-12/+22
|
* game tries to make sure initial cave is not tinyStar Rauchenberger2022-03-191-10/+48
|
* fixed jitter while moving and zoomingStar Rauchenberger2022-03-191-2/+0
|
* load line lag is betterStar Rauchenberger2022-03-191-4/+33
|
* fixed a lot of the zoom problemsStar Rauchenberger2022-03-181-6/+9
| | | | still looks weird while moving
* more wall rendersStar Rauchenberger2022-03-181-4/+26
|
* lotta performance improvementsStar Rauchenberger2022-03-171-90/+105
| | | | | | | the two main things: 1) When ticking three times after a lighting change, we no longer iterate over the entire map. Instead, we keep a list of the tiles that have changed and the ones adjacent to them, and we iterate over that list. 2) The map tile type is now stored in a separate array from the rest of the tile data. This is because the tile type is the only thing needed for the cellular automata tick, and thus the only thing that we need to actually copy.
* signs are more common and also quieterStar Rauchenberger2022-03-161-2/+2
|
* signs can be read now!Star Rauchenberger2022-03-161-5/+28
|
* added signs (which can't be read yet)Star Rauchenberger2022-03-161-3/+67
|
* instead of ticking the entire screen every lighting update we only tick a ↵Star Rauchenberger2022-03-151-2/+6
| | | | | | chunk size around the player is this helping?
* lit tiles in unloaded chunk should count toward total lit tiles for zoomingStar Rauchenberger2022-03-151-5/+2
|
* maybe made the slowdown when zoomed out much betterStar Rauchenberger2022-03-151-6/+6
|
* started adding zooming anim, looks weird esp when movingStar Rauchenberger2022-03-151-3/+11
|
* fixed flickering while walkingStar Rauchenberger2022-03-141-1/+1
| | | | sort of. the (intentional) dust flicker is still there. might want to remove the player trailing dust as they walk.
* a lot faster now thanks to only ticking on-screen every loopStar Rauchenberger2022-03-141-3/+8
| | | | flickering while moving now though
* map is now "infinite" using chunks that dynamically load like in diamond&pearlStar Rauchenberger2022-03-141-86/+37
| | | | game is also slow as shit now
* fmod splash screenStar Rauchenberger2022-03-141-0/+1
|
* refactored game code into the game class (for titles / multiple games)Star Rauchenberger2022-03-131-0/+885