2018-06-10 17:46:42 -07:00
|
|
|
using Ryujinx.HLE.Logging;
|
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-09 16:14:55 -08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-10 17:46:42 -07:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Ns
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2018-04-05 21:01:52 -07:00
|
|
|
class IAddOnContentManager : 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
|
|
|
|
2018-04-05 21:01:52 -07:00
|
|
|
public IAddOnContentManager()
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-04 17:01:36 -07:00
|
|
|
{ 2, CountAddOnContent },
|
|
|
|
{ 3, ListAddOnContent }
|
2018-02-09 16:14:55 -08:00
|
|
|
};
|
|
|
|
}
|
2018-04-04 15:16:59 -07:00
|
|
|
|
|
|
|
public static long CountAddOnContent(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(0);
|
|
|
|
|
2018-04-24 11:57:39 -07:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceNs, "Stubbed.");
|
2018-04-16 17:24:42 -07:00
|
|
|
|
2018-04-04 15:16:59 -07:00
|
|
|
return 0;
|
|
|
|
}
|
2018-04-04 17:01:36 -07:00
|
|
|
|
|
|
|
public static long ListAddOnContent(ServiceCtx Context)
|
|
|
|
{
|
2018-04-24 11:57:39 -07:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceNs, "Stubbed.");
|
2018-04-16 17:24:42 -07:00
|
|
|
|
2018-04-04 17:01:36 -07: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 16:14:55 -08:00
|
|
|
}
|
|
|
|
}
|