summaryrefslogtreecommitdiff
path: root/src/synth/adsr.rs
blob: e7dba5dba0a715bcdacaea1160c1e58ca10200bd (plain)
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
use super::{
    mem, FactoryParameters, GenBox, GenFactoryError, Generator, GeneratorFactory, Parameters, Rate,
    SampleBuffer,
};

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Phase {
    Delay,
    Attack,
    Hold,
    Decay,
    Sustain,
    Release,
}

#[derive(Debug)]
pub struct DAHDSR {
    pub delay: GenBox,
    pub attack: GenBox,
    pub hold: GenBox,
    pub decay: GenBox,
    pub sustain: GenBox,
    pub release: GenBox,
    pub gate: GenBox,
    pub phase: Phase,
    pub cur: f32,
    pub attack_cd: f32,
    pub decay_cd: f32,
    pub buf: SampleBuffer,
}

impl Generator for DAHDSR {
    fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer {
        self.buf.rate = Rate::Sample;

        let delay = self.delay.eval(params).first();
        let attack = self.attack.eval(params).first();
        let hold = self.attack.eval(params).first();
        let decay = self.decay.eval(params).first();
        let sustain = self.sustain.eval(params).first();
        let release = self.release.eval(params).first();
        let gate = self.gate.eval(params).first();

        if gate >= 0.5 {
            if self.phase == Phase::Release {
                self.phase = Phase::Delay;
                self.attack_cd = delay;
                self.cur = 0.0;
            }
        } else {
            self.phase = Phase::Release;
        }

        for samp in self.buf.samples.iter_mut() {
            match self.phase {
                Phase::Delay => {
                    self.attack_cd -= 1.0;
                    if self.attack_cd <= 0.0 {
                        self.phase = Phase::Attack;
                    }
                }
                Phase::Attack => {
                    self.cur += attack;
                    if self.cur >= 1.0 {
                        self.cur = 1.0;
                        self.phase = Phase::Hold;
                        self.decay_cd = hold;
                    }
                }
                Phase::Hold => {
                    self.decay_cd -= 1.0;
                    if self.decay_cd <= 0.0 {
                        self.phase = Phase::Decay;
                    }
                }
                Phase::Decay => {
                    self.cur -= decay;
                    if self.cur <= sustain {
                        self.cur = sustain;
                        self.phase = Phase::Sustain;
                    }
                }
                Phase::Sustain => {
                    self.cur = sustain;
                }
                Phase::Release => {
                    self.cur -= release;
                    if self.cur < 0.0 {
                        self.cur = 0.0;
                    }
                }
            }
            *samp = self.cur;
        }

        &self.buf
    }
    fn buffer(&self) -> &SampleBuffer {
        &self.buf
    }
    fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer {
        mem::replace(&mut self.buf, buf)
    }
}

pub struct DAHDSRFactory;

impl GeneratorFactory for DAHDSRFactory {
    fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
        Ok(Box::new(DAHDSR {
            delay: params.remove_param("delay", 1)?.into_gen()?,
            attack: params.remove_param("attack", 2)?.into_gen()?,
            hold: params.remove_param("hold", 3)?.into_gen()?,
            decay: params.remove_param("decay", 4)?.into_gen()?,
            sustain: params.remove_param("sustain", 5)?.into_gen()?,
            release: params.remove_param("release", 6)?.into_gen()?,
            gate: params.remove_param("gate", 0)?.into_gen()?,
            phase: Phase::Release,
            cur: 0.0,
            attack_cd: 0.0,
            decay_cd: 0.0,
            buf: SampleBuffer::new(params.env.default_buffer_size),
        }))
    }
}

pub static Factory: DAHDSRFactory = DAHDSRFactory;