/* Sprite demo. Animate all 64 hardware sprites. */ #include #include // include NESLIB header #include "neslib.h" // link the pattern table into CHR ROM //#link "chr_generic.s" /*{pal:"nes",layout:"nes"}*/ const char PALETTE[32] = { 0x03, // screen color 0x11,0x30,0x27,0x0, // background palette 0 0x1c,0x20,0x2c,0x0, // background palette 1 0x00,0x10,0x20,0x0, // background palette 2 0x06,0x16,0x26,0x0, // background palette 3 0x16,0x35,0x24,0x0, // sprite palette 0 0x00,0x37,0x25,0x0, // sprite palette 1 0x0d,0x2d,0x3a,0x0, // sprite palette 2 0x0d,0x27,0x2a // sprite palette 3 }; // setup PPU and tables void setup_graphics() { // clear sprites oam_clear(); // set palette colors pal_all(PALETTE); // turn on PPU ppu_on_all(); } // number of actors #define NUM_ACTORS 64 // 64 sprites (maximum) // actor x/y positions byte actor_x[NUM_ACTORS]; // horizontal coordinates byte actor_y[NUM_ACTORS]; // vertical coordinates // actor x/y deltas per frame (signed) sbyte actor_dx[NUM_ACTORS]; // horizontal velocity sbyte actor_dy[NUM_ACTORS]; // vertical velocity // main program void main() { char i; // actor index char oam_id; // sprite ID // initialize actors with random values for (i=0; i