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
107 lines
2.8 KiB
C#
107 lines
2.8 KiB
C#
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using Ryujinx.HLE.HOS.Services.Bpc;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time.Clock
|
|
{
|
|
class StandardSteadyClockCore : SteadyClockCore
|
|
{
|
|
private long _setupValue;
|
|
private ResultCode _setupResultCode;
|
|
private bool _isRtcResetDetected;
|
|
private TimeSpanType _testOffset;
|
|
private TimeSpanType _internalOffset;
|
|
|
|
private static StandardSteadyClockCore _instance;
|
|
|
|
public static StandardSteadyClockCore Instance
|
|
{
|
|
get
|
|
{
|
|
if (_instance == null)
|
|
{
|
|
_instance = new StandardSteadyClockCore();
|
|
}
|
|
|
|
return _instance;
|
|
}
|
|
}
|
|
|
|
private StandardSteadyClockCore()
|
|
{
|
|
_testOffset = new TimeSpanType(0);
|
|
_internalOffset = new TimeSpanType(0);
|
|
}
|
|
|
|
public override SteadyClockTimePoint GetTimePoint(KThread thread)
|
|
{
|
|
SteadyClockTimePoint result = new SteadyClockTimePoint
|
|
{
|
|
TimePoint = 0,
|
|
ClockSourceId = GetClockSourceId()
|
|
};
|
|
|
|
TimeSpanType ticksTimeSpan = TimeSpanType.FromTicks(thread.Context.ThreadState.CntpctEl0, thread.Context.ThreadState.CntfrqEl0);
|
|
|
|
result.TimePoint = _setupValue + ticksTimeSpan.ToSeconds();
|
|
|
|
return result;
|
|
}
|
|
|
|
public override TimeSpanType GetTestOffset()
|
|
{
|
|
return _testOffset;
|
|
}
|
|
|
|
public override void SetTestOffset(TimeSpanType testOffset)
|
|
{
|
|
_testOffset = testOffset;
|
|
}
|
|
|
|
public override ResultCode GetRtcValue(out ulong rtcValue)
|
|
{
|
|
return (ResultCode)IRtcManager.GetExternalRtcValue(out rtcValue);
|
|
}
|
|
|
|
public bool IsRtcResetDetected()
|
|
{
|
|
return _isRtcResetDetected;
|
|
}
|
|
|
|
public override TimeSpanType GetInternalOffset()
|
|
{
|
|
return _internalOffset;
|
|
}
|
|
|
|
public override void SetInternalOffset(TimeSpanType internalOffset)
|
|
{
|
|
_internalOffset = internalOffset;
|
|
}
|
|
|
|
public override ResultCode GetSetupResultValue()
|
|
{
|
|
return _setupResultCode;
|
|
}
|
|
|
|
public void ConfigureSetupValue()
|
|
{
|
|
int retry = 0;
|
|
|
|
ResultCode result = ResultCode.Success;
|
|
|
|
while (retry < 20)
|
|
{
|
|
result = (ResultCode)IRtcManager.GetExternalRtcValue(out ulong rtcValue);
|
|
|
|
if (result == ResultCode.Success)
|
|
{
|
|
_setupValue = (long)rtcValue;
|
|
break;
|
|
}
|
|
|
|
retry++;
|
|
}
|
|
|
|
_setupResultCode = result;
|
|
}
|
|
}
|
|
}
|