1
1
package main
2
2
3
3
import (
4
+ "context"
4
5
"github.com/fogleman/gg"
5
6
"github.com/nfnt/resize"
6
7
"github.com/unix-streamdeck/api"
7
8
"github.com/unix-streamdeck/driver"
8
9
"github.com/unix-streamdeck/streamdeckd/handlers"
9
10
"golang.org/x/image/font/inconsolata"
11
+ "golang.org/x/sync/semaphore"
10
12
"image"
11
13
"image/color"
12
14
"image/draw"
@@ -16,6 +18,7 @@ import (
16
18
)
17
19
18
20
var p int
21
+ var sem = semaphore .NewWeighted (int64 (1 ))
19
22
20
23
func LoadImage (path string ) (image.Image , error ) {
21
24
f , err := os .Open (path )
@@ -37,6 +40,13 @@ func ResizeImage(img image.Image) image.Image {
37
40
}
38
41
39
42
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 )
40
50
if p == page && isOpen {
41
51
err := dev .SetImage (uint8 (i ), img )
42
52
if err != nil {
@@ -49,7 +59,7 @@ func SetImage(img image.Image, i int, page int, _ streamdeck.Device) {
49
59
}
50
60
}
51
61
52
- func SetKey (currentKey * api.Key , i int ) {
62
+ func SetKeyImage (currentKey * api.Key , i int ) {
53
63
if currentKey .Buff == nil {
54
64
if currentKey .Icon == "" {
55
65
img := image .NewRGBA (image .Rect (0 , 0 , int (dev .Pixels ), int (dev .Pixels )))
@@ -82,30 +92,34 @@ func SetPage(config *api.Config, page int) {
82
92
currentPage := config .Pages [page ]
83
93
for i := 0 ; i < len (currentPage ); i ++ {
84
94
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
+ }
88
99
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 }
103
113
}
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
106
119
}
120
+ } else {
121
+ SetImage (currentKey .Buff , i , p , dev )
107
122
}
108
- EmitPage (p )
109
123
}
110
124
111
125
func HandleInput (key * api.Key , page int , index int ) {
@@ -120,7 +134,10 @@ func HandleInput(key *api.Key, page int, index int) {
120
134
SetPage (config , page )
121
135
}
122
136
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
+ }
124
141
}
125
142
if key .Url != "" {
126
143
runCommand ("xdg-open " + key .Url )
0 commit comments