使用Python写贪吃蛇游戏

贪吃蛇游戏是一款经典的小游戏,玩家通过控制蛇的移动来吃食物,蛇的身体会随着吃到的食物越来越多而变长。本文将介绍如何使用Python来创建一个简单的贪吃蛇游戏。

代码解析

1. 设置窗口

首先,我们需要设置游戏窗口。使用 turtle.Screen() 创建一个窗口,并设置窗口的标题、背景颜色和大小。通过 window.tracer(0) 关闭自动更新屏幕,以提高性能。

python 复制代码
import turtle
import time
import random

window = turtle.Screen()

window.title("XXX")

window.bgcolor("black")

window.setup(width=800, height=600)

window.tracer(0)

2. 创建蛇头

接下来,我们创建蛇头。使用 turtle.Turtle() 创建一个 Turtle 对象,设置其速度、形状、颜色,并将其移动到屏幕中央。

python 复制代码
head = turtle.Turtle()
head.speed(0)

head.shape("square")

head.color("white")

head.direction = "stop"

3. 创建蛇身体和食物

我们使用一个列表 segments 来存储蛇的身体部分。食物也是一个 Turtle 对象,随机生成在屏幕上。

python 复制代码
segments = []

food = turtle.Turtle()
food.speed(0)

food.goto(random.randint(-14, 14) * 20, random.randint(-14, 14) * 20)

4. 移动函数

定义一个 move 函数来控制蛇的移动。根据蛇头的方向,更新其坐标。

python 复制代码
def move():
    if head.direction == "up":

    elif head.direction == "down":

    elif head.direction == "left":

    elif head.direction == "right":

5. 键盘绑定

通过键盘绑定函数来控制蛇的移动方向。使用 window.listen() window.onkeypress() 来监听键盘事件。

python 复制代码
def go_up():
    if head.direction != "down":
        head.direction = "up"
def go_down():
    if head.direction != "up":
        head.direction = "down"
def go_left():
    if head.direction != "right":
        head.direction = "left"
def go_right():
    if head.direction != "left":
        head.direction = "right"

window.listen()
window.onkeypress(go_up, "Up")
window.onkeypress(go_down, "Down")
window.onkeypress(go_left, "Left")
window.onkeypress(go_right, "Right")

6. 主循环

在主循环中,我们更新屏幕、检查边界碰撞、食物碰撞,并移动蛇的身体。通过 time.sleep(0.1 / speed) 来控制游戏速度。

python 复制代码
while True:
    window.update()

    
ruby 复制代码
if head.xcor() > 290 or head.xcor() < -290 or head.ycor() > 290 or head.ycor() < -290:
        time.sleep(1)
        head.goto(0, 0)
        head.direction = "stop"

        for segment in segments:
            segment.goto(1000, 1000)
        segments.clear()
python 复制代码
if head.distance(food) < 20:
    food.goto(random.randint(-14, 14) * 20, random.randint(-14, 14) * 20)
    new_segment = turtle.Turtle()
    new_segment.speed(0)
    new_segment.shape("square")
    new_segment.color("grey")
    new_segment.penup()
    segments.append(new_segment)
python 复制代码
for index in range(len(segments) - 1, 0, -1):
    x = segments[index - 1].xcor()
    y = segments[index - 1].ycor()
    segments[index].goto(x, y)
python 复制代码
if len(segments) > 0:
    x = head.xcor()
    y = head.ycor()
    segments[0].goto(x, y)

move()
    
python 复制代码
for segment in segments:

    if segment.distance(head) < 20:
        time.sleep(1)
        head.goto(0, 0)
        head.direction = "stop"

        for segment in segments:
            segment.goto(1000, 1000)
        segments.clear()

time.sleep(0.1 / speed)

完整代码

python 复制代码
import turtle
import time
import random

window = turtle.Screen()
window.title("贪吃蛇小游戏")
window.bgcolor("black")
window.setup(width=800, height=600)
window.tracer(0)

head = turtle.Turtle()
head.speed(0)
head.shape("square")
head.color("white")
head.penup()
head.goto(0, 0)
head.direction = "stop"

segments = []

food = turtle.Turtle()
food.speed(0)
food.shape("circle")
food.color("red")
food.penup()
food.goto(random.randint(-14, 14) * 20, random.randint(-14, 14) * 20)

def move():
    if head.direction == "up":
        y = head.ycor()
        head.sety(y + 20)
    elif head.direction == "down":
        y = head.ycor()
        head.sety(y - 20)
    elif head.direction == "left":
        x = head.xcor()
        head.setx(x - 20)
    elif head.direction == "right":
        x = head.xcor()
        head.setx(x + 20)

def go_up():
    if head.direction != "down":
        head.direction = "up"
def go_down():
    if head.direction != "up":
        head.direction = "down"
def go_left():
    if head.direction != "right":
        head.direction = "left"
def go_right():
    if head.direction != "left":
        head.direction = "right"

window.listen()
window.onkeypress(go_up, "Up")
window.onkeypress(go_down, "Down")
window.onkeypress(go_left, "Left")
window.onkeypress(go_right, "Right")

speed = 0.7
while True:
    window.update()

    if head.xcor() > 290 or head.xcor() < -290 or head.ycor() > 290 or head.ycor() < -290:
        time.sleep(1)
        head.goto(0, 0)
        head.direction = "stop"

        for segment in segments:
            segment.goto(1000, 1000)
        segments.clear()

    if head.distance(food) < 20:
        food.goto(random.randint(-14, 14) * 20, random.randint(-14, 14) * 20)

        new_segment = turtle.Turtle()
        new_segment.speed(0)
        new_segment.shape("square")
        new_segment.color("grey")
        new_segment.penup()
        segments.append(new_segment)

    for index in range(len(segments) - 1, 0, -1):
        x = segments[index - 1].xcor()
        y = segments[index - 1].ycor()
        segments[index].goto(x, y)
    if len(segments) > 0:
        x = head.xcor()
        y = head.ycor()
        segments[0].goto(x, y)

    move()

    for segment in segments:
        if segment.distance(head) < 20:
            time.sleep(1)
            head.goto(0, 0)
            head.direction = "stop"

            for segment in segments:
                segment.goto(1000, 1000)
            segments.clear()

    time.sleep(0.1 / speed)

通过以上步骤,我们成功创建了一个简单的贪吃蛇游戏。后续可以根据需要进一步优化和扩展游戏功能,例如增加得分系统、难度级别等!

相关推荐
Hockor2 分钟前
写给前端的 Python 教程四(列表/元组)
前端·后端·python
GetcharZp3 分钟前
「DPlayer」超强弹幕视频播放器来了!支持m3u8直播,5分钟搞定集成!
前端
天天码行空6 分钟前
Bootstrap Table企业级web数据表格集成框架
前端·javascript·开源
CodeWithMe10 分钟前
【C/C++】EBO空基类优化介绍
开发语言·c++
import_random10 分钟前
[关联规则]apriori算法和fp-growth算法(区别)
前端
这里有鱼汤11 分钟前
熟练掌握MACD这8种形态,让你少走三年弯路(附Python量化代码)| 建议收藏
后端·python
lyc23333314 分钟前
鸿蒙IME Kit高级开发:共享沙箱与跨进程数据传输🚀
前端
lyc23333314 分钟前
鸿蒙UTD详解:标准化数据类型的跨端协作密钥🔑
前端
Hilaku15 分钟前
用好了 defineProps 才叫会用 Vue3,90% 的写法都错了
前端·javascript·vue.js
古夕15 分钟前
前端模块化与Webpack打包原理详解
前端·webpack