2018-10-21 06:01:22 +00:00
|
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Psm
|
|
|
|
|
{
|
|
|
|
|
class IPsmServer : IpcService
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
enum ChargerType
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
ChargerOrDock,
|
|
|
|
|
UsbC
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
|
|
|
|
public IPsmServer()
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
|
|
|
|
{ 0, GetBatteryChargePercentage },
|
|
|
|
|
{ 1, GetChargerType },
|
|
|
|
|
{ 7, OpenSession }
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetBatteryChargePercentage() -> u32
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public static long GetBatteryChargePercentage(ServiceCtx context)
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
int chargePercentage = 100;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.ResponseData.Write(chargePercentage);
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm, new { chargePercentage });
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetChargerType() -> u32
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public static long GetChargerType(ServiceCtx context)
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2019-01-11 00:11:46 +00:00
|
|
|
|
ChargerType chargerType = ChargerType.ChargerOrDock;
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
2019-01-11 00:11:46 +00:00
|
|
|
|
context.ResponseData.Write((int)chargerType);
|
|
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServicePsm, new { chargerType });
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OpenSession() -> IPsmSession
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public long OpenSession(ServiceCtx context)
|
2018-10-21 06:01:22 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
MakeObject(context, new IPsmSession(context.Device.System));
|
2018-10-21 06:01:22 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|