2017-01-23 10:15:08 +00:00
|
|
|
/*
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
This file was auto-generated by the Introjucer!
|
|
|
|
|
|
|
|
It contains the basic startup code for a Juce application.
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
*/
|
|
|
|
#include "PluginProcessor.h"
|
|
|
|
#include "PluginEditor.h"
|
|
|
|
#include <utility>
|
|
|
|
// #include "GUI/BinaryData.h"
|
|
|
|
|
|
|
|
//==============================================================================
|
2020-04-19 13:43:40 +00:00
|
|
|
ObxdAudioProcessorEditor::ObxdAudioProcessorEditor (ObxdAudioProcessor& ownerFilter)
|
2020-05-10 09:15:47 +00:00
|
|
|
: AudioProcessorEditor (&ownerFilter), processor (ownerFilter),
|
|
|
|
skinFolder (processor.getSkinFolder()),
|
|
|
|
progStart (2000),
|
|
|
|
bankStart (1000),
|
|
|
|
skinStart (0),
|
|
|
|
skins (processor.getSkinFiles()),
|
|
|
|
banks (processor.getBankFiles())
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
2020-05-10 09:15:47 +00:00
|
|
|
// skinFolder = ownerFilter.getCurrentSkinFolder(); // initialized above
|
2020-12-13 18:06:22 +00:00
|
|
|
commandManager.registerAllCommandsForTarget(this);
|
|
|
|
commandManager.setFirstCommandTarget(this);
|
|
|
|
|
|
|
|
// reset KeyPressMappingSet
|
|
|
|
commandManager.getKeyMappings()->resetToDefaultMappings();
|
|
|
|
|
|
|
|
// having set up the default key-mappings, you might now want to load the last set
|
|
|
|
// of mappings that the user configured.
|
|
|
|
//commandManager.getKeyMappings()->restoreFromXml(lastSavedKeyMappingsXML);
|
|
|
|
|
|
|
|
// Now tell our top-level window to send any keypresses that arrive to the
|
|
|
|
// KeyPressMappingSet, which will use them to invoke the appropriate commands.
|
|
|
|
//addKeyListener(commandManager.getKeyMappings());
|
|
|
|
getTopLevelComponent()->addKeyListener (commandManager.getKeyMappings());
|
|
|
|
|
|
|
|
//Timer::callAfterDelay (100, [this] { this->grabKeyboardFocus(); }); // ensure that key presses are sent to the KeyPressTarget object
|
|
|
|
startTimer(100);
|
2020-05-10 09:15:47 +00:00
|
|
|
loadSkin (processor);
|
2020-04-21 13:08:05 +00:00
|
|
|
repaint();
|
2020-08-10 15:38:31 +00:00
|
|
|
|
|
|
|
updateFromHost();
|
2020-04-21 13:08:05 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
void ObxdAudioProcessorEditor::loadSkin (ObxdAudioProcessor& ownerFilter)
|
|
|
|
{
|
|
|
|
knobAttachments.clear();
|
|
|
|
buttonListAttachments.clear();
|
|
|
|
toggleAttachments.clear();
|
2020-04-24 06:15:00 +00:00
|
|
|
imageButtons.clear();
|
2020-05-10 09:15:47 +00:00
|
|
|
popupMenus.clear();
|
2020-04-21 13:08:05 +00:00
|
|
|
ownerFilter.removeChangeListener (this);
|
2020-04-20 20:57:41 +00:00
|
|
|
//File coords("/Users/jimmy/Downloads/coords.xml");
|
2020-04-21 13:08:05 +00:00
|
|
|
skinFolder = ownerFilter.getCurrentSkinFolder();
|
2020-04-20 20:57:41 +00:00
|
|
|
File coords = skinFolder.getChildFile ("coords.xml");
|
|
|
|
bool useClassicSkin = coords.existsAsFile();
|
2020-05-05 13:21:26 +00:00
|
|
|
if (!useClassicSkin) {
|
2020-05-10 09:15:47 +00:00
|
|
|
addMenuButton (14, 25, 20, ImageCache::getFromMemory(BinaryData::menu_png, BinaryData::menu_pngSize));
|
2020-05-09 18:26:24 +00:00
|
|
|
rebuildComponents (processor);
|
|
|
|
return;
|
2020-04-20 20:57:41 +00:00
|
|
|
}
|
|
|
|
|
2020-12-06 13:57:23 +00:00
|
|
|
//if (coords.createInputStream())
|
|
|
|
|
2020-04-20 20:57:41 +00:00
|
|
|
XmlDocument skin (coords);
|
2020-05-22 11:34:09 +00:00
|
|
|
auto doc = skin.getDocumentElement();
|
2020-12-06 13:57:23 +00:00
|
|
|
if (!doc) {
|
|
|
|
notLoadSkin = true;
|
|
|
|
setSize (1440, 450);
|
|
|
|
}
|
|
|
|
else {
|
2020-05-05 13:21:26 +00:00
|
|
|
|
|
|
|
if (doc->getTagName() == "PROPERTIES"){
|
|
|
|
|
|
|
|
forEachXmlChildElementWithTagName(*doc, child, "VALUE"){
|
|
|
|
if (child->hasAttribute("NAME") && child->hasAttribute("x") && child->hasAttribute("y")) {
|
2020-04-20 20:57:41 +00:00
|
|
|
String name = child->getStringAttribute("NAME");
|
|
|
|
int x = child->getIntAttribute("x");
|
|
|
|
int y = child->getIntAttribute("y");
|
|
|
|
int d = child->getIntAttribute("d");
|
2020-04-21 09:54:19 +00:00
|
|
|
int w = child->getIntAttribute("w");
|
|
|
|
int h = child->getIntAttribute("h");
|
2020-04-21 13:08:05 +00:00
|
|
|
|
|
|
|
if (name == "guisize"){ setSize (x, y); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "resonanceKnob"){ resonanceKnob = addKnob (x, y, d, ownerFilter, RESONANCE, "Resonance", 0); }
|
|
|
|
if (name == "cutoffKnob"){ cutoffKnob = addKnob (x, y, d, ownerFilter, CUTOFF, "Cutoff", 0.4); }
|
|
|
|
if (name == "filterEnvelopeAmtKnob"){ filterEnvelopeAmtKnob = addKnob (x, y, d, ownerFilter, ENVELOPE_AMT, "Envelope", 0); }
|
|
|
|
if (name == "multimodeKnob"){ multimodeKnob = addKnob (x, y, d, ownerFilter, MULTIMODE, "Multimode", 0.5); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "volumeKnob"){ volumeKnob = addKnob (x, y, d, ownerFilter, VOLUME, "Volume", 0.4); }
|
|
|
|
if (name == "portamentoKnob"){ portamentoKnob = addKnob (x, y, d, ownerFilter, PORTAMENTO, "Portamento", 0); }
|
|
|
|
if (name == "osc1PitchKnob"){ osc1PitchKnob = addKnob (x, y, d, ownerFilter, OSC1P, "Osc1Pitch", 0); }
|
|
|
|
if (name == "pulseWidthKnob"){ pulseWidthKnob = addKnob (x, y, d, ownerFilter, PW, "PW", 0); }
|
|
|
|
if (name == "osc2PitchKnob"){ osc2PitchKnob = addKnob (x, y, d, ownerFilter, OSC2P, "Osc2Pitch", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "osc1MixKnob"){ osc1MixKnob = addKnob (x, y, d, ownerFilter, OSC1MIX, "Osc1", 1); }
|
|
|
|
if (name == "osc2MixKnob"){ osc2MixKnob = addKnob (x, y, d, ownerFilter, OSC2MIX, "Osc2", 1); }
|
|
|
|
if (name == "noiseMixKnob"){ noiseMixKnob = addKnob (x, y, d, ownerFilter, NOISEMIX, "Noise", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "xmodKnob"){ xmodKnob = addKnob (x, y, d, ownerFilter, XMOD, "Xmod", 0); }
|
|
|
|
if (name == "osc2DetuneKnob"){ osc2DetuneKnob = addKnob (x, y, d, ownerFilter, OSC2_DET, "Detune", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "envPitchModKnob"){ envPitchModKnob = addKnob (x, y, d, ownerFilter, ENVPITCH, "PEnv", 0); }
|
|
|
|
if (name == "brightnessKnob"){ brightnessKnob = addKnob (x, y, d, ownerFilter, BRIGHTNESS, "Bri", 1); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "attackKnob"){ attackKnob = addKnob (x, y, d, ownerFilter, LATK, "Atk", 0); }
|
|
|
|
if (name == "decayKnob"){ decayKnob = addKnob (x, y, d, ownerFilter, LDEC, "Dec", 0); }
|
|
|
|
if (name == "sustainKnob"){ sustainKnob = addKnob (x, y, d, ownerFilter, LSUS, "Sus", 1); }
|
|
|
|
if (name == "releaseKnob"){ releaseKnob = addKnob (x, y, d, ownerFilter, LREL, "Rel", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "fattackKnob"){ fattackKnob = addKnob (x, y, d, ownerFilter, FATK, "Atk", 0); }
|
|
|
|
if (name == "fdecayKnob"){ fdecayKnob = addKnob (x, y, d, ownerFilter, FDEC, "Dec", 0); }
|
|
|
|
if (name == "fsustainKnob"){ fsustainKnob = addKnob (x, y, d, ownerFilter, FSUS, "Sus", 1); }
|
|
|
|
if (name == "freleaseKnob"){ freleaseKnob = addKnob (x, y, d, ownerFilter, FREL, "Rel", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "lfoFrequencyKnob"){ lfoFrequencyKnob = addKnob (x, y, d, ownerFilter, LFOFREQ, "Freq", 0); }
|
|
|
|
if (name == "lfoAmt1Knob"){ lfoAmt1Knob = addKnob (x, y, d, ownerFilter, LFO1AMT, "Pitch", 0); }
|
|
|
|
if (name == "lfoAmt2Knob"){ lfoAmt2Knob = addKnob (x, y, d, ownerFilter, LFO2AMT, "PWM", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "lfoSinButton"){ lfoSinButton = addButton (x, y, w, h, ownerFilter, LFOSINWAVE, "Sin"); }
|
|
|
|
if (name == "lfoSquareButton"){ lfoSquareButton = addButton (x, y, w, h, ownerFilter, LFOSQUAREWAVE, "SQ"); }
|
|
|
|
if (name == "lfoSHButton"){ lfoSHButton = addButton (x, y, w, h, ownerFilter, LFOSHWAVE, "S&H"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "lfoOsc1Button"){ lfoOsc1Button = addButton (x, y, w, h, ownerFilter, LFOOSC1, "Osc1"); }
|
|
|
|
if (name == "lfoOsc2Button"){ lfoOsc2Button = addButton (x, y, w, h, ownerFilter, LFOOSC2, "Osc2"); }
|
|
|
|
if (name == "lfoFilterButton"){ lfoFilterButton = addButton (x, y, w, h, ownerFilter, LFOFILTER, "Filt"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "lfoPwm1Button"){ lfoPwm1Button = addButton (x, y, w, h, ownerFilter, LFOPW1, "Osc1"); }
|
|
|
|
if (name == "lfoPwm2Button"){ lfoPwm2Button = addButton (x, y, w, h, ownerFilter, LFOPW2, "Osc2"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "hardSyncButton"){ hardSyncButton = addButton (x, y, w, h, ownerFilter, OSC2HS, "Sync"); }
|
|
|
|
if (name == "osc1SawButton"){ osc1SawButton = addButton (x, y, w, h, ownerFilter, OSC1Saw, "S"); }
|
|
|
|
if (name == "osc2SawButton"){ osc2SawButton = addButton (x, y, w, h, ownerFilter, OSC2Saw, "S"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "osc1PulButton"){ osc1PulButton = addButton (x, y, w, h, ownerFilter, OSC1Pul, "P"); }
|
|
|
|
if (name == "osc2PulButton"){ osc2PulButton = addButton (x, y, w, h, ownerFilter, OSC2Pul, "P"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "pitchQuantButton"){ pitchQuantButton = addButton (x, y, w, h, ownerFilter, OSCQuantize, "Step"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "filterBPBlendButton"){ filterBPBlendButton = addButton (x, y, w, h, ownerFilter, BANDPASS, "Bp"); }
|
|
|
|
if (name == "fourPoleButton"){ fourPoleButton = addButton (x, y, w, h, ownerFilter, FOURPOLE, "24"); }
|
|
|
|
if (name == "filterHQButton"){ filterHQButton = addButton (x, y, w, h, ownerFilter, FILTER_WARM, "HQ"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "filterKeyFollowButton"){ filterKeyFollowButton = addButton (x, y, w, h, ownerFilter, FLT_KF, "Key"); }
|
|
|
|
if (name == "unisonButton"){ unisonButton = addButton (x, y, w, h, ownerFilter, UNISON, "Uni"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "tuneKnob"){ tuneKnob = addKnob (x, y, d, ownerFilter, TUNE, "Tune", 0.5); }
|
|
|
|
if (name == "transposeKnob"){ transposeKnob = addKnob (x, y, d, ownerFilter, OCTAVE, "Transpose", 0.5); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "voiceDetuneKnob"){ voiceDetuneKnob =addKnob (x, y, d, ownerFilter, UDET, "VoiceDet", 0); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "bendLfoRateKnob"){ bendLfoRateKnob = addKnob (x, y, d, ownerFilter, BENDLFORATE, "ModRate", 0.4); }
|
|
|
|
if (name == "veloFltEnvKnob"){ veloFltEnvKnob = addKnob (x, y, d, ownerFilter, VFLTENV, "VFE", 0); }
|
|
|
|
if (name == "veloAmpEnvKnob"){ veloAmpEnvKnob = addKnob (x, y, d, ownerFilter, VAMPENV, "VAE", 0); }
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "midiLearnButton"){ midiLearnButton = addButton (x, y, w, h, ownerFilter, MIDILEARN, "LEA"); }
|
|
|
|
if (name == "midiUnlearnButton"){ midiUnlearnButton = addButton (x, y, w, h, ownerFilter, UNLEARN, "UNL"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "pan1Knob"){ pan1Knob = addKnob (x, y, d, ownerFilter, PAN1, "1", 0.5); }
|
|
|
|
if (name == "pan2Knob"){ pan2Knob = addKnob (x, y, d, ownerFilter, PAN2, "2", 0.5); }
|
|
|
|
if (name == "pan3Knob"){ pan3Knob = addKnob (x, y, d, ownerFilter, PAN3, "3", 0.5); }
|
|
|
|
if (name == "pan4Knob"){ pan4Knob = addKnob (x, y, d, ownerFilter, PAN4, "4", 0.5); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "pan5Knob"){ pan5Knob = addKnob (x, y, d, ownerFilter, PAN5, "5", 0.5); }
|
|
|
|
if (name == "pan6Knob"){ pan6Knob = addKnob (x, y, d, ownerFilter, PAN6, "6", 0.5); }
|
|
|
|
if (name == "pan7Knob"){ pan7Knob = addKnob (x, y, d, ownerFilter, PAN7, "7", 0.5); }
|
|
|
|
if (name == "pan8Knob"){ pan8Knob = addKnob (x, y, d, ownerFilter, PAN8, "8", 0.5); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
if (name == "bendOsc2OnlyButton"){ bendOsc2OnlyButton = addButton (x, y, w, h, ownerFilter, BENDOSC2, "Osc2"); }
|
|
|
|
if (name == "bendRangeButton"){ bendRangeButton = addButton (x, y, w, h, ownerFilter, BENDRANGE, "12"); }
|
|
|
|
if (name == "asPlayedAllocButton"){ asPlayedAllocButton = addButton (x, y, w, h, ownerFilter, ASPLAYEDALLOCATION, "APA"); }
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
if (name == "filterDetuneKnob"){ filterDetuneKnob = addKnob (x, y, d, ownerFilter, FILTERDER, "Flt", 0.2); }
|
|
|
|
if (name == "portamentoDetuneKnob"){ portamentoDetuneKnob = addKnob (x, y, d, ownerFilter, PORTADER, "Port", 0.2); }
|
|
|
|
if (name == "envelopeDetuneKnob"){ envelopeDetuneKnob = addKnob (x, y, d, ownerFilter, ENVDER, "Env", 0.2); }
|
2020-04-21 13:08:05 +00:00
|
|
|
|
|
|
|
if (name == "voiceSwitch"){
|
|
|
|
//if (voiceSwitch) voiceSwitch->setVisible(false);
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2020-04-21 13:08:05 +00:00
|
|
|
voiceSwitch = addList (x, y, w, h, ownerFilter, VOICE_COUNT, "VoiceCount", ImageCache::getFromFile(skinFolder.getChildFile("voices.png"))); }
|
2020-05-22 13:24:57 +00:00
|
|
|
#else
|
|
|
|
voiceSwitch = addList (x, y, w, h, ownerFilter, VOICE_COUNT, "VoiceCount", ImageCache::getFromFile(skinFolder.getChildFile("voices@2x.png"))); }
|
|
|
|
#endif
|
|
|
|
|
2020-04-21 13:08:05 +00:00
|
|
|
if (name == "legatoSwitch"){
|
|
|
|
//if (legatoSwitch) legatoSwitch->setVisible(false);
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2020-04-21 13:08:05 +00:00
|
|
|
legatoSwitch = addList (x, y, w, h, ownerFilter, LEGATOMODE, "Legato", ImageCache::getFromFile(skinFolder.getChildFile("legato.png"))); }
|
2020-05-22 13:24:57 +00:00
|
|
|
#else
|
|
|
|
legatoSwitch = addList (x, y, w, h, ownerFilter, LEGATOMODE, "Legato", ImageCache::getFromFile(skinFolder.getChildFile("legato@2x.png"))); }
|
|
|
|
#endif
|
|
|
|
|
2020-04-20 20:57:41 +00:00
|
|
|
|
2020-04-24 06:15:00 +00:00
|
|
|
if (name == "menu")
|
|
|
|
{
|
2020-05-10 09:15:47 +00:00
|
|
|
addMenuButton (x, y, d,
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2020-05-05 13:21:26 +00:00
|
|
|
ImageCache::getFromFile (skinFolder.getChildFile ("menu.png")));
|
2020-08-09 15:45:57 +00:00
|
|
|
#else
|
|
|
|
ImageCache::getFromFile (skinFolder.getChildFile ("menu@2x.png")));
|
|
|
|
#endif
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
2020-04-24 07:04:52 +00:00
|
|
|
|
2020-04-20 20:57:41 +00:00
|
|
|
//DBG(" Name: " << name << " X: " <<x <<" Y: "<<y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare data
|
2020-05-10 09:15:47 +00:00
|
|
|
if (voiceSwitch)
|
|
|
|
{
|
2020-04-20 20:57:41 +00:00
|
|
|
for (int i = 1; i <= 32; ++i)
|
|
|
|
{
|
|
|
|
voiceSwitch->addChoice (String (i));
|
|
|
|
}
|
2020-05-10 09:15:47 +00:00
|
|
|
|
|
|
|
auto voiceOption = ownerFilter.getPluginState().getParameter (ownerFilter.getEngineParameterId (VOICE_COUNT))->getValue();
|
|
|
|
voiceSwitch->setValue (voiceOption, dontSendNotification);
|
2020-04-20 20:57:41 +00:00
|
|
|
}
|
2020-05-10 09:15:47 +00:00
|
|
|
|
|
|
|
if (legatoSwitch)
|
|
|
|
{
|
2020-04-20 20:57:41 +00:00
|
|
|
legatoSwitch->addChoice ("Keep All");
|
|
|
|
legatoSwitch->addChoice ("Keep Filter Envelope");
|
|
|
|
legatoSwitch->addChoice ("Keep Amplitude Envelope");
|
|
|
|
legatoSwitch->addChoice ("Retrig");
|
2020-05-10 09:15:47 +00:00
|
|
|
auto legatoOption = ownerFilter.getPluginState().getParameter (ownerFilter.getEngineParameterId (LEGATOMODE))->getValue();
|
|
|
|
legatoSwitch->setValue (legatoOption, dontSendNotification);
|
2020-04-20 20:57:41 +00:00
|
|
|
}
|
2020-04-24 06:15:00 +00:00
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
createMenu();
|
2020-04-21 13:08:05 +00:00
|
|
|
ownerFilter.addChangeListener (this);
|
2020-04-20 20:57:41 +00:00
|
|
|
repaint();
|
2017-01-23 10:15:08 +00:00
|
|
|
}
|
|
|
|
ObxdAudioProcessorEditor::~ObxdAudioProcessorEditor()
|
|
|
|
{
|
2020-04-19 13:43:40 +00:00
|
|
|
processor.removeChangeListener (this);
|
2020-05-05 13:21:26 +00:00
|
|
|
// deleteAllChildren(); // WATCH OUT!
|
2017-01-23 10:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 13:43:40 +00:00
|
|
|
void ObxdAudioProcessorEditor::placeLabel (int x, int y, String text)
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
|
|
|
Label* lab = new Label();
|
2020-04-19 13:43:40 +00:00
|
|
|
lab->setBounds (x, y, 110, 20);
|
|
|
|
lab->setJustificationType (Justification::centred);
|
|
|
|
lab->setText (text,dontSendNotification);
|
|
|
|
lab->setInterceptsMouseClicks (false, true);
|
|
|
|
addAndMakeVisible (lab);
|
2017-01-23 10:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 09:54:19 +00:00
|
|
|
ButtonList* ObxdAudioProcessorEditor::addList (int x, int y, int width, int height, ObxdAudioProcessor& filter, int parameter, String /*name*/, Image img)
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
2020-08-10 10:59:00 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
|
|
|
ButtonList *bl = new ButtonList (img, height);
|
|
|
|
#else
|
|
|
|
ButtonList *bl = new ButtonList (img, height*2);
|
|
|
|
#endif
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
buttonListAttachments.add (new ButtonList::ButtonListAttachment (filter.getPluginState(),
|
|
|
|
filter.getEngineParameterId (parameter),
|
|
|
|
*bl));
|
|
|
|
|
2020-04-21 09:54:19 +00:00
|
|
|
bl->setBounds (x, y, width, height);
|
2020-04-19 13:43:40 +00:00
|
|
|
addAndMakeVisible (bl);
|
|
|
|
|
2017-01-23 10:15:08 +00:00
|
|
|
return bl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-21 08:53:36 +00:00
|
|
|
Knob* ObxdAudioProcessorEditor::addKnob (int x, int y, int d, ObxdAudioProcessor& filter, int parameter, String /*name*/, float defval)
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2020-05-22 13:24:57 +00:00
|
|
|
Knob* knob = new Knob (ImageCache::getFromFile(skinFolder.getChildFile("knob.png")), 48);
|
|
|
|
#else
|
|
|
|
Knob* knob = new Knob (ImageCache::getFromFile(skinFolder.getChildFile("knob@2x.png")), 96);
|
|
|
|
#endif
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
knobAttachments.add (new Knob::KnobAttachment (filter.getPluginState(),
|
|
|
|
filter.getEngineParameterId (parameter),
|
|
|
|
*knob));
|
|
|
|
|
2020-04-19 13:43:40 +00:00
|
|
|
knob->setSliderStyle (Slider::RotaryVerticalDrag);
|
|
|
|
knob->setTextBoxStyle (knob->NoTextBox, true, 0, 0);
|
|
|
|
knob->setRange (0, 1);
|
2020-04-21 13:08:05 +00:00
|
|
|
knob->setBounds (x, y, d+(d/6), d+(d/6));
|
2020-04-19 13:43:40 +00:00
|
|
|
knob->setTextBoxIsEditable (false);
|
|
|
|
knob->setDoubleClickReturnValue (true, defval);
|
2020-05-10 09:15:47 +00:00
|
|
|
knob->setValue (filter.getPluginState().getParameter (filter.getEngineParameterId (parameter))->getValue());
|
|
|
|
addAndMakeVisible (knob);
|
2020-04-19 13:43:40 +00:00
|
|
|
|
2017-01-23 10:15:08 +00:00
|
|
|
return knob;
|
|
|
|
}
|
|
|
|
|
2020-04-21 13:08:05 +00:00
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
void ObxdAudioProcessorEditor::clean()
|
|
|
|
{
|
2020-04-21 13:08:05 +00:00
|
|
|
this->removeAllChildren();
|
|
|
|
}
|
|
|
|
|
2020-04-21 14:51:05 +00:00
|
|
|
TooglableButton* ObxdAudioProcessorEditor::addButton (int x, int y, int w, int h, ObxdAudioProcessor& filter, int parameter, String name)
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2020-05-22 13:24:57 +00:00
|
|
|
TooglableButton* button = new TooglableButton (ImageCache::getFromFile(skinFolder.getChildFile("button.png")));
|
|
|
|
#else
|
|
|
|
TooglableButton* button = new TooglableButton (ImageCache::getFromFile(skinFolder.getChildFile("button@2x.png")));
|
|
|
|
#endif
|
2020-08-06 16:09:15 +00:00
|
|
|
if (parameter != UNLEARN){
|
2020-08-10 15:38:31 +00:00
|
|
|
toggleAttachments.add (new AudioProcessorValueTreeState::ButtonAttachment (filter.getPluginState(),
|
2020-08-06 16:09:15 +00:00
|
|
|
filter.getEngineParameterId (parameter),
|
|
|
|
*button));
|
|
|
|
} else {
|
|
|
|
button->addListener(this);
|
|
|
|
}
|
2020-05-10 09:15:47 +00:00
|
|
|
button->setBounds (x, y, w, h);
|
|
|
|
button->setButtonText (name);
|
2020-08-10 15:38:31 +00:00
|
|
|
button->setToggleState(filter.getPluginState().getParameter (filter.getEngineParameterId (parameter))->getValue(),
|
2020-05-10 09:15:47 +00:00
|
|
|
dontSendNotification);
|
2020-08-06 16:09:15 +00:00
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
addAndMakeVisible (button);
|
|
|
|
|
2017-01-23 10:15:08 +00:00
|
|
|
return button;
|
|
|
|
}
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
void ObxdAudioProcessorEditor::addMenuButton (int x, int y, int d, const Image& image)
|
2020-04-24 06:15:00 +00:00
|
|
|
{
|
|
|
|
ImageButton* imageButton;
|
|
|
|
imageButtons.add (imageButton = new ImageButton());
|
|
|
|
imageButton->setBounds (x, y, d, d);
|
|
|
|
imageButton->setImages (false,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
image,
|
|
|
|
1.0f, // menu transparency
|
|
|
|
Colour(),
|
|
|
|
image,
|
|
|
|
1.0f, // menu hover transparency
|
|
|
|
Colour(),
|
|
|
|
image,
|
|
|
|
0.3f, // menu click transparency
|
|
|
|
Colour());
|
|
|
|
|
2020-07-20 09:13:51 +00:00
|
|
|
//imageButton->addListener (this);
|
|
|
|
imageButton->onClick = [this](){
|
|
|
|
ImageButton *imageButton = this->imageButtons[0];
|
|
|
|
auto x = imageButton->getScreenX();
|
|
|
|
auto y = imageButton->getScreenY();
|
|
|
|
auto dx = imageButton->getWidth();
|
|
|
|
auto pos = Point<int> (x, y + dx);
|
|
|
|
resultFromMenu (pos);
|
|
|
|
};
|
2020-04-24 06:15:00 +00:00
|
|
|
addAndMakeVisible (imageButton);
|
|
|
|
}
|
|
|
|
|
2020-04-19 13:43:40 +00:00
|
|
|
void ObxdAudioProcessorEditor::rebuildComponents (ObxdAudioProcessor& ownerFilter)
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
2020-04-19 13:43:40 +00:00
|
|
|
skinFolder = ownerFilter.getCurrentSkinFolder();
|
2017-01-23 10:15:08 +00:00
|
|
|
|
2020-04-19 13:43:40 +00:00
|
|
|
ownerFilter.removeChangeListener (this);
|
2017-01-23 10:15:08 +00:00
|
|
|
|
2020-04-20 09:54:29 +00:00
|
|
|
// deleteAllChildren(); // WATCH OUT!
|
2017-01-23 10:15:08 +00:00
|
|
|
|
|
|
|
setSize (1440, 450);
|
2020-04-19 13:43:40 +00:00
|
|
|
|
|
|
|
ownerFilter.addChangeListener (this);
|
2017-01-23 10:15:08 +00:00
|
|
|
repaint();
|
|
|
|
}
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
void ObxdAudioProcessorEditor::createMenu ()
|
2020-04-24 06:15:00 +00:00
|
|
|
{
|
2020-05-10 09:15:47 +00:00
|
|
|
PopupMenu* menu = new PopupMenu();
|
2020-04-24 06:15:00 +00:00
|
|
|
PopupMenu progMenu;
|
|
|
|
PopupMenu bankMenu;
|
|
|
|
PopupMenu skinMenu;
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
skins = processor.getSkinFiles();
|
|
|
|
banks = processor.getBankFiles();
|
2020-04-24 06:15:00 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
for (int i = 0; i < processor.getNumPrograms(); ++i)
|
|
|
|
{
|
|
|
|
progMenu.addItem (i + progStart + 1,
|
|
|
|
processor.getProgramName (i),
|
|
|
|
true,
|
|
|
|
i == processor.getCurrentProgram());
|
|
|
|
}
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
menu->addSubMenu("Programs", progMenu);
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const String currentBank = processor.getCurrentBankFile().getFileName();
|
|
|
|
|
|
|
|
for (int i = 0; i < banks.size(); ++i)
|
|
|
|
{
|
|
|
|
const File bank = banks.getUnchecked (i);
|
|
|
|
bankMenu.addItem (i + bankStart + 1,
|
|
|
|
bank.getFileNameWithoutExtension(),
|
|
|
|
true,
|
|
|
|
bank.getFileName() == currentBank);
|
|
|
|
}
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
menu->addSubMenu ("Banks", bankMenu);
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
for (int i = 0; i < skins.size(); ++i)
|
|
|
|
{
|
|
|
|
const File skin = skins.getUnchecked (i);
|
|
|
|
skinMenu.addItem (i + skinStart + 1,
|
|
|
|
skin.getFileName(),
|
|
|
|
true,
|
|
|
|
skin.getFileName() == skinFolder.getFileName());
|
|
|
|
}
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
menu->addSubMenu ("Themes", skinMenu);
|
2020-05-06 07:02:48 +00:00
|
|
|
// About // menu.addItem(1, String("Release ") + String(JucePlugin_VersionString).dropLastCharacters(2), false);
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
2020-05-05 13:21:26 +00:00
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
popupMenus.add (menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObxdAudioProcessorEditor::resultFromMenu (const Point<int> pos)
|
|
|
|
{
|
|
|
|
int result = popupMenus[0]->showAt (Rectangle<int> (pos.getX(), pos.getY(), 1, 1));
|
2020-04-24 06:15:00 +00:00
|
|
|
|
|
|
|
if (result >= (skinStart + 1) && result <= (skinStart + skins.size()))
|
|
|
|
{
|
|
|
|
result -= 1;
|
|
|
|
result -= skinStart;
|
|
|
|
|
|
|
|
const File newSkinFolder = skins.getUnchecked (result);
|
|
|
|
processor.setCurrentSkinFolder (newSkinFolder.getFileName());
|
|
|
|
|
|
|
|
//rebuildComponents (processor);
|
|
|
|
clean();
|
|
|
|
loadSkin (processor);
|
|
|
|
}
|
|
|
|
else if (result >= (bankStart + 1) && result <= (bankStart + banks.size()))
|
|
|
|
{
|
|
|
|
result -= 1;
|
|
|
|
result -= bankStart;
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
const File bankFile = banks.getUnchecked (result);
|
2020-04-24 06:15:00 +00:00
|
|
|
processor.loadFromFXBFile (bankFile);
|
2020-05-10 09:15:47 +00:00
|
|
|
clean();
|
|
|
|
loadSkin (processor);
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
|
|
|
else if (result >= (progStart + 1) && result <= (progStart + processor.getNumPrograms()))
|
|
|
|
{
|
|
|
|
result -= 1;
|
|
|
|
result -= progStart;
|
|
|
|
processor.setCurrentProgram (result);
|
2020-05-10 09:15:47 +00:00
|
|
|
clean();
|
|
|
|
loadSkin (processor);
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObxdAudioProcessorEditor::buttonClicked (Button* b)
|
|
|
|
{
|
2020-07-20 09:13:51 +00:00
|
|
|
/*
|
2020-04-24 06:15:00 +00:00
|
|
|
auto imageButton = dynamic_cast<ImageButton*> (b);
|
|
|
|
|
|
|
|
if (imageButton == imageButtons[0])
|
|
|
|
{
|
|
|
|
auto x = imageButton->getScreenX();
|
|
|
|
auto y = imageButton->getScreenY();
|
|
|
|
auto dx = imageButton->getWidth();
|
|
|
|
auto pos = Point<int> (x, y + dx);
|
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
resultFromMenu (pos);
|
2020-07-20 09:13:51 +00:00
|
|
|
}*/
|
2020-07-16 08:14:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
auto toggleButton = dynamic_cast<TooglableButton*> (b);
|
|
|
|
if (toggleButton == midiUnlearnButton){
|
2020-08-06 16:09:15 +00:00
|
|
|
if (midiUnlearnButton->getToggleState()){
|
2020-07-16 08:14:56 +00:00
|
|
|
processor.getMidiMap().reset();
|
|
|
|
processor.getMidiMap().set_default();
|
2020-07-16 18:10:39 +00:00
|
|
|
processor.sendChangeMessage();
|
2020-07-16 08:14:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 06:15:00 +00:00
|
|
|
}
|
2020-04-19 13:43:40 +00:00
|
|
|
|
2017-01-23 10:15:08 +00:00
|
|
|
//==============================================================================
|
2020-08-10 15:38:31 +00:00
|
|
|
|
|
|
|
void ObxdAudioProcessorEditor::updateFromHost() {
|
2020-05-10 09:15:47 +00:00
|
|
|
for (int i = 0; i < knobAttachments.size(); ++i)
|
|
|
|
{
|
2020-04-23 17:10:28 +00:00
|
|
|
knobAttachments[i]->updateToSlider();
|
|
|
|
}
|
2020-08-10 15:38:31 +00:00
|
|
|
/*
|
2020-05-10 09:15:47 +00:00
|
|
|
for (int i = 0; i < toggleAttachments.size(); ++i)
|
|
|
|
{
|
2020-04-23 17:10:28 +00:00
|
|
|
toggleAttachments[i]->updateToSlider();
|
2020-08-10 15:38:31 +00:00
|
|
|
}*/
|
2020-04-23 17:10:28 +00:00
|
|
|
|
2020-05-10 09:15:47 +00:00
|
|
|
for (int i = 0; i < buttonListAttachments.size(); ++i)
|
|
|
|
{
|
2020-04-23 17:10:28 +00:00
|
|
|
buttonListAttachments[i]->updateToSlider();
|
|
|
|
}
|
2020-05-10 09:15:47 +00:00
|
|
|
|
2020-07-16 18:10:39 +00:00
|
|
|
// Set to unlearn to false
|
2020-12-06 13:57:23 +00:00
|
|
|
if ( midiUnlearnButton && midiUnlearnButton->getToggleState()) {
|
2020-08-06 16:09:15 +00:00
|
|
|
midiUnlearnButton->setToggleState(false, NotificationType:: sendNotification);
|
|
|
|
}
|
2020-07-16 18:10:39 +00:00
|
|
|
|
2020-04-19 13:43:40 +00:00
|
|
|
repaint();
|
2017-01-23 10:15:08 +00:00
|
|
|
}
|
2020-08-10 15:38:31 +00:00
|
|
|
void ObxdAudioProcessorEditor::changeListenerCallback (ChangeBroadcaster* source)
|
|
|
|
{
|
|
|
|
updateFromHost();
|
|
|
|
}
|
2017-01-23 10:15:08 +00:00
|
|
|
|
2020-04-24 06:15:00 +00:00
|
|
|
void ObxdAudioProcessorEditor::mouseUp (const MouseEvent& e)
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
|
|
|
if (e.mods.isRightButtonDown() || e.mods.isCommandDown())
|
|
|
|
{
|
2020-05-10 09:15:47 +00:00
|
|
|
resultFromMenu (e.getMouseDownScreenPosition());
|
2017-01-23 10:15:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ObxdAudioProcessorEditor::paint(Graphics& g)
|
|
|
|
{
|
2020-05-10 08:58:42 +00:00
|
|
|
g.fillAll (Colours::black);
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2017-01-23 10:15:08 +00:00
|
|
|
const File mainFile(skinFolder.getChildFile("main.png"));
|
2020-05-22 13:24:57 +00:00
|
|
|
#else
|
|
|
|
const File mainFile(skinFolder.getChildFile("main@2x.png"));
|
|
|
|
#endif
|
|
|
|
|
2020-12-06 13:57:23 +00:00
|
|
|
if (!notLoadSkin && skinFolder.exists() && mainFile.exists())
|
2017-01-23 10:15:08 +00:00
|
|
|
{
|
2020-05-18 18:48:43 +00:00
|
|
|
|
|
|
|
const Image image = ImageCache::getFromFile(mainFile);
|
|
|
|
|
2020-08-09 15:45:57 +00:00
|
|
|
#if JUCE_WINDOWS || JUCE_LINUX
|
2020-05-22 13:24:57 +00:00
|
|
|
g.drawImage (image,
|
|
|
|
0, 0, image.getWidth(), image.getHeight(),
|
|
|
|
0, 0, image.getWidth(), image.getHeight());
|
|
|
|
#else
|
|
|
|
g.drawImage (image,
|
|
|
|
0, 0, image.getWidth()/2, image.getHeight()/2,
|
|
|
|
0, 0, image.getWidth(), image.getHeight());
|
|
|
|
#endif
|
|
|
|
|
2017-01-23 10:15:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const Image image = ImageCache::getFromMemory(BinaryData::main_png, BinaryData::main_pngSize);
|
2020-05-18 18:48:43 +00:00
|
|
|
|
2020-05-22 13:24:57 +00:00
|
|
|
// g.setImageResamplingQuality(Graphics::ResamplingQuality::highResamplingQuality);
|
2020-05-18 18:48:43 +00:00
|
|
|
|
2017-01-23 10:15:08 +00:00
|
|
|
g.drawImage (image,
|
|
|
|
0, 0, image.getWidth(), image.getHeight(),
|
|
|
|
0, 0, image.getWidth(), image.getHeight());
|
|
|
|
}
|
2020-05-21 07:20:47 +00:00
|
|
|
|
|
|
|
}
|