-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathutil.go
76 lines (68 loc) · 1.72 KB
/
util.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
package bambulabs_api
import (
"fmt"
"image/color"
"regexp"
"strconv"
"strings"
)
func isValidGCode(line string) bool {
line = strings.Split(line, ";")[0]
line = strings.TrimSpace(line)
re := regexp.MustCompile(`^[GM]\d+`)
if line == "" || !re.MatchString(line) {
return false
}
tokens := strings.Fields(line)
for _, token := range tokens[1:] {
paramRe := regexp.MustCompile(`^[A-Z]-?\d+(\.\d+)?$`)
if !paramRe.MatchString(token) {
return false
}
}
return true
}
// https://stackoverflow.com/a/54200713
func parseHexColorFast(s string) (c color.RGBA, err error) {
// Remove the '#' if it's present
hex := strings.TrimPrefix(s, "#")
var r, g, b, a uint8
// Parse the hex string based on its length
switch len(hex) {
case 6: // RGB format
rVal, err := strconv.ParseUint(hex[0:2], 16, 8)
if err != nil {
return color.RGBA{}, err
}
gVal, err := strconv.ParseUint(hex[2:4], 16, 8)
if err != nil {
return color.RGBA{}, err
}
bVal, err := strconv.ParseUint(hex[4:6], 16, 8)
if err != nil {
return color.RGBA{}, err
}
r, g, b, a = uint8(rVal), uint8(gVal), uint8(bVal), 255
case 8: // RGBA format
rVal, err := strconv.ParseUint(hex[0:2], 16, 8)
if err != nil {
return color.RGBA{}, err
}
gVal, err := strconv.ParseUint(hex[2:4], 16, 8)
if err != nil {
return color.RGBA{}, err
}
bVal, err := strconv.ParseUint(hex[4:6], 16, 8)
if err != nil {
return color.RGBA{}, err
}
aVal, err := strconv.ParseUint(hex[6:8], 16, 8)
if err != nil {
return color.RGBA{}, err
}
r, g, b, a = uint8(rVal), uint8(gVal), uint8(bVal), uint8(aVal)
default:
return color.RGBA{}, fmt.Errorf("invalid hex color length: %s", hex)
}
return color.RGBA{R: r, G: g, B: b, A: a}, nil
}