while(ch != 'q') 
{
  printf("looping\n");
  sleep(1);
  if(kbhit()) 
   {
    ch = readch();
    printf("you hit %c\n",ch);
   }
}

This code gives me a blocking getch() like functionality. I am trying to use this code to capture up down arrow keys.

Added: Trying to capture key codes of up arrow gives me 3 chars 27, 91 and 65. Using if/else I am trying pattern matching but I only get 2 chars. Next one is captured when next key is pressed.

I want to capture full words using getchar() while always looking for certain keys all the time(esc, del etc.).

link|improve this question

Arrow keys (and even more, function keys) often generate multiple bytes in a terminal emulator. You could look at the terminal definitions in /usr/share/lib/terminfo (using infocmp to get a text representation) to see the diversity of sequences that used to be sent. These days, there are fewer genuine green-screens around (most terminals are windows running a terminal emulator instead), so there are fewer oddball terminal types to deal with. – Jonathan Leffler Oct 3 '09 at 13:59
1  
Closely related (but not identical) question: stackoverflow.com/questions/267250; and this is related too: stackoverflow.com/questions/905060 – Jonathan Leffler Oct 3 '09 at 14:14
Character code 27 (aka 033 or 0x1B) is ESC or escape. Character code 91 is '['; character code 65 is A. Your terminal generates that 3-character sequence for an up arrow - so it is more or less emulating an ANSI terminal. – Jonathan Leffler Oct 3 '09 at 14:18
feedback

2 Answers

up vote 0 down vote accepted

This example could help: raw mode demonstration (backspace to stop the demo)

link|improve this answer
1  
I have seen this code and My code gives me similar codes. But how do i do the pattern matching with three codes for UP key. My waits for the next key to be pressed. – Alex Xander Oct 3 '09 at 14:05
modifying the example to: char pp = 0; char p = 0; while( (i = read(0, &c, 1)) == 1) { if (pp == 033 && p == 0133 && (c &= 255) == 0102) /* DOWN / break; if (c == 0177) / ASCII DELETE */ break; printf( "%o, %o, %o\t%s\n\r", pp, p, c, &c); pp = p; p = c; } works on my linux box, but I would advise curse if you can use it (see linuxselfhelp.com/HOWTO/NCURSES-Programming-HOWTO/keys.html) – RC. Oct 3 '09 at 15:09
1  
This makes use of read(), after which I can not use getchar(). I am using getchar() to capture full word. Also looking for certain keys all the time(esc, del etc.) – Alex Xander Oct 3 '09 at 16:29
feedback

I can't reproduce Your problem:

#include <unistd.h> 
#include <stdio.h> 
#include <ctype.h> 

#include "kbhit.h" /* http://linux-sxs.org/programming/kbhit.html */

int main(){
  init_keyboard();
  char ch='x';
  while( ch != 'q' ){
    printf("looping\n");
    sleep(1);
    if( kbhit() ){
      printf("you hit");
      do{
        ch = readch();
        printf(" '%c'(%i)", isprint(ch)?ch:'?', (int)ch );
      }while( kbhit() );
      puts("");
    }
  }
  close_keyboard();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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