aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Dsp/Effect/DelayLine.cs
blob: 8a3590a201acdbedb941aebd56408ad2db72f73b (plain) (blame)
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
using System;

namespace Ryujinx.Audio.Renderer.Dsp.Effect
{
    public class DelayLine : IDelayLine
    {
        private readonly float[] _workBuffer;
        private readonly uint _sampleRate;
        private uint _currentSampleIndex;
        private uint _lastSampleIndex;

        public uint CurrentSampleCount { get; private set; }
        public uint SampleCountMax { get; private set; }

        public DelayLine(uint sampleRate, float delayTimeMax)
        {
            _sampleRate = sampleRate;
            SampleCountMax = IDelayLine.GetSampleCount(_sampleRate, delayTimeMax);
            _workBuffer = new float[SampleCountMax + 1];

            SetDelay(delayTimeMax);
        }

        private void ConfigureDelay(uint targetSampleCount)
        {
            CurrentSampleCount = Math.Min(SampleCountMax, targetSampleCount);
            _currentSampleIndex = 0;

            if (CurrentSampleCount == 0)
            {
                _lastSampleIndex = 0;
            }
            else
            {
                _lastSampleIndex = CurrentSampleCount - 1;
            }
        }

        public void SetDelay(float delayTime)
        {
            ConfigureDelay(IDelayLine.GetSampleCount(_sampleRate, delayTime));
        }

        public float Read()
        {
            return _workBuffer[_currentSampleIndex];
        }

        public float Update(float value)
        {
            float output = Read();

            _workBuffer[_currentSampleIndex++] = value;

            if (_currentSampleIndex >= _lastSampleIndex)
            {
                _currentSampleIndex = 0;
            }

            return output;
        }

        public float TapUnsafe(uint sampleIndex, int offset)
        {
            return IDelayLine.Tap(_workBuffer, (int)_currentSampleIndex, (int)sampleIndex + offset, (int)CurrentSampleCount);
        }

        public float Tap(uint sampleIndex)
        {
            if (sampleIndex >= CurrentSampleCount)
            {
                sampleIndex = CurrentSampleCount - 1;
            }

            return TapUnsafe(sampleIndex, -1);
        }
    }
}