#include "neslib.h" #include "nes.h" #include #define NES_MAPPER 2 // UxROM mapper #define NES_CHR_BANKS 0 // CHR RAM #define PPU_IS_ON() (PPU.mask & (MASK_BG|MASK_SPR)) void monobitmap_split() { // split screen at line 128 split(0,0); PPU.control = PPU.control ^ 0x10; // bg bank 1 } void monobitmap_set_pixel(byte x, byte y, byte color) { byte b; // compute pattern table address word a = (x/8)*16 | ((y&63)/8)*(16*32) | (y&7); if (y & 64) a |= 8; if (y & 128) a |= 0x1000; // if PPU is active, wait for next frame if (PPU_IS_ON()) { ppu_wait_nmi(); } // read old byte vram_adr(a); vram_read(&b, 1); if (color) { b |= 128 >> (x&7); // set pixel } else { b &= ~(128 >> (x&7)); // clear pixel } // write new byte vram_adr(a); vram_put(b); // if PPU is active, reset PPU addr and split screen if (PPU_IS_ON()) { vram_adr(0); monobitmap_split(); } } void monobitmap_draw_line(int x0, int y0, int x1, int y1, byte color) { int dx = abs(x1-x0); int sx = x0dy ? dx : -dy)>>1; int e2; for(;;) { monobitmap_set_pixel(x0, y0, color); if (x0==x1 && y0==y1) break; e2 = err; if (e2 > -dx) { err -= dy; x0 += sx; } if (e2 < dy) { err += dx; y0 += sy; } } } // write values 0..255 void monobitmap_put_256inc() { word i; for (i=0; i<256; i++) vram_put(i); } void monobitmap_put_attrib() { vram_fill(0x00, 0x10); // first palette vram_fill(0x55, 0x10); // second palette } void monobitmap_clear() { // clear pattern table vram_adr(0x0); vram_fill(0x0, 0x2000); } void monobitmap_setup() { monobitmap_clear(); // setup nametable A and B vram_adr(NAMETABLE_A); monobitmap_put_256inc(); monobitmap_put_256inc(); monobitmap_put_256inc(); monobitmap_put_256inc(); vram_adr(NAMETABLE_A + 0x3c0); monobitmap_put_attrib(); monobitmap_put_attrib(); bank_bg(0); // setup sprite 0 oam_clear(); oam_size(0); oam_spr(255, 125, 255, 0, 0); bank_spr(1); // make sprite 255 = white square vram_adr(0x1ff0); vram_fill(0xff, 0x10); } /*{pal:"nes",layout:"nes"}*/ const byte MONOBMP_PALETTE[16] = { 0x03, 0x30, 0x03, 0x30, 0x00, 0x03, 0x30, 0x30, 0x00, 0x30, 0x03, 0x30, 0x00, 0x03, 0x30, 0x30 }; void monobitmap_demo() { byte i; static const byte x1 = 16; static const byte y1 = 16; static const byte x2 = 240; static const byte y2 = 208; for (i=x1; i<=x2; i++) { monobitmap_set_pixel(i,y1,1); monobitmap_set_pixel(i,y2,1); } for (i=y1; i<=y2; i++) { monobitmap_set_pixel(x1,i,1); monobitmap_set_pixel(x2,i,1); } for (i=x1; i