Ryujinx/Ryujinx.HLE/HOS/Services/Psm/IPsmServer.cs
Ac_K 560ccbeb2d 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
2019-07-11 22:13:43 -03:00

52 lines
No EOL
1.2 KiB
C#

using Ryujinx.Common.Logging;
namespace Ryujinx.HLE.HOS.Services.Psm
{
[Service("psm")]
class IPsmServer : IpcService
{
enum ChargerType
{
None,
ChargerOrDock,
UsbC
}
public IPsmServer(ServiceCtx context) { }
[Command(0)]
// GetBatteryChargePercentage() -> u32
public static long GetBatteryChargePercentage(ServiceCtx context)
{
int chargePercentage = 100;
context.ResponseData.Write(chargePercentage);
Logger.PrintStub(LogClass.ServicePsm, new { chargePercentage });
return 0;
}
[Command(1)]
// GetChargerType() -> u32
public static long GetChargerType(ServiceCtx context)
{
ChargerType chargerType = ChargerType.ChargerOrDock;
context.ResponseData.Write((int)chargerType);
Logger.PrintStub(LogClass.ServicePsm, new { chargerType });
return 0;
}
[Command(7)]
// OpenSession() -> IPsmSession
public long OpenSession(ServiceCtx context)
{
MakeObject(context, new IPsmSession(context.Device.System));
return 0;
}
}
}