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