Last active
April 18, 2020 18:54
-
-
Save RyanHope/99f10a862f743edbb9bad9fb45458abf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
pgoapi - Pokemon Go API | |
Copyright (c) 2016 tjado <https://github.com/tejado> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all | |
copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | |
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | |
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE | |
OR OTHER DEALINGS IN THE SOFTWARE. | |
Author: tjado <https://github.com/tejado> | |
""" | |
import os | |
import re | |
import sys | |
import json | |
import time | |
import struct | |
import pprint | |
import logging | |
import requests | |
import argparse | |
import getpass | |
import random | |
import urllib | |
import math | |
# add directory of this file to PATH, so that the package will be found | |
sys.path.append(os.path.dirname(os.path.realpath(__file__))) | |
# import Pokemon Go API lib | |
from pgoapi import pgoapi | |
from pgoapi import utilities as util | |
# other stuff | |
from google.protobuf.internal import encoder | |
from geopy.geocoders import GoogleV3 | |
from s2sphere import Cell, CellId, LatLng | |
log = logging.getLogger(__name__) | |
def get_pos_by_name(location_name): | |
geolocator = GoogleV3() | |
loc = geolocator.geocode(location_name, timeout=10) | |
if not loc: | |
return None | |
log.info('Your given location: %s', loc.address.encode('utf-8')) | |
log.info('lat/long/alt: %s %s %s', loc.latitude, loc.longitude, loc.altitude) | |
return (loc.latitude, loc.longitude, loc.altitude) | |
def get_cell_ids(lat, long, radius = 10): | |
origin = CellId.from_lat_lng(LatLng.from_degrees(lat, long)).parent(15) | |
walk = [origin.id()] | |
right = origin.next() | |
left = origin.prev() | |
# Search around provided radius | |
for i in range(radius): | |
walk.append(right.id()) | |
walk.append(left.id()) | |
right = right.next() | |
left = left.prev() | |
# Return everything | |
return sorted(walk) | |
def encode(cellid): | |
output = [] | |
encoder._VarintEncoder()(output.append, cellid) | |
return ''.join(output) | |
def init_config(): | |
parser = argparse.ArgumentParser() | |
config_file = "config.json" | |
# If config file exists, load variables from json | |
load = {} | |
if os.path.isfile(config_file): | |
with open(config_file) as data: | |
load.update(json.load(data)) | |
# Read passed in Arguments | |
required = lambda x: not x in load | |
parser.add_argument("-a", "--auth_service", help="Auth Service ('ptc' or 'google')", | |
required=required("auth_service")) | |
parser.add_argument("-u", "--username", help="Username", required=required("username")) | |
parser.add_argument("-p", "--password", help="Password") | |
parser.add_argument("-l", "--location", help="Location", required=required("location")) | |
parser.add_argument("-k", "--key", help="Google Maps API Key", required=required("key")) | |
parser.add_argument("-d", "--debug", help="Debug Mode", action='store_true') | |
parser.add_argument("-t", "--test", help="Only parse the specified location", action='store_true') | |
parser.set_defaults(DEBUG=False, TEST=False) | |
config = parser.parse_args() | |
# Passed in arguments shoud trump | |
for key in config.__dict__: | |
if key in load and config.__dict__[key] == None: | |
config.__dict__[key] = str(load[key]) | |
if config.__dict__["password"] is None: | |
log.info("Secure Password Input (if there is no password prompt, use --password <pw>):") | |
config.__dict__["password"] = getpass.getpass() | |
if config.auth_service not in ['ptc', 'google']: | |
log.error("Invalid Auth service specified! ('ptc' or 'google')") | |
return None | |
return config | |
def gmaps_dbug(coords, spins, key): | |
url_string = 'http://maps.googleapis.com/maps/api/staticmap?key=%s&size=800x800&path=' % (key) | |
for coord in coords: | |
url_string += '{},{}|'.format(coord['lat'], coord['lng']) | |
url_string = url_string[:-1] | |
for spin in spins: | |
url_string += '&markers=color:blue%7C{},{}'.format(spin['latitude'], spin['longitude']) | |
return url_string | |
def get_key_from_pokemon(pokemon): | |
return '{}-{}'.format(pokemon['spawnpoint_id'], pokemon['pokemon_data']['pokemon_id']) | |
def find_poi(api, lat, lng): | |
spins = [] | |
poi = {'pokemons': {}, 'forts': []} | |
cell_ids = get_cell_ids(lat, lng) | |
timestamps = [0,] * len(cell_ids) | |
api.get_map_objects(latitude = util.f2i(lat), longitude = util.f2i(lng), since_timestamp_ms = timestamps, cell_id = cell_ids) | |
response_dict = api.call() | |
if 'status' in response_dict['responses']['GET_MAP_OBJECTS']: | |
if response_dict['responses']['GET_MAP_OBJECTS']['status'] == 1: | |
for map_cell in response_dict['responses']['GET_MAP_OBJECTS']['map_cells']: | |
if 'wild_pokemons' in map_cell: | |
for pokemon in map_cell['wild_pokemons']: | |
pokekey = get_key_from_pokemon(pokemon) | |
pokemon['hides_at'] = time.time() + pokemon['time_till_hidden_ms']/1000 | |
poi['pokemons'][pokekey] = pokemon | |
if 'forts' in map_cell: | |
for fort in map_cell['forts']: | |
poi['forts'].append(fort) | |
if "type" in fort and fort["type"] == 1: | |
if math.hypot(fort['latitude'] - lat, fort['longitude'] - lng) < 0.0004495: | |
api.fort_search(fort_id = fort['id'], fort_latitude = fort['latitude'], fort_longitude = fort['longitude'], player_latitude=util.f2i(lat), player_longitude=util.f2i(lng)) | |
if api.call()["responses"]["FORT_SEARCH"]["result"] == 1: | |
spins.append(fort) | |
#print('POI dictionary: \n\r{}'.format(pprint.PrettyPrinter(indent=4).pformat(poi))) | |
return spins | |
def main(): | |
# log settings | |
# log format | |
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s [%(module)10s] [%(levelname)5s] %(message)s') | |
# log level for http request class | |
logging.getLogger("requests").setLevel(logging.WARNING) | |
# log level for main pgoapi class | |
logging.getLogger("pgoapi").setLevel(logging.INFO) | |
# log level for internal pgoapi class | |
logging.getLogger("rpc_api").setLevel(logging.INFO) | |
config = init_config() | |
if not config: | |
return | |
if config.debug: | |
logging.getLogger("requests").setLevel(logging.DEBUG) | |
logging.getLogger("pgoapi").setLevel(logging.DEBUG) | |
logging.getLogger("rpc_api").setLevel(logging.DEBUG) | |
position = get_pos_by_name(config.location) | |
if not position: | |
log.error('Position could not be found by name') | |
return | |
if config.test: | |
return | |
# instantiate pgoapi | |
api = pgoapi.PGoApi() | |
# provide player position on the earth | |
api.set_position(*position) | |
if not api.login(config.auth_service, config.username, config.password): | |
return | |
coords = [] | |
spins = [] | |
m1 = random.choice([-1,1]) | |
m2 = random.choice([-1,1]) | |
start_time = time.time() | |
last_walked = 0 | |
while True: | |
position = map(util.i2f, api.get_position()) | |
target_km = [] | |
api.get_inventory() | |
items = api.call()["responses"]["GET_INVENTORY"]["inventory_delta"]["inventory_items"] | |
walked = 0 | |
for item in items: | |
#print item | |
if "egg_incubators" in item["inventory_item_data"]: | |
if "target_km_walked" in item["inventory_item_data"]["egg_incubators"]["egg_incubator"]: | |
target_km.append(item["inventory_item_data"]["egg_incubators"]["egg_incubator"]["target_km_walked"]) | |
elif "player_stats" in item["inventory_item_data"]: | |
walked = item["inventory_item_data"]["player_stats"]["km_walked"] | |
if len(target_km) > 0: | |
target_km = min(target_km) | |
if walked >= target_km: | |
print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" | |
print "km_walked: %f, target_km_walked: %f" % (walked, target_km) | |
print "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" | |
api.get_hatched_eggs() | |
print api.call() | |
else: | |
target_km = -1 | |
if last_walked != walked: | |
m1 = random.choice([-1,1]) | |
m2 = random.choice([-1,1]) | |
last_walked = walked | |
r = .0001 + random.gauss(.00005, .00005) | |
pmod = random.choice([0,1,2]) | |
if pmod==0: | |
newposition = (position[0]+(r*m1), position[1], 0) | |
elif pmod==1: | |
newposition = (position[0], position[1]+(r*m2), 0) | |
elif pmod==2: | |
newposition = (position[0]+(r*m1), position[1]+(r*m2), 0) | |
api.set_position(*newposition) | |
api.player_update(latitude = util.f2i(newposition[0]), longitude = util.f2i(newposition[1])) | |
api.call() | |
newspins = find_poi(api, newposition[0], newposition[1]) | |
spins += newspins | |
coords.append({'lat': newposition[0], 'lng': newposition[1]}) | |
print "==============================================================================================================================" | |
print "elapsed: %f, km_walked: %f, target_km_walked: %f, spins: %d" % (time.time()-start_time, walked, target_km, len(spins)) | |
print "==============================================================================================================================" | |
urllib.urlretrieve(gmaps_dbug(coords, spins, config.key),"path.png") | |
time.sleep(5) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment