コード例 #1
0
ファイル: main.py プロジェクト: nmakeenkov/junction_2k16
def main():
    pygame.init()
 
    # Set the width and height of the screen [width, height]
    size = (int(settings.WIDTH * ZOOM), int(settings.HEIGHT * ZOOM))
    screen = pygame.display.set_mode(size)
    pygame.display.set_caption("Simulator")

    royal_manager = RoyalManager()
    room = royal_manager.room
    strategy = Strategy(room)
    done = False
    clock = pygame.time.Clock()
    while not done:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                done = True
        strategy.run_tick()
        royal_manager.run_simulation_tick()
        Serializer.serialize(room, screen)
        clock.tick(60)