2018-03-12 19:29:06 +00:00
|
|
|
using ChocolArm64.Memory;
|
2018-04-24 18:57:39 +00:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-04-18 01:52:20 +00:00
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
2018-03-12 19:29:06 +00:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
2018-03-20 20:00:00 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.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
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-03-12 19:29:06 +00:00
|
|
|
|
2018-04-18 01:52:20 +00:00
|
|
|
private KEvent SystemEvent;
|
|
|
|
|
2018-04-22 04:21:49 +00:00
|
|
|
public IAudioDevice()
|
2018-03-12 19:29:06 +00:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
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
|
|
|
|
|
|
|
SystemEvent = new KEvent();
|
2018-04-19 03:19:22 +00:00
|
|
|
|
2018-04-18 01:52:20 +00:00
|
|
|
//TODO: We shouldn't be signaling this here.
|
2018-04-19 03:19:22 +00:00
|
|
|
SystemEvent.WaitEvent.Set();
|
2018-03-12 19:29:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public long ListAudioDeviceName(ServiceCtx Context)
|
|
|
|
{
|
2018-04-24 20:14:26 +00:00
|
|
|
string[] DeviceNames = SystemStateMgr.AudioOutputs;
|
2018-03-12 19:29:06 +00:00
|
|
|
|
2018-04-24 20:14:26 +00:00
|
|
|
Context.ResponseData.Write(DeviceNames.Length);
|
2018-03-12 19:29:06 +00:00
|
|
|
|
|
|
|
long Position = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
long Size = Context.Request.ReceiveBuff[0].Size;
|
|
|
|
|
|
|
|
long BasePosition = Position;
|
|
|
|
|
2018-04-24 20:14:26 +00:00
|
|
|
foreach (string Name in DeviceNames)
|
2018-03-12 19:29:06 +00:00
|
|
|
{
|
2018-04-26 14:34:40 +00:00
|
|
|
byte[] Buffer = Encoding.ASCII.GetBytes(Name + "\0");
|
2018-03-12 19:29:06 +00:00
|
|
|
|
|
|
|
if ((Position - BasePosition) + Buffer.Length > Size)
|
|
|
|
{
|
2018-04-24 20:14:26 +00:00
|
|
|
Context.Ns.Log.PrintError(LogClass.ServiceAudio, $"Output buffer size {Size} too small!");
|
|
|
|
|
2018-03-12 19:29:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, Position, Buffer);
|
|
|
|
|
|
|
|
Position += Buffer.Length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetAudioDeviceOutputVolume(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
float Volume = Context.RequestData.ReadSingle();
|
|
|
|
|
|
|
|
long Position = Context.Request.SendBuff[0].Position;
|
|
|
|
long Size = Context.Request.SendBuff[0].Size;
|
|
|
|
|
2018-06-09 00:15:02 +00:00
|
|
|
byte[] DeviceNameBuffer = Context.Memory.ReadBytes(Position, Size);
|
2018-04-24 20:14:26 +00:00
|
|
|
|
2018-04-26 14:34:40 +00:00
|
|
|
string DeviceName = Encoding.ASCII.GetString(DeviceNameBuffer);
|
2018-03-12 19:29:06 +00:00
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
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-04-22 04:21:49 +00:00
|
|
|
public long GetActiveAudioDeviceName(ServiceCtx Context)
|
|
|
|
{
|
2018-04-24 20:14:26 +00:00
|
|
|
string Name = Context.Ns.Os.SystemState.ActiveAudioOutput;
|
2018-04-22 04:21:49 +00:00
|
|
|
|
|
|
|
long Position = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
long Size = Context.Request.ReceiveBuff[0].Size;
|
|
|
|
|
2018-04-26 14:34:40 +00:00
|
|
|
byte[] DeviceNameBuffer = Encoding.ASCII.GetBytes(Name + "\0");
|
2018-04-22 04:21:49 +00:00
|
|
|
|
2018-04-24 20:14:26 +00:00
|
|
|
if ((ulong)DeviceNameBuffer.Length <= (ulong)Size)
|
|
|
|
{
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, Position, DeviceNameBuffer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Context.Ns.Log.PrintError(LogClass.ServiceAudio, $"Output buffer size {Size} too small!");
|
|
|
|
}
|
2018-04-22 04:21:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:52:20 +00:00
|
|
|
public long QueryAudioDeviceSystemEvent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(SystemEvent);
|
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
2018-04-18 01:52:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetActiveChannelCount(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(2);
|
|
|
|
|
2018-04-24 18:57:39 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
2018-04-18 01:52:20 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
public long ListAudioDeviceNameAuto(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
string[] DeviceNames = SystemStateMgr.AudioOutputs;
|
|
|
|
|
|
|
|
Context.ResponseData.Write(DeviceNames.Length);
|
|
|
|
|
|
|
|
(long Position, long Size) = Context.Request.GetBufferType0x22();
|
|
|
|
|
|
|
|
long BasePosition = Position;
|
|
|
|
|
|
|
|
foreach (string Name in DeviceNames)
|
|
|
|
{
|
|
|
|
byte[] Buffer = Encoding.UTF8.GetBytes(Name + '\0');
|
|
|
|
|
|
|
|
if ((Position - BasePosition) + Buffer.Length > Size)
|
|
|
|
{
|
|
|
|
Context.Ns.Log.PrintError(LogClass.ServiceAudio, $"Output buffer size {Size} too small!");
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, Position, Buffer);
|
|
|
|
|
|
|
|
Position += Buffer.Length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetAudioDeviceOutputVolumeAuto(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
float Volume = Context.RequestData.ReadSingle();
|
|
|
|
|
2018-06-04 05:09:41 +00:00
|
|
|
(long Position, long Size) = Context.Request.GetBufferType0x21();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2018-06-09 00:15:02 +00:00
|
|
|
byte[] DeviceNameBuffer = Context.Memory.ReadBytes(Position, Size);
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
string DeviceName = Encoding.UTF8.GetString(DeviceNameBuffer);
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetAudioDeviceOutputVolumeAuto(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(1f);
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetActiveAudioDeviceNameAuto(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
string Name = Context.Ns.Os.SystemState.ActiveAudioOutput;
|
|
|
|
|
2018-06-04 05:09:41 +00:00
|
|
|
(long Position, long Size) = Context.Request.GetBufferType0x22();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
|
|
|
byte[] DeviceNameBuffer = Encoding.UTF8.GetBytes(Name + '\0');
|
|
|
|
|
|
|
|
if ((ulong)DeviceNameBuffer.Length <= (ulong)Size)
|
|
|
|
{
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, Position, DeviceNameBuffer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Context.Ns.Log.PrintError(LogClass.ServiceAudio, $"Output buffer size {Size} too small!");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long QueryAudioDeviceInputEvent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(SystemEvent);
|
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long QueryAudioDeviceOutputEvent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Handle = Context.Process.HandleTable.OpenHandle(SystemEvent);
|
|
|
|
|
|
|
|
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
|
|
|
|
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceAudio, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-03-12 19:29:06 +00:00
|
|
|
}
|
2018-04-18 01:52:20 +00:00
|
|
|
}
|