mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 00:55:39 +00:00
28 lines
702 B
C++
28 lines
702 B
C++
#pragma once
|
|
#ifndef ES_CORE_ANIMATIONS_LAMBDA_ANIMATION_H
|
|
#define ES_CORE_ANIMATIONS_LAMBDA_ANIMATION_H
|
|
|
|
#include "animations/Animation.h"
|
|
|
|
// Useful for simple one-off animations, you can supply the animation's apply(t) method right in the constructor as a lambda.
|
|
class LambdaAnimation : public Animation
|
|
{
|
|
public:
|
|
LambdaAnimation(const std::function<void(float t)>& func, int duration) : mFunction(func), mDuration(duration) {}
|
|
|
|
virtual ~LambdaAnimation() = default;
|
|
|
|
int getDuration() const override { return mDuration; }
|
|
|
|
void apply(float t) override
|
|
{
|
|
mFunction(t);
|
|
}
|
|
|
|
private:
|
|
std::function<void(float t)> mFunction;
|
|
int mDuration;
|
|
};
|
|
|
|
#endif // ES_CORE_ANIMATIONS_LAMBDA_ANIMATION_H
|