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