* draw_Count := counts this seconds draws
* last_Second := stores the time of the last second, used for ups and fps
*/
-int target_UPS = 250;
+int target_UPS = 100;
long int last_Block_Update;
float update_Sum = 0;
long int last_Second;
+float target_time_steps_per_second = 100;
+
+
+// experiment with rolling averages
+float rUpdate = 100;
+float rDraw = 100;
+float rRun = 100;
+float num = 10;
+
+
/// ***** MAIN Method *****
int main()
{
while(is_Running)
{
- blockUpdate();
- updateFPSCounters();
- draw();
+ long int time;
+
+ time = tickCountMicro();
+ blockUpdate();
+ updateFPSCounters();
+ draw();
+ time = tickCountMicro() - time;
+
+ rRun = (rRun * (num-1) + time) / num;
+
+ cout << "rR:\t" << rRun << endl;
}
}
{
long int start = tickCountMicro();
+ cout << "Block" << endl;
+
// Calculate the updates that should be run for the next draw
update_Sum += (start - last_Block_Update) / (1000000 / (float)target_UPS);
for (int i = 1; i <= iupdate_sum; i++)
{
handleInput();
- update(time_step*i / 1000);
+ update(time_step / 1000);
}
// remove the updates that where run from the sum
update_Sum -= iupdate_sum;
void update(float time_step)
{
+ long int time;
+
update_Count++;
- game::update(time_step);
+ time = tickCountMicro();
+ game::update(time_step);
+ time = tickCountMicro() - time;
+
+ rUpdate = (rUpdate * (num-1) + time) / num;
+
+ cout << "ru:\t" << rUpdate << endl;
+ cout << "ts:\t" << time_step << endl;
}
void draw()
{
+ long int time;
+
draw_Count++;
- game::draw();
+ time = tickCountMicro();
+ game::draw();
+
+ SDL_GL_SwapBuffers();
+
+ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
+
+ //SDL_Delay(50);
+ time = tickCountMicro() - time;
- SDL_GL_SwapBuffers();
+ rDraw = (rDraw*(num-1) + time) /num;
- glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
+ cout << "rd:\t" << rDraw << endl;
}