2022-07-24 17:38:38 +00:00
|
|
|
using Avalonia;
|
|
|
|
using Avalonia.Controls;
|
2023-01-11 05:20:19 +00:00
|
|
|
using Avalonia.Styling;
|
|
|
|
using Avalonia.Threading;
|
|
|
|
using FluentAvalonia.Core;
|
2022-07-24 17:38:38 +00:00
|
|
|
using FluentAvalonia.UI.Controls;
|
2022-12-02 13:16:43 +00:00
|
|
|
using LibHac;
|
2023-01-11 05:20:19 +00:00
|
|
|
using LibHac.Common;
|
|
|
|
using LibHac.Fs;
|
|
|
|
using LibHac.Fs.Shim;
|
2022-07-24 17:38:38 +00:00
|
|
|
using Ryujinx.Ava.Common.Locale;
|
2023-01-11 05:20:19 +00:00
|
|
|
using Ryujinx.Ava.UI.Helpers;
|
|
|
|
using Ryujinx.Ava.UI.Models;
|
2022-12-29 14:24:05 +00:00
|
|
|
using Ryujinx.Ava.UI.ViewModels;
|
2023-01-11 05:20:19 +00:00
|
|
|
using Ryujinx.Ava.UI.Views.User;
|
2022-07-24 17:38:38 +00:00
|
|
|
using Ryujinx.HLE.FileSystem;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Account.Acc;
|
|
|
|
using System;
|
|
|
|
using System.Threading.Tasks;
|
2023-01-11 05:20:19 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using UserProfile = Ryujinx.Ava.UI.Models.UserProfile;
|
2022-07-24 17:38:38 +00:00
|
|
|
|
2022-12-29 14:24:05 +00:00
|
|
|
namespace Ryujinx.Ava.UI.Controls
|
2022-07-24 17:38:38 +00:00
|
|
|
{
|
|
|
|
public partial class NavigationDialogHost : UserControl
|
|
|
|
{
|
|
|
|
public AccountManager AccountManager { get; }
|
|
|
|
public ContentManager ContentManager { get; }
|
2022-12-02 13:16:43 +00:00
|
|
|
public VirtualFileSystem VirtualFileSystem { get; }
|
|
|
|
public HorizonClient HorizonClient { get; }
|
2022-07-24 17:38:38 +00:00
|
|
|
public UserProfileViewModel ViewModel { get; set; }
|
|
|
|
|
|
|
|
public NavigationDialogHost()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
public NavigationDialogHost(AccountManager accountManager, ContentManager contentManager,
|
2022-12-02 13:16:43 +00:00
|
|
|
VirtualFileSystem virtualFileSystem, HorizonClient horizonClient)
|
2022-07-24 17:38:38 +00:00
|
|
|
{
|
|
|
|
AccountManager = accountManager;
|
|
|
|
ContentManager = contentManager;
|
2022-12-02 13:16:43 +00:00
|
|
|
VirtualFileSystem = virtualFileSystem;
|
|
|
|
HorizonClient = horizonClient;
|
2023-01-11 05:20:19 +00:00
|
|
|
ViewModel = new UserProfileViewModel();
|
|
|
|
LoadProfiles();
|
2022-07-24 17:38:38 +00:00
|
|
|
|
|
|
|
if (contentManager.GetCurrentFirmwareVersion() != null)
|
|
|
|
{
|
|
|
|
Task.Run(() =>
|
|
|
|
{
|
2023-01-11 05:20:19 +00:00
|
|
|
UserFirmwareAvatarSelectorViewModel.PreloadAvatars(contentManager, virtualFileSystem);
|
2022-07-24 17:38:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void GoBack(object parameter = null)
|
|
|
|
{
|
|
|
|
if (ContentFrame.BackStack.Count > 0)
|
|
|
|
{
|
|
|
|
ContentFrame.GoBack();
|
|
|
|
}
|
|
|
|
|
2023-01-11 05:20:19 +00:00
|
|
|
LoadProfiles();
|
2022-07-24 17:38:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Navigate(Type sourcePageType, object parameter)
|
|
|
|
{
|
|
|
|
ContentFrame.Navigate(sourcePageType, parameter);
|
|
|
|
}
|
|
|
|
|
2022-12-02 13:16:43 +00:00
|
|
|
public static async Task Show(AccountManager ownerAccountManager, ContentManager ownerContentManager,
|
|
|
|
VirtualFileSystem ownerVirtualFileSystem, HorizonClient ownerHorizonClient)
|
2022-07-24 17:38:38 +00:00
|
|
|
{
|
2022-12-02 13:16:43 +00:00
|
|
|
var content = new NavigationDialogHost(ownerAccountManager, ownerContentManager, ownerVirtualFileSystem, ownerHorizonClient);
|
2022-07-24 17:38:38 +00:00
|
|
|
ContentDialog contentDialog = new ContentDialog
|
|
|
|
{
|
2023-01-03 18:45:08 +00:00
|
|
|
Title = LocaleManager.Instance[LocaleKeys.UserProfileWindowTitle],
|
2022-07-24 17:38:38 +00:00
|
|
|
PrimaryButtonText = "",
|
|
|
|
SecondaryButtonText = "",
|
2023-01-11 05:20:19 +00:00
|
|
|
CloseButtonText = "",
|
2022-07-24 17:38:38 +00:00
|
|
|
Content = content,
|
|
|
|
Padding = new Thickness(0)
|
|
|
|
};
|
|
|
|
|
|
|
|
contentDialog.Closed += (sender, args) =>
|
|
|
|
{
|
|
|
|
content.ViewModel.Dispose();
|
|
|
|
};
|
|
|
|
|
2023-01-11 05:20:19 +00:00
|
|
|
Style footer = new(x => x.Name("DialogSpace").Child().OfType<Border>());
|
|
|
|
footer.Setters.Add(new Setter(IsVisibleProperty, false));
|
|
|
|
|
|
|
|
contentDialog.Styles.Add(footer);
|
|
|
|
|
2022-07-24 17:38:38 +00:00
|
|
|
await contentDialog.ShowAsync();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnAttachedToVisualTree(VisualTreeAttachmentEventArgs e)
|
|
|
|
{
|
|
|
|
base.OnAttachedToVisualTree(e);
|
|
|
|
|
2023-01-11 05:20:19 +00:00
|
|
|
Navigate(typeof(UserSelectorViews), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadProfiles()
|
|
|
|
{
|
|
|
|
ViewModel.Profiles.Clear();
|
|
|
|
ViewModel.LostProfiles.Clear();
|
|
|
|
|
|
|
|
var profiles = AccountManager.GetAllUsers().OrderBy(x => x.Name);
|
|
|
|
|
|
|
|
foreach (var profile in profiles)
|
|
|
|
{
|
|
|
|
ViewModel.Profiles.Add(new UserProfile(profile, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
var saveDataFilter = SaveDataFilter.Make(programId: default, saveType: SaveDataType.Account, default, saveDataId: default, index: default);
|
|
|
|
|
|
|
|
using var saveDataIterator = new UniqueRef<SaveDataIterator>();
|
|
|
|
|
2023-03-02 02:42:27 +00:00
|
|
|
HorizonClient.Fs.OpenSaveDataIterator(ref saveDataIterator.Ref, SaveDataSpaceId.User, in saveDataFilter).ThrowIfFailure();
|
2023-01-11 05:20:19 +00:00
|
|
|
|
|
|
|
Span<SaveDataInfo> saveDataInfo = stackalloc SaveDataInfo[10];
|
|
|
|
|
|
|
|
HashSet<HLE.HOS.Services.Account.Acc.UserId> lostAccounts = new();
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
saveDataIterator.Get.ReadSaveDataInfo(out long readCount, saveDataInfo).ThrowIfFailure();
|
|
|
|
|
|
|
|
if (readCount == 0)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < readCount; i++)
|
|
|
|
{
|
|
|
|
var save = saveDataInfo[i];
|
|
|
|
var id = new HLE.HOS.Services.Account.Acc.UserId((long)save.UserId.Id.Low, (long)save.UserId.Id.High);
|
|
|
|
if (ViewModel.Profiles.Cast<UserProfile>().FirstOrDefault( x=> x.UserId == id) == null)
|
|
|
|
{
|
|
|
|
lostAccounts.Add(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach(var account in lostAccounts)
|
|
|
|
{
|
|
|
|
ViewModel.LostProfiles.Add(new UserProfile(new HLE.HOS.Services.Account.Acc.UserProfile(account, "", null), this));
|
|
|
|
}
|
|
|
|
|
|
|
|
ViewModel.Profiles.Add(new BaseModel());
|
|
|
|
}
|
|
|
|
|
|
|
|
public async void DeleteUser(UserProfile userProfile)
|
|
|
|
{
|
|
|
|
var lastUserId = AccountManager.LastOpenedUser.UserId;
|
|
|
|
|
|
|
|
if (userProfile.UserId == lastUserId)
|
|
|
|
{
|
|
|
|
// If we are deleting the currently open profile, then we must open something else before deleting.
|
|
|
|
var profile = ViewModel.Profiles.Cast<UserProfile>().FirstOrDefault(x => x.UserId != lastUserId);
|
|
|
|
|
|
|
|
if (profile == null)
|
|
|
|
{
|
|
|
|
async void Action()
|
|
|
|
{
|
|
|
|
await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance[LocaleKeys.DialogUserProfileDeletionWarningMessage]);
|
|
|
|
}
|
|
|
|
|
|
|
|
Dispatcher.UIThread.Post(Action);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AccountManager.OpenUser(profile.UserId);
|
|
|
|
}
|
|
|
|
|
|
|
|
var result = await ContentDialogHelper.CreateConfirmationDialog(
|
|
|
|
LocaleManager.Instance[LocaleKeys.DialogUserProfileDeletionConfirmMessage],
|
|
|
|
"",
|
|
|
|
LocaleManager.Instance[LocaleKeys.InputDialogYes],
|
|
|
|
LocaleManager.Instance[LocaleKeys.InputDialogNo],
|
|
|
|
"");
|
|
|
|
|
|
|
|
if (result == UserResult.Yes)
|
|
|
|
{
|
|
|
|
GoBack();
|
|
|
|
AccountManager.DeleteUser(userProfile.UserId);
|
|
|
|
}
|
|
|
|
|
|
|
|
LoadProfiles();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void AddUser()
|
|
|
|
{
|
|
|
|
Navigate(typeof(UserEditorView), (this, (UserProfile)null, true));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void EditUser(UserProfile userProfile)
|
|
|
|
{
|
|
|
|
Navigate(typeof(UserEditorView), (this, userProfile, false));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void RecoverLostAccounts()
|
|
|
|
{
|
|
|
|
Navigate(typeof(UserRecovererView), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ManageSaves()
|
|
|
|
{
|
|
|
|
Navigate(typeof(UserSaveManagerView), (this, AccountManager, HorizonClient, VirtualFileSystem));
|
2022-07-24 17:38:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|