Ryujinx/Ryujinx.Core/VirtualFileSystem.cs

85 lines
2.1 KiB
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
using System.IO;
namespace Ryujinx.Core
2018-02-05 00:08:20 +01:00
{
class VirtualFileSystem : IDisposable
2018-02-05 00:08:20 +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);
}
public string GetFullPath(string BasePath, string FileName)
2018-02-05 00:08:20 +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);
}
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;
}
public string GetSdCardPath() => MakeDirAndGetFullPath(SdCardPath);
public string GetGameSavesPath() => MakeDirAndGetFullPath(NandPath);
private string MakeDirAndGetFullPath(string Dir)
2018-02-05 00:08:20 +01:00
{
string FullPath = Path.Combine(GetBasePath(), Dir);
2018-02-05 00:08:20 +01:00
if (!Directory.Exists(FullPath))
2018-02-05 00:08:20 +01:00
{
Directory.CreateDirectory(FullPath);
2018-02-05 00:08:20 +01:00
}
return FullPath;
2018-02-05 00:08:20 +01:00
}
public DriveInfo GetDrive()
{
return new DriveInfo(Path.GetPathRoot(GetBasePath()));
}
public string GetBasePath()
2018-02-05 00:08:20 +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)
{
if (disposing)
2018-02-05 00:08:20 +01:00
{
RomFs?.Dispose();
2018-02-05 00:08:20 +01:00
}
}
}
}