SynthLab SDK
synthmodule_withcores.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "synthbase.h"
4 #include "synthfunctions.h"
5 
6 // -----------------------------
7 // --- SynthLab SDK File --- //
8 // ----------------------------
16 // -----------------------------------------------------------------------------
17 namespace SynthLab
18 {
104  {
105  public:
107  SynthModuleWithCores(std::shared_ptr<MidiInputData> _midiInputData,
108  std::shared_ptr<SynthModuleWithCoresParameters> _parameters,
109  uint32_t blockSize = 32);
110 
112  virtual ~SynthModuleWithCores() {}/* D-TOR */
113 
115  virtual bool reset(double _sampleRate) override;
116  virtual bool update() override;
117  virtual bool render(uint32_t samplesToProcess = 1) override;
118  virtual bool doNoteOn(MIDINoteEvent& noteEvent) override;
119  virtual bool doNoteOff(MIDINoteEvent& noteEvent) override;
120 
124  std::shared_ptr<OscParameters> getParameters() { return parameters; }
125 
126  protected:
130  std::shared_ptr<OscParameters> parameters = nullptr;
131  };
132 
133 
134 }
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 &noteEvent) 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 &noteEvent) 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.