2018-06-16 03:20:48 +02:00
|
|
|
using Ryujinx.HLE.OsHle.Ipc;
|
2018-02-10 01:14:55 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-06-16 03:20:48 +02:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Time
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class ISystemClock : IpcService
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 19:58:46 +01:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-04-11 02:16:27 +02:00
|
|
|
private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-02-14 06:43:21 +01:00
|
|
|
private SystemClockType ClockType;
|
|
|
|
|
|
|
|
public ISystemClock(SystemClockType ClockType)
|
2018-02-10 01:14:55 +01:00
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-06-16 03:20:48 +02:00
|
|
|
{ 0, GetCurrentTime },
|
|
|
|
{ 2, GetSystemClockContext }
|
2018-02-10 01:14:55 +01:00
|
|
|
};
|
2018-02-14 06:43:21 +01:00
|
|
|
|
|
|
|
this.ClockType = ClockType;
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public long GetCurrentTime(ServiceCtx Context)
|
|
|
|
{
|
2018-02-14 06:43:21 +01:00
|
|
|
DateTime CurrentTime = DateTime.Now;
|
|
|
|
|
2018-02-15 05:32:25 +01:00
|
|
|
if (ClockType == SystemClockType.User ||
|
2018-02-14 06:43:21 +01:00
|
|
|
ClockType == SystemClockType.Network)
|
|
|
|
{
|
|
|
|
CurrentTime = CurrentTime.ToUniversalTime();
|
|
|
|
}
|
|
|
|
|
2018-02-10 01:14:55 +01:00
|
|
|
Context.ResponseData.Write((long)(DateTime.Now - Epoch).TotalSeconds);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-06-16 03:20:48 +02:00
|
|
|
|
|
|
|
public long GetSystemClockContext(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
//Raw data dumped from real switch via pegaswitch
|
|
|
|
byte[] SystemClockContext = { 0x07, 0x00, 0x19, 0x00, 0x0d, 0xd2, 0xb2, 0x80};
|
|
|
|
|
|
|
|
Array.Resize(ref SystemClockContext, 0x20);
|
|
|
|
|
|
|
|
for (int Index = 0; Index < 0x20; Index++)
|
|
|
|
{
|
|
|
|
Context.ResponseData.Write(SystemClockContext[Index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-10 01:14:55 +01:00
|
|
|
}
|
2018-06-16 03:20:48 +02:00
|
|
|
}
|