2018-07-01 20:03:05 -04:00
|
|
|
using System;
|
2018-02-09 19:14:55 -05:00
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Time
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-03-19 14:58:46 -04:00
|
|
|
class ISteadyClock : IpcService
|
2018-02-09 19:14:55 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
private ulong _testOffset;
|
2018-07-01 20:03:05 -04:00
|
|
|
|
2018-02-09 19:14:55 -05:00
|
|
|
public ISteadyClock()
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
_testOffset = 0;
|
2018-07-01 20:03:05 -04:00
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(0)]
|
|
|
|
// GetCurrentTimePoint() -> nn::time::SteadyClockTimePoint
|
2018-12-06 06:16:24 -05:00
|
|
|
public long GetCurrentTimePoint(ServiceCtx context)
|
2018-07-01 20:03:05 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
context.ResponseData.Write((long)(System.Diagnostics.Process.GetCurrentProcess().StartTime - DateTime.Now).TotalSeconds);
|
2018-07-01 20:03:05 -04:00
|
|
|
|
|
|
|
for (int i = 0; i < 0x10; i++)
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
context.ResponseData.Write((byte)0);
|
2018-07-01 20:03:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(1)]
|
|
|
|
// GetTestOffset() -> nn::TimeSpanType
|
2018-12-06 06:16:24 -05:00
|
|
|
public long GetTestOffset(ServiceCtx context)
|
2018-07-01 20:03:05 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
context.ResponseData.Write(_testOffset);
|
2018-07-01 20:03:05 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(2)]
|
|
|
|
// SetTestOffset(nn::TimeSpanType)
|
2018-12-06 06:16:24 -05:00
|
|
|
public long SetTestOffset(ServiceCtx context)
|
2018-07-01 20:03:05 -04:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
_testOffset = context.RequestData.ReadUInt64();
|
2018-07-01 20:03:05 -04:00
|
|
|
|
|
|
|
return 0;
|
2018-02-09 19:14:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|