File: level010.py

package info (click to toggle)
krank 0.7%2Bdfsg2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 68,072 kB
  • sloc: python: 3,422; sh: 31; makefile: 11
file content (37 lines) | stat: -rw-r--r-- 1,103 bytes parent folder | download | duplicates (3)
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

import k
from levels import *
from Part import *
from Effect import *

def init():
    k.sound.loadTheme('space')
    k.sound.music()
    k.world.setBackground('level-10')

    cx, cy, w, h = k.world.rect.centerx, k.world.rect.centery, k.world.rect.width, k.world.rect.height
    
    # particles
    parts = [(cx,   h*3/16),
             (cx,   h*13/16)]
    
    if k.config.stage >= 2:
        parts.extend([(w/4,   cy), (w*3/4, cy)])
    
    if k.config.stage >= 3:
        parts.extend([(w/8, cy), (w*7/8, cy)]) 
        
    log(parts)
    
    for i in range(len(parts)):
        k.particles.add(Particle({'pos': parts[i], 'color': 'white'}))    
    
    # magnets 
    n = min(k.config.stage*2, 6)
    k.particles.add (Magnet({'pos': (cx,     h*1/3), 'color': 'white', 'num': n}))
    k.particles.add (Magnet({'pos': (cx,     h*2/3), 'color': 'white', 'num': n}))
    k.particles.add (Magnet({'pos': (w*9/24,  cy),   'color': 'white', 'num': n}))
    k.particles.add (Magnet({'pos': (w*15/24, cy),   'color': 'white', 'num': n}))

    # simple player
    k.player.setPos(k.world.rect.center)