-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtextbuttons.go
140 lines (115 loc) · 2.73 KB
/
textbuttons.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package cmd
import (
"fmt"
"image/color"
"io/ioutil"
"log"
"os"
"os/signal"
sdeck "github.com/dh1tw/streamdeck"
"github.com/golang/freetype"
"github.com/golang/freetype/truetype"
"github.com/spf13/cobra"
)
var textbtnsCmd = &cobra.Command{
Use: "textbuttons",
Short: "just buttons with custom text",
Long: `just buttons with custom text`,
Run: textbtns,
}
func init() {
rootCmd.AddCommand(textbtnsCmd)
}
var monoFont *truetype.Font
func textbtns(cmd *cobra.Command, args []string) {
var sd *sdeck.StreamDeck
var err error
sdSerial := rootCmd.Flag("device").Value.String()
if len(sdSerial) > 0 {
sd, err = sdeck.NewStreamDeck(sdSerial)
} else {
sd, err = sdeck.NewStreamDeck()
}
if err != nil {
fmt.Println(err)
return
}
defer sd.ClearAllBtns()
fmt.Println("using stream deck device with serial number", sd.Serial())
// Load the font
_monoFont, err := assetDirectory.Open("assets/fonts/mplus-1m-regular.ttf")
if err != nil {
log.Fatal(err)
}
defer _monoFont.Close()
data, err := ioutil.ReadAll(_monoFont)
if err != nil {
log.Panic(err)
}
monoFont, err = freetype.ParseFont(data)
if err != nil {
log.Panic(err)
}
lineLabel := sdeck.TextLine{
Font: monoFont,
FontColor: color.RGBA{255, 255, 0, 0}, // Yellow
FontSize: 22,
PosX: 10,
PosY: 5,
Text: "STATE",
}
linePressed := sdeck.TextLine{
Font: monoFont,
FontColor: color.RGBA{255, 255, 255, 0}, // White
FontSize: 14,
PosX: 12,
PosY: 30,
Text: "PRESSED",
}
lineLongPressed := sdeck.TextLine{
Font: monoFont,
FontColor: color.RGBA{255, 255, 0, 0}, // Yellow
FontSize: 14,
PosX: 12,
PosY: 30,
Text: "LPRESSED",
}
lineReleased := sdeck.TextLine{
Font: monoFont,
FontColor: color.RGBA{255, 0, 0, 0}, // Red
FontSize: 14,
PosX: 9,
PosY: 30,
Text: "RELEASED",
}
pressedText := sdeck.TextButton{
BgColor: color.RGBA{0, 0, 0, 0},
Lines: []sdeck.TextLine{lineLabel, linePressed},
}
longPressedText := sdeck.TextButton{
BgColor: color.RGBA{0, 0, 0, 0},
Lines: []sdeck.TextLine{lineLabel, lineLongPressed},
}
releasedText := sdeck.TextButton{
BgColor: color.RGBA{0, 0, 0, 0},
Lines: []sdeck.TextLine{lineLabel, lineReleased},
}
for i := 0; i < 15; i++ {
sd.WriteText(i, releasedText)
}
btnEvtCb := func(btnIndex int, state sdeck.BtnState) {
fmt.Printf("Button: %d, %s\n", btnIndex, state)
switch state {
case sdeck.BtnPressed:
sd.WriteText(btnIndex, pressedText)
case sdeck.BtnLongPressed:
sd.WriteText(btnIndex, longPressedText)
case sdeck.BtnReleased:
sd.WriteText(btnIndex, releasedText)
}
}
sd.SetBtnEventCb(btnEvtCb)
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
}