File: level002.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 (35 lines) | stat: -rw-r--r-- 1,025 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

import k
from Part import *

def init():
    k.sound.loadTheme('summer')
    k.sound.music()
    k.world.setBackground('level-02')

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

    # simple player
    k.player.setPos((cx, cy-120))