I'm currently coding a version of breakout as a quick learning experience of C and OpenGL.

Im having some issues with moving the paddle. I've set a keyboard callback so that when the left arrow is pressed, it subtracts 1 from the x value on the paddle, and adds 1 to the x value when pressing the right arrow.

With this in mind, the paddle moves incredibly slow when I hold either key. I can change this by increasing the amount the x value is changed to 10 for example. When I do this the paddle seems to stutter across the screen because it's jumping 10 at a time. It does of course move faster along the screen now but doesn't look smooth.

I'm using GLUT for windowing on OSX.

Is there a way of speeding this up and keeping it looking smooth?

link|improve this question
Do you issue a glutPostRedisplay() in your glutKeyboardFunc() callback or in a glutIdleFunc() callback? – genpfault Mar 23 '11 at 20:32
1  
I'm calling redisplay in the idle callback, not in the keyboard callback – Jamie White Mar 24 '11 at 2:35
feedback

2 Answers

A common thing in games is a keyboard array. Therefore you will be also able to press several buttons at a time.

You have an array where you keep state of keys (you put 1 when you get pressed, set 0 when released). And you process game in each frame by taking information just from array, not directly from input.

link|improve this answer
Thanks, that's a great answer. Seems so simple! – Jamie White Mar 23 '11 at 21:04
feedback

Here is some code from one of my projects:

bool keyDown[256];

...

//Called when a key is pressed
void handleKeypress(unsigned char key, int x, int y) {  
    keyDown[key] = true;
}

void handleKeyUp(unsigned char key, int x, int y){
    keyDown[key] = false;
}

This essentially keeps an array of the states of each key, so you can just check them each time. Then you don't have to depend on the callbacks coming in that frequently.

link|improve this answer
Thanks man, that seems so simple now I think about it! – Jamie White Mar 23 '11 at 21:05
feedback

Your Answer

 
or
required, but never shown

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