Im trying to create a simple pong game in C++ using opengl. I have the borders displaying on the screen, the paddles, the ball, and all of them move, so that's great! The problem is that the ball moves lightning fast even at one pixel of speed.
Im updating it's position in a call-back function called init which I then pass into glutIdleFunc like so: glutIdleFunc(idle);
the idle function is as follows:
void idle(){
ball.moveLeft();
glutPostRedisplay();
}
essentially im just having it move left by one pixel but, I guess that idle gets called a lot so it moves lightning fast. How do I fix this error?
If there's more information you need just ask!
glut, but something calledIdleFuncdoesn't seem like the place to put graphics updates to me! – us2012 Feb 19 at 3:43glutTimerFunc. GLUT timers only fire once, so don't forget to set it up in the callback again. – n.m. Feb 19 at 3:46