python实现贪吃蛇游戏源码

作者:心心强 时间:2021-07-22 12:45:24 

本文实例为大家分享了python实现贪吃蛇的具体代码,供大家参考,具体内容如下


import pygame
import sys
import random

SCREEN_X=600
SCREEN_Y=600

class Snake(object):
def __init__(self):
self.direction=pygame.K_RIGHT
self.body = []
for i in range(5):
 self.addnode()

def addnode(self):
left, top = (0, 0)
if self.body:
 left, top = (self.body[0].left,self.body[0].top)
node = pygame.Rect(left,top,25,25)
if self.direction == pygame.K_RIGHT:
 node.left += 25
elif self.direction == pygame.K_LEFT:
 node.left -= 25
elif self.direction == pygame.K_UP:
 node.top -= 25
elif self.direction == pygame.K_DOWN:
 node.top += 25
self.body.insert(0,node)

def delnode(self):
self.body.pop()

def isdead(self):
if self.body[0].x not in range(SCREEN_X):
 return True
if self.body[0].y not in range(SCREEN_Y):
 return True
if self.body[0] in self.body[1:]:
 print('in body')
 return True
return False

def move(self):
self.addnode()
self.delnode()

def changeddirection(self,curkey):
LR = [pygame.K_LEFT,pygame.K_RIGHT]
UD = [pygame.K_DOWN,pygame.K_UP]
if curkey in LR+UD:
 if (curkey in LR) and (self.direction in LR):
 return
 if (curkey in UD) and (self.direction in UD):
 return
 self.direction = curkey

class Food(object):
def __init__(self):
self.rect = pygame.Rect(-25, 0, 25, 25)

def remove(self):
self.rect.x = -25

def set(self):
if self.rect.x == -25:
 allpos = []
 for pos in range(25,SCREEN_X-25,25):
 allpos.append(pos)
 self.rect.left = random.choice(allpos)
 self.rect.top = random.choice(allpos)
 print(self.rect)

def show_text(screen,pos,text,color,font_bold = False,font_size = 60,font_italic = False):
cur_font=pygame.font.SysFont('宋体',font_size)
cur_font.set_bold(font_bold)
cur_font.set_italic(font_italic)
text_fmt = cur_font.render(text,1,color)
screen.blit(text_fmt,pos)

def main():
pygame.init()
screen_size = (SCREEN_X,SCREEN_Y)
screen = pygame.display.set_mode(screen_size)
pygame.display.set_caption('Snake')
clock=pygame.time.Clock()
scores=0
isdead=False

snake=Snake()
food=Food()

while True:
for event in pygame.event.get():

if event.type == pygame.QUIT:
 sys.exit()
 if event.type == pygame.KEYDOWN:
 #print(event)
 #pressed_keys = pygame.key.get_pressed()
 #if pressed_keys.count(1)>1:
  # continue
 print(event.key)
 snake.changeddirection(event.key)
 if event.key == pygame.K_SPACE and isdead:
  return main()
screen.fill((255,255,255))
if not isdead:
 scores +=1
 snake.move()
for rect in snake.body:
 pygame.draw.rect(screen,(20,220,39),rect,0)
isdead=snake.isdead()
if isdead:
 show_text(screen,(100,200),'you dead!',(227,29,18),False,100)
 show_text(screen,(150,260),'press space to try again...',(0,0,22),False,30)

if food.rect == snake.body[0]:
 scores +=50
 food.remove()
 snake.addnode()

food.set()
pygame.draw.rect(screen,(136,0,21),food.rect,0)
show_text(screen,(50,500),'Scores:'+str(scores),(223,223,223))
pygame.display.update()
clock.tick(5)

if __name__ == "__main__":
main()

来源:https://blog.csdn.net/u010708028/article/details/104922573

标签:python,贪吃蛇
0
投稿

猜你喜欢

  • python通过pip更新所有已安装的包实现方法

    2021-06-04 03:22:34
  • python 工具类之Queue组件详解用法

    2023-08-05 23:59:10
  • CentOS7离线安装MySQL的教程详解

    2024-01-20 13:07:33
  • 巧用正则表达式获取新闻中图片地址

    2010-07-17 13:09:00
  • 使用cmd命令行窗口操作SqlServer的方法

    2012-07-21 14:24:06
  • 使用Pytorch训练two-head网络的操作

    2023-04-06 14:15:59
  • 解决python 虚拟环境删除包无法加载的问题

    2023-09-15 14:43:57
  • 捕捉并保存ASP运行错误的函数代码

    2012-11-30 20:24:43
  • 人工智能学习Pytorch数据集分割及动量示例详解

    2021-04-29 11:28:55
  • bootstrapValidator bootstrap-select验证不可用的解决办法

    2024-04-10 13:53:06
  • 基于Python中isfile函数和isdir函数使用详解

    2023-05-10 00:46:50
  • 此数据库没有有效所有者,因此无法安装数据库关系图支持对象

    2012-01-29 18:15:11
  • 深入SQL Server中定长char(n)与变长varchar(n)的区别详解

    2024-01-14 01:53:42
  • python3利用ctypes传入一个字符串类型的列表方法

    2021-06-10 20:33:36
  • asp如何终止浏览器的 CAHCE 页面?

    2010-07-07 12:25:00
  • Python中的int函数使用

    2023-05-13 06:11:59
  • Python 如何批量更新已安装的库

    2023-06-05 12:15:40
  • 详细解读MySQL的触发器trigger

    2024-01-24 18:24:24
  • python函数返回多个值的示例方法

    2023-04-14 10:38:05
  • UI自动化定位常用实现方法代码示例

    2022-09-22 09:47:13
  • asp之家 网络编程 m.aspxhome.com