mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:28:33 +00:00
560ccbeb2d
* 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
52 lines
1.2 KiB
C#
52 lines
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;
|
|
}
|
|
}
|
|
} |