2021-05-18 03:11:19 +00:00
|
|
|
// Copyright (c) 2021 Weird Constructor <weirdconstructor@gmail.com>
|
|
|
|
// This is a part of HexoDSP. Released under (A)GPLv3 or any later.
|
|
|
|
// See README.md and COPYING for details.
|
|
|
|
|
2021-06-02 01:59:21 +00:00
|
|
|
use crate::nodes::{NodeAudioContext, NodeExecContext};
|
2021-06-06 07:24:41 +00:00
|
|
|
use crate::dsp::{
|
|
|
|
NodeId, SAtom, ProcBuf, denorm, denorm_offs,
|
|
|
|
out, inp, DspNode, LedPhaseVals
|
|
|
|
};
|
2021-05-18 03:11:19 +00:00
|
|
|
use crate::dsp::helpers::fast_sin;
|
|
|
|
|
|
|
|
/// A sine oscillator
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Sin {
|
|
|
|
/// Sample rate
|
|
|
|
srate: f32,
|
|
|
|
/// Oscillator phase
|
|
|
|
phase: f32,
|
|
|
|
}
|
|
|
|
|
|
|
|
const TWOPI : f32 = 2.0 * std::f32::consts::PI;
|
|
|
|
|
|
|
|
impl Sin {
|
2021-06-03 03:10:29 +00:00
|
|
|
pub fn new(_nid: &NodeId) -> Self {
|
2021-05-18 03:11:19 +00:00
|
|
|
Self {
|
|
|
|
srate: 44100.0,
|
|
|
|
phase: 0.0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pub const freq : &'static str =
|
|
|
|
"Sin freq\nFrequency of the oscillator.\n\nRange: (-1..1)\n";
|
2021-06-05 07:13:42 +00:00
|
|
|
pub const det : &'static str =
|
|
|
|
"Sin det\nDetune the oscillator in semitones and cents. \
|
|
|
|
the input of this value is rounded to semitones on coarse input. \
|
|
|
|
Fine input lets you detune in cents (rounded). \
|
2021-06-06 07:24:41 +00:00
|
|
|
A signal sent to this port is not rounded.\n\
|
|
|
|
Note: The signal input allows detune +-10 octaves.\
|
|
|
|
\nRange: (Knob -0.2 .. 0.2) / (Signal -1.0 .. 1.0)\n";
|
2021-05-18 03:11:19 +00:00
|
|
|
pub const sig : &'static str =
|
|
|
|
"Sin sig\nOscillator signal output.\n\nRange: (-1..1)\n";
|
2021-06-07 03:00:10 +00:00
|
|
|
|
|
|
|
pub const DESC : &'static str =
|
|
|
|
r#"Sin - A Sine Oscillator
|
|
|
|
|
|
|
|
This is a very simple oscillator that generates a
|
|
|
|
sine wave.
|
|
|
|
"#;
|
|
|
|
|
|
|
|
pub const HELP : &'static str =
|
|
|
|
r#"Sin - A Sine Oscillator
|
|
|
|
|
|
|
|
This is a very simple oscillator that generates a sine wave.
|
|
|
|
The 'freq' paramter specifies the frequency, and the 'det' parameter
|
|
|
|
allows you to detune the oscillator easily.
|
|
|
|
|
|
|
|
You can send any signal to these input ports. The 'det' parameter takes
|
|
|
|
the same signal range as 'freq', which means, that a value of 0.1 detunes
|
|
|
|
by one octave. And a value 1.0 detunes by 10 octaves. This means that
|
|
|
|
for 'det' to be usefully modulated you need to attenuate the modulation input.
|
|
|
|
|
|
|
|
You can do FM with this node, but for easy FM synthesis there are other
|
|
|
|
nodes available.
|
|
|
|
"#;
|
2021-05-18 03:11:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DspNode for Sin {
|
|
|
|
fn outputs() -> usize { 1 }
|
|
|
|
|
|
|
|
fn set_sample_rate(&mut self, srate: f32) {
|
|
|
|
self.srate = srate;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reset(&mut self) {
|
|
|
|
self.phase = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn process<T: NodeAudioContext>(
|
2021-06-02 01:59:21 +00:00
|
|
|
&mut self, ctx: &mut T, _ectx: &mut NodeExecContext,
|
|
|
|
_atoms: &[SAtom], _params: &[ProcBuf], inputs: &[ProcBuf],
|
|
|
|
outputs: &mut [ProcBuf], ctx_vals: LedPhaseVals)
|
2021-05-18 03:11:19 +00:00
|
|
|
{
|
|
|
|
let o = out::Sin::sig(outputs);
|
|
|
|
let freq = inp::Sin::freq(inputs);
|
2021-06-06 07:24:41 +00:00
|
|
|
let det = inp::Sin::det(inputs);
|
2021-05-18 03:11:19 +00:00
|
|
|
let isr = 1.0 / self.srate;
|
|
|
|
|
|
|
|
let mut last_val = 0.0;
|
|
|
|
for frame in 0..ctx.nframes() {
|
2021-06-06 07:24:41 +00:00
|
|
|
let freq = denorm_offs::Sampl::freq(freq, det.read(frame), frame);
|
2021-05-18 03:11:19 +00:00
|
|
|
|
|
|
|
last_val = fast_sin(self.phase * TWOPI);
|
|
|
|
o.write(frame, last_val);
|
|
|
|
|
|
|
|
self.phase += freq * isr;
|
|
|
|
self.phase = self.phase.fract();
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx_vals[0].set(last_val);
|
|
|
|
}
|
|
|
|
}
|