百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 技术资源 > 正文

python开发扫雷游戏作弊器 python扫雷游戏代码可复制不用pygame

off999 2024-12-28 14:43 28 浏览 0 评论


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

一、准备工作

1.扫雷游戏

我是win10,没有默认的扫雷,所以去扫雷网下载

2.python 3

我的版本是 python 3.6.1

3.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()

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

相关推荐

大文件传不动?WinRAR/7-Zip 入门到高手,这 5 个技巧让你效率翻倍

“这200张照片怎么传给女儿?微信发不了,邮箱附件又超限……”62岁的张阿姨对着电脑犯愁时,儿子只用了3分钟就把照片压缩成一个文件,还教她:“以后用压缩软件,比打包行李还方便!”职场人更懂这...

电脑解压缩软件推荐——7-Zip:免费、高效、简洁的文件管理神器

在日常工作中,我们经常需要处理压缩文件。无论是下载软件包、接收文件,还是存储大量数据,压缩和解压缩文件都成为了我们日常操作的一部分。而说到压缩解压软件,7-Zip绝对是一个不可忽视的名字。今天,我就来...

设置了加密密码zip文件要如何打开?这几个方法可以试试~

Zip是一种常见的压缩格式文件,文件还可以设置密码保护。那设置了密码的Zip文件要如何打开呢?不清楚的小伙伴一起来看看吧。当我们知道密码想要打开带密码的Zip文件,我们需要用到适用于Zip格式的解压缩...

大文件想要传输成功,怎么把ZIP文件分卷压缩

不知道各位小伙伴有没有这样的烦恼,发送很大很大的压缩包会受到限制,为此,想要在压缩过程中将文件拆分为几个压缩包并且同时为所有压缩包设置加密应该如何设置?方法一:使用7-Zip免费且强大的文件管理工具7...

高效处理 RAR 分卷压缩包:合并解压操作全攻略

在文件传输和存储过程中,当遇到大文件时,我们常常会使用分卷压缩的方式将其拆分成多个较小的压缩包,方便存储和传输。RAR作为一种常见的压缩格式,分卷压缩包的使用频率也很高。但很多人在拿到RAR分卷...

2个方法教你如何删除ZIP压缩包密码

zip压缩包设置了加密密码,每次解压文件都需要输入密码才能够顺利解压出文件,当压缩包文件不再需要加密的时候,大家肯定想删除压缩包密码,或是忘记了压缩包密码,想要通过删除操作将压缩包密码删除,就能够顺利...

速转!漏洞预警丨压缩软件Winrar目录穿越漏洞

WinRAR是一款功能强大的压缩包管理器,它是档案工具RAR在Windows环境下的图形界面。该软件可用于备份数据,缩减电子邮件附件的大小,解压缩从Internet上下载的RAR、ZIP及其它类...

文件解压方法和工具分享_文件解压工具下载

压缩文件减少文件大小,降低文件失效的概率,总得来说好处很多。所以很多文件我们下载下来都是压缩软件,很多小伙伴不知道怎么解压,或者不知道什么工具更好,所以今天做了文件解压方法和工具的分享给大家。一、解压...

[python]《Python编程快速上手:让繁琐工作自动化》学习笔记3

1.组织文件笔记(第9章)(代码下载)1.1文件与文件路径通过importshutil调用shutil模块操作目录,shutil模块能够在Python程序中实现文件复制、移动、改名和删除;同时...

Python内置tarfile模块:读写 tar 归档文件详解

一、学习目标1.1学习目标掌握Python内置模块tarfile的核心功能,包括:理解tar归档文件的原理与常见压缩格式(gzip/bz2/lzma)掌握tar文件的读写操作(创建、解压、查看、过滤...

使用python展开tar包_python拓展

类Unix的系统,打包文件经常使用的就是tar包,结合zip工具,可以方便的打包并解压。在python的标准库里面有tarfile库,可以方便实现生成了展开tar包。使用这个库最大的好处,可能就在于不...

银狐钓鱼再升级:白文件脚本化实现GO语言后门持久驻留

近期,火绒威胁情报中心监测到一批相对更为活跃的“银狐”系列变种木马。火绒安全工程师第一时间获取样本并进行分析。分析发现,该样本通过阿里云存储桶下发恶意文件,采用AppDomainManager进行白利...

ZIP文件怎么打开?2个简单方法教你轻松搞定!

在日常工作和生活中,我们经常会遇到各种压缩文件,其中最常见的格式之一就是ZIP。ZIP文件通过压缩数据来减少文件大小,方便我们进行存储和传输。然而,对于初学者来说,如何打开ZIP文件可能会成为一个小小...

Ubuntu—解压多个zip压缩文件.zip .z01 .z02

方法将所有zip文件放在同一目录中:zip_file.z01,zip_file.z02,zip_file.z03,...,zip_file.zip。在Zip3.0版本及以上,使用下列命令:将所有zi...

如何使用7-Zip对文件进行加密压缩

7-Zip是一款开源的文件归档工具,支持多种压缩格式,并提供了对压缩文件进行加密的功能。使用7-Zip可以轻松创建和解压.7z、.zip等格式的压缩文件,并且可以通过设置密码来保护压缩包中的...

取消回复欢迎 发表评论: