基于python的贪吃蛇

最近刚接触python ,感觉很有意思,发现python非常灵活,应用比较广泛,通过加载模块,可以完成很多功能。看了一篇关于基于贪吃蛇的python的实现方法,将其中的思路进行总结。


程序流程分为三个部分:1、开始界面    2、运行游戏   3、退出游戏       。主要完成界面背景的设置,然后等待按键开始游戏,贪吃蛇采用列表存储,重点是通过判断head的坐标,如果与苹果的坐标重合,就吃掉苹果,如果不在界面坐标轴范围,表示撞墙,游戏结束



#-*- coding:utf-8 -*-
import pygame, sys, random
from pygame.locals import*
FPS = 15
WINDOWWIDTH =640
WINDOWHEIGHT = 480
CELLSIZE = 20
assert WINDOWWIDTH % CELLSIZE == 0, "Window width must be a multiple of cell size"
assert WINDOWHEIGHT % CELLSIZE == 0, "Window height muset be multiple of cell size"
CELLWIDTH = WINDOWWIDTH / CELLSIZE  #屏幕上在X坐标轴上显示的方格数
CELLHEIGHT = WINDOWHEIGHT / CELLSIZE    #屏幕上在Y坐标轴上显示的方格数
 
#RGB
WHITE = (255, 255, 255)
BLACK = (0, 0 , 0)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
DARKGREEN = (0, 155, 0)
DARKGRAY = (40, 40, 40)
BGCOLOR = BLACK
 
UP = 'up'
DOWN = 'down'
LEFT = 'left'
RIGHT = 'right'
 
HEAD = 0 #很巧妙的运用
 
#main function
def main():
    global FPSCLOCK, DISPLAYSURF, BASICFONT
 
    pygame.init()
    FPSCLOCK = pygame.time.Clock()
    DISPLAYSURF = pygame.display.set_mode((WINDOWWIDTH, WINDOWHEIGHT))
    BASICFONT = pygame.font.Font('freesansbold.ttf', 18)
    pygame.display.set_caption('Wormy')
 
    showStartScreen()  #显示起始画面
    while True:
        runGame()   #运行游戏主体
        showGameOverScreen()    #显示游戏结束画面
 
def runGame():
    #设置蛇身开始在随机位置
    startx = random.randint(5, CELLWIDTH-6)
    starty = random.randint(5, CELLHEIGHT-6)
    wormCoods = [{'x': startx, 'y': starty},
                 {'x': startx-1, 'y': starty},
                 {'x': startx-2, 'y': starty}]
    direction = RIGHT   #蛇初始方向向右
 
    #得到一个随机苹果的位置
    apple = getRandomLocation()
 
    while True:
        for event in pygame.event.get():
            if event.type == QUIT:
                terminate()
            elif event.type == KEYDOWN:     #处理蛇的移动方向
                if (event.key == K_LEFT or event.key == K_a) and direction != RIGHT:
                    direction = LEFT
                elif (event.key == K_RIGHT or event.key == K_d) and direction != LEFT:
                    direction = RIGHT
                elif (event.key == K_UP or event.key == K_w) and direction != DOWN:
                    direction = UP
                elif (event.key == K_DOWN or event.key == K_s) and direction != UP:
                    direction = DOWN
                elif event.key == K_ESCAPE:
                    terminate()
        #看蛇身是否撞击到自己或四周墙壁
        if wormCoods[HEAD]['x'] == -1 or wormCoods[HEAD]['x'] == CELLWIDTH or wormCoods[HEAD]['y'] == -1 or wormCoods[HEAD]['y'] == CELLHEIGHT:
            return #game over
        for wormBody in wormCoods[1:]:
            if wormBody['x'] == wormCoods[HEAD]['x'] and wormBody['y'] == wormCoods[HEAD]['y']:
                return #game over
        #判断蛇是否吃到苹果
        if wormCoods[HEAD]['x'] == apple['x'] and wormCoods[HEAD]['y'] == apple['y']:
            apple = getRandomLocation() #随机显示一个新的苹果
        else:
            del wormCoods[-1] #删除蛇的尾巴,即列表最后一个小方块
        #根据蛇的移动方向,给蛇添加一个新的头部
        if direction == UP:
            newHead = {'x': wormCoods[HEAD]['x'], 'y': wormCoods[HEAD]['y']-1}
        elif direction == DOWN:
            newHead = {'x': wormCoods[HEAD]['x'], 'y': wormCoods[HEAD]['y']+1}
        elif direction == LEFT:
            newHead = {'x': wormCoods[HEAD]['x']-1, 'y': wormCoods[HEAD]['y']}
        elif direction == RIGHT:
            newHead = {'x': wormCoods[HEAD]['x']+1, 'y': wormCoods[HEAD]['y']}
        wormCoods.insert(0,newHead)
        DISPLAYSURF.fill(BGCOLOR)
        drawGrid() #画屏幕上的小方格
        drawWorm(wormCoods) #画蛇身
        drawApple(apple) #画苹果
        drawScore(len(wormCoods) - 3)#显示蛇身长度计算玩家的分数
        pygame.display.update()
        FPSCLOCK.tick(FPS)
 
#提示按键消息
def drawPressKeyMsg():
    pressKeySurf = BASICFONT.render('Press a key to play.', True, DARKGRAY)
    pressKeyRect = pressKeySurf.get_rect()
    pressKeyRect.topleft = (WINDOWWIDTH - 200, WINDOWHEIGHT-30)
    DISPLAYSURF.blit(pressKeySurf, pressKeyRect)
 
#检测按键游戏是否要退出
def checkForKeyPress():
    if len(pygame.event.get(QUIT)) > 0:
        terminate()
    keyUpEvents = pygame.event.get(KEYUP)
    if len(keyUpEvents) == 0:
        return None
    if keyUpEvents[0].key == K_ESCAPE:
        terminate()
    return keyUpEvents[0].key
 
#显示开始界面
def showStartScreen():
        titleFont = pygame.font.Font('freesansbold.ttf', 100)
        titleSurf1 = titleFont.render('Hello!', True, WHITE, DARKGREEN)
        titleSurf2 = titleFont.render('Wormy!', True, GREEN)
 
        degrees1 = 0
        degrees2 = 0
        while True:
                DISPLAYSURF.fill(BGCOLOR)
                rotatedSurf1 = pygame.transform.rotate(titleSurf1, degrees1)
                rotatedRect1 = rotatedSurf1.get_rect()
                rotatedRect1.center = (WINDOWWIDTH / 2, WINDOWHEIGHT / 2)
                DISPLAYSURF.blit(rotatedSurf1,rotatedRect1)
 
                rotatedSurf2 = pygame.transform.rotate(titleSurf2, degrees2)
                rotatedRect2 = rotatedSurf2.get_rect()
                rotatedRect2.center = (WINDOWWIDTH / 2, WINDOWHEIGHT / 2)
                DISPLAYSURF.blit(rotatedSurf2,rotatedRect2)
 
                drawPressKeyMsg()
 
                if checkForKeyPress():
                                                pygame.event.get()
                                                return
                pygame.display.update()
                FPSCLOCK.tick(FPS)
                degrees1 += 3
                degrees2 += 7
 
#游戏退出
def terminate():
    pygame.quit()
    sys.exit()
 
#随机显示苹果的位置
def getRandomLocation():
    return  {'x': random.randint(0, CELLWIDTH - 1), 'y': random.randint(0, CELLHEIGHT - 1)}
 
#游戏结束时的画面
def showGameOverScreen():
    gameOverFont = pygame.font.Font('freesansbold.ttf', 150)
    gameSurf = gameOverFont.render('GAME', True, WHITE)
    overSurf = gameOverFont.render('OVER', True, WHITE)
    gameRect = gameSurf.get_rect()
    overRect = overSurf.get_rect()
    gameRect.midtop = (WINDOWWIDTH / 2, 10)
    overRect.midtop = (WINDOWWIDTH / 2, gameRect.height + 10 + 25)
 
    DISPLAYSURF.blit(gameSurf, gameRect)
    DISPLAYSURF.blit(overSurf, overRect)
    drawPressKeyMsg()
    pygame.display.update()
    pygame.time.wait(500)
    checkForKeyPress()
 
    while True:
        if checkForKeyPress():
            pygame.event.get()
            return
 
def drawScore(score):
    scoreSurf = BASICFONT.render('Score: %s' %(score), True, WHITE)
    scoreRect = scoreSurf.get_rect()
    scoreRect.topleft = (WINDOWWIDTH - 120, 10)
    DISPLAYSURF.blit(scoreSurf, scoreRect)
 
def drawWorm(wormCoods):
    for coord in wormCoods:
        x = coord['x'] * CELLSIZE
        y = coord['y'] * CELLSIZE
        wormSegmentRect = pygame.Rect(x, y, CELLSIZE, CELLSIZE)
        pygame.draw.rect(DISPLAYSURF, DARKGREEN, wormSegmentRect)
        wormInnerSegmentRect = pygame.Rect(x+4, y+4, CELLSIZE-8, CELLSIZE-8)
        pygame.draw.rect(DISPLAYSURF, GREEN, wormInnerSegmentRect)
 
def drawApple(coord):
    x = coord['x'] * CELLSIZE
    y = coord['y'] * CELLSIZE
    appleRect = pygame.Rect(x, y, CELLSIZE, CELLSIZE)
    pygame.draw.rect(DISPLAYSURF, RED, appleRect)
 
def drawGrid():
    for x in range(0, WINDOWWIDTH, CELLSIZE):
        pygame.draw.line(DISPLAYSURF, DARKGRAY, (x, 0), (x, WINDOWHEIGHT))
    for y in range(0, WINDOWHEIGHT, CELLSIZE):
        pygame.draw.line(DISPLAYSURF, DARKGRAY, (0, y), (WINDOWWIDTH, y))
 
if __name__ == '__main__':
    main()

  • 0
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
好的,我可以为您提供一个简单的贪吃蛇设计,基于 Python 语言。 首先,您需要安装 Pygame 库,它是一个用于游戏开发的 Python 库。在安装 Pygame 库后,您可以开始编写代码。 以下是一个简单的贪吃蛇设计,其中包含一个窗口、一个蛇和一些食物: ```python import pygame import random # 初始化 Pygame pygame.init() # 创建窗口 window = pygame.display.set_mode((500, 500)) # 设置窗口标题 pygame.display.set_caption("贪吃蛇") # 定义颜色 WHITE = (255, 255, 255) BLACK = (0, 0, 0) GREEN = (0, 255, 0) RED = (255, 0, 0) # 设置字体 font = pygame.font.SysFont(None, 25) # 定义蛇 snake_block = 10 snake_speed = 15 def snake(snake_block, snake_list): for x in snake_list: pygame.draw.rect(window, GREEN, [x[0], x[1], snake_block, snake_block]) # 定义游戏循环 def gameLoop(): game_over = False game_close = False # 初始位置 x1 = 250 y1 = 250 # 移动距离 x1_change = 0 y1_change = 0 # 食物位置 foodx = round(random.randrange(0, 490 - snake_block) / 10.0) * 10.0 foody = round(random.randrange(0, 490 - snake_block) / 10.0) * 10.0 # 蛇列表 snake_List = [] Length_of_snake = 1 # 游戏循环 while not game_over: while game_close == True: window.fill(WHITE) message("你输了!按 Q 退出,按 C 重新开始", RED) pygame.display.update() for event in pygame.event.get(): if event.type == pygame.KEYDOWN: if event.key == pygame.K_q: game_over = True game_close = False if event.key == pygame.K_c: gameLoop() # 键盘事件 for event in pygame.event.get(): if event.type == pygame.QUIT: game_over = True if event.type == pygame.KEYDOWN: if event.key == pygame.K_LEFT: x1_change = -snake_block y1_change = 0 elif event.key == pygame.K_RIGHT: x1_change = snake_block y1_change = 0 elif event.key == pygame.K_UP: y1_change = -snake_block x1_change = 0 elif event.key == pygame.K_DOWN: y1_change = snake_block x1_change = 0 # 边界判定 if x1 >= 500 or x1 < 0 or y1 >= 500 or y1 < 0: game_close = True # 更新位置 x1 += x1_change y1 += y1_change # 绘制蛇和食物 window.fill(WHITE) pygame.draw.rect(window, RED, [foodx, foody, snake_block, snake_block]) snake_Head = [] snake_Head.append(x1) snake_Head.append(y1) snake_List.append(snake_Head) if len(snake_List) > Length_of_snake: del snake_List[0] for x in snake_List[:-1]: if x == snake_Head: game_close = True snake(snake_block, snake_List) pygame.display.update() # 如果蛇吃到食物,食物位置随机生成,蛇长度加1 if x1 == foodx and y1 == foody: foodx = round(random.randrange(0, 490 - snake_block) / 10.0) * 10.0 foody = round(random.randrange(0, 490 - snake_block) / 10.0) * 10.0 Length_of_snake += 1 # 设置帧率 clock = pygame.time.Clock() clock.tick(snake_speed) # 退出 Pygame pygame.quit() # 绘制文本 def message(msg, color): mesg = font.render(msg, True, color) window.blit(mesg, [250, 250]) # 启动游戏 gameLoop() ``` 以上代码可以在 Pygame 中运行,实现一个简单的贪吃蛇游戏。请注意,这只是一个简单的示例,您可以根据需要对其进行修改和扩展。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值