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-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-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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|