From cda9203ca592ac964ed47f639706a5dcfd0679dc Mon Sep 17 00:00:00 2001 From: adelikat Date: Fri, 5 Dec 2014 00:17:34 +0000 Subject: [PATCH] Forgot to add these files --- .../Base Implementations/TraceBuffer.cs | 39 +++++++++++++++++++ BizHawk.Emulation.Common/Extensions.cs | 5 +++ .../Interfaces/ITracer.cs | 30 ++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 BizHawk.Emulation.Common/Base Implementations/TraceBuffer.cs create mode 100644 BizHawk.Emulation.Common/Interfaces/ITracer.cs diff --git a/BizHawk.Emulation.Common/Base Implementations/TraceBuffer.cs b/BizHawk.Emulation.Common/Base Implementations/TraceBuffer.cs new file mode 100644 index 0000000000..d823f4a426 --- /dev/null +++ b/BizHawk.Emulation.Common/Base Implementations/TraceBuffer.cs @@ -0,0 +1,39 @@ +using System.Text; + +namespace BizHawk.Emulation.Common +{ + public class TraceBuffer : ITracer + { + private readonly StringBuilder buffer; + + public TraceBuffer() + { + buffer = new StringBuilder(); + Header = "Instructions"; + } + + public string TakeContents() + { + string s = buffer.ToString(); + buffer.Clear(); + return s; + } + + public string Contents + { + get { return buffer.ToString(); } + } + + public void Put(string content) + { + if (Enabled) + { + buffer.AppendLine(content); + } + } + + public bool Enabled { get; set; } + + public string Header { get; set; } + } +} diff --git a/BizHawk.Emulation.Common/Extensions.cs b/BizHawk.Emulation.Common/Extensions.cs index 2eeb188551..48563a1d26 100644 --- a/BizHawk.Emulation.Common/Extensions.cs +++ b/BizHawk.Emulation.Common/Extensions.cs @@ -22,6 +22,11 @@ namespace BizHawk.Emulation.Common.IEmulatorExtensions return core != null && core.ServiceProvider.HasService(); } + public static IMemoryDomains GetMemoryDomains(this IEmulator core) + { + return (IMemoryDomains)core.ServiceProvider.GetService(); + } + public static bool HasSaveRam(this IEmulator core) { return core != null && core.ServiceProvider.HasService(); diff --git a/BizHawk.Emulation.Common/Interfaces/ITracer.cs b/BizHawk.Emulation.Common/Interfaces/ITracer.cs new file mode 100644 index 0000000000..58af3ed8ab --- /dev/null +++ b/BizHawk.Emulation.Common/Interfaces/ITracer.cs @@ -0,0 +1,30 @@ +namespace BizHawk.Emulation.Common +{ + /// + /// Allows the cpu to dump trace info to a trace stream + /// + public interface ITracer + { + bool Enabled { get; set; } + + /// + /// The header that would be used by a trace logger + /// + string Header { get; set; } + + /// + /// The current log of cpu instructions + /// + string Contents { get; } + + /// + /// Takes the current log of cpu instructions, when doing so, it will clear the contents from the buffer + /// + string TakeContents(); + + /// + /// Adds contents to the log of cpu instructions + /// + void Put(string content); + } +}