27 const int DRUM_NUMWAVES = 11;
28 const int DRUM_POLYPHONY = 4;
49 void noteOn( StkFloat instrument, StkFloat amplitude );
52 void noteOff( StkFloat amplitude );
55 StkFloat
tick(
unsigned int channel = 0 );
70 OnePole filters_[DRUM_POLYPHONY];
71 std::vector<int> soundOrder_;
72 std::vector<int> soundNumber_;
79 if ( nSounding_ == 0 )
return lastFrame_[0];
81 for (
int i=0; i<DRUM_POLYPHONY; i++ ) {
82 if ( soundOrder_[i] >= 0 ) {
83 if ( waves_[i].isFinished() ) {
85 for (
int j=0; j<DRUM_POLYPHONY; j++ ) {
86 if ( soundOrder_[j] > soundOrder_[i] )
93 lastFrame_[0] += filters_[i].
tick( waves_[i].
tick() );
102 unsigned int nChannels = lastFrame_.
channels();
103 #if defined(_STK_DEBUG_)
104 if ( channel > frames.
channels() - nChannels ) {
105 oStream_ <<
"Drummer::tick(): channel and StkFrames arguments are incompatible!";
110 StkFloat *samples = &frames[channel];
111 unsigned int j, hop = frames.
channels() - nChannels;
112 if ( nChannels == 1 ) {
113 for (
unsigned int i=0; i<frames.
frames(); i++, samples += hop )
117 for (
unsigned int i=0; i<frames.
frames(); i++, samples += hop ) {
119 for ( j=1; j<nChannels; j++ )
120 *samples++ = lastFrame_[j];