summary refs log tree commit diff stats
path: root/src/game.h
Commit message (Collapse)AuthorAgeFilesLines
* we can now build a mac bundle!Star Rauchenberger2022-03-201-1/+2
|
* added fade in to new gameStar Rauchenberger2022-03-191-1/+5
| | | | and fixed music on new game
* menu!Star Rauchenberger2022-03-191-1/+7
|
* game tries to make sure initial cave is not tinyStar Rauchenberger2022-03-191-0/+2
|
* fixed jitter while moving and zoomingStar Rauchenberger2022-03-191-3/+0
|
* load line lag is betterStar Rauchenberger2022-03-191-0/+4
|
* fixed a lot of the zoom problemsStar Rauchenberger2022-03-181-1/+3
| | | | still looks weird while moving
* lotta performance improvementsStar Rauchenberger2022-03-171-1/+3
| | | | | | | 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 can be read now!Star Rauchenberger2022-03-161-8/+7
|
* added signs (which can't be read yet)Star Rauchenberger2022-03-161-1/+13
|
* maybe made the slowdown when zoomed out much betterStar Rauchenberger2022-03-151-0/+1
|
* started adding zooming anim, looks weird esp when movingStar Rauchenberger2022-03-151-3/+5
|
* map is now "infinite" using chunks that dynamically load like in diamond&pearlStar Rauchenberger2022-03-141-38/+2
| | | | game is also slow as shit now
* fmod splash screenStar Rauchenberger2022-03-141-9/+1
|
* refactored game code into the game class (for titles / multiple games)Star Rauchenberger2022-03-131-10/+46
|
* 16:9 widescreen, and fullscreen is less weird nowStar Rauchenberger2022-03-121-5/+5
|
* dynamic wall and floor texturesStar Rauchenberger2022-03-121-0/+13
|
* player has a sprite now thanks to world of solariaStar Rauchenberger2022-03-121-0/+2
|
* added back bump sound (and assets for fuller music)Star Rauchenberger2022-03-121-0/+11
|
* Added music and lamp popping soundStar Rauchenberger2022-03-111-0/+2
|
* zooming fixesKelly Rauchenberger2018-06-061-2/+9
| | | | when zooming out, the view center stays the same (shifted by map edges). when zooming in, the view center becomes the player position at the start of zoom. the boundary of player movement is now also set to the target view area at start of zoom.
* players must move when dropping lampsKelly Rauchenberger2018-06-051-0/+3
| | | | if no direction is pressed, player dashes in direction of most recent movement. if no movement has occured, choose a random direction. if player cannot move in the chosen direction, choose a random direction. if the player cannot move in any direction, prevent dropping a lamp.
* refactored so that the renderer is its own classKelly Rauchenberger2018-06-051-0/+104