parent
b26face84b
commit
1370d85f40
3 changed files with 76 additions and 137 deletions
|
@ -14,47 +14,33 @@ It contains the basic startup code for a Juce application.
|
|||
|
||||
//==============================================================================
|
||||
ObxdAudioProcessorEditor::ObxdAudioProcessorEditor (ObxdAudioProcessor& ownerFilter)
|
||||
: AudioProcessorEditor (&ownerFilter), processor (ownerFilter),
|
||||
skinFolder (processor.getSkinFolder()),
|
||||
progStart (2000),
|
||||
bankStart (1000),
|
||||
skinStart (0),
|
||||
skins (processor.getSkinFiles()),
|
||||
banks (processor.getBankFiles())
|
||||
: AudioProcessorEditor (&ownerFilter), processor (ownerFilter)
|
||||
{
|
||||
// skinFolder = ownerFilter.getCurrentSkinFolder(); // initialized above
|
||||
loadSkin (processor);
|
||||
skinFolder = ownerFilter.getCurrentSkinFolder();
|
||||
loadSkin(processor);
|
||||
repaint();
|
||||
}
|
||||
|
||||
void ObxdAudioProcessorEditor::loadSkin (ObxdAudioProcessor& ownerFilter)
|
||||
{
|
||||
knobAttachments.clear();
|
||||
buttonListAttachments.clear();
|
||||
toggleAttachments.clear();
|
||||
void ObxdAudioProcessorEditor::loadSkin(ObxdAudioProcessor& ownerFilter){
|
||||
imageButtons.clear();
|
||||
popupMenus.clear();
|
||||
ownerFilter.removeChangeListener (this);
|
||||
//File coords("/Users/jimmy/Downloads/coords.xml");
|
||||
skinFolder = ownerFilter.getCurrentSkinFolder();
|
||||
File coords = skinFolder.getChildFile ("coords.xml");
|
||||
bool useClassicSkin = coords.existsAsFile();
|
||||
|
||||
if (! useClassicSkin) {
|
||||
if (!useClassicSkin) {
|
||||
rebuildComponents (processor);
|
||||
return;
|
||||
}
|
||||
|
||||
XmlDocument skin (coords);
|
||||
XmlElement* doc = skin.getDocumentElement();
|
||||
if (doc)
|
||||
{
|
||||
if (doc->getTagName() == "PROPERTIES")
|
||||
{
|
||||
forEachXmlChildElementWithTagName(*doc, child, "VALUE")
|
||||
{
|
||||
if (child->hasAttribute("NAME") && child->hasAttribute("x") && child->hasAttribute("y"))
|
||||
{
|
||||
if (doc) {
|
||||
|
||||
if (doc->getTagName() == "PROPERTIES"){
|
||||
|
||||
forEachXmlChildElementWithTagName(*doc, child, "VALUE"){
|
||||
if (child->hasAttribute("NAME") && child->hasAttribute("x") && child->hasAttribute("y")) {
|
||||
String name = child->getStringAttribute("NAME");
|
||||
int x = child->getIntAttribute("x");
|
||||
int y = child->getIntAttribute("y");
|
||||
|
@ -164,7 +150,7 @@ void ObxdAudioProcessorEditor::loadSkin (ObxdAudioProcessor& ownerFilter)
|
|||
|
||||
if (name == "menu")
|
||||
{
|
||||
addMenuButton (x, y, d,
|
||||
addMenu (x, y, d,
|
||||
ImageCache::getFromFile (skinFolder.getChildFile ("menu.png")));
|
||||
}
|
||||
|
||||
|
@ -175,35 +161,34 @@ void ObxdAudioProcessorEditor::loadSkin (ObxdAudioProcessor& ownerFilter)
|
|||
}
|
||||
|
||||
// Prepare data
|
||||
if (voiceSwitch)
|
||||
{
|
||||
if (voiceSwitch){
|
||||
|
||||
for (int i = 1; i <= 32; ++i)
|
||||
{
|
||||
voiceSwitch->addChoice (String (i));
|
||||
}
|
||||
|
||||
auto voiceOption = ownerFilter.getPluginState().getParameter (ownerFilter.getEngineParameterId (VOICE_COUNT))->getValue();
|
||||
voiceSwitch->setValue (voiceOption, dontSendNotification);
|
||||
}
|
||||
|
||||
if (legatoSwitch)
|
||||
{
|
||||
if (legatoSwitch) {
|
||||
legatoSwitch->addChoice ("Keep All");
|
||||
legatoSwitch->addChoice ("Keep Filter Envelope");
|
||||
legatoSwitch->addChoice ("Keep Amplitude Envelope");
|
||||
legatoSwitch->addChoice ("Retrig");
|
||||
auto legatoOption = ownerFilter.getPluginState().getParameter (ownerFilter.getEngineParameterId (LEGATOMODE))->getValue();
|
||||
legatoSwitch->setValue (legatoOption, dontSendNotification);
|
||||
}
|
||||
buttonListAttachments.add (new ButtonList::ButtonListAttachment (ownerFilter.getPluginState(),
|
||||
ownerFilter.getEngineParameterId (VOICE_COUNT),
|
||||
*voiceSwitch));
|
||||
|
||||
buttonListAttachments.add (new ButtonList::ButtonListAttachment (ownerFilter.getPluginState(),
|
||||
ownerFilter.getEngineParameterId (LEGATOMODE),
|
||||
*legatoSwitch));
|
||||
|
||||
createMenu();
|
||||
ownerFilter.addChangeListener (this);
|
||||
repaint();
|
||||
}
|
||||
ObxdAudioProcessorEditor::~ObxdAudioProcessorEditor()
|
||||
{
|
||||
processor.removeChangeListener (this);
|
||||
// deleteAllChildren(); // Method to be avoided
|
||||
// deleteAllChildren(); // WATCH OUT!
|
||||
}
|
||||
|
||||
void ObxdAudioProcessorEditor::placeLabel (int x, int y, String text)
|
||||
|
@ -219,10 +204,6 @@ void ObxdAudioProcessorEditor::placeLabel (int x, int y, String text)
|
|||
ButtonList* ObxdAudioProcessorEditor::addList (int x, int y, int width, int height, ObxdAudioProcessor& filter, int parameter, String /*name*/, Image img)
|
||||
{
|
||||
ButtonList *bl = new ButtonList (img, height);
|
||||
buttonListAttachments.add (new ButtonList::ButtonListAttachment (filter.getPluginState(),
|
||||
filter.getEngineParameterId (parameter),
|
||||
*bl));
|
||||
|
||||
bl->setBounds (x, y, width, height);
|
||||
addAndMakeVisible (bl);
|
||||
|
||||
|
@ -233,46 +214,40 @@ ButtonList* ObxdAudioProcessorEditor::addList (int x, int y, int width, int heig
|
|||
Knob* ObxdAudioProcessorEditor::addKnob (int x, int y, int d, ObxdAudioProcessor& filter, int parameter, String /*name*/, float defval)
|
||||
{
|
||||
Knob* knob = new Knob (ImageCache::getFromFile(skinFolder.getChildFile("knob.png")), 144);
|
||||
knobAttachments.add (new Knob::KnobAttachment (filter.getPluginState(),
|
||||
filter.getEngineParameterId (parameter),
|
||||
*knob));
|
||||
|
||||
knob->setSliderStyle (Slider::RotaryVerticalDrag);
|
||||
knob->setTextBoxStyle (knob->NoTextBox, true, 0, 0);
|
||||
knob->setRange (0, 1);
|
||||
addAndMakeVisible (knob);
|
||||
knob->setBounds (x, y, d+(d/6), d+(d/6));
|
||||
knob->setTextBoxIsEditable (false);
|
||||
knob->setDoubleClickReturnValue (true, defval);
|
||||
knob->setValue (filter.getPluginState().getParameter (filter.getEngineParameterId (parameter))->getValue());
|
||||
addAndMakeVisible (knob);
|
||||
knobAttachments.add (new Knob::KnobAttachment (filter.getPluginState(),
|
||||
|
||||
filter.getEngineParameterId (parameter),
|
||||
*knob));
|
||||
|
||||
return knob;
|
||||
}
|
||||
|
||||
|
||||
void ObxdAudioProcessorEditor::clean()
|
||||
{
|
||||
void ObxdAudioProcessorEditor::clean(){
|
||||
this->removeAllChildren();
|
||||
}
|
||||
|
||||
TooglableButton* ObxdAudioProcessorEditor::addButton (int x, int y, int w, int h, ObxdAudioProcessor& filter, int parameter, String name)
|
||||
{
|
||||
TooglableButton* button = new TooglableButton (ImageCache::getFromFile(skinFolder.getChildFile("button.png")));
|
||||
addAndMakeVisible (button);
|
||||
button->setBounds (x, y, w, h);
|
||||
button->setButtonText (name);
|
||||
toggleAttachments.add (new TooglableButton::ToggleAttachment (filter.getPluginState(),
|
||||
filter.getEngineParameterId (parameter),
|
||||
*button));
|
||||
|
||||
button->setBounds (x, y, w, h);
|
||||
button->setButtonText (name);
|
||||
button->setValue (filter.getPluginState().getParameter (filter.getEngineParameterId (parameter))->getValue(),
|
||||
dontSendNotification);
|
||||
|
||||
addAndMakeVisible (button);
|
||||
|
||||
return button;
|
||||
}
|
||||
|
||||
void ObxdAudioProcessorEditor::addMenuButton (int x, int y, int d, const Image& image)
|
||||
void ObxdAudioProcessorEditor::addMenu (int x, int y, int d, const Image& image)
|
||||
{
|
||||
ImageButton* imageButton;
|
||||
imageButtons.add (imageButton = new ImageButton());
|
||||
|
@ -308,15 +283,18 @@ void ObxdAudioProcessorEditor::rebuildComponents (ObxdAudioProcessor& ownerFilte
|
|||
repaint();
|
||||
}
|
||||
|
||||
void ObxdAudioProcessorEditor::createMenu ()
|
||||
void ObxdAudioProcessorEditor::createMenu (const Point<int> pos)
|
||||
{
|
||||
PopupMenu* menu = new PopupMenu();
|
||||
PopupMenu menu;
|
||||
PopupMenu progMenu;
|
||||
PopupMenu bankMenu;
|
||||
PopupMenu skinMenu;
|
||||
|
||||
skins = processor.getSkinFiles();
|
||||
banks = processor.getBankFiles();
|
||||
|
||||
Array<File> skins;
|
||||
const Array<File>& banks = processor.getBankFiles();
|
||||
|
||||
int progStart = 2000;
|
||||
|
||||
{
|
||||
for (int i = 0; i < processor.getNumPrograms(); ++i)
|
||||
|
@ -327,9 +305,11 @@ void ObxdAudioProcessorEditor::createMenu ()
|
|||
i == processor.getCurrentProgram());
|
||||
}
|
||||
|
||||
menu->addSubMenu("Programs", progMenu);
|
||||
menu.addSubMenu("Programs", progMenu);
|
||||
}
|
||||
|
||||
int bankStart = 1000;
|
||||
|
||||
{
|
||||
const String currentBank = processor.getCurrentBankFile().getFileName();
|
||||
|
||||
|
@ -342,10 +322,19 @@ void ObxdAudioProcessorEditor::createMenu ()
|
|||
bank.getFileName() == currentBank);
|
||||
}
|
||||
|
||||
menu->addSubMenu ("Banks", bankMenu);
|
||||
menu.addSubMenu ("Banks", bankMenu);
|
||||
}
|
||||
|
||||
int skinStart = 0;
|
||||
|
||||
{
|
||||
DirectoryIterator it (processor.getSkinFolder(), false, "*", File::findDirectories);
|
||||
|
||||
while (it.next())
|
||||
{
|
||||
skins.addUsingDefaultSort (it.getFile());
|
||||
}
|
||||
|
||||
for (int i = 0; i < skins.size(); ++i)
|
||||
{
|
||||
const File skin = skins.getUnchecked (i);
|
||||
|
@ -355,15 +344,11 @@ void ObxdAudioProcessorEditor::createMenu ()
|
|||
skin.getFileName() == skinFolder.getFileName());
|
||||
}
|
||||
|
||||
menu->addSubMenu ("Skins", skinMenu);
|
||||
menu.addSubMenu ("Skins", skinMenu);
|
||||
}
|
||||
|
||||
popupMenus.add (menu);
|
||||
}
|
||||
|
||||
void ObxdAudioProcessorEditor::resultFromMenu (const Point<int> pos)
|
||||
{
|
||||
int result = popupMenus[0]->showAt (Rectangle<int> (pos.getX(), pos.getY(), 1, 1));
|
||||
int result = menu.showAt (Rectangle<int> (pos.getX(), pos.getY(), 1, 1));
|
||||
|
||||
if (result >= (skinStart + 1) && result <= (skinStart + skins.size()))
|
||||
{
|
||||
|
@ -382,18 +367,14 @@ void ObxdAudioProcessorEditor::resultFromMenu (const Point<int> pos)
|
|||
result -= 1;
|
||||
result -= bankStart;
|
||||
|
||||
const File bankFile = banks.getUnchecked (result);
|
||||
const File bankFile = banks.getUnchecked(result);
|
||||
processor.loadFromFXBFile (bankFile);
|
||||
clean();
|
||||
loadSkin (processor);
|
||||
}
|
||||
else if (result >= (progStart + 1) && result <= (progStart + processor.getNumPrograms()))
|
||||
{
|
||||
result -= 1;
|
||||
result -= progStart;
|
||||
processor.setCurrentProgram (result);
|
||||
clean();
|
||||
loadSkin (processor);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -408,7 +389,7 @@ void ObxdAudioProcessorEditor::buttonClicked (Button* b)
|
|||
auto dx = imageButton->getWidth();
|
||||
auto pos = Point<int> (x, y + dx);
|
||||
|
||||
resultFromMenu (pos);
|
||||
createMenu (pos);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -416,21 +397,17 @@ void ObxdAudioProcessorEditor::buttonClicked (Button* b)
|
|||
void ObxdAudioProcessorEditor::changeListenerCallback (ChangeBroadcaster* source)
|
||||
{
|
||||
|
||||
for (int i = 0; i < knobAttachments.size(); ++i)
|
||||
{
|
||||
for (int i = 0; i < knobAttachments.size(); i++){
|
||||
knobAttachments[i]->updateToSlider();
|
||||
}
|
||||
|
||||
for (int i = 0; i < toggleAttachments.size(); ++i)
|
||||
{
|
||||
for (int i = 0; i < toggleAttachments.size(); i++){
|
||||
toggleAttachments[i]->updateToSlider();
|
||||
}
|
||||
|
||||
for (int i = 0; i < buttonListAttachments.size(); ++i)
|
||||
{
|
||||
for (int i = 0; i < buttonListAttachments.size(); i++){
|
||||
buttonListAttachments[i]->updateToSlider();
|
||||
}
|
||||
|
||||
repaint();
|
||||
}
|
||||
|
||||
|
@ -438,7 +415,7 @@ void ObxdAudioProcessorEditor::mouseUp (const MouseEvent& e)
|
|||
{
|
||||
if (e.mods.isRightButtonDown() || e.mods.isCommandDown())
|
||||
{
|
||||
resultFromMenu (e.getMouseDownScreenPosition());
|
||||
createMenu (e.getMouseDownScreenPosition());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -46,9 +46,8 @@ private:
|
|||
void placeLabel (int x, int y, String text);
|
||||
TooglableButton* addButton (int x, int y, int w, int h, ObxdAudioProcessor& filter, int parameter, String name);
|
||||
ButtonList* addList(int x, int y, int w, int h, ObxdAudioProcessor& filter, int parameter, String name, Image img);
|
||||
void addMenuButton (int x, int y, int d, const Image&);
|
||||
void createMenu ();
|
||||
void resultFromMenu (const Point<int>);
|
||||
void addMenu (int x, int y, int d, const Image&);
|
||||
void createMenu (const Point<int>);
|
||||
void clean();
|
||||
|
||||
void rebuildComponents (ObxdAudioProcessor&);
|
||||
|
@ -138,14 +137,6 @@ private:
|
|||
OwnedArray<ButtonList::ButtonListAttachment> buttonListAttachments;
|
||||
|
||||
OwnedArray<ImageButton> imageButtons;
|
||||
|
||||
OwnedArray<PopupMenu> popupMenus;
|
||||
|
||||
int progStart;
|
||||
int bankStart;
|
||||
int skinStart;
|
||||
Array<File> skins;
|
||||
Array<File> banks;
|
||||
};
|
||||
|
||||
#endif // PLUGINEDITOR_H_INCLUDED
|
||||
|
|
|
@ -35,8 +35,6 @@ AudioProcessorValueTreeState::ParameterLayout createParameterLayout()
|
|||
|
||||
for (int i = 0; i < PARAM_COUNT; ++i)
|
||||
{
|
||||
if (i == 0) continue; // skip undefined
|
||||
|
||||
auto id = ObxdAudioProcessor::getEngineParameterId (i);
|
||||
auto name = TRANS (id);
|
||||
auto range = NormalisableRange<float> {0.0f, 1.0f};
|
||||
|
@ -77,23 +75,19 @@ ObxdAudioProcessor::ObxdAudioProcessor()
|
|||
currentBank = "Init";
|
||||
|
||||
scanAndUpdateBanks();
|
||||
scanAndUpdateSkins();
|
||||
|
||||
for (int i = 0; i < PARAM_COUNT; ++i)
|
||||
{
|
||||
if (i == 0) continue; // skip undefined
|
||||
|
||||
apvtState.addParameterListener (getEngineParameterId (i), this);
|
||||
}
|
||||
|
||||
apvtState.state = ValueTree (JucePlugin_Name);
|
||||
initAllParams();
|
||||
|
||||
if (bankFiles.size() > 0)
|
||||
{
|
||||
loadFromFXBFile (bankFiles[0]);
|
||||
}
|
||||
|
||||
initAllParams();
|
||||
for (int i = 0; i < PARAM_COUNT; ++i)
|
||||
{
|
||||
apvtState.addParameterListener (getEngineParameterId (i), this);
|
||||
}
|
||||
|
||||
apvtState.state = ValueTree (JucePlugin_Name);
|
||||
}
|
||||
|
||||
ObxdAudioProcessor::~ObxdAudioProcessor()
|
||||
|
@ -580,36 +574,18 @@ void ObxdAudioProcessor::scanAndUpdateBanks()
|
|||
{
|
||||
bankFiles.clearQuick();
|
||||
|
||||
DirectoryIterator it (getBanksFolder(), false, "*.fxb", File::findFiles);
|
||||
|
||||
DirectoryIterator it(getBanksFolder(), false, "*.fxb", File::findFiles);
|
||||
while (it.next())
|
||||
{
|
||||
bankFiles.addUsingDefaultSort (it.getFile());
|
||||
bankFiles.addUsingDefaultSort(it.getFile());
|
||||
}
|
||||
}
|
||||
|
||||
void ObxdAudioProcessor::scanAndUpdateSkins()
|
||||
{
|
||||
skinFiles.clearQuick();
|
||||
DirectoryIterator it (getSkinFolder(), false, "*", File::findDirectories);
|
||||
|
||||
while (it.next())
|
||||
{
|
||||
skinFiles.addUsingDefaultSort (it.getFile());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
const Array<File>& ObxdAudioProcessor::getBankFiles() const
|
||||
{
|
||||
return bankFiles;
|
||||
}
|
||||
|
||||
const Array<File>& ObxdAudioProcessor::getSkinFiles() const
|
||||
{
|
||||
return skinFiles;
|
||||
}
|
||||
|
||||
File ObxdAudioProcessor::getCurrentBankFile() const
|
||||
{
|
||||
return getBanksFolder().getChildFile(currentBank);
|
||||
|
@ -766,12 +742,7 @@ void ObxdAudioProcessor::setEngineParameterValue (int index, float newValue)
|
|||
}
|
||||
|
||||
programs.currentProgramPtr->values[index] = newValue;
|
||||
|
||||
// Skip Undefined
|
||||
if (index != 0)
|
||||
{
|
||||
apvtState.getParameter(getEngineParameterId(index))->setValue(newValue);
|
||||
}
|
||||
|
||||
|
||||
switch (index)
|
||||
|
|
Loading…
Reference in a new issue