forked from ClintOxx/PUBG-Battlepoint-FarmBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFarmBot.py
321 lines (302 loc) · 16.8 KB
/
FarmBot.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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
# -*- coding: utf-8 -*-
#LIBS Import
from datetime import datetime
import json
from os import _exit, startfile
from time import sleep, time
from random import randint
import psutil
from psutil import process_iter
from pyautogui import keyDown, keyUp, screenshot, press, click, moveTo
from coords import coordinadas, salir , busy , showbps
#Libs import end
#2 variables to get BP and Hours
puntos = 0
actual_time= str(datetime.now().strftime('%Y-%m-%d %H-%M-%S'))
#Variables end
#Class define BOT
class Bot:
def __init__(self): #the config of the object when it´s created
self.pubg_url = 'steam://rungameid/578080' #bubg URL
self.game = "TslGame.exe" #process name
self.CRASH_PROCNAME = "BroCrashReporter.exe" #crash process
self.debug_directory = "debug_screenshots"
self.start_state = "HELLO"
self.play_state = "PLAYING"
self.play_timer_max = 60 * 3
self.matching_state = "MATCHING"
self.matching_timer_max = 60 * 3
self.loading_state = "LOADING"
self.loading_timer_max = 60 * 3
self.gameloading_state = "GAME IS LOADING"
self.gameloading_timer_max = 60 * 3
self.state = "HELLO"
self.takeScrenshot = True
self.timer = 0.0
self.config = None
def setConfig(self, resolution_choice): #Choose the resolution
with open('configRes.json', encoding='UTF-8') as data_file:
global data
data = json.load(data_file)
if resolution_choice == '720':
self.config = data[resolution_choice]
elif resolution_choice == '1080':
self.config = data[resolution_choice]
elif resolution_choice == '1440':
self.config = data[resolution_choice]
elif resolution_choice == 'w1440':
self.config = data[resolution_choice]
def getpixel(self,x, y):
return screenshot().getpixel((x, y))
def pixelMatchesColor(self, x, y, expectedRGBColor, tolerance=0): #Check if the color is right
pix = self.getpixel(x,y)
if len(pix) == 3 and len(expectedRGBColor) == 3: # RGB mode
r, g, b = pix[:3]
exR, exG, exB = int(expectedRGBColor[0]), int(expectedRGBColor[1]), int(expectedRGBColor[2])
return (abs(r - exR) <= tolerance) and (abs(g - exG) <= tolerance) and (abs(b - exB) <= tolerance)
elif len(pix) == 4 and len(expectedRGBColor) == 4: # RGBA mode
r, g, b, a = pix
exR, exG, exB, exA = expectedRGBColor
return (abs(r - exR) <= tolerance) and (abs(g - exG) <= tolerance) and (abs(b - exB) <= tolerance) and (
abs(a - exA) <= tolerance)
else:
assert False, 'Color mode was expected to be length 3 (RGB) or 4 (RGBA), but pixel is length %s and expectedRGBColor is length %s' % (
len(pix), len(expectedRGBColor))
def changeState(self, value): #Change the state
self.state = value
self.timer = 0
def killGame(self): #kill the game
for proc in process_iter():
# check whether the process name matches
if proc.name() == self.game: #if the process name is = to the game name kill it
proc.kill()
_exit(1)
def matchesButton(self, position):
if self.pixelMatchesColor(position[0], position[1], self.getColor('white_button'),
tolerance=self.config['color_tolerance']) or self.pixelMatchesColor(position[0],
position[1],
self.getColor('gray_button'),
tolerance=self.config['color_tolerance']) \
or self.pixelMatchesColor(position[0],
position[1],
self.getColor('super_white_button'),
tolerance=self.config['color_tolerance']) or self.pixelMatchesColor(
position[0], position[1], self.getColor('golden_button'), tolerance=self.config['color_tolerance']):
return True
return False
def isGameRunning(self): #True if the game is running false if not
self.game in (p.name() for p in psutil.process_iter())
def checkTimer(self): #Check for timeout
if self.state == self.loading_state and self.timer > self.loading_timer_max:
# printScreen('Timeout')
print('Timeout. Restarting the game')
self.changeState(self.start_state)
elif self.state == self.matching_state and self.timer > self.matching_timer_max:
# printScreen('Timeout')
print('Timeout. Restarting the game')
self.changeState(self.start_state)
elif self.state == self.play_state and self.timer > self.play_timer_max:
# printScreen('Timeout')
print('Timeout. Restarting the game')
self.changeState(self.start_state)
elif self.state == self.gameloading_state and self.timer > self.gameloading_timer_max:
# printScreen('Timeout')
print('Timeout. Restarting the game')
self.changeState(self.start_state)
# Colors
def getColor(self, name): #Get the color of the pixel
return (self.config["colors"][name]["r"], self.config["colors"][name]["g"], self.config["colors"][name]["b"])
def run(self): #Just run the bot
#Useless code
number = 1
for server in self.config['servers']:
number += 1
inp = 0
number = 1
for server in self.config['modes']:
number += 1
inp = 1
#Useless code
# Position init
mode_position = (self.config['modes'][inp]['x'], self.config['modes'][inp]['y'], self.config['modes'][inp]['title'])
mode_tick_position = (self.config['modes'][inp]['tick']['x'], self.config['modes'][inp]['tick']['y'])
play_button_position = (self.config['play_button']['x'], self.config['play_button']['y'])
play_state_position = (self.config['play_state']['x'], self.config['play_state']['y'])
text_position = (self.config['text']['x'], self.config['text']['y'])
exit_position = (self.config['exit_to_lobby']['x'], self.config['exit_to_lobby']['y'])
error_position_check = (self.config['error_position']['x'], self.config['error_position']['y'])
error_ok_position = (self.config['error_ok_position']['x'], self.config['error_ok_position']['y'])
game_message_position = (self.config['game_message_position']['x'], self.config['game_message_position']['y'])
exit_button_position = (self.config['exit_button_position']['x'], self.config['exit_button_position']['y'])
reconnect_button_position = (self.config['reconnect_button_position']['x'], self.config['reconnect_button_position']['y'])
# Reading timings
refresh_rate = self.config["timers"]["refresh_rate"]
wait_after_killing_a_game = self.config["timers"]["wait_after_killing_a_game"]
start_delay = self.config["timers"]["start_delay"]
animation_delay = self.config["timers"]["animation_delay"]
wait_for_players = self.config["timers"]["wait_for_players"]
exit_animation_delay = self.config["timers"]["exit_animation_delay"]
loading_delay = self.config["timers"]["loading_delay"]
color_tolerance = self.config["color_tolerance"]
dark_play_color = self.getColor("dark_play_color")
play_color = self.getColor("play_color")
matching_color = self.getColor("matching_color")
matching_tick_color = self.getColor("matching_tick_color")
text_start_color = self.getColor("text_start_color")
windows_background = self.getColor("windows_background")
exit_button_color = self.getColor("exit_button_color")
reconnect_button_color = self.getColor("reconnect_button_color")
# Game info
try:
for proc in process_iter():
# check whether the process name matches
if proc.name() == self.CRASH_PROCNAME:
proc.kill()
self.killGame()
sleep(wait_after_killing_a_game)
self.changeState(self.start_state)
except Exception as ex:
print('Something went wrong while killing bug reporter... Error message: {}'.format(ex))
while True: #Just run this in bucle
if self.state == self.start_state:
if self.pixelMatchesColor(error_position_check[0], error_position_check[1], windows_background,
tolerance=color_tolerance):
press('enter')
click(error_ok_position[0], error_ok_position[1])
self.killGame()
sleep(wait_after_killing_a_game)
try:
startfile(self.pubg_url)
self.changeState(self.loading_state)
sleep(start_delay)
sleep(10)
print('Loading PUBG')
except Exception as ex:
print('Something went wrong while starating PUBG... Error message: {}'.format(ex))
elif self.state == self.loading_state:
if self.pixelMatchesColor(play_state_position[0], play_state_position[1], play_color,
tolerance=color_tolerance) or self.pixelMatchesColor(play_state_position[0],
play_state_position[1],
dark_play_color,
tolerance=color_tolerance):
moveTo(play_button_position[0], play_button_position[1])
sleep(animation_delay)
print('selecting the game mode')
sleep(animation_delay)
click(mode_position[0], mode_position[1])
sleep(animation_delay)
if self.pixelMatchesColor(mode_tick_position[0], mode_tick_position[1], matching_tick_color,
tolerance=color_tolerance):
click(mode_tick_position[0], mode_tick_position[1])
print('Clicking start')
click(play_button_position[0], play_button_position[1])
self.changeState(self.matching_state)
sleep(loading_delay)
print('Starting matchmaking...')
elif self.pixelMatchesColor(text_position[0], text_position[1], text_start_color, tolerance=color_tolerance):
print('I see text, so the game is probably ready...')
self.changeState(self.play_state)
elif self.pixelMatchesColor(reconnect_button_position[0], reconnect_button_position[1], reconnect_button_color, tolerance=color_tolerance):
print('Nice orange button? I\'ll press it!')
click(reconnect_button_position[0], reconnect_button_position[1])
sleep(animation_delay)
elif self.matchesButton(game_message_position):
print("Cant interact with game, control denied")
elif not self.pixelMatchesColor(exit_button_position[0], exit_button_position[1], exit_button_color, tolerance=color_tolerance) \
and not self.pixelMatchesColor(exit_button_position[0], exit_button_position[1], matching_tick_color, tolerance=color_tolerance)\
and self.timer > 30 and self.isGameRunning():
print('I can\'t see exit button, so the game is probably ready...')
sleep(wait_for_players)
self.changeState(self.play_state)
elif self.state == self.matching_state:
if self.pixelMatchesColor(play_state_position[0], play_state_position[1], play_color,
tolerance=color_tolerance) or self.pixelMatchesColor(play_state_position[0],
play_state_position[1],
dark_play_color,
tolerance=color_tolerance):
self.changeState(self.loading_state)
print('debug- going back to loading state')
sleep(loading_delay)
if not self.pixelMatchesColor(play_state_position[0], play_state_position[1], matching_color,tolerance=color_tolerance):
print('debug - play state postion and matching color')
#if self.pixelMatchesColor(play_state_position[0], play_state_position[1], matching_tick_color,tolerance=color_tolerance):
self.changeState(self.gameloading_state)
sleep(loading_delay)
print('Session is loading')
elif self.state == self.gameloading_state:
if not self.pixelMatchesColor(play_state_position[0], play_state_position[1], matching_tick_color,
tolerance=color_tolerance):
print('Loading is complete')
sleep(wait_for_players)
self.changeState(self.play_state)
elif self.state == self.play_state:
# print(text_position[0], text_position[1])
if not self.pixelMatchesColor(text_position[0], text_position[1], text_start_color, tolerance=color_tolerance):
wait_for_plane = randint(40, 60)
print('Time selected was {} seconds'.format(wait_for_plane))
sleep(wait_for_plane)
press('f')
print('F was hit')
timeout = time() + 315 - wait_for_plane
keyDown('w')
# keyDown('d')
# keyDown('shiftleft')
keyDown('space')
print('Pressing space to let you alive if you fall in the water')
runOnce = False
stopRunning = False
while True:
if time() < timeout:
if timeout - time() < 120 and stopRunning is not True:
print("Stopped pressing w at {}".format(time()))
keyUp('w')
press('s')
keyDown('space')
sleep(3)
press('capslock')
stopRunning = True
elif timeout - time() < 90 and runOnce is not True:
press('s')
keyDown('space')
sleep(3)
press('z')
runOnce = True
else:
break
keyUp('space')
press('capslock')
press('esc')
sleep(animation_delay)
click(exit_position[0], exit_position[1])
sleep(exit_animation_delay)
click(exit_position[0], exit_position[1])
self.changeState(self.loading_state)
#print('Going in menu. Loading again')
salir()
global puntos
puntos = puntos + 60
print ("You have earned " + str(puntos) + "BPs")
global actual_time
showbps(str(puntos),actual_time)
coordinadas()
busy()
sleep(5)
if self.game in (p.name() for p in psutil.process_iter()) is False:
try:
startfile(self.pubg_url)
self.changeState(self.loading_state)
sleep(start_delay)
print('Loading PUBG Again xD')
except Exception:
print(' If this doesn´t work, report it pls')
sleep(refresh_rate)
self.timer += refresh_rate
if self.game in (p.name() for p in psutil.process_iter()) is False:
try:
startfile(self.pubg_url)
self.changeState(self.loading_state)
sleep(start_delay)
print('Loading PUBG Again xD')
except Exception:
print(' If this doesn´t work, report it pls')
self.checkTimer()