2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-10-07 15:12:11 +00:00
|
|
|
using System;
|
2018-05-26 20:49:21 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Mm
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
|
|
|
class IRequest : IpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public IRequest()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-10-07 15:12:11 +00:00
|
|
|
{ 1, InitializeOld },
|
|
|
|
{ 4, Initialize },
|
|
|
|
{ 6, SetAndWait },
|
|
|
|
{ 7, Get }
|
2018-05-26 20:49:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-07 15:12:11 +00:00
|
|
|
// InitializeOld(u32, u32, u32)
|
|
|
|
public long InitializeOld(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Unknown0 = Context.RequestData.ReadInt32();
|
|
|
|
int Unknown1 = Context.RequestData.ReadInt32();
|
|
|
|
int Unknown2 = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-26 20:49:21 +00:00
|
|
|
public long Initialize(ServiceCtx Context)
|
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long SetAndWait(ServiceCtx Context)
|
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long Get(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(0);
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|