commit 418e171c5c5ab70d5d07c03eef959f06605c457b
parent b42db72a53f70c7ff606e8870bd11f1b8ccfe566
Author: fundamental <[email protected]>
Date: Sat, 3 Oct 2015 12:12:57 -0400
UI: Partial Fix For External Osc/Mod in ADsynth
Dropdown choices now allow changing to different oscillator sources.
Oscillator views are still inconsistent with regard to which oscillator source
is selected.
Diffstat:
2 files changed, 29 insertions(+), 9 deletions(-)
diff --git a/src/Params/ADnoteParameters.cpp b/src/Params/ADnoteParameters.cpp
@@ -65,8 +65,8 @@ static const Ports voicePorts = {
rOption(Type, rOptions(Sound,Noise), "Type of Sound"),
rParamZyn(PDelay, "Voice Startup Delay"),
rToggle(Presonance, "Resonance Enable"),
- rParamZyn(Pextoscil, "External Oscilator Selection"),
- rParamZyn(PextFMoscil, "External FM Oscilator Selection"),
+ rParamI(Pextoscil, rMap(min, -1), rMap(max, 16), "External Oscilator Selection"),
+ rParamI(PextFMoscil, rMap(min, -1), rMap(max, 16), "External FM Oscilator Selection"),
rParamZyn(Poscilphase, "Oscillator Phase"),
rParamZyn(PFMoscilphase, "FM Oscillator Phase"),
rToggle(Pfilterbypass, "Filter Bypass"),
diff --git a/src/UI/ADnoteUI.fl b/src/UI/ADnoteUI.fl
@@ -361,11 +361,11 @@ voiceFMparametersgroup->redraw();} open
xywh {560 410 75 20} down_box BORDER_BOX labelsize 10 textfont 1 textsize 10
code0 {o->add("Internal");}
code1 {char tmp[50]; for (int i=0;i<nvoice;i++) {sprintf(tmp,"ExtM.%2d",i+1);o->add(tmp);};}
- code3 {o->init("PextFMoscil",1);}
+ code3 {o->init("PextFMoscil",-1);}
class Fl_Osc_Choice
} {}
}
- Fl_Choice {} {
+ Fl_Choice extMod {
label {External Mod.}
callback {if ((int) o->value() != 0) {
modoscil->deactivate();
@@ -551,7 +551,7 @@ voiceonbutton->redraw();} open
xywh {5 470 65 15} down_box BORDER_BOX labelsize 10 align 5 textfont 1 textsize 10
code0 {o->add("Internal");}
code1 {char tmp[50]; for (int i=0;i<nvoice;i++) {sprintf(tmp,"Ext.%2d",i+1);o->add(tmp);};}
- code3 {o->init("Pextoscil",1);}
+ code3 {o->init("Pextoscil",-1);}
class Fl_Osc_Choice
} {}
Fl_Group {} {open
@@ -567,9 +567,9 @@ voiceonbutton->redraw();} open
label Unison
tooltip {Unison size} xywh {15 563 65 18} labelfont 1 align 5 minimum 1 maximum 64 step 1 value 1 textfont 1 textsize 11
code0 {o->init("Unison_size", 1);}
- code1 {o->lstep(5);}
+ code1 {o->lstep(5);}
class Fl_Osc_Counter
- } {}
+ }
Fl_Dial {} {
label Vibrato
tooltip Vibrato xywh {364 555 25 25} box ROUND_UP_BOX labelsize 10 align 1 maximum 127 step 1
@@ -802,9 +802,29 @@ delete(oscedit);
} {
code {nvoice = nvoice_;
loc = base+"VoicePar"+to_s(nvoice)+"/";
- char tmp[10];snprintf(tmp,10,"%d",nvoice+1);
+ char tmp[50];snprintf(tmp,10,"%d",nvoice+1);
activeVoiceID->label(strdup(tmp));
-ADnoteVoiceParameters->rebase(base+"VoicePar"+to_s(nvoice)+"/");} {selected
+ extoscil->clear();
+ extoscil->add("Internal");
+ for (int i=0;i<nvoice;i++) {
+ sprintf(tmp,"Ext.%2d",i+1);
+ extoscil->add(tmp);
+ };
+
+ extFMoscil->clear();
+ extFMoscil->add("Internal");
+ for (int i=0;i<nvoice;i++) {
+ sprintf(tmp,"ExtM.%2d",i+1);
+ extFMoscil->add(tmp);
+ }
+
+ extMod->clear();
+ extMod->add("OFF");
+ for (int i=0;i<nvoice;i++) {
+ sprintf(tmp,"ExtMod.%2d",i+1);
+ extMod->add(tmp);
+ }
+ ADnoteVoiceParameters->rebase(base+"VoicePar"+to_s(nvoice)+"/");} {selected
}
}
decl {int nvoice;} {private local