ncurses:箭头键不起作用

时间:2014-04-21 02:18:31

标签: c++ ncurses arrow-keys

我试图写一个蛇克隆,我刚刚开始编写代码,但是我在使键盘工作方面遇到了一些问题。当我点击箭头键时似乎没有得到信号。这是我的代码

#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();
}

2 个答案:

答案 0 :(得分:1)

使用wchar_t代替char存储箭头键代码。

看看这个:char vs wchar_t when to use which data type

最重要的是,保证char足够用于ASCII字符集的空间,因为它的数量接近256位。但是Unicode编码需要的空间超出char所不能承受的范围。

答案 1 :(得分:0)

char的大小不足以容纳KEY_RIGHT,因为它是{strong> 之后{{ 1}}。

与之类似,char足够大,但是(请参见手册页)intchtype是给出的示例的正确类型,正如编译器会告诉您的(在询问时)

({wchar_tint的大小也不相同,但是出于实际目的,curses库使用的任何chtype都可以容纳在int中)。