The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

204 lines
7.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. #include "PluginProcessor.h"
  20. #include "PluginEditor.h"
  21. //==============================================================================
  22. // This is a handy slider subclass that controls an AudioProcessorParameter
  23. // (may move this class into the library itself at some point in the future..)
  24. class JuceDemoPluginAudioProcessorEditor::ParameterSlider : public Slider,
  25. private Timer
  26. {
  27. public:
  28. ParameterSlider (AudioProcessorParameter& p)
  29. : Slider (p.getName (256)), param (p)
  30. {
  31. setRange (0.0, 1.0, 0.0);
  32. startTimerHz (30);
  33. updateSliderPos();
  34. }
  35. void valueChanged() override
  36. {
  37. if (isMouseButtonDown())
  38. param.setValueNotifyingHost ((float) Slider::getValue());
  39. else
  40. param.setValue ((float) Slider::getValue());
  41. }
  42. void timerCallback() override { updateSliderPos(); }
  43. void startedDragging() override { param.beginChangeGesture(); }
  44. void stoppedDragging() override { param.endChangeGesture(); }
  45. double getValueFromText (const String& text) override { return param.getValueForText (text); }
  46. String getTextFromValue (double value) override { return param.getText ((float) value, 1024); }
  47. void updateSliderPos()
  48. {
  49. const float newValue = param.getValue();
  50. if (newValue != (float) Slider::getValue() && ! isMouseButtonDown())
  51. Slider::setValue (newValue);
  52. }
  53. AudioProcessorParameter& param;
  54. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ParameterSlider)
  55. };
  56. //==============================================================================
  57. JuceDemoPluginAudioProcessorEditor::JuceDemoPluginAudioProcessorEditor (JuceDemoPluginAudioProcessor& owner)
  58. : AudioProcessorEditor (owner),
  59. midiKeyboard (owner.keyboardState, MidiKeyboardComponent::horizontalKeyboard),
  60. timecodeDisplayLabel (String()),
  61. gainLabel (String(), "Throughput level:"),
  62. delayLabel (String(), "Delay:")
  63. {
  64. // add some sliders..
  65. addAndMakeVisible (gainSlider = new ParameterSlider (*owner.gainParam));
  66. gainSlider->setSliderStyle (Slider::Rotary);
  67. addAndMakeVisible (delaySlider = new ParameterSlider (*owner.delayParam));
  68. delaySlider->setSliderStyle (Slider::Rotary);
  69. // add some labels for the sliders..
  70. gainLabel.attachToComponent (gainSlider, false);
  71. gainLabel.setFont (Font (11.0f));
  72. delayLabel.attachToComponent (delaySlider, false);
  73. delayLabel.setFont (Font (11.0f));
  74. // add the midi keyboard component..
  75. addAndMakeVisible (midiKeyboard);
  76. // add a label that will display the current timecode and status..
  77. addAndMakeVisible (timecodeDisplayLabel);
  78. timecodeDisplayLabel.setFont (Font (Font::getDefaultMonospacedFontName(), 15.0f, Font::plain));
  79. // set resize limits for this plug-in
  80. setResizeLimits (400, 200, 1024, 700);
  81. // set our component's initial size to be the last one that was stored in the filter's settings
  82. setSize (owner.lastUIWidth,
  83. owner.lastUIHeight);
  84. // start a timer which will keep our timecode display updated
  85. startTimerHz (30);
  86. }
  87. JuceDemoPluginAudioProcessorEditor::~JuceDemoPluginAudioProcessorEditor()
  88. {
  89. }
  90. //==============================================================================
  91. void JuceDemoPluginAudioProcessorEditor::paint (Graphics& g)
  92. {
  93. g.setColour (getLookAndFeel().findColour (ResizableWindow::backgroundColourId));
  94. g.fillAll();
  95. }
  96. void JuceDemoPluginAudioProcessorEditor::resized()
  97. {
  98. // This lays out our child components...
  99. Rectangle<int> r (getLocalBounds().reduced (8));
  100. timecodeDisplayLabel.setBounds (r.removeFromTop (26));
  101. midiKeyboard.setBounds (r.removeFromBottom (70));
  102. r.removeFromTop (20);
  103. Rectangle<int> sliderArea (r.removeFromTop (60));
  104. gainSlider->setBounds (sliderArea.removeFromLeft (jmin (180, sliderArea.getWidth() / 2)));
  105. delaySlider->setBounds (sliderArea.removeFromLeft (jmin (180, sliderArea.getWidth())));
  106. getProcessor().lastUIWidth = getWidth();
  107. getProcessor().lastUIHeight = getHeight();
  108. }
  109. //==============================================================================
  110. void JuceDemoPluginAudioProcessorEditor::timerCallback()
  111. {
  112. updateTimecodeDisplay (getProcessor().lastPosInfo);
  113. }
  114. void JuceDemoPluginAudioProcessorEditor::hostMIDIControllerIsAvailable (bool controllerIsAvailable)
  115. {
  116. midiKeyboard.setVisible (! controllerIsAvailable);
  117. }
  118. //==============================================================================
  119. // quick-and-dirty function to format a timecode string
  120. static String timeToTimecodeString (double seconds)
  121. {
  122. const int millisecs = roundToInt (seconds * 1000.0);
  123. const int absMillisecs = std::abs (millisecs);
  124. return String::formatted ("%02d:%02d:%02d.%03d",
  125. millisecs / 3600000,
  126. (absMillisecs / 60000) % 60,
  127. (absMillisecs / 1000) % 60,
  128. absMillisecs % 1000);
  129. }
  130. // quick-and-dirty function to format a bars/beats string
  131. static String quarterNotePositionToBarsBeatsString (double quarterNotes, int numerator, int denominator)
  132. {
  133. if (numerator == 0 || denominator == 0)
  134. return "1|1|000";
  135. const int quarterNotesPerBar = (numerator * 4 / denominator);
  136. const double beats = (fmod (quarterNotes, quarterNotesPerBar) / quarterNotesPerBar) * numerator;
  137. const int bar = ((int) quarterNotes) / quarterNotesPerBar + 1;
  138. const int beat = ((int) beats) + 1;
  139. const int ticks = ((int) (fmod (beats, 1.0) * 960.0 + 0.5));
  140. return String::formatted ("%d|%d|%03d", bar, beat, ticks);
  141. }
  142. // Updates the text in our position label.
  143. void JuceDemoPluginAudioProcessorEditor::updateTimecodeDisplay (AudioPlayHead::CurrentPositionInfo pos)
  144. {
  145. MemoryOutputStream displayText;
  146. displayText << "[" << SystemStats::getJUCEVersion() << "] "
  147. << String (pos.bpm, 2) << " bpm, "
  148. << pos.timeSigNumerator << '/' << pos.timeSigDenominator
  149. << " - " << timeToTimecodeString (pos.timeInSeconds)
  150. << " - " << quarterNotePositionToBarsBeatsString (pos.ppqPosition,
  151. pos.timeSigNumerator,
  152. pos.timeSigDenominator);
  153. if (pos.isRecording)
  154. displayText << " (recording)";
  155. else if (pos.isPlaying)
  156. displayText << " (playing)";
  157. timecodeDisplayLabel.setText (displayText.toString(), dontSendNotification);
  158. }