You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dexed/Source/PluginParam.cpp

471 lines
13 KiB

11 years ago
/**
*
* Copyright (c) 2013 Pascal Gauthier.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*/
#include <time.h>
11 years ago
#include "PluginParam.h"
#include "PluginProcessor.h"
#include "PluginEditor.h"
11 years ago
// ************************************************************************
//
Ctrl::Ctrl(String name) {
11 years ago
label << name;
slider = NULL;
button = NULL;
comboBox = NULL;
11 years ago
}
void Ctrl::bind(Slider *s) {
11 years ago
slider = s;
updateComponent();
s->addListener(this);
11 years ago
}
void Ctrl::bind(Button *b) {
11 years ago
button = b;
updateComponent();
b->addListener(this);
11 years ago
}
void Ctrl::bind(ComboBox *c) {
11 years ago
comboBox = c;
updateComponent();
c->addListener(this);
11 years ago
}
void Ctrl::unbind() {
11 years ago
if (slider != NULL) {
11 years ago
slider->removeListener(this);
slider = NULL;
}
11 years ago
if (button != NULL) {
11 years ago
button->removeListener(this);
button = NULL;
}
11 years ago
if (comboBox != NULL) {
11 years ago
comboBox->removeListener(this);
comboBox = NULL;
}
11 years ago
}
void Ctrl::publishValue(float value) {
parent->beginParameterChangeGesture(idx);
parent->setParameterNotifyingHost(idx, value);
parent->endParameterChangeGesture(idx);
}
void Ctrl::sliderValueChanged(Slider* moved) {
publishValue(moved->getValue());
}
void Ctrl::buttonClicked(Button* clicked) {
publishValue(clicked->getToggleStateValue() == 1 ? 1 : 0);
}
void Ctrl::comboBoxChanged(ComboBox* combo) {
publishValue((combo->getSelectedId() - 1) / combo->getNumItems());
}
// ************************************************************************
// CtrlDX - control DX mapping
CtrlFloat::CtrlFloat(String name, float *storageValue) : Ctrl(name) {
11 years ago
vPointer = storageValue;
}
float CtrlFloat::getValueHost() {
11 years ago
return *vPointer;
}
void CtrlFloat::setValueHost(float v) {
11 years ago
*vPointer = v;
}
String CtrlFloat::getValueDisplay() {
11 years ago
String display;
display << *vPointer;
return display;
}
void CtrlFloat::updateComponent() {
if (slider != NULL) {
slider->setValue(*vPointer, dontSendNotification);
}
}
11 years ago
// ************************************************************************
// CtrlDX - control DX mapping
11 years ago
CtrlDX::CtrlDX(String name, int steps, int offset, int displayValue) : Ctrl(name) {
this->displayValue = displayValue;
11 years ago
this->steps = steps;
dxValue = 0;
11 years ago
dxOffset = offset;
11 years ago
}
float CtrlDX::getValueHost() {
return dxValue / steps;
11 years ago
}
void CtrlDX::setValueHost(float f) {
11 years ago
setValue((f * steps));
11 years ago
}
void CtrlDX::setValue(int v) {
TRACE("setting value %d %d", dxOffset, v);
11 years ago
if (v >= steps) {
11 years ago
TRACE("WARNING: value too big %s : %d", label.toRawUTF8(), v);
11 years ago
v = steps - 1;
11 years ago
}
dxValue = v;
11 years ago
if (dxOffset >= 0) {
if (parent != NULL)
parent->setDxValue(dxOffset, dxValue);
11 years ago
}
11 years ago
}
int CtrlDX::getValue() {
11 years ago
if (dxOffset >= 0)
dxValue = parent->data[dxOffset];
return dxValue;
11 years ago
}
int CtrlDX::getOffset() {
return dxOffset;
}
String CtrlDX::getValueDisplay() {
11 years ago
String ret;
11 years ago
ret << ( getValue() + displayValue );
11 years ago
return ret;
11 years ago
}
void CtrlDX::publishValue(float value) {
11 years ago
Ctrl::publishValue(value / steps);
11 years ago
DexedAudioProcessorEditor *editor = (DexedAudioProcessorEditor *) parent->getActiveEditor();
if ( editor == NULL )
11 years ago
return;
String msg;
msg << label << " = " << getValueDisplay();
editor->global.setParamMessage(msg);
11 years ago
}
void CtrlDX::sliderValueChanged(Slider* moved) {
11 years ago
publishValue(((int) moved->getValue() - displayValue));
11 years ago
}
11 years ago
void CtrlDX::comboBoxChanged(ComboBox* combo) {
publishValue(combo->getSelectedId() - 1);
11 years ago
}
void CtrlDX::updateComponent() {
11 years ago
if (slider != NULL) {
11 years ago
slider->setValue(getValue() + displayValue,
dontSendNotification);
11 years ago
}
11 years ago
if (button != NULL) {
if (getValue() == 0) {
button->setToggleState(false,
dontSendNotification);
11 years ago
} else {
11 years ago
button->setToggleState(true,
dontSendNotification);
11 years ago
}
}
11 years ago
if (comboBox != NULL) {
11 years ago
int cvalue = getValue() + 1;
11 years ago
if (comboBox->getNumItems() <= cvalue) {
11 years ago
cvalue = comboBox->getNumItems();
}
comboBox->setSelectedId(cvalue, dontSendNotification);
11 years ago
}
11 years ago
}
/***************************************************************
*
*/
11 years ago
void DexedAudioProcessor::initCtrl() {
loadBuiltin(0);
11 years ago
currentProgram = 0;
fxCutoff = new CtrlFloat("Cutoff", &fx.uiCutoff);
ctrl.add(fxCutoff);
fxReso = new CtrlFloat("Resonance", &fx.uiReso);
ctrl.add(fxReso);
11 years ago
output = new CtrlFloat("Output", &fx.uiGain);
ctrl.add(output);
11 years ago
algo = new CtrlDX("ALGORITHM", 32, 134, 1);
ctrl.add(algo);
feedback = new CtrlDX("FEEDBACK", 8, 135);
ctrl.add(feedback);
oscSync = new CtrlDX("OSC KEY SYNC", 2, 136);
ctrl.add(oscSync);
lfoRate = new CtrlDX("LFO SPEED", 100, 137);
ctrl.add(lfoRate);
lfoDelay = new CtrlDX("LFO DELAY", 100, 138);
ctrl.add(lfoDelay);
lfoPitchDepth = new CtrlDX("LFO PM DEPTH", 100, 139);
ctrl.add(lfoPitchDepth);
lfoAmpDepth = new CtrlDX("LFO AM DEPTH", 100, 140);
ctrl.add(lfoAmpDepth);
lfoSync = new CtrlDX("LFO KEY SYNC", 2, 141);
ctrl.add(lfoSync);
lfoWaveform = new CtrlDX("LFO WAVE", 5, 142);
ctrl.add(lfoWaveform);
transpose = new CtrlDX("MIDDLE C", 49, 144);
ctrl.add(transpose);
pitchModSens = new CtrlDX("P MODE SENS.", 8, 143);
ctrl.add(pitchModSens);
for (int i=0;i<4;i++) {
String rate;
rate << "PITCH EG RATE " << (i+1);
pitchEgRate[i] = new CtrlDX(rate, 99, 126+i);
ctrl.add(pitchEgRate[i]);
}
for (int i=0;i<4;i++) {
String level;
level << "PITCH EG LEVEL " << (i+1);
pitchEgLevel[i] = new CtrlDX(level, 99, 130+i);
ctrl.add(pitchEgLevel[i]);
}
11 years ago
// fill operator values;
11 years ago
for (int i = 0; i < 6; i++) {
//// In the Sysex, OP6 comes first, then OP5...
int opTarget = (5-i) * 21;
int opVal = i;
String opName;
11 years ago
opName << "OP" << (opVal + 1);
for (int j = 0; j < 4; j++) {
11 years ago
String opRate;
opRate << opName << " EG RATE " << (j + 1);
11 years ago
opCtrl[opVal].egRate[j] = new CtrlDX(opRate, 100, opTarget + j);
ctrl.add(opCtrl[opVal].egRate[j]);
}
for (int j = 0; j < 4; j++) {
11 years ago
String opLevel;
opLevel << opName << " EG LEVEL " << (j + 1);
opCtrl[opVal].egLevel[j] = new CtrlDX(opLevel, 100, opTarget + j + 4);
ctrl.add(opCtrl[opVal].egLevel[j]);
11 years ago
}
11 years ago
String opVol;
opVol << opName << " OUTPUT LEVEL";
11 years ago
opCtrl[opVal].level = new CtrlDX(opVol, 100, opTarget + 16);
ctrl.add(opCtrl[opVal].level);
11 years ago
11 years ago
String opMode;
opMode << opName << " MODE";
11 years ago
opCtrl[opVal].opMode = new CtrlDX(opMode, 2, opTarget + 17);
ctrl.add(opCtrl[opVal].opMode);
11 years ago
11 years ago
String coarse;
coarse << opName << " F COARSE";
11 years ago
opCtrl[opVal].coarse = new CtrlDX(coarse, 32, opTarget + 18);
ctrl.add(opCtrl[opVal].coarse);
11 years ago
11 years ago
String fine;
fine << opName << " F FINE";
11 years ago
opCtrl[opVal].fine = new CtrlDX(fine, 100, opTarget + 19);
ctrl.add(opCtrl[opVal].fine);
11 years ago
String detune;
detune << opName << " OSC DETUNE";
11 years ago
opCtrl[opVal].detune = new CtrlDX(detune, 15, opTarget + 20, -7);
ctrl.add(opCtrl[opVal].detune);
String sclBrkPt;
sclBrkPt << opName << " BREAK POINT";
11 years ago
opCtrl[opVal].sclBrkPt = new CtrlDX(sclBrkPt, 100, opTarget + 8);
ctrl.add(opCtrl[opVal].sclBrkPt);
String sclLeftDepth;
sclLeftDepth << opName << " L SCALE DEPTH";
11 years ago
opCtrl[opVal].sclLeftDepth = new CtrlDX(sclLeftDepth, 100, opTarget + 9);
ctrl.add(opCtrl[opVal].sclLeftDepth);
String sclRightDepth;
sclRightDepth << opName << " R SCALE DEPTH";
11 years ago
opCtrl[opVal].sclRightDepth = new CtrlDX(sclRightDepth, 100, opTarget + 10);
ctrl.add(opCtrl[opVal].sclRightDepth);
String sclLeftCurve;
sclLeftCurve << opName << " L KEY SCALE";
11 years ago
opCtrl[opVal].sclLeftCurve = new CtrlDX(sclLeftCurve, 4, opTarget + 11);
ctrl.add(opCtrl[opVal].sclLeftCurve);
String sclRightCurve;
sclRightCurve << opName << " R KEY SCALE";
11 years ago
opCtrl[opVal].sclRightCurve = new CtrlDX(sclRightCurve, 4, opTarget + 12);
ctrl.add(opCtrl[opVal].sclRightCurve);
String sclRate;
sclRate << opName << " RATE SCALING";
11 years ago
opCtrl[opVal].sclRate = new CtrlDX(sclRate, 8, opTarget + 13);
ctrl.add(opCtrl[opVal].sclRate);
String ampModSens;
ampModSens << opName << " A MOD SENS.";
11 years ago
opCtrl[opVal].ampModSens = new CtrlDX(ampModSens, 4, opTarget + 14);
ctrl.add(opCtrl[opVal].ampModSens);
String velModSens;
velModSens << opName << " KEY VELOCITY";
11 years ago
opCtrl[opVal].velModSens = new CtrlDX(velModSens, 8, opTarget + 15);
ctrl.add(opCtrl[opVal].velModSens);
11 years ago
}
for (int i=0; i < ctrl.size(); i++) {
11 years ago
ctrl[i]->idx = i;
ctrl[i]->parent = this;
11 years ago
}
}
void DexedAudioProcessor::setDxValue(int offset, int v) {
11 years ago
TRACE("setting dx %d %d", offset, v);
refreshVoice = true;
11 years ago
if (offset >= 0)
11 years ago
data[offset] = v;
11 years ago
if (!sendSysexChange)
return;
uint8 msg[7] = { 0xF0, 0x43, 0x10, offset > 127, 0, (uint8) v, 0xF7 };
msg[4] = offset & 0x7F;
11 years ago
midiOut.addEvent(msg, 7, 0);
11 years ago
}
void DexedAudioProcessor::unbindUI() {
11 years ago
for (int i = 0; i < ctrl.size(); i++) {
11 years ago
ctrl[i]->unbind();
11 years ago
}
}
//==============================================================================
int DexedAudioProcessor::getNumParameters() {
return ctrl.size();
}
11 years ago
float DexedAudioProcessor::getParameter(int index) {
return ctrl[index]->getValueHost();
11 years ago
}
11 years ago
void DexedAudioProcessor::setParameter(int index, float newValue) {
ctrl[index]->setValueHost(newValue);
forceRefreshUI = true;
11 years ago
}
int DexedAudioProcessor::getNumPrograms() {
return 32;
}
int DexedAudioProcessor::getCurrentProgram() {
11 years ago
return currentProgram;
11 years ago
}
11 years ago
void DexedAudioProcessor::setCurrentProgram(int index) {
TRACE("setting program %d state", index);
if ( lastStateSave + 2 > time(NULL) ) {
TRACE("skipping save, storage recall to close");
return;
}
for (int i = 0; i < MAX_ACTIVE_NOTES; i++) {
if (voices[i].keydown == false && voices[i].live == true) {
voices[i].live = false;
11 years ago
}
}
index = index > 31 ? 31 : index;
unpackProgram(index);
lfo.reset(data + 137);
11 years ago
currentProgram = index;
triggerAsyncUpdate();
11 years ago
}
11 years ago
const String DexedAudioProcessor::getProgramName(int index) {
if (index >= 32)
11 years ago
index = 31;
11 years ago
return programNames[index];
11 years ago
}
11 years ago
void DexedAudioProcessor::changeProgramName(int index, const String& newName) {
11 years ago
}
11 years ago
const String DexedAudioProcessor::getParameterName(int index) {
11 years ago
return ctrl[index]->label;
}
11 years ago
const String DexedAudioProcessor::getParameterText(int index) {
11 years ago
return ctrl[index]->getValueDisplay();
}
void DexedAudioProcessor::loadPreference() {
PropertiesFile prop(prefOptions);
if ( ! prop.isValidFile() ) {
return;
}
if ( prop.containsKey( String("normalizeDxVelocity") ) ) {
normalizeDxVelocity = prop.getIntValue( String("normalizeDxVelocity") );
}
if ( prop.containsKey( String("pitchRange") ) ) {
controllers.values_[kControllerPitchRange] = prop.getIntValue( String("pitchRange") );
}
if ( prop.containsKey( String("pitchStep") ) ) {
controllers.values_[kControllerPitchStep] = prop.getIntValue( String("pitchStep") );
}
}
11 years ago
void DexedAudioProcessor::savePreference() {
PropertiesFile prop(prefOptions);
prop.setValue(String("normalizeDxVelocity"), normalizeDxVelocity);
prop.setValue(String("pitchRange"), controllers.values_[kControllerPitchRange]);
prop.setValue(String("pitchStep"), controllers.values_[kControllerPitchStep]);
prop.save();
}
11 years ago