python写小游戏之贪吃蛇

尊敬的读者,

我们很高兴向您介绍一份有趣的Python程序——贪吃蛇!这个游戏经典而又耐玩,而我们的程序让您可以在计算机上体验这个经典游戏的乐趣。

我们的程序使用Python编写,利用了该语言丰富的库和强大的功能。通过键盘控制,您可以控制贪吃蛇在屏幕上移动,并尽可能多地吃到食物来增加长度。当然,在此过程中,您需要注意避开蛇头碰到自己的身体或撞到边界。

我们的代码具有清晰的逻辑结构和良好的可读性,使得即使是Python初学者也可以轻松理解程序的实现方式。同时,代码还包含了详细的注释,帮助您更好地理解每个部分的功能和作用。

总之,我们的贪吃蛇程序是一款简单而有趣的游戏,可以带给您愉悦的游戏体验和Python编程的乐趣。我们希望您能够喜欢这个程序,并享受在计算机上玩贪吃蛇的快乐时光!

import random
import sys
import time
import pygame
from pygame.locals import *
from collections import deque
Screen_Height=480
Screen_Width=600
Size=20
Line_Width=1
Area_x=(0,Screen_Width//Size-1)
Area_y=(2,Screen_Height//Size-1)
Food_Style_List=[(10,(255,100,100)),(20,(100,255,100)),(30,(100,100,255))]
Light=(100,100,100)
Dark=(200,200,200)
Black=(0,0,0)
Red=(200,30,30)
Back_Ground=(40,40,60)
def Print_Txt(screen,font,x,y,text,fcolor=(255,255,255)):
    Text=font.render(text,True,fcolor)
    screen.blit(Text,(x,y))
def init_snake():
    snake=deque()
    snake.append((2,Area_y[0]))
    snake.append((1,Area_y[0]))
    snake.append((0,Area_y[0]))
    return snake
def Creat_Food(snake):
    food_x=random.randint(Area_x[0],Area_x[1])
    food_y=random.randint(Area_y[0],Area_y[1])
    while(food_x,food_y)in snake:
        food_x = random.randint(Area_x[0], Area_x[1])
        food_y = random.randint(Area_y[[0], Area_y[1]])
    return food_x,food_y
def Food_Style():
    return Food_Style_List[random.randint(0,2)]
def main():
    pygame.init()
    screen=pygame.display.set_mode((Screen_Width,Screen_Height))
    pygame.display.set_caption('贪吃蛇')
    font1=pygame.font.SysFont('SimHei',24)
    font2 = pygame.font.SysFont(None, 72)
    fwidth, fheight = font2.size('GAME OVER')
    b=True
    snake=init_snake()
    food=Creat_Food(snake)
    food_style=Food_Style()
    pos=(1,0)
    game_over=True
    game_start=False
    score=0
    orispeed=0.3
    speed=orispeed
    last_move_time=None
    pause=False
    while True:
        for event in pygame.event.get():
            if event.type==QUIT:
                sys.exit()
            elif event.type==KEYDOWN:
                if event.key==K_RETURN:
                    if game_over:
                        game_start=True
                        game_over=False
                        b=True
                        snake=init_snake()
                        food=Creat_Food(snake)
                        food_style=Food_Style()
                        pos=(1,0)
                        score=0
                        last_move_time=time.time()
                elif event.key==K_SPACE:
                    if not game_over:
                        pause=not pause
                elif event.key in (K_UP,K_w):
                    if b and not pos[1]:
                        pos=(0,-1)
                        b=False
                elif event.key in (K_DOWN,K_s):
                    if b and not pos[1]:
                        pos = (0, 1)
                        b = False
                elif event.key in (K_LEFT,K_a):
                    if b and not pos[0]:
                        pos = (-1, 0)
                        b = False
                elif event.key in (K_RIGHT,K_d):
                    if b and not pos[0]:
                        pos = (1, 0)
                        b = False
        screen.fill(Back_Ground)
        for x in range(Size, Screen_Width, Size):
            pygame.draw.line(screen, Black, (x, Area_y[0] * Size), (x, Screen_Height), Line_Width)
        for y in range(Area_y[0] * Size, Screen_Height, Size):
            pygame.draw.line(screen, Black, (0, y), (Screen_Width, y), Line_Width)
        if not game_over:
            curTime=time.time()
            if curTime-last_move_time>speed:
                if not pause:
                    b=True
                    last_move_time=curTime
                    next_s = (snake[0][0] + pos[0], snake[0][1] + pos[1])
                    if next_s==food:
                        snake.appendleft(next_s)
                        score+=food_style[0]
                        speed = orispeed - 0.03 * (score // 100)
                        food = Creat_Food(snake)
                        food_style = Food_Style()
                    else:
                        if Area_x[0]<=next_s[0]<=Area_x[1] and Area_y[0]<=next_s[1]<=Area_y[1] and next_s not in snake:
                            snake.appendleft(next_s)
                            snake.pop()
                        else :
                            game_over=True
        if not game_over:
            pygame.draw.rect(screen, food_style[1], (food[0] * Size, food[1] * Size, Size, Size), 0)
        for s in snake:
            pygame.draw.rect(screen, Dark, (s[0] * Size + Line_Width, s[1] * Size + Line_Width,
                                            Size - Line_Width * 2, Size - Line_Width * 2), 0)
        Print_Txt(screen, font1, 30, 7, f'速度: {score // 100}')
        Print_Txt(screen, font1, 450, 7, f'得分: {score}')
        if game_over:

            if game_start:
                Print_Txt(screen, font2, (Screen_Width - fwidth) // 2, (Screen_Height - fheight) // 2, 'GAME OVER',Red)
        pygame.display.update()
if __name__=='__main__':
    main()

谢谢您的阅读,祝您愉快!

  • 2
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

傻傻的心动

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值