#!/usr/bin/env perl
use
strict;
use
warnings;
# Adapted from the book "Progressive Steps to Syncopation for the Modern Drummer"
my
$bpm
=
shift
|| 100;
my
$d
= MIDI::Drummer::Tiny::Syncopate->new(
bpm
=>
$bpm
,
file
=>
"$0.mid"
,
kick
=> 36,
snare
=> 40,
reverb
=> 15,
);
$d
->sync(
\
&snare
,
\
&kick
,
\
&hhat
,
);
$d
->
write
;
sub
snare {
$d
->combinatorial(
$d
->snare, {
count
=> 1 } );
}
sub
kick {
$d
->combinatorial(
$d
->kick );
}
sub
hhat {
$d
->steady(
$d
->pedal_hh );
}