| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 636 人关注过本帖
标题:【源码分享】pygame贪吃蛇源码
只看楼主 加入收藏
古一
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2022-5-16
收藏
 问题点数:0 回复次数:0 
【源码分享】pygame贪吃蛇源码
使用 python pygame 模块实现的初代贪吃蛇源码;可更容易学习
更多示例欢迎访问网站:https://python-abc.xyz/

程序代码:
import sys
import random
import pygame
from pygame.math import Vector2


class Fruit:
    """水果类"""
    def __init__(self):
        self.randomize()

    def draw(self):
        """绘制水果"""
        rect = pygame.Rect(self.pos.x * cell_size, self.pos.y * cell_size, cell_size, cell_size)
        pygame.draw.rect(screen, fruit_color, rect)

    def randomize(self):
        """随机位置"""
        self.x = random.randint(0, cell_number - 1)
        self.y = random.randint(0, cell_number - 1)
        self.pos = Vector2(self.x, self.y)


class Snake:
    """贪吃蛇"""
    def __init__(self):
        self.body = [Vector2(5, 10), Vector2(4, 10), Vector2(3, 10)]
        self.direction = Vector2(1, 0)

    def draw(self):
        """绘制贪吃蛇"""
        for block in self.body:
            x_pos = int(block.x * cell_size)
            y_pos = int(block.y * cell_size)
            rect = pygame.Rect(x_pos, y_pos, cell_size, cell_size)
            pygame.draw.rect(screen, snake_color, rect)

    def move(self):
        """移动"""
        self.eat()
        self.body.pop()

    def eat(self):
        """吃到水果"""
        self.body.insert(0, self.body[0] + self.direction)


class Main:
    def __init__(self):
        self.snake = Snake()
        self.fruit = Fruit()

    def update(self):
        self.snake.move()
        self.check_eat()
        self.check_fail()

    def draw_elements(self):
        self.fruit.draw()
        self.snake.draw()

    def check_eat(self):
        """判断是否吃到了水果"""
        if self.fruit.pos == self.snake.body[0]:
            self.fruit.randomize()
            self.snake.eat()

    def check_fail(self):
        """失败检测
        1. 蛇头撞墙失败
        2. 蛇头吃到自己失败
        """
        if not 0 <= self.snake.body[0].x < cell_number or not 0 <= self.snake.body[0].y < cell_number:
            print('撞墙了')
            self.game_over()

        for block in self.snake.body[1:]:
            if block == self.snake.body[0]:
                print('吃到自己了')
                self.game_over()

    @staticmethod
    def game_over():
        pygame.quit()
        sys.exit()


screen_color = (175, 215, 70)
fruit_color = (126, 166, 114)
snake_color = (183, 111, 122)
cell_size = 40
cell_number = 20

pygame.init()
screen = pygame.display.set_mode((cell_number * cell_size, cell_number * cell_size))
clock = pygame.time.Clock()

SCREEN_UPDATE = pygame.USEREVENT
pygame.time.set_timer(SCREEN_UPDATE, 200)

main = Main()

while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            main.game_over()
        if event.type == SCREEN_UPDATE:
            main.update()
        if event.type == pygame.KEYDOWN:
            if event.key == pygame.K_UP:
                if main.snake.direction.y != 1:
                    main.snake.direction = Vector2(0, -1)
            if event.key == pygame.K_RIGHT:
                if main.snake.direction.x != -1:
                    main.snake.direction = Vector2(1, 0)
            if event.key == pygame.K_DOWN:
                if main.snake.direction.y != -1:
                    main.snake.direction = Vector2(0, 1)
            if event.key == pygame.K_LEFT:
                if main.snake.direction.x != 1:
                    main.snake.direction = Vector2(-1, 0)

    screen.fill(screen_color)
    main.draw_elements()
    pygame.display.update()
    clock.tick(60)


[此贴子已经被作者于2022-5-16 11:13编辑过]

搜索更多相关主题的帖子: Main body def if pygame 
2022-05-16 10:58
快速回复:【源码分享】pygame贪吃蛇源码
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018597 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved