aboutsummaryrefslogtreecommitdiff
path: root/src/map.c
AgeCommit message (Collapse)Author
2023-07-20Erase collected goldJuan J. Martinez
Although the erase code of the player is likely to clean the gold after being picked up, there could be some left overs in some corner cases, so we let the map erase the gold to ensure it is 100% clean.
2023-07-11Add gol/silver keys and door logicJuan J. Martinez
2023-07-08Avoid drawing the whole screen on each frameJuan J. Martinez
This allows supporting 386DX "just about" (there will be flickering).
2023-07-06Add tracker enemy (Mr Bones)Juan J. Martinez
2023-07-06Add free enemy (Old Miner)Juan J. Martinez
2023-06-29Add pickaxe pickupJuan J. Martinez
2023-06-27Add pikcupsJuan J. Martinez
WIP: only time and bonuses for now.
2023-06-27Add Bat enemyJuan J. Martinez
2023-06-25Add entity system, add new enemy (snake)Juan J. Martinez
2023-06-22Import entities from the map and spawn themJuan J. Martinez
2023-06-20Add gold supportJuan J. Martinez
- added gold layer to the map - the player can collect gold - updates the score - TODO: end of stage
2023-06-15Add map collision detection functionsJuan J. Martinez
2023-06-13Map rendererJuan J. Martinez