2015-12-03 00:37:37 +00:00
|
|
|
/************************************************************************
|
|
|
|
* Copyright (c) 2005-2007 tok@openlinux.org.uk *
|
|
|
|
* *
|
|
|
|
* This software is provided as-is, without any express or implied *
|
|
|
|
* warranty. In no event will the authors be held liable for any *
|
|
|
|
* damages arising from the use of this software. *
|
|
|
|
* *
|
|
|
|
* Permission is granted to anyone to use this software for any purpose, *
|
|
|
|
* including commercial applications, and to alter it and redistribute *
|
|
|
|
* it freely, subject to the following restrictions: *
|
|
|
|
* *
|
|
|
|
* 1. The origin of this software must not be misrepresented; you must *
|
|
|
|
* not claim that you wrote the original software. If you use this *
|
|
|
|
* software in a product, an acknowledgment in the product documentation *
|
|
|
|
* would be appreciated but is not required. *
|
|
|
|
* *
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and must *
|
|
|
|
* not be misrepresented as being the original software. *
|
|
|
|
* *
|
|
|
|
* 3. This notice may not be removed or altered from any source *
|
|
|
|
* distribution. *
|
|
|
|
************************************************************************/
|
2015-12-03 00:37:02 +00:00
|
|
|
#ifndef UTIL_ANIMATION_H
|
|
|
|
#define UTIL_ANIMATION_H
|
|
|
|
#include <vector>
|
2018-09-23 05:57:34 +00:00
|
|
|
#include <functional>
|
2015-12-03 00:37:02 +00:00
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
namespace Util {
|
2015-12-03 00:37:37 +00:00
|
|
|
|
|
|
|
/** Capsules play-frames-in-sequence logic.
|
|
|
|
*
|
|
|
|
* This class only knows about the number of frames
|
|
|
|
* and the fps; it does have multiple flags that
|
|
|
|
* switch the behaviour whenever the 'last' frame is
|
|
|
|
* finished.
|
|
|
|
*/
|
|
|
|
class Animation {
|
2015-12-03 00:37:02 +00:00
|
|
|
public:
|
|
|
|
typedef enum {
|
|
|
|
STOPPED = 0,
|
|
|
|
PLAY_FORWARD,
|
|
|
|
PLAY_BACKWARD
|
|
|
|
} Status;
|
|
|
|
typedef enum {
|
|
|
|
STOP = 0,
|
|
|
|
REVERSE,
|
|
|
|
LOOP,
|
|
|
|
FCALLBACK
|
|
|
|
} OnDone;
|
|
|
|
Animation(uint16_t numFrames, uint16_t fps);
|
|
|
|
Animation(const Animation & o);
|
|
|
|
inline const uint16_t & getCurrentFrameNumber() { return currentFrame; }
|
|
|
|
inline void set(const Status doThis, const OnDone done = STOP) { status = doThis; onDone = done; }
|
2015-12-03 00:37:37 +00:00
|
|
|
inline const Status & get() const { return status; }
|
|
|
|
inline const OnDone & getDone() const { return onDone; }
|
2015-12-03 00:37:02 +00:00
|
|
|
void jumpToFrame(const uint16_t num, const Status andDo);
|
|
|
|
void update(const uint32_t & nowTicks);
|
2018-09-23 05:57:34 +00:00
|
|
|
typedef std::function<void()> CallbackType;
|
2015-12-03 00:37:02 +00:00
|
|
|
void setCallback(CallbackType & cb) { callback = cb; }
|
|
|
|
|
|
|
|
uint16_t currentFrame;
|
|
|
|
uint16_t numFrames;
|
|
|
|
uint32_t delay;
|
|
|
|
protected:
|
2015-12-03 00:37:37 +00:00
|
|
|
|
2015-12-03 00:37:02 +00:00
|
|
|
void flipFrame(bool forward);
|
|
|
|
void isDone();
|
|
|
|
Status status;
|
|
|
|
OnDone onDone;
|
|
|
|
uint32_t lastChangeTicks;
|
|
|
|
|
|
|
|
CallbackType callback;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|