onKeyDown

Hi, i would like to use some function to “walk” through the scenario, so i can use the regular keyboard function, but it is a baaaad solution…
there is any function like onKeyUp and onKeyDown? coz it would be sweet… :cool:
ps: i´m using glut library on win32

Thanx

glutKeyboardFunc – called when key is pressed (and at repeat interval when held down).
glutKeyboardUpFunc – called when key is released.

glutSpecialFunc – called when special key is pressed (and at repeat interval when held down).
glutSpecialUpFunc – called when special key is released.