NAME

MIDI::RtController::Filter::Drums - RtController drum filters

VERSION

version 0.0104

SYNOPSIS

use curry;
use Future::IO::Impl::IOAsync;
use MIDI::RtController ();
use MIDI::RtController::Filter::Drums ();

my $rtc = MIDI::RtController->new; # * input/output required

my $rtf = MIDI::RtController::Filter::Drums->new(rtc => $rtc);

$rtc->add_filter('drums', note_on => $rtf->curry::drums);

$rtc->run;

DESCRIPTION

MIDI::RtController::Filter::Drums is the MIDI::RtController filter for the drums.

ATTRIBUTES

rtc

$rtc = $rtf->rtc;

The required MIDI::RtController instance provided in the constructor.

bars

$bars = $rtf->bars;
$rtf->bars($number);

The number of measures to set for the drummer bars.

Default: 1

bpm

$bpm = $rtf->bpm;
$rtf->bpm($number);

The beats per minute.

Default: 120

METHODS

All filter methods must accept the object, a MIDI device name, a delta-time, and a MIDI event ARRAY reference, like:

sub drums ($self, $device, $delta, $event) {
  my ($event_type, $chan, $note, $value) = $event->@*;
  ...
  return $boolean;
}

A filter also must return a boolean value. This tells MIDI::RtController to continue processing other known filters or not.

drums

Play the drums.

SEE ALSO

List::SomeUtils

MIDI::Drummer::Tiny

MIDI::RtMidi::ScorePlayer

Moo

Types::Standard

AUTHOR

Gene Boggs <gene.boggs@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2025 by Gene Boggs.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.