vote up 3 vote down star
1

I've started fiddling with C to improve my programming skills, and decided to try and implement a Tetris game. Nothing too fancy, it'll run on the console.

I never implemented a game that keeps running despite user input, and didn't figure out I'd have to deal with this problem until I started thinking about the game algorithm.

Googling for a solution I came up with a _kbhit() function, but I'm programming on a Linux box and that function is only available on Windows. How can I do it?

flag

You might want to look at the Allegro game programming library. It's cross-platform and can do what you want and a lot more. It's non-console only AFAIK, so I didn't think this deserved posting as an answer :) – rmeador Mar 16 at 16:27

2 Answers

vote up 3 vote down check

For a console app, you could look into using GNU ncurses, it is a sort of toolkit for writing console applications, and supports such input. It should also help you with your game's output, by providing ways to print characters at coordinates, and so on.

link|flag
vote up 0 vote down

To be able to intercept special characters, switch the terminal into non-canonical mode

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.