2018-08-16 16:47:36 -07:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-06-10 17:46:42 -07:00
|
|
|
using Ryujinx.HLE.Logging;
|
2018-02-09 16:14:55 -08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Apm
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-03-19 11:58:46 -07:00
|
|
|
class ISession : IpcService
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 11:58:46 -07:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-09 16:14:55 -08:00
|
|
|
|
|
|
|
public ISession()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-03-23 05:26:11 -07:00
|
|
|
{ 0, SetPerformanceConfiguration },
|
|
|
|
{ 1, GetPerformanceConfiguration }
|
2018-02-09 16:14:55 -08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetPerformanceConfiguration(ServiceCtx Context)
|
|
|
|
{
|
2018-03-23 05:26:11 -07:00
|
|
|
PerformanceMode PerfMode = (PerformanceMode)Context.RequestData.ReadInt32();
|
|
|
|
PerformanceConfiguration PerfConfig = (PerformanceConfiguration)Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetPerformanceConfiguration(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
PerformanceMode PerfMode = (PerformanceMode)Context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
Context.ResponseData.Write((uint)PerformanceConfiguration.PerformanceConfiguration1);
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
Context.Device.Log.PrintStub(LogClass.ServiceApm, "Stubbed.");
|
2018-04-16 17:24:42 -07:00
|
|
|
|
2018-02-09 16:14:55 -08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|