mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 10:18:30 +02:00
Refactoring commands handling (#728)
* Refactoring commands handling - Use Reflection to handle commands ID. - Add all symbols (from SwIPC so not all time accurate). - Re-sort some services commands methods. - Some cleanup. - Keep some empty constructor for consistency. * Fix order in IProfile
This commit is contained in:
@@ -1,27 +1,11 @@
|
||||
using Ryujinx.HLE.HOS.Ipc;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Friend
|
||||
{
|
||||
class IDaemonSuspendSessionService : IpcService
|
||||
{
|
||||
private Dictionary<int, ServiceProcessRequest> _commands;
|
||||
|
||||
private FriendServicePermissionLevel PermissionLevel;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
||||
|
||||
public IDaemonSuspendSessionService(FriendServicePermissionLevel permissionLevel)
|
||||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>
|
||||
{
|
||||
//{ 0, Unknown0 }, // 4.0.0+
|
||||
//{ 1, Unknown1 }, // 4.0.0+
|
||||
//{ 2, Unknown2 }, // 4.0.0+
|
||||
//{ 3, Unknown3 }, // 4.0.0+
|
||||
//{ 4, Unknown4 }, // 4.0.0+
|
||||
};
|
||||
|
||||
PermissionLevel = permissionLevel;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user