2018-10-07 13:13:46 +00:00
|
|
|
|
using Ryujinx.HLE.Utilities;
|
|
|
|
|
using System;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.SystemState
|
2018-08-14 22:02:42 +00:00
|
|
|
|
{
|
|
|
|
|
class UserProfile
|
|
|
|
|
{
|
|
|
|
|
private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
|
|
|
|
|
|
2019-06-15 22:35:38 +00:00
|
|
|
|
public UInt128 UserId { get; private set; }
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
|
public string Name { get; private set; }
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
|
|
|
|
public long LastModifiedTimestamp { get; private set; }
|
|
|
|
|
|
2019-06-15 22:35:38 +00:00
|
|
|
|
public AccountState AccountState { get; set; }
|
|
|
|
|
public AccountState OnlinePlayState { get; set; }
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
2019-06-15 22:35:38 +00:00
|
|
|
|
public UserProfile(UInt128 userId, string name)
|
2018-08-14 22:02:42 +00:00
|
|
|
|
{
|
2019-06-15 22:35:38 +00:00
|
|
|
|
UserId = userId;
|
|
|
|
|
Name = name;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
|
|
|
|
LastModifiedTimestamp = 0;
|
|
|
|
|
|
2019-06-15 22:35:38 +00:00
|
|
|
|
AccountState = AccountState.Closed;
|
|
|
|
|
OnlinePlayState = AccountState.Closed;
|
2018-08-14 22:02:42 +00:00
|
|
|
|
|
|
|
|
|
UpdateTimestamp();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateTimestamp()
|
|
|
|
|
{
|
|
|
|
|
LastModifiedTimestamp = (long)(DateTime.Now - Epoch).TotalSeconds;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-14 19:04:38 +00:00
|
|
|
|
}
|