酷代码 AI
菜单

贪吃蛇程序

以下是一个使用 Python 和 Pygame 库实现的简单贪吃蛇游戏程序: ```python import pygame import time import random # 初始化 Pygame pygame.init() # 定义颜色 white = (255, 255, 255) yellow = (255, 255, 102) black = (0, 0, 0) red = (213, 50, 80) green = (0, 255, 0) blue = (50, 153, 213) # 定义游戏窗口的大小 dis_width = 800 dis_height = 600 # 创建游戏窗口 dis = pygame.display.set_mode((dis_width, dis_height)) pygame.display.set_caption('贪吃蛇游戏') # 控制游戏帧率 clock = pygame.time.Clock() # 蛇的初始大小 snake_block = 10 snake_speed = 15 # 定义字体样式 font_style = pygame.font.SysFont("bahnschrift", 25) score_font = pygame.font.SysFont("comicsansms", 35) # 显示得分 def Your_score(score): value = score_font.render("你的得分: " + str(score), True, yellow) dis.blit(value, [0, 0]) # 绘制蛇 def our_snake(snake_block, snake_list): for x in snake_list: pygame.draw.rect(dis, black, [x[0], x[1], snake_block, snake_block]) # 显示消息 def message(msg, color): mesg = font_style.render(msg, True, color) dis.blit(mesg, [dis_width / 6, dis_height / 3]) # 主游戏循环 def gameLoop(): game_over = False game_close = False # 蛇的初始位置 x1 = dis_width / 2 y1 = dis_height / 2 # 蛇每次移动的距离 x1_change = 0 y1_change = 0 # 蛇的身体列表 snake_List = [] Length_of_snake = 1 # 食物的随机位置 foodx = round(random.randrange(0, dis_width - snake_block) / 10.0) * 10.0 foody = round(random.randrange(0, dis_height - snake_block) / 10.0) * 10.0 while not game_over: while game_close == True: dis.fill(blue) message("你输了!按 Q 退出,按 C 重新开始", red) Your_score(Length_of_snake - 1) 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 >= dis_width or x1 < 0 or y1 >= dis_height or y1 < 0: game_close = True x1 += x1_change y1 += y1_change dis.fill(blue) pygame.draw.rect(dis, green, [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 our_snake(snake_block, snake_List) Your_score(Length_of_snake - 1) pygame.display.update() # 检查蛇是否吃到食物 if x1 == foodx and y1 == foody: foodx = round(random.randrange(0, dis_width - snake_block) / 10.0) * 10.0 foody = round(random.randrange(0, dis_height - snake_block) / 10.0) * 10.0 Length_of_snake += 1 clock.tick(snake_speed) pygame.quit() quit() gameLoop() ``` 代码说明: 1. 初始化部分:初始化 Pygame 库,定义颜色、游戏窗口大小等基本参数。 2. 函数定义部分: - `Your_score`:用于显示玩家的得分。 - `our_snake`:用于绘制蛇的身体。 - `message`:用于显示游戏结束等消息。 3. 主游戏循环部分: - 处理用户的按键事件,控制蛇的移动方向。 - 检查蛇是否撞到边界或自己,如果是则游戏结束。 - 检查蛇是否吃到食物,如果是则增加蛇的长度并随机生成新的食物位置。 4. 游戏结束处理部分:当游戏结束时,显示游戏结束消息,用户可以选择重新开始或退出游戏。 运行代码: 确保你已经安装了 Pygame 库,然后将上述代码保存为一个 Python 文件(例如 `snake_game.py`),在命令行中运行 `python snake_game.py` 即可开始游戏。 [2025-11-23 09:39:52 | AI问答 | 1417点数解答]

服务商
相关提问
发财导航,免费问AI
实用工具查看更多