python实现扫雷游戏


Posted in Python onMarch 03, 2020

本文为大家分享了python实现扫雷游戏的具体代码,供大家参考,具体内容如下

本文实例借鉴mvc模式,核心数据为model,维护1个矩阵,0表无雷,1表雷,-1表已经检测过。
本例使用python的tkinter做gui,由于没考虑可用性问题,因此UI比较难看,pygame更有趣更强大更好看,做这些小游戏更合适,感兴趣的读者可以尝试一下!

具体的功能代码如下:

# -*- coding: utf-8 -*-
import random
import sys
from Tkinter import *
'''
想要学习Python?

'''
class Model:
 """
 核心数据类,维护一个矩阵
 """
 def __init__(self,row,col):
 self.width=col
 self.height=row
 self.items=[[0 for c in range(col)] for r in range(row)]
 
 def setItemValue(self,r,c,value):
 """
 设置某个位置的值为value
 """
 self.items[r][c]=value;
 
 def checkValue(self,r,c,value):
 """
 检测某个位置的值是否为value
 """
 if self.items[r][c]!=-1 and self.items[r][c]==value:
 self.items[r][c]=-1 #已经检测过
 return True
 else:
 return False
 
 def countValue(self,r,c,value):
 """
 统计某个位置周围8个位置中,值为value的个数
 """
 count=0
 if r-1>=0 and c-1>=0:
 if self.items[r-1][c-1]==1:count+=1
 if r-1>=0 and c>=0:
 if self.items[r-1][c]==1:count+=1
 if r-1>=0 and c+1<=self.width-1:
 if self.items[r-1][c+1]==1:count+=1
 if c-1>=0:
 if self.items[r][c-1]==1:count+=1
 if c+1<=self.width-1 :
 if self.items[r][c+1]==1:count+=1
 if r+1<=self.height-1 and c-1>=0:
 if self.items[r+1][c-1]==1:count+=1
 if r+1<=self.height-1 :
 if self.items[r+1][c]==1:count+=1
 if r+1<=self.height-1 and c+1<=self.width-1:
 if self.items[r+1][c+1]==1:count+=1
 return count
 
 
class Mines(Frame):
 def __init__(self,m,master=None):
 Frame.__init__(self,master)
 self.model=m
 self.initmine()
 self.grid()
 self.createWidgets()
 
 
 
 def createWidgets(self):
 #top=self.winfo_toplevel()
 #top.rowconfigure(self.model.height*2,weight=1)
 #top.columnconfigure(self.model.width*2,weight=1)
 self.rowconfigure(self.model.height,weight=1)
 self.columnconfigure(self.model.width,weight=1)
 self.buttongroups=[[Button(self,height=1,width=2) for i in range(self.model.width)]
 for j in range(self.model.height)]
 for r in range(self.model.width):
 for c in range(self.model.height):
 self.buttongroups[r][c].grid(row=r,column=c)
 self.buttongroups[r][c].bind('<Button-1>',self.clickevent)
 self.buttongroups[r][c]['padx']=r
 self.buttongroups[r][c]['pady']=c
 
 def showall(self):
 for r in range(model.height):
 for c in range(model.width):
 self.showone(r,c)
 
 def showone(self,r,c):
 if model.checkValue(r,c,0):
 self.buttongroups[r][c]['text']=model.countValue(r,c,1)
 else:
 self.buttongroups[r][c]['text']='Mines'
 
 def recureshow(self,r,c):
 if 0<=r<=self.model.height-1 and 0<=c<=self.model.width-1:
 if model.checkValue(r,c,0) and model.countValue(r,c,1)==0:
 self.buttongroups[r][c]['text']=''
 self.recureshow(r-1,c-1)
 self.recureshow(r-1,c)
 self.recureshow(r-1,c+1)
 self.recureshow(r,c-1)
 self.recureshow(r,c+1)
 self.recureshow(r+1,c-1)
 self.recureshow(r+1,c)
 self.recureshow(r+1,c+1)
 elif model.countValue(r,c,1)!=0:
 self.buttongroups[r][c]['text']=model.countValue(r,c,1)
 else:
 pass
 
 
 def clickevent(self,event):
 """
 点击事件
 case 1:是雷,所有都显示出来,游戏结束
 case 2:是周围雷数为0的,递归触发周围8个button的点击事件
 case 3:周围雷数不为0的,显示周围雷数
 """
 r=int(str(event.widget['padx']))
 c=int(str(event.widget['pady']))
 if model.checkValue(r,c,1):#是雷
 self.showall()
 else:#不是雷
 self.recureshow(r,c)
 
 
 def initmine(self):
 """
 埋雷,每行埋height/width+2个暂定
 """
 r=random.randint(1,model.height/model.width+2)
 for r in range(model.height):
 for i in range(2):
 rancol=random.randint(0,model.width-1)
 model.setItemValue(r,rancol,1)
 
 
 def printf(self):
 """
 打印
 """
 for r in range(model.height):
 for c in range(model.width):
 print model.items[r][c],
 print '/n'
 
 
def new(self):
 """
 重新开始游戏
 """
 pass
 
if __name__=='__main__':
 model=Model(10,10)
 root=Tk()
 
 #menu
 menu = Menu(root)
 root.config(menu=menu)
 filemenu = Menu(menu)
 menu.add_cascade(label="File", menu=filemenu)
 filemenu.add_command(label="New",command=new)
 filemenu.add_separator()
 filemenu.add_command(label="Exit", command=root.quit)
 
 #Mines
 m=Mines(model,root)
 #m.printf()
 root.mainloop()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python概率计算器实例分析
Mar 25 Python
python调用java模块SmartXLS和jpype修改excel文件的方法
Apr 28 Python
Python中的深拷贝和浅拷贝详解
Jun 03 Python
python 实现网上商城,转账,存取款等功能的信用卡系统
Jul 15 Python
解决Python中字符串和数字拼接报错的方法
Oct 23 Python
Python编程判断这天是这一年第几天的方法示例
Apr 18 Python
Python实现模拟分割大文件及多线程处理的方法
Oct 10 Python
python实现随机森林random forest的原理及方法
Dec 21 Python
python retrying模块的使用方法详解
Sep 25 Python
Python(PyS60)实现简单语音整点报时
Nov 18 Python
python 使用cx-freeze打包程序的实现
Mar 14 Python
浅谈Python中的模块
Jun 10 Python
python实现从ftp服务器下载文件
Mar 03 #Python
python实现简单的购物程序代码实例
Mar 03 #Python
python实现跨excel sheet复制代码实例
Mar 03 #Python
python剪切视频与合并视频的实现
Mar 03 #Python
详解Pycharm出现out of memory的终极解决方法
Mar 03 #Python
基于python 等频分箱qcut问题的解决
Mar 03 #Python
python实现快递价格查询系统
Mar 03 #Python
You might like
php+dbfile开发小型留言本
2006/10/09 PHP
PHP中的日期处理方法集锦
2007/01/02 PHP
如何用php获取文件名后缀
2013/06/09 PHP
关于js内存泄露的一个好例子
2013/12/09 Javascript
微信小程序进行微信支付的步骤昂述
2016/12/01 Javascript
Angular.JS实现无限级的联动菜单(使用demo)
2017/02/08 Javascript
详解jquery选择器的原理
2017/08/01 jQuery
AngularJS实现表单验证功能详解
2017/10/12 Javascript
说说Vue.js中的functional函数化组件的使用
2019/02/12 Javascript
create-react-app使用antd按需加载的样式无效问题的解决
2019/02/26 Javascript
JS中的防抖与节流及作用详解
2019/04/01 Javascript
vue开发拖拽进度条滑动组件
2019/09/21 Javascript
vue实现路由不变的情况下,刷新页面操作示例
2020/02/02 Javascript
video.js添加自定义组件的方法
2020/12/09 Javascript
[53:18]Spirit vs Liquid Supermajor小组赛A组 BO3 第三场 6.2
2018/06/03 DOTA
[45:06]完美世界DOTA2联赛PWL S2 Magma vs InkIce 第二场 11.28
2020/12/02 DOTA
Python之PyUnit单元测试实例
2014/10/11 Python
python实现SMTP邮件发送功能
2020/06/16 Python
Python中字典的浅拷贝与深拷贝用法实例分析
2018/01/02 Python
python使用selenium登录QQ邮箱(附带滑动解锁)
2019/01/23 Python
Python实现串口通信(pyserial)过程解析
2019/09/25 Python
wxPython实现绘图小例子
2019/11/19 Python
jupyter 添加不同内核的操作
2021/02/06 Python
HTML5之SVG 2D入门12—SVG DOM及DOM操作介绍
2013/01/30 HTML / CSS
塑料制成的可水洗的编织平底鞋和鞋子:Rothy’s
2018/09/16 全球购物
Optimalprint加拿大:在线打印服务
2020/04/03 全球购物
大学本科生的个人自我评价
2013/12/09 职场文书
优秀员工表扬信
2014/01/17 职场文书
创业计划书的主要内容有哪些
2014/01/29 职场文书
测试工程师职业规划书
2014/02/06 职场文书
网吧消防安全责任书
2014/07/29 职场文书
学习十八大演讲稿
2014/09/15 职场文书
部门2015年度工作总结
2015/04/29 职场文书
python利用pandas分析学生期末成绩实例代码
2021/07/09 Python
浅谈Java父子类加载顺序
2021/08/04 Java/Android
python小型的音频操作库mp3Play
2022/04/24 Python