Debugger - implement the Seek To button

This commit is contained in:
adelikat 2015-01-21 02:12:59 +00:00
parent a272050c71
commit 4b2d116738
4 changed files with 52 additions and 2 deletions

View File

@ -33,6 +33,22 @@ namespace BizHawk.Client.EmuHawk
private bool _active;
private readonly IDebuggable _core;
public Breakpoint(bool readOnly, IDebuggable core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true)
{
_core = core;
Callback = callBack;
Address = address;
Active = enabled;
Name = "Pause";
ReadOnly = readOnly;
if (enabled)
{
AddCallback();
}
}
public Breakpoint(IDebuggable core, Action callBack, uint address, MemoryCallbackType type, bool enabled = true)
{
_core = core;

View File

@ -7,6 +7,7 @@ using System.Linq;
using System.Text;
using System.Windows.Forms;
using BizHawk.Common.NumberExtensions;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.IEmulatorExtensions;
using BizHawk.Client.Common;
@ -65,11 +66,25 @@ namespace BizHawk.Client.EmuHawk.tools.Debugger
UpdateValues();
}
private void SeekCallback()
{
BreakpointCallback();
var seekBreakpoint = Breakpoints.FirstOrDefault(x => x.Name.StartsWith(SeekName));
if (seekBreakpoint != null)
{
Breakpoints.Remove(seekBreakpoint);
UpdateValues();
}
}
public void UpdateValues()
{
if (this.Enabled)
if (Enabled)
{
BreakpointView.ItemCount = Breakpoints.Count;
UpdateStatsLabel();
}
}
@ -118,6 +133,16 @@ namespace BizHawk.Client.EmuHawk.tools.Debugger
UpdateStatsLabel();
}
private const string SeekName = "Seek to PC ";
public void AddSeekBreakpoint(uint pcVal, int pcBitSize)
{
Breakpoints.Add(new Breakpoint(true, Core, SeekCallback, pcVal, MemoryCallbackType.Execute)
{
Name = SeekName + pcVal.ToHexString(pcBitSize / 4)
});
}
private IEnumerable<int> SelectedIndices
{
get { return BreakpointView.SelectedIndices.Cast<int>(); }

View File

@ -275,6 +275,7 @@
this.SeekToBtn.TabIndex = 13;
this.SeekToBtn.Text = "Seek To:";
this.SeekToBtn.UseVisualStyleBackColor = true;
this.SeekToBtn.Click += new System.EventHandler(this.SeekToBtn_Click);
//
// SeekToBox
//

View File

@ -263,5 +263,13 @@ namespace BizHawk.Client.EmuHawk
_currentToolTipControl = null;
}
}
private void SeekToBtn_Click(object sender, EventArgs e)
{
var pcVal = (uint)(SeekToBox.ToRawInt() ?? 0);
var pcBitSize = Debuggable.GetCpuFlagsAndRegisters()["PC"].BitSize;
BreakPointControl1.AddSeekBreakpoint(pcVal, pcBitSize);
BreakPointControl1.UpdateValues();
}
}
}