-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdino.py
55 lines (43 loc) · 1.13 KB
/
dino.py
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
import pyautogui # pip install pyautogui
from PIL import Image, ImageGrab # pip install pillow
# from numpy import asarray
import time
color = None
def hit(key):
pyautogui.press(key)
return
def isCollide(data):
# Cactus
for i in range(250, 480):
for j in range(400, 480):
if data[i, j] < 150:
hit("up")
return
# Bird
for i in range(250, 420):
for j in range(350, 400):
if data[i, j] < 150:
hit("down")
return
return
if __name__ == "__main__":
print("Hey.. Dino game about to start in 3 seconds")
time.sleep(2)
hit("up")
while True:
image = ImageGrab.grab().convert('L')
data = image.load()
isCollide(data)
# print(asarray(image))
'''
# Draw the rectangle for cactus
for i in range(250, 300):
for j in range(400, 480):
data[i, j] = 0
# Draw the rectangle for birds
for i in range(250, 300):
for j in range(350, 400):
data[i, j] = 171
image.show()
break
'''