This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nesgame/README

30 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2012-11-02 22:39:39 -04:00
Yo, it's a NES game!
Sort of. It will get better.
2012-11-06 23:55:50 -05:00
Compiles with Ophis (http://michaelcmartin.github.com/Ophis/), tests with fceux (http://www.fceux.com/web/home.html). Put them both in your path, type "make", "make test", have fun staring at the pretty (?) pictures.
2012-11-02 22:39:39 -04:00
Milestone list:
1- (DONE) Boot a ROM that does nothing
2- (DONE) Single sprite visible on the screen
3- (DONE) Complete complex (multi-part) sprite visible on the screen
3.5 - (DONE) single background tile visible on the screen
4- (INVALIDATED) Swap palette of sprite in response to gamepad
This milestone got invalidated because my sprite data is in ROM, not in RAM
and besides, milestone 5 covers everything this was supposed to anyway
5- (DONE) Move sprite on screen with no animation
2012-11-02 22:39:39 -04:00
6- Display a full tile map on the screen
7- Collide a sprite with the world map
8- Apply gravity to a sprite and have him stand on the "ground"
9- Jumping sprite in response to the gamepad
10- Scrolling tile map (moving camera)
11- (DONE) Add a second actor/sprite to the screen
11.5 Make all visible actors stand
2012-11-02 22:39:39 -04:00
12- Collide two actors with each other
13- Create actors on screen from map data (e.g. some data in RAM)
14- Change an actor's sprite based on its state
15- AI update functions for each actor type called once per frame
16- Play a sound effect based on a collision event
17- Loop background music
18- Tilemap transitions (e.g., end of level)