2018-07-02 01:03:05 +01:00
|
|
|
using System;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-08-17 00:47:36 +01: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
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
private ulong _testOffset;
|
2018-07-02 01:03:05 +01:00
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public ISteadyClock()
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_testOffset = 0;
|
2018-07-02 01:03:05 +01:00
|
|
|
}
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(0)]
|
|
|
|
// GetCurrentTimePoint() -> nn::time::SteadyClockTimePoint
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetCurrentTimePoint(ServiceCtx context)
|
2018-07-02 01:03:05 +01:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((long)(System.Diagnostics.Process.GetCurrentProcess().StartTime - DateTime.Now).TotalSeconds);
|
2018-07-02 01:03:05 +01:00
|
|
|
|
|
|
|
for (int i = 0; i < 0x10; i++)
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write((byte)0);
|
2018-07-02 01:03:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(1)]
|
|
|
|
// GetTestOffset() -> nn::TimeSpanType
|
2018-12-06 11:16:24 +00:00
|
|
|
public long GetTestOffset(ServiceCtx context)
|
2018-07-02 01:03:05 +01:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
context.ResponseData.Write(_testOffset);
|
2018-07-02 01:03:05 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(2)]
|
|
|
|
// SetTestOffset(nn::TimeSpanType)
|
2018-12-06 11:16:24 +00:00
|
|
|
public long SetTestOffset(ServiceCtx context)
|
2018-07-02 01:03:05 +01:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
_testOffset = context.RequestData.ReadUInt64();
|
2018-07-02 01:03:05 +01:00
|
|
|
|
|
|
|
return 0;
|
2018-02-10 00:14:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|