2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IAudioController : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
public IAudioController() { }
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetExpectedMasterVolume(f32, f32)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetExpectedMasterVolume(ServiceCtx context)
|
2018-04-18 03:39:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
float appletVolume = context.RequestData.ReadSingle();
|
|
|
|
float libraryAppletVolume = context.RequestData.ReadSingle();
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:39:27 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(1)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetMainAppletExpectedMasterVolume() -> f32
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetMainAppletExpectedMasterVolume(ServiceCtx context)
|
2018-04-18 03:39:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(1f);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:39:27 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetLibraryAppletExpectedMasterVolume() -> f32
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetLibraryAppletExpectedMasterVolume(ServiceCtx context)
|
2018-04-18 03:39:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(1f);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:39:27 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(3)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// ChangeMainAppletMasterVolume(f32, u64)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode ChangeMainAppletMasterVolume(ServiceCtx context)
|
2018-04-18 03:39:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
float unknown0 = context.RequestData.ReadSingle();
|
|
|
|
long unknown1 = context.RequestData.ReadInt64();
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:39:27 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(4)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// SetTransparentVolumeRate(f32)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetTransparentVolumeRate(ServiceCtx context)
|
2018-04-18 03:39:27 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
float unknown0 = context.RequestData.ReadSingle();
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceAm);
|
2018-04-18 03:39:27 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-04-18 03:39:27 +02:00
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
}
|