How can I grab single key hit in D Programming Language + Tango? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:50:43Zhttp://stackoverflow.com/feeds/question/99546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango1How can I grab single key hit in D Programming Language + Tango?Brian Hsu2008-09-19T04:08:06Z2009-04-01T13:43:54Z
<p>I read this <a href="http://smartprogrammer.blogspot.com/2006/04/15-exercises-for-learning-new.html" rel="nofollow">article</a> and try to do the exercise in D Programming Language, but encounter a problem in the first exercise.</p>
<blockquote>
<p>(1) Display series of numbers
(1,2,3,4, 5....etc) in an infinite
loop. The program should quit if
someone hits a specific key (Say
ESCAPE key).</p>
</blockquote>
<p>Of course the infinite loop is not a big problem, but the rest is. How could I grab a key hit in D/Tango? In tango FAQ it says use C function kbhit() or get(), but as I know, these are not in C standard library, and does not exist in glibc which come with my Linux machine which I use to programming.</p>
<p>I know I can use some 3rd party library like <a href="http://www.gnu.org/software/ncurses/" rel="nofollow">ncurses</a>, but it has same problem just like kbhit() or get(), it is not standard library in C or D and not pre-installed on Windows. What I hope is that I could done this exercise use just D/Tango and could run it on both Linux and Windows machine.</p>
<p>How could I do it?</p>
http://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango/99593#995930Answer by BCS for How can I grab single key hit in D Programming Language + Tango?BCS2008-09-19T04:15:56Z2008-09-19T04:15:56Z<p>D generally has all the C stdlib available (Tango or Phobos) so answers to this question for GNU C should work in D as well.</p>
<p>If tango doesn't have the needed function, generating the bindings is easy. (Take a look at CPP to cut through any macro junk.)</p>
http://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango/100064#1000640Answer by larsivi for How can I grab single key hit in D Programming Language + Tango?larsivi2008-09-19T06:34:12Z2008-09-19T06:34:12Z<p>kbhit is indeed not part of any standard C interfaces, but can be found in conio.h. </p>
<p>However, you should be able to use getc/getchar from tango.stdc.stdio - I changed the FAQ you mention to reflect this.</p>
http://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango/100380#1003800Answer by Brian Hsu for How can I grab single key hit in D Programming Language + Tango?Brian Hsu2008-09-19T08:02:51Z2008-09-19T08:15:26Z<p>Thanks for both of your replies.</p>
<p>Unfortunately, my main development environment is Linux + GDC + Tango, so I don't have conio.h, since I don't use DMC as my C compiler.</p>
<p>And I also found both getc() and getchar() is also line buffered in my development environment, so it could not achieve what I wish I could do.</p>
<p>In the end, I've done this exercise by using GNU ncurses library. Since D could interface C library directly, so it does not take much effort. I just declare the function prototype that I used in my program, call these function and linking my program against ncurses library directly.</p>
<p>It works perfectly on my Linux machine, but I still not figure out how could I do this without any 3rd party library and could run on both Linux and Windows yet.</p>
<pre><code>import tango.io.Stdout;
import tango.core.Thread;
// Prototype for used ncurses library function.
extern(C)
{
void * initscr();
int cbreak ();
int getch();
int endwin();
int noecho();
}
// A keyboard handler to quit the program when user hit ESC key.
void keyboardHandler ()
{
initscr();
cbreak();
noecho();
while (getch() != 27) {
}
endwin();
}
// Main Program
void main ()
{
Thread handler = new Thread (&keyboardHandler);
handler.start();
for (int i = 0; ; i++) {
Stdout.format ("{}\r\n", i).flush;
// If keyboardHandler is not ruuning, it means user hits
// ESC key, so we break the infinite loop.
if (handler.isRunning == false) {
break;
}
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango/261583#2615831Answer by Walter Bright for How can I grab single key hit in D Programming Language + Tango?Walter Bright2008-11-04T11:30:58Z2008-11-04T11:30:58Z<p>Here's how you do it in the D programming language:</p>
<pre><code> import std.c.stdio;
import std.c.linux.termios;
termios ostate; /* saved tty state */
termios nstate; /* values for editor mode */
// Open stdin in raw mode
/* Adjust output channel */
tcgetattr(1, &ostate); /* save old state */
tcgetattr(1, &nstate); /* get base of new state */
cfmakeraw(&nstate);
tcsetattr(1, TCSADRAIN, &nstate); /* set mode */
// Read characters in raw mode
c = fgetc(stdin);
// Close
tcsetattr(1, TCSADRAIN, &ostate); // return to original mode
</code></pre>
http://stackoverflow.com/questions/99546/how-can-i-grab-single-key-hit-in-d-programming-language-tango/705544#7055440Answer by DK for How can I grab single key hit in D Programming Language + Tango?DK2009-04-01T13:43:54Z2009-04-01T13:43:54Z<p>As Lars pointed out, you can use _kbhit and _getch defined in conio.h and implemented in (I believe) msvcrt for Windows. Here's an <a href="http://nibuthomas.com/2009/02/06/how-to-check-for-keyhit-in-a-windows-console-application/" rel="nofollow">article with C++ code for using _kbhit and _getch</a>.</p>