Tastudio - refactor lag log to be a list of frame,bool combinations instead of just a list of bools, note: this changeset reverts the list back to an "off by 1" where it corresponds to the current frame not the next frame, that will be solved in a later commit

This commit is contained in:
adelikat 2014-11-15 14:31:18 +00:00
parent ed8e8508f8
commit 80dae0d026
4 changed files with 79 additions and 32 deletions

View File

@ -1,37 +1,91 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace BizHawk.Client.Common
{
public class TasLagLog : List<bool>
public class TasLagLog
{
private readonly SortedList<int, bool> LagLog = new SortedList<int, bool>();
public bool? this[int frame]
{
get
{
if (LagLog.ContainsKey(frame))
{
return LagLog[frame];
}
return null;
}
set
{
if (!value.HasValue)
{
LagLog.Remove(frame);
}
else if (frame < 0)
{
return; // Nothing to do
}
else if (LagLog.ContainsKey(frame))
{
LagLog[frame] = value.Value;
}
else
{
LagLog.Add(frame, value.Value);
}
}
}
public bool HasLagEntry(int frame)
{
return LagLog.ContainsKey(frame);
}
public void Clear()
{
LagLog.Clear();
}
public void RemoveFrom(int frame)
{
if (frame > 0 && frame <= this.Count)
if (frame > 0 && frame <= LagLog.Count)
{
this.RemoveRange(frame - 1, this.Count - (frame - 1));
for (int i = LagLog.Count - 1; i > frame; i--) // Reverse order because removing from a sorted list re-indexes the items after the removed item
{
LagLog.RemoveAt(i);
}
}
else if (frame == 0)
{
this.Clear();
}
}
public bool? Lagged(int index)
public void Save(BinaryWriter bw)
{
// Hacky but effective, we haven't record the lag information for the current frame yet
if (index == Global.Emulator.Frame - 1)
bw.Write(LagLog.Count);
foreach (var kvp in LagLog)
{
return Global.Emulator.IsLagFrame;
}
if (index < this.Count)
{
return this[index];
bw.Write(kvp.Key);
bw.Write(kvp.Value);
}
}
return null;
public void Load(BinaryReader br)
{
LagLog.Clear();
int length = br.ReadInt32();
for (int i = 0; i < length; i++)
{
LagLog.Add(br.ReadInt32(), br.ReadBoolean());
}
}
}
}

View File

@ -14,11 +14,8 @@ namespace BizHawk.Client.Common
{
base.RecordFrame(frame, source);
if (frame > 0)
{
LagLog.RemoveFrom(frame);
LagLog.Add(Global.Emulator.IsLagFrame);
}
LagLog.RemoveFrom(frame);
LagLog[frame] = Global.Emulator.IsLagFrame;
StateManager.Capture();
}

View File

@ -40,7 +40,7 @@ namespace BizHawk.Client.Common
bs.PutLump(BinaryStateLump.Greenzone, (BinaryWriter bw) => StateManager.Save(bw));
}
bs.PutLump(BinaryStateLump.LagLog, (BinaryWriter bw) => bw.Write(LagLog.ToByteArray()));
bs.PutLump(BinaryStateLump.LagLog, (BinaryWriter bw) => LagLog.Save(bw));
bs.PutLump(BinaryStateLump.Markers, tw => tw.WriteLine(Markers.ToString()));
if (StartsFromSavestate)
@ -163,10 +163,13 @@ namespace BizHawk.Client.Common
}
// TasMovie enhanced information
bl.GetLump(BinaryStateLump.LagLog, false, delegate(BinaryReader br, long length)
if (bl.HasLump(BinaryStateLump.LagLog))
{
LagLog.AddRange(br.ReadBytes((int)length).ToBools());
});
bl.GetLump(BinaryStateLump.LagLog, false, delegate(BinaryReader br, long length)
{
LagLog.Load(br);
});
}
bl.GetLump(BinaryStateLump.GreenzoneSettings, false, delegate(TextReader tr)
{

View File

@ -63,7 +63,7 @@ namespace BizHawk.Client.Common
{
State = StateManager[index],
LogEntry = GetInputLogEntry(index),
Lagged = LagLog.Lagged(index)
Lagged = LagLog[index]
};
}
}
@ -287,16 +287,9 @@ namespace BizHawk.Client.Common
public override IController GetInputState(int frame)
{
if (Global.Emulator.Frame - 1 == frame)
{
if (frame == LagLog.Count) // I intentionally did not do >=, if it were >= we missed some entries somewhere, oops, maybe this shoudl be a dictionary<int, bool> with frame values?
{
LagLog.Add(Global.Emulator.IsLagFrame);
}
}
if (Global.Emulator.Frame == frame) // Take this opportunity to capture lag and state info if we do not have it
if (frame == Global.Emulator.Frame) // Take this opportunity to capture lag and state info if we do not have it
{
LagLog[Global.Emulator.Frame] = Global.Emulator.IsLagFrame;
if (!StateManager.HasState(frame))
{