mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:48:34 +00:00
54b79dffa8
* Abstract SteadyClockCore to follow Nintendo changes in 4.x This is the ground work for 4.0.0 support * Implement TickBasedSteadyClockCore Preparation for the ephemeral clock. * Refactor SystemClockCore to follow 4.0.0 changes * Implement EphemeralNetworkSystemClock * Implement GetSnapshotClock & GetSnapshotClockFromSystemClockContext * Implement CalculateStandardUserSystemClockDifferenceByUser & CalculateSpanBetween * Remove an outdated comment & unused import * Fix a nit and GetClockSnapshot * Address comment
91 lines
2.8 KiB
C#
91 lines
2.8 KiB
C#
using Ryujinx.Common;
|
|
using Ryujinx.HLE.HOS.Services.Time.Clock;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time
|
|
{
|
|
class ISteadyClock : IpcService
|
|
{
|
|
[Command(0)]
|
|
// GetCurrentTimePoint() -> nn::time::SteadyClockTimePoint
|
|
public ResultCode GetCurrentTimePoint(ServiceCtx context)
|
|
{
|
|
SteadyClockTimePoint currentTimePoint = StandardSteadyClockCore.Instance.GetCurrentTimePoint(context.Thread);
|
|
|
|
context.ResponseData.WriteStruct(currentTimePoint);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(1)]
|
|
// GetTestOffset() -> nn::TimeSpanType
|
|
public ResultCode GetTestOffset(ServiceCtx context)
|
|
{
|
|
context.ResponseData.WriteStruct(StandardSteadyClockCore.Instance.GetTestOffset());
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(2)]
|
|
// SetTestOffset(nn::TimeSpanType)
|
|
public ResultCode SetTestOffset(ServiceCtx context)
|
|
{
|
|
TimeSpanType testOffset = context.RequestData.ReadStruct<TimeSpanType>();
|
|
|
|
StandardSteadyClockCore.Instance.SetTestOffset(testOffset);
|
|
|
|
return 0;
|
|
}
|
|
|
|
[Command(100)] // 2.0.0+
|
|
// GetRtcValue() -> u64
|
|
public ResultCode GetRtcValue(ServiceCtx context)
|
|
{
|
|
ResultCode result = StandardSteadyClockCore.Instance.GetRtcValue(out ulong rtcValue);
|
|
|
|
if (result == ResultCode.Success)
|
|
{
|
|
context.ResponseData.Write(rtcValue);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
[Command(101)] // 2.0.0+
|
|
// IsRtcResetDetected() -> bool
|
|
public ResultCode IsRtcResetDetected(ServiceCtx context)
|
|
{
|
|
context.ResponseData.Write(StandardSteadyClockCore.Instance.IsRtcResetDetected());
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(102)] // 2.0.0+
|
|
// GetSetupResultValue() -> u32
|
|
public ResultCode GetSetupResultValue(ServiceCtx context)
|
|
{
|
|
context.ResponseData.Write((uint)StandardSteadyClockCore.Instance.GetSetupResultValue());
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(200)] // 3.0.0+
|
|
// GetInternalOffset() -> nn::TimeSpanType
|
|
public ResultCode GetInternalOffset(ServiceCtx context)
|
|
{
|
|
context.ResponseData.WriteStruct(StandardSteadyClockCore.Instance.GetInternalOffset());
|
|
|
|
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>();
|
|
|
|
StandardSteadyClockCore.Instance.SetInternalOffset(internalOffset);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |