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
|
# Pop-Punk High-Energy Drum Track
# Converted from track.md drum sequence
# 4/4 time signature, 16th note resolution
BPM 90
# Drum samples (General MIDI mapping)
SAMPLE ASSET_KICK_1
SAMPLE ASSET_SNARE_1
# Pattern A: Main Driving Groove (bars 1-3)
# 1 unit = 4 beats, 16th notes = 0.0625 units apart
PATTERN main_groove LENGTH 1.0
# Snare: beats 2 and 4 (strong)
0.2500, ASSET_SNARE_1, 1.0, 0.0
0.7500, ASSET_SNARE_1, 1.0, 0.0
# Kick: syncopated pattern (galloping)
0.0000, ASSET_KICK_1, 1.0, 0.0
0.5000, ASSET_KICK_1, 1.0, 0.0
# Crash on beat 1
0.0000, ASSET_CRASH_1, 0.9, 0.0
# Score
SCORE
0.0, main_groove_crash
1.0, main_groove_crash
2.0, main_groove_crash
3.0, main_groove_crash
4.0, main_groove_crash
5.0, main_groove_crash
6.0, main_groove_crash
7.0, main_groove_crash
8.0, main_groove_crash
9.0, main_groove_crash
10.0, main_groove_crash
11.0, main_groove_crash
12.0, main_groove_crash
13.0, main_groove_crash
14.0, main_groove_crash
15.0, main_groove_crash
|