1
0
Fork 0
mirror of https://github.com/Luzifer/streamdeck.git synced 2024-10-18 05:04:18 +00:00

Add conditional loop on exec display

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-11-22 00:33:27 +01:00
parent 131d09b78c
commit ac853e585b
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E
2 changed files with 16 additions and 1 deletions

View file

@ -111,6 +111,14 @@ func (d displayElementExec) Display(idx int, attributes map[string]interface{})
return errors.Wrap(sd.FillImage(idx, img), "Unable to set image")
}
func (d displayElementExec) NeedsLoop(attributes map[string]interface{}) bool {
if v, ok := attributes["interval"].(int); ok {
return v > 0
}
return false
}
func (d *displayElementExec) StartLoopDisplay(idx int, attributes map[string]interface{}) error {
d.running = true

View file

@ -5,6 +5,7 @@ import (
"sync"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)
type action interface {
@ -16,6 +17,7 @@ type displayElement interface {
}
type refreshingDisplayElement interface {
NeedsLoop(attributes map[string]interface{}) bool
StartLoopDisplay(idx int, attributes map[string]interface{}) error
StopLoopDisplay() error
}
@ -65,7 +67,12 @@ func callDisplayElement(idx int, kd keyDefinition) error {
inst = reflect.New(t).Interface()
}
if t.Implements(reflect.TypeOf((*refreshingDisplayElement)(nil)).Elem()) {
if t.Implements(reflect.TypeOf((*refreshingDisplayElement)(nil)).Elem()) &&
inst.(refreshingDisplayElement).NeedsLoop(kd.Display.Attributes) {
log.WithFields(log.Fields{
"key": idx,
"display_type": kd.Display.Type,
}).Debug("Starting loop")
activeLoops = append(activeLoops, inst.(refreshingDisplayElement))
return inst.(refreshingDisplayElement).StartLoopDisplay(idx, kd.Display.Attributes)
}