Skip to content

Commit 20cb328

Browse files
committed
Fixed import
2 parents e5df054 + 22ebe71 commit 20cb328

File tree

2 files changed

+55
-29
lines changed

2 files changed

+55
-29
lines changed

handlers/gif.go

+16-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package handlers
22

33
import (
4+
"github.com/nfnt/resize"
45
"github.com/unix-streamdeck/api"
56
"github.com/unix-streamdeck/driver"
6-
"github.com/nfnt/resize"
7+
"image"
78
"image/gif"
89
"log"
910
"os"
@@ -18,24 +19,32 @@ func (s *GifIconHandler) Icon(page int, index int, key *api.Key, dev streamdeck.
1819
return
1920
}
2021
gifs, err := gif.DecodeAll(f)
22+
if err != nil {
23+
log.Println(err)
24+
return
25+
}
2126
timeDelay := gifs.Delay[0]
22-
gifIndex := 0
23-
go loop(gifs, gifIndex, timeDelay, page, index, dev, key, s)
27+
frames := make([]image.Image, len(gifs.Image))
28+
for i, frame := range gifs.Image {
29+
frames[i] = resize.Resize(dev.Pixels, dev.Pixels, frame, resize.Lanczos3)
30+
}
31+
go loop(frames, timeDelay, page, index, dev, key, s)
2432
}
2533

2634
func (s *GifIconHandler) Stop() {
2735
s.Running = false
2836
}
2937

30-
func loop(gifs *gif.GIF, gifIndex int, timeDelay int, page int, index int, dev streamdeck.Device, key *api.Key, s *GifIconHandler) {
38+
func loop(frames []image.Image, timeDelay int, page int, index int, dev streamdeck.Device, key *api.Key, s *GifIconHandler) {
39+
gifIndex := 0
3140
for s.Running {
32-
img := resize.Resize(dev.Pixels, dev.Pixels, gifs.Image[gifIndex], resize.Lanczos3)
41+
img := frames[gifIndex]
3342
s.OnSetImage(img, index, page, dev)
3443
key.Buff = img
3544
gifIndex++
36-
if gifIndex >= len(gifs.Image) {
45+
if gifIndex >= len(frames) {
3746
gifIndex = 0
3847
}
3948
time.Sleep(time.Duration(timeDelay * 10000000))
4049
}
41-
}
50+
}

interface.go

+39-22
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
package main
22

33
import (
4+
"context"
45
"github.com/fogleman/gg"
56
"github.com/nfnt/resize"
67
"github.com/unix-streamdeck/api"
78
"github.com/unix-streamdeck/driver"
89
"github.com/unix-streamdeck/streamdeckd/handlers"
910
"golang.org/x/image/font/inconsolata"
11+
"golang.org/x/sync/semaphore"
1012
"image"
1113
"image/color"
1214
"image/draw"
@@ -16,6 +18,7 @@ import (
1618
)
1719

1820
var p int
21+
var sem = semaphore.NewWeighted(int64(1))
1922

2023
func LoadImage(path string) (image.Image, error) {
2124
f, err := os.Open(path)
@@ -37,6 +40,13 @@ func ResizeImage(img image.Image) image.Image {
3740
}
3841

3942
func SetImage(img image.Image, i int, page int, _ streamdeck.Device) {
43+
ctx := context.Background()
44+
err := sem.Acquire(ctx, 1)
45+
if err != nil {
46+
log.Println(err)
47+
return
48+
}
49+
defer sem.Release(1)
4050
if p == page && isOpen {
4151
err := dev.SetImage(uint8(i), img)
4252
if err != nil {
@@ -49,7 +59,7 @@ func SetImage(img image.Image, i int, page int, _ streamdeck.Device) {
4959
}
5060
}
5161

52-
func SetKey(currentKey *api.Key, i int) {
62+
func SetKeyImage(currentKey *api.Key, i int) {
5363
if currentKey.Buff == nil {
5464
if currentKey.Icon == "" {
5565
img := image.NewRGBA(image.Rect(0, 0, int(dev.Pixels), int(dev.Pixels)))
@@ -82,30 +92,34 @@ func SetPage(config *api.Config, page int) {
8292
currentPage := config.Pages[page]
8393
for i := 0; i < len(currentPage); i++ {
8494
currentKey := &currentPage[i]
85-
if currentKey.Buff == nil {
86-
if currentKey.IconHandler == "" {
87-
SetKey(currentKey, i)
95+
go SetKey(currentKey, i, page, dev)
96+
}
97+
EmitPage(p)
98+
}
8899

89-
} else if currentKey.IconHandlerStruct == nil {
90-
var handler api.IconHandler
91-
if currentKey.IconHandler == "Gif" {
92-
handler = &handlers.GifIconHandler{Running:true, OnSetImage: SetImage}
93-
} else if currentKey.IconHandler == "Counter" {
94-
handler = &handlers.CounterIconHandler{Count:0, Running: true, OnSetImage: SetImage}
95-
} else if currentKey.IconHandler == "Time" {
96-
handler = &handlers.TimeIconHandler{Running:true, OnSetImage: SetImage}
97-
}
98-
if handler == nil {
99-
continue
100-
}
101-
handler.Icon(page, i, currentKey, dev)
102-
currentKey.IconHandlerStruct = handler
100+
func SetKey(currentKey *api.Key, i int, page int, dev streamdeck.Device) {
101+
if currentKey.Buff == nil {
102+
if currentKey.IconHandler == "" {
103+
SetKeyImage(currentKey, i)
104+
105+
} else if currentKey.IconHandlerStruct == nil {
106+
var handler api.IconHandler
107+
if currentKey.IconHandler == "Gif" {
108+
handler = &handlers.GifIconHandler{Running:true, OnSetImage: SetImage}
109+
} else if currentKey.IconHandler == "Counter" {
110+
handler = &handlers.CounterIconHandler{Count:0, Running: true, OnSetImage: SetImage}
111+
} else if currentKey.IconHandler == "Time" {
112+
handler = &handlers.TimeIconHandler{Running:true, OnSetImage: SetImage}
103113
}
104-
} else {
105-
SetImage(currentKey.Buff, i, p, dev)
114+
if handler == nil {
115+
return
116+
}
117+
handler.Icon(page, i, currentKey, dev)
118+
currentKey.IconHandlerStruct = handler
106119
}
120+
} else {
121+
SetImage(currentKey.Buff, i, p, dev)
107122
}
108-
EmitPage(p)
109123
}
110124

111125
func HandleInput(key *api.Key, page int, index int) {
@@ -120,7 +134,10 @@ func HandleInput(key *api.Key, page int, index int) {
120134
SetPage(config, page)
121135
}
122136
if key.Brightness != 0 {
123-
_ = dev.SetBrightness(uint8(key.Brightness))
137+
err := dev.SetBrightness(uint8(key.Brightness))
138+
if err != nil {
139+
log.Println(err)
140+
}
124141
}
125142
if key.Url != "" {
126143
runCommand("xdg-open " + key.Url)

0 commit comments

Comments
 (0)