@本文来源于公众号:csdn2299,喜欢可以关注公众号 程序员学府

文章目录

自动扫雷一般分为两种,一种是读取内存数据,而另一种是通过分析图片获得数据,并通过模拟鼠标操作,这里我用的是第二种方式。

一、准备工作

我的版本是 python 3.6.1

python的第三方库:

win32api

win32gui

win32con

Pillow

numpy

opencv

可通过 pip install --upgrade SomePackage 来进行安装

注意:有的版本是下载pywin32,但是有的要把pywin32升级到最高并自动下载了pypiwin32,具体情况每个python版本可能都略有不同

我给出我的第三方库和版本仅供参考

二、关键代码组成

1.找到游戏窗口与坐标

#扫雷游戏窗口

class_name = "TMain"

title_name = "Minesweeper Arbiter "

hwnd = win32gui.FindWindow(class_name, title_name)

#窗口坐标

left = 0

top = 0

right = 0

bottom = 0

if hwnd:

print("找到窗口")

left, top, right, bottom = win32gui.GetWindowRect(hwnd)

#win32gui.SetForegroundWindow(hwnd)

print("窗口坐标:")

print(str(left)+' '+str(right)+' '+str(top)+' '+str(bottom))

else:

print("未找到窗口")

2.锁定并抓取雷区图像

#锁定雷区坐标

#去除周围功能按钮以及多余的界面

#具体的像素值是通过QQ的截图来判断的

left += 15

top += 101

right -= 15

bottom -= 42

#抓取雷区图像

rect = (left, top, right, bottom)

img = ImageGrab.grab().crop(rect)

3.各图像的RGBA值

#数字1-8 周围雷数

#0 未被打开

#ed 被打开 空白

#hongqi 红旗

#boom 普通雷

#boom_red 踩中的雷

rgba_ed = [(225, (192, 192, 192)), (31, (128, 128, 128))]

rgba_hongqi = [(54, (255, 255, 255)), (17, (255, 0, 0)), (109, (192, 192, 192)), (54, (128, 128, 128)), (22, (0, 0, 0))]

rgba_0 = [(54, (255, 255, 255)), (148, (192, 192, 192)), (54, (128, 128, 128))]

rgba_1 = [(185, (192, 192, 192)), (31, (128, 128, 128)), (40, (0, 0, 255))]

rgba_2 = [(160, (192, 192, 192)), (31, (128, 128, 128)), (65, (0, 128, 0))]

rgba_3 = [(62, (255, 0, 0)), (163, (192, 192, 192)), (31, (128, 128, 128))]

rgba_4 = [(169, (192, 192, 192)), (31, (128, 128, 128)), (56, (0, 0, 128))]

rgba_5 = [(70, (128, 0, 0)), (155, (192, 192, 192)), (31, (128, 128, 128))]

rgba_6 = [(153, (192, 192, 192)), (31, (128, 128, 128)), (72, (0, 128, 128))]

rgba_8 = [(149, (192, 192, 192)), (107, (128, 128, 128))]

rgba_boom = [(4, (255, 255, 255)), (144, (192, 192, 192)), (31, (128, 128, 128)), (77, (0, 0, 0))]

rgba_boom_red = [(4, (255, 255, 255)), (144, (255, 0, 0)), (31, (128, 128, 128)), (77, (0, 0, 0))]

4.扫描雷区图像保存至一个二维数组map

#扫描雷区图像

def showmap():

img = ImageGrab.grab().crop(rect)

for y in range(blocks_y):

for x in range(blocks_x):

this_image = img.crop((x * block_width, y * block_height, (x + 1) * block_width, (y + 1) * block_height))

if this_image.getcolors() == rgba_0:

map[y][x] = 0

elif this_image.getcolors() == rgba_1:

map[y][x] = 1

elif this_image.getcolors() == rgba_2:

map[y][x] = 2

elif this_image.getcolors() == rgba_3:

map[y][x] = 3

elif this_image.getcolors() == rgba_4:

map[y][x] = 4

elif this_image.getcolors() == rgba_5:

map[y][x] = 5

elif this_image.getcolors() == rgba_6:

map[y][x] = 6

elif this_image.getcolors() == rgba_8:

map[y][x] = 8

elif this_image.getcolors() == rgba_ed:

map[y][x] = -1

elif this_image.getcolors() == rgba_hongqi:

map[y][x] = -4

elif this_image.getcolors() == rgba_boom or this_image.getcolors() == rgba_boom_red:

global gameover

gameover = 1

break

#sys.exit(0)

else:

print("无法识别图像")

print("坐标")

print((y,x))

print("颜色")

print(this_image.getcolors())

sys.exit(0)

#print(map)

5.扫雷算法

这里我采用的最基础的算法

1.首先点出一个点

2.扫描所有数字,如果周围空白+插旗==数字,则空白均有雷,右键点击空白插旗

3.扫描所有数字,如果周围插旗==数字,则空白均没有雷,左键点击空白

4.循环2、3,如果没有符合条件的,则随机点击一个白块

#插旗

def banner():

showmap()

for y in range(blocks_y):

for x in range(blocks_x):

if 1 <= map[y][x] and map[y][x] <= 5:

boom_number = map[y][x]

block_white = 0

block_qi = 0

for yy in range(y-1,y+2):

for xx in range(x-1,x+2):

if 0 <= yy and 0 <= xx and yy < blocks_y and xx < blocks_x:

if not (yy == y and xx == x):if map[yy][xx] == 0:

block_white += 1

elif map[yy][xx] == -4:

block_qi += 1if boom_number == block_white + block_qi:for yy in range(y - 1, y + 2):

for xx in range(x - 1, x + 2):

if 0 <= yy and 0 <= xx and yy < blocks_y and xx < blocks_x:

if not (yy == y and xx == x):

if map[yy][xx] == 0:

win32api.SetCursorPos([left+xx*block_width, top+yy*block_height])

win32api.mouse_event(win32con.MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, 0)

win32api.mouse_event(win32con.MOUSEEVENTF_RIGHTUP, 0, 0, 0, 0)

showmap()

#点击白块

def dig():

showmap()

iscluck = 0

for y in range(blocks_y):

for x in range(blocks_x):

if 1 <= map[y][x] and map[y][x] <= 5:

boom_number = map[y][x]

block_white = 0

block_qi = 0

for yy in range(y - 1, y + 2):

for xx in range(x - 1, x + 2):

if 0 <= yy and 0 <= xx and yy < blocks_y and xx < blocks_x:

if not (yy == y and xx == x):

if map[yy][xx] == 0:

block_white += 1

elif map[yy][xx] == -4:

block_qi += 1if boom_number == block_qi and block_white > 0:for yy in range(y - 1, y + 2):

for xx in range(x - 1, x + 2):

if 0 <= yy and 0 <= xx and yy < blocks_y and xx < blocks_x:

if not(yy == y and xx == x):

if map[yy][xx] == 0:

win32api.SetCursorPos([left + xx * block_width, top + yy * block_height])

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)

iscluck = 1

if iscluck == 0:

luck()

#随机点击

def luck():

fl = 1

while(fl):

random_x = random.randint(0, blocks_x - 1)

random_y = random.randint(0, blocks_y - 1)

if(map[random_y][random_x] == 0):

win32api.SetCursorPos([left + random_x * block_width, top + random_y * block_height])

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)

fl = 0

def gogo():

win32api.SetCursorPos([left, top])

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)

showmap()

global gameover

while(1):

if(gameover == 0):

banner()

banner()

dig()

else:

gameover = 0

win32api.keybd_event(113, 0, 0, 0)

win32api.SetCursorPos([left, top])

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0)

win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0, 0, 0)

showmap()

这个算法在初级和中级通过率都不错,但是在高级成功率惨不忍睹,主要是没有考虑逻辑组合以及白块是雷的概率问题,可以对这两个点进行改进,提高成功率。

非常感谢你的阅读

大学的时候选择了自学python,工作了发现吃了计算机基础不好的亏,学历不行这是没办法的事,只能后天弥补,于是在编码之外开启了自己的逆袭之路,不断的学习python核心知识,深入的研习计算机基础知识,整理好了,我放在我们的微信公众号《程序员学府》,如果你也不甘平庸,那就与我一起在编码之外,不断成长吧!

其实这里不仅有技术,更有那些技术之外的东西,比如,如何做一个精致的程序员,而不是“屌丝”,程序员本身就是高贵的一种存在啊,难道不是吗?[点击加入]

想做你自己想成为高尚人,加油!

标签:Python,image,192,自动,rgba,getcolors,128,扫雷,255

来源: https://blog.csdn.net/chengxun03/article/details/105871229

python写扫雷脚本_如何让Python实现自动扫雷相关推荐

  1. python写网页脚本_东拼西凑用python脚本登录web管理页面做巡检(实现)

    东拼西凑用python脚本登录web管理页面做巡检(实现) 发布时间:2020-06-06 12:26:40 来源:51CTO 阅读:489 参考博文https://www.cnblogs.com/s ...

  2. 用python写shell脚本_应用python编写shell脚本

    今天同事叫我编写一个shell脚本.话说,虽然我受*nix的影响甚深,但是对于*nix里随处可见的sh脚本却是讨厌之极.为什么讨厌呢?首先是因为sh脚本那莫名其妙的语法,感觉就像随写随扔的程序,完全没 ...

  3. python能写什么脚本_你用 Python 写过哪些牛逼的程序/脚本?

    原标题:你用 Python 写过哪些牛逼的程序/脚本? [导读]:有网友在 Quora 上提问,「你用 Python 写过最牛逼的程序/脚本是什么?」.本文摘编了 3 个国外程序员的多个小项目,含代码 ...

  4. python写魔兽世界脚本_用python bat写软件安装脚本 + HM NIS Edit自动生成软件安装脚本...

    2019-03-11更新:原来NSIS脚本也可以禁用64位文件操作重定向的! 1.在安装脚本的开始处定义 LIBRARY_X64. !include "MUI.nsh" !incl ...

  5. python写mysql脚本_使用python写一个监控mysql的脚本,在zabbix web上加上模板

    使用python写一个监控mysql的脚本,在zabbix web上加上模板: ##先使用MySQLdb的接口关联数据库. [root@cml python]# cat check_Mysql_cus ...

  6. python 按键精灵脚本_[620]使用Python实现一个按键精灵

    按键精灵想必很多人都玩过,使用录制功能将鼠标和键盘的操作录制下来,录制好后就可以通过回放自动执行之前录制的操作,可以设置重复执行的次数,这样就可以将一些重复的劳动交给脚本自动化去完成.使用Python ...

  7. python找人脚本_黑科技 Python脚本帮你找出微信上删除你好友的人

    怎么利用 Python 查看被删的微信好友几种方法可以找回被删除的好友,方法也许不全,但是希望可以帮到大家. 不用群发用Python脚本查微信被哪些好友删除 Python大法已经被网友们玩儿的出神入化 ...

  8. python如何运行脚本_怎么执行python脚本文件

    1.脚本式编程 将如下代码拷贝至 hello.py文件中:print ("Hello, Python!");python学习网,大量的免费python视频教程,欢迎在线学习! 通过 ...

  9. 如何用python写串口通信软件_如何用python写个串口通信的程序?

    展开全部 打开串口后启动一个线程来监听串口数据的进入,有数据时,就做数据的处理. 用python写串口通信e68a84e8a2ad32313133353236313431303231363533313 ...

最新文章

  1. javascript开关_JavaScript开关案例简介
  2. 3.1 数据链路层功能概述
  3. Android 实现文件上传功能(upload)
  4. 世界机场数据(带位置坐标)
  5. Python通过代理多线程抓取图片
  6. 汇编中的通用寄存器、标志寄存器、段寄存器
  7. CryptoAPI与openssl RSA非对称加密解密(PKCS1 PADDING)交互
  8. 深入了解EntityFramework——数据注解属性
  9. 使用FastReport报表工具生成图片格式文档
  10. Java 技术体系(JDK 与 JRE 的关系)、POJO 与 JavaBeans
  11. vue实现单页面多标签页
  12. 为什么普通红包自己不能领_腾讯为推广新游王牌战士而豪撒千金?快去看看你能不能领红包...
  13. 开源 php 生活黄页,15个PHP库,你值得拥有!(上)
  14. OpenCV从源码安装到Ubuntu16.04
  15. /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o: In function `_start‘: (.text+0x20
  16. AR/VR研究框架——迎接AR元年
  17. 双赛道近四百万奖金,2021全国人工智能大赛来了
  18. 深度优先搜索——走迷宫问题
  19. CSDN:借助工具对【本博客访问来源】进行数据图表可视化(网友主要来自欧美和印度等)——记录数据来源截止日期20190811
  20. @Autowired的基本使用

热门文章

  1. ios沙盒测试无法连接到Appstore
  2. MsgPack/Json性能数据
  3. 京东天猫数据查询与分析:2023年厨电细分市场数据分析
  4. 日常训练 20170612 星之船
  5. 产业大咖齐聚!“2023数智产业领袖峰会”圆满落幕!
  6. mysql数据类型--[整数类型]--mediumint类型
  7. centos 安装 pg数据库
  8. 【转】Linux那些事儿 之 戏说USB(19)设备
  9. 良品铺子年报:将冲击百亿营收门槛 斥资1.8亿现金分红
  10. 支持向量机(SVM)原理及公式推导