-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
242 lines (200 loc) · 4.8 KB
/
main.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
package main
import (
"fmt"
"image"
"image/color"
"log"
"os"
"os/signal"
"strconv"
"syscall"
"time"
"github.com/JamesHovious/w32"
"github.com/kbinani/screenshot"
"github.com/moutend/go-hook/pkg/keyboard"
"github.com/moutend/go-hook/pkg/types"
)
// Pou Colors
var colors = []color.Color{
color.RGBA{99, 199, 255, 255},
color.RGBA{247, 239, 57, 255},
color.RGBA{189, 117, 255, 255},
color.RGBA{255, 130, 33, 255},
color.RGBA{66, 243, 49, 255},
color.RGBA{255, 130, 181, 255},
color.RGBA{140, 138, 140, 255},
}
var down = w32.INPUT{
Type: 0,
Mi: w32.MOUSEINPUT{
DwFlags: w32.MOUSEEVENTF_LEFTDOWN,
},
}
var up = w32.INPUT{
Type: 0,
Mi: w32.MOUSEINPUT{
DwFlags: w32.MOUSEEVENTF_LEFTUP,
},
}
type Coords struct {
x0 int
y0 int
x1 int
y1 int
}
func main() {
var levelsToPass int
var err error
if len(os.Args) == 1 {
log.Println("No number for levels to pass provided, the bot will continue playing until stopped!")
} else {
levelsToPass, err = strconv.Atoi(os.Args[1])
if err != nil {
panic(err)
}
}
kbC, err := RegKbHook()
if err != nil {
panic(err)
}
fmt.Println(" Move Cursor to the TOP LEFT corner of the playground then press '1' to set TOP LEFT coordinates! ")
fmt.Println()
fmt.Println(" Move Cursor to the BOTTOM RIGHT corner of the playground then press '2' to set BOTTOM RIGHT coordinates! ")
fmt.Println()
fmt.Println(" Press '3' to start the bot! ")
fmt.Println()
fmt.Println(" Press '4' to stop the bot! ")
fmt.Println()
c := &Coords{}
isRunning := false
qc := make(chan struct{})
for ev := range kbC {
if ev.Message == types.WM_KEYUP && ev.VKCode == types.VK_1 {
x0, y0, ok := w32.GetCursorPos()
if !ok {
panic("Could not get Cursor Pos with win32!")
}
c.x0 = x0
c.y0 = y0
log.Printf("Setting (x0,y0) to %+d,%+d\n", x0, y0)
}
if ev.Message == types.WM_KEYUP && ev.VKCode == types.VK_2 {
x1, y1, ok := w32.GetCursorPos()
if !ok {
panic("Could not get Cursor Pos with win32!")
}
c.x1 = x1
c.y1 = y1
log.Printf("Setting (x1,y1) to %+d,%+d\n", x1, y1)
}
if ev.Message == types.WM_KEYUP && ev.VKCode == types.VK_3 {
if !isRunning {
go func() {
err := Play(kbC, qc, levelsToPass, c)
if err != nil {
panic(err)
}
}()
isRunning = true
}
}
if ev.Message == types.WM_KEYUP && ev.VKCode == types.VK_4 {
qc <- struct{}{}
}
}
err = keyboard.Uninstall()
if err != nil {
panic(err)
}
}
func MoveClick(x, y int, delay time.Duration) {
w32.SetCursorPos(x, y)
err := w32.SendInput([]w32.INPUT{down})
if err != nil {
panic(err)
}
time.Sleep(delay)
err = w32.SendInput([]w32.INPUT{up})
if err != nil {
panic(err)
}
}
func RegKbHook() (chan types.KeyboardEvent, error) {
keyboardChan := make(chan types.KeyboardEvent, 100)
err := keyboard.Install(nil, keyboardChan)
if err != nil {
return nil, err
}
return keyboardChan, nil
}
func Play(kbC chan types.KeyboardEvent, qc chan struct{}, levelsToPass, c Coords) error {
defer close(kbC)
bounds := image.Rect(c.x0, c.y0, c.x1, c.y1)
img, err := screenshot.CaptureRect(bounds)
if err != nil {
return err
}
screenshotBounds := img.Bounds()
width := screenshotBounds.Max.X
height := screenshotBounds.Max.Y
totalLevelsPassed := 1
for {
start := time.Now()
if levelsToPass == 0 {
log.Printf("Playing level %d!\n", totalLevelsPassed)
} else {
log.Printf("Playing level %d/%d!\n", totalLevelsPassed, levelsToPass)
if totalLevelsPassed == levelsToPass {
return nil
}
}
var pouColors = make(map[color.Color]int)
var pouColor color.Color = color.Transparent
// This loop gets all pou colors from current level
for y := screenshotBounds.Min.Y; y < height; y += 10 {
for x := screenshotBounds.Min.X; x < width; x += 10 {
pix := img.At(x, y)
for _, c := range colors {
if c == pix {
pouColors[c]++
}
}
}
}
// This loop sets pouColor (the color to look for - less occurrences of particular color is better)
min := int(^uint(0) >> 1)
for k, v := range pouColors {
if v < min {
min = v
pouColor = k
}
}
termC := make(chan os.Signal, 100)
signal.Notify(termC, syscall.SIGINT, syscall.SIGTERM)
select {
case <-termC:
return nil
case <-qc:
return nil
default:
for y := screenshotBounds.Min.Y; y < height; y += 10 {
for x := screenshotBounds.Min.X; x < width; x += 10 {
pix := img.At(x, y)
if pouColor == pix {
MoveClick(c.x0+x, c.y0+y, time.Millisecond*60)
// a delay for the game to update to a new color
time.Sleep(time.Millisecond * 20)
img, err = screenshot.CaptureRect(bounds)
if err != nil {
return err
}
}
}
}
elapsed := time.Since(start)
fmt.Println()
log.Printf("Level %d passed in %s!\n", totalLevelsPassed, elapsed)
}
totalLevelsPassed++
}
}