vote up 0 vote down star

In trying to get input from the arrow keys via curses (ncurses) it won't catch as KEY_UP etc. I used the keypad function with a true argument but getch still returns an escaped sequence. How do I sift through the values returned by getch() and grab the arrow keys specifically?

flag

4 Answers

vote up 0 vote down

Standard (VT100-like) terminals send a sequence of characters when the arrow keys are pressed. You just have to keep track of whether or not these are pressed in sequence. Here are the char's to watch for:

Down Arrow  0x1B 0x5B 0x42
Left Arrow  0x1B 0x5B 0x44
Right Arrow 0x1B 0x5B 0x43
Up Arrow    0x1B 0x5B 0x41
link|flag
Are there escape codes you could enter as a key combination or sequence using ctrl for these? – Sean A.O. Harney Jul 25 at 19:11
No need; you can type them directly. 0x1B = esc, 0x5B = [, and 0x41 - 0x44 = A - D. Type esc[D in your terminal, and the cursor moves to the left. – Ryan Ballantyne Jul 25 at 19:27
1  
This approach pretty much fully defeats the whole purpose of working with curses library in the first place :-) – Andrew Y Jul 26 at 8:41
vote up 0 vote down

What is your terminal setting? $TERM

link|flag
vote up 1 vote down check

I fixed it! I was storing getch() calls as char's when they were supposed to be int's. Fixed perfectly after the switch.
Thanks for the help anyway!

link|flag
vote up 0 vote down

I found the same problem on Mac OS X. But it was resolved by adding following:

keypad(stdscr, TRUE);

link|flag

Your Answer

Get an OpenID
or

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