From 7bac99937877e0af1d6d37cd6becf08d6af38220 Mon Sep 17 00:00:00 2001 From: Nil Geisweiller Date: Tue, 25 Jul 2006 22:31:30 +0000 Subject: DeicsOnze : add panic button --- muse/synti/deicsonze/README | 10 +- muse/synti/deicsonze/TODO | 2 + muse/synti/deicsonze/deicsonze.cpp | 9 + muse/synti/deicsonze/deicsonze.h | 4 + muse/synti/deicsonze/deicsonzegui.cpp | 116 +++- muse/synti/deicsonze/deicsonzegui.h | 10 +- muse/synti/deicsonze/deicsonzegui.ui | 1152 ++++++++++++++++++++------------ muse/synti/deicsonze/deicsonzepreset.h | 1 - 8 files changed, 825 insertions(+), 479 deletions(-) diff --git a/muse/synti/deicsonze/README b/muse/synti/deicsonze/README index 8f402e51..f17a64d7 100644 --- a/muse/synti/deicsonze/README +++ b/muse/synti/deicsonze/README @@ -3,16 +3,12 @@ FM synthesis of the YAMAHA DX11 synthesizer/TX81Z sound module. It contains over 2000 presets archived by Bryan Sutula belonging to the public domain. If by any chance you find some of them that are under copyright please -contact me to take it off as soon as possible. +contact me to take them off. -Not every function is implemented but it starts to sound like the original -(and even better). Pitch envelope, portamento, pitch bend, modulation and some +Not every function is implemented but it's already sounding like the original +(even better). Pitch envelope, portamento, pitch bend, modulation and some others are not implemented yet. -The vertical sliders are inverted because QTDesigner doesn't have the feature -of slider invertion, since I think that it will get it before I will finish -DeicsOnze I'm waiting for a QT improvement. - The files with the extention .fig in the directory pics have been made with xfig. diff --git a/muse/synti/deicsonze/TODO b/muse/synti/deicsonze/TODO index b4e6a9af..e7ab96c5 100644 --- a/muse/synti/deicsonze/TODO +++ b/muse/synti/deicsonze/TODO @@ -13,3 +13,5 @@ - getPatchInfo - Optimize the code, make 3 level of quality sound - Remember the last directory +- instance for each channel +- Create SutulaBank.dei diff --git a/muse/synti/deicsonze/deicsonze.cpp b/muse/synti/deicsonze/deicsonze.cpp index 75d25076..76b08b5a 100644 --- a/muse/synti/deicsonze/deicsonze.cpp +++ b/muse/synti/deicsonze/deicsonze.cpp @@ -425,6 +425,13 @@ void DeicsOnze::initGlobal() { //INSTPREFIX + "/share/" + PACKAGEVERSION + "/presets/deicsonze/ARCH_ALIN"; } +//--------------------------------------------------------- +// resetVoices +//--------------------------------------------------------- +void DeicsOnze::resetVoices() { + initVoices(); //take care of this if initVoices() changes +} + //--------------------------------------------------------- // initVoice //--------------------------------------------------------- @@ -1812,6 +1819,8 @@ bool DeicsOnze::sysex(int length, const unsigned char* data, bool fromGui) { _gui->writeEvent(evSysex); } break; + case SYSEX_PANIC: + resetVoices(); default: break; } diff --git a/muse/synti/deicsonze/deicsonze.h b/muse/synti/deicsonze/deicsonze.h index 77bcd0c7..7d456d35 100644 --- a/muse/synti/deicsonze/deicsonze.h +++ b/muse/synti/deicsonze/deicsonze.h @@ -77,6 +77,8 @@ #define NBRWAVES 8 //number wave forms, do not change #define NBRBANKPRESETS 32 +#define MAXNBRVOICES 64 +#define NBRCHANNEL 16 #define SYSEX_INIT_DATA 1 #define SYSEX_INIT_DATA_VERSION 1 @@ -109,6 +111,7 @@ #define EDITBACKGROUNDCOLORSTR "EditBackgroundColor" #define COLORSYSEXLENGTH 12 #define SYSEX_UPDATESETGUI 25 +#define SYSEX_PANIC 30 #define NUMMASTERVOL SAVEINITLENGTH #define NUMCURRENTPROG SAVEINITLENGTH+1 @@ -291,6 +294,7 @@ class DeicsOnze : public Mess { Preset* findPreset(int hbank, int lbank, int prog); void initCtrls(); void initGlobal(); + void resetVoices(); //when panic is pressed void initVoice(unsigned char v); void initVoices(); void initPreset(); diff --git a/muse/synti/deicsonze/deicsonzegui.cpp b/muse/synti/deicsonze/deicsonzegui.cpp index cc3bb7aa..35e06194 100644 --- a/muse/synti/deicsonze/deicsonzegui.cpp +++ b/muse/synti/deicsonze/deicsonzegui.cpp @@ -53,9 +53,11 @@ DeicsOnzeGui::DeicsOnzeGui(DeicsOnze* deicsOnze) envelopeGraph[2] = new QFrameEnvelope(envelope3Frame, this, 2); envelopeGraph[3] = new QFrameEnvelope(envelope4Frame, this, 3); + //Panic + connect(panicButton, SIGNAL(pressed()), this, SLOT(setPanic())); //Quick edit - connect(volumeKnob, SIGNAL(valueChanged(float, int)), - this, SLOT(setVolKnob(float))); + connect(channelVolumeKnob, SIGNAL(valueChanged(float, int)), + this, SLOT(setChannelVolKnob(float))); connect(brightnessKnob, SIGNAL(valueChanged(float, int)), this, SLOT(setBrightnessKnob(float))); connect(modulationKnob, SIGNAL(valueChanged(float, int)), @@ -88,8 +90,8 @@ DeicsOnzeGui::DeicsOnzeGui(DeicsOnze* deicsOnze) this, SLOT(setBrowseInitSetPath())); //Midi in channel - connect(MidiInChComboBox, SIGNAL(activated(int)), - this, SLOT(setMidiInCh(int))); + //connect(MidiInChComboBox, SIGNAL(activated(int)), + // this, SLOT(setMidiInCh(int))); //Save mode ratio button connect(minSaveRadioButton, SIGNAL(toggled(bool)), this, SLOT(setSaveOnlyUsed(bool))); @@ -130,8 +132,8 @@ DeicsOnzeGui::DeicsOnzeGui(DeicsOnze* deicsOnze) this, SLOT(setLBank(int))); connect(progSpinBox, SIGNAL(valueChanged(int)), this, SLOT(setProg(int))); //Global - connect(masterVolSlider, SIGNAL(valueChanged(int)), - this, SLOT(setMasterVol(int))); + connect(channelPanSlider, SIGNAL(valueChanged(int)), + this, SLOT(setPanVol(int))); connect(feedbackSlider, SIGNAL(valueChanged(int)), this, SLOT(setFeedback(int))); connect(LFOWaveComboBox, SIGNAL(activated(int)), @@ -327,6 +329,15 @@ DeicsOnzeGui::DeicsOnzeGui(DeicsOnze* deicsOnze) } +//----------------------------------------------------------- +// setPanic +//----------------------------------------------------------- +void DeicsOnzeGui::setPanic() { + unsigned char* message = new unsigned char[1]; + message[0]=SYSEX_PANIC; + sendSysex(message, 1); +} + //----------------------------------------------------------- // setNbrVoices //----------------------------------------------------------- @@ -593,6 +604,49 @@ void DeicsOnzeGui::setTextColor(const QColor & c) { QPalette p = this->palette(); p.setColor(QPalette::WindowText, c); this->setPalette(p); + quickEditGroupBox->setPalette(p); + channelPanGroupBox->setPalette(p); + FeedbackGroupBox->setPalette(p); + LFOGroupBox->setPalette(p); + ModulationMatrixGroupBox->setPalette(p); + FeedbackGroupBox->setPalette(p); + pitchEnvGroupBox->setPalette(p); + Frequency1groupBox->setPalette(p); + OUT1groupBox->setPalette(p); + Env1GroupBox->setPalette(p); + Scaling1GroupBox->setPalette(p); + DetWaveEGS1GroupBox->setPalette(p); + sensitivity1groupBox->setPalette(p); + Frequency2groupBox->setPalette(p); + OUT2groupBox->setPalette(p); + Env2GroupBox->setPalette(p); + Scaling2GroupBox->setPalette(p); + DetWaveEGS2GroupBox->setPalette(p); + sensitivity2groupBox->setPalette(p); + Frequency3groupBox->setPalette(p); + OUT3groupBox->setPalette(p); + Env3GroupBox->setPalette(p); + Scaling3GroupBox->setPalette(p); + DetWaveEGS3GroupBox->setPalette(p); + sensitivity3groupBox->setPalette(p); + Frequency4groupBox->setPalette(p); + OUT4groupBox->setPalette(p); + Env4GroupBox->setPalette(p); + Scaling4GroupBox->setPalette(p); + DetWaveEGS4GroupBox->setPalette(p); + sensitivity4groupBox->setPalette(p); + transposeGroupBox->setPalette(p); + detuneGroupBox->setPalette(p); + footSWGroupBox->setPalette(p); + pitchBendRangeGroupBox->setPalette(p); + reverbGroupBox->setPalette(p); + modeGroupBox->setPalette(p); + portamentoGroupBox->setPalette(p); + colorGroupBox->setPalette(p); + pathGroupBox->setPalette(p); + qualityGroupBox->setPalette(p); + saveModeButtonGroup->setPalette(p); + fileGroupBox->setPalette(p); } void DeicsOnzeGui::setBackgroundColor(const QColor & c) { QPalette p = this->palette(); @@ -603,12 +657,15 @@ void DeicsOnzeGui::setEditTextColor(const QColor & c) { QPalette p = this->palette(); p.setColor(QPalette::Text, c); this->setPalette(p); - volumeKnob->setScaleValueColor(c); + masterVolKnob->setScaleValueColor(c); + channelVolumeKnob->setScaleValueColor(c); brightnessKnob->setScaleValueColor(c); modulationKnob->setScaleValueColor(c); detuneKnob->setScaleValueColor(c); attackKnob->setScaleValueColor(c); releaseKnob->setScaleValueColor(c); + p.setColor(QPalette::WindowText, c); + presetNameLabel->setPalette(p); } void DeicsOnzeGui::setEditBackgroundColor(const QColor & c) { QPalette p = this->palette(); @@ -629,7 +686,8 @@ void DeicsOnzeGui::setEditBackgroundColor(const QColor & c) { p = envelope4Frame->palette(); p.setColor(QPalette::Window, c); envelope4Frame->setPalette(p); - volumeKnob->setScaleColor(c); + masterVolKnob->setScaleColor(c); + channelVolumeKnob->setScaleColor(c); brightnessKnob->setScaleColor(c); modulationKnob->setScaleColor(c); detuneKnob->setScaleColor(c); @@ -2014,8 +2072,8 @@ void DeicsOnzeGui::setBrowseInitSetPath() { //----------------------------------------------------------- // Quick Edit //----------------------------------------------------------- -void DeicsOnzeGui::setVolKnob(float val) { - masterVolSlider->setValue((int)(val*MAXMASTERVOLUME)); +void DeicsOnzeGui::setChannelVolKnob(float val) { + channelVolumeKnob->setValue((int)(val*MAXMASTERVOLUME)); //TODO to change } void DeicsOnzeGui::setBrightnessKnob(float val) { sendController(0, CTRL_FINEBRIGHTNESS, (int)(val*(float)MAXFINEBRIGHTNESS)); @@ -2035,10 +2093,16 @@ void DeicsOnzeGui::setReleaseKnob(float val) { //----------------------------------------------------------- // Global control //----------------------------------------------------------- -void DeicsOnzeGui::setMasterVol(int mv) { - volumeKnob->blockSignals(true); - volumeKnob->setValue((float)mv/(float)MAXMASTERVOLUME); - volumeKnob->blockSignals(false); +void DeicsOnzeGui::setPanVol(int mv) { //TODO + //volumeKnob->blockSignals(true); + //volumeKnob->setValue((float)mv/(float)MAXMASTERVOLUME); + //volumeKnob->blockSignals(false); + //sendController(0, CTRL_MASTERVOLUME, mv); +} +void DeicsOnzeGui::setMasterVol(int mv) { //to change + //volumeKnob->blockSignals(true); + //volumeKnob->setValue((float)mv/(float)MAXMASTERVOLUME); + //volumeKnob->blockSignals(false); sendController(0, CTRL_MASTERVOLUME, mv); } @@ -2517,9 +2581,9 @@ void DeicsOnzeGui::updateNbrVoices(int val) { nbrVoicesSpinBox->blockSignals(false); } void DeicsOnzeGui::updateMidiInCh(int val) { - MidiInChComboBox->blockSignals(true); - MidiInChComboBox->setCurrentIndex(val); - MidiInChComboBox->blockSignals(false); + //MidiInChComboBox->blockSignals(true); + //MidiInChComboBox->setCurrentIndex(val); + //MidiInChComboBox->blockSignals(false); } void DeicsOnzeGui::updateQuality(int val) { qualityComboBox->blockSignals(true); @@ -3351,15 +3415,15 @@ void DeicsOnzeGui::updateGLOBALDETUNE(int val) { detuneKnob->blockSignals(false); } void DeicsOnzeGui::updateMASTERVOLUME(int val) { - masterVolSlider->blockSignals(true); - masterVolSlider->setValue(val); - masterVolSlider->blockSignals(false); - masterVolSpinBox->blockSignals(true); - masterVolSpinBox->setValue(val); - masterVolSpinBox->blockSignals(false); - volumeKnob->blockSignals(true); - volumeKnob->setValue(((float)val)/(float)MAXMASTERVOLUME); - volumeKnob->blockSignals(false); + //masterVolSlider->blockSignals(true); + //masterVolSlider->setValue(val); + //masterVolSlider->blockSignals(false); + //masterVolSpinBox->blockSignals(true); + //masterVolSpinBox->setValue(val); + //masterVolSpinBox->blockSignals(false); + channelVolumeKnob->blockSignals(true); + channelVolumeKnob->setValue(((float)val)/(float)MAXMASTERVOLUME); + channelVolumeKnob->blockSignals(false); } void DeicsOnzeGui::updateCategoryName(QString cn, bool enable) { categoryLineEdit->setEnabled(enable); diff --git a/muse/synti/deicsonze/deicsonzegui.h b/muse/synti/deicsonze/deicsonzegui.h index 09e463db..a8d28e93 100644 --- a/muse/synti/deicsonze/deicsonzegui.h +++ b/muse/synti/deicsonze/deicsonzegui.h @@ -118,11 +118,12 @@ class DeicsOnzeGui : public QDialog, public Ui::DeicsOnzeGuiBase, public MessGui QString lastDir; private slots: void readMessage(int); + void setPanic(); void setNbrVoices(int); void setSaveOnlyUsed(bool); void setSaveOnlyUsedComp(bool); void setSaveConfig(bool); - void setMidiInCh(int); + void setMidiInCh(int); //to change void setQuality(const QString&); void saveConfiguration(); void saveDefaultConfiguration(); @@ -133,7 +134,7 @@ class DeicsOnzeGui : public QDialog, public Ui::DeicsOnzeGuiBase, public MessGui void setInitSetPath(const QString&); void setBrowseInitSetPath(); //quick edit - void setVolKnob(float val); + void setChannelVolKnob(float val); void setBrightnessKnob(float val); void setModulationKnob(float val); void setDetuneKnob(float val); @@ -176,6 +177,7 @@ class DeicsOnzeGui : public QDialog, public Ui::DeicsOnzeGuiBase, public MessGui void setLBank(int); void setProg(int); //Global + void setPanVol(int); void setMasterVol(int); void setFeedback(int); void setLfoWave(int); @@ -299,7 +301,7 @@ class DeicsOnzeGui : public QDialog, public Ui::DeicsOnzeGuiBase, public MessGui //update the gui void setEnabledPreset(bool b); void updateNbrVoices(int val); - void updateMidiInCh(int val); + void updateMidiInCh(int val); //to change void updateQuality(int val); void updateSaveOnlyUsed(bool); void updateSaveConfig(bool); @@ -369,7 +371,7 @@ class DeicsOnzeGui : public QDialog, public Ui::DeicsOnzeGuiBase, public MessGui void updateOSW(int op, int val); void updateSHFT(int op, int val); void updateGLOBALDETUNE(int val); - void updateMASTERVOLUME(int val); + void updateMASTERVOLUME(int val); //to change void updateCategoryName(QString cn, bool enable); void updateSubcategoryName(QString sn, bool enable); void updatePresetName(QString pn, bool enable); diff --git a/muse/synti/deicsonze/deicsonzegui.ui b/muse/synti/deicsonze/deicsonzegui.ui index 3e8623e4..dd0ccc91 100644 --- a/muse/synti/deicsonze/deicsonzegui.ui +++ b/muse/synti/deicsonze/deicsonzegui.ui @@ -8,8 +8,8 @@ 0 0 - 544 - 570 + 586 + 663 @@ -40,6 +40,395 @@ 6 + + + QFrame::StyledPanel + + + Vol + + + Qt::AlignCenter + + + + + + + + 40 + 40 + + + + + + + + + + + + 9 + + + 6 + + + + + true + + + Number of Voices + + + 64 + + + 1 + + + 8 + + + + + + + QFrame::StyledPanel + + + Number of voices + + + Qt::AlignCenter + + + + + + + Enable + + + + + + + 16 + + + 1 + + + + + + + QFrame::StyledPanel + + + Channel + + + Qt::AlignCenter + + + + + + + + + + + 1000 + 1000 + + + + + + + 0 + 0 + 0 + + + 207 + 207 + 207 + + + 237 + 237 + 237 + + + 231 + 231 + 231 + + + 121 + 125 + 121 + + + 166 + 166 + 166 + + + 0 + 0 + 0 + + + 255 + 255 + 255 + + + 255 + 0 + 0 + + + 255 + 255 + 255 + + + 207 + 207 + 207 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 255 + 255 + 255 + + + 0 + 0 + 255 + + + 255 + 0 + 255 + + + 231 + 231 + 231 + + + + + 0 + 0 + 0 + + + 207 + 207 + 207 + + + 237 + 237 + 237 + + + 231 + 231 + 231 + + + 121 + 125 + 121 + + + 166 + 166 + 166 + + + 0 + 0 + 0 + + + 255 + 255 + 255 + + + 255 + 0 + 0 + + + 255 + 255 + 255 + + + 207 + 207 + 207 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + 255 + 255 + 255 + + + 0 + 0 + 255 + + + 255 + 0 + 255 + + + 231 + 231 + 231 + + + + + 121 + 125 + 121 + + + 207 + 207 + 207 + + + 237 + 237 + 237 + + + 231 + 231 + 231 + + + 121 + 125 + 121 + + + 166 + 166 + 166 + + + 121 + 125 + 121 + + + 255 + 255 + 255 + + + 121 + 125 + 121 + + + 207 + 207 + 207 + + + 207 + 207 + 207 + + + 0 + 0 + 0 + + + 121 + 125 + 121 + + + 207 + 207 + 207 + + + 0 + 0 + 255 + + + 255 + 0 + 255 + + + 231 + 231 + 231 + + + + + + + Sans Serif + 10 + 75 + false + true + false + false + + + + Panic! + + + + @@ -48,7 +437,7 @@ - Quick Edit + Quick Edit (per channel) @@ -135,7 +524,7 @@ - + QFrame::StyledPanel @@ -148,7 +537,7 @@ - + 1 @@ -188,9 +577,9 @@ Sans Serif 9 - 75 + 50 false - true + false false false @@ -209,7 +598,7 @@ - + @@ -231,6 +620,9 @@ QTabWidget::Rounded + + 0 + &Presets @@ -242,81 +634,78 @@ 6 - - + + + + false + + + Bank numerous + + + 128 + + + 1 + + + + + false - INITVOICE + NONE 12 - - - - - Sans Serif - 8 - 50 - false - false - false - false - + + + + false - - QFrame::NoFrame + + Bank numerous - - QFrame::Plain + + 128 - - DeicsOnze v0.3 Copyright (c) 2004-2006 Nil Geisweiller. Published under GPL licence. + + 1 - - - - Qt::CustomContextMenu - - + + + false - - - LBank - - - - - Subcategory - - + + NONE + + + 12 + - - - - Qt::CustomContextMenu - - + + + false - - - Prog - - - - - Preset - - + + Program numerous + + + 128 + + + 1 + @@ -363,80 +752,83 @@ - - - + + + + Qt::CustomContextMenu + + false - - Program numerous + + + Prog + + + + + Preset + + + + + + + + Qt::CustomContextMenu - - 128 + + false - - 1 + + + LBank + + + + + Subcategory + + + + + + + + + Sans Serif + 8 + 50 + false + false + false + false + + + + QFrame::NoFrame + + + QFrame::Plain + + + DeicsOnze v0.3 Copyright (c) 2004-2006 Nil Geisweiller. Published under GPL licence. - - + + false - NONE + INITVOICE 12 - - - - false - - - Bank numerous - - - 128 - - - 1 - - - - - - - false - - - NONE - - - 12 - - - - - - - false - - - Bank numerous - - - 128 - - - 1 - - - @@ -1095,9 +1487,9 @@ - + - Master Volume + Channel Panoramic @@ -1107,18 +1499,24 @@ 6 - + 13 Master Volume + + -127 + - 255 + 127 - 64 + 0 + + + 0 Qt::Horizontal @@ -1131,10 +1529,13 @@ Master volume - 255 + 127 + + + -127 - 64 + 0 @@ -4137,6 +4538,9 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin + + 0 + Foot Control @@ -5178,7 +5582,7 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin - &Configure + &Configure (global) @@ -5187,7 +5591,176 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin 6 - + + + + Quality + + + + 10 + + + 6 + + + + + false + + + + High + + + + + Middle + + + + + Low + + + + + + + + + + + Set Path + + + + 9 + + + 6 + + + + + Load the following set at the initialization : + + + true + + + + + + + Browse... + + + + + + + 128 + + + + + + + + + + Configuration File + + + + 9 + + + 6 + + + + + true + + + Save... + + + + + + + true + + + Load... + + + + + + + Save as default + + + + + + + + + + Save Mode (into the song) + + + + 10 + + + 6 + + + + + 13 + + + Save only the used presets + + + true + + + + + + + 13 + + + Save the entire set + + + + + + + 13 + + + Save the configuration + + + true + + + + + + + Colors @@ -5376,316 +5949,6 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin - - - - Save Mode (into the song) - - - - 10 - - - 6 - - - - - 13 - - - Save only the used presets - - - true - - - - - - - 13 - - - Save the entire set - - - - - - - 13 - - - Save the configuration - - - true - - - - - - - - - - Configuration File - - - - 9 - - - 6 - - - - - true - - - Save... - - - - - - - true - - - Load... - - - - - - - Save as default - - - - - - - - - - Set Path - - - - 9 - - - 6 - - - - - Load the following set at the initialization : - - - true - - - - - - - Browse... - - - - - - - 128 - - - - - - - - - - Nbr Voices - - - - 10 - - - 6 - - - - - true - - - Number of Voices - - - 64 - - - 1 - - - 8 - - - - - - - - - - Quality - - - - 10 - - - 6 - - - - - false - - - - High - - - - - Middle - - - - - Low - - - - - - - - - - - Midi Input Ch - - - - 10 - - - 6 - - - - - true - - - - All - - - - - 1 - - - - - 2 - - - - - 3 - - - - - 4 - - - - - 5 - - - - - 6 - - - - - 7 - - - - - 8 - - - - - 9 - - - - - 10 - - - - - 11 - - - - - 12 - - - - - 13 - - - - - 14 - - - - - 15 - - - - - 16 - - - - - - - @@ -5695,9 +5958,16 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin + + Awl::VolKnob + Awl::Knob +
awl/volknob.h
+ 0 + +
Awl::Knob - + QWidget
awl/knob.h
0 @@ -5706,7 +5976,7 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin deicsOnzeTabWidget presetLineEdit - masterVolSlider + channelPanSlider feedbackSlider LFOSyncCheckBox PModSensSlider @@ -5829,7 +6099,7 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin - masterVolSlider + channelPanSlider valueChanged(int) masterVolSpinBox setValue(int) @@ -5847,7 +6117,7 @@ Wave form 8 = <i>if <b>t</b>&#060 pi then sin(2*<b>t</b>)*sin masterVolSpinBox valueChanged(int) - masterVolSlider + channelPanSlider setValue(int) diff --git a/muse/synti/deicsonze/deicsonzepreset.h b/muse/synti/deicsonze/deicsonzepreset.h index c85d91a3..e9132380 100644 --- a/muse/synti/deicsonze/deicsonzepreset.h +++ b/muse/synti/deicsonze/deicsonzepreset.h @@ -269,7 +269,6 @@ #define MIDRELEASE 64 #define NBRVOICESSTR "NumberOfVoices" #define CTRL_NBRVOICES 127+CTRLOFFSET -#define MAXNBRVOICES 64 class Preset; class Subcategory; -- cgit v1.2.3