// ----------------------------------------------------- // lightbot simulator to check Light-bot level solutions // Fritz Ruehr, WU CS 141, Fall 2011 // (original Light-bot by Coolio-Niato and Armor Games) // ----------------------------------------------------- #include #include // -------------------- constants #define prefix "lev" #define suffix ".dat" #define SIZE 8 #define Off 2 // -------------------- macros (enum { East, North, West, South } d; ) // (ints vs. enums for modular arithmetic) #define left d=(d+1)%4 #define right d=(d+3)%4 #define dx ((1-d)%2) #define dy ((2-d)%2) #define curr board[x][y] #define next board[x+dx][y+dy] #define target ((d%2)?y+dy:x+dx) #define forward { x+=dx; y+=dy; } #define safe (0<=target && target0) (l)=(3-l)%3 // -------------------- global data typedef struct {int h; int l;} tile; // enum { None, On, Off } l ; tile board[SIZE][SIZE]; // board of heights and lights int x, y, d; // start position & direction // -------------------- readBoard int readBoard(char* fname) { FILE* boardfile=fopen(fname,"r"); int i, j; for(i=0; i