资源简介
用Python来玩微信跳一跳,希望不要把分数刷太高,容易没朋友的。。。
代码片段和文件信息
from __future__ import print_function
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import math
import time
import os
import cv2
import datetime
scale = 0.25
template = cv2.imread(‘character.png‘)
template = cv2.resize(template (0 0) fx=scale fy=scale)
template_size = template.shape[:2]
def search(img):
result = cv2.matchTemplate(img template cv2.TM_SQDIFF)
min_val max_val min_loc max_loc = cv2.minMaxLoc(result)
cv2.rectangle(img (min_loc[0] min_loc[1]) (min_loc[0] + template_size[1] min_loc[1] + template_size[0]) (255 0 0) 4)
return img min_loc[0] + template_size[1] / 2 min_loc[1] + template_size[0]
def pull_screenshot():
filename = datetime.datetime.now().strftime(“%H%M%S“) + ‘.png‘
os.system(‘mv autojump.png {}‘.format(filename))
os.system(‘adb shell screencap -p /sdcard/autojump.png‘)
os.system(‘adb pull /sdcard/autojump.png .‘)
def jump(distance):
press_time = distance * 1.35
press_time = int(press_time)
cmd = ‘adb shell input swipe 320 410 320 410 ‘ + str(press_time)
print(cmd)
os.system(cmd)
def update_data():
global src_x src_y
img = cv2.imread(‘autojump.png‘)
img = cv2.resize(img (0 0) fx=scale fy=scale)
img src_x src_y = search(img)
return img
fig = plt.figure()
index = 0
# pull_screenshot()
img = update_data()
update = True
im = plt.imshow(img animated=True)
def updatefig(*args):
global update
if update:
time.sleep(1)
pull_screenshot()
im.set_array(update_data())
update = False
return im
def onclick(event):
global update
global src_x src_y
dst_x dst_y = event.xdata event.ydata
distance = (dst_x - src_x)**2 + (dst_y - src_y)**2
distance = (distance ** 0.5) / scale
print(‘distance = ‘ distance)
jump(distance)
update = True
fig.canvas.mpl_connect(‘button_press_event‘ onclick)
ani = animation.FuncAnimation(fig updatefig interval=5 blit=True)
plt.show()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-01-02 01:59 wechat_jump_game-master\
目录 0 2018-01-02 01:59 wechat_jump_game-master\.github\
文件 0 2018-01-02 01:59 wechat_jump_game-master\.github\CONTRIBUTING.md
文件 0 2018-01-02 01:59 wechat_jump_game-master\.github\ISSUE_TEMPLATE.md
文件 0 2018-01-02 01:59 wechat_jump_game-master\.github\PULL_REQUEST_TEMPLATE.md
文件 1288 2018-01-02 01:59 wechat_jump_game-master\.gitignore
文件 1065 2018-01-02 01:59 wechat_jump_game-master\LICENSE
文件 7362 2018-01-02 01:59 wechat_jump_game-master\README.md
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\
文件 55 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\.gitignore
文件 269734 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\1.png
文件 96256 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\AdbWinApi.dll
文件 60928 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\AdbWinUsbApi.dll
文件 1 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\CONTRIBUTING.md
文件 1065 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\LICENSE
文件 7217 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\README.md
文件 1009664 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\adb.exe
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\1280x720\
文件 219 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\1280x720\config.json
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\1920x1080\
文件 219 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\1920x1080\config.json
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\2160x1080\
文件 128 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\2160x1080\config.json
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\2560x1440\
文件 218 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\2560x1440\config.json
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\960x540\
文件 130 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\960x540\config.json
文件 130 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\default.json
目录 0 2018-01-02 01:59 wechat_jump_game-master\Tools\adb\config\huawei\
............此处省略276个文件信息
相关资源
- Instant Pygame for Python Game Development How
- Biopython Tutorial
- Think Python 2nd
- 一个小小的表白程序(python)
- Python课堂笔记(高淇400集第一季)
- 二级考试python试题12套(包括选择题和
- pywin32_python3.6_64位
- python+ selenium教程
- PycURL(Windows7/Win32)Python2.7安装包 P
- 英文原版-Scientific Computing with Python
- 7.图像风格迁移 基于深度学习 pyt
- 基于Python的学生管理系统
- A Byte of Python(简明Python教程)(第
- Python实例174946
- Python 人脸识别
- Python 人事管理系统
- 基于python-flask的个人博客系统
- 计算机视觉应用开发流程
- python 调用sftp断点续传文件
- python socket游戏
- 基于Python爬虫爬取天气预报信息
- python函数编程和讲解
- Python开发的个人博客
- 基于python的三层神经网络模型搭建
- python实现自动操作windows应用
- python人脸识别(opencv)
- python 绘图(方形、线条、圆形)
- python疫情卡UN管控
- python 连连看小游戏源码
- 基于PyQt5的视频播放器设计
评论
共有 条评论