python实现烟花表演

创建一个简单的烟花表演动画需要用到Python的图形库,比如pygame或者matplotlib的动画功能。这里,我会使用pygame来演示如何创建一个简单的烟花表演。

首先,你需要安装pygame库。你可以使用pip来安装:

复制代码

bash复制代码

|---|----------------------|
| | pip install pygame |

接下来是一个简单的烟花表演示例代码:

复制代码

python复制代码

|---|--------------------------------------------------------------------------------------------------------------------------------------------------|
| | import pygame |
| | import random |
| | import math |
| | |
| | # 初始化pygame |
| | pygame.init() |
| | |
| | # 设置屏幕大小 |
| | screen_width, screen_height = 800, 600 |
| | screen = pygame.display.set_mode((screen_width, screen_height)) |
| | pygame.display.set_caption("烟花表演") |
| | |
| | # 颜色定义 |
| | BLACK = (0, 0, 0) |
| | WHITE = (255, 255, 255) |
| | |
| | # 烟花类 |
| | class Firework: |
| | def __init__(self): |
| | # 初始化烟花位置 |
| | self.x = random.randint(0, screen_width) |
| | self.y = screen_height |
| | # 初始化烟花速度 |
| | self.vx = random.randint(-5, 5) |
| | self.vy = -10 - random.randint(0, 10) |
| | # 初始化烟花颜色 |
| | self.color = (random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)) |
| | # 初始化烟花粒子 |
| | self.particles = [] |
| | for _ in range(random.randint(50, 100)): |
| | self.particles.append([random.randint(0, 255), random.randint(0, 255), random.randint(0, 255), random.randint(-5, 5), random.randint(5, 15)]) |
| | |
| | def update(self): |
| | # 更新烟花位置 |
| | self.x += self.vx |
| | self.y += self.vy |
| | # 烟花爆炸效果 |
| | if self.y < 0: |
| | for particle in self.particles: |
| | particle[3] += 0.5 |
| | particle[4] += 0.1 |
| | pygame.draw.circle(screen, particle[:3], (int(self.x + particle[3]), int(self.y + particle[4])), 1) |
| | self.particles = [] # 爆炸后清空粒子 |
| | else: |
| | pygame.draw.circle(screen, self.color, (int(self.x), int(self.y)), 2) |
| | |
| | def is_done(self): |
| | return self.y < -screen_height |
| | |
| | # 游戏主循环 |
| | running = True |
| | fireworks = [] |
| | clock = pygame.time.Clock() |
| | |
| | while running: |
| | for event in pygame.event.get(): |
| | if event.type == pygame.QUIT: |
| | running = False |
| | elif event.type == pygame.KEYDOWN: |
| | if event.key == pygame.K_SPACE: |
| | fireworks.append(Firework()) |
| | |
| | screen.fill(BLACK) |
| | |
| | for fw in fireworks: |
| | fw.update() |
| | if fw.is_done(): |
| | fireworks.remove(fw) |
| | |
| | pygame.display.flip() |
| | clock.tick(60) |
| | |
| | pygame.quit() |

这个示例代码创建了一个Firework类来表示烟花,每个烟花有自己的位置和速度,当烟花到达屏幕底部时,它会爆炸并生成一些粒子,每个粒子也有自己的颜色和速度。

主循环中,我们监听键盘事件,当按下空格键时,会生成一个新的烟花。我们还限制了帧率为60帧每秒,以确保动画的流畅性。

这只是一个非常基础的示例,你可以根据需要增加更多的功能,比如烟花的不同颜色、形状、爆炸效果,或者添加背景音乐等。

相关推荐
Turnsole_y2 小时前
pycharm自动化测试初始化
python·selenium
R-G-B2 小时前
【02】C#入门到精通——C# 变量、输入/输出、类型转换
开发语言·c#·c# 变量·c#输入/输出·c#类型转换
星河队长2 小时前
C# 软件加密方法,有使用时间限制,同时要防止拷贝
开发语言·c#
史迪奇_xxx2 小时前
10、一个简易 vector:C++ 模板与 STL
java·开发语言·c++
2301_801252222 小时前
Java中的反射
java·开发语言
Kiri霧3 小时前
Rust开发环境搭建
开发语言·后端·rust
weixin-a153003083163 小时前
[数据抓取-1]beautifulsoup
开发语言·python·beautifulsoup
AI量化投资实验室3 小时前
15年122倍,年化43.58%,回撤才20%,Optuna机器学习多目标调参backtrader,附python代码
人工智能·python·机器学习
倔强青铜三3 小时前
苦练Python第67天:光速读取任意行,linecache模块解锁文件处理新姿势
人工智能·python·面试
小杨同学yx3 小时前
有关maven的一些知识点
java·开发语言