import pygame
from pygame.locals import *
from random import randint

class Star(object):
    
    def __init__(self, x, y, speed):
        
        self.x = x
        self.y = y
        self.speed = speed
        

def run():
    
    pygame.init()
    screen = pygame.display.set_mode((640, 480), FULLSCREEN)
    
    stars = []
    
    # Add a few stars for the first frame
    for n in xrange(200):
        
        x = float(randint(0, 639))
        y = float(randint(0, 479))
        speed = float(randint(10, 300))
        stars.append( Star(x, y, speed) )
    
    clock = pygame.time.Clock()
    
    white = (255, 255, 255)
    
    while True:
        
        for event in pygame.event.get():
            if event.type == QUIT:
                return
            if event.type == KEYDOWN:
                return
    
        # Add a new star
        y = float(randint(0, 479))
        speed = float(randint(10, 300))
        star = Star(640., y, speed)
        stars.append(star)
        
        time_passed = clock.tick()
        time_passed_seconds = time_passed / 1000.
        
        screen.fill((0, 0, 0))
        
        # Draw the stars
        for star in stars:
            
            new_x = star.x - time_passed_seconds * star.speed
            pygame.draw.aaline(screen, white, (new_x, star.y), (star.x+1., star.y))
            star.x = new_x
                        
        def on_screen(star):
            return star.x > 0
        
        # Remove stars that are no longer visible
        stars = filter(on_screen, stars)
            
        pygame.display.update()
            
    
if __name__ == "__main__":
    run()