2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-04-21 19:30:06 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
2018-04-21 19:30:06 +00:00
|
|
|
{
|
|
|
|
class ISystemAppletProxy : IpcService
|
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
public ISystemAppletProxy()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-04-24 18:57:39 +00:00
|
|
|
{ 0, GetCommonStateGetter },
|
|
|
|
{ 1, GetSelfController },
|
|
|
|
{ 2, GetWindowController },
|
|
|
|
{ 3, GetAudioController },
|
|
|
|
{ 4, GetDisplayController },
|
|
|
|
{ 11, GetLibraryAppletCreator },
|
|
|
|
{ 20, GetHomeMenuFunctions },
|
|
|
|
{ 21, GetGlobalStateController },
|
|
|
|
{ 22, GetApplicationCreator },
|
2018-04-21 19:30:06 +00:00
|
|
|
{ 1000, GetDebugFunctions }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetCommonStateGetter(ServiceCtx Context)
|
|
|
|
{
|
2018-09-18 23:36:43 +00:00
|
|
|
MakeObject(Context, new ICommonStateGetter(Context.Device.System));
|
2018-04-21 19:30:06 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetSelfController(ServiceCtx Context)
|
|
|
|
{
|
2018-09-18 23:36:43 +00:00
|
|
|
MakeObject(Context, new ISelfController(Context.Device.System));
|
2018-04-21 19:30:06 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetWindowController(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new IWindowController());
|
|
|
|
|
|
|
|
return 0;
|
2018-04-24 18:57:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-21 19:30:06 +00:00
|
|
|
public long GetAudioController(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new IAudioController());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetDisplayController(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new IDisplayController());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetLibraryAppletCreator(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new ILibraryAppletCreator());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetHomeMenuFunctions(ServiceCtx Context)
|
|
|
|
{
|
2018-09-18 23:36:43 +00:00
|
|
|
MakeObject(Context, new IHomeMenuFunctions(Context.Device.System));
|
2018-04-21 19:30:06 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetGlobalStateController(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new IGlobalStateController());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetApplicationCreator(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new IApplicationCreator());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public long GetDebugFunctions(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
MakeObject(Context, new IDebugFunctions());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|