/* ============================================================================== This file is part of the JUCE framework examples. Copyright (c) Raw Material Software Limited The code included in this file is provided under the terms of the ISC license http://www.isc.org/downloads/software-support-policy/isc-license. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ============================================================================== */ /******************************************************************************* The block below describes the properties of this PIP. A PIP is a short snippet of code that can be read by the Projucer and used to generate a JUCE project. BEGIN_JUCE_PIP_METADATA name: OscillatorDemo version: 1.0.0 vendor: JUCE website: http://juce.com description: Oscillator demo using the DSP module. dependencies: juce_audio_basics, juce_audio_devices, juce_audio_formats, juce_audio_processors, juce_audio_utils, juce_core, juce_data_structures, juce_dsp, juce_events, juce_graphics, juce_gui_basics, juce_gui_extra exporters: xcode_mac, vs2022, linux_make moduleFlags: JUCE_STRICT_REFCOUNTEDPOINTER=1 type: Component mainClass: OscillatorDemo useLocalCopy: 1 END_JUCE_PIP_METADATA *******************************************************************************/ #pragma once #include "../Assets/DemoUtilities.h" #include "../Assets/DSPDemos_Common.h" using namespace dsp; //============================================================================== struct OscillatorDemoDSP { void prepare (const ProcessSpec& spec) { gain.setGainDecibels (-6.0f); for (auto&& oscillator : oscillators) { oscillator.setFrequency (440.f); oscillator.prepare (spec); } updateParameters(); tempBuffer = AudioBlock (tempBufferMemory, spec.numChannels, spec.maximumBlockSize); } void process (const ProcessContextReplacing& context) { tempBuffer.copyFrom (context.getInputBlock()); tempBuffer.multiplyBy (static_cast (fileMix)); oscillators[currentOscillatorIdx].process (context); context.getOutputBlock().multiplyBy (static_cast (1.0 - fileMix)); context.getOutputBlock().add (tempBuffer); gain.process (context); } void reset() { oscillators[currentOscillatorIdx].reset(); } void updateParameters() { currentOscillatorIdx = jmin (numElementsInArray (oscillators), 3 * (accuracy.getCurrentSelectedID() - 1) + (typeParam.getCurrentSelectedID() - 1)); auto freq = static_cast (freqParam.getCurrentValue()); for (auto&& oscillator : oscillators) oscillator.setFrequency (freq); gain.setGainDecibels (static_cast (gainParam.getCurrentValue())); fileMix = mixParam.getCurrentValue(); } //============================================================================== Oscillator oscillators[6] = { // No Approximation {[] (float x) { return std::sin (x); }}, // sine {[] (float x) { return x / MathConstants::pi; }}, // saw {[] (float x) { return x < 0.0f ? -1.0f : 1.0f; }}, // square // Approximated by a wave-table {[] (float x) { return std::sin (x); }, 100}, // sine {[] (float x) { return x / MathConstants::pi; }, 100}, // saw {[] (float x) { return x < 0.0f ? -1.0f : 1.0f; }, 100} // square }; int currentOscillatorIdx = 0; Gain gain; ChoiceParameter typeParam { {"sine", "saw", "square"}, 1, "Type" }; ChoiceParameter accuracy { {"No Approximation", "Use Wavetable"}, 1, "Accuracy" }; SliderParameter freqParam { { 20.0, 24000.0 }, 0.4, 440.0, "Frequency", "Hz" }; SliderParameter gainParam { { -100.0, 20.0 }, 3.0, -20.0, "Gain", "dB" }; SliderParameter mixParam { { 0.0, 1.0 }, 1.0, 0.0, "File mix" }; HeapBlock tempBufferMemory; AudioBlock tempBuffer; double fileMix; std::vector parameters { &typeParam, &accuracy, &freqParam, &gainParam, &mixParam }; }; struct OscillatorDemo final : public Component { OscillatorDemo() { addAndMakeVisible (fileReaderComponent); setSize (750, 500); } void resized() override { fileReaderComponent.setBounds (getLocalBounds()); } AudioFileReaderComponent fileReaderComponent; };