金铲铲S13双城之战自动拿牌助手

news/2024/11/30 3:41:51/

金铲铲S13双城之战自动拿牌助手

基于pythonpyautogui金铲铲自带备战助手实现

B站视频演示效果

【<a class=金铲铲S13双城之战自动拿牌助手】 https://www.bilibili.com/video/BV1cRBxY2Eux/?share_source=copy_web&vd_source=d254b3760edf8cb281bfc7e82d7ce4e5" />

shuangcheng.py

python">import timeimport pyautogui
import datetimeprint('请关注您的分辨率,此程序需要配合thumbs_x_y.txt文件同时使用')
print('简介:thumbs_x_y.txt文件')
print('此文件为配置文件,内容一共6行')
print('前5行为金铲铲内置助手大拇指在你电脑上的x坐标')
print('第6行为y坐标,y坐标只有1个,因为5个大拇指都是在同一水平线上的')
print('注意:此文件放在和.exe文件同级目录下,没有此文件,程序无法正常运行')
# 获取屏幕分辨率(宽高) Size(width=1920, height=1080)
screen_width, screen_height = pyautogui.size()
welcome = 'Hello 双城之战!您当前屏幕像素宽度:' + str(screen_width) + '屏幕高度:' + str(screen_height)
pyautogui.alert(welcome)time.sleep(1)
# 获取雷电模拟器
win = pyautogui.getWindowsWithTitle('雷电模拟器')if len(win) > 0:print('找到雷电模拟器窗口了')
else:raise BaseException("没有找到雷电模拟器窗口")
# 将游戏窗口最大化,使窗口处于最前面
win[0].maximize()
win[0].activate()# 校验坐标要有值 定义一个校验函数
def is_valid_number(value):# 检查是否为数字类型(int 或 float)且不是 Nonereturn isinstance(value, (int, float)) and value is not None# 检查入参
def check_input_params(x1, x2, x3, x4, x5, y):# 校验所有 x 坐标和 y 坐标if not all(is_valid_number(x) for x in [x1, x2, x3, x4, x5]):raise ValueError("所有 x 坐标都必须是数字且不能为空")if not is_valid_number(y):raise ValueError("y 坐标必须是数字且不能为空")# 5个大拇指坐标,x坐标不同,y坐标一样,都是一条水平线上的thumbs_x_y = ((x1, y),(x2, y),(x3, y),(x4, y),(x5, y))return thumbs_x_ydef start(thumbs_x_y):# 记录打印日志时间,设置打印等待日志间隔now = datetime.datetime.now()init_sec = now.secondwhile True:for index, thumb in enumerate(thumbs_x_y):thumb_color = pyautogui.pixel(thumb[0], thumb[1])# print(thumb_color[0] > 240, thumb_color[1] > 240, thumb_color[2] > 200)# RGB三色red = 240 < thumb_color[0]green = 240 < thumb_color[1]blue = 210 < thumb_color[2]# not_white_color 白色背景会影响程序判断,对白色的处理if thumb_color[0] == 255 and thumb_color[1] == 255 and thumb_color[2] == 255:print('当前屏幕显示背景在5个大拇指的位置有白色,请使用ALT+Tab组合键切出此窗口或关闭程序')time.sleep(2)continueif thumb_color[0] == 245 and thumb_color[1] == 245 and thumb_color[2] == 245:print('当前屏幕显示背景在5个大拇指的位置有杂色,请使用ALT+Tab组合键切出此窗口或关闭程序')time.sleep(2)continueif red and green and blue:print(index, "真的有true,即将点击", thumb[0], thumb[1])# pyautogui.click(thumb[0], thumb[1])# 改为模拟键盘按钮if index == 0:print('按键1')pyautogui.press('1')if index == 1:print('按键2')pyautogui.press('2')if index == 2:print('按键3')pyautogui.press('3')if index == 3:print('按键4')pyautogui.press('4')if index == 4:print('按键5')pyautogui.press('5')# 获取当前时间now = datetime.datetime.now()# 格式化时间为“时:分:秒”formatted_time = now.strftime("%H:%M:%S")if abs(now.second - init_sec) >= 10:# print("当前时间(时:分:秒):", formatted_time)print("等待中", formatted_time)init_sec = now.second# 用来遍历的
list_6 = [1, 2, 3, 4, 5, 6]
# x1 = 720
# x2 = 914
# x3 = 1107
# x4 = 1300
# x5 = 1493
# y坐标
# y = 970
x1 = -1
x2 = -1
x3 = -1
x4 = -1
x5 = -1
y = -1
# 打开文件并逐行读取
with open('thumbs_x_y.txt', 'r') as file:for i, item in enumerate(list_6):line = file.readline()# print(line, end='')  # `end=''`用于避免打印额外的换行符# print('序号:', i, '值:', item)if i == 0:x1 = int(line)if i == 1:x2 = int(line)if i == 2:x3 = int(line)if i == 3:x4 = int(line)if i == 4:x5 = int(line)if i == 5:y = int(line)start(check_input_params(x1, x2, x3, x4, x5, y))

配置文件thumbs_x_y.txt,要求和.exe文件同层级目录
thumbs_x_y.txt

720
914
1107
1300
1493
970

http://www.ppmy.cn/news/1551086.html

相关文章

【C++】数据类型(上)

C规定在创建一个变量或一个常量时&#xff0c;必须要指定出相应的数据类型&#xff0c;否则无法给变量分配内存 数据类型存在意义&#xff1a;给变量分配合适的内存空间。 1.1 整型 整型作用&#xff1a;整型变量表示的整数类型的数据。 C中能够表示整型类型的有以下几种…

android bindService打开失败

在写demo验证SurfaceControlViewHost的时候&#xff0c;bindService提示 Unable to start service Intent U0: not found 在源代码里搜了下&#xff0c;找到是在如下方法里面里面打印出来的 // frameworks/base/services/core/java/com/android/server/am/ActiveServices.java…

使用docker搭建hysteria2服务端

原链接&#xff1a;https://github.com/apernet/hysteria/discussions/1248 官网地址&#xff1a;https://v2.hysteria.network/zh/docs/getting-started/Installation/ 首选需要安装docker和docker compose 切换到合适的目录 cd /home创建文件夹 mkdir hysteria创建docke…

【C语言】指针2

1、数组名的理解 在上一章节我们在使用指针访问数组的内容的时候&#xff0c;我们有下面这样的代码 在上述的代码中我们使用&arr[0]来取得数组首元素的地址&#xff0c;但是我们前面也说过&#xff0c;数组名字 其实也就是数组的地址&#xff0c;而且还是首元素…

用 llama.cpp 体验 Meta 的 Llama AI 模型

继续体验 Meta 开源的 Llama 模型&#xff0c;前篇 试用 Llama-3.1-8B-Instruct AI 模型 直接用 Python 的 Tranformers 和 PyTorch 库加载 Llama 模型进行推理。模型训练出来的精度是 float32, 加载时采用的精度是 torch.bfloat16。 注&#xff1a;数据类型 torch.float32, t…

GAMES101:现代计算机图形学入门-笔记-09

久违的101图形学回归咯 今天的话题应该是比较轻松的&#xff1a;聊一聊在渲染中比较先进的topics Advanced Light Transport 首先是介绍一系列比较先进的光线传播方法&#xff0c;有无偏的如BDPT&#xff08;双向路径追踪&#xff09;&#xff0c;MLT&#xff08;梅特罗波利斯…

本地推流,服务器拉流全流程

本地推流&#xff0c;服务器拉流全流程 环境准备&#xff1a;准备一台服务器&#xff0c;其中openssl最好为1.1.1版本&#xff08;可以直接使用ubuntu20.04操作系统&#xff09; 服务器拉流 1、 安装环境依赖 sudo apt-get update sudo apt-get install unzip sudo apt-get…

C#中面试的常见问题002

1.wpf和Winfrom的区别 1. 技术基础 WPF&#xff1a;基于.NET Framework&#xff0c;使用XAML&#xff08;可扩展应用程序标记语言&#xff09;作为界面描述语言&#xff0c;支持矢量图形和高级布局。WinForms&#xff1a;基于.NET Framework&#xff0c;使用纯代码或拖放设计…