Is it normal to just calculate the movement based on velocity divided by FPS for example?
No, the delta is calculated and then it’s multiplied with some units per second (UPS) value. However, depending on the timing method it might be more natural to work with units per msec.
And how it’s done… well, basically you calculate the delta in the main loop and hand that over to the logic method. Over there you hand it over to other subsystems which need it (e.g. particle systems or the update methods of enemies).
Note however, that there are quite a lot of pitfalls. E.g. if the player runs at 400 UPS and there is a 2 second lag (may happen if some hdd spins up for example), he would move a whopping 800 pixels… right through a bunch of walls and through the floor. Stuff like that shouldn’t happen.
The easiest method is to cap the delta. E.g. with a maximum delta of 33msec (30fps) the game will slow down if the machine can’t even reach that target. However, that’s usually acceptable. With a cap in place it won’t break apart if the collision detection still works as intended at the low-target frame rate.
Another method is to run the logic at a fixed rate and render as fast as possible (with interpolated positions).
If it’s 2d you can also just ignore all that and just cap the frame rate at 60fps. Just ensure that it runs fine on mediocre hardware and that’s it. It doesn’t get any easier than that.
“Warning - while you were typing a new reply has been posted. You may wish to review your post.”
* oNyx ignores the warning :>