Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Game speed
#1
Hey, I have an RPG engine which draws anywhere from 50 to 250 objects to the screen each cycle. It uses FBGFX (freebasic graphics lib.) My question is how can I control the game speed? What is the common way? Sleep 1 is not good. The speed fluctuates too much.

I have the following code now, and it somewhat works:

do
If Timer > t Then
t = Timer + .02
(get input)
(render graphics)
(put graphics to screen)
end if
loop

Is that a recommended way of doing things? It seems to work okay except I realize I'm putting a lot of graphics to the screen and it slows it down. But even if there's a normal amount of graphics put to the screen, I don't want to speed to fluctuate, (character walking fast and then slowing down).

Reply
#2
Realistically TIMER accuracy is closer to .05 than .02, but that won't hurt anything. It ticks every 1/18th of a second. There are ways to change the ticks, but you still may get delays.

TIMER can be influenced by background Windows programs also, so there is no guarantee of a smooth speed unless you use pure DOS with no TSR (terminate-stay-resident) programs running.

QB64 has a _LIMIT function that allows you to run loops at so many loops per second (frames). You can also add sound using the soundboard instead of the PC speaker: www.QB64.net/forum
Get my QB demonstrator here: http://dl.dropbox.com/u/8440706/Q-Basics.zip
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)