-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpattern.go
161 lines (137 loc) · 4.08 KB
/
pattern.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
The MIT License
Copyright (c) 2016, William Poussier <william.poussier@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package blinkygo
import (
"bufio"
"fmt"
"image"
"image/draw"
"os"
"strings"
// Image decoding
_ "image/gif"
_ "image/jpeg"
_ "image/png"
"github.com/nfnt/resize"
// Image decoding
_ "golang.org/x/image/bmp"
)
// A Frame represents a list of pixels.
type Frame []Pixel
// A Pattern represents a list of frames.
type Pattern []Frame
// NewPatternFromImage returns a new pattern created from an image.
// Types 'jpeg', 'png', 'gif' and 'bmp' are supported.
func NewPatternFromImage(path string, pixelCount uint) (Pattern, error) {
if pixelCount == 0 {
return nil, ErrNoPixels
}
source, err := readImage(path)
if err != nil {
return nil, err
}
var img image.Image
bounds := source.Bounds()
if bounds.Dy() > int(pixelCount) {
// the resize function preserves the aspect ratio
img = resize.Resize(0, pixelCount, source, resize.Bilinear)
} else {
img = source
}
// draw a new rgba image from source, so we can directly
// access to the rgb representation of each pixel in Pix field
bounds = img.Bounds()
rgba := image.NewRGBA(bounds)
draw.Draw(rgba, bounds, img, bounds.Min, draw.Src)
// loop across the pixels and create frames
pattern := make(Pattern, bounds.Dx())
for x := 0; x < bounds.Dx(); x++ {
f := make(Frame, pixelCount)
for y := 0; y < bounds.Dy(); y++ {
r := rgba.Pix[rgba.PixOffset(x, y)]
g := rgba.Pix[rgba.PixOffset(x, y)+1]
b := rgba.Pix[rgba.PixOffset(x, y)+2]
f[y] = Pixel{
Color: NewRGBColor(brightnessCorrect(r, g, b)),
}
}
pattern[x] = f
}
return pattern, nil
}
// readImage open a file and return an image.
func readImage(path string) (image.Image, error) {
reader, err := os.Open(path)
if err != nil {
return nil, err
}
img, _, err := image.Decode(reader)
if err != nil {
return nil, err
}
reader.Close()
return img, nil
}
// NewPatternFromArduinoExport returns a new pattern created
// from an Arduino C header file exported from PatternPaint.
func NewPatternFromArduinoExport(path string) (Pattern, error) {
pattern := make(Pattern, 0)
lines, err := readLines(path)
if err != nil {
return nil, err
}
fc := -1
ll := len(lines) - 3
// loop across the lines and create frames
// ignore the first line, and the last three
for i := 1; i < ll; i++ {
if strings.HasPrefix(lines[i], "//") {
pattern = append(pattern, make(Frame, 0))
fc++
} else {
var r, g, b byte
_, err := fmt.Sscanf(lines[i], "%v,%v,%v,", &r, &g, &b)
if err != nil {
return nil, err
}
pattern[fc] = append(pattern[fc], Pixel{
Color: NewRGBColor(r, g, b),
})
}
}
return pattern, nil
}
// readLines reads the content of a file
// and returns a slice of its lines.
func readLines(path string) ([]string, error) {
reader, err := os.Open(path)
if err != nil {
return nil, err
}
var lines []string
scanner := bufio.NewScanner(reader)
// read each line and append it in a slice that
// grows dynamically
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
reader.Close()
return lines, scanner.Err()
}