2019-07-14 20:50:11 +00:00
|
|
|
using Ryujinx.Common;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Time.Clock;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class ISteadyClock : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// GetCurrentTimePoint() -> nn::time::SteadyClockTimePoint
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetCurrentTimePoint(ServiceCtx context)
|
2018-07-02 00:03:05 +00:00
|
|
|
{
|
2019-07-25 14:44:51 +00:00
|
|
|
SteadyClockTimePoint currentTimePoint = StandardSteadyClockCore.Instance.GetCurrentTimePoint(context.Thread);
|
2018-07-02 00:03:05 +00:00
|
|
|
|
2019-07-14 20:50:11 +00:00
|
|
|
context.ResponseData.WriteStruct(currentTimePoint);
|
2018-07-02 00:03:05 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-07-02 00:03:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1)]
|
|
|
|
// GetTestOffset() -> nn::TimeSpanType
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetTestOffset(ServiceCtx context)
|
2018-07-02 00:03:05 +00:00
|
|
|
{
|
2019-07-25 14:44:51 +00:00
|
|
|
context.ResponseData.WriteStruct(StandardSteadyClockCore.Instance.GetTestOffset());
|
2018-07-02 00:03:05 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-07-02 00:03:05 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(2)]
|
|
|
|
// SetTestOffset(nn::TimeSpanType)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetTestOffset(ServiceCtx context)
|
2018-07-02 00:03:05 +00:00
|
|
|
{
|
2019-07-14 20:50:11 +00:00
|
|
|
TimeSpanType testOffset = context.RequestData.ReadStruct<TimeSpanType>();
|
|
|
|
|
2019-07-25 14:44:51 +00:00
|
|
|
StandardSteadyClockCore.Instance.SetTestOffset(testOffset);
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-15 17:52:35 +00:00
|
|
|
[Command(100)] // 2.0.0+
|
|
|
|
// GetRtcValue() -> u64
|
|
|
|
public ResultCode GetRtcValue(ServiceCtx context)
|
|
|
|
{
|
2019-07-25 14:44:51 +00:00
|
|
|
ResultCode result = StandardSteadyClockCore.Instance.GetRtcValue(out ulong rtcValue);
|
2019-07-15 17:52:35 +00:00
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(rtcValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(101)] // 2.0.0+
|
|
|
|
// IsRtcResetDetected() -> bool
|
|
|
|
public ResultCode IsRtcResetDetected(ServiceCtx context)
|
|
|
|
{
|
2019-07-25 14:44:51 +00:00
|
|
|
context.ResponseData.Write(StandardSteadyClockCore.Instance.IsRtcResetDetected());
|
2019-07-15 17:52:35 +00:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(102)] // 2.0.0+
|
|
|
|
// GetSetupResultValue() -> u32
|
|
|
|
public ResultCode GetSetupResultValue(ServiceCtx context)
|
|
|
|
{
|
2019-07-25 14:44:51 +00:00
|
|
|
context.ResponseData.Write((uint)StandardSteadyClockCore.Instance.GetSetupResultValue());
|
2019-07-15 17:52:35 +00:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2019-07-14 20:50:11 +00:00
|
|
|
[Command(200)] // 3.0.0+
|
|
|
|
// GetInternalOffset() -> nn::TimeSpanType
|
|
|
|
public ResultCode GetInternalOffset(ServiceCtx context)
|
|
|
|
{
|
2019-07-25 14:44:51 +00:00
|
|
|
context.ResponseData.WriteStruct(StandardSteadyClockCore.Instance.GetInternalOffset());
|
2019-07-14 20:50:11 +00:00
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(201)] // 3.0.0-3.0.2
|
|
|
|
// SetInternalOffset(nn::TimeSpanType)
|
|
|
|
public ResultCode SetInternalOffset(ServiceCtx context)
|
|
|
|
{
|
|
|
|
TimeSpanType internalOffset = context.RequestData.ReadStruct<TimeSpanType>();
|
|
|
|
|
2019-07-25 14:44:51 +00:00
|
|
|
StandardSteadyClockCore.Instance.SetInternalOffset(internalOffset);
|
2018-07-02 00:03:05 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|