108 std::shared_ptr<SynthModuleWithCoresParameters> _parameters,
109 uint32_t blockSize = 32);
115 virtual bool reset(
double _sampleRate)
override;
116 virtual bool update()
override;
117 virtual bool render(uint32_t samplesToProcess = 1)
override;
std::shared_ptr< OscParameters > parameters
Definition: synthmodule_withcores.h:130
virtual bool update() override
Updates the selected core; sets GLOBAL engine variable unisonDetuneCents that may have changed since ...
Definition: synthmodule_withcores.cpp:86
std::shared_ptr< OscParameters > getParameters()
Definition: synthmodule_withcores.h:124
Definition: addosccore.cpp:4
virtual ~SynthModuleWithCores()
Definition: synthmodule_withcores.h:112
Abstract base class that encapsulates functionality of a module; used with the Module-Core paradigm...
Definition: synthbase.h:1600
SynthModuleWithCores(std::shared_ptr< MidiInputData > _midiInputData, std::shared_ptr< SynthModuleWithCoresParameters > _parameters, uint32_t blockSize=32)
Constructs Virtual Analog Oscillator module.
Definition: synthmodule_withcores.cpp:27
virtual bool reset(double _sampleRate) override
Resets object to initialized state.
Definition: synthmodule_withcores.cpp:69
Virtual analog oscillator module.
Definition: synthmodule_withcores.h:103
virtual bool doNoteOn(MIDINoteEvent ¬eEvent) override
Calls the note-on handler for all cores.
Definition: synthmodule_withcores.cpp:117
virtual bool render(uint32_t samplesToProcess=1) override
Renders audio from the selected core.
Definition: synthmodule_withcores.cpp:103
virtual bool doNoteOff(MIDINoteEvent ¬eEvent) override
Calls the note-off handler for all cores.
Definition: synthmodule_withcores.cpp:134
hard-coded arrays of FIR filter coefficients for the sample rate conversion objects (Interpolator and...
Information about a MIDI note event (note on or note off).
Definition: synthstructures.h:212
See also Designing Software Synthesizers in C++ 2nd Ed. by Will Pirkle.