-
Notifications
You must be signed in to change notification settings - Fork 2
/
screen.c
64 lines (56 loc) · 1.2 KB
/
screen.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: screen.c
* Author: Anderson Souza <jair_anderson_bs@hotmail.com>
*
* Created on March 27, 2018, 8:15 PM
*/
#include "screen.h"
struct snake {
int coordinatey;
int coordinatex;
Snake* next;
};
struct screen {
int coordinatey;
int coordinatex;
Snake* snake;
};
int init_mode_cursor() {
initscr();
noecho();
cbreak();
keypad(stdscr, TRUE); //teclas do teclado funcionarem
curs_set(0); //desabilitar cursor
timeout(100);
}
int key_pressed(int old_dir) {
int new_dir = getch();
switch (new_dir) {
case left:
if (old_dir != right) {
return left;
}
case right:
if (old_dir != left) {
return right;
}
case down:
if (old_dir != up) {
return down;
}
case up:
if (old_dir != down) {
return up;
}
default:
return old_dir;
}
}
void end_window() {
endwin();
}