PDA

View Full Version : How to achieve smooth movement from keyboard???


koalacui
09-18-2005, 02:58 AM
Hi, guys, i am totally newbie in OpenGL, now I am studying on movement in OpenGL, and I can control a square's movement, but it seems cannot do a smooth movement such as diagonal movement when i press UP and LEFT, it cannot keep moving towards diagonal direction, I dont know how, can anyboday explain in details to me?? thanks a lot and best regards!!!

roel
09-18-2005, 03:32 AM
http://www.gamedev.net/community/forums/topic.asp?topic_id=345960

the problem (i guess) is that you use a switch and break after your cases. in the code you posted at gamedev, you check for up, and break out of it while not checking other cases, so if you press both up and left you don't move diagonal but only in the up direction. like people said on gamedev, use ifs and check all combinations.

bladder
09-18-2005, 07:47 PM
You don't have to check all combinations. You just check for the 4 basics without using any elses or a switch/case.


if( key == GLUT_KEY_UP )
b += 5.5f;
if( key == GLUT_KEY_DOWN )
b -= 5.5f;
if( key == GLUT_KEY_LEFT )
a -= 5.5f;
if( key == GLUT_KEY_RIGHT )
a += 5.5f;

roel
09-19-2005, 07:31 AM
that's what i meant with all combinations, in stead of stopping checking after the first 'hit', checking all other possibilities that are left