SFML community forums

Help => Graphics => Topic started by: GamingGod on March 19, 2012, 06:19:07 pm

Title: Animate sprite when moving it
Post by: GamingGod on March 19, 2012, 06:19:07 pm
Hi there.

I know it's kinda lame question, but I have to ask it. How I can animate sprite when I'm moving it? I'm using Thor for animation. I'm beginner and I can't figure it out. Now it works like that : animation starts playing, it stops, sprite is moving till I release key and then the last frame of animation is played. I want to make it even when key is hold sprite will move and animation will play. Here's my code (it's not the cleanest code ever, app made only for learning purposes) : http://goo.gl/ruhQ1
Hope anyone can help me. Cheers!
Title: Animate sprite when moving it
Post by: Nexus on March 20, 2012, 12:38:14 pm
If you specify nothing at thor::Action, the Realtime mode is specified, e.g. it is active as long as the key is held down. Therefore, PlayAnimation() starts the animation again and again, as long as you hold the right arrow key.

You should separate the actions to pressed key (plays the animation) and release key (stops the animation).
Code: [Select]
map[BeginRun] = Action(sf::Keyboard::Right, Action::PressOnce);
map[EndRun] = Action(sf::Keyboard::Right, Action::ReleaseOnce);

if (map.IsActive(BeginRun))
    animator.PlayAnimation(...);
else if (map.IsActive(EndRun))
    animator.StopAnimation(...);

By the way, one clock is enough. When you call GetElapsedTime(), you already have the difference since the last frame (because you restart the clock every frame).
Title: Animate sprite when moving it
Post by: GamingGod on March 20, 2012, 03:12:00 pm
Thank you again, Nexus!

@Edit.
I did everything as you said (or maybe I'm retarded and I did not) but sprite is still moving while I'm holding the right arrow key, but animation is not playing. Here's my code : http://wklej.org/hash/0c59f97722d/
Title: Animate sprite when moving it
Post by: Nexus on March 20, 2012, 06:14:29 pm
Several points:
Code: [Select]
float dx = 0.f;
...
if (map.isActive(BeginRun))
{
dx = 3;
...
}
else if (map.isActive(EndRun))
{
dx = 0;
...
}

sprite.move(dx * 50.f * Time.asSeconds(),0.f);

By the way, there is still a possibility to use the approach you had before -- you can play the animation at startup and update the animator only while the key is held down.
Code: [Select]
animator.playAnimation("walk", true);
sf::Clock animClock, frameClock;

while(App.isOpen())
{
...

if (map.isActive(Run))
{
animator.update(animClock.restart());
animator.animate(sprite);
sprite.move(50.f * Time.asSeconds(),0.f);
}
Title: Animate sprite when moving it
Post by: GamingGod on March 20, 2012, 08:27:19 pm
Thank you so much, it's working right now.