diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:54:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-12-19 22:54:40 +0300 |
commit | e896b54f054c70bd7214b60cc38159c196c8d5a9 (patch) | |
tree | 2a6909467fd540097fdccc3b737509648751b648 /src/resources/animation.cpp | |
parent | b91ccaac17551591ffafadee4323ff76076f7b69 (diff) | |
download | plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.tar.gz plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.tar.bz2 plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.tar.xz plus-e896b54f054c70bd7214b60cc38159c196c8d5a9.zip |
add noexcept into animation.
Diffstat (limited to 'src/resources/animation.cpp')
-rw-r--r-- | src/resources/animation.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/resources/animation.cpp b/src/resources/animation.cpp index 76e8543e0..541d578b0 100644 --- a/src/resources/animation.cpp +++ b/src/resources/animation.cpp @@ -24,7 +24,7 @@ #include "debug.h" -Animation::Animation() : +Animation::Animation() noexcept : mFrames(), mDuration(0) { @@ -32,7 +32,7 @@ Animation::Animation() : void Animation::addFrame(Image *const image, const int delay, const int offsetX, const int offsetY, - const int rand) + const int rand) noexcept { Frame frame = { image, delay, offsetX, offsetY, rand, Frame::ANIMATION, "" }; @@ -40,41 +40,41 @@ void Animation::addFrame(Image *const image, const int delay, mDuration += delay; } -void Animation::addTerminator(const int rand) +void Animation::addTerminator(const int rand) noexcept { addFrame(nullptr, 0, 0, 0, rand); } -bool Animation::isTerminator(const Frame &candidate) +bool Animation::isTerminator(const Frame &candidate) noexcept { return (!candidate.image && candidate.type == Frame::ANIMATION); } -void Animation::addJump(const std::string &name, const int rand) +void Animation::addJump(const std::string &name, const int rand) noexcept { Frame frame = { nullptr, 0, 0, 0, rand, Frame::JUMP, name }; mFrames.push_back(frame); } -void Animation::addLabel(const std::string &name) +void Animation::addLabel(const std::string &name) noexcept { Frame frame = { nullptr, 0, 0, 0, 100, Frame::LABEL, name }; mFrames.push_back(frame); } -void Animation::addGoto(const std::string &name, const int rand) +void Animation::addGoto(const std::string &name, const int rand) noexcept { Frame frame = { nullptr, 0, 0, 0, rand, Frame::GOTO, name }; mFrames.push_back(frame); } -void Animation::addPause(const int delay, const int rand) +void Animation::addPause(const int delay, const int rand) noexcept { Frame frame = { nullptr, delay, 0, 0, rand, Frame::PAUSE, "" }; mFrames.push_back(frame); } -void Animation::setLastFrameDelay(const int delay) +void Animation::setLastFrameDelay(const int delay) noexcept { for (FramesRevIter it = mFrames.rbegin(), it_end = mFrames.rend(); it != it_end; ++ it) |