I'm having some problems getting ncurses' getch() to block. Default operation seems to be non-blocking (or have I missed some initialization)? I would like it to work like getch() in Windows. I have tried various versions of

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

(not all at the same time). I would prefer to not (explicitly) use any WINDOW, if possible. A while loop around getch(), checking for a specific return value is OK too.

link|improve this question

WINDOW *w; char c; w = initscr(); timeout(3000); c = getch(); endwin(); Its giving me following error msh.c:(.text+0x1ffc): undefined reference to initscr' msh.c:(.text+0x2004): undefined reference to stdscr' msh.c:(.text+0x2014): undefined reference to wtimeout' msh.c:(.text+0x2019): undefined reference to stdscr' msh.c:(.text+0x2021): undefined reference to wgetch' msh.c:(.text+0x2029): undefined reference to endwin' – AJ. Oct 3 '09 at 10:00
feedback

3 Answers

up vote 12 down vote accepted

The curses library is a package deal. You can't just pull out one routine and hope for the best without properly initializing the library. Here's a code that correctly blocks on getch():

#include <curses.h>

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

You need to call initscr() or newterm() to initialize curses before it will work. This works fine for me:

#include <ncurses.h>

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

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

    printf("received %c (%d)\n", c, (int) c);
}
link|improve this answer
feedback

From a man page (emphasis added):

The timeout and wtimeout routines set blocking or non-blocking read for a given window. If delay is negative, blocking read is used (i.e., waits indefinitely for input).

link|improve this answer
#include <ncurses.h> void main() { timeout(-3000000); getch(); } does not block for me. Any clues? – Jonas Byström May 25 '09 at 1:55
2  
It's assumed that you're using the rest of curses properly, including initialization. – Rob Kennedy May 25 '09 at 3:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.