非阻塞getch(),ncurses

时间:2009-05-25 01:38:01

标签: linux g++ blocking ncurses getch

我遇到一些问题,让ncurses的getch()阻塞。默认操作似乎是非阻塞的(或者我错过了一些初始化)?我希望它像Windows中的getch()一样工作。我尝试了各种版本的

timeout(3000000);
nocbreak();
cbreak();
noraw();
etc...

(不是所有的同时)。如果可能的话,我宁愿不(明确地)使用任何WINDOW。在getch()周围进行while循环,检查特定的返回值也可以。

3 个答案:

答案 0 :(得分:34)

curses库是一个包交易。如果没有正确初始化库,你不能只提出一个例程并希望最好。这是一个正确阻止getch()

的代码
#include <curses.h>

int main(void) {
  initscr();
  timeout(-1);
  int c = getch();
  endwin();
  printf ("%d %c\n", c, c);
  return 0;
}

答案 1 :(得分:8)

来自a man page(强调补充):

  

timeoutwtimeout例程设置阻塞或非阻塞读取   给定的窗口。 如果delay为否定,则使用阻止读取(即,   无限期地等待输入。

答案 2 :(得分:8)

您需要调用initscr()newterm()来初始化curses,然后才能运行。这对我来说很好:

#include <ncurses.h>

int main() {
    WINDOW *w;
    char c;

    w = initscr();
    timeout(3000);
    c = getch();
    endwin();

    printf("received %c (%d)\n", c, (int) c);
}