2013-11-24 16:10:48 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hyperion/Hyperion.h>
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
// pre-declarioation
|
|
|
|
class Effect;
|
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
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();
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
private slots:
|
|
|
|
void effectFinished(Effect * effect);
|
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
private:
|
|
|
|
Hyperion * _hyperion;
|
|
|
|
|
|
|
|
std::map<std::string, std::string> _availableEffects;
|
2013-11-26 21:38:24 +01:00
|
|
|
|
|
|
|
std::list<Effect *> _activeEffects;
|
2013-11-24 16:10:48 +01:00
|
|
|
};
|