4 #include "synthfunctions.h" 9 class SynthLabCore :
public ModuleCore
18 virtual bool reset(CoreProcData& processInfo);
19 virtual bool update(CoreProcData& processInfo);
20 virtual bool render(CoreProcData& processInfo);
21 virtual bool doNoteOn(CoreProcData& processInfo);
22 virtual bool doNoteOff(CoreProcData& processInfo);
28 double outputValue = 0.0;
29 double modStrength = 1.0;
32 SynthClock fmOpClock[3];
bool renderComplete
flag for one-shot
Definition: synthlabcore.h:35
SynthLabCore()
Construction: Cores follow the same construction pattern.
Definition: synthlabcore.cpp:29
virtual bool doNoteOff(CoreProcData &processInfo) override
Note-off handler for the ModuleCore.
Definition: synthlabcore.cpp:135
Definition: synthengine.cpp:16
virtual bool update(CoreProcData &processInfo) override
Updates the object for the next block of audio processing.
Definition: synthlabcore.cpp:79
double sampleRate
sample rate
Definition: synthlabcore.h:108
virtual bool render(CoreProcData &processInfo) override
Renders the output of the module.
Definition: synthlabcore.cpp:98
virtual bool doNoteOn(CoreProcData &processInfo) override
Note-on handler for the ModuleCore.
Definition: synthlabcore.cpp:116
virtual bool reset(CoreProcData &processInfo) override
Resets object to initialized state.
Definition: synthlabcore.cpp:61