能写一个难一点的python烟花代码吗
时间: 2024-02-06 10:02:23 浏览: 87
当然可以,请看下面的代码,它会创建一个烟花动画效果:
```python
import random
import time
import curses
# 初始化屏幕
screen = curses.initscr()
# 获取屏幕尺寸
max_y, max_x = screen.getmaxyx()
# 关闭光标的显示
curses.curs_set(0)
# 定义烟花的颜色
colors = [curses.COLOR_RED, curses.COLOR_GREEN, curses.COLOR_YELLOW, curses.COLOR_BLUE, curses.COLOR_MAGENTA, curses.COLOR_CYAN]
# 定义烟花的花瓣
flower = ['*', '.', '+', 'o', 'O']
# 定义烟花的数量
num_fireworks = 10
# 定义烟花的最大高度和最小高度
max_height = max_y // 2
min_height = max_y // 4
# 定义烟花的最大宽度和最小宽度
max_width = max_x - 2
min_width = 2
# 定义烟花的爆炸半径
explosion_radius = 10
# 定义烟花的最大速度和最小速度
max_speed = 20
min_speed = 10
# 定义烟花的最大生命长度和最小生命长度
max_lifetime = 10
min_lifetime = 5
# 定义烟花的数组
fireworks = []
# 定义烟花的类
class Firework:
def __init__(self):
# 随机生成烟花的位置、速度、颜色、生命长度和花瓣
self.x = random.randint(min_width, max_width)
self.y = random.randint(min_height, max_height)
self.speed = random.randint(min_speed, max_speed)
self.color = random.choice(colors)
self.lifetime = random.randint(min_lifetime, max_lifetime)
self.flower = random.choice(flower)
self.exploded = False
self.explosion = []
def move(self):
# 计算烟花的下一个位置
self.y -= self.speed
# 如果烟花到达了最高点,则爆炸
if self.y <= min_height or self.lifetime <= 0:
self.explode()
else:
# 在屏幕上显示烟花
try:
screen.addstr(round(self.y), round(self.x), self.flower, curses.color_pair(self.color))
except:
pass
def explode(self):
# 标记烟花已经爆炸
self.exploded = True
# 生成爆炸的花瓣
for i in range(-explosion_radius, explosion_radius+1):
for j in range(-explosion_radius, explosion_radius+1):
if i**2 + j**2 <= explosion_radius**2 and random.random() > 0.5:
self.explosion.append((i, j))
def draw_explosion(self):
# 在屏幕上显示烟花的爆炸
for i, j in self.explosion:
try:
screen.addstr(round(self.y)+i, round(self.x)+j, self.flower, curses.color_pair(self.color))
except:
pass
# 减少烟花的生命长度
self.lifetime -= 1
# 初始化颜色
curses.start_color()
# 定义颜色对
for i, color in enumerate(colors):
curses.init_pair(i+1, color, curses.COLOR_BLACK)
# 创建烟花对象
for i in range(num_fireworks):
fireworks.append(Firework())
# 进入循环
while True:
# 清空屏幕
screen.clear()
# 移动烟花
for firework in fireworks:
if not firework.exploded:
firework.move()
else:
firework.draw_explosion()
# 刷新屏幕
screen.refresh()
# 等待一段时间
time.sleep(0.1)
```
这段代码使用了 curses 库来创建终端动画,并且使用了随机数来生成不同的烟花效果。如果你想要了解更多关于 curses 库的知识,可以参考这篇文章:[Python curses 库教程](https://www.cnblogs.com/vamei/archive/2012/12/05/2802811.html)。
阅读全文