我试图写一个蛇克隆,我刚刚开始编写代码,但是我在使键盘工作方面遇到了一些问题。当我点击箭头键时似乎没有得到信号。这是我的代码
#include <iostream>
#include <unistd.h>
#include <ncurses.h>
struct Snake{
int x, y;
char s = 'O'; // logo
} snake;
int main()
{
initscr();
noecho();
curs_set(0);
keypad(stdscr, true);
nodelay(stdscr, true);
start_color();
init_pair(1, COLOR_MAGENTA, COLOR_BLACK );
attron(COLOR_PAIR(1));
int HEIGHT, WIDTH;
getmaxyx(stdscr, HEIGHT, WIDTH);
for (int x = 0; x < WIDTH-1; x++)
mvaddch(0, x, '*');
for (int y = 0; y < HEIGHT-2; y++)
mvaddch(y, WIDTH-1, '*');
for (int x = 0; x < WIDTH-1; x++)
mvaddch(HEIGHT-2, x, '*');
for (int y = 0; y < HEIGHT-2; y++)
mvaddch(y, 0, '*');
snake.x = WIDTH/2;
snake.y = HEIGHT/2;
mvaddch(snake.y, snake.x, snake.s);
refresh();
char key;
while((key = getch()) != 'q')
{
mvaddch(snake.y, snake.x, ' ');
switch(key)
{
case KEY_RIGHT:
snake.x +=1;
break;
case KEY_LEFT:
snake.x -=1;
break;
case KEY_UP:
snake.y -=1;
break;
case KEY_DOWN:
snake.y +=1;
break;
}
mvaddch(snake.y, snake.x, snake.s);
usleep(100000);
refresh();
}
getch();
erase();
endwin();
}
答案 0 :(得分:1)
使用wchar_t代替char存储箭头键代码。
看看这个:char vs wchar_t when to use which data type。
最重要的是,保证char足够用于ASCII字符集的空间,因为它的数量接近256位。但是Unicode编码需要的空间超出char所不能承受的范围。
答案 1 :(得分:0)