SFML community forums

Help => Graphics => Topic started by: the__cows on July 10, 2015, 07:56:27 pm

Title: Animation for player sprite?
Post by: the__cows on July 10, 2015, 07:56:27 pm
Hi,

So basically I'm making a small platformer game, and I have the textures etc setup for the sprite animation. What I want to know is, is there a better way of doing this? The code I am currently using is:


case RIGHT:
                if (globals.ggs == IN_GAME) {
                        sf::Clock animationClock;
                        sf::Time clockTimeTemp;
                        playerSprite.setPosition(playerSprite.getPosition().x + 10, playerSprite.getPosition().y);
                        while (true) {
                                clockTimeTemp = animationClock.getElapsedTime();
                                if (clockTimeTemp.asMilliseconds() >= 7.f) {
                                        break;
                                }
                        }

                        animationClock.restart();

                        playerSprite.setTexture(p1);
                        initGame();

                        while (true) {
                                clockTimeTemp = animationClock.getElapsedTime();
                                if (clockTimeTemp.asMilliseconds() >= 7.f) {
                                        break;
                                }
                        }

                        animationClock.restart();

                        playerSprite.setTexture(p2);
                        initGame();

                        while (true) {
                                clockTimeTemp = animationClock.getElapsedTime();
                                if (clockTimeTemp.asMilliseconds() >= 7.f) {
                                        break;
                                }
                        }

                        animationClock.restart();

                        playerSprite.setTexture(p3);
                        initGame();

                        while (true) {
                                clockTimeTemp = animationClock.getElapsedTime();
                                if (clockTimeTemp.asMilliseconds() >= 10.f) {
                                        break;
                                }
                        }

                        animationClock.restart();
                        initGame();
                }

                break;
 

Even though this works, other mechanics such as jumping haven't been implemented yet, and because of the while(true)'s, I'm worried this will cause things such as delays.

Any better ways?

Thanks,
Jay :)
Title: Re: Animation for player sprite?
Post by: Jesper Juhl on July 10, 2015, 08:02:10 pm
Maybe take a look here:
 http://www.bromeon.ch/libraries/thor/v2.0/tutorial-animations.html
 http://www.bromeon.ch/libraries/thor/v2.0/doc/group___animations.html

This may also be of interest:
 http://gafferongames.com/game-physics/fix-your-timestep/