Skip to content

Commit d788296

Browse files
committed
update to JUCE6
1 parent 3e39d03 commit d788296

23 files changed

+2099
-2097
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# SimpleSide
2-
Simplified volume curve LFO utility by Armando Montanez
2+
Simplified volume curve LFO utility by Armando Montanez updated to recent JUCE.
3+
4+
Original page and code: http://armandomontanez.com/simpleside/index.html

Source/PluginEditor.cpp

+75-75
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
1-
/*
2-
==============================================================================
3-
4-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
5-
* Copyright � 2017 Armando Montanez *
6-
* *
7-
* This file is part of SimpleSide. *
8-
* *
9-
* SimpleSide is free software: you can redistribute it and/or modify *
10-
* it under the terms of the GNU General Public License as published by *
11-
* the Free Software Foundation, either version 3 of the License, or *
12-
* (at your option) any later version. *
13-
* *
14-
* SimpleSide is distributed in the hope that it will be useful, *
15-
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
16-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17-
* GNU General Public License for more details. *
18-
* *
19-
* You should have received a copy of the GNU General Public License *
20-
* along with SimpleSide. If not, see <http://www.gnu.org/licenses/>. *
21-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22-
23-
==============================================================================
24-
*/
25-
26-
#include "PluginProcessor.h"
27-
#include "PluginEditor.h"
28-
29-
30-
//==============================================================================
31-
SimpleSideAudioProcessorEditor::SimpleSideAudioProcessorEditor (SimpleSideAudioProcessor& p)
32-
: AudioProcessorEditor (&p), processor (p), mainView(&(processor.primaryCurve)), mixKnob(processor.mixValue), rateReadout(processor.rateValue), graphicsUpdateTimer(this)
33-
{
34-
// Make sure that before the constructor has finished, you've set the
35-
// editor's size to whatever you need it to be.
36-
setSize (800, 500);
37-
background = ImageCache::getFromMemory(BinaryData::background_png, BinaryData::background_pngSize);
38-
addAndMakeVisible(&mainView);
39-
addAndMakeVisible(&mixKnob);
40-
addAndMakeVisible(&rateReadout);
41-
processor.primaryCurve.setParent(&mainView);
42-
graphicsUpdateTimer.startTimerHz(60);
43-
}
44-
45-
SimpleSideAudioProcessorEditor::~SimpleSideAudioProcessorEditor()
46-
{
47-
processor.primaryCurve.setParent(NULL);
48-
}
49-
50-
//==============================================================================
51-
void SimpleSideAudioProcessorEditor::paint (Graphics& g)
52-
{
53-
g.drawImageAt(background, 0, 0);
54-
// debugging stuff
55-
/*
56-
if (false) {
57-
g.setColour(Colours::white);
58-
g.drawSingleLineText("this is some text", 0, 0);
59-
g.drawSingleLineText(std::to_string(processor.currentTime), 0, 10);
60-
g.drawSingleLineText(std::to_string(processor.numBeats), 0, 20);
61-
g.drawSingleLineText(std::to_string(processor.position), 0, 30);
62-
g.drawSingleLineText(std::to_string(processor.sizeOfSample), 0, 40);
63-
g.drawSingleLineText(std::to_string(processor.finalPosition), 0, 50);
64-
g.drawSingleLineText(std::to_string(processor.samplesPerSec), 0, 60);
65-
g.drawSingleLineText(std::to_string(processor.hostSecPerBeat), 0, 70);
66-
g.drawSingleLineText(std::to_string(processor.samplesPerSec*processor.hostSecPerBeat), 0, 80);
67-
}
68-
*/
69-
}
70-
71-
void SimpleSideAudioProcessorEditor::resized()
72-
{
73-
// This is generally where you'll want to lay out the positions of any
74-
// subcomponents in your editor..
75-
}
1+
/*
2+
==============================================================================
3+
4+
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
5+
* Copyright � 2017 Armando Montanez *
6+
* *
7+
* This file is part of SimpleSide. *
8+
* *
9+
* SimpleSide is free software: you can redistribute it and/or modify *
10+
* it under the terms of the GNU General Public License as published by *
11+
* the Free Software Foundation, either version 3 of the License, or *
12+
* (at your option) any later version. *
13+
* *
14+
* SimpleSide is distributed in the hope that it will be useful, *
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17+
* GNU General Public License for more details. *
18+
* *
19+
* You should have received a copy of the GNU General Public License *
20+
* along with SimpleSide. If not, see <http://www.gnu.org/licenses/>. *
21+
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22+
23+
==============================================================================
24+
*/
25+
26+
#include "PluginProcessor.h"
27+
#include "PluginEditor.h"
28+
29+
30+
//==============================================================================
31+
SimpleSideAudioProcessorEditor::SimpleSideAudioProcessorEditor (SimpleSideAudioProcessor& p)
32+
: AudioProcessorEditor (&p), processor (p), mainView(&(processor.primaryCurve)), mixKnob(processor.mixValue), rateReadout(processor.rateValue), graphicsUpdateTimer(this)
33+
{
34+
// Make sure that before the constructor has finished, you've set the
35+
// editor's size to whatever you need it to be.
36+
setSize (800, 500);
37+
background = juce::ImageCache::getFromMemory(BinaryData::background_png, BinaryData::background_pngSize);
38+
addAndMakeVisible(&mainView);
39+
addAndMakeVisible(&mixKnob);
40+
addAndMakeVisible(&rateReadout);
41+
processor.primaryCurve.setParent(&mainView);
42+
graphicsUpdateTimer.startTimerHz(60);
43+
}
44+
45+
SimpleSideAudioProcessorEditor::~SimpleSideAudioProcessorEditor()
46+
{
47+
processor.primaryCurve.setParent(NULL);
48+
}
49+
50+
//==============================================================================
51+
void SimpleSideAudioProcessorEditor::paint (juce::Graphics& g)
52+
{
53+
g.drawImageAt(background, 0, 0);
54+
// debugging stuff
55+
/*
56+
if (false) {
57+
g.setColour(Colours::white);
58+
g.drawSingleLineText("this is some text", 0, 0);
59+
g.drawSingleLineText(std::to_string(processor.currentTime), 0, 10);
60+
g.drawSingleLineText(std::to_string(processor.numBeats), 0, 20);
61+
g.drawSingleLineText(std::to_string(processor.position), 0, 30);
62+
g.drawSingleLineText(std::to_string(processor.sizeOfSample), 0, 40);
63+
g.drawSingleLineText(std::to_string(processor.finalPosition), 0, 50);
64+
g.drawSingleLineText(std::to_string(processor.samplesPerSec), 0, 60);
65+
g.drawSingleLineText(std::to_string(processor.hostSecPerBeat), 0, 70);
66+
g.drawSingleLineText(std::to_string(processor.samplesPerSec*processor.hostSecPerBeat), 0, 80);
67+
}
68+
*/
69+
}
70+
71+
void SimpleSideAudioProcessorEditor::resized()
72+
{
73+
// This is generally where you'll want to lay out the positions of any
74+
// subcomponents in your editor..
75+
}

Source/PluginEditor.h

+93-93
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,93 @@
1-
/*
2-
==============================================================================
3-
4-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
5-
* Copyright © 2017 Armando Montanez *
6-
* *
7-
* This file is part of SimpleSide. *
8-
* *
9-
* SimpleSide is free software: you can redistribute it and/or modify *
10-
* it under the terms of the GNU General Public License as published by *
11-
* the Free Software Foundation, either version 3 of the License, or *
12-
* (at your option) any later version. *
13-
* *
14-
* SimpleSide is distributed in the hope that it will be useful, *
15-
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
16-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17-
* GNU General Public License for more details. *
18-
* *
19-
* You should have received a copy of the GNU General Public License *
20-
* along with SimpleSide. If not, see <http://www.gnu.org/licenses/>. *
21-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22-
23-
==============================================================================
24-
*/
25-
26-
#ifndef PLUGINEDITOR_H_INCLUDED
27-
#define PLUGINEDITOR_H_INCLUDED
28-
29-
#include "../JuceLibraryCode/JuceHeader.h"
30-
#include "PluginProcessor.h"
31-
#include "./ui/CurveView.h"
32-
#include "./ui/SSMixKnob.h"
33-
#include "./ui/SSRateReadout.h"
34-
35-
//==============================================================================
36-
/**
37-
*/
38-
class SimpleSideAudioProcessorEditor : public AudioProcessorEditor
39-
{
40-
SimpleSideAudioProcessor& processor;
41-
CurveView mainView;
42-
SSMixKnob mixKnob;
43-
SSRateReadout rateReadout;
44-
juce::Image background;
45-
juce::Image playhead;
46-
47-
class redrawTimer : public Timer
48-
{
49-
public:
50-
redrawTimer(AudioProcessorEditor* e)
51-
{
52-
this->editor = e;
53-
}
54-
void timerCallback() override {
55-
editor->repaint();
56-
if (((SimpleSideAudioProcessorEditor*)editor)->mixKnob.isMouseButtonDown()) {
57-
((SimpleSideAudioProcessorEditor*)editor)->processor.mixAutomationReference->beginChangeGesture();
58-
((SimpleSideAudioProcessorEditor*)editor)->processor.mixValue = ((SimpleSideAudioProcessorEditor*)editor)->mixKnob.getValue();
59-
((SimpleSideAudioProcessorEditor*)editor)->processor.mixAutomationReference->setValueNotifyingHost(((SimpleSideAudioProcessorEditor*)editor)->processor.mixValue);
60-
((SimpleSideAudioProcessorEditor*)editor)->processor.mixAutomationReference->endChangeGesture();
61-
} else
62-
((SimpleSideAudioProcessorEditor*)editor)->mixKnob.setValue(((SimpleSideAudioProcessorEditor*)editor)->processor.mixValue);
63-
64-
if (((SimpleSideAudioProcessorEditor*)editor)->rateReadout.isMouseButtonDown()) {
65-
((SimpleSideAudioProcessorEditor*)editor)->processor.rateAutomationReference->beginChangeGesture();
66-
((SimpleSideAudioProcessorEditor*)editor)->processor.rateValue = ((SimpleSideAudioProcessorEditor*)editor)->rateReadout.getValue();
67-
((SimpleSideAudioProcessorEditor*)editor)->processor.rateAutomationReference->setValueNotifyingHost((((SimpleSideAudioProcessorEditor*)editor)->processor.rateValue + 3)/9);
68-
((SimpleSideAudioProcessorEditor*)editor)->processor.rateAutomationReference->endChangeGesture();
69-
} else
70-
((SimpleSideAudioProcessorEditor*)editor)->rateReadout.setValue(((SimpleSideAudioProcessorEditor*)editor)->processor.rateValue);
71-
}
72-
private:
73-
AudioProcessorEditor* editor;
74-
};
75-
public:
76-
SimpleSideAudioProcessorEditor (SimpleSideAudioProcessor&);
77-
~SimpleSideAudioProcessorEditor();
78-
79-
//==============================================================================
80-
void paint (Graphics&) override;
81-
void resized() override;
82-
83-
private:
84-
//CurveView pluginBody;
85-
// This reference is provided as a quick way for your editor to
86-
// access the processor object that created it.
87-
redrawTimer graphicsUpdateTimer;
88-
89-
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleSideAudioProcessorEditor)
90-
};
91-
92-
93-
#endif // PLUGINEDITOR_H_INCLUDED
1+
/*
2+
==============================================================================
3+
4+
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
5+
* Copyright © 2017 Armando Montanez *
6+
* *
7+
* This file is part of SimpleSide. *
8+
* *
9+
* SimpleSide is free software: you can redistribute it and/or modify *
10+
* it under the terms of the GNU General Public License as published by *
11+
* the Free Software Foundation, either version 3 of the License, or *
12+
* (at your option) any later version. *
13+
* *
14+
* SimpleSide is distributed in the hope that it will be useful, *
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17+
* GNU General Public License for more details. *
18+
* *
19+
* You should have received a copy of the GNU General Public License *
20+
* along with SimpleSide. If not, see <http://www.gnu.org/licenses/>. *
21+
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22+
23+
==============================================================================
24+
*/
25+
26+
#ifndef PLUGINEDITOR_H_INCLUDED
27+
#define PLUGINEDITOR_H_INCLUDED
28+
29+
#include "../JuceLibraryCode/JuceHeader.h"
30+
#include "PluginProcessor.h"
31+
#include "./ui/CurveView.h"
32+
#include "./ui/SSMixKnob.h"
33+
#include "./ui/SSRateReadout.h"
34+
35+
//==============================================================================
36+
/**
37+
*/
38+
class SimpleSideAudioProcessorEditor : public juce::AudioProcessorEditor
39+
{
40+
SimpleSideAudioProcessor& processor;
41+
CurveView mainView;
42+
SSMixKnob mixKnob;
43+
SSRateReadout rateReadout;
44+
juce::Image background;
45+
juce::Image playhead;
46+
47+
class redrawTimer : public juce::Timer
48+
{
49+
public:
50+
redrawTimer(juce::AudioProcessorEditor* e)
51+
{
52+
this->editor = e;
53+
}
54+
void timerCallback() override {
55+
editor->repaint();
56+
if (((SimpleSideAudioProcessorEditor*)editor)->mixKnob.isMouseButtonDown()) {
57+
((SimpleSideAudioProcessorEditor*)editor)->processor.mixAutomationReference->beginChangeGesture();
58+
((SimpleSideAudioProcessorEditor*)editor)->processor.mixValue = ((SimpleSideAudioProcessorEditor*)editor)->mixKnob.getValue();
59+
((SimpleSideAudioProcessorEditor*)editor)->processor.mixAutomationReference->setValueNotifyingHost(((SimpleSideAudioProcessorEditor*)editor)->processor.mixValue);
60+
((SimpleSideAudioProcessorEditor*)editor)->processor.mixAutomationReference->endChangeGesture();
61+
} else
62+
((SimpleSideAudioProcessorEditor*)editor)->mixKnob.setValue(((SimpleSideAudioProcessorEditor*)editor)->processor.mixValue);
63+
64+
if (((SimpleSideAudioProcessorEditor*)editor)->rateReadout.isMouseButtonDown()) {
65+
((SimpleSideAudioProcessorEditor*)editor)->processor.rateAutomationReference->beginChangeGesture();
66+
((SimpleSideAudioProcessorEditor*)editor)->processor.rateValue = ((SimpleSideAudioProcessorEditor*)editor)->rateReadout.getValue();
67+
((SimpleSideAudioProcessorEditor*)editor)->processor.rateAutomationReference->setValueNotifyingHost((((SimpleSideAudioProcessorEditor*)editor)->processor.rateValue + 3)/9);
68+
((SimpleSideAudioProcessorEditor*)editor)->processor.rateAutomationReference->endChangeGesture();
69+
} else
70+
((SimpleSideAudioProcessorEditor*)editor)->rateReadout.setValue(((SimpleSideAudioProcessorEditor*)editor)->processor.rateValue);
71+
}
72+
private:
73+
juce::AudioProcessorEditor* editor;
74+
};
75+
public:
76+
SimpleSideAudioProcessorEditor (SimpleSideAudioProcessor&);
77+
~SimpleSideAudioProcessorEditor();
78+
79+
//==============================================================================
80+
void paint (juce::Graphics&) override;
81+
void resized() override;
82+
83+
private:
84+
//CurveView pluginBody;
85+
// This reference is provided as a quick way for your editor to
86+
// access the processor object that created it.
87+
redrawTimer graphicsUpdateTimer;
88+
89+
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleSideAudioProcessorEditor)
90+
};
91+
92+
93+
#endif // PLUGINEDITOR_H_INCLUDED

0 commit comments

Comments
 (0)