SFML community forums

Help => Graphics => Topic started by: etixpp on June 01, 2013, 06:46:46 pm

Title: move.xxx runs crazy fast sometimes
Post by: etixpp on June 01, 2013, 06:46:46 pm
Hello, i got a problem, i have a player sprite and i let him move, this is just fine, i use move(2,0 ) and so on for w a s d and he runs but thing is, sometimes he has a few seconds, where he runs crazy fast, and then normal again... hast somebody a clue what can cause that?
Title: Re: move.xxx runs crazy fast sometimes
Post by: Nexus on June 01, 2013, 07:54:18 pm
You have to make the movement dependent on the passed time. That is, measure the time using sf::Clock and multiply the velocity vector of your object with it.

Alternatively you use a fixed time. A simple way to achieve this is setting the framerate limit or enabling v-sync in sf::RenderWindow. Before you ask how to do this, have a look at the documentation.
Title: Re: move.xxx runs crazy fast sometimes
Post by: hayer on June 02, 2013, 01:01:28 am
May I suggest that you watch this; http://www.youtube.com/watch?v=sKCF8A3XGxQ

It is a series of videos on math related to game development  :)
Title: Re: move.xxx runs crazy fast sometimes
Post by: etixpp on June 02, 2013, 04:07:02 am
nah that wasn´t the problem ,the thing was that me dumby had the keypull in the eventloop, changed it to the mainloop and now works just fine^^