|
|
@ -909,49 +909,53 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity) { |
|
|
|
Serial.flush(); |
|
|
|
Serial.flush(); |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t use_drum = 0; |
|
|
|
|
|
|
|
|
|
|
|
for (uint8_t d = 0; d < NUM_DRUMSET_CONFIG; d++) { |
|
|
|
for (uint8_t d = 0; d < NUM_DRUMSET_CONFIG; d++) { |
|
|
|
if (inNumber == configuration.drums.midinote[d]) { |
|
|
|
if (inNumber == configuration.drums.midinote[d]) { |
|
|
|
uint8_t slot = drum_get_slot(drum_config[d].drum_class); |
|
|
|
use_drum = d; |
|
|
|
float pan = mapfloat(configuration.drums.pan[d], DRUMS_PANORAMA_MIN, DRUMS_PANORAMA_MAX, 0.0, 1.0); |
|
|
|
break; |
|
|
|
float reverb_send = configuration.drums.reverb_send[d] / 100.0f; |
|
|
|
|
|
|
|
float vol_min = configuration.drums.vol_min[d] / 100.0f; |
|
|
|
|
|
|
|
float vol_max = configuration.drums.vol_max[d] / 100.0f; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drum_mixer_r.gain(slot, pan * volume_transform(mapfloat(inVelocity, 0, 127, vol_min, vol_max))); |
|
|
|
|
|
|
|
drum_mixer_l.gain(slot, (1.0 - pan) * volume_transform(mapfloat(inVelocity, 0, 127, vol_min, vol_max))); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drum_reverb_send_mixer_r.gain(slot, pan * volume_transform(reverb_send)); |
|
|
|
|
|
|
|
drum_reverb_send_mixer_l.gain(slot, (1.0 - pan) * volume_transform(reverb_send)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (drum_config[d].drum_data != NULL && drum_config[d].len > 0) { |
|
|
|
|
|
|
|
if (configuration.drums.pitch[d] != 0) { |
|
|
|
|
|
|
|
Drum[slot]->enableInterpolation(true); |
|
|
|
|
|
|
|
Drum[slot]->setPlaybackRate(pow(2, float(configuration.drums.pitch[d]) / 120.0)); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
Drum[slot]->enableInterpolation(false); |
|
|
|
|
|
|
|
Drum[slot]->setPlaybackRate(1.0); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Drum[slot]->playRaw((int16_t*)drum_config[d].drum_data, drum_config[d].len, 1); |
|
|
|
|
|
|
|
#ifdef DEBUG |
|
|
|
|
|
|
|
Serial.printf(PSTR("Playing sample [%s][%c%c] on slot [%d] main volume [%d]: drum_data=%p, len=%d\n"), drum_config[d].name, slot, configuration.drums.main_vol, drum_config[d].drum_data, drum_config[d].len); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Serial.print(F("Drum Slot [")); |
|
|
|
|
|
|
|
Serial.print(slot); |
|
|
|
|
|
|
|
Serial.print(F("]: Velocity=")); |
|
|
|
|
|
|
|
Serial.print(mapfloat(inVelocity, 0, 127, vol_min, vol_max), 2); |
|
|
|
|
|
|
|
Serial.print(F(" Pan=")); |
|
|
|
|
|
|
|
Serial.print(pan, 2); |
|
|
|
|
|
|
|
Serial.print(F(" ReverbSend=")); |
|
|
|
|
|
|
|
Serial.print(reverb_send, 2); |
|
|
|
|
|
|
|
Serial.print(F(" Pitch=")); |
|
|
|
|
|
|
|
Serial.print(configuration.drums.pitch[d] / 10.0f, 1); |
|
|
|
|
|
|
|
Serial.print(F(" Playback speed=")); |
|
|
|
|
|
|
|
Serial.println(pow(2, float(configuration.drums.pitch[d]) / 120.0)); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint8_t slot = drum_get_slot(drum_config[use_drum].drum_class); |
|
|
|
|
|
|
|
float pan = mapfloat(configuration.drums.pan[use_drum], DRUMS_PANORAMA_MIN, DRUMS_PANORAMA_MAX, 0.0, 1.0); |
|
|
|
|
|
|
|
float reverb_send = configuration.drums.reverb_send[use_drum] / 100.0f; |
|
|
|
|
|
|
|
float vol_min = configuration.drums.vol_min[use_drum] / 100.0f; |
|
|
|
|
|
|
|
float vol_max = configuration.drums.vol_max[use_drum] / 100.0f; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drum_mixer_r.gain(slot, pan * volume_transform(mapfloat(inVelocity, 0, 127, vol_min, vol_max))); |
|
|
|
|
|
|
|
drum_mixer_l.gain(slot, (1.0 - pan) * volume_transform(mapfloat(inVelocity, 0, 127, vol_min, vol_max))); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drum_reverb_send_mixer_r.gain(slot, pan * volume_transform(reverb_send)); |
|
|
|
|
|
|
|
drum_reverb_send_mixer_l.gain(slot, (1.0 - pan) * volume_transform(reverb_send)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (drum_config[use_drum].drum_data != NULL && drum_config[use_drum].len > 0) { |
|
|
|
|
|
|
|
if (configuration.drums.pitch[use_drum] != 0) { |
|
|
|
|
|
|
|
Drum[slot]->enableInterpolation(true); |
|
|
|
|
|
|
|
Drum[slot]->setPlaybackRate(pow(2, float(configuration.drums.pitch[use_drum]) / 120.0)); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
Drum[slot]->enableInterpolation(false); |
|
|
|
|
|
|
|
Drum[slot]->setPlaybackRate(1.0); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
Drum[slot]->playRaw((int16_t*)drum_config[use_drum].drum_data, drum_config[use_drum].len, 1); |
|
|
|
|
|
|
|
#ifdef DEBUG |
|
|
|
|
|
|
|
Serial.printf(PSTR("Playing sample [%s][%c%c] on slot [%d] main volume [%d]: drum_data=%p, len=%d\n"), drum_config[use_drum].name, slot, configuration.drums.main_vol, drum_config[use_drum].drum_data, drum_config[use_drum].len); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Serial.print(F("Drum Slot [")); |
|
|
|
|
|
|
|
Serial.print(slot); |
|
|
|
|
|
|
|
Serial.print(F("]: Velocity=")); |
|
|
|
|
|
|
|
Serial.print(mapfloat(inVelocity, 0, 127, vol_min, vol_max), 2); |
|
|
|
|
|
|
|
Serial.print(F(" Pan=")); |
|
|
|
|
|
|
|
Serial.print(pan, 2); |
|
|
|
|
|
|
|
Serial.print(F(" ReverbSend=")); |
|
|
|
|
|
|
|
Serial.print(reverb_send, 2); |
|
|
|
|
|
|
|
Serial.print(F(" Pitch=")); |
|
|
|
|
|
|
|
Serial.print(configuration.drums.pitch[use_drum] / 10.0f, 1); |
|
|
|
|
|
|
|
Serial.print(F(" Playback speed=")); |
|
|
|
|
|
|
|
Serial.println(pow(2, float(configuration.drums.pitch[use_drum]) / 120.0)); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
} |
|
|
|
} |
|
|
|