Skip to content

Commit 9529b43

Browse files
committed
dd pixel detection to Pokemon Script. First semblance of intelligence
1 parent f714371 commit 9529b43

File tree

2 files changed

+170
-24
lines changed

2 files changed

+170
-24
lines changed

Pokemon_AI.py

+162-21
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,163 @@
1+
from PIL import ImageGrab
12
import keyboard
23
import random
34
import time
45
import sys
56

7+
SCREEN_WIDTH = 1920
8+
SCREEN_HEIGHT = 1080
9+
10+
BATTLE_MENU_X = 1680
11+
BATTLE_MENU_Y = 733
12+
BATTLE_ACTIVE = (248, 248, 248)
13+
14+
HEALTH_X = 1290
15+
HEALTH_Y = 613
16+
617
used_keys = [
718
'w', 'a', 's', 'd', 'x', 'z', 'enter'
819
]
920

21+
def get_img():
22+
img = ImageGrab.grab(bbox=None, include_layered_windows=False, \
23+
all_screens=False, xdisplay=None)
24+
px = img.load()
25+
return px
26+
27+
def check_state():
28+
img = get_img()
29+
state = "walk"
30+
if img[BATTLE_MENU_X, BATTLE_MENU_Y] == BATTLE_ACTIVE:
31+
health_px = img[HEALTH_X, HEALTH_Y]
32+
if health_px[1] > 200:
33+
state = "battle"
34+
else:
35+
state = "run"
36+
37+
return state
38+
39+
def battle():
40+
# Exit out of any menu game is currently in
41+
keyboard.press('x')
42+
time.sleep(0.2)
43+
release_all()
44+
45+
# Move to option
46+
keyboard.press('w')
47+
time.sleep(0.2)
48+
keyboard.press('a')
49+
time.sleep(0.2)
50+
release_all()
51+
52+
keyboard.press('z')
53+
time.sleep(0.2)
54+
release_all()
55+
56+
move = random.randint(1, 4)
57+
if move == 1:
58+
keyboard.press('w')
59+
time.sleep(0.2)
60+
keyboard.press('a')
61+
62+
elif move == 2:
63+
keyboard.press('w')
64+
time.sleep(0.2)
65+
keyboard.press('d')
66+
67+
elif move == 3:
68+
keyboard.press('s')
69+
time.sleep(0.2)
70+
keyboard.press('a')
71+
72+
else:
73+
keyboard.press('s')
74+
time.sleep(0.2)
75+
keyboard.press('d')
76+
77+
time.sleep(0.2)
78+
release_all()
79+
80+
keyboard.press('z')
81+
time.sleep(0.2)
82+
release_all()
83+
84+
def switch_pokemon():
85+
# Exit out of any menu game is currently in
86+
keyboard.press('x')
87+
time.sleep(0.2)
88+
release_all()
89+
90+
# Move to option
91+
keyboard.press('s')
92+
time.sleep(0.2)
93+
keyboard.press('a')
94+
time.sleep(0.2)
95+
release_all()
96+
97+
keyboard.press('z')
98+
time.sleep(0.2)
99+
release_all()
100+
101+
pokemon = random.randint(0, 5)
102+
for i in range(pokemon):
103+
keyboard.press('s')
104+
time.sleep(0.2)
105+
release_all()
106+
107+
time.sleep(0.2)
108+
109+
keyboard.press('z')
110+
time.sleep(0.2)
111+
release_all()
112+
113+
time.sleep(0.2)
114+
115+
keyboard.press('z')
116+
time.sleep(0.2)
117+
release_all()
118+
119+
def run():
120+
# Exit out of any menu game is currently in
121+
keyboard.press('x')
122+
time.sleep(0.2)
123+
release_all()
124+
125+
coin = random.randint(0, 9)
126+
127+
if coin > 0:
128+
switch_pokemon()
129+
else:
130+
# Escape
131+
# Move to option
132+
keyboard.press('s')
133+
time.sleep(0.2)
134+
keyboard.press('d')
135+
time.sleep(0.2)
136+
release_all()
137+
138+
keyboard.press('z')
139+
time.sleep(0.2)
140+
release_all()
141+
142+
def walk():
143+
randInt = random.randint(0, 360)
144+
if(randInt < 100):
145+
keyboard.press('z')
146+
elif randInt < 150 :
147+
keyboard.press('x')
148+
elif randInt < 200 :
149+
keyboard.press('w')
150+
elif randInt < 250 :
151+
keyboard.press('a')
152+
elif randInt < 300 :
153+
keyboard.press('s')
154+
elif randInt < 350 :
155+
keyboard.press('d')
156+
else :
157+
keyboard.press('enter')
158+
time.sleep(0.2)
159+
release_all()
160+
10161
def release_all():
11162
for key in used_keys:
12163
keyboard.release(key)
@@ -17,27 +168,17 @@ def main():
17168

18169
while (True):
19170
if keyboard.is_pressed('Esc'):
20-
print("Exiting...")
21-
release_all()
22-
sys.exit(0)
23-
24-
randInt = random.randint(0, 360)
25-
if(randInt < 100):
26-
keyboard.press('z')
27-
elif randInt < 150 :
28-
keyboard.press('x')
29-
elif randInt < 200 :
30-
keyboard.press('w')
31-
elif randInt < 250 :
32-
keyboard.press('a')
33-
elif randInt < 300 :
34-
keyboard.press('s')
35-
elif randInt < 350 :
36-
keyboard.press('d')
37-
else :
38-
keyboard.press('enter')
39-
time.sleep(0.2)
40-
release_all()
171+
print("Exiting...")
172+
release_all()
173+
sys.exit(0)
174+
else:
175+
state = check_state()
176+
if state == "battle":
177+
battle()
178+
elif state == "run":
179+
run()
180+
else:
181+
walk()
41182

42183
if __name__ == '__main__':
43184
main()

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# python-random-game-controller
22
Fun scrips that "play" games autonomously. Meant for humor.
33

4+
# Dependancies
5+
Pillow library
6+
Installation:
7+
$ pip install Pillow
8+
49
## Exiting Execution
510
Holding the "Esc" key will always exit code execution.
611

@@ -17,13 +22,13 @@ Chaos incarnate and a lot of unknown commands.
1722
This script may cause the game to close (if the character dies for example), so to be safe, having a text editing software open behind the game will prevent it typing cryptic messages to your loved ones.
1823

1924
## Pokemon_AI
20-
This script runs on a pokemon emulator, the keys that are used are seen in the script and can be changed easily.
25+
This script runs on a pokemon emulator, the keys that are used are seen in the script and can be changed easily. Now can detect if in a battle and if health is green or not. Behaves based on this.
2126

2227
### Achievements
23-
This script has managed to catch a shiny pidgey and after 9 hours, defeat the first gym leader.
28+
This script has managed to catch a shiny pidgey and after 9 hours, defeat the first gym leader, and run in circles for another 2 hours.
2429

2530
### Behaviour
26-
This script enjoys opening and closing the bag, and running away from nearly fainted opponents.
31+
This script enjoys opening and closing the bag, and previously running away from nearly fainted opponents. Now only runs away 1/10 the time, and 9/10 the time does a sloppy job switching pokemon.
2732

2833
## Spelunky_AI
2934
Script to play Spelunky.

0 commit comments

Comments
 (0)