Setting non-canonical mode on stdin with Ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T20:19:15Z http://stackoverflow.com/feeds/question/582200 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/582200/setting-non-canonical-mode-on-stdin-with-ruby 1 Setting non-canonical mode on stdin with Ruby Luke 2009-02-24T15:33:18Z 2009-02-25T11:02:48Z <p>I'm playing around with making a simple terminal-based game with Ruby, and I'm currently trying to come up with a way of reading input from the terminal.</p> <p>So far I've been using <code>gets</code>, but I'd like to have the game react instantly without requiring a newline (so you don't need to press a key, THEN enter).</p> <p>I've figured out I need to put the terminal in non-canonical mode, and I'm assuming I can do that by calling <code>$stdin.ioctl</code>. The problem is, I'm not sure what arguments or flags I should be passing to this, and the documentation and searches just lead to information about the underlying C function.</p> <p>Can anyone tell me what I should be calling <code>$stdin.ioctl</code> with? I'm using Terminal.app/tcsh on OSX Leopard.</p> <p>Edit: This is what I ended up using, thanks to MarkusQ:</p> <pre><code>%x{stty -icanon -echo} key = STDIN.read(1) </code></pre> http://stackoverflow.com/questions/582200/setting-non-canonical-mode-on-stdin-with-ruby/585024#585024 1 Answer by MarkusQ for Setting non-canonical mode on stdin with Ruby MarkusQ 2009-02-25T07:15:47Z 2009-02-25T07:15:47Z <p>Your problem is outside of ruby. </p> <p>Easiest answer: wrap your IO in %x{stty -raw echo} and %x{stty -raw echo} to change the mode with stty.</p> <p>You'll probably want to do and ensure an exit handler to make certain the mode is set back when you exit.</p> <p>-- MarkusQ</p>