@@ -18,7 +18,7 @@ gtr_synth = tunePlayer(tune1) : synth;
1818bass_synth = tunePlayer(tune2) : synth;
1919
2020//
21- // alchemist.dsp - bass compressor only
21+ // alchemist.dsp - bass compressor, trem, detune
2222//
2323
2424// utils
@@ -80,12 +80,8 @@ width_param = hslider("width[OWL:D]", 0., 0., 1., .001) : reject_noise(0.05, 1.0
8080detune_on = button("detune_on[OWL:B1]") : ba.toggle;
8181trem_on = button("trem_on[OWL:B2]") : ba.toggle;
8282
83- // TODO trem
84- // TODO autopan / width options
85- // TODO chorus width?
86- // TODO parked reverb?
87- // TODO modulate pitch shift?
88- // TODO adjust relative pitch shift?
83+ // TODO sidechain
84+ // TODO width options
8985
9086// fx
9187wet_amount_detune = ba.if(detune_param < 2/3, ba.if(detune_param < 1/3, .1, .3), .5);
@@ -128,34 +124,38 @@ export default dspDefinition;
128124/**
129125 * PARAMS:
130126 *
131- * detune = - vol 20%: depth 0 ... 100%
127+ * detune = - vol 10%: depth 0 ... 100%
128+ * - vol 30%: depth 0 ... 100%
132129 * - vol 50%: depth 0 ... 100%
133- * - vol 100%: depth 0 ... 100%
134130 *
135- * trem = - depth 50%: rate .2Hz ... 10Hz
131+ * trem = - depth 30%: rate .2Hz ... 10Hz
132+ * - depth 60%: rate .2Hz ... 10Hz
136133 * - depth 100%: rate .2Hz ... 10Hz
137134 * - ??? randomise depth?
138135 *
139- * width = - straight: mono ... stereo
136+ * width = NOT IMPLEMENTED
137+ * - straight: mono ... stereo
140138 * - autopan: slow ... fast
141139 * - offset: 0ms ... 500ms
142140 * - ping pong: 0ms ... 500ms
143141 *
144- * sidechain = - volume decrease: 0 ... 100%
142+ * sidechain = NOT IMPLEMENTED
143+ * - volume decrease: 0 ... 100%
145144 *
146145 * BUTTONS:
147146 *
148147 * A:
149- * - tap: enable / disable chorus
150- * - hold + B: select sidechain mode?
148+ * - tap: enable / disable detune
149+ * - hold + B: NOT IMPLEMENTED
150+ * select sidechain mode?
151151 * - volume
152152 * - low pass
153153 * - high pass
154154 * - reverb swell ??????
155155 *
156156 * B:
157157 * - tap: enable / disable trem
158- * - hold + A:
158+ * - hold + A: NOT ASSIGNED
159159 *
160160 *
161161 *
0 commit comments