2018-04-24 13:57:39 -05:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-02-20 14:09:23 -06:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
2018-02-09 18:14:55 -06:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-03-20 15:00:00 -05:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Ns
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
2018-04-05 23:01:52 -05:00
|
|
|
class IAddOnContentManager : IpcService
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 13:58:46 -05:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-09 18:14:55 -06:00
|
|
|
|
2018-04-05 23:01:52 -05:00
|
|
|
public IAddOnContentManager()
|
2018-02-09 18:14:55 -06:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-04 19:01:36 -05:00
|
|
|
{ 2, CountAddOnContent },
|
|
|
|
{ 3, ListAddOnContent }
|
2018-02-09 18:14:55 -06:00
|
|
|
};
|
|
|
|
}
|
2018-04-04 17:16:59 -05:00
|
|
|
|
|
|
|
public static long CountAddOnContent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(0);
|
|
|
|
|
2018-04-24 13:57:39 -05:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceNs, "Stubbed.");
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2018-04-04 17:16:59 -05:00
|
|
|
return 0;
|
|
|
|
}
|
2018-04-04 19:01:36 -05:00
|
|
|
|
|
|
|
public static long ListAddOnContent(ServiceCtx Context)
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceNs, "Stubbed.");
|
2018-04-16 19:24:42 -05:00
|
|
|
|
2018-04-04 19:01:36 -05:00
|
|
|
//TODO: This is supposed to write a u32 array aswell.
|
|
|
|
//It's unknown what it contains.
|
|
|
|
Context.ResponseData.Write(0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-09 18:14:55 -06:00
|
|
|
}
|
|
|
|
}
|