python跳⼀跳源代码_100⾏python代码实现跳⼀跳辅助程序写在前⾯
分享⼀下今天下午⽤python写的“跳⼀跳”⼩游戏的辅助程序。之前是准备⽤树莓派操控⼀个“机械⼿指”来代替⼈的触摸操作,但该⽅案还在酝酿中,实现了再分享。接下来要分享的是⽤“纯软件”的⽅法来玩“跳⼀跳”。
原理
原理其实很简单,按如下步骤操作即可:
每次跳跃之前,截取⼀下⼿机屏幕,并将截图保存到本地电脑中;
计算截图中⼈偶的位置与将要跳⾄的台⾯中⼼的距离dd;
将以上距离dd换算成相应的触摸时间ss;
发送模拟触摸的命令⾄⼿机,触摸时间为以上时间ss;
实现
本⼈只做过Android开发,因此下⾯只给出Android平台下的实现⽅法。
步骤1
可以⽤Android官⽅提供的adb⼯具来完成。⾸先需要搜索并下载对应操作系统下adb⼯具。其次需要将⼿机连接电脑, 并将⼿机的 设置 >开发⼈员选项 > USB调试打开。现在在命令⾏调⽤⼀下adb⼯具,看是否检查到⼿机:
adb devices
PS:若将adb路径添加到了PATH环境变量中,则可直接在命令⾏调⽤adb;否则以上命令需要输⼊adb的全路径。
若执⾏以上命令后,输出了设备相关信息,则说明⼿机连接成功,可继续以下操作。
⽤如下命令可截取⼿机屏幕图⽚⾄SD卡保存:
adb shell screencap -p /mnt/sdcard/screencap.png
然后可⽤如下命令pull图⽚到电脑:
adb pull /mnt/sdcard/screencap.png C:/screencap.png
步骤2
是整个问题的关键。要计算出⼈偶与将要跳⾄的台⾯中⼼的距离,需要分别识别出⼈偶的位置(坐标)和台⾯中⼼的位置(坐标)。
polyfitex在cvi中的意思
我们以⼈偶最底部的⼀⾏的中⼼作为⼈偶的位置,如下图所⽰:
⾄于怎么识别出⼈偶的最底部,可以这样来操作。通过观察可发现,⼈偶底部的颜⾊的rgb值在(53, 57, 95)到(59, 61, 103)之间,因此我们逐⾏扫描各个像素点,到rbg值在该区间的各⾏,最后⼀⾏即为⼈偶的底部了。得到了最底部的⼀⾏,⾃然就能算出该⾏的中⼼坐标。
接下来需要识别⼈偶将要跳⾄的平台的中⼼。要想得到该中⼼的坐标,我们只需要识别得到下图中的两个顶点vertex1和vertex2的坐标即可:
我们同样⽤从左往右,从上往下的顺序扫描各个像素点的⽅法来出vertex1的坐标。扫描之前先获取整个背景的颜⾊的rgb值,取任
意“空⽩”处即可(例如本⼈⼿机截图⼤⼩为1920x1080,可断定坐标为(40, 500)的点⼀定处于“空⽩”处。)。在扫描过程中⼀旦发现某处的颜⾊与背景⾊不⼀致,发⽣了“突变”,可断定该点即为vertex1。
我们把vertex1点的rgb值记录下来作为台⾯的背景⾊。在接下去的扫描过程中,我们开始关⼼当前扫描的点的rgb值是否和该记录值“相似”。“相似”则说明该点“属于”台⾯,⽽通过上图可发现,顶点vertex2是所有“属于”台⾯的点中,横坐标最⼩的点,这样vertex2的坐标也到了。
显然,台⾯中⼼的横坐标等于vertex1的横坐标,⽽纵坐标等于vertex2的纵坐标。
步骤3
通过多次尝试,发现⽤如下公式转换距离dd(单位:px)为时间ss(单位:毫秒)⽐较合适:
s=d∗1.35
s=d∗1.35
步骤4
得到了触摸时间,我们还是借助adb⼯具来模拟触摸屏幕的⾏为,以下是相关命令:
adb shell input swipe 0 0 0 0 1000
以上命令的最后⼀个参数即为需要模拟按压屏幕的时长,单位是毫秒。
实现效果
成功连接⼿机⾄电脑(⼿机需开启USB调试),并进⼊“跳⼀跳”游戏,然后到电脑上运⾏该代码即可⾃动“跳⼀跳”。
上⼀张截图:
完整代码
以下是完整代码,在本⼈⼿机(1920 * 1080 )下测试发现⼤多数情况都能正中靶⼼,少数情况不能命中靶⼼,极少数情况会跳出台⾯以外。其他分辨率的⼿机可能需要适当修改BACKGROUND_POS和DISTANCE_TO_TIME_RATIO参数⼤⼩。
import math
import os
import tempfile
import time
from functools import reduce
个人主页简单模板图片from PIL import Image
BACKGROUND_POS = (40, 500)
DISTANCE_TO_TIME_RATIO = 1.35
SCREENSHOT_PATH = pdir() + "/screenshot.png"
def calculate_jump_distance():
im = Image.open(SCREENSHOT_PATH)
background_rgb = im.getpixel(BACKGROUND_POS)
role_pos_list = None
vertex1_pos = None
block_background_rgb = None
vertex2_pos = None
role_line_flag = True
java14新特性for y in range(BACKGROUND_POS[1], im.height):
if role_pos_list and role_line_flag:
python基础代码100例break
role_line_flag = True
vertex2_line_flag = True
for x in range(BACKGROUND_POS[0], im.width):
current_rgb = im.getpixel((x, y))
next_rgb = im.getpixel((x + 1, y)) if x + 1 < im.width else (0, 0, 0)
# 识别顶点1
if x > BACKGROUND_POS[0] and y > BACKGROUND_POS[1] and not vertex1_pos \
and not is_similar(background_rgb, current_rgb) and is_similar(current_rgb, next_rgb):
vertex1_pos = (x, y)
block_background_rgb = current_rgb
# 识别顶点2
if block_background_rgb and vertex2_line_flag and is_similar(current_rgb, block_background_rgb, 5): vertex2_line_flag = False
if vertex2_pos:
if x < vertex2_pos[0] and vertex2_pos[0] - x < 20 and y - vertex2_pos[1] < 20:
vertex2_pos = (x, y)
else:
vertex2_pos = (x, y)商城系统设计
# 识别⼩⼈
if is_part_of_role(current_rgb):
if role_line_flag:
role_pos_list = []
role_line_flag = False
role_pos_list.append((x, y))
if len(role_pos_list) == 0:
raise Exception('⽆法识别⼩⼈位置')
pos_sum = reduce((lambda o1, o2: (o1[0] + o2[0], o1[1] + o2[1])), role_pos_list)
role_pos = (int(pos_sum[0] / len(role_pos_list)), int(pos_sum[1] / len(role_pos_list)))
destination_pos = (vertex1_pos[0], vertex2_pos[1])
return int(linear_distance(role_pos, destination_pos))
def is_part_of_role(rgb):
return 53 < rgb[0] < 59 and 57 < rgb[1] < 61 and 95 < rgb[2] < 103
def linear_distance(xy1, xy2):
return math.sqrt(pow(xy1[0] - xy2[0], 2) + pow(xy1[1] - xy2[1], 2))
def is_similar(rgb1, rgb2, degree=10):
return abs(rgb1[0] - rgb2[0]) <= degree and abs(rgb1[1] - rgb2[1]) <= degree and abs(rgb1[2] - rgb2[2]) <= degree def screenshot():
os.system("adb shell screencap -p /mnt/sdcard/screencap.png")
os.system("adb pull /mnt/sdcard/screencap.png {} >> {}/jump.out".format(SCREENSHOT_PATH, pdir())) def jump(touch_time):
os.system("adb shell input swipe 0 0 0 0 {}".format(touch_time))
def distance2time(distance):
return int(distance * DISTANCE_TO_TIME_RATIO)
if __name__ == '__main__':
critical in
count = 1
while True:
screenshot()
distance = calculate_jump_distance()
touch_time = distance2time(distance)
jump(touch_time)
print("#{}: distance={}, time={}".format(count, distance, touch_time))
count += 1
time.sleep(1)
总结
以上所述是⼩编给⼤家介绍的100⾏python代码实现跳⼀跳辅助程序,希望对⼤家有所帮助
如您对本⽂有疑问或者有任何想说的,请点击进⾏留⾔回复,万千⽹友为您解惑!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。