基于Python实现的扫雷游戏实例代码


Posted in Python onAugust 01, 2014

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

具体的功能代码如下:

# -*- coding: utf-8 -*-
import random
import sys
from Tkinter import *

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基于xml parse实现解析cdatasection数据
Sep 30 Python
python获取目录下所有文件的方法
Jun 01 Python
利用python程序生成word和PDF文档的方法
Feb 14 Python
基于Python实现的ID3决策树功能示例
Jan 02 Python
python 日志增量抓取实现方法
Apr 28 Python
使用k8s部署Django项目的方法步骤
Jan 14 Python
Python @property装饰器原理解析
Jan 22 Python
借助Paramiko通过Python实现linux远程登陆及sftp的操作
Mar 16 Python
matlab中二维插值函数interp2的使用详解
Apr 22 Python
python访问hdfs的操作
Jun 06 Python
Python类super()及私有属性原理解析
Jun 15 Python
Python读取pdf表格写入excel的方法
Jan 22 Python
python脚本实现查找webshell的方法
Jul 31 #Python
用python删除java文件头上版权信息的方法
Jul 31 #Python
Python datetime时间格式化去掉前导0
Jul 31 #Python
python处理文本文件并生成指定格式的文件
Jul 31 #Python
Python中关键字is与==的区别简述
Jul 31 #Python
python处理文本文件实现生成指定格式文件的方法
Jul 31 #Python
Python中zip()函数用法实例教程
Jul 31 #Python
You might like
php实现短信发送代码
2015/07/05 PHP
php封装json通信接口详解及实例
2017/03/07 PHP
PHP 获取客户端 IP 地址的方法实例代码
2018/11/11 PHP
关于Yii2框架跑脚本时内存泄漏问题的分析与解决
2019/12/01 PHP
拖动一个HTML元素
2006/12/22 Javascript
JavaScript 的方法重载效果
2009/08/07 Javascript
JQuery异步获取返回值中文乱码的解决方法
2015/01/29 Javascript
用JavaScript显示浏览器客户端信息的超相近教程
2015/06/18 Javascript
node.js 中国天气预报 简单实现
2016/06/06 Javascript
JavaScript实现九九乘法表的简单实例
2016/06/07 Javascript
React利用插件和不用插件实现双向绑定的方法详解
2017/07/03 Javascript
vue-cli项目中使用公用的提示弹层tips或加载loading组件实例详解
2018/05/28 Javascript
layui 监听表格复选框选中值的方法
2018/08/15 Javascript
详解Vue2 添加对scss的支持
2019/01/02 Javascript
VUE使用axios调用后台API接口的方法
2020/08/03 Javascript
python爬虫获取京东手机图片的图文教程
2017/12/29 Python
selenium+python实现自动登录脚本
2018/04/22 Python
python numpy数组的索引和切片的操作方法
2018/10/20 Python
如何更优雅地写python代码
2019/07/02 Python
Python实现Selenium自动化Page模式
2019/07/14 Python
django基础学习之send_mail功能
2019/08/07 Python
Windows系统下pycharm中的pip换源
2020/02/23 Python
pycharm 关闭search everywhere的解决操作
2021/01/15 Python
如何实现一个自定义类的序列化
2012/05/22 面试题
焊接专业毕业生求职信
2013/10/01 职场文书
会计与审计毕业生自荐信范文
2013/12/30 职场文书
教学实习自我评价
2014/01/28 职场文书
英语专业职业生涯规划范文
2014/03/05 职场文书
警示教育活动总结
2014/05/05 职场文书
大学生自我评价范文
2015/03/03 职场文书
公司回复函格式
2015/07/14 职场文书
Python基础之元类详解
2021/04/29 Python
TensorFlow中tf.batch_matmul()的用法
2021/06/02 Python
浅谈MySQL next-key lock 加锁范围
2021/06/07 MySQL
详解Oracle块修改跟踪功能
2021/11/07 Oracle
Django数据库(SQlite)基本入门使用教程
2022/07/07 Python