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