SynthLab SDK
|
Implements three Karplus-Strong algorithms to generate. More...
#include <ksocore.h>
Public Member Functions | |
KSOCore () | |
Construction: Cores follow the same construction pattern. More... | |
virtual | ~KSOCore () |
virtual bool | reset (CoreProcData &processInfo) override |
Resets object to initialized state. More... | |
virtual bool | update (CoreProcData &processInfo) override |
Updates the object for the next block of audio processing. More... | |
virtual bool | render (CoreProcData &processInfo) override |
Renders the output of the module. More... | |
virtual bool | doNoteOn (CoreProcData &processInfo) override |
Note-on handler for the ModuleCore. More... | |
virtual bool | doNoteOff (CoreProcData &processInfo) override |
Note-off handler for the ModuleCore. More... | |
![]() | |
ModuleCore () | |
Constructs a ModuleCore. More... | |
virtual int32_t | getState () |
virtual bool | shutdown () |
virtual void | setSustainOverride (bool sustain) |
virtual void | setStandAloneMode (bool b) |
bool | startGlideModulation (GlideInfo &glideInfo) |
uint32_t | getModuleType () |
const char * | getModuleName () |
void * | getModuleHandle () |
void | setModuleHandle (void *handle) |
uint32_t | getModuleIndex () |
void | setModuleIndex (uint32_t index) |
int32_t | getPreferredModuleIndex () |
void | setPreferredModuleIndex (uint32_t index) |
ModuleCoreData & | getModuleData () |
provides access to the core data: More... | |
Protected Types | |
enum | { kNylonGtr, kDistGtr, kBass, kSilent } |
Protected Attributes | |
double | sampleRate = 0.0 |
sample rate | |
double | midiPitch = 0.0 |
the midi pitch | |
double | outputAmplitude = 1.0 |
amplitude in dB | |
double | panLeftGain = 0.707 |
left channel gain | |
double | panRightGain = 0.707 |
right channel gain | |
uint32_t | pluckPosition = 1 |
position: 0 = at nut, 1 = at center of string | |
double | saturation = 1.0 |
for distortion control | |
Exciter | exciter |
exciter for KS model | |
Resonator | resonator |
resonator for KS model | |
HighShelfFilter | highShelfFilter |
filter for adding bite to exciter | |
LP2Filter | bassFilter |
for bass guitar pickup simulation | |
LP2Filter | distortionFilter |
for soft clip distortion | |
PluckPosFilter | pluckPosFilter |
for simulating pluck position with comb filter | |
ParametricFilter | bodyFilter |
sinple parameteric filter for adding a resonant hump to th output More... | |
![]() | |
uint32_t | moduleType = UNDEFINED_MODULE |
type of module, LFO_MODULE, EG_MODULE, etc... | |
const char * | moduleName = nullptr |
module name must be set in derived constructor | |
void * | moduleHandle = nullptr |
used for dynamically loading cores from DLLs | |
uint32_t | moduleIndex = 0 |
index of this core | |
int32_t | preferredIndex = -1 |
preferred index of this DYNAMIC core | |
ModuleCoreData | coreData |
core strings (16) and mod knob labels (4) | |
bool | standAloneMode = false |
flag for stand-alone mode of operation outside of SynthLab | |
std::unique_ptr< GlideModulator > | glideModulator |
built-in glide modulator for oscillators | |
Implements three Karplus-Strong algorithms to generate.
Base Class: ModuleCore
GUI Parameters: KSOscParameters
Access to Modulators is done via the thunk-barrier compliant CoreProcData argument
Access to audio buffers (I/O/FM) is done via the thunk-barrier compliant CoreProcData argument
Construction: Cores follow the same construction pattern
Standalone Mode:
Module Strings, zero-indexed for your GUI Control:
ModKnob Strings, for fixed GUI controls by index constant
Render:
SynthLab::KSOCore::KSOCore | ( | ) |
Construction: Cores follow the same construction pattern.
simple default constructor
|
inlinevirtual |
Destructor is empty: all resources are smart pointers
|
overridevirtual |
Note-off handler for the ModuleCore.
Core Specific:
processInfo | is the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Note-on handler for the ModuleCore.
Core Specific:
processInfo | is the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Renders the output of the module.
processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Resets object to initialized state.
ModuleCore Overrides
processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
overridevirtual |
Updates the object for the next block of audio processing.
processInfo | the thunk-barrier compliant data structure for passing all needed parameters |
Implements SynthLab::ModuleCore.
|
protected |
sinple parameteric filter for adding a resonant hump to th output
simple enumeration for model choice