diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-04-09 03:13:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-04-09 03:13:43 +0300 |
commit | 3968453eb82521f6ab3966ff1dc08cd0c803d359 (patch) | |
tree | f1bec30f7e0baeb119cbb987873a5c5749cc119f /src | |
parent | 73ff0a5f6b3fe6b26df14eb1dae413a26d002bbb (diff) | |
download | plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.tar.gz plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.tar.bz2 plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.tar.xz plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.zip |
Add enum to animation actions support.
Diffstat (limited to 'src')
-rw-r--r-- | src/animatedsprite.cpp | 2 | ||||
-rw-r--r-- | src/resources/animation.cpp | 4 | ||||
-rw-r--r-- | src/resources/animation.h | 7 |
3 files changed, 10 insertions, 3 deletions
diff --git a/src/animatedsprite.cpp b/src/animatedsprite.cpp index 10bb05cf8..b9946fb1d 100644 --- a/src/animatedsprite.cpp +++ b/src/animatedsprite.cpp @@ -159,7 +159,7 @@ bool AnimatedSprite::updateCurrentAnimation(unsigned int time) mFrame = 0; return false; } - if (!mFrame->nextAction.empty()) + if (mFrame->type == Frame::JUMP && !mFrame->nextAction.empty()) { play(mFrame->nextAction); return true; diff --git a/src/resources/animation.cpp b/src/resources/animation.cpp index fe5822f7b..98ea19f2a 100644 --- a/src/resources/animation.cpp +++ b/src/resources/animation.cpp @@ -31,7 +31,7 @@ Animation::Animation(): void Animation::addFrame(Image *image, int delay, int offsetX, int offsetY) { - Frame frame = { image, delay, offsetX, offsetY, "" }; + Frame frame = { image, delay, offsetX, offsetY, Frame::ANIMATION, "" }; mFrames.push_back(frame); mDuration += delay; } @@ -48,6 +48,6 @@ bool Animation::isTerminator(const Frame &candidate) void Animation::addJump(std::string name) { - Frame frame = { 0, 0, 0, 0, name }; + Frame frame = { 0, 0, 0, 0, Frame::JUMP, name }; mFrames.push_back(frame); } diff --git a/src/resources/animation.h b/src/resources/animation.h index 9ec8396af..5130bc8dd 100644 --- a/src/resources/animation.h +++ b/src/resources/animation.h @@ -35,10 +35,17 @@ class Image; */ struct Frame { + enum FrameType + { + ANIMATION = 0, + JUMP, + LABEL + }; Image *image; int delay; int offsetX; int offsetY; + FrameType type; std::string nextAction; }; |