2021-04-23 22:26:31 +02:00
|
|
|
|
using Ryujinx.Common.Configuration;
|
2023-01-21 01:36:57 +01:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2023-03-04 14:43:08 +01:00
|
|
|
|
using Ryujinx.Common.Utilities;
|
2023-03-21 23:41:19 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Services.Account.Acc.Types;
|
2023-01-21 01:36:57 +01:00
|
|
|
|
using System;
|
2021-04-23 22:26:31 +02:00
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Account.Acc
|
|
|
|
|
{
|
|
|
|
|
class AccountSaveDataManager
|
|
|
|
|
{
|
|
|
|
|
private readonly string _profilesJsonPath = Path.Join(AppDataManager.BaseDirPath, "system", "Profiles.json");
|
|
|
|
|
|
2023-03-21 23:41:19 +01:00
|
|
|
|
private static readonly ProfilesJsonSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions());
|
2021-04-23 22:26:31 +02:00
|
|
|
|
|
|
|
|
|
public UserId LastOpened { get; set; }
|
|
|
|
|
|
|
|
|
|
public AccountSaveDataManager(ConcurrentDictionary<string, UserProfile> profiles)
|
|
|
|
|
{
|
|
|
|
|
// TODO: Use 0x8000000000000010 system savedata instead of a JSON file if needed.
|
|
|
|
|
|
|
|
|
|
if (File.Exists(_profilesJsonPath))
|
|
|
|
|
{
|
2023-01-21 01:36:57 +01:00
|
|
|
|
try
|
2021-04-23 22:26:31 +02:00
|
|
|
|
{
|
2023-03-21 23:41:19 +01:00
|
|
|
|
ProfilesJson profilesJson = JsonHelper.DeserializeFromFile(_profilesJsonPath, SerializerContext.ProfilesJson);
|
2023-01-21 01:36:57 +01:00
|
|
|
|
|
|
|
|
|
foreach (var profile in profilesJson.Profiles)
|
|
|
|
|
{
|
|
|
|
|
UserProfile addedProfile = new UserProfile(new UserId(profile.UserId), profile.Name, profile.Image, profile.LastModifiedTimestamp);
|
|
|
|
|
|
|
|
|
|
profiles.AddOrUpdate(profile.UserId, addedProfile, (key, old) => addedProfile);
|
|
|
|
|
}
|
2021-04-23 22:26:31 +02:00
|
|
|
|
|
2023-01-21 01:36:57 +01:00
|
|
|
|
LastOpened = new UserId(profilesJson.LastOpened);
|
2021-04-23 22:26:31 +02:00
|
|
|
|
}
|
2023-01-21 01:36:57 +01:00
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error?.Print(LogClass.Application, $"Failed to parse {_profilesJsonPath}: {e.Message} Loading default profile!");
|
2021-04-23 22:26:31 +02:00
|
|
|
|
|
2023-01-21 01:36:57 +01:00
|
|
|
|
LastOpened = AccountManager.DefaultUserId;
|
|
|
|
|
}
|
2021-04-23 22:26:31 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LastOpened = AccountManager.DefaultUserId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Save(ConcurrentDictionary<string, UserProfile> profiles)
|
|
|
|
|
{
|
|
|
|
|
ProfilesJson profilesJson = new ProfilesJson()
|
|
|
|
|
{
|
|
|
|
|
Profiles = new List<UserProfileJson>(),
|
|
|
|
|
LastOpened = LastOpened.ToString()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
foreach (var profile in profiles)
|
|
|
|
|
{
|
|
|
|
|
profilesJson.Profiles.Add(new UserProfileJson()
|
|
|
|
|
{
|
|
|
|
|
UserId = profile.Value.UserId.ToString(),
|
|
|
|
|
Name = profile.Value.Name,
|
|
|
|
|
AccountState = profile.Value.AccountState,
|
|
|
|
|
OnlinePlayState = profile.Value.OnlinePlayState,
|
|
|
|
|
LastModifiedTimestamp = profile.Value.LastModifiedTimestamp,
|
|
|
|
|
Image = profile.Value.Image,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-21 23:41:19 +01:00
|
|
|
|
JsonHelper.SerializeToFile(_profilesJsonPath, profilesJson, SerializerContext.ProfilesJson);
|
2021-04-23 22:26:31 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|