forked from kairess/auto_sword
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple.py
More file actions
110 lines (88 loc) · 3.26 KB
/
simple.py
File metadata and controls
110 lines (88 loc) · 3.26 KB
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
import cv2, time, sys, random, mss
import numpy as np
import pyscreenshot
import pyautogui as pag
from sklearn.cluster import KMeans
from colorama import init, Fore, Back, Style
init(autoreset=True)
from helpers import *
pag.PAUSE = 0.001
fail_limit = 10
# bluestacks
left_icon_pos = {'left': 100, 'top': 540, 'width': 70, 'height': 70}
right_icon_pos = {'left': 250, 'top': 540, 'width': 70, 'height': 70}
left_button = [70, 680]
right_button = [355, 680]
# nox
# left_icon_pos = {'left': 170, 'top': 580, 'width': 80, 'height': 80}
# right_icon_pos = {'left': 355, 'top': 580, 'width': 80, 'height': 80}
# left_button = [133, 736]
# right_button = [476, 737]
icon_colors = {
'BOMB': Fore.RED,
'SWORD': Fore.MAGENTA,
'POISON': Fore.GREEN,
'JEWEL': Fore.CYAN,
}
def get_colors(img):
img = img.reshape((img.shape[0] * img.shape[1], 3)) #represent as row*column,channel number
clt = KMeans(n_clusters=2)
clt.fit(img)
hist = find_histogram(clt)
dominant_colors = clt.cluster_centers_
hist = sorted(hist, reverse=True)
dominant_colors = [list(x) for _,x in sorted(zip(hist, dominant_colors))]
pred = min_color_diff(dominant_colors[0])
cli_color = Fore.WHITE
if pred[1] in icon_colors:
cli_color = icon_colors[pred[1]]
print(hist, dominant_colors, '%s%s' % (cli_color, pred))
if hist[0] > 0.5:
if dominant_colors[0][0] < 55 and dominant_colors[0][1] < 55 and dominant_colors[0][2] < 55:
return 'BOMB'
elif dominant_colors[0][0] > 250 and dominant_colors[0][0] > 120 and dominant_colors[0][1] < 140 and dominant_colors[0][2] > 250:
return 'SWORD'
# 120, 172, 102
elif dominant_colors[0][0] > 110 and dominant_colors[0][0] < 130 and dominant_colors[0][1] > 150 and dominant_colors[0][2] > 90 and dominant_colors[0][2] < 110:
return 'POISON'
return False
####################################
####################################
####################################
if __name__ == "__main__":
countdown(3)
n_fails = 0
n_frames = 0
while True:
n_frames += 1
with mss.mss() as sct:
left_img = np.array(sct.grab(left_icon_pos))[:,:,:3]
right_img = np.array(sct.grab(right_icon_pos))[:,:,:3]
# cv2.imshow('OpenCV/Numpy normal', np.concatenate((left_img, right_img), axis=1))
# cv2.waitKey(1)
# continue
# cv2.imwrite('img/%s.jpg' % (str(n_frames)), np.concatenate((left_img, right_img), axis=1))
print(n_frames)
left_icon = get_colors(left_img)
right_icon = get_colors(right_img)
if left_icon == 'SWORD' and (right_icon == 'BOMB' or right_icon == 'POISON'):
# if left_icon == 'SWORD':
print('CLICK LEFT!')
click(x=left_button[0], y=left_button[1])
n_fails = 0
elif right_icon == 'SWORD' and (left_icon == 'BOMB' or left_icon == 'POISON'):
print('CLICK RIGHT!')
click(x=right_button[0], y=right_button[1])
n_fails = 0
elif left_icon == 'jewel' and right_icon == 'jewel':
click(x=left_button[0], y=left_button[1])
n_fails = 0
else:
print('i dont know')
n_fails += 1
if n_fails > fail_limit:
print('failed %s times, terminate!' % (fail_limit))
break
# get_mouse_position()
print('========================')
time.sleep(0.04)