mirror of
https://github.com/Luzifer/streamdeck.git
synced 2024-12-20 17:51:21 +00:00
Add support for short / long press actions
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
d9671f1e4c
commit
b77ac561ce
2 changed files with 62 additions and 32 deletions
|
@ -1,9 +1,15 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
"gopkg.in/yaml.v2"
|
||||
)
|
||||
|
||||
const defaultLongPressDuration = 500 * time.Millisecond
|
||||
|
||||
type config struct {
|
||||
AutoReload bool `yaml:"auto_reload"`
|
||||
CaptionBorder int `yaml:"caption_border"`
|
||||
|
@ -14,6 +20,7 @@ type config struct {
|
|||
DefaultBrightness int `yaml:"default_brightness"`
|
||||
DefaultPage string `yaml:"default_page"`
|
||||
DisplayOffTime time.Duration `yaml:"display_off_time"`
|
||||
LongPressDuration time.Duration `yaml:"long_press_duration"`
|
||||
Pages map[string]page `yaml:"pages"`
|
||||
RenderFont string `yaml:"render_font"`
|
||||
}
|
||||
|
@ -27,17 +34,18 @@ type page struct {
|
|||
type keyDefinition struct {
|
||||
Display dynamicElement `yaml:"display"`
|
||||
Actions []dynamicElement `yaml:"actions"`
|
||||
On string `yaml:"on"`
|
||||
}
|
||||
|
||||
type dynamicElement struct {
|
||||
Type string `yaml:"type"`
|
||||
LongPress bool `yaml:"long_press"`
|
||||
Attributes map[string]interface{} `yaml:"attributes"`
|
||||
}
|
||||
|
||||
func newConfig() config {
|
||||
return config{
|
||||
AutoReload: true,
|
||||
LongPressDuration: defaultLongPressDuration,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -47,3 +55,22 @@ const (
|
|||
captionPositionBottom = "bottom"
|
||||
captionPositionTop = "top"
|
||||
)
|
||||
|
||||
func loadConfig() error {
|
||||
userConfFile, err := os.Open(cfg.Config)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "Unable to open config")
|
||||
}
|
||||
defer userConfFile.Close()
|
||||
|
||||
tempConf := newConfig()
|
||||
if err = yaml.NewDecoder(userConfFile).Decode(&tempConf); err != nil {
|
||||
return errors.Wrap(err, "Unable to parse config")
|
||||
}
|
||||
|
||||
applySystemPages(&tempConf)
|
||||
|
||||
userConfig = tempConf
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@ import (
|
|||
"github.com/pkg/errors"
|
||||
"github.com/sashko/go-uinput"
|
||||
log "github.com/sirupsen/logrus"
|
||||
"gopkg.in/yaml.v2"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -65,25 +64,6 @@ func init() {
|
|||
}
|
||||
}
|
||||
|
||||
func loadConfig() error {
|
||||
userConfFile, err := os.Open(cfg.Config)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "Unable to open config")
|
||||
}
|
||||
defer userConfFile.Close()
|
||||
|
||||
var tempConf config
|
||||
if err = yaml.NewDecoder(userConfFile).Decode(&tempConf); err != nil {
|
||||
return errors.Wrap(err, "Unable to parse config")
|
||||
}
|
||||
|
||||
applySystemPages(&tempConf)
|
||||
|
||||
userConfig = tempConf
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func main() {
|
||||
if cfg.List {
|
||||
listAndQuit()
|
||||
|
@ -160,6 +140,11 @@ func main() {
|
|||
}
|
||||
}
|
||||
|
||||
var (
|
||||
actor *int
|
||||
actStart time.Time
|
||||
)
|
||||
|
||||
for {
|
||||
select {
|
||||
case evt := <-sd.Subscribe():
|
||||
|
@ -167,16 +152,26 @@ func main() {
|
|||
offTimer.Reset(userConfig.DisplayOffTime)
|
||||
}
|
||||
|
||||
kd, ok := activePage.GetKeyDefinitions(userConfig)[evt.Key]
|
||||
if evt.Type == streamdeck.EventTypeDown {
|
||||
actor = &evt.Key
|
||||
actStart = time.Now()
|
||||
continue
|
||||
}
|
||||
|
||||
if evt.Key != *actor {
|
||||
continue
|
||||
}
|
||||
|
||||
kd, ok := activePage.GetKeyDefinitions(userConfig)[*actor]
|
||||
if !ok {
|
||||
continue
|
||||
}
|
||||
|
||||
if kd.On == "down" && evt.Type == streamdeck.EventTypeDown || (kd.On == "up" || kd.On == "") && evt.Type == streamdeck.EventTypeUp || kd.On == "both" {
|
||||
if err := triggerAction(kd); err != nil {
|
||||
isLongPress := time.Since(actStart) > userConfig.LongPressDuration
|
||||
|
||||
if err := triggerAction(kd, isLongPress); err != nil {
|
||||
log.WithError(err).Error("Unable to execute action")
|
||||
}
|
||||
}
|
||||
|
||||
case <-offTimer.C:
|
||||
if err := togglePage("@@blank"); err != nil {
|
||||
|
@ -253,14 +248,22 @@ func togglePage(page string) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func triggerAction(kd keyDefinition) error {
|
||||
func triggerAction(kd keyDefinition, isLongPress bool) error {
|
||||
for _, a := range kd.Actions {
|
||||
if a.Type != "" {
|
||||
if a.Type == "" {
|
||||
// No type on that action: Invalid
|
||||
continue
|
||||
}
|
||||
|
||||
if isLongPress != a.LongPress {
|
||||
// press duration does not match requirement
|
||||
continue
|
||||
}
|
||||
|
||||
if err := callAction(a); err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue