Python写的贪吃蛇游戏例子


Posted in Python onJune 16, 2014

第一次用Python写这种比较实用且好玩的东西,权当练手吧

游戏说明:

* P键控制“暂停/开始”
* 方向键控制贪吃蛇的方向

源代码如下:

from Tkinter import *
import tkMessageBox,sys
from random import randint
class Grid(object):
    def __init__(self,master=None,window_width=800,window_height=600,grid_width=50,offset=10):
        self.height = window_height
        self.width = window_width
        self.grid_width = grid_width
        self.offset = offset
        self.grid_x = self.width/self.grid_width
        self.grid_y = self.height/self.grid_width
        self.bg = "#EBEBEB"
        self.canvas = Canvas(master, width=self.width+2*self.offset, height=self.height+2*self.offset, bg=self.bg)
        self.canvas.pack()
        self.grid_list()
    def draw(self, pos, color,):
        x = pos[0]*self.grid_width + self.offset
        y = pos[1]*self.grid_width + self.offset
        self.canvas.create_rectangle(x, y, x+self.grid_width, y+self.grid_width,fill=color,outline=self.bg)
    def grid_list(self):
        grid_list = []
        for y in range(0,self.grid_y):
            for x in range(0,self.grid_x):
                grid_list.append((x,y))
        self.grid_list = grid_list
class Food(object):
    def __init__(self, Grid):
        self.grid = Grid
        self.color = "#23D978"        
        self.set_pos()
    def set_pos(self):
        x = randint(0,self.grid.grid_x - 1)
        y = randint(0,self.grid.grid_y - 1)
        self.pos =  (x, y)    
    def display(self):
        self.grid.draw(self.pos,self.color)
class Snake(object):
    def __init__(self, Grid):
        self.grid = Grid
        self.body = [(10,6),(10,7),(10,8)]
        self.direction = "Up"
        self.status = ['run','stop']
        self.speed = 300
        self.color = "#5FA8D9"        
        self.food = Food(self.grid)
        self.display_food()
        self.gameover = False
        self.score = 0
    def available_grid(self):
        return [i for i in self.grid.grid_list if i not in self.body[2:]]
    def change_direction(self, direction):
        self.direction = direction
    def display(self):
        for (x,y) in self.body:
            self.grid.draw((x,y),self.color)
    def display_food(self):
        while(self.food.pos in self.body):
            self.food.set_pos()
        self.food.display()
    def move(self):
        head = self.body[0]
        if self.direction == 'Up':
            new = (head[0], head[1]-1)
        elif self.direction == 'Down':
            new = (head[0], head[1]+1)
        elif self.direction == 'Left':
            new = (head[0]-1,head[1])
        else:
            new = (head[0]+1,head[1])
        if not self.food.pos == head:         
            pop = self.body.pop()
            self.grid.draw(pop,self.grid.bg)
        else:
            self.display_food()
            self.score += 1
        self.body.insert(0,new)      
        if not new in self.available_grid():
            self.status.reverse()            
            self.gameover = True
        else:
            self.grid.draw(new,color=self.color)
class SnakeGame(Frame):
    def __init__(self,master=None, *args, **kwargs):
        Frame.__init__(self, master)
        self.master = master
        self.grid = Grid(master=master,*args, **kwargs)
        self.snake = Snake(self.grid)
        self.bind_all("", self.key_release)
        self.snake.display()
    def run(self):
        if not self.snake.status[0] == 'stop':
            self.snake.move()
        if self.snake.gameover == True:
            message =  tkMessageBox.showinfo("Game Over", "your score: %d" % self.snake.score)
            if message == 'ok':
                sys.exit()
        self.after(self.snake.speed,self.run)
    def key_release(self, event):
        key = event.keysym
        key_dict = {"Up":"Down","Down":"Up","Left":"Right","Right":"Left"}
        if key_dict.has_key(key) and not key == key_dict[self.snake.direction]:
            self.snake.change_direction(key)
            self.snake.move()
        elif key == 'p':
            self.snake.status.reverse()
if __name__ == '__main__':
    root = Tk()
    snakegame = SnakeGame(root)
    snakegame.run()
    snakegame.mainloop()
Python 相关文章推荐
python实现在sqlite动态创建表的方法
May 08 Python
Python functools模块学习总结
May 09 Python
Django imgareaselect手动剪切头像实现方法
May 26 Python
Django应用程序中如何发送电子邮件详解
Feb 04 Python
Python正则表达式教程之一:基础篇
Mar 02 Python
python实现12306火车票查询器
Apr 20 Python
Python实现E-Mail收集插件实例教程
Feb 06 Python
树莓派实现移动拍照
Jun 22 Python
python如何导入依赖包
Jul 13 Python
Python3爬虫里关于识别微博宫格验证码的知识点详解
Jul 30 Python
Python logging模块handlers用法详解
Aug 14 Python
Django项目如何正确配置日志(logging)
Apr 29 Python
Python中的yield浅析
Jun 16 #Python
python中使用enumerate函数遍历元素实例
Jun 16 #Python
Python中字典(dict)和列表(list)的排序方法实例
Jun 16 #Python
Python实现的几个常用排序算法实例
Jun 16 #Python
Python中文件遍历的两种方法
Jun 16 #Python
Python里隐藏的“禅”
Jun 16 #Python
Python程序设计入门(5)类的使用简介
Jun 16 #Python
You might like
php面向对象全攻略 (八)重载新的方法
2009/09/30 PHP
linux下使用ThinkPHP需要注意大小写导致的问题
2011/08/02 PHP
PHP判断远程图片是否存在的几种方法
2014/05/04 PHP
什么情况下可以不写PHP的闭合标签“?>”
2014/08/28 PHP
php数据结构之顺序链表与链式线性表示例
2018/01/22 PHP
PHP如何实现阿里云短信sdk灵活应用在项目中的方法
2019/06/14 PHP
JavaScript的面向对象方法以及差别
2008/03/31 Javascript
IE6与IE7中,innerHTML获取param的区别
2009/03/15 Javascript
js获取图片大小的函数代码
2011/09/20 Javascript
javascript获取元素偏移量的方法有哪些
2014/06/24 Javascript
JS在IE下缺少标识符的错误
2014/07/23 Javascript
给before和after伪元素设置js效果的方法
2015/12/04 Javascript
如何给ss bash 写一个 WEB 端查看流量的页面
2017/03/23 Javascript
详解原生JS回到顶部
2019/03/25 Javascript
js+canvas实现五子棋小游戏
2020/08/02 Javascript
[01:06:32]DOTA2上海特级锦标赛D组资格赛#1 EG VS VP第一局
2016/02/28 DOTA
跟老齐学Python之有容乃大的list(4)
2014/09/28 Python
python内存管理分析
2015/04/08 Python
使用Python对SQLite数据库操作
2017/04/06 Python
Python实现Kmeans聚类算法
2020/06/10 Python
django 外键model的互相读取方法
2018/12/15 Python
详解Ubuntu16.04安装Python3.7及其pip3并切换为默认版本
2019/02/25 Python
Python3+OpenCV2实现图像的几何变换(平移、镜像、缩放、旋转、仿射)
2019/05/13 Python
Python程序暂停的正常处理方法
2019/11/07 Python
Python彻底删除文件夹及其子文件方式
2019/12/23 Python
Python : turtle色彩控制实例详解
2020/01/19 Python
CSS3 Backgrounds属性相关介绍
2011/05/11 HTML / CSS
使用phonegap查找联系人的实现方法
2017/03/31 HTML / CSS
基于HTML5+Webkit实现树叶飘落动画
2017/12/28 HTML / CSS
皮姆斯勒语言学习:Pimsleur Language Programs
2018/06/30 全球购物
国家地理在线商店:Shop National Geographic
2018/06/30 全球购物
Europcar美国/加拿大:预订汽车或卡车租赁服务
2018/11/13 全球购物
感恩教育活动总结
2014/05/05 职场文书
上课讲话检讨书范文
2015/05/07 职场文书
使用python向MongoDB插入时间字段的操作
2021/05/18 Python
python神经网络ResNet50模型
2022/05/06 Python