-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconio.h
72 lines (63 loc) · 1.31 KB
/
conio.h
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef _CONIO_H_
#define _CONIO_H_
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/select.h>
#include <termios.h>
struct termios orig_termios;
void reset_terminal_mode()
{
tcsetattr(0, TCSANOW, &orig_termios);
}
void reset_terminal_mode_ex()
{
reset_terminal_mode();
printf("\x1b[0m"); // Reset colors
fflush(stdout);
printf("\n");
}
void set_conio_terminal_mode()
{
struct termios new_termios;
/* take two copies - one for now, one for later */
tcgetattr(0, &orig_termios);
memcpy(&new_termios, &orig_termios, sizeof(new_termios));
/* register cleanup handler, and set the new terminal mode */
atexit(reset_terminal_mode_ex);
cfmakeraw(&new_termios);
tcsetattr(0, TCSANOW, &new_termios);
}
int kbhit()
{
struct timeval tv = { 0L, 0L };
fd_set fds;
FD_ZERO(&fds);
FD_SET(0, &fds);
return select(1, &fds, NULL, NULL, &tv);
}
int getch()
{
int r;
unsigned char c;
fflush(stdout);
if ((r = read(0, &c, sizeof(c))) < 0) {
return r;
} else {
if (r==0)
return -1;
else
return c;
}
}
/* EXAMPLE:
int main(int argc, char *argv[])
{
set_conio_terminal_mode();
while (!kbhit()) {
// do some work
}
(void)getch(); // consume the character
}
*/
#endif