2022-12-02 14:16:43 +01:00
|
|
|
using LibHac.Fs;
|
|
|
|
using LibHac.Ncm;
|
2022-12-29 15:24:05 +01:00
|
|
|
using Ryujinx.Ava.UI.ViewModels;
|
|
|
|
using Ryujinx.Ava.UI.Windows;
|
2022-12-02 14:16:43 +01:00
|
|
|
using Ryujinx.HLE.FileSystem;
|
2023-01-12 13:23:24 +01:00
|
|
|
using System;
|
2022-12-02 14:16:43 +01:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2022-12-29 15:24:05 +01:00
|
|
|
namespace Ryujinx.Ava.UI.Models
|
2022-12-02 14:16:43 +01:00
|
|
|
{
|
|
|
|
public class SaveModel : BaseModel
|
|
|
|
{
|
|
|
|
private long _size;
|
|
|
|
|
|
|
|
public ulong SaveId { get; }
|
|
|
|
public ProgramId TitleId { get; }
|
|
|
|
public string TitleIdString => $"{TitleId.Value:X16}";
|
|
|
|
public UserId UserId { get; }
|
|
|
|
public bool InGameList { get; }
|
|
|
|
public string Title { get; }
|
|
|
|
public byte[] Icon { get; }
|
|
|
|
|
|
|
|
public long Size
|
|
|
|
{
|
|
|
|
get => _size; set
|
|
|
|
{
|
|
|
|
_size = value;
|
|
|
|
SizeAvailable = true;
|
|
|
|
OnPropertyChanged();
|
|
|
|
OnPropertyChanged(nameof(SizeString));
|
|
|
|
OnPropertyChanged(nameof(SizeAvailable));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool SizeAvailable { get; set; }
|
|
|
|
|
2023-01-12 13:23:24 +01:00
|
|
|
public string SizeString => GetSizeString();
|
2022-12-02 14:16:43 +01:00
|
|
|
|
2023-01-12 13:23:24 +01:00
|
|
|
private string GetSizeString()
|
|
|
|
{
|
|
|
|
const int scale = 1024;
|
|
|
|
string[] orders = { "GiB", "MiB", "KiB" };
|
|
|
|
long max = (long)Math.Pow(scale, orders.Length);
|
|
|
|
|
|
|
|
foreach (string order in orders)
|
|
|
|
{
|
|
|
|
if (Size > max)
|
|
|
|
{
|
|
|
|
return $"{decimal.Divide(Size, max):##.##} {order}";
|
|
|
|
}
|
|
|
|
|
|
|
|
max /= scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "0 KiB";
|
|
|
|
}
|
|
|
|
|
|
|
|
public SaveModel(SaveDataInfo info, VirtualFileSystem virtualFileSystem)
|
2022-12-02 14:16:43 +01:00
|
|
|
{
|
|
|
|
SaveId = info.SaveDataId;
|
|
|
|
TitleId = info.ProgramId;
|
|
|
|
UserId = info.UserId;
|
|
|
|
|
|
|
|
var appData = MainWindow.MainWindowViewModel.Applications.FirstOrDefault(x => x.TitleId.ToUpper() == TitleIdString);
|
|
|
|
|
|
|
|
InGameList = appData != null;
|
|
|
|
|
|
|
|
if (InGameList)
|
|
|
|
{
|
|
|
|
Icon = appData.Icon;
|
|
|
|
Title = appData.TitleName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var appMetadata = MainWindow.MainWindowViewModel.ApplicationLibrary.LoadAndSaveMetaData(TitleIdString);
|
|
|
|
Title = appMetadata.Title ?? TitleIdString;
|
|
|
|
}
|
|
|
|
|
|
|
|
Task.Run(() =>
|
|
|
|
{
|
|
|
|
var saveRoot = System.IO.Path.Combine(virtualFileSystem.GetNandPath(), $"user/save/{info.SaveDataId:x16}");
|
|
|
|
|
|
|
|
long total_size = GetDirectorySize(saveRoot);
|
|
|
|
long GetDirectorySize(string path)
|
|
|
|
{
|
|
|
|
long size = 0;
|
|
|
|
if (Directory.Exists(path))
|
|
|
|
{
|
|
|
|
var directories = Directory.GetDirectories(path);
|
|
|
|
foreach (var directory in directories)
|
|
|
|
{
|
|
|
|
size += GetDirectorySize(directory);
|
|
|
|
}
|
|
|
|
|
|
|
|
var files = Directory.GetFiles(path);
|
|
|
|
foreach (var file in files)
|
|
|
|
{
|
|
|
|
size += new FileInfo(file).Length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
Size = total_size;
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|