TasMovie - delete unused progress worker

This commit is contained in:
adelikat 2019-11-24 15:35:45 -06:00
parent 7d0b736e8d
commit 6a584c00bd
1 changed files with 0 additions and 18 deletions

View File

@ -14,7 +14,6 @@ namespace BizHawk.Client.Common
{
private readonly Bk2MnemonicConstants _mnemonics = new Bk2MnemonicConstants();
private readonly Dictionary<int, IController> _inputStateCache = new Dictionary<int, IController>();
private BackgroundWorker _progressReportWorker;
public readonly IStringLog VerificationLog = StringLogUtil.MakeStringLog(); // For movies that do not begin with power-on, this is the input required to get into the initial state
public readonly TasBranchCollection Branches = new TasBranchCollection();
@ -49,7 +48,6 @@ namespace BizHawk.Client.Common
: base(path)
{
// TODO: how to call the default constructor AND the base(path) constructor? And is base(path) calling base() ?
_progressReportWorker = progressReportWorker;
if (!Global.Emulator.HasSavestates())
{
throw new InvalidOperationException($"Cannot create a {nameof(TasMovie)} against a core that does not implement {nameof(IStatable)}");
@ -68,7 +66,6 @@ namespace BizHawk.Client.Common
public TasMovie(bool startsFromSavestate = false, BackgroundWorker progressReportWorker = null)
{
_progressReportWorker = progressReportWorker;
if (!Global.Emulator.HasSavestates())
{
throw new InvalidOperationException($"Cannot create a {nameof(TasMovie)} against a core that does not implement {nameof(IStatable)}");
@ -85,21 +82,6 @@ namespace BizHawk.Client.Common
CurrentBranch = -1;
}
public void NewBGWorker(BackgroundWorker newWorker)
{
_progressReportWorker = newWorker;
}
public void ReportProgress(double percent)
{
if (percent > 100d)
{
return;
}
_progressReportWorker?.ReportProgress((int)percent);
}
// TODO: use LogGenerators rather than string comparisons
private int? DivergentPoint(IStringLog currentLog, IStringLog newLog)
{