#include #include #include #include #include #define COLS 32 #define ROWS 28 typedef unsigned char byte; typedef signed char sbyte; typedef unsigned short word; // read a character from VRAM. // this is tricky because we have to wait // for VSYNC to start, then set the VRAM // address to read, then set the VRAM address // back to the start of the frame. byte getchar(byte x, byte y) { // compute VRAM read address word addr = 0x2020+x+y*32; byte rd; // wait for VBLANK to start waitvsync(); // set VRAM read address in PPU PPU.vram.address = addr>>8; PPU.vram.address = addr&0xff; // read the char from PPUDATA rd = PPU.vram.data; // discard rd = PPU.vram.data; // keep this one // reset the VRAM address to start of frame PPU.vram.address = 0x00; PPU.vram.address = 0x00; // return result return rd; } void delay(byte count) { while (count--) waitvsync(); } ////////// GAME DATA typedef struct { byte x; byte y; byte dir; word score; char head_attr; char tail_attr; int collided:1; int human:1; } Player; Player players[2]; byte credits = 0; byte frames_per_move; #define START_SPEED 12 #define MAX_SPEED 5 #define MAX_SCORE 7 /////////// const char BOX_CHARS[8] = { 17, 8, 20, 18, 11, 11, 14, 14 }; void draw_box(byte x, byte y, byte x2, byte y2, const char* chars) { byte x1 = x; cputcxy(x, y, chars[2]); cputcxy(x2, y, chars[3]); cputcxy(x, y2, chars[0]); cputcxy(x2, y2, chars[1]); while (++x < x2) { cputcxy(x, y, chars[5]); cputcxy(x, y2, chars[4]); } while (++y < y2) { cputcxy(x1, y, chars[6]); cputcxy(x2, y, chars[7]); } } void draw_playfield() { draw_box(0,1,COLS-1,ROWS-1,BOX_CHARS); cputsxy(0,0,"Plyr1:"); cputsxy(20,0,"Plyr2:"); cputcxy(7,0,players[0].score+'0'); cputcxy(27,0,players[1].score+'0'); } typedef enum { D_RIGHT, D_DOWN, D_LEFT, D_UP } dir_t; const char DIR_X[4] = { 1, 0, -1, 0 }; const char DIR_Y[4] = { 0, 1, 0, -1 }; void init_game() { memset(players, 0, sizeof(players)); players[0].head_attr = '1'; players[1].head_attr = '2'; players[0].tail_attr = 1; players[1].tail_attr = 9; frames_per_move = START_SPEED; } void reset_players() { players[0].x = players[0].y = 5; players[0].dir = D_RIGHT; players[1].x = COLS-6; players[1].y = ROWS-6; players[1].dir = D_LEFT; players[0].collided = players[1].collided = 0; } void draw_player(Player* p) { cputcxy(p->x, p->y, p->head_attr); } void move_player(Player* p) { cputcxy(p->x, p->y, p->tail_attr); p->x += DIR_X[p->dir]; p->y += DIR_Y[p->dir]; if (getchar(p->x, p->y) != ' ') p->collided = 1; draw_player(p); } void human_control(Player* p) { byte dir = 0xff; byte joy; if (!p->human) return; joy = joy_read (JOY_1); if (joy & JOY_LEFT_MASK) dir = D_LEFT; if (joy & JOY_RIGHT_MASK) dir = D_RIGHT; if (joy & JOY_UP_MASK) dir = D_UP; if (joy & JOY_DOWN_MASK) dir = D_DOWN; // don't let the player reverse if (dir < 0x80 && dir != (p->dir ^ 2)) { p->dir = dir; } } byte ai_try_dir(Player* p, dir_t dir, byte shift) { byte x,y; dir &= 3; x = p->x + (DIR_X[dir] << shift); y = p->y + (DIR_Y[dir] << shift); if (x < COLS && y < ROWS && getchar(x, y) == ' ') { p->dir = dir; return 1; } else { return 0; } } void ai_control(Player* p) { dir_t dir; if (p->human) return; dir = p->dir; if (!ai_try_dir(p, dir, 0)) { ai_try_dir(p, dir+1, 0); ai_try_dir(p, dir-1, 0); } else { ai_try_dir(p, dir-1, 0) && ai_try_dir(p, dir-1, 1+(rand() & 3)); ai_try_dir(p, dir+1, 0) && ai_try_dir(p, dir+1, 1+(rand() & 3)); ai_try_dir(p, dir, rand() & 3); } } byte gameover; void flash_colliders() { byte i; // flash players that collided for (i=0; i<56; i++) { //cv_set_frequency(CV_SOUNDCHANNEL_0, 1000+i*8); //cv_set_attenuation(CV_SOUNDCHANNEL_0, i/2); if (players[0].collided) players[0].head_attr ^= 0x80; if (players[1].collided) players[1].head_attr ^= 0x80; delay(2); draw_player(&players[0]); draw_player(&players[1]); } //cv_set_attenuation(CV_SOUNDCHANNEL_0, 28); } void make_move() { byte i; for (i=0; i MAX_SPEED) frames_per_move--; // game over? if (players[0].score != players[1].score) { if (players[0].score >= MAX_SCORE) declare_winner(0); else if (players[1].score >= MAX_SCORE) declare_winner(1); } } void play_game() { gameover = 0; init_game(); players[0].human = 1; while (!gameover) { play_round(); } } void main() { joy_install (joy_static_stddrv); play_game(); }