2

我正在尝试熟悉 ncurses,但我遇到了一个问题 - KEY_LEFT 等常量似乎是错误的。

例如,我正在尝试捕捉键盘箭头。应该很简单

while (ch = getch()){
  if (ch == KEY_LEFT)
    foo();
}

但这不起作用。我ch写了出来,上面写着——左箭头是 68,右箭头是 67,上 65,下 66。

这不会是一个问题,但是当试图捕捉鼠标事件时,它会变坏。左键单击终端会给我从 33 到 742 的值,单击左上角时最少,单击右下角时最多。我勒个去?

这是我的全部主要内容,以防万一

int main(void){
initscr();


start_color();
init_pair(1, COLOR_YELLOW, COLOR_WHITE);
init_pair(2, COLOR_RED, COLOR_RED);

cbreak();

//printw("Hai!\n");
noecho();
int width;
int height;

getmaxyx(stdscr, height, width);

int posx = 30;
int posy = 30;

const char* str = "   ";
const char* hint = "ch = %d";

curs_set(0);


mousemask(BUTTON1_CLICKED, NULL);

unsigned int ch = 0;
while (ch = getch()) {
    attron(COLOR_PAIR(1));
    mvprintw(0, 0, hint, ch);
    mvdelch(posy,posx);
    mvdelch(posy, posx);
    mvdelch(posy, posx);
    switch (ch) {
        case 68:
            if (posx > 0) posx--;
            //mvprintw(1,0,"LEFT");
            break;

        case 67:
            if (posx < width) posx++;
            break;

        case 65:
            if (posy > 0) posy--;
            break;

        case 66:
            if (posy < height) posy++;
            break;

        case KEY_MOUSE:
            MEVENT event;
            if (getmouse(&event)==OK){
                posx = event.x;
                posy = event.y;
            }
    }

    attron(COLOR_PAIR(2));
    mvprintw(posy, posx, str);

    refresh();
}

endwin();

return 0;

}

4

1 回答 1

2

因为(几乎)总是看一下手册会有帮助。看看man getch

功能键 如果键盘已启用,则在 curses.h 中定义的以下功能键可能由 getch 返回。请注意,并非所有这些都必须在任何特定终端上得到支持。

看来你错过了

keypad (stdscr, TRUE);

在你的程序中。至少它不会出现在您发布的片段中。

于 2013-03-01T00:39:12.603 回答