1
General Discussion / Re: Game clock vs. fps + rendering options & effects
« on: 2006-02-08, 02:46:26 PM »Well, that pretty much describes what I already knew about time-based movement. So now let me describe another example of a problem that it presents. Consider a sprite standing on a cliff looking accross to the right at a wall on the other side. In the wall (a ways below) is a narrow passageway that the sprite can duck into if he presses toward it while falling down against the wall. Lets say the sprite is 50 pixels high and the passageway is 52 pixels high and the top of the passageway is a y coordinate of 100. The sprite jumps to the other side and begins his fall at a y coordinate of 95.Your problem there is that you're basing collision detection on pixels and increments instead of vectors.
Here's how the frames work out in a time-based movement system:
Fast computer:
Frame 1 y =95 Time = 0.0 sec
Frame 2 y =96 Time = 0.25 sec
Frame 3 y =98 Time = 0.5 sec
Frame 4 y =101 Time = 0.75 sec
Slow computer:
Frame 1 y = 95 Time = 0.0 sec
Frame 2 y = 98 Time = 0.5 sec
Frame 3 y = 105 Time = 1 sec
Frame 4 y = 116 Time = 1.5 sec
Now on the fast computer, when the sprite hits 101 pixels it can fit into the passageway because it has one pixel of space both above ane below and nothing stops it from moving to the right.
On the slow computer, the sprite skips from 98 pixels (where there are to more pixels of solid wall in its way) to 105 pixels (where there are 3 pixels of solid wall from the other side in the way) so it never makes it into the passageway.
This is based on the exact same input but you get completely different results depending on whether you're playing on a fast computer or a slow computer.
The answer to this might be that I should perform collision detection for every pixel along the path instead of only once at each frame. But now you see why time-based movement starts to be slower than frame-based movement if I want repeatibility.

Using vectors for collision detection also gives you the bonus of not requiring the player to be so exact in positioning a sprite to fit through a narrow passageway, since you can more easily do things like making a sprite slide across a surface in a convincing manner and determining whether or not it can fit.
In general, if you *do* want to use time-based movement, you want to avoid algorithms that must be processed in set increments (like pixel-based collision detection). Trying to mix the two does result in bad framerates, for the reasons you've noted.