aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/FileSystem/ContentPath.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.HLE/FileSystem/ContentPath.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'Ryujinx.HLE/FileSystem/ContentPath.cs')
-rw-r--r--Ryujinx.HLE/FileSystem/ContentPath.cs82
1 files changed, 0 insertions, 82 deletions
diff --git a/Ryujinx.HLE/FileSystem/ContentPath.cs b/Ryujinx.HLE/FileSystem/ContentPath.cs
deleted file mode 100644
index c8663081..00000000
--- a/Ryujinx.HLE/FileSystem/ContentPath.cs
+++ /dev/null
@@ -1,82 +0,0 @@
-using LibHac.Fs;
-using LibHac.Ncm;
-using Ryujinx.Common.Configuration;
-using System;
-
-using static Ryujinx.HLE.FileSystem.VirtualFileSystem;
-using Path = System.IO.Path;
-
-namespace Ryujinx.HLE.FileSystem
-{
- internal static class ContentPath
- {
- public const string SystemContent = "@SystemContent";
- public const string UserContent = "@UserContent";
- public const string SdCardContent = "@SdCardContent";
- public const string SdCard = "@Sdcard";
- public const string CalibFile = "@CalibFile";
- public const string Safe = "@Safe";
- public const string User = "@User";
- public const string System = "@System";
- public const string Host = "@Host";
- public const string GamecardApp = "@GcApp";
- public const string GamecardContents = "@GcS00000001";
- public const string GamecardUpdate = "@upp";
- public const string RegisteredUpdate = "@RegUpdate";
-
- public const string Nintendo = "Nintendo";
- public const string Contents = "Contents";
-
- public static string GetRealPath(VirtualFileSystem fileSystem, string switchContentPath)
- {
- return switchContentPath switch
- {
- SystemContent => Path.Combine(AppDataManager.BaseDirPath, SystemNandPath, Contents),
- UserContent => Path.Combine(AppDataManager.BaseDirPath, UserNandPath, Contents),
- SdCardContent => Path.Combine(fileSystem.GetSdCardPath(), Nintendo, Contents),
- System => Path.Combine(AppDataManager.BaseDirPath, SystemNandPath),
- User => Path.Combine(AppDataManager.BaseDirPath, UserNandPath),
- _ => throw new NotSupportedException($"Content Path \"`{switchContentPath}`\" is not supported.")
- };
- }
-
- public static string GetContentPath(ContentStorageId contentStorageId)
- {
- return contentStorageId switch
- {
- ContentStorageId.System => SystemContent,
- ContentStorageId.User => UserContent,
- ContentStorageId.SdCard => SdCardContent,
- _ => throw new NotSupportedException($"Content Storage Id \"`{contentStorageId}`\" is not supported.")
- };
- }
-
- public static string GetContentPath(StorageId storageId)
- {
- return storageId switch
- {
- StorageId.BuiltInSystem => SystemContent,
- StorageId.BuiltInUser => UserContent,
- StorageId.SdCard => SdCardContent,
- _ => throw new NotSupportedException($"Storage Id \"`{storageId}`\" is not supported.")
- };
- }
-
- public static StorageId GetStorageId(string contentPathString)
- {
- return contentPathString.Split(':')[0] switch
- {
- SystemContent or
- System => StorageId.BuiltInSystem,
- UserContent or
- User => StorageId.BuiltInUser,
- SdCardContent => StorageId.SdCard,
- Host => StorageId.Host,
- GamecardApp or
- GamecardContents or
- GamecardUpdate => StorageId.GameCard,
- _ => StorageId.None
- };
- }
- }
-} \ No newline at end of file