up vote 1 down vote favorite
1
share [g+] share [fb]

And I know there's std::cin, but that requires the user to enter a string, then press ENTER. Is there a way to simply get the next key that is pushed without needing to press ENTER to confirm

link|improve this question

duplicate: stackoverflow.com/questions/421860/… – Jesse Beder May 26 '09 at 19:42
feedback

3 Answers

up vote 2 down vote accepted

You can use

#include <conio.h>

and then catch char with cases such as this

char c;
if (_kbhit())
{
  c = getch();
  switch(c)
  {
  case ‘\0H’ :
  cout << "up arrow key!" << endl;
  break;
  }
}

Beware: I have not tried it... and remember to put the whole thing into a "while(true)" to test.

link|improve this answer
2  
I assume that <conio.h> and _kbhit() are windows/DOS specific? – camh May 24 '09 at 2:07
Also, hoe does '\OH' translate into up arrow? (As in, what are the values of the down, left, and right arrows?) – Keand64 May 24 '09 at 2:31
@camh: yes, afaik @Kean64: if i remember correctly, there are constants like ARROW_KEY_UP, please try that. not in front of my devel computer... – Dervin Thunk May 24 '09 at 2:58
This is not standard C++ – bcsanches Nov 25 '11 at 17:08
feedback

What you're looking for is related to manipulating the console, and is OS-dependent. If you're in a UNIX-based OS, check out the curses library, and in Windows, there are getch() and kbhit() functions from <conio.h>.

link|improve this answer
pdcurses is portable. – Bastien Léonard May 24 '09 at 18:56
feedback

In order to read the keyboard you need to step out of the C++ and use the C-runtime library, look in conio.h - getch

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.