// ncurses.c // Implements interface.h // Provides an in-terminal interface to the emulator. #include #include"interface.h" #include"../apple.h" #include"../cpu/6502.h" int TermX = 0; int TermY = 0; WINDOW *AppleWindow; const byte* VRAM; byte* VRAM_Position; int VRAM_Offset; void PrintInfo() { mvprintw(2, 43, " acc : %02x", acc); mvprintw(3, 43, " X : %02x", X ); mvprintw(4, 43, " Y : %02x", Y ); mvprintw(5, 43, " PC : %04x", PC); mvprintw(6, 43, " S : %02x", S ); mvprintw(7, 43, "Flags : %c%c_%c%c%c%c%c", getFlag(flag_N) ? 'N':'.' , getFlag(flag_V) ? 'V':'.' , getFlag(flag_B) ? 'B':'.' , getFlag(flag_D) ? 'D':'.' , getFlag(flag_I) ? 'I':'.' , getFlag(flag_Z) ? 'Z':'.' , getFlag(flag_C) ? 'C':'.' ); mvprintw(2, 65, "Stack"); int count = 3; for (int i = 0x1ff; i > 0x1e8; i--) { if (i == (0x1ff-S)) // Indicate the stack pointer! attron(A_REVERSE); mvprintw(count, 65, "%x : %x", i, GetMemory(i)); attroff(A_REVERSE); count++; } refresh(); } void DisplayInit() { // ncurses initialization functions. initscr(); cbreak(); noecho(); curs_set(0); keypad(stdscr, TRUE); // Draw decorative border. attron(A_REVERSE); move(0, 0); printw(" "); for (int i = 1; i <= 24; i++) { mvaddch(i, 0, ' '); mvaddch(i, 41, ' '); } mvprintw(25, 0, " ~ "); mvprintw(26, 0, " Alekseis Apple I "); mvprintw(27, 0, " "); attroff(A_REVERSE); // Create seperate Apple screen window. AppleWindow = newwin(24, 40, 1, 1); // @ prompt. mvwaddch(AppleWindow, TermY, TermX, '@' | A_BLINK); // Initialize the terminal shift register variables. VRAM = (byte*)malloc(960); VRAM_Position = VRAM; VRAM_Offset = 0; refresh(); } void DisplayClose() { free(VRAM); curs_set(1); endwin(); } void DisplayInput(byte n) { if (n == BS) { return; } n &= 0b01111111; // Place character mvwaddch(AppleWindow, TermY, TermX, ' '); mvwaddch(AppleWindow, TermY, TermX, n); // Add character to register *VRAM_Position = n; VRAM_Position++; if (VRAM_Position >= (VRAM + 960)) VRAM_Position = VRAM; TermX++; // If X is past width.. if (TermX >= 40) { //.. move to start of next line. TermX = 0; TermY++; } // If Y is past height.. if (TermY >= 24) { //.. discard the first line.. VRAM_Offset += 40; //.. verify the register offset.. if (VRAM_Offset >= 960) VRAM_Offset = VRAM; //.. and create an offset variable to cycle through memory with. byte *offset = VRAM + VRAM_Offset; // Then, for every cell of the screen, fill with the contents of the video memory. for (int i = 0; i < 23; i++) { for (int j = 0; j < 40; j++) { if (offset >= (VRAM + 960)) offset -= VRAM; mvwaddch(AppleWindow, i, j, *offset ); offset++; }} // Set to start of final line, and clear line. TermY = 23; TermX = 0; mvwprintw(AppleWindow, TermY, TermX, " "); } // @ prompt. mvwaddch(AppleWindow, TermY, TermX, '@' | A_BLINK); wrefresh(AppleWindow); }