mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-25 02:04:23 +00:00
259 lines
10 KiB
C++
259 lines
10 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library.
|
|
Copyright (c) 2015 - ROLI Ltd.
|
|
|
|
Permission is granted to use this software under the terms of either:
|
|
a) the GPL v2 (or any later version)
|
|
b) the Affero GPL v3
|
|
|
|
Details of these licenses can be found at: www.gnu.org/licenses
|
|
|
|
JUCE 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.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
To release a closed-source product which uses JUCE, commercial licenses are
|
|
available: visit www.juce.com for more information.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
|
|
#ifndef MPESETUPCOMPONENT_H_INCLUDED
|
|
#define MPESETUPCOMPONENT_H_INCLUDED
|
|
|
|
|
|
class MPESetupComponent : public Component,
|
|
public ChangeBroadcaster,
|
|
private Button::Listener,
|
|
private ComboBox::Listener
|
|
{
|
|
public:
|
|
//==========================================================================
|
|
class Listener
|
|
{
|
|
public:
|
|
virtual ~Listener() {}
|
|
virtual void zoneAdded (MPEZone newZone) = 0;
|
|
virtual void allZonesCleared() = 0;
|
|
virtual void omniModeChanged (bool omniModeEnabled, int pitchbendRange) = 0;
|
|
virtual void voiceStealingEnabledChanged (bool voiceStealingEnabled) = 0;
|
|
virtual void numberOfVoicesChanged (int numberOfVoices) = 0;
|
|
};
|
|
|
|
void addListener (Listener* listenerToAdd) { listeners.add (listenerToAdd); }
|
|
void removeListener (Listener* listenerToRemove) { listeners.remove (listenerToRemove); }
|
|
|
|
//==========================================================================
|
|
MPESetupComponent()
|
|
: masterChannelLabel (String::empty, "Master channel:"),
|
|
noteChannelsLabel (String::empty, "Nr. of note channels:"),
|
|
masterPitchbendRangeLabel (String::empty, "Master pitchbend range (semitones):"),
|
|
notePitchbendRangeLabel (String::empty, "Note pitchbend range (semitones):"),
|
|
addZoneButton ("Add this zone"),
|
|
clearAllZonesButton ("Clear all zones"),
|
|
omniModeEnabledToggle ("Enable Omni Mode"),
|
|
voiceStealingEnabledToggle ("Enable synth voice stealing"),
|
|
numberOfVoicesLabel (String::empty, "Number of synth voices")
|
|
{
|
|
|
|
initialiseComboBoxWithConsecutiveIntegers (masterChannel, masterChannelLabel, 1, 15, defaultMasterChannel);
|
|
initialiseComboBoxWithConsecutiveIntegers (noteChannels, noteChannelsLabel, 1, 15, defaultNoteChannels);
|
|
initialiseComboBoxWithConsecutiveIntegers (masterPitchbendRange, masterPitchbendRangeLabel, 0, 96, defaultMasterPitchbendRange);
|
|
initialiseComboBoxWithConsecutiveIntegers (notePitchbendRange, notePitchbendRangeLabel, 0, 96, defaultNotePitchbendRange);
|
|
|
|
notePitchbendRange.addListener (this);
|
|
|
|
initialiseButton (addZoneButton);
|
|
initialiseButton (clearAllZonesButton);
|
|
initialiseButton (omniModeEnabledToggle);
|
|
initialiseButton (voiceStealingEnabledToggle);
|
|
|
|
initialiseComboBoxWithConsecutiveIntegers (numberOfVoices, numberOfVoicesLabel, 0, 21, 15);
|
|
}
|
|
|
|
//==========================================================================
|
|
void resized() override
|
|
{
|
|
Rectangle<int> r (proportionOfWidth (0.65f), 15, proportionOfWidth (0.25f), 3000);
|
|
const int h = 24;
|
|
const int hspace = 6;
|
|
const int hbigspace = 18;
|
|
|
|
masterChannel.setBounds (r.removeFromTop (h));
|
|
r.removeFromTop (hspace);
|
|
noteChannels.setBounds (r.removeFromTop (h));
|
|
r.removeFromTop (hspace);
|
|
masterPitchbendRange.setBounds (r.removeFromTop (h));
|
|
r.removeFromTop (hspace);
|
|
notePitchbendRange.setBounds (r.removeFromTop (h));
|
|
|
|
r.removeFromTop (hbigspace);
|
|
|
|
int buttonLeft = proportionOfWidth (0.5f);
|
|
|
|
addZoneButton.setBounds (r.removeFromTop (h).withLeft (buttonLeft));
|
|
r.removeFromTop (hspace);
|
|
clearAllZonesButton.setBounds (r.removeFromTop (h).withLeft (buttonLeft));
|
|
|
|
r.removeFromTop (hbigspace);
|
|
|
|
int toggleLeft = proportionOfWidth (0.25f);
|
|
|
|
omniModeEnabledToggle.setBounds (r.removeFromTop (h).withLeft (toggleLeft));
|
|
r.removeFromTop (hspace);
|
|
voiceStealingEnabledToggle.setBounds (r.removeFromTop (h).withLeft (toggleLeft));
|
|
r.removeFromTop (hspace);
|
|
numberOfVoices.setBounds (r.removeFromTop (h));
|
|
}
|
|
|
|
private:
|
|
//==========================================================================
|
|
void initialiseComboBoxWithConsecutiveIntegers (ComboBox& comboBox, Label& labelToAttach,
|
|
int firstValue, int numValues, int valueToSelect)
|
|
{
|
|
addAndMakeVisible (comboBox);
|
|
|
|
for (int i = 0; i < numValues; ++i)
|
|
comboBox.addItem (String (i + firstValue), i + 1);
|
|
|
|
comboBox.setSelectedId (valueToSelect - firstValue + 1);
|
|
labelToAttach.attachToComponent (&comboBox, true);
|
|
}
|
|
|
|
//==========================================================================
|
|
void initialiseButton (Button& button)
|
|
{
|
|
addAndMakeVisible (button);
|
|
button.addListener (this);
|
|
}
|
|
|
|
//==========================================================================
|
|
void buttonClicked (Button* button) override
|
|
{
|
|
if (button == &addZoneButton)
|
|
addZoneButtonClicked();
|
|
else if (button == &clearAllZonesButton)
|
|
clearAllZonesButtonClicked();
|
|
else if (button == &omniModeEnabledToggle)
|
|
omniModeEnabledToggleClicked();
|
|
else if (button == &voiceStealingEnabledToggle)
|
|
voiceStealingEnabledToggleClicked();
|
|
}
|
|
|
|
//==========================================================================
|
|
void addZoneButtonClicked()
|
|
{
|
|
if (selectedZoneParametersValid())
|
|
{
|
|
MPEZone newZone (masterChannel.getText().getIntValue(),
|
|
noteChannels.getText().getIntValue(),
|
|
notePitchbendRange.getText().getIntValue(),
|
|
masterPitchbendRange.getText().getIntValue());
|
|
|
|
zoneLayout.addZone (newZone);
|
|
listeners.call (&MPESetupComponent::Listener::zoneAdded, newZone);
|
|
}
|
|
else
|
|
{
|
|
handleInvalidNrOfNoteChannels();
|
|
}
|
|
}
|
|
|
|
//==========================================================================
|
|
void clearAllZonesButtonClicked()
|
|
{
|
|
zoneLayout.clearAllZones();
|
|
listeners.call (&MPESetupComponent::Listener::allZonesCleared);
|
|
}
|
|
|
|
//==========================================================================
|
|
void omniModeEnabledToggleClicked()
|
|
{
|
|
bool omniModeEnabled = omniModeEnabledToggle.getToggleState();
|
|
|
|
masterChannel.setEnabled (! omniModeEnabled);
|
|
noteChannels.setEnabled (! omniModeEnabled);
|
|
masterPitchbendRange.setEnabled (! omniModeEnabled);
|
|
addZoneButton.setEnabled (! omniModeEnabled);
|
|
clearAllZonesButton.setEnabled (! omniModeEnabled);
|
|
|
|
listeners.call (&MPESetupComponent::Listener::omniModeChanged,
|
|
omniModeEnabledToggle.getToggleState(),
|
|
notePitchbendRange.getText().getIntValue());
|
|
}
|
|
|
|
//==========================================================================
|
|
void voiceStealingEnabledToggleClicked()
|
|
{
|
|
listeners.call (&MPESetupComponent::Listener::voiceStealingEnabledChanged,
|
|
voiceStealingEnabledToggle.getToggleState());
|
|
}
|
|
|
|
//==========================================================================
|
|
void comboBoxChanged (ComboBox* comboBoxThatHasChanged) override
|
|
{
|
|
if (comboBoxThatHasChanged == &numberOfVoices)
|
|
numberOfVoicesChanged();
|
|
else if (comboBoxThatHasChanged == ¬ePitchbendRange && omniModeEnabledToggle.getToggleState() == true)
|
|
omniModePitchbendRangeChanged();
|
|
}
|
|
|
|
//==========================================================================
|
|
void numberOfVoicesChanged()
|
|
{
|
|
listeners.call (&MPESetupComponent::Listener::numberOfVoicesChanged,
|
|
numberOfVoices.getText().getIntValue());
|
|
}
|
|
|
|
void omniModePitchbendRangeChanged()
|
|
{
|
|
jassert (omniModeEnabledToggle.getToggleState() == true);
|
|
|
|
listeners.call (&MPESetupComponent::Listener::omniModeChanged, true,
|
|
notePitchbendRange.getText().getIntValue());
|
|
}
|
|
|
|
//==========================================================================
|
|
bool selectedZoneParametersValid() const
|
|
{
|
|
int maxPossibleNumNoteChannels = 16 - masterChannel.getText().getIntValue();
|
|
return noteChannels.getText().getIntValue() <= maxPossibleNumNoteChannels;
|
|
}
|
|
|
|
//==========================================================================
|
|
void handleInvalidNrOfNoteChannels() const
|
|
{
|
|
AlertWindow::showMessageBoxAsync (AlertWindow::WarningIcon,
|
|
"Invalid zone layout",
|
|
"Cannot create MPE zone:\n"
|
|
"Invalid zone parameters selected!",
|
|
"Got it");
|
|
}
|
|
|
|
//==========================================================================
|
|
MPEZoneLayout zoneLayout;
|
|
|
|
ComboBox masterChannel, noteChannels, masterPitchbendRange, notePitchbendRange;
|
|
Label masterChannelLabel, noteChannelsLabel, masterPitchbendRangeLabel, notePitchbendRangeLabel;
|
|
TextButton addZoneButton, clearAllZonesButton;
|
|
|
|
ToggleButton omniModeEnabledToggle, voiceStealingEnabledToggle;
|
|
ComboBox numberOfVoices;
|
|
Label numberOfVoicesLabel;
|
|
|
|
ListenerList<Listener> listeners;
|
|
|
|
const int defaultMasterChannel = 1, defaultNoteChannels = 15,
|
|
defaultMasterPitchbendRange = 2, defaultNotePitchbendRange = 48;
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MPESetupComponent)
|
|
|
|
};
|
|
|
|
|
|
#endif // MPESETUPCOMPONENT_H_INCLUDED
|