Colored selection (if terminal supports it)
This commit is contained in:
parent
9632d192df
commit
188261ceaa
30
Roofus.c
30
Roofus.c
|
@ -1,4 +1,4 @@
|
||||||
#define VERSION "1.01"
|
#define VERSION "1.02"
|
||||||
|
|
||||||
#define N 9
|
#define N 9
|
||||||
#define USERNAME_LENGTH 10
|
#define USERNAME_LENGTH 10
|
||||||
|
@ -36,6 +36,10 @@ int main () {
|
||||||
cbreak();
|
cbreak();
|
||||||
keypad(stdscr, true);
|
keypad(stdscr, true);
|
||||||
|
|
||||||
|
if (has_colors() == TRUE) {
|
||||||
|
start_color();
|
||||||
|
init_pair(1, COLOR_BLACK, COLOR_WHITE);
|
||||||
|
}
|
||||||
srand (time(NULL));
|
srand (time(NULL));
|
||||||
fp = fopen ("roofus.txt", "a+");
|
fp = fopen ("roofus.txt", "a+");
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
|
@ -343,12 +347,26 @@ void printm () {
|
||||||
printw ("\n\n");
|
printw ("\n\n");
|
||||||
for (i = 0; i < grid; i++) {
|
for (i = 0; i < grid; i++) {
|
||||||
for (j = 0;j < grid; j++) {
|
for (j = 0;j < grid; j++) {
|
||||||
if (i == my_y && j == my_x)
|
if (i == my_y && j == my_x) {
|
||||||
printw ("> ");
|
if (has_colors() == TRUE) {
|
||||||
|
attron(COLOR_PAIR(1));
|
||||||
|
} else {
|
||||||
|
printw ("> ");
|
||||||
|
}
|
||||||
|
}
|
||||||
if (matrix[i][j] != 0)
|
if (matrix[i][j] != 0)
|
||||||
printw ("%d\t", matrix[i][j]);
|
printw ("%d", matrix[i][j]);
|
||||||
else
|
else {
|
||||||
printw (" \t");
|
if (has_colors() == FALSE) {
|
||||||
|
printw (" ");
|
||||||
|
} else {
|
||||||
|
printw(".");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (has_colors() == TRUE) {
|
||||||
|
attroff(COLOR_PAIR(1));
|
||||||
|
}
|
||||||
|
printw("\t");
|
||||||
}
|
}
|
||||||
printw ("\n\n");
|
printw ("\n\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue