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
|
import pygame
import random
pygame.mixer.pre_init(48000, -16, 2, 2048)
pygame.mixer.init()
pygame.mixer.set_num_channels(3)
intro = pygame.mixer.Sound("./assets/sounds/intro.mp3")
menu = pygame.mixer.Sound("./assets/music/menu.mp3")
bgm = [
pygame.mixer.Sound("./assets/music/bgm1.mp3"),
pygame.mixer.Sound("./assets/music/bgm2.mp3"),
pygame.mixer.Sound("./assets/music/bgm3.mp3"),
pygame.mixer.Sound("./assets/music/bgm4.mp3"),
pygame.mixer.Sound("./assets/music/bgm5.mp3")
]
sfx = {
"glass": [
pygame.mixer.Sound("./assets/sounds/game/block_glass_1.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_glass_2.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_glass_3.ogg")
],
"grass": [
pygame.mixer.Sound("./assets/sounds/game/block_grass_1.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_grass_2.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_grass_3.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_grass_4.ogg")
],
"stone": [
pygame.mixer.Sound("./assets/sounds/game/block_stone_1.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_stone_2.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_stone_3.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_stone_4.ogg")
],
"wood": [
pygame.mixer.Sound("./assets/sounds/game/block_wood_1.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_wood_2.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_wood_3.ogg"),
pygame.mixer.Sound("./assets/sounds/game/block_wood_4.ogg")
],
"none": [
pygame.mixer.Sound("./assets/sounds/game/none_1.ogg"),
pygame.mixer.Sound("./assets/sounds/game/none_2.ogg"),
pygame.mixer.Sound("./assets/sounds/game/none_3.ogg"),
pygame.mixer.Sound("./assets/sounds/game/none_4.ogg")
]
}
def play_intro():
pygame.mixer.Channel(0).play(intro)
def play_music():
if not pygame.mixer.Channel(1).get_busy():
pygame.mixer.Channel(1).set_volume(0.5)
pygame.mixer.Channel(1).play(random.choice(bgm))
def play_menu(force=False):
if not pygame.mixer.Channel(1).get_busy() or force:
pygame.mixer.Channel(1).set_volume(0.5)
pygame.mixer.Channel(1).play(menu)
def stop(channel=1):
pygame.mixer.Channel(channel).stop()
def play_sfx(id):
pygame.mixer.Channel(2).play(random.choice(sfx[id]))
|