-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
component_test.go
79 lines (68 loc) · 9.15 KB
/
component_test.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
package wardleyToGo
import (
"fmt"
"image"
"image/color"
"image/draw"
)
type dummyComponent struct {
id int64
position image.Point
}
func (d *dummyComponent) GetPosition() image.Point { return d.position }
func (d *dummyComponent) ID() int64 { return d.id }
func (d *dummyComponent) Draw(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point) {
coords := calcCoords(d.position, r)
blue := color.RGBA{0, 0, 255, 255}
draw.Draw(dst, image.Rect(coords.X, coords.Y, coords.X+2, coords.Y+2), &image.Uniform{blue}, image.Point{}, draw.Src)
}
func ExampleComponent_Draw() {
const width = 130
const height = 20
im := image.NewGray(image.Rectangle{Max: image.Point{X: width, Y: height}})
c0 := &dummyComponent{id: 0, position: image.Pt(25, 25)}
c0.Draw(im, im.Bounds(), im, image.Point{})
pi := image.NewPaletted(im.Bounds(), []color.Color{
color.Gray{Y: 255},
color.Gray{Y: 160},
color.Gray{Y: 70},
color.Gray{Y: 35},
color.Gray{Y: 0},
})
draw.FloydSteinberg.Draw(pi, im.Bounds(), im, image.Point{})
shade := []string{" ", "░", "▒", "▓", "█"}
for i, p := range pi.Pix {
fmt.Print(shade[p])
if (i+1)%width == 0 {
fmt.Print("\n")
}
}
//Output:
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//████████████████████████████████▓▓████████████████████████████████████████████████████████████████████████████████████████████████
//████████████████████████████████▓▓████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
//██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
}
func calcCoords(p image.Point, bounds image.Rectangle) image.Point {
scale := bounds.Max.Sub(bounds.Min)
scaleX := float64(scale.X) / 100
scaleY := float64(scale.Y) / 100
dest := image.Pt(int(float64(p.X)*scaleX), int(float64(p.Y)*scaleY))
return dest.Add(bounds.Min)
}