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-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
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-05-26 20:49:21 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
public IRequest()
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-10-07 15:12:11 +00:00
|
|
|
{ 1, InitializeOld },
|
|
|
|
{ 4, Initialize },
|
2018-12-03 02:38:47 +00:00
|
|
|
{ 5, Finalize },
|
2018-10-07 15:12:11 +00:00
|
|
|
{ 6, SetAndWait },
|
|
|
|
{ 7, Get }
|
2018-05-26 20:49:21 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-07 15:12:11 +00:00
|
|
|
// InitializeOld(u32, u32, u32)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long InitializeOld(ServiceCtx context)
|
2018-10-07 15:12:11 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
int unknown0 = context.RequestData.ReadInt32();
|
|
|
|
int unknown1 = context.RequestData.ReadInt32();
|
|
|
|
int unknown2 = context.RequestData.ReadInt32();
|
2018-10-07 15:12:11 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-10-07 15:12:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long Initialize(ServiceCtx context)
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long Finalize(ServiceCtx context)
|
2018-12-03 02:38:47 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Device.Gpu.UninitializeVideoDecoder();
|
2018-12-03 02:38:47 +00:00
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetAndWait(ServiceCtx context)
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long Get(ServiceCtx context)
|
2018-05-26 20:49:21 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-05-26 20:49:21 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceMm, "Stubbed.");
|
2018-05-26 20:49:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|