How can I get a single keyboard character from the terminal with Ruby without pressing enter?
I tried Curses::getch, but that didn't really work for me.
|
|
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/2999
(Tested on my OS X system, may not be portable to all Ruby platforms). See http://www.rubyquiz.com/quiz5.html for some additional suggestions, including for Windows. |
|||||||||||
|
|
This should be cross platform: First you have to install highline:
Then it's as easy as:
|
|||||||||
|
|
Raw mode (
And if you want non-blocking input -- that is, periodically check if the user has pressed a key, but in the meantime, go do other stuff -- then you can do this:
Note that you don't need a special SIGINT handler for the non-blocking version since the tty is only in raw mode for a brief moment. |
|||||||
|
|
|
|||
|
|
|
And if you are building curses application, you need to call
http://www.ruby-doc.org/stdlib-1.9.3/libdoc/curses/rdoc/Curses.html#method-c-cbreak |
|||
|
|
|
@Jay gave a great answer, but there are two problems:
A simple fix for that is to save previous tty state and use following parameters:
In the end you would have a function like this:
|
|||
|
|