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