2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.SystemState;
|
2018-09-23 20:11:46 +02:00
|
|
|
using System;
|
2018-03-12 20:29:06 +01:00
|
|
|
using System.Text;
|
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-04-22 06:21:49 +02:00
|
|
|
class IAudioDevice : IpcService
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private KEvent _systemEvent;
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public IAudioDevice(Horizon system)
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_systemEvent = new KEvent(system);
|
2018-04-19 05:19:22 +02:00
|
|
|
|
2019-07-02 04:39:22 +02:00
|
|
|
// TODO: We shouldn't be signaling this here.
|
2018-12-06 12:16:24 +01:00
|
|
|
_systemEvent.ReadableEvent.Signal();
|
2018-03-12 20:29:06 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(0)]
|
|
|
|
// ListAudioDeviceName() -> (u32, buffer<bytes, 6>)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode ListAudioDeviceName(ServiceCtx context)
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string[] deviceNames = SystemStateMgr.AudioOutputs;
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(deviceNames.Length);
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long position = context.Request.ReceiveBuff[0].Position;
|
|
|
|
long size = context.Request.ReceiveBuff[0].Size;
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long basePosition = position;
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
foreach (string name in deviceNames)
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] buffer = Encoding.ASCII.GetBytes(name + "\0");
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if ((position - basePosition) + buffer.Length > size)
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintError(LogClass.ServiceAudio, $"Output buffer size {size} too small!");
|
2018-04-24 22:14:26 +02:00
|
|
|
|
2018-03-12 20:29:06 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(position, buffer);
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
position += buffer.Length;
|
2018-03-12 20:29:06 +01:00
|
|
|
}
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-03-12 20:29:06 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(1)]
|
|
|
|
// SetAudioDeviceOutputVolume(u32, buffer<bytes, 5>)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetAudioDeviceOutputVolume(ServiceCtx context)
|
2018-03-12 20:29:06 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
float volume = context.RequestData.ReadSingle();
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long position = context.Request.SendBuff[0].Position;
|
|
|
|
long size = context.Request.SendBuff[0].Size;
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] deviceNameBuffer = context.Memory.ReadBytes(position, size);
|
2018-04-24 22:14:26 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
string deviceName = Encoding.ASCII.GetString(deviceNameBuffer);
|
2018-03-12 20:29:06 +01:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-04-17 02:24:42 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-03-12 20:29:06 +01:00
|
|
|
}
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(3)]
|
|
|
|
// GetActiveAudioDeviceName() -> buffer<bytes, 6>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetActiveAudioDeviceName(ServiceCtx context)
|
2018-04-22 06:21:49 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string name = context.Device.System.State.ActiveAudioOutput;
|
2018-04-22 06:21:49 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long position = context.Request.ReceiveBuff[0].Position;
|
|
|
|
long size = context.Request.ReceiveBuff[0].Size;
|
2018-04-22 06:21:49 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] deviceNameBuffer = Encoding.ASCII.GetBytes(name + "\0");
|
2018-04-22 06:21:49 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if ((ulong)deviceNameBuffer.Length <= (ulong)size)
|
2018-04-24 22:14:26 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(position, deviceNameBuffer);
|
2018-04-24 22:14:26 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintError(LogClass.ServiceAudio, $"Output buffer size {size} too small!");
|
2018-04-24 22:14:26 +02:00
|
|
|
}
|
2018-04-22 06:21:49 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-22 06:21:49 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(4)]
|
|
|
|
// QueryAudioDeviceSystemEvent() -> handle<copy, event>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode QueryAudioDeviceSystemEvent(ServiceCtx context)
|
2018-04-18 03:52:20 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_systemEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:52:20 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(5)]
|
|
|
|
// GetActiveChannelCount() -> u32
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetActiveChannelCount(ServiceCtx context)
|
2018-04-18 03:52:20 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(2);
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-04-18 03:52:20 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:52:20 +02:00
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(6)]
|
|
|
|
// ListAudioDeviceNameAuto() -> (u32, buffer<bytes, 0x22>)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode ListAudioDeviceNameAuto(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string[] deviceNames = SystemStateMgr.AudioOutputs;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(deviceNames.Length);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x22();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
long basePosition = position;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
foreach (string name in deviceNames)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] buffer = Encoding.UTF8.GetBytes(name + '\0');
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if ((position - basePosition) + buffer.Length > size)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintError(LogClass.ServiceAudio, $"Output buffer size {size} too small!");
|
2018-06-03 00:46:09 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(position, buffer);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
position += buffer.Length;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(7)]
|
|
|
|
// SetAudioDeviceOutputVolumeAuto(u32, buffer<bytes, 0x21>)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetAudioDeviceOutputVolumeAuto(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
float volume = context.RequestData.ReadSingle();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x21();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] deviceNameBuffer = context.Memory.ReadBytes(position, size);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
string deviceName = Encoding.UTF8.GetString(deviceNameBuffer);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(8)]
|
|
|
|
// GetAudioDeviceOutputVolumeAuto(buffer<bytes, 0x21>) -> u32
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetAudioDeviceOutputVolumeAuto(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(1f);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(10)]
|
|
|
|
// GetActiveAudioDeviceNameAuto() -> buffer<bytes, 0x22>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetActiveAudioDeviceNameAuto(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
string name = context.Device.System.State.ActiveAudioOutput;
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
(long position, long size) = context.Request.GetBufferType0x22();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
byte[] deviceNameBuffer = Encoding.UTF8.GetBytes(name + '\0');
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if ((ulong)deviceNameBuffer.Length <= (ulong)size)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Memory.WriteBytes(position, deviceNameBuffer);
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintError(LogClass.ServiceAudio, $"Output buffer size {size} too small!");
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(11)]
|
|
|
|
// QueryAudioDeviceInputEvent() -> handle<copy, event>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode QueryAudioDeviceInputEvent(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_systemEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(12)]
|
|
|
|
// QueryAudioDeviceOutputEvent() -> handle<copy, event>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode QueryAudioDeviceOutputEvent(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(_systemEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-01-11 01:11:46 +01:00
|
|
|
Logger.PrintStub(LogClass.ServiceAudio);
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
2018-03-12 20:29:06 +01:00
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
}
|