mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
d24fddaf21
Former-commit-id: f721f5952efe305d66347d9074ff760baabd2f18
38 lines
761 B
C++
38 lines
761 B
C++
#pragma once
|
|
|
|
#include <hyperion/Hyperion.h>
|
|
|
|
// pre-declarioation
|
|
class Effect;
|
|
|
|
class EffectEngine : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
EffectEngine(Hyperion * hyperion);
|
|
virtual ~EffectEngine();
|
|
|
|
std::list<std::string> getEffects() const;
|
|
|
|
public slots:
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
|
int runEffect(const std::string &effectName, int priority, int timeout = -1);
|
|
|
|
/// Clear any effect running on the provided channel
|
|
void channelCleared(int priority);
|
|
|
|
/// Clear all effects
|
|
void allChannelsCleared();
|
|
|
|
private slots:
|
|
void effectFinished(Effect * effect);
|
|
|
|
private:
|
|
Hyperion * _hyperion;
|
|
|
|
std::map<std::string, std::string> _availableEffects;
|
|
|
|
std::list<Effect *> _activeEffects;
|
|
};
|