-
Notifications
You must be signed in to change notification settings - Fork 0
/
constant_gen.py
56 lines (54 loc) · 1.36 KB
/
constant_gen.py
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
null = None; true = True; false = False;
#\#/#\#/#\#/#\#/#\#/#\#/#\#/#\#/#\#/#\#/
synths_names = {
":dull_bell": "DullBell",
":pretty_bell": "PrettyBell",
":beep": "Beep",
":sine": "Beep",
":saw": "Saw",
":pulse": "Pulse",
":subpulse": "SubPulse",
":square": "Square",
":tri": "Tri",
":dsaw": "DSaw",
":dpulse": "DPulse",
":dtri": "DTri",
":fm": "FM",
":mod_fm": "ModFM",
":mod_saw": "ModSaw",
":mod_dsaw": "ModDSaw",
":mod_sine": "ModSine",
":mod_beep": "ModSine",
":mod_tri": "ModTri",
":mod_pulse": "ModPulse",
":chiplead": "ChipLead",
":chipbass": "ChipBass",
":tb303": "TB303",
":supersaw": "Supersaw",
":hoover": "Hoover",
":prophet": "Prophet",
":zawa": "Zawa",
":dark_ambience": "DarkAmbience",
":growl": "Growl",
":hollow": "Hollow",
":mono_player": "MonoPlayer",
":stereo_player": "StereoPlayer",
":blade": "SynthViolin",
":piano": "SynthPiano",
":rodeo": "SynthRodeo",
":kalimba": "SynthKalimba",
":pluck": "SynthPluck",
":tech_saws": "TechSaws",
":sound_in": "SoundIn",
":sound_in_stereo": "SoundInStereo",
":noise": "Noise",
":pnoise": "PNoise",
":bnoise": "BNoise",
":gnoise": "GNoise",
":cnoise": "CNoise",
":chipnoise": "ChipNoise",
":basic_mono_player": "BasicMonoPlayer",
":basic_stereo_player": "BasicStereoPlayer",
":basic_mixer": "BasicMixer",
":main_mixer": "MainMixer"
}