dhwani 0.1.1

A real-time audio processing engine for DAWs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
use std::ops::Range;

use crate::{
    Error,
    channel::{ChannelPosition, ChannelPositionsMask},
    event::EventData,
    node::{NodeBuilderTrait, NodeCtx, NodeInputs, NodeOutputs, NodeResetCtx, NodeTrait},
    port::{PortId, PortProps, PortType},
};

#[derive(Default, Clone)]
pub enum OscMode {
    #[default]
    Sin,
    Square,
    Saw,
}

#[derive(Default, Clone)]
pub struct OscProps {
    channel_mask: ChannelPositionsMask,
    mode: OscMode,
    // Duty cycle
    ds: f32,
    w: f32, // In rad/s
    phase: f32,
    mul: f32,
}

impl OscProps {
    pub const PORT_ID_IN_EVENTS: PortId = PortId(0);
    pub const PORT_ID_DUTY_CTRL: PortId = PortId(1);
    pub const PORT_ID_PHASE_CTRL: PortId = PortId(2);
    pub const PORT_ID_W_CTRL: PortId = PortId(3);
    pub const PORT_ID_MUL_CTRL: PortId = PortId(4);
    pub const PORT_ID_OUTPUT: PortId = PortId(5);

    /// Create new sine oscialltor builder props
    ///
    /// # Errors
    /// Will return error if parameters are invalid
    #[must_use]
    pub fn new_sin(channel_mask: ChannelPositionsMask, w: f32, mul: f32) -> Result<Self, Error> {
        if w.is_nan() || w.is_infinite() {
            Err(Error::msg("Angular frequency must be finite".into()))
        } else {
            let mul = if mul.is_nan() { 0f32 } else { mul };
            Ok(Self {
                channel_mask,
                mode: OscMode::Sin,
                ds: 0.5f32,
                w,
                phase: 0f32,
                mul,
            })
        }
    }

    /// Create new square oscialltor builder props
    ///
    /// # Errors
    /// Will return error if parameters are invalid
    pub fn new_square(
        channel_mask: ChannelPositionsMask,
        ds: f32,
        w: f32,
        mul: f32,
    ) -> Result<Self, Error> {
        if ds.is_nan() {
            Err(Error::msg("Duty cycle must be a number".into()))
        } else if w.is_nan() || w.is_infinite() {
            Err(Error::msg("Angular frequency must be finite".into()))
        } else {
            let ds = ds.clamp(0f32, 1f32);
            let mul = if mul.is_nan() { 0f32 } else { mul };
            Ok(Self {
                channel_mask,
                mode: OscMode::Square,
                ds,
                w,
                phase: 0f32,
                mul,
            })
        }
    }

    /// Create new saw oscialltor builder props
    ///
    /// # Errors
    /// Will return error if parameters are invalid
    pub fn new_saw(
        channel_mask: ChannelPositionsMask,
        ds: f32,
        w: f32,
        mul: f32,
    ) -> Result<Self, Error> {
        if ds.is_nan() {
            Err(Error::msg("Duty cycle must be a number".into()))
        } else if w.is_nan() || w.is_infinite() {
            Err(Error::msg("Angular frequency must be finite".into()))
        } else {
            let ds = ds.clamp(0f32, 1f32);
            let mul = if mul.is_nan() { 0f32 } else { mul };
            Ok(Self {
                channel_mask,
                mode: OscMode::Saw,
                ds,
                w,
                phase: 0f32,
                mul,
            })
        }
    }
}

impl NodeBuilderTrait for OscProps {
    fn build(&self, ctx: &mut NodeCtx) -> Box<dyn NodeTrait> {
        match self.mode {
            OscMode::Sin => Box::new(OscSin::new(ctx, self.clone())),
            OscMode::Square => Box::new(OscSquare::new(ctx, self.clone())),
            OscMode::Saw => Box::new(OscSaw::new(ctx, self.clone())),
        }
    }
}

fn build_port_props(is_sin: bool, channel_mask: ChannelPositionsMask) -> Vec<PortProps> {
    if is_sin {
        vec![
            PortProps {
                id: OscProps::PORT_ID_IN_EVENTS,
                kind: PortType::EventsIn,
                auto_connect: true,
                name: "Events",
            },
            PortProps {
                id: OscProps::PORT_ID_PHASE_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Phase",
            },
            PortProps {
                id: OscProps::PORT_ID_W_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Angular frequency",
            },
            PortProps {
                id: OscProps::PORT_ID_MUL_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Multiplier",
            },
            PortProps {
                id: OscProps::PORT_ID_OUTPUT,
                kind: PortType::SignalOut(channel_mask),
                auto_connect: true,
                name: "Output",
            },
        ]
    } else {
        vec![
            PortProps {
                id: OscProps::PORT_ID_IN_EVENTS,
                kind: PortType::EventsIn,
                auto_connect: true,
                name: "Events",
            },
            PortProps {
                id: OscProps::PORT_ID_DUTY_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Duty Cycle",
            },
            PortProps {
                id: OscProps::PORT_ID_PHASE_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Phase",
            },
            PortProps {
                id: OscProps::PORT_ID_W_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Angular frequency",
            },
            PortProps {
                id: OscProps::PORT_ID_MUL_CTRL,
                kind: PortType::SignalIn,
                auto_connect: false,
                name: "Multiplier",
            },
            PortProps {
                id: OscProps::PORT_ID_OUTPUT,
                kind: PortType::SignalOut(channel_mask),
                auto_connect: true,
                name: "Output",
            },
        ]
    }
}

struct OscSin {
    chs: Vec<ChannelPosition>,
    props: OscProps,
    port_props: Vec<PortProps>,
    sr: f32,
    phase_delta: f32,
    phase: f32,
}

impl OscSin {
    #[must_use]
    fn new(ctx: &mut NodeCtx, props: OscProps) -> Self {
        let chs = Vec::<ChannelPosition>::from(props.channel_mask);
        let port_props = build_port_props(true, props.channel_mask);
        let sr = ctx.sample_rate() as f32;
        let phase_delta = props.w / sr;
        let phase = props.phase;
        Self {
            chs,
            props,
            port_props,
            sr,
            phase_delta,
            phase,
        }
    }

    fn val_static(&self, phase: f32, mul: f32) -> f32 {
        (self.props.phase + phase).sin() * self.props.mul * mul
    }

    fn val(&mut self, phase: f32, w: f32, mul: f32) -> f32 {
        let val = self.val_static(self.phase + phase, mul);
        self.phase += self.phase_delta + w;
        // wrap
        self.phase = self.phase.rem_euclid(std::f32::consts::TAU);
        val
    }
}

impl NodeTrait for OscSin {
    fn process(
        &mut self,
        step_range: Range<usize>,
        inputs: &NodeInputs,
        outputs: &mut NodeOutputs,
    ) {
        let mut output = outputs.get_signals_mut(OscProps::PORT_ID_OUTPUT).unwrap();
        let events = inputs.get_events(OscProps::PORT_ID_IN_EVENTS);
        if let Some(events) = events {
            events.process(step_range, |i, delta_step, event| {
                if let EventData::NoteOn { note, vel } = &event.data {
                    let time = (delta_step as f64 / f64::from(self.sr)) as f32;
                    let val = self.val_static(time * self.props.w * note.mul(), *vel);
                    for &ch in &self.chs {
                        output.get_mut(ch).unwrap()[i] += val;
                    }
                }
            });
        } else {
            let phase = inputs.get_mono(OscProps::PORT_ID_PHASE_CTRL);
            let w = inputs.get_mono(OscProps::PORT_ID_W_CTRL);
            let mul = inputs.get_mono(OscProps::PORT_ID_MUL_CTRL);
            for (i, _) in step_range.enumerate() {
                let phase = phase.as_ref().map_or(0f32, |&phase| phase[i]);
                let w = w.as_ref().map_or(0f32, |&w| w[i]);
                let mul = mul.as_ref().map_or(1f32, |&mul| mul[i]);
                let val = self.val(phase, w, mul);
                for &ch in &self.chs {
                    output.get_mut(ch).unwrap()[i] += val;
                }
            }
        }
    }

    fn reset(&mut self, ctx: &NodeResetCtx) {
        self.phase_delta = self.props.w / ctx.sample_rate as f32;
        // Lets not increment phase from current steps
        // Else the phase will depend also on the modulation signal
        self.phase = self.props.phase;
    }

    fn port_props(&self) -> &[PortProps] {
        &self.port_props
    }

    fn name(&self) -> &'static str {
        "Osc::Sin"
    }
}

struct OscSquare {
    chs: Vec<ChannelPosition>,
    props: OscProps,
    port_props: Vec<PortProps>,
    sr: f32,
    phase_delta: f32,
    phase: f32,
}

impl OscSquare {
    #[must_use]
    fn new(ctx: &mut NodeCtx, props: OscProps) -> Self {
        let chs = Vec::<ChannelPosition>::from(props.channel_mask);
        let port_props = build_port_props(false, props.channel_mask);
        let sr = ctx.sample_rate() as f32;
        let phase_delta = props.w / sr;
        let phase = props.phase;
        Self {
            chs,
            props,
            port_props,
            sr,
            phase_delta,
            phase,
        }
    }

    fn val_static(&self, ds: f32, phase: f32, mul: f32) -> f32 {
        let ds = ds + self.props.ds;
        let ds = ds.clamp(0f32, 1f32);
        let val =
            (self.props.phase + phase).rem_euclid(std::f32::consts::TAU) / std::f32::consts::TAU;
        if val > ds { 0f32 } else { self.props.mul * mul }
    }

    fn val(&mut self, ds: f32, phase: f32, w: f32, mul: f32) -> f32 {
        let val = self.val_static(ds, self.phase + phase, mul);
        self.phase += self.phase_delta + w;
        // wrap
        self.phase = self.phase.rem_euclid(std::f32::consts::TAU);
        val
    }
}

impl NodeTrait for OscSquare {
    fn process(
        &mut self,
        step_range: Range<usize>,
        inputs: &NodeInputs,
        outputs: &mut NodeOutputs,
    ) {
        let mut output = outputs.get_signals_mut(OscProps::PORT_ID_OUTPUT).unwrap();
        let events = inputs.get_events(OscProps::PORT_ID_IN_EVENTS);
        if let Some(events) = events {
            events.process(step_range, |i, delta_step, event| {
                if let EventData::NoteOn { note, vel } = &event.data {
                    let time = (delta_step as f64 / f64::from(self.sr)) as f32;
                    let val = self.val_static(0f32, time * self.props.w * note.mul(), *vel);
                    for &ch in &self.chs {
                        output.get_mut(ch).unwrap()[i] += val;
                    }
                }
            });
        } else {
            let ds = inputs.get_mono(OscProps::PORT_ID_DUTY_CTRL);
            let w = inputs.get_mono(OscProps::PORT_ID_W_CTRL);
            let phase = inputs.get_mono(OscProps::PORT_ID_PHASE_CTRL);
            let mul = inputs.get_mono(OscProps::PORT_ID_MUL_CTRL);
            for (i, _) in step_range.enumerate() {
                let ds = self.props.ds + ds.as_ref().map_or(0f32, |ds| ds[i]).clamp(0f32, 1f32);
                let phase = self.props.phase + phase.as_ref().map_or(0f32, |phase| phase[i]);
                let w = self.props.w + w.as_ref().map_or(0f32, |w| w[i]);
                let mul = self.props.mul + mul.as_ref().map_or(0f32, |mul| mul[i]);
                let val = self.val(ds, phase, w, mul);
                for &ch in &self.chs {
                    output.get_mut(ch).unwrap()[i] += val;
                }
            }
        }
    }

    fn reset(&mut self, ctx: &NodeResetCtx) {
        self.phase_delta = self.props.w / ctx.sample_rate as f32;
        // Lets not increment phase from current steps
        // Else the phase will depend also on the modulation signal
        self.phase = self.props.phase;
    }

    fn port_props(&self) -> &[PortProps] {
        &self.port_props
    }

    fn name(&self) -> &'static str {
        "Osc::Square"
    }
}

struct OscSaw {
    chs: Vec<ChannelPosition>,
    props: OscProps,
    port_props: Vec<PortProps>,
    sr: f32,
    phase_delta: f32,
    phase: f32,
}

impl OscSaw {
    #[must_use]
    fn new(ctx: &mut NodeCtx, props: OscProps) -> Self {
        let chs = Vec::<ChannelPosition>::from(props.channel_mask);
        let port_props = build_port_props(false, props.channel_mask);
        let sr = ctx.sample_rate() as f32;
        let phase_delta = props.w / sr;
        let phase = props.phase;
        Self {
            chs,
            props,
            port_props,
            sr,
            phase_delta,
            phase,
        }
    }

    fn val_static(&self, ds: f32, phase: f32, mul: f32) -> f32 {
        const THRESHOLD: f32 = 1e-6;
        let ds = ds + self.props.ds;
        let ds = ds.clamp(THRESHOLD, 1f32 - THRESHOLD);
        let ramp =
            (self.props.phase + phase).rem_euclid(std::f32::consts::TAU) / std::f32::consts::TAU;
        let val = if ramp < ds {
            ramp / ds
        } else {
            1f32 - ((ramp - ds) / (1f32 - ds))
        };
        val * self.props.mul * mul
    }

    fn val(&mut self, ds: f32, phase: f32, w: f32, mul: f32) -> f32 {
        let val = self.val_static(ds, self.phase + phase, mul);
        self.phase += self.phase_delta + w;
        // wrap
        self.phase = self.phase.rem_euclid(std::f32::consts::TAU);
        val
    }
}

impl NodeTrait for OscSaw {
    fn process(
        &mut self,
        step_range: Range<usize>,
        inputs: &NodeInputs,
        outputs: &mut NodeOutputs,
    ) {
        let mut output = outputs.get_signals_mut(OscProps::PORT_ID_OUTPUT).unwrap();
        let events = inputs.get_events(OscProps::PORT_ID_IN_EVENTS);
        if let Some(events) = events {
            events.process(step_range, |i, delta_step, event| {
                if let EventData::NoteOn { note, vel } = &event.data {
                    let time = (delta_step as f64 / f64::from(self.sr)) as f32;
                    let val = self.val_static(0f32, time * self.props.w * note.mul(), *vel);
                    for &ch in &self.chs {
                        output.get_mut(ch).unwrap()[i] += val;
                    }
                }
            });
        } else {
            let ds = inputs.get_mono(OscProps::PORT_ID_DUTY_CTRL);
            let phase = inputs.get_mono(OscProps::PORT_ID_PHASE_CTRL);
            let w = inputs.get_mono(OscProps::PORT_ID_W_CTRL);
            let mul = inputs.get_mono(OscProps::PORT_ID_MUL_CTRL);
            for (i, _) in step_range.enumerate() {
                let ds = self.props.ds + ds.as_ref().map_or(0f32, |ds| ds[i]);
                let phase = self.props.phase + phase.as_ref().map_or(0f32, |phase| phase[i]);
                let w = self.props.w + w.as_ref().map_or(0f32, |w| w[i]);
                let mul = self.props.mul + mul.as_ref().map_or(0f32, |mul| mul[i]);
                let val = self.val(ds, phase, w, mul);
                for &ch in &self.chs {
                    output.get_mut(ch).unwrap()[i] += val;
                }
            }
        }
    }

    fn reset(&mut self, ctx: &NodeResetCtx) {
        self.phase_delta = self.props.w / ctx.sample_rate as f32;
        // Lets not increment phase from current steps
        // Else the phase will depend also on the modulation signal
        self.phase = self.props.phase;
    }

    fn port_props(&self) -> &[PortProps] {
        &self.port_props
    }

    fn name(&self) -> &'static str {
        "Osc::Saw"
    }
}