Skip to content

Instantly share code, notes, and snippets.

@wannaphong
Created December 25, 2015 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wannaphong/e4878d948a5ca99ac48e to your computer and use it in GitHub Desktop.
Save wannaphong/e4878d948a5ca99ac48e to your computer and use it in GitHub Desktop.
# code from https://github.com/peterbrittain/asciimatics/blob/master/samples/fireworks.py
from asciimatics.effects import Stars, Print
from asciimatics.particles import RingFirework, SerpentFirework, StarFirework, \
PalmFirework
from asciimatics.renderers import SpeechBubble, FigletText, Rainbow
from asciimatics.scene import Scene
from asciimatics.screen import Screen
from asciimatics.exceptions import ResizeScreenError
from random import randint, choice
import sys
def demo(screen):
scenes = []
effects = [
Stars(screen, screen.width),
Print(screen,
SpeechBubble("Press space to see it again"),
y=screen.height - 3,
start_frame=300)
]
for i in range(20):
fireworks = [
(PalmFirework, 25, 30),
(PalmFirework, 25, 30),
(StarFirework, 25, 35),
(StarFirework, 25, 35),
(StarFirework, 25, 35),
(RingFirework, 20, 30),
(SerpentFirework, 30, 35),
]
firework, start, stop = choice(fireworks)
effects.insert(
1,
firework(screen,
randint(0, screen.width),
randint(screen.height // 8, screen.height * 3 // 4),
randint(start, stop),
start_frame=randint(0, 250)))
effects.append(Print(screen,
Rainbow(screen, FigletText("HAPPY")),
screen.height // 2 - 6,
speed=1,
start_frame=100))
effects.append(Print(screen,
Rainbow(screen, FigletText("NEW YEAR!")),
screen.height // 2 + 1,
speed=1,
start_frame=100))
scenes.append(Scene(effects, -1))
screen.play(scenes, stop_on_resize=True)
while True:
try:
Screen.wrapper(demo)
sys.exit(0)
except ResizeScreenError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment