summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mdaPiano.cpp11
-rw-r--r--src/mdaPianoVoice.h1
2 files changed, 8 insertions, 4 deletions
diff --git a/src/mdaPiano.cpp b/src/mdaPiano.cpp
index 3e44cc7..fbd0665 100644
--- a/src/mdaPiano.cpp
+++ b/src/mdaPiano.cpp
@@ -144,10 +144,13 @@ void mdaPiano::handle_midi(uint32_t size, unsigned char* data) {
case 0x40: //sustain pedal
case 0x42: //sustenuto pedal
sustain = data[2] & 0x40;
- if(sustain==0)
- {
- notes[npos++] = SUSTAIN; //end all sustained notes
- notes[npos++] = 0;
+
+ for (unsigned i = 0; i < NVOICES; ++i) {
+ voices[i]->set_sustain(sustain);
+ //if pedal was released: dampen sustained notes
+ if((sustain==0) && (voices[i]->is_sustained())) {
+ voices[i]->release(0);
+ }
}
break;
diff --git a/src/mdaPianoVoice.h b/src/mdaPianoVoice.h
index 22f8218..e50c176 100644
--- a/src/mdaPianoVoice.h
+++ b/src/mdaPianoVoice.h
@@ -50,6 +50,7 @@ class mdaPianoVoice : public LV2::Voice {
public:
mdaPianoVoice(double, short*, KGRP*);
+ void set_sustain(unsigned short v) { sustain = v; }
void set_volume(float v) { volume = v; }
void set_muff(float v) { muff = v; }