aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Audio/AudioOut/AudioOut.cs
blob: f25884523223b4609bac7c94b4971b5faaa9f0a9 (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
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
using Ryujinx.Audio.Common;
using Ryujinx.Audio.Integration;
using Ryujinx.Audio.Output;
using Ryujinx.HLE.HOS.Kernel;
using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Audio.AudioRenderer;
using System;

namespace Ryujinx.HLE.HOS.Services.Audio.AudioOut
{
    class AudioOut : IAudioOut
    {
        private AudioOutputSystem _system;
        private uint _processHandle;
        private KernelContext _kernelContext;

        public AudioOut(AudioOutputSystem system, KernelContext kernelContext, uint processHandle)
        {
            _system = system;
            _kernelContext = kernelContext;
            _processHandle = processHandle;
        }

        public ResultCode AppendBuffer(ulong bufferTag, ref AudioUserBuffer buffer)
        {
            return (ResultCode)_system.AppendBuffer(bufferTag, ref buffer);
        }

        public bool ContainsBuffer(ulong bufferTag)
        {
            return _system.ContainsBuffer(bufferTag);
        }

        public void Dispose()
        {
            Dispose(true);
        }

        protected virtual void Dispose(bool disposing)
        {
            if (disposing)
            {
                _system.Dispose();

                _kernelContext.Syscall.CloseHandle((int)_processHandle);
            }
        }

        public bool FlushBuffers()
        {
            return _system.FlushBuffers();
        }

        public uint GetBufferCount()
        {
            return _system.GetBufferCount();
        }

        public ulong GetPlayedSampleCount()
        {
            return _system.GetPlayedSampleCount();
        }

        public ResultCode GetReleasedBuffers(Span<ulong> releasedBuffers, out uint releasedCount)
        {
            return (ResultCode)_system.GetReleasedBuffer(releasedBuffers, out releasedCount);
        }

        public AudioDeviceState GetState()
        {
            return _system.GetState();
        }

        public float GetVolume()
        {
            return _system.GetVolume();
        }

        public KEvent RegisterBufferEvent()
        {
            IWritableEvent outEvent = _system.RegisterBufferEvent();

            if (outEvent is AudioKernelEvent)
            {
                return ((AudioKernelEvent)outEvent).Event;
            }
            else
            {
                throw new NotImplementedException();
            }
        }

        public void SetVolume(float volume)
        {
            _system.SetVolume(volume);
        }

        public ResultCode Start()
        {
            return (ResultCode)_system.Start();
        }

        public ResultCode Stop()
        {
            return (ResultCode)_system.Stop();
        }
    }
}