用Python制作贪吃蛇游戏的过程代码是什么
Admin 2022-08-11 群英技术资讯 386 次浏览
本文实例为大家分享了python实现简单贪吃蛇的具体代码,供大家参考,具体内容如下
1. 导入游戏库
import pgzrun import random
2.游戏初始化
# 窗口大小 WIDTH = 600 HEIGHT = 480 # 贪吃蛇 bodys = [ [100,100],[80,100], [60,100], [40,100], [20,100]] head = [100,100] d = 'right' # 食物 food = [290,290] # 得分 score=0
3.游戏窗口绘制
def draw(): #清空屏幕 screen.clear() # 绘制网格 for i in range(1,24): screen.draw.line((0,i*20),(600,i*20),'gray') for i in range(1,30): screen.draw.line((i*20,0),(i*20,480),'gray') #绘制蛇 for body in bodys: rect = Rect(body,(20,20)) screen.draw.filled_rect(rect,(0,0,255)) inner = [body[0]+2,body[1]+2] rect = Rect(inner, (15, 15),center='center') screen.draw.filled_rect(rect, (0, 0, 180)) # 绘制头 rect = Rect(head, (20, 20)) screen.draw.filled_rect(rect, (0, 200,0)) inner = [head[0] + 2, head[1] + 2] rect = Rect(inner, (15, 15)) screen.draw.filled_rect(rect, (0, 255, 12)) # 绘制食物 screen.draw.filled_circle(food,10, '#ffddee') # 绘制得分 screen.draw.text('score:'+str(score),(20, 20), color="orange",fontsize=30)
4.蛇的移动功能
def run(): global food,d,head,bodys,score # 新增一个格子的身体 if d=='right': head[0] += 20 elif d=='left': head[0] -= 20 elif d=='up': head[1] -= 20 else: head[1] += 20 bodys.insert(0,list(head)) if head[0] == food[0]-10 and head[1] == food[1] - 10: food = [random.randint(1,30)*20-10,random.randint(1,20)*20-10] score+=1 if score>3: clock.unschedule(run) clock.schedule_interval(run, 0.1) else: bodys.pop() # 撞墙后重新开始 if head[0]<0 or head[0]>580 or head[1]<0 or head[1]>480 or head in bodys[1:]: # 蛇回到初始位置 bodys = [[100, 100], [80, 100], [60, 100], [40, 100], [20, 100]] head = [100, 100] # 方向向右 d = 'right' # 得分清零 score=0 clock.unschedule(run) clock.schedule_interval(run, 0.3)
5.按键控制蛇的行走方向
# 按键控制蛇的行走方向 def on_key_down(key): global d # 改变方向 if key == keys.DOWN and d != 'up': d = 'down' if key == keys.UP and d != 'down': d = 'up' if key == keys.LEFT and d != 'right': d = 'left' if key == keys.RIGHT and d != 'left': d = 'right'
6.启动游戏
# 定时设置 clock.schedule_interval(run, 0.3) # 播放音乐 music.play('music.mp3') # 启动游戏 pgzrun.go()
完整代码
# 1.导入库 import pgzrun import random # 2.初始化 # 窗口大小 WIDTH = 600 HEIGHT = 480 # 贪吃蛇 bodys = [[100, 100], [80, 100], [60, 100], [40, 100], [20, 100]] head = [100, 100] d = 'right' # 食物 food = [290, 290] # 得分 score = 0 # 3.游戏窗口绘制 def draw(): # 清空屏幕 screen.clear() # 绘制网格 for i in range(1, 24): screen.draw.line((0, i * 20), (600, i * 20), 'gray') for i in range(1, 30): screen.draw.line((i * 20, 0), (i * 20, 480), 'gray') # 绘制蛇 for body in bodys: rect = Rect(body, (20, 20)) screen.draw.filled_rect(rect, (0, 0, 255)) inner = [body[0] + 2, body[1] + 2] rect = Rect(inner, (15, 15), center='center') screen.draw.filled_rect(rect, (128, 0, 128)) # 紫色 # 绘制头 rect = Rect(head, (20, 20)) screen.draw.filled_rect(rect, (0, 200, 0)) inner = [head[0] + 2, head[1] + 2] rect = Rect(inner, (15, 15)) screen.draw.filled_rect(rect, (0, 255, 12)) # 绘制食物 颜色为红色 screen.draw.filled_circle(food, 10, '#ff0000') # 绘制得分 screen.draw.text('score:' + str(score), (20, 20), color="red", fontsize=30) # 4.蛇的移动功能 def run(): global food, d, head, bodys, score # 新增一个格子的身体 if d == 'right': head[0] += 20 elif d == 'left': head[0] -= 20 elif d == 'up': head[1] -= 20 else: head[1] += 20 bodys.insert(0, list(head)) if head[0] == food[0] - 10 and head[1] == food[1] - 10: food = [random.randint(1, 30) * 20 - 10, random.randint(1, 20) * 20 - 10] score += 1 if score > 10: clock.unschedule(run) clock.schedule_interval(run, 0.1) else: bodys.pop() # 撞墙后重新开始 if head[0] < 0 or head[0] > 580 or head[1] < 0 or head[1] > 480 or head in bodys[1:]: # 蛇回到初始位置 bodys = [[100, 100], [80, 100], [60, 100], [40, 100], [20, 100]] head = [100, 100] # 方向向右 d = 'right' # 得分清零 score = 0 clock.unschedule(run) clock.schedule_interval(run, 0.3) # 按键控制蛇的行走方向 def on_key_down(key): global d # 改变方向 if key == keys.DOWN and d != 'up': d = 'down' if key == keys.UP and d != 'down': d = 'up' if key == keys.LEFT and d != 'right': d = 'left' if key == keys.RIGHT and d != 'left': d = 'right' # 6.启动游戏 # 定时设置 clock.schedule_interval(run, 0.3) # 播放音乐 music.play('music.mp3') # 启动游戏 pgzrun.go()
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
内容介绍一、问题背景二、Canny算法(一)、高斯平滑(二)Sobel算子计算梯度(三)非极大化抑制(四)滞后边缘跟踪一、问题背景纸面上有一枚一元钱的银币,你能在Canny和Hough的帮助
在python中用于生成随机数的模块是random,在使用前需要import, 下面看下它的用法。random randomrandom random()用于生成一个0到1的随机符
python怎样实现排序算法?对于排序算法有冒泡排序、选择排序、插入排序和快速排序等,很多新手对于这些排序算法的实现可能不是很了解,对此,这篇文章就主要给大家分享排序算法的实现,感兴趣的朋友就继续往下看吧。
随着深度学习的不断发展,从开山之作Alexnet到VGG,网络结构不断优化,但是在VGG网络研究过程中,人们发现随着网络深度的不断提高,准确率却没有得到提高。人们觉得深度学习到此就停止了,不能继续研究了,但是经过一段时间的发展,残差网络(resnet)解决了这一问题。
吃豆人和切水果这两个游戏相信大家都不陌生吧,本文将利用Python中的Pygame模块编写出一款结合吃豆人+切水果的新游戏:疯狂吃水果,感兴趣的可以了解一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008