SynthLab SDK
Set GUI Control Strings

Ultimtely, you will need to know the names of the waveforms, filters, EG contours and all of the Mod Knob labels to generate your GUI for the synth. In the fixed core paradigm, you pre-code these into your GUI. You can find the list of module strings and mod knob labels for each core here in the documentation (the more... link at the top of the documentation for each class) which ultimately comes from the Doxy-comments at the top of the core's .h source file. You will find the mod knob strings and the labels defined near the top of this information. For example, for the "SFXWTCore" which is the sound effect wavetable core, you find the strings listed in the comments:

/* in the comments at the top of the <core>.h file */
//
Module Strings, zero-indexed for your GUI Control:
- Creme, JawBreak, Laser, Minipop, Noisey, Ploppy, Pop, RobotPunch, Seeit, Speeder, Splok, Sploop, SprinGun, Swish, Swoosh, WackaBot
ModKnob Strings, for fixed GUI controls by index constant
- MOD_KNOB_A = "Shape"
- MOD_KNOB_B = "HSync"
- MOD_KNOB_C = "Phase"
- MOD_KNOB_D = "D"
//

Use these strings to populate your GUIs. You will also find copies of these strings in the parameter listings in the appendix.


synthlab_4.png