2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
namespace Ryujinx.Core
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
class VirtualFs : IDisposable
|
|
|
|
{
|
2018-02-07 00:28:32 +01:00
|
|
|
private const string BasePath = "Fs";
|
|
|
|
private const string SavesPath = "Saves";
|
|
|
|
private const string SdCardPath = "SdCard";
|
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
|
|
|
{
|
|
|
|
if (FileName.StartsWith('/'))
|
|
|
|
{
|
|
|
|
FileName = FileName.Substring(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
public string GetGameSavesPath() => MakeDirAndGetFullPath(SavesPath);
|
|
|
|
|
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
|
|
|
{
|
|
|
|
return Path.Combine(Directory.GetCurrentDirectory(), BasePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|