2018-02-25 04:34:16 +00:00
|
|
|
using ChocolArm64.Memory;
|
2018-03-16 00:06:24 +00:00
|
|
|
using Ryujinx.Audio;
|
2018-02-25 04:34:16 +00:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using static Ryujinx.Core.OsHle.IpcServices.ObjHelper;
|
|
|
|
|
|
|
|
namespace Ryujinx.Core.OsHle.IpcServices.Aud
|
|
|
|
{
|
|
|
|
class ServiceAudOut : IIpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public ServiceAudOut()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
|
|
|
{ 0, ListAudioOuts },
|
2018-03-16 00:06:24 +00:00
|
|
|
{ 1, OpenAudioOut }
|
2018-02-25 04:34:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public long ListAudioOuts(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
long Position = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, Position, Encoding.ASCII.GetBytes("iface"));
|
|
|
|
|
|
|
|
Context.ResponseData.Write(1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long OpenAudioOut(ServiceCtx Context)
|
|
|
|
{
|
2018-03-16 00:06:24 +00:00
|
|
|
IAalOutput AudioOut = Context.Ns.AudioOut;
|
|
|
|
|
|
|
|
string DeviceName = AMemoryHelper.ReadAsciiString(
|
|
|
|
Context.Memory,
|
|
|
|
Context.Request.SendBuff[0].Position,
|
|
|
|
Context.Request.SendBuff[0].Size);
|
|
|
|
|
|
|
|
if (DeviceName == string.Empty)
|
|
|
|
{
|
|
|
|
DeviceName = "FIXME";
|
|
|
|
}
|
|
|
|
|
|
|
|
long DeviceNamePosition = Context.Request.ReceiveBuff[0].Position;
|
|
|
|
long DeviceNameSize = Context.Request.ReceiveBuff[0].Size;
|
|
|
|
|
|
|
|
byte[] DeviceNameBuffer = Encoding.ASCII.GetBytes(DeviceName);
|
|
|
|
|
|
|
|
if (DeviceName.Length <= DeviceNameSize)
|
|
|
|
{
|
|
|
|
AMemoryHelper.WriteBytes(Context.Memory, DeviceNamePosition, DeviceNameBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SampleRate = Context.RequestData.ReadInt32();
|
|
|
|
int Channels = Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Channels = (ushort)(Channels >> 16);
|
|
|
|
|
|
|
|
if (SampleRate == 0)
|
|
|
|
{
|
|
|
|
SampleRate = 48000;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Channels < 1 || Channels > 2)
|
|
|
|
{
|
|
|
|
Channels = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Track = AudioOut.OpenTrack(SampleRate, Channels, out AudioFormat Format);
|
|
|
|
|
|
|
|
MakeObject(Context, new IAudioOut(AudioOut, Track));
|
|
|
|
|
|
|
|
Context.ResponseData.Write(SampleRate);
|
|
|
|
Context.ResponseData.Write(Channels);
|
|
|
|
Context.ResponseData.Write((int)Format);
|
|
|
|
Context.ResponseData.Write((int)PlaybackState.Stopped);
|
2018-02-25 04:34:16 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|