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
|
1
|
|||
|
|
|
You can use
and then catch char with cases such as this
Beware: I have not tried it... and remember to put the whole thing into a "while(true)" to test. |
||||||||
|
|
|
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 |
||
|
|
|
|
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 |
||
|
