| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using Ryujinx.Common.Logging;
- using Ryujinx.HLE.HOS.Ipc;
- using System.Collections.Generic;
- namespace Ryujinx.HLE.HOS.Services.Mm
- {
- class IRequest : IpcService
- {
- private Dictionary<int, ServiceProcessRequest> _commands;
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
- public IRequest()
- {
- _commands = new Dictionary<int, ServiceProcessRequest>()
- {
- { 0, InitializeOld },
- { 1, FinalizeOld },
- { 2, SetAndWaitOld },
- { 3, GetOld },
- { 4, Initialize },
- { 5, Finalize },
- { 6, SetAndWait },
- { 7, Get }
- };
- }
- // InitializeOld(u32, u32, u32)
- public long InitializeOld(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- int unknown1 = context.RequestData.ReadInt32();
- int unknown2 = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceMm, new { unknown0, unknown1, unknown2 });
- return 0;
- }
- // FinalizeOld(u32)
- public long FinalizeOld(ServiceCtx context)
- {
- context.Device.Gpu.UninitializeVideoDecoder();
- Logger.PrintStub(LogClass.ServiceMm);
- return 0;
- }
- // SetAndWaitOld(u32, u32, u32)
- public long SetAndWaitOld(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- int unknown1 = context.RequestData.ReadInt32();
- int unknown2 = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceMm, new { unknown0, unknown1, unknown2 });
- return 0;
- }
- // GetOld(u32) -> u32
- public long GetOld(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceMm, new { unknown0 });
- context.ResponseData.Write(0);
- return 0;
- }
- // Initialize()
- public long Initialize(ServiceCtx context)
- {
- Logger.PrintStub(LogClass.ServiceMm);
- return 0;
- }
- // Finalize(u32)
- public long Finalize(ServiceCtx context)
- {
- context.Device.Gpu.UninitializeVideoDecoder();
- Logger.PrintStub(LogClass.ServiceMm);
- return 0;
- }
- // SetAndWait(u32, u32, u32)
- public long SetAndWait(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- int unknown1 = context.RequestData.ReadInt32();
- int unknown2 = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceMm, new { unknown0, unknown1, unknown2 });
- return 0;
- }
- // Get(u32) -> u32
- public long Get(ServiceCtx context)
- {
- int unknown0 = context.RequestData.ReadInt32();
- Logger.PrintStub(LogClass.ServiceMm, new { unknown0 });
- context.ResponseData.Write(0);
- return 0;
- }
- }
- }
|