-
Notifications
You must be signed in to change notification settings - Fork 0
/
io.c
45 lines (40 loc) · 1.01 KB
/
io.c
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
/*
* raw(?) I/O
*/
#include "io.h"
void gotoxy(POSITION pos) {
COORD coord = { pos.column, pos.row }; // 행, 열 반대로 전달
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}
void set_color(int color) {
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color);
}
void printc(POSITION pos, char ch, int color) {
if (color >= 0) {
set_color(color);
}
gotoxy(pos);
printf("%c", ch);
}
KEY get_key(void) {
if (!_kbhit()) { // 입력된 키가 있는지 확인
return k_none;
}
int byte = _getch(); // 입력된 키를 전달 받기
switch (byte) {
case 'q': return k_quit; // 'q'를 누르면 종료
case 224:
byte = _getch(); // MSB 224가 입력 되면 1바이트 더 전달 받기
switch (byte) {
case 72: return k_up;
case 75: return k_left;
case 77: return k_right;
case 80: return k_down;
default: return k_undef;
}
case 27: return k_escape; // ESC 키를 누르면 k_escape를 반환
case 32: return k_space;
case 104: return k_h;
default: return k_undef;
}
}