BizHawk/BizHawk.Client.Common/CoreFileProvider.cs

143 lines
3.5 KiB
C#
Raw Normal View History

2013-10-25 00:59:34 +00:00
using System;
using System.IO;
using BizHawk.Emulation.Common;
2013-10-25 00:59:34 +00:00
namespace BizHawk.Client.Common
{
public class CoreFileProvider : ICoreFileProvider
{
2014-01-08 03:53:53 +00:00
public string SubfileDirectory { get; set; }
public FirmwareManager FirmwareManager { get; set; }
2013-10-25 00:59:34 +00:00
2014-01-08 03:53:53 +00:00
private readonly Action<string> _showWarning;
public CoreFileProvider(Action<string> showWarning)
{
2014-01-08 03:53:53 +00:00
_showWarning = showWarning;
}
2013-10-25 00:59:34 +00:00
public string PathSubfile(string fname)
{
2015-04-21 23:50:15 +00:00
return Path.Combine(SubfileDirectory ?? String.Empty, fname);
2013-10-25 00:59:34 +00:00
}
public string DllPath()
{
return Path.Combine(PathManager.GetExeDirectoryAbsolute(), "dll");
}
2015-11-06 14:31:50 +00:00
public string GetSaveRAMPath()
{
return PathManager.SaveRamPath(Global.Game);
}
public string GetRetroSaveRAMDirectory()
{
return PathManager.RetroSaveRAMDirectory(Global.Game);
}
public string GetRetroSystemPath()
{
return PathManager.RetroSystemPath(Global.Game);
}
public string GetGameBasePath()
{
return PathManager.GetGameBasePath(Global.Game);
}
#region EmuLoadHelper api
2014-01-08 03:53:53 +00:00
private void FirmwareWarn(string sysID, string firmwareID, bool required, string msg = null)
{
if (required)
{
2014-01-08 03:53:53 +00:00
var fullmsg = String.Format(
"Couldn't find required firmware \"{0}:{1}\". This is fatal{2}", sysID, firmwareID, msg != null ? ": " + msg : ".");
2014-07-31 21:40:25 +00:00
throw new MissingFirmwareException(fullmsg);
}
2014-07-03 18:17:09 +00:00
if (msg != null)
{
2014-07-03 18:17:09 +00:00
var fullmsg = String.Format(
"Couldn't find firmware \"{0}:{1}\". Will attempt to continue: {2}", sysID, firmwareID, msg);
_showWarning(fullmsg);
}
}
public string GetFirmwarePath(string sysID, string firmwareID, bool required, string msg = null)
{
2014-01-08 03:53:53 +00:00
var path = FirmwareManager.Request(sysID, firmwareID);
if (path != null && !File.Exists(path))
2014-01-08 03:53:53 +00:00
{
path = null;
2014-01-08 03:53:53 +00:00
}
if (path == null)
2014-01-08 03:53:53 +00:00
{
FirmwareWarn(sysID, firmwareID, required, msg);
2014-01-08 03:53:53 +00:00
}
return path;
}
private byte[] GetFirmwareWithPath(string sysID, string firmwareID, bool required, string msg, out string path)
{
byte[] ret = null;
var path_ = GetFirmwarePath(sysID, firmwareID, required, msg);
if (path_ != null && File.Exists(path_))
{
try
{
ret = File.ReadAllBytes(path_);
}
catch (IOException) { }
}
if (ret == null && path_ != null)
2014-01-08 03:53:53 +00:00
{
FirmwareWarn(sysID, firmwareID, required, msg);
2014-01-08 03:53:53 +00:00
}
path = path_;
return ret;
}
public byte[] GetFirmware(string sysID, string firmwareID, bool required, string msg = null)
{
string unused;
return GetFirmwareWithPath(sysID, firmwareID, required, msg, out unused);
}
public byte[] GetFirmwareWithGameInfo(string sysID, string firmwareID, bool required, out GameInfo gi, string msg = null)
{
string path;
byte[] ret = GetFirmwareWithPath(sysID, firmwareID, required, msg, out path);
if (ret != null && path != null)
{
gi = Database.GetGameInfo(ret, path);
}
else
{
gi = null;
}
return ret;
}
#endregion
// this should go away now
public static void SyncCoreCommInputSignals(CoreComm target)
{
2015-04-21 23:50:15 +00:00
string superhack = null;
if (target.CoreFileProvider != null && target.CoreFileProvider is CoreFileProvider)
superhack = ((CoreFileProvider)target.CoreFileProvider ).SubfileDirectory;
var cfp = new CoreFileProvider(target.ShowMessage);
2015-04-21 23:50:15 +00:00
cfp.SubfileDirectory = superhack;
target.CoreFileProvider = cfp;
cfp.FirmwareManager = Global.FirmwareManager;
}
2013-10-25 00:59:34 +00:00
}
}