pygame实现贪吃蛇游戏
作者:DOLPHINちゃん 时间:2021-09-23 00:29:21
本文实例为大家分享了pygame实现贪吃蛇游戏的具体代码,供大家参考,具体内容如下
为了简化起见,游戏素材暂定为两张简单的图片(文中用的是30*30)。
大家很方便就能制作。
背景也是纯黑填充。
各种音乐字体特效玩法场景等大家可以自由发挥
import pygame
import sys
import random
fps=6 #设置帧率
move={'up':[-30,0],'down':[30,0],'left':[0,-30],'right':[0,30]} #上下左右映射为值
class MOCCASIN(object): #蛇类
def __init__(self):
self.scheme=pygame.image.load('moccasin.png')
self.x=int(20*random.random())*30
self.y=int(20*random.random())*30
self.body=[[self.x,self.y],[self.x,self.y+30],[self.x,self.y+60]]
self.direct='up'
def update(self):
self.x+=move[self.direct][1]
self.y+=move[self.direct][0]
self.body.insert(0,[self.x,self.y])
class FOOD(object): #食物类
def __init__(self):
self.scheme=pygame.image.load('food.png')
self.coordinate=(int(20*random.random())*30,int(20*random.random())*30)
def updateMap(): #场景更新
screen.fill((0,0,0))
moccasin.update()
screen.blit(food.scheme,food.coordinate)
for x in moccasin.body:
screen.blit(moccasin.scheme,tuple(x)+(30,30))
def bitself(): #是否咬到自己
dct={}
for ll in moccasin.body:
if tuple(ll) in dct :return True
dct[tuple(ll)]=1
return False
if __name__=='__main__':
pygame.init()
pygame.display.set_caption('「moccasin」')
screen=pygame.display.set_mode((600,600))
food=FOOD()
moccasin=MOCCASIN()
clk=pygame.time.Clock()
while True:
clk.tick(fps)
for event in pygame.event.get():
if event.type==pygame.QUIT:
sys.exit()
elif event.type==pygame.KEYDOWN:
if event.key==pygame.K_UP and moccasin.direct!='down':
moccasin.direct='up'
if event.key==pygame.K_DOWN and moccasin.direct!='up':
moccasin.direct='down'
if event.key==pygame.K_LEFT and moccasin.direct!='right':
moccasin.direct='left'
if event.key==pygame.K_RIGHT and moccasin.direct!='left':
moccasin.direct='right'
if not (0<=moccasin.x<600 and 0<=moccasin.y<600) or bitself():
break; #检测蛇是否死亡
if food.coordinate==tuple(moccasin.body[0]): #是否吃到食物
food=FOOD()
else: moccasin.body.pop()
updateMap() #更新地图
pygame.display.update()
#蛇死亡,游戏结束
screen.fill((0,0,0))
tips="失 败"
tipsFont=pygame.font.Font('C:\Windows\Fonts\msyh.ttc',100)
tipsSurf=tipsFont.render(tips,1,(255,255,255))
screen.blit(tipsSurf,(screen.get_width()/2-tipsSurf.get_width()/2,256))
pygame.display.flip()
来源:https://blog.csdn.net/qq_51449531/article/details/122441860
标签:pygame,贪吃蛇
0
投稿
猜你喜欢
JavaScript中用getDate()方法返回指定日期的教程
2024-05-09 09:05:46
javascript判断图片是否加载完成的方法推荐
2024-05-29 22:12:05
Pandas实现Dataframe的重排和旋转
2023-11-03 23:47:23
mysql 超大数据/表管理技巧
2024-01-16 22:14:05
Anaconda安装OpenCV的方法图文教程
2021-11-30 18:22:09
python dlib人脸识别代码实例
2021-04-05 12:57:33
简单介绍Ruby中的CGI编程
2022-09-07 21:38:14
Windows下MySQL详细安装过程及基本使用
2024-01-27 10:31:16
浅谈pandas中Dataframe的查询方法([], loc, iloc, at, iat, ix)
2023-03-09 19:28:59
浅析MySQL数据库授权原则
2009-12-15 09:21:00
基于Python中random.sample()的替代方案
2021-01-16 18:41:07
java实现连接mysql数据库单元测试查询数据的实例代码
2024-01-26 12:38:47
PHP array_key_exists检查键名或索引是否存在于数组中的实现方法
2024-05-05 09:18:55
最常用的SQL语句
2024-01-23 20:37:40
学习ASP.NET八天入门:第一天
2007-08-07 13:08:00
ASP 字符串转数字格式
2009-08-19 17:18:00
MySQL插入时间差八小时问题的解决方法
2024-01-28 22:00:09
JS脚本实现网页自动秒杀点击
2024-04-16 09:36:09
oracle 彻底删除方法
2024-01-19 10:20:57
perl中chomp的使用介绍(chop和chomp函数区别)
2022-09-01 16:04:18