-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitialize.cpp
36 lines (31 loc) · 1 KB
/
initialize.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "initialize.h"
void initialize()
{
initscr (); //Turn on curses
cbreak (); //Turn off carriage return to enter data
noecho (); //Turn off echoing of input
timeout(300);
start_color (); //Turn on coloring of output
keypad (stdscr, TRUE); //Turn on F key entry and arrowkeys
curs_set(0); //Set cursor to underline
if (!has_colors ()) //If colors not available, kill program
{
endwin ();
fputs ("No colors!", stderr);
exit (1);
}
//Initialize color pairs
init_pair (BLACKONYELLOW, COLOR_BLACK, COLOR_YELLOW);
init_pair (WHITEONBLACK, COLOR_WHITE, COLOR_BLACK);
init_pair (WHITEONBLUE, COLOR_WHITE, COLOR_BLUE);
init_pair (BLACKONWHITE, COLOR_BLACK, COLOR_WHITE);
// Foreground , Background
srand(time(NULL));
}
void myExit()
{
erase (); //Clears the entire screen
refresh (); //Puts your graphics on the screen
endwin (); //Turns off graphics mode
exit(0);
}