Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/graphics/snow
blob: af8abf9b55a6a56d397d2a5afb60045ca8c5c195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# snow

import pippy
import pygame
import sys
from pygame.locals import *
from random import *

# always need to init first thing
pygame.init()

# create the window and keep track of the surface
# for drawing into
screen = pygame.display.set_mode()

# ask for screen's width and height
width, height = screen.get_size()

# turn off the cursor
pygame.mouse.set_visible(False)

bg_color = (0, 0, 0)

xs = []
ys = []
dxs = []
dys = []
sizes = []
nflakes = 1000

while pippy.pygame.next_frame():
    # if we don't have enough flakes, add one
    if len(xs) < nflakes:
        xs.append(randint(0, width))
        ys.append(0)
        dxs.append(randint(-2, 2))
        size = expovariate(1) * 5
        sizes.append(int(size))
        dys.append(size * 2)

    # clear the screen
    screen.fill(bg_color)

    for event in pygame.event.get():
        if event.type == QUIT:
            sys.exit()
        elif event.type == KEYDOWN:
            if event.key == K_ESCAPE:
                sys.exit()

    for x, y, size in zip(xs, ys, sizes):
        c = 40 + int(float(y) / height * 215)
        pygame.draw.circle(
            screen, (c, c, c), (x, y), size)

    xs_ = []
    ys_ = []
    dxs_ = []
    dys_ = []
    sizes_ = []

    for x, y, dx, dy, size in zip(xs, ys, dxs, dys, sizes):
        if 0 <= x + dx <= width and 0 <= y + dy <= height:
            xs_.append(x + dx)
            ys_.append(y + int(dy))
            dxs_.append(dx)
            dys_.append(dy)
            sizes_.append(size)

    xs = xs_
    ys = ys_
    dxs = dxs_
    dys = dys_
    sizes = sizes_

    pygame.display.flip()