forked from ankanban/Pokemon_Go_API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirty.py
122 lines (112 loc) · 3.59 KB
/
dirty.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
import logic
import api
import time
import pokemon_pb2
import location
import config
import main
from multiprocessing import Process
multi=False
argsStored = []
startTime = time.time()
accessToken=None
globalltype=None
def restartProcess():
global argsStored
if accessToken is not None and globalltype is not None:
start_private_show(accessToken,globalltype,argsStored.location)
else:
access_token,ltype=main.get_acces_token(argsStored.username,argsStored.password,argsStored.type.lower())
if access_token is not None:
start_private_show(access_token,ltype,argsStored.location)
else:
print '[-] access_token bad'
def start_private_show(access_token,ltype,loc):
location.set_location(loc)
print '[+] Token:',access_token[:40]+'...'
prot1=logic.gen_first_data(access_token,ltype)
local_ses=api.get_rpc_server(access_token,prot1)
new_rcp_point='https://%s/rpc'%(local_ses.rpc_server,)
while(True):
work_stop(local_ses,new_rcp_point)
def walk_random():
COORDS_LATITUDE, COORDS_LONGITUDE, COORDS_ALTITUDE=location.get_location_coords()
COORDS_LATITUDE=location.l2f(COORDS_LATITUDE)
COORDS_LONGITUDE=location.l2f(COORDS_LONGITUDE)
COORDS_ALTITUDE=location.l2f(COORDS_ALTITUDE)
COORDS_LATITUDE=COORDS_LATITUDE+config.steps
COORDS_LONGITUDE=COORDS_LONGITUDE+config.steps
location.set_location_coords(COORDS_LATITUDE, COORDS_LONGITUDE, COORDS_ALTITUDE)
def split_list(a_list):
half = len(a_list)/2
return a_list[:half], a_list[half:]
def work_half_list(part,ses,new_rcp_point):
for t in part:
if config.debug:
print '[!] farming pokestop..'
work_with_stops(t,ses,new_rcp_point)
def work_stop(local_ses,new_rcp_point):
proto_all=logic.all_stops(local_ses)
all_stops=api.use_api(new_rcp_point,proto_all)
maps = pokemon_pb2.maps()
maps.ParseFromString(all_stops)
data_list=location.get_near(maps)
data_list = sorted(data_list, key = lambda x: x[1])
if len(data_list)>0:
print '[+] found: %s Pokestops near'%(len(data_list))
if local_ses is not None and data_list is not None:
print '[+] starting show'
if multi:
a,b=split_list(data_list)
p = Process(target=work_half_list, args=(a,local_ses.ses,new_rcp_point))
o = Process(target=work_half_list, args=(a,local_ses.ses,new_rcp_point))
p.start()
o.start()
p.join()
o.join()
print '[!] farming done..'
else:
for t in data_list:
if config.debug:
print '[!] farming pokestop..'
work_with_stops(t,local_ses.ses,new_rcp_point)
else:
walk_random()
work_stop(local_ses,new_rcp_point)
def work_with_stops(current_stop,ses,new_rcp_point):
Kinder= logic.gen_stop_data(ses,current_stop)
tmp_api=api.use_api(new_rcp_point,Kinder)
try:
if tmp_api is not None:
map = pokemon_pb2.map()
map.ParseFromString(tmp_api)
st= map.sess[0].status
config.earned_xp+=map.sess[0].amt
if st==4:
print "[!] +%s (%s)"%(map.sess[0].amt,config.earned_xp)
elif st==3:
print "[!] used"
elif st==2:
print "[!] charging"
elif st==1:
print "[!] walking.."
expPerHour()
time.sleep(14)
work_with_stops(current_stop,ses,new_rcp_point)
else:
print "[?]:",st
else:
print '[-] tmp_api empty'
except:
print '[-] error work_with_stops - Trying to restart process'
restartProcess()
def expPerHour():
diff = time.time() - startTime
minutesRun = diff/60.
hoursRun = minutesRun/60.
earned = float(config.earned_xp)
if hoursRun > 0:
expHour = int(earned/hoursRun)
else:
expHour = "n/a"
print "[!] Gained: %s (%s exp/h)"%(config.earned_xp,expHour)