2020-08-30 18:51:53 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
|
|
{
|
|
|
|
public static class AppDataManager
|
|
|
|
{
|
2021-03-15 22:10:36 +01:00
|
|
|
public const string DefaultBaseDir = "Ryujinx";
|
|
|
|
public const string DefaultPortableDir = "portable";
|
2020-08-30 18:51:53 +02:00
|
|
|
|
|
|
|
// The following 3 are always part of Base Directory
|
|
|
|
private const string GamesDir = "games";
|
|
|
|
private const string ProfilesDir = "profiles";
|
|
|
|
private const string KeysDir = "system";
|
|
|
|
|
2021-03-15 22:10:36 +01:00
|
|
|
public enum LaunchMode
|
|
|
|
{
|
|
|
|
UserProfile,
|
|
|
|
Portable,
|
|
|
|
Custom
|
|
|
|
}
|
|
|
|
|
|
|
|
public static LaunchMode Mode { get; private set; }
|
|
|
|
|
2020-08-30 18:51:53 +02:00
|
|
|
public static string BaseDirPath { get; private set; }
|
|
|
|
public static string GamesDirPath { get; private set; }
|
|
|
|
public static string ProfilesDirPath { get; private set; }
|
|
|
|
public static string KeysDirPath { get; private set; }
|
2021-03-15 22:10:36 +01:00
|
|
|
public static string KeysDirPathUser { get; }
|
2020-08-30 18:51:53 +02:00
|
|
|
|
|
|
|
public const string DefaultNandDir = "bis";
|
|
|
|
public const string DefaultSdcardDir = "sdcard";
|
|
|
|
private const string DefaultModsDir = "mods";
|
|
|
|
|
|
|
|
public static string CustomModsPath { get; set; }
|
2022-03-06 22:12:01 +01:00
|
|
|
public static string CustomSdModsPath {get; set; }
|
2020-08-30 18:51:53 +02:00
|
|
|
public static string CustomNandPath { get; set; } // TODO: Actually implement this into VFS
|
|
|
|
public static string CustomSdCardPath { get; set; } // TODO: Actually implement this into VFS
|
|
|
|
|
|
|
|
static AppDataManager()
|
|
|
|
{
|
2021-03-15 22:10:36 +01:00
|
|
|
KeysDirPathUser = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".switch");
|
2020-08-30 18:51:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void Initialize(string baseDirPath)
|
|
|
|
{
|
2021-03-15 22:10:36 +01:00
|
|
|
string userProfilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), DefaultBaseDir);
|
|
|
|
string portablePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, DefaultPortableDir);
|
2020-08-30 18:51:53 +02:00
|
|
|
|
2021-03-15 22:10:36 +01:00
|
|
|
if (Directory.Exists(portablePath))
|
|
|
|
{
|
|
|
|
BaseDirPath = portablePath;
|
|
|
|
Mode = LaunchMode.Portable;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BaseDirPath = userProfilePath;
|
|
|
|
Mode = LaunchMode.UserProfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (baseDirPath != null && baseDirPath != userProfilePath)
|
2020-08-30 18:51:53 +02:00
|
|
|
{
|
|
|
|
if (!Directory.Exists(baseDirPath))
|
|
|
|
{
|
2021-03-15 22:10:36 +01:00
|
|
|
Logger.Error?.Print(LogClass.Application, $"Custom Data Directory '{baseDirPath}' does not exist. Falling back to {Mode}...");
|
2020-08-30 18:51:53 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BaseDirPath = baseDirPath;
|
2021-03-15 22:10:36 +01:00
|
|
|
Mode = LaunchMode.Custom;
|
2020-08-30 18:51:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 22:10:36 +01:00
|
|
|
BaseDirPath = Path.GetFullPath(BaseDirPath); // convert relative paths
|
|
|
|
|
2020-08-30 18:51:53 +02:00
|
|
|
SetupBasePaths();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void SetupBasePaths()
|
|
|
|
{
|
|
|
|
Directory.CreateDirectory(BaseDirPath);
|
|
|
|
Directory.CreateDirectory(GamesDirPath = Path.Combine(BaseDirPath, GamesDir));
|
|
|
|
Directory.CreateDirectory(ProfilesDirPath = Path.Combine(BaseDirPath, ProfilesDir));
|
|
|
|
Directory.CreateDirectory(KeysDirPath = Path.Combine(BaseDirPath, KeysDir));
|
|
|
|
}
|
|
|
|
|
2022-03-06 22:12:01 +01:00
|
|
|
public static string GetModsPath() => CustomModsPath ?? Directory.CreateDirectory(Path.Combine(BaseDirPath, DefaultModsDir)).FullName;
|
|
|
|
public static string GetSdModsPath() => CustomSdModsPath ?? Directory.CreateDirectory(Path.Combine(BaseDirPath, DefaultSdcardDir, "atmosphere")).FullName;
|
2020-08-30 18:51:53 +02:00
|
|
|
}
|
|
|
|
}
|