2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
|
2018-06-11 02:46:42 +02:00
|
|
|
namespace Ryujinx.HLE
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-16 01:06:24 +01:00
|
|
|
class VirtualFileSystem : IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-28 00:45:07 +01:00
|
|
|
private const string BasePath = "RyuFs";
|
|
|
|
private const string NandPath = "nand";
|
|
|
|
private const string SdCardPath = "sdmc";
|
2018-08-04 23:38:49 +02:00
|
|
|
private const string SystemPath = "system";
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
public Stream RomFs { get; private set; }
|
|
|
|
|
|
|
|
public void LoadRomFs(string FileName)
|
|
|
|
{
|
|
|
|
RomFs = new FileStream(FileName, FileMode.Open, FileAccess.Read);
|
|
|
|
}
|
|
|
|
|
2018-02-07 00:28:32 +01:00
|
|
|
public string GetFullPath(string BasePath, string FileName)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-06 21:27:50 +01:00
|
|
|
if (FileName.StartsWith("//"))
|
|
|
|
{
|
|
|
|
FileName = FileName.Substring(2);
|
|
|
|
}
|
|
|
|
else if (FileName.StartsWith('/'))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
FileName = FileName.Substring(1);
|
|
|
|
}
|
2018-03-06 21:27:50 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
string FullPath = Path.GetFullPath(Path.Combine(BasePath, FileName));
|
|
|
|
|
|
|
|
if (!FullPath.StartsWith(GetBasePath()))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FullPath;
|
|
|
|
}
|
|
|
|
|
2018-02-07 00:28:32 +01:00
|
|
|
public string GetSdCardPath() => MakeDirAndGetFullPath(SdCardPath);
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
public string GetGameSavesPath() => MakeDirAndGetFullPath(NandPath);
|
2018-02-07 00:28:32 +01:00
|
|
|
|
2018-08-04 23:38:49 +02:00
|
|
|
public string GetSystemPath() => MakeDirAndGetFullPath(SystemPath);
|
|
|
|
|
2018-07-17 21:14:27 +02:00
|
|
|
public string SwitchPathToSystemPath(string SwitchPath)
|
|
|
|
{
|
|
|
|
string[] Parts = SwitchPath.Split(":");
|
|
|
|
if (Parts.Length != 2)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return GetFullPath(MakeDirAndGetFullPath(Parts[0]), Parts[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public string SystemPathToSwitchPath(string SystemPath)
|
|
|
|
{
|
2018-07-19 20:44:52 +02:00
|
|
|
string BaseSystemPath = GetBasePath() + Path.DirectorySeparatorChar;
|
2018-07-17 21:14:27 +02:00
|
|
|
if (SystemPath.StartsWith(BaseSystemPath))
|
|
|
|
{
|
|
|
|
string RawPath = SystemPath.Replace(BaseSystemPath, "");
|
2018-07-19 20:44:52 +02:00
|
|
|
int FirstSeparatorOffset = RawPath.IndexOf(Path.DirectorySeparatorChar);
|
2018-07-17 21:14:27 +02:00
|
|
|
if (FirstSeparatorOffset == -1)
|
|
|
|
{
|
|
|
|
return $"{RawPath}:/";
|
|
|
|
}
|
|
|
|
|
|
|
|
string BasePath = RawPath.Substring(0, FirstSeparatorOffset);
|
|
|
|
string FileName = RawPath.Substring(FirstSeparatorOffset + 1);
|
|
|
|
return $"{BasePath}:/{FileName}";
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-02-21 22:56:52 +01:00
|
|
|
private string MakeDirAndGetFullPath(string Dir)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-07 00:28:32 +01:00
|
|
|
string FullPath = Path.Combine(GetBasePath(), Dir);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-02-07 00:28:32 +01:00
|
|
|
if (!Directory.Exists(FullPath))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-07 00:28:32 +01:00
|
|
|
Directory.CreateDirectory(FullPath);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-02-07 00:28:32 +01:00
|
|
|
return FullPath;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-02-21 22:56:52 +01:00
|
|
|
public DriveInfo GetDrive()
|
|
|
|
{
|
|
|
|
return new DriveInfo(Path.GetPathRoot(GetBasePath()));
|
|
|
|
}
|
|
|
|
|
|
|
|
public string GetBasePath()
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-28 00:45:07 +01:00
|
|
|
string AppDataPath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
|
|
|
|
|
|
|
return Path.Combine(AppDataPath, BasePath);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
{
|
2018-02-20 11:54:00 +01:00
|
|
|
if (disposing)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-20 11:54:00 +01:00
|
|
|
RomFs?.Dispose();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|