2011-02-06 06:33:59 +00:00
|
|
|
#include <stdio.h>
|
2010-04-13 02:42:21 +00:00
|
|
|
#include <ncurses.h>
|
|
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
void initialize_curses() {
|
2010-04-20 05:10:03 +00:00
|
|
|
setlocale(LC_ALL, "en_US.utf-8"); /* supporting unicode characters */
|
|
|
|
initscr(); /* initialize the terminal in curses mode */
|
|
|
|
raw(); /* disable line buffers */
|
|
|
|
noecho(); /* character echo is unnecessary */
|
|
|
|
keypad(stdscr, TRUE); /* enable F and arrow keys */
|
|
|
|
start_color(); /* I want colors */
|
|
|
|
curs_set(FALSE); /* invisible cursor */
|
2010-04-13 04:07:00 +00:00
|
|
|
assume_default_colors(COLOR_WHITE, COLOR_GREEN);
|
2010-04-13 02:42:21 +00:00
|
|
|
|
|
|
|
init_pair(1, COLOR_BLACK, COLOR_WHITE);
|
|
|
|
init_pair(2, COLOR_RED, COLOR_WHITE);
|
|
|
|
init_pair(3, COLOR_WHITE, COLOR_BLUE);
|
2010-04-21 07:14:39 +00:00
|
|
|
init_pair(4, COLOR_WHITE, COLOR_GREEN);
|
2010-04-13 02:42:21 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void end_curses() {
|
|
|
|
endwin();
|
|
|
|
puts("Game finished.");
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2010-04-13 04:07:00 +00:00
|
|
|
|
|
|
|
void clear_screen() {
|
|
|
|
clear();
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|