From 894a9c2318f24c417f494a0a545be7d9692cd9f5 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 30 Jan 2016 20:24:30 -0500 Subject: [PATCH] Rework ToolHelpers from a static object to ToolFormBase that inherits form and have a lot of tools inherit it, in hopes of moving a lot of copy pasta into a base class, move a few functions that show up a lot there --- BizHawk.Client.EmuHawk/MainForm.Events.cs | 2 +- BizHawk.Client.EmuHawk/MainForm.cs | 8 +- .../tools/BasicBot/BasicBot.cs | 2626 ++++++++--------- BizHawk.Client.EmuHawk/tools/CDL.cs | 16 +- BizHawk.Client.EmuHawk/tools/Cheats/Cheats.cs | 50 +- .../tools/HexEditor/HexEditor.cs | 4 +- .../tools/Lua/LuaConsole.Designer.cs | 2 +- .../tools/Lua/LuaConsole.cs | 38 +- .../tools/TAStudio/TAStudio.Designer.cs | 2 +- .../tools/TAStudio/TAStudio.MenuItems.cs | 8 +- .../tools/TAStudio/TAStudio.cs | 5 +- BizHawk.Client.EmuHawk/tools/ToolHelpers.cs | 32 +- .../tools/Watch/RamSearch.Designer.cs | 4 +- .../tools/Watch/RamSearch.cs | 48 +- .../tools/Watch/RamWatch.Designer.cs | 4 +- .../tools/Watch/RamWatch.cs | 49 +- 16 files changed, 1400 insertions(+), 1498 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.Events.cs b/BizHawk.Client.EmuHawk/MainForm.Events.cs index e6d325e048..3d26d7fccd 100644 --- a/BizHawk.Client.EmuHawk/MainForm.Events.cs +++ b/BizHawk.Client.EmuHawk/MainForm.Events.cs @@ -560,7 +560,7 @@ namespace BizHawk.Client.EmuHawk filename = PathManager.FilesystemSafeName(Global.Game); } - var file = ToolHelpers.SaveFileDialog( + var file = ToolFormBase.SaveFileDialog( filename, PathManager.MakeAbsolutePath(Global.Config.PathEntries.MoviesPathFragment, null), "Movie Files", diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 9d224d2a07..e51ea9effb 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -50,7 +50,7 @@ namespace BizHawk.Client.EmuHawk PlayRecordStatusButton.Visible = false; AVIStatusLabel.Visible = false; SetPauseStatusbarIcon(); - ToolHelpers.UpdateCheatRelatedTools(null, null); + ToolFormBase.UpdateCheatRelatedTools(null, null); RebootStatusBarIcon.Visible = false; UpdateNotification.Visible = false; StatusBarDiskLightOnImage = Properties.Resources.LightOn; @@ -123,7 +123,7 @@ namespace BizHawk.Client.EmuHawk _throttle = new Throttle(); Global.CheatList = new CheatCollection(); - Global.CheatList.Changed += ToolHelpers.UpdateCheatRelatedTools; + Global.CheatList.Changed += ToolFormBase.UpdateCheatRelatedTools; UpdateStatusSlots(); UpdateKeyPriorityIcon(); @@ -3465,7 +3465,7 @@ namespace BizHawk.Client.EmuHawk Global.AutofireStickyXORAdapter.ClearStickies(); RewireSound(); - ToolHelpers.UpdateCheatRelatedTools(null, null); + ToolFormBase.UpdateCheatRelatedTools(null, null); if (Global.Config.AutoLoadLastSaveSlot && _stateSlots.HasSlot(Global.Config.SaveSlot)) { LoadQuickSave("QuickSave" + Global.Config.SaveSlot); @@ -3594,7 +3594,7 @@ namespace BizHawk.Client.EmuHawk UpdateCoreStatusBarButton(); ClearHolds(); PauseOnFrame = null; - ToolHelpers.UpdateCheatRelatedTools(null, null); + ToolFormBase.UpdateCheatRelatedTools(null, null); UpdateStatusSlots(); CurrentlyOpenRom = null; CurrentlyOpenRomArgs = null; diff --git a/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs b/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs index 7069bc71fb..cf7b7b6903 100644 --- a/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs +++ b/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs @@ -1,780 +1,780 @@ -using System; -using System.Collections.Generic; -using System.Drawing; -using System.IO; -using System.Linq; -using System.Text; -using System.Windows.Forms; -using BizHawk.Client.EmuHawk.ToolExtensions; - -using BizHawk.Emulation.Common; -using BizHawk.Client.Common; - -namespace BizHawk.Client.EmuHawk -{ - public partial class BasicBot : Form , IToolFormAutoConfig - { - private const string DialogTitle = "Basic Bot"; - - private string _currentFileName = string.Empty; - - private string CurrentFileName - { - get { return _currentFileName; } - set - { - _currentFileName = value; - - if (!string.IsNullOrWhiteSpace(_currentFileName)) - { - Text = DialogTitle + " - " + Path.GetFileNameWithoutExtension(_currentFileName); - } - else - { - Text = DialogTitle; - } - } - - } - - private bool _isBotting = false; - private long _attempts = 1; - private long _frames = 0; - private int _targetFrame = 0; - private bool _oldCountingSetting = false; - private BotAttempt _currentBotAttempt = null; - private BotAttempt _bestBotAttempt = null; - private BotAttempt _comparisonBotAttempt = null; - private bool _replayMode = false; - private int _startFrame = 0; - private string _lastRom = string.Empty; - - private bool _dontUpdateValues = false; - - private MemoryDomain _currentDomain; - private bool _bigEndian; - private int _dataSize; - - private Dictionary _cachedControlProbabilities; - private ILogEntryGenerator _logGenerator; - - #region Services and Settings - - [RequiredService] - private IEmulator Emulator { get; set; } - - // Unused, due to the use of MainForm to loadstate, but this needs to be kept here in order to establish an IStatable dependency - [RequiredService] - private IStatable StatableCore { get; set; } - - [RequiredService] - private IMemoryDomains MemoryDomains { get; set; } - - [ConfigPersist] - public BasicBotSettings Settings { get; set; } - - public class BasicBotSettings - { - public BasicBotSettings() - { - RecentBotFiles = new RecentFiles(); - TurboWhenBotting = true; - } - - public RecentFiles RecentBotFiles { get; set; } - public bool TurboWhenBotting { get; set; } - } - - #endregion - - #region Initialize - - public BasicBot() - { - InitializeComponent(); - Text = DialogTitle; - Settings = new BasicBotSettings(); - - _comparisonBotAttempt = new BotAttempt(); - } - - private void BasicBot_Load(object sender, EventArgs e) - { - - } - - #endregion - - #region UI Bindings - - private Dictionary ControlProbabilities - { - get - { - return ControlProbabilityPanel.Controls - .OfType() - .ToDictionary(tkey => tkey.ButtonName, tvalue => tvalue.Probability); - } - } - - private string SelectedSlot - { - get - { - char num = StartFromSlotBox.SelectedItem - .ToString() - .Last(); - - return "QuickSave" + num; - } - } - - private long Attempts - { - get { return _attempts; } - set - { - _attempts = value; - AttemptsLabel.Text = _attempts.ToString(); - } - } - - private long Frames - { - get { return _frames; } - set - { - _frames = value; - FramesLabel.Text = _frames.ToString(); - } - } - - private int FrameLength - { - get { return (int)FrameLengthNumeric.Value; } - set { FrameLengthNumeric.Value = value; } - } - - public int MaximizeAddress - { - get - { - int? addr = MaximizeAddressBox.ToRawInt(); - if (addr.HasValue) - { - return addr.Value; - } - - return 0; - } - - set - { - MaximizeAddressBox.SetFromRawInt(value); - } - } - - public int MaximizeValue - { - get - { - int? addr = MaximizeAddressBox.ToRawInt(); - if (addr.HasValue) - { - return GetRamvalue(addr.Value); - } - - return 0; - } - } - - public int TieBreaker1Address - { - get - { - int? addr = TieBreaker1Box.ToRawInt(); - if (addr.HasValue) - { - return addr.Value; - } - - return 0; - } - - set - { - TieBreaker1Box.SetFromRawInt(value); - } - } - - public int TieBreaker1Value - { - get - { - int? addr = TieBreaker1Box.ToRawInt(); - if (addr.HasValue) - { - return GetRamvalue(addr.Value); - } - - return 0; - } - } - - public int TieBreaker2Address - { - get - { - int? addr = TieBreaker2Box.ToRawInt(); - if (addr.HasValue) - { - return addr.Value; - } - - return 0; - } - - set - { - TieBreaker2Box.SetFromRawInt(value); - } - } - - public int TieBreaker2Value - { - get - { - int? addr = TieBreaker2Box.ToRawInt(); - if (addr.HasValue) - { - return GetRamvalue(addr.Value); - } - - return 0; - } - } - - public int TieBreaker3Address - { - get - { - int? addr = TieBreaker3Box.ToRawInt(); - if (addr.HasValue) - { - return addr.Value; - } - - return 0; - } - - set - { - TieBreaker3Box.SetFromRawInt(value); - } - } - - public int TieBreaker3Value - { - get - { - int? addr = TieBreaker3Box.ToRawInt(); - if (addr.HasValue) - { - return GetRamvalue(addr.Value); - } - - return 0; - } - } - - public byte MainComparisonType - { - get - { - return (byte)MainOperator.SelectedIndex; - } - set - { - if (value < 5) MainOperator.SelectedIndex = value; - else MainOperator.SelectedIndex = 0; - } - } - - public byte Tie1ComparisonType - { - get - { - return (byte)Tiebreak1Operator.SelectedIndex; - } - set - { - if (value < 5) Tiebreak1Operator.SelectedIndex = value; - else Tiebreak1Operator.SelectedIndex = 0; - } - } - - public byte Tie2ComparisonType - { - get - { - return (byte)Tiebreak2Operator.SelectedIndex; - } - set - { - if (value < 5) Tiebreak2Operator.SelectedIndex = value; - else Tiebreak2Operator.SelectedIndex = 0; - } - } - - public byte Tie3ComparisonType - { - get - { - return (byte)Tiebreak3Operator.SelectedIndex; - } - set - { - if (value < 5) Tiebreak3Operator.SelectedIndex = value; - else Tiebreak3Operator.SelectedIndex = 0; - } - } - - public string FromSlot - { - get - { - return StartFromSlotBox.SelectedItem != null - ? StartFromSlotBox.SelectedItem.ToString() - : string.Empty; - } - - set - { - var item = StartFromSlotBox.Items. - OfType() - .FirstOrDefault(o => o.ToString() == value); - - if (item != null) - { - StartFromSlotBox.SelectedItem = item; - } - else - { - StartFromSlotBox.SelectedItem = null; - } - } - } - - #endregion - - #region IToolForm Implementation - - public bool UpdateBefore { get { return true; } } - - public void UpdateValues() - { - Update(fast: false); - } - - public void FastUpdate() - { - Update(fast: true); - } - - public void Restart() - { - if (_currentDomain == null || - MemoryDomains.Contains(_currentDomain)) - { - _currentDomain = MemoryDomains.MainMemory; - _bigEndian = _currentDomain.EndianType == MemoryDomain.Endian.Big; - _dataSize = 1; - } - - if (_isBotting) - { - StopBot(); - } - else if (_replayMode) - { - FinishReplay(); - } - - - if (_lastRom != GlobalWin.MainForm.CurrentlyOpenRom) - { - _lastRom = GlobalWin.MainForm.CurrentlyOpenRom; - SetupControlsAndProperties(); - } - } - - public bool AskSaveChanges() - { - return true; - } - - #endregion - - #region Control Events - - #region FileMenu - - private void FileSubMenu_DropDownOpened(object sender, EventArgs e) - { - SaveMenuItem.Enabled = !string.IsNullOrWhiteSpace(CurrentFileName); - } - - private void RecentSubMenu_DropDownOpened(object sender, EventArgs e) - { - RecentSubMenu.DropDownItems.Clear(); - RecentSubMenu.DropDownItems.AddRange( - Settings.RecentBotFiles.RecentMenu(LoadFileFromRecent, true)); - } - - private void NewMenuItem_Click(object sender, EventArgs e) - { - CurrentFileName = string.Empty; - _bestBotAttempt = null; - - ControlProbabilityPanel.Controls - .OfType() - .ToList() - .ForEach(cp => cp.Probability = 0); - - FrameLength = 0; - MaximizeAddress = 0; - TieBreaker1Address = 0; - TieBreaker2Address = 0; - TieBreaker3Address = 0; - StartFromSlotBox.SelectedIndex = 0; - MainOperator.SelectedIndex = 0; - Tiebreak1Operator.SelectedIndex = 0; - Tiebreak2Operator.SelectedIndex = 0; - Tiebreak3Operator.SelectedIndex = 0; - MainBestRadio.Checked = true; - MainValueNumeric.Value = 0; - TieBreak1Numeric.Value = 0; - TieBreak2Numeric.Value = 0; - TieBreak3Numeric.Value = 0; - TieBreak1BestRadio.Checked = true; - TieBreak2BestRadio.Checked = true; - TieBreak3BestRadio.Checked = true; - - UpdateBestAttempt(); - UpdateComparisonBotAttempt(); - } - - private void OpenMenuItem_Click(object sender, EventArgs e) - { - var file = ToolHelpers.OpenFileDialog( - CurrentFileName, - PathManager.GetRomsPath(Global.Game.System), // TODO: bot path - "Bot files", - "bot" - ); - - if (file != null) - { - LoadBotFile(file.FullName); - } - } - - private void SaveMenuItem_Click(object sender, EventArgs e) - { - if (!string.IsNullOrWhiteSpace(CurrentFileName)) - { - SaveBotFile(CurrentFileName); - } - } - - private void SaveAsMenuItem_Click(object sender, EventArgs e) - { - var file = ToolHelpers.SaveFileDialog( - CurrentFileName, - PathManager.GetRomsPath(Global.Game.System), // TODO: bot path - "Bot files", - "bot" - ); - - if (file != null) - { - SaveBotFile(file.FullName); - _currentFileName = file.FullName; - } - } - - private void ExitMenuItem_Click(object sender, EventArgs e) - { - Close(); - } - - #endregion - - #region Options Menu - - private void OptionsSubMenu_DropDownOpened(object sender, EventArgs e) - { - TurboWhileBottingMenuItem.Checked = Settings.TurboWhenBotting; - BigEndianMenuItem.Checked = _bigEndian; - } - - private void MemoryDomainsMenuItem_DropDownOpened(object sender, EventArgs e) - { - MemoryDomainsMenuItem.DropDownItems.Clear(); - MemoryDomainsMenuItem.DropDownItems.AddRange( - MemoryDomains.MenuItems(SetMemoryDomain, _currentDomain.Name) - .ToArray()); - } - - private void BigEndianMenuItem_Click(object sender, EventArgs e) - { - _bigEndian ^= true; - } - - private void DataSizeMenuItem_DropDownOpened(object sender, EventArgs e) - { - _1ByteMenuItem.Checked = _dataSize == 1; - _2ByteMenuItem.Checked = _dataSize == 2; - _4ByteMenuItem.Checked = _dataSize == 4; - } - - private void _1ByteMenuItem_Click(object sender, EventArgs e) - { - _dataSize = 1; - } - - private void _2ByteMenuItem_Click(object sender, EventArgs e) - { - _dataSize = 2; - } - - private void _4ByteMenuItem_Click(object sender, EventArgs e) - { - _dataSize = 4; - } - - private void TurboWhileBottingMenuItem_Click(object sender, EventArgs e) - { - Settings.TurboWhenBotting ^= true; - } - - #endregion - - private void RunBtn_Click(object sender, EventArgs e) - { - StartBot(); - } - - private void StopBtn_Click(object sender, EventArgs e) - { - StopBot(); - } - - private void ClearBestButton_Click(object sender, EventArgs e) - { - _bestBotAttempt = null; - Attempts = 0; - Frames = 0; - UpdateBestAttempt(); - UpdateComparisonBotAttempt(); - } - - private void PlayBestButton_Click(object sender, EventArgs e) - { - StopBot(); - _replayMode = true; - _dontUpdateValues = true; - GlobalWin.MainForm.LoadQuickSave(SelectedSlot, false, true); // Triggers an UpdateValues call - _dontUpdateValues = false; - _startFrame = Emulator.Frame; - SetNormalSpeed(); - UpdateBotStatusIcon(); - MessageLabel.Text = "Replaying"; - GlobalWin.MainForm.UnpauseEmulator(); - } - - private void FrameLengthNumeric_ValueChanged(object sender, EventArgs e) - { - AssessRunButtonStatus(); - } - - private void ClearStatsContextMenuItem_Click(object sender, EventArgs e) - { - Attempts = 0; - Frames = 0; - } - - #endregion - - #region Classes - - private class BotAttempt - { - public BotAttempt() - { - Log = new List(); - } - - public long Attempt { get; set; } - public int Maximize { get; set; } - public int TieBreak1 { get; set; } - public int TieBreak2 { get; set; } - public int TieBreak3 { get; set; } - public byte ComparisonTypeMain { get; set; } - public byte ComparisonTypeTie1 { get; set; } - public byte ComparisonTypeTie2 { get; set; } - public byte ComparisonTypeTie3 { get; set; } - - public List Log { get; set; } - } - - private class BotData - { - public BotData() - { - MainCompareToBest = true; - TieBreaker1CompareToBest = true; - TieBreaker2CompareToBest = true; - TieBreaker3CompareToBest = true; - } - - public BotAttempt Best { get; set; } - public Dictionary ControlProbabilities { get; set; } - public int Maximize { get; set; } - public int TieBreaker1 { get; set; } - public int TieBreaker2 { get; set; } - public int TieBreaker3 { get; set; } - public byte ComparisonTypeMain { get; set; } - public byte ComparisonTypeTie1 { get; set; } - public byte ComparisonTypeTie2 { get; set; } - public byte ComparisonTypeTie3 { get; set; } - public bool MainCompareToBest { get; set; } - public bool TieBreaker1CompareToBest { get; set; } - public bool TieBreaker2CompareToBest { get; set; } - public bool TieBreaker3CompareToBest { get; set; } - public int MainCompareToValue { get; set; } - public int TieBreaker1CompareToValue { get; set; } - public int TieBreaker2CompareToValue { get; set; } - public int TieBreaker3CompareToValue { get; set; } - public int FrameLength { get; set; } - public string FromSlot { get; set; } - public long Attempts { get; set; } - public long Frames { get; set; } - - public string MemoryDomain { get; set; } - public bool BigEndian { get; set; } - public int DataSize { get; set; } - } - - #endregion - - #region File Handling - - private void LoadFileFromRecent(string path) - { - var result = LoadBotFile(path); - if (!result) - { - Settings.RecentBotFiles.HandleLoadError(path); - } - } - - private bool LoadBotFile(string path) - { - var file = new FileInfo(path); - if (!file.Exists) - { - return false; - } - - var json = File.ReadAllText(path); - var botData = (BotData)ConfigService.LoadWithType(json); - - _bestBotAttempt = botData.Best; - - var probabilityControls = ControlProbabilityPanel.Controls - .OfType() - .ToList(); - - foreach (var kvp in botData.ControlProbabilities) - { - var control = probabilityControls.Single(c => c.ButtonName == kvp.Key); - control.Probability = kvp.Value; - } - - MaximizeAddress = botData.Maximize; - TieBreaker1Address = botData.TieBreaker1; - TieBreaker2Address = botData.TieBreaker2; - TieBreaker3Address = botData.TieBreaker3; - try - { - MainComparisonType = botData.ComparisonTypeMain; - Tie1ComparisonType = botData.ComparisonTypeTie1; - Tie2ComparisonType = botData.ComparisonTypeTie2; - Tie3ComparisonType = botData.ComparisonTypeTie3; - - MainBestRadio.Checked = botData.MainCompareToBest; - TieBreak1BestRadio.Checked = botData.TieBreaker1CompareToBest; - TieBreak2BestRadio.Checked = botData.TieBreaker2CompareToBest; - TieBreak3BestRadio.Checked = botData.TieBreaker3CompareToBest; - MainValueRadio.Checked = !botData.MainCompareToBest; - TieBreak1ValueRadio.Checked = !botData.TieBreaker1CompareToBest; - TieBreak2ValueRadio.Checked = !botData.TieBreaker2CompareToBest; - TieBreak3ValueRadio.Checked = !botData.TieBreaker3CompareToBest; - - MainValueNumeric.Value = botData.MainCompareToValue; - TieBreak1Numeric.Value = botData.TieBreaker1CompareToValue; - TieBreak2Numeric.Value = botData.TieBreaker2CompareToValue; - TieBreak3Numeric.Value = botData.TieBreaker3CompareToValue; - } - catch - { - MainComparisonType = 0; - Tie1ComparisonType = 0; - Tie2ComparisonType = 0; - Tie3ComparisonType = 0; - - MainBestRadio.Checked = true; - TieBreak1BestRadio.Checked = true; - TieBreak2BestRadio.Checked = true; - TieBreak3BestRadio.Checked = true; - MainBestRadio.Checked = false; - TieBreak1BestRadio.Checked = false; - TieBreak2BestRadio.Checked = false; - TieBreak3BestRadio.Checked = false; - - MainValueNumeric.Value = 0; - TieBreak1Numeric.Value = 0; - TieBreak2Numeric.Value = 0; - TieBreak3Numeric.Value = 0; - } - FrameLength = botData.FrameLength; - FromSlot = botData.FromSlot; - Attempts = botData.Attempts; - Frames = botData.Frames; - - _currentDomain = !string.IsNullOrWhiteSpace(botData.MemoryDomain) - ? MemoryDomains[botData.MemoryDomain] - : MemoryDomains.MainMemory; - - _bigEndian = botData.BigEndian; - _dataSize = botData.DataSize > 0 ? botData.DataSize : 1; - - UpdateBestAttempt(); - UpdateComparisonBotAttempt(); - - if (_bestBotAttempt != null) - { - PlayBestButton.Enabled = true; - } - - CurrentFileName = path; - Settings.RecentBotFiles.Add(CurrentFileName); - MessageLabel.Text = Path.GetFileNameWithoutExtension(path) + " loaded"; - - return true; - } - +using System; +using System.Collections.Generic; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using BizHawk.Client.EmuHawk.ToolExtensions; + +using BizHawk.Emulation.Common; +using BizHawk.Client.Common; + +namespace BizHawk.Client.EmuHawk +{ + public partial class BasicBot : ToolFormBase , IToolFormAutoConfig + { + private const string DialogTitle = "Basic Bot"; + + private string _currentFileName = string.Empty; + + private string CurrentFileName + { + get { return _currentFileName; } + set + { + _currentFileName = value; + + if (!string.IsNullOrWhiteSpace(_currentFileName)) + { + Text = DialogTitle + " - " + Path.GetFileNameWithoutExtension(_currentFileName); + } + else + { + Text = DialogTitle; + } + } + + } + + private bool _isBotting = false; + private long _attempts = 1; + private long _frames = 0; + private int _targetFrame = 0; + private bool _oldCountingSetting = false; + private BotAttempt _currentBotAttempt = null; + private BotAttempt _bestBotAttempt = null; + private BotAttempt _comparisonBotAttempt = null; + private bool _replayMode = false; + private int _startFrame = 0; + private string _lastRom = string.Empty; + + private bool _dontUpdateValues = false; + + private MemoryDomain _currentDomain; + private bool _bigEndian; + private int _dataSize; + + private Dictionary _cachedControlProbabilities; + private ILogEntryGenerator _logGenerator; + + #region Services and Settings + + [RequiredService] + private IEmulator Emulator { get; set; } + + // Unused, due to the use of MainForm to loadstate, but this needs to be kept here in order to establish an IStatable dependency + [RequiredService] + private IStatable StatableCore { get; set; } + + [RequiredService] + private IMemoryDomains MemoryDomains { get; set; } + + [ConfigPersist] + public BasicBotSettings Settings { get; set; } + + public class BasicBotSettings + { + public BasicBotSettings() + { + RecentBotFiles = new RecentFiles(); + TurboWhenBotting = true; + } + + public RecentFiles RecentBotFiles { get; set; } + public bool TurboWhenBotting { get; set; } + } + + #endregion + + #region Initialize + + public BasicBot() + { + InitializeComponent(); + Text = DialogTitle; + Settings = new BasicBotSettings(); + + _comparisonBotAttempt = new BotAttempt(); + } + + private void BasicBot_Load(object sender, EventArgs e) + { + + } + + #endregion + + #region UI Bindings + + private Dictionary ControlProbabilities + { + get + { + return ControlProbabilityPanel.Controls + .OfType() + .ToDictionary(tkey => tkey.ButtonName, tvalue => tvalue.Probability); + } + } + + private string SelectedSlot + { + get + { + char num = StartFromSlotBox.SelectedItem + .ToString() + .Last(); + + return "QuickSave" + num; + } + } + + private long Attempts + { + get { return _attempts; } + set + { + _attempts = value; + AttemptsLabel.Text = _attempts.ToString(); + } + } + + private long Frames + { + get { return _frames; } + set + { + _frames = value; + FramesLabel.Text = _frames.ToString(); + } + } + + private int FrameLength + { + get { return (int)FrameLengthNumeric.Value; } + set { FrameLengthNumeric.Value = value; } + } + + public int MaximizeAddress + { + get + { + int? addr = MaximizeAddressBox.ToRawInt(); + if (addr.HasValue) + { + return addr.Value; + } + + return 0; + } + + set + { + MaximizeAddressBox.SetFromRawInt(value); + } + } + + public int MaximizeValue + { + get + { + int? addr = MaximizeAddressBox.ToRawInt(); + if (addr.HasValue) + { + return GetRamvalue(addr.Value); + } + + return 0; + } + } + + public int TieBreaker1Address + { + get + { + int? addr = TieBreaker1Box.ToRawInt(); + if (addr.HasValue) + { + return addr.Value; + } + + return 0; + } + + set + { + TieBreaker1Box.SetFromRawInt(value); + } + } + + public int TieBreaker1Value + { + get + { + int? addr = TieBreaker1Box.ToRawInt(); + if (addr.HasValue) + { + return GetRamvalue(addr.Value); + } + + return 0; + } + } + + public int TieBreaker2Address + { + get + { + int? addr = TieBreaker2Box.ToRawInt(); + if (addr.HasValue) + { + return addr.Value; + } + + return 0; + } + + set + { + TieBreaker2Box.SetFromRawInt(value); + } + } + + public int TieBreaker2Value + { + get + { + int? addr = TieBreaker2Box.ToRawInt(); + if (addr.HasValue) + { + return GetRamvalue(addr.Value); + } + + return 0; + } + } + + public int TieBreaker3Address + { + get + { + int? addr = TieBreaker3Box.ToRawInt(); + if (addr.HasValue) + { + return addr.Value; + } + + return 0; + } + + set + { + TieBreaker3Box.SetFromRawInt(value); + } + } + + public int TieBreaker3Value + { + get + { + int? addr = TieBreaker3Box.ToRawInt(); + if (addr.HasValue) + { + return GetRamvalue(addr.Value); + } + + return 0; + } + } + + public byte MainComparisonType + { + get + { + return (byte)MainOperator.SelectedIndex; + } + set + { + if (value < 5) MainOperator.SelectedIndex = value; + else MainOperator.SelectedIndex = 0; + } + } + + public byte Tie1ComparisonType + { + get + { + return (byte)Tiebreak1Operator.SelectedIndex; + } + set + { + if (value < 5) Tiebreak1Operator.SelectedIndex = value; + else Tiebreak1Operator.SelectedIndex = 0; + } + } + + public byte Tie2ComparisonType + { + get + { + return (byte)Tiebreak2Operator.SelectedIndex; + } + set + { + if (value < 5) Tiebreak2Operator.SelectedIndex = value; + else Tiebreak2Operator.SelectedIndex = 0; + } + } + + public byte Tie3ComparisonType + { + get + { + return (byte)Tiebreak3Operator.SelectedIndex; + } + set + { + if (value < 5) Tiebreak3Operator.SelectedIndex = value; + else Tiebreak3Operator.SelectedIndex = 0; + } + } + + public string FromSlot + { + get + { + return StartFromSlotBox.SelectedItem != null + ? StartFromSlotBox.SelectedItem.ToString() + : string.Empty; + } + + set + { + var item = StartFromSlotBox.Items. + OfType() + .FirstOrDefault(o => o.ToString() == value); + + if (item != null) + { + StartFromSlotBox.SelectedItem = item; + } + else + { + StartFromSlotBox.SelectedItem = null; + } + } + } + + #endregion + + #region IToolForm Implementation + + public bool UpdateBefore { get { return true; } } + + public void UpdateValues() + { + Update(fast: false); + } + + public void FastUpdate() + { + Update(fast: true); + } + + public void Restart() + { + if (_currentDomain == null || + MemoryDomains.Contains(_currentDomain)) + { + _currentDomain = MemoryDomains.MainMemory; + _bigEndian = _currentDomain.EndianType == MemoryDomain.Endian.Big; + _dataSize = 1; + } + + if (_isBotting) + { + StopBot(); + } + else if (_replayMode) + { + FinishReplay(); + } + + + if (_lastRom != GlobalWin.MainForm.CurrentlyOpenRom) + { + _lastRom = GlobalWin.MainForm.CurrentlyOpenRom; + SetupControlsAndProperties(); + } + } + + public bool AskSaveChanges() + { + return true; + } + + #endregion + + #region Control Events + + #region FileMenu + + private void FileSubMenu_DropDownOpened(object sender, EventArgs e) + { + SaveMenuItem.Enabled = !string.IsNullOrWhiteSpace(CurrentFileName); + } + + private void RecentSubMenu_DropDownOpened(object sender, EventArgs e) + { + RecentSubMenu.DropDownItems.Clear(); + RecentSubMenu.DropDownItems.AddRange( + Settings.RecentBotFiles.RecentMenu(LoadFileFromRecent, true)); + } + + private void NewMenuItem_Click(object sender, EventArgs e) + { + CurrentFileName = string.Empty; + _bestBotAttempt = null; + + ControlProbabilityPanel.Controls + .OfType() + .ToList() + .ForEach(cp => cp.Probability = 0); + + FrameLength = 0; + MaximizeAddress = 0; + TieBreaker1Address = 0; + TieBreaker2Address = 0; + TieBreaker3Address = 0; + StartFromSlotBox.SelectedIndex = 0; + MainOperator.SelectedIndex = 0; + Tiebreak1Operator.SelectedIndex = 0; + Tiebreak2Operator.SelectedIndex = 0; + Tiebreak3Operator.SelectedIndex = 0; + MainBestRadio.Checked = true; + MainValueNumeric.Value = 0; + TieBreak1Numeric.Value = 0; + TieBreak2Numeric.Value = 0; + TieBreak3Numeric.Value = 0; + TieBreak1BestRadio.Checked = true; + TieBreak2BestRadio.Checked = true; + TieBreak3BestRadio.Checked = true; + + UpdateBestAttempt(); + UpdateComparisonBotAttempt(); + } + + private void OpenMenuItem_Click(object sender, EventArgs e) + { + var file = OpenFileDialog( + CurrentFileName, + PathManager.GetRomsPath(Global.Game.System), // TODO: bot path + "Bot files", + "bot" + ); + + if (file != null) + { + LoadBotFile(file.FullName); + } + } + + private void SaveMenuItem_Click(object sender, EventArgs e) + { + if (!string.IsNullOrWhiteSpace(CurrentFileName)) + { + SaveBotFile(CurrentFileName); + } + } + + private void SaveAsMenuItem_Click(object sender, EventArgs e) + { + var file = SaveFileDialog( + CurrentFileName, + PathManager.GetRomsPath(Global.Game.System), // TODO: bot path + "Bot files", + "bot" + ); + + if (file != null) + { + SaveBotFile(file.FullName); + _currentFileName = file.FullName; + } + } + + private void ExitMenuItem_Click(object sender, EventArgs e) + { + Close(); + } + + #endregion + + #region Options Menu + + private void OptionsSubMenu_DropDownOpened(object sender, EventArgs e) + { + TurboWhileBottingMenuItem.Checked = Settings.TurboWhenBotting; + BigEndianMenuItem.Checked = _bigEndian; + } + + private void MemoryDomainsMenuItem_DropDownOpened(object sender, EventArgs e) + { + MemoryDomainsMenuItem.DropDownItems.Clear(); + MemoryDomainsMenuItem.DropDownItems.AddRange( + MemoryDomains.MenuItems(SetMemoryDomain, _currentDomain.Name) + .ToArray()); + } + + private void BigEndianMenuItem_Click(object sender, EventArgs e) + { + _bigEndian ^= true; + } + + private void DataSizeMenuItem_DropDownOpened(object sender, EventArgs e) + { + _1ByteMenuItem.Checked = _dataSize == 1; + _2ByteMenuItem.Checked = _dataSize == 2; + _4ByteMenuItem.Checked = _dataSize == 4; + } + + private void _1ByteMenuItem_Click(object sender, EventArgs e) + { + _dataSize = 1; + } + + private void _2ByteMenuItem_Click(object sender, EventArgs e) + { + _dataSize = 2; + } + + private void _4ByteMenuItem_Click(object sender, EventArgs e) + { + _dataSize = 4; + } + + private void TurboWhileBottingMenuItem_Click(object sender, EventArgs e) + { + Settings.TurboWhenBotting ^= true; + } + + #endregion + + private void RunBtn_Click(object sender, EventArgs e) + { + StartBot(); + } + + private void StopBtn_Click(object sender, EventArgs e) + { + StopBot(); + } + + private void ClearBestButton_Click(object sender, EventArgs e) + { + _bestBotAttempt = null; + Attempts = 0; + Frames = 0; + UpdateBestAttempt(); + UpdateComparisonBotAttempt(); + } + + private void PlayBestButton_Click(object sender, EventArgs e) + { + StopBot(); + _replayMode = true; + _dontUpdateValues = true; + GlobalWin.MainForm.LoadQuickSave(SelectedSlot, false, true); // Triggers an UpdateValues call + _dontUpdateValues = false; + _startFrame = Emulator.Frame; + SetNormalSpeed(); + UpdateBotStatusIcon(); + MessageLabel.Text = "Replaying"; + GlobalWin.MainForm.UnpauseEmulator(); + } + + private void FrameLengthNumeric_ValueChanged(object sender, EventArgs e) + { + AssessRunButtonStatus(); + } + + private void ClearStatsContextMenuItem_Click(object sender, EventArgs e) + { + Attempts = 0; + Frames = 0; + } + + #endregion + + #region Classes + + private class BotAttempt + { + public BotAttempt() + { + Log = new List(); + } + + public long Attempt { get; set; } + public int Maximize { get; set; } + public int TieBreak1 { get; set; } + public int TieBreak2 { get; set; } + public int TieBreak3 { get; set; } + public byte ComparisonTypeMain { get; set; } + public byte ComparisonTypeTie1 { get; set; } + public byte ComparisonTypeTie2 { get; set; } + public byte ComparisonTypeTie3 { get; set; } + + public List Log { get; set; } + } + + private class BotData + { + public BotData() + { + MainCompareToBest = true; + TieBreaker1CompareToBest = true; + TieBreaker2CompareToBest = true; + TieBreaker3CompareToBest = true; + } + + public BotAttempt Best { get; set; } + public Dictionary ControlProbabilities { get; set; } + public int Maximize { get; set; } + public int TieBreaker1 { get; set; } + public int TieBreaker2 { get; set; } + public int TieBreaker3 { get; set; } + public byte ComparisonTypeMain { get; set; } + public byte ComparisonTypeTie1 { get; set; } + public byte ComparisonTypeTie2 { get; set; } + public byte ComparisonTypeTie3 { get; set; } + public bool MainCompareToBest { get; set; } + public bool TieBreaker1CompareToBest { get; set; } + public bool TieBreaker2CompareToBest { get; set; } + public bool TieBreaker3CompareToBest { get; set; } + public int MainCompareToValue { get; set; } + public int TieBreaker1CompareToValue { get; set; } + public int TieBreaker2CompareToValue { get; set; } + public int TieBreaker3CompareToValue { get; set; } + public int FrameLength { get; set; } + public string FromSlot { get; set; } + public long Attempts { get; set; } + public long Frames { get; set; } + + public string MemoryDomain { get; set; } + public bool BigEndian { get; set; } + public int DataSize { get; set; } + } + + #endregion + + #region File Handling + + private void LoadFileFromRecent(string path) + { + var result = LoadBotFile(path); + if (!result) + { + Settings.RecentBotFiles.HandleLoadError(path); + } + } + + private bool LoadBotFile(string path) + { + var file = new FileInfo(path); + if (!file.Exists) + { + return false; + } + + var json = File.ReadAllText(path); + var botData = (BotData)ConfigService.LoadWithType(json); + + _bestBotAttempt = botData.Best; + + var probabilityControls = ControlProbabilityPanel.Controls + .OfType() + .ToList(); + + foreach (var kvp in botData.ControlProbabilities) + { + var control = probabilityControls.Single(c => c.ButtonName == kvp.Key); + control.Probability = kvp.Value; + } + + MaximizeAddress = botData.Maximize; + TieBreaker1Address = botData.TieBreaker1; + TieBreaker2Address = botData.TieBreaker2; + TieBreaker3Address = botData.TieBreaker3; + try + { + MainComparisonType = botData.ComparisonTypeMain; + Tie1ComparisonType = botData.ComparisonTypeTie1; + Tie2ComparisonType = botData.ComparisonTypeTie2; + Tie3ComparisonType = botData.ComparisonTypeTie3; + + MainBestRadio.Checked = botData.MainCompareToBest; + TieBreak1BestRadio.Checked = botData.TieBreaker1CompareToBest; + TieBreak2BestRadio.Checked = botData.TieBreaker2CompareToBest; + TieBreak3BestRadio.Checked = botData.TieBreaker3CompareToBest; + MainValueRadio.Checked = !botData.MainCompareToBest; + TieBreak1ValueRadio.Checked = !botData.TieBreaker1CompareToBest; + TieBreak2ValueRadio.Checked = !botData.TieBreaker2CompareToBest; + TieBreak3ValueRadio.Checked = !botData.TieBreaker3CompareToBest; + + MainValueNumeric.Value = botData.MainCompareToValue; + TieBreak1Numeric.Value = botData.TieBreaker1CompareToValue; + TieBreak2Numeric.Value = botData.TieBreaker2CompareToValue; + TieBreak3Numeric.Value = botData.TieBreaker3CompareToValue; + } + catch + { + MainComparisonType = 0; + Tie1ComparisonType = 0; + Tie2ComparisonType = 0; + Tie3ComparisonType = 0; + + MainBestRadio.Checked = true; + TieBreak1BestRadio.Checked = true; + TieBreak2BestRadio.Checked = true; + TieBreak3BestRadio.Checked = true; + MainBestRadio.Checked = false; + TieBreak1BestRadio.Checked = false; + TieBreak2BestRadio.Checked = false; + TieBreak3BestRadio.Checked = false; + + MainValueNumeric.Value = 0; + TieBreak1Numeric.Value = 0; + TieBreak2Numeric.Value = 0; + TieBreak3Numeric.Value = 0; + } + FrameLength = botData.FrameLength; + FromSlot = botData.FromSlot; + Attempts = botData.Attempts; + Frames = botData.Frames; + + _currentDomain = !string.IsNullOrWhiteSpace(botData.MemoryDomain) + ? MemoryDomains[botData.MemoryDomain] + : MemoryDomains.MainMemory; + + _bigEndian = botData.BigEndian; + _dataSize = botData.DataSize > 0 ? botData.DataSize : 1; + + UpdateBestAttempt(); + UpdateComparisonBotAttempt(); + + if (_bestBotAttempt != null) + { + PlayBestButton.Enabled = true; + } + + CurrentFileName = path; + Settings.RecentBotFiles.Add(CurrentFileName); + MessageLabel.Text = Path.GetFileNameWithoutExtension(path) + " loaded"; + + return true; + } + private void SaveBotFile(string path) { var data = new BotData @@ -788,539 +788,539 @@ namespace BizHawk.Client.EmuHawk ComparisonTypeMain = MainComparisonType, ComparisonTypeTie1 = Tie1ComparisonType, ComparisonTypeTie2 = Tie2ComparisonType, - ComparisonTypeTie3 = Tie3ComparisonType, - MainCompareToBest = MainBestRadio.Checked, - TieBreaker1CompareToBest = TieBreak1BestRadio.Checked, - TieBreaker2CompareToBest = TieBreak2BestRadio.Checked, - TieBreaker3CompareToBest = TieBreak3BestRadio.Checked, - MainCompareToValue = (int)MainValueNumeric.Value, - TieBreaker1CompareToValue = (int)TieBreak1Numeric.Value, - TieBreaker2CompareToValue = (int)TieBreak2Numeric.Value, - TieBreaker3CompareToValue = (int)TieBreak3Numeric.Value, - FromSlot = FromSlot, - FrameLength = FrameLength, - Attempts = Attempts, - Frames = Frames, - MemoryDomain = _currentDomain.Name, - BigEndian = _bigEndian, - DataSize = _dataSize - }; - - var json = ConfigService.SaveWithType(data); - - File.WriteAllText(path, json); - CurrentFileName = path; - Settings.RecentBotFiles.Add(CurrentFileName); - MessageLabel.Text = Path.GetFileName(CurrentFileName) + " saved"; - } - - #endregion - - private void SetupControlsAndProperties() - { - MaximizeAddressBox.SetHexProperties(MemoryDomains.MainMemory.Size); - TieBreaker1Box.SetHexProperties(MemoryDomains.MainMemory.Size); - TieBreaker2Box.SetHexProperties(MemoryDomains.MainMemory.Size); - TieBreaker3Box.SetHexProperties(MemoryDomains.MainMemory.Size); - - StartFromSlotBox.SelectedIndex = 0; - - int starty = 0; - int accumulatedy = 0; - int lineHeight = 30; - int marginLeft = 15; - int count = 0; - - ControlProbabilityPanel.Controls.Clear(); - - foreach (var button in Emulator.ControllerDefinition.BoolButtons) - { - var control = new BotControlsRow - { - ButtonName = button, - Probability = 0.0, - Location = new Point(marginLeft, starty + accumulatedy), - TabIndex = count + 1, - ProbabilityChangedCallback = AssessRunButtonStatus - }; - - ControlProbabilityPanel.Controls.Add(control); - accumulatedy += lineHeight; - count++; - } - - if (Settings.RecentBotFiles.AutoLoad) - { - LoadFileFromRecent(Settings.RecentBotFiles.MostRecent); - } - - UpdateBotStatusIcon(); - } - - private void SetMemoryDomain(string name) - { - _currentDomain = MemoryDomains[name]; - _bigEndian = MemoryDomains[name].EndianType == MemoryDomain.Endian.Big; - } - - private int GetRamvalue(int addr) - { - int val; - switch (_dataSize) - { - default: - case 1: - val = _currentDomain.PeekByte(addr); - break; - case 2: - val = _currentDomain.PeekWord(addr, _bigEndian); - break; - case 4: - val = (int)_currentDomain.PeekDWord(addr, _bigEndian); - break; - } - - return val; - } - - private void Update(bool fast) - { - if (_dontUpdateValues) - { - return; - } - - if (_replayMode) - { - int index = Emulator.Frame - _startFrame; - - if (index < _bestBotAttempt.Log.Count) - { - var logEntry = _bestBotAttempt.Log[index]; - var lg = Global.MovieSession.MovieControllerInstance(); - lg.SetControllersAsMnemonic(logEntry); - - foreach (var button in lg.Type.BoolButtons) - { - // TODO: make an input adapter specifically for the bot? - Global.LuaAndAdaptor.SetButton(button, lg.IsPressed(button)); - } - } - else - { - FinishReplay(); - } - } - else if (_isBotting) - { - if (Global.Emulator.Frame >= _targetFrame) - { - Attempts++; - Frames += FrameLength; - - _currentBotAttempt.Maximize = MaximizeValue; - _currentBotAttempt.TieBreak1 = TieBreaker1Value; - _currentBotAttempt.TieBreak2 = TieBreaker2Value; - _currentBotAttempt.TieBreak3 = TieBreaker3Value; - PlayBestButton.Enabled = true; - - if (IsBetter(_comparisonBotAttempt, _currentBotAttempt)) - { - _bestBotAttempt = _currentBotAttempt; - UpdateBestAttempt(); - } - - _currentBotAttempt = new BotAttempt { Attempt = Attempts }; - GlobalWin.MainForm.LoadQuickSave(SelectedSlot, false, true); - } - - PressButtons(); - } - } - - private void FinishReplay() - { - GlobalWin.MainForm.PauseEmulator(); - _startFrame = 0; - _replayMode = false; - UpdateBotStatusIcon(); - MessageLabel.Text = "Replay stopped"; - } - - private bool IsBetter(BotAttempt comparison, BotAttempt current) - { - if (!TestValue(MainComparisonType, current.Maximize, comparison.Maximize)) - { - return false; - } - else if (current.Maximize == comparison.Maximize) - { - if (!TestValue(Tie1ComparisonType, current.TieBreak1, comparison.TieBreak1)) - { - return false; - } - else if (current.TieBreak1 == comparison.TieBreak1) - { - if (!TestValue(Tie2ComparisonType, current.TieBreak2, comparison.TieBreak2)) - { - return false; - } - else if (current.TieBreak2 == comparison.TieBreak2) - { - if (!TestValue(Tie3ComparisonType, current.TieBreak3, current.TieBreak3)) - { - return false; - } - } - } - } - - return true; - } - - private bool TestValue(byte operation, int currentValue, int bestValue) - { - switch (operation) - { - case 0: - return currentValue > bestValue; - case 1: - return currentValue >= bestValue; - case 2: - return currentValue == bestValue; - case 3: - return currentValue <= bestValue; - case 4: - return currentValue < bestValue; - } - return false; - } - - private void UpdateBestAttempt() - { - if (_bestBotAttempt != null) - { - ClearBestButton.Enabled = true; - BestAttemptNumberLabel.Text = _bestBotAttempt.Attempt.ToString(); - BestMaximizeBox.Text = _bestBotAttempt.Maximize.ToString(); - BestTieBreak1Box.Text = _bestBotAttempt.TieBreak1.ToString(); - BestTieBreak2Box.Text = _bestBotAttempt.TieBreak2.ToString(); - BestTieBreak3Box.Text = _bestBotAttempt.TieBreak3.ToString(); - - var sb = new StringBuilder(); - foreach (var logEntry in _bestBotAttempt.Log) - { - sb.AppendLine(logEntry); - } - BestAttemptLogLabel.Text = sb.ToString(); - PlayBestButton.Enabled = true; - } - else - { - ClearBestButton.Enabled = false; - BestAttemptNumberLabel.Text = string.Empty; - BestMaximizeBox.Text = string.Empty; - BestTieBreak1Box.Text = string.Empty; - BestTieBreak2Box.Text = string.Empty; - BestTieBreak3Box.Text = string.Empty; - BestAttemptLogLabel.Text = string.Empty; - PlayBestButton.Enabled = false; - } - } - - private void PressButtons() - { - var rand = new Random((int)DateTime.Now.Ticks); - - var buttonLog = new Dictionary(); - - foreach (var button in Emulator.ControllerDefinition.BoolButtons) - { - double probability = _cachedControlProbabilities[button]; - bool pressed = !(rand.Next(100) < probability); - - buttonLog.Add(button, pressed); - Global.ClickyVirtualPadController.SetBool(button, pressed); - } - - _currentBotAttempt.Log.Add(_logGenerator.GenerateLogEntry()); - } - - private void StartBot() - { - if (!CanStart()) - { - MessageBox.Show("Unable to run with current settings"); - return; - } - - _isBotting = true; - ControlsBox.Enabled = false; - StartFromSlotBox.Enabled = false; - RunBtn.Visible = false; - StopBtn.Visible = true; - GoalGroupBox.Enabled = false; - _currentBotAttempt = new BotAttempt { Attempt = Attempts }; - - if (Global.MovieSession.Movie.IsRecording) - { - _oldCountingSetting = Global.MovieSession.Movie.IsCountingRerecords; - Global.MovieSession.Movie.IsCountingRerecords = false; - } - - _dontUpdateValues = true; - GlobalWin.MainForm.LoadQuickSave(SelectedSlot, false, true); // Triggers an UpdateValues call - _dontUpdateValues = false; - - _targetFrame = Global.Emulator.Frame + (int)FrameLengthNumeric.Value; - - GlobalWin.MainForm.UnpauseEmulator(); - if (Settings.TurboWhenBotting) - { - SetMaxSpeed(); - } - - UpdateBotStatusIcon(); - MessageLabel.Text = "Running..."; - _cachedControlProbabilities = ControlProbabilities; - _logGenerator = Global.MovieSession.LogGeneratorInstance(); - _logGenerator.SetSource(Global.ClickyVirtualPadController); - } - - private bool CanStart() - { - if (!ControlProbabilities.Any(cp => cp.Value > 0)) - { - return false; - } - - if (!MaximizeAddressBox.ToRawInt().HasValue) - { - return false; - } - - if (FrameLengthNumeric.Value == 0) - { - return false; - } - - return true; - } - - private void StopBot() - { - RunBtn.Visible = true; - StopBtn.Visible = false; - _isBotting = false; - _targetFrame = 0; - ControlsBox.Enabled = true; - StartFromSlotBox.Enabled = true; - _targetFrame = 0; - _currentBotAttempt = null; - GoalGroupBox.Enabled = true; - - if (Global.MovieSession.Movie.IsRecording) - { - Global.MovieSession.Movie.IsCountingRerecords = _oldCountingSetting; - } - - GlobalWin.MainForm.PauseEmulator(); - SetNormalSpeed(); - UpdateBotStatusIcon(); - MessageLabel.Text = "Bot stopped"; - } - - private void UpdateBotStatusIcon() - { - if (_replayMode) - { - BotStatusButton.Image = Properties.Resources.Play; - BotStatusButton.ToolTipText = "Replaying best result"; - } - else if (_isBotting) - { - BotStatusButton.Image = Properties.Resources.RecordHS; - BotStatusButton.ToolTipText = "Botting in progress"; - } - else - { - BotStatusButton.Image = Properties.Resources.Pause; - BotStatusButton.ToolTipText = "Bot is currently not running"; - } - } - - private void SetMaxSpeed() - { - GlobalWin.MainForm.Unthrottle(); - } - - private void SetNormalSpeed() - { - GlobalWin.MainForm.Throttle(); - } - - private void AssessRunButtonStatus() - { - RunBtn.Enabled = - FrameLength > 0 - && !string.IsNullOrWhiteSpace(MaximizeAddressBox.Text) - && ControlProbabilities.Any(kvp => kvp.Value > 0); - } - - /// - /// Updates comparison bot attempt with current best bot attempt values for values where the "best" radio button is selected - /// - private void UpdateComparisonBotAttempt() - { - if(_bestBotAttempt == null) - { - if (MainBestRadio.Checked) - { - _comparisonBotAttempt.Maximize = 0; - } - - if (TieBreak1BestRadio.Checked) - { - _comparisonBotAttempt.TieBreak1 = 0; - } - - if (TieBreak2BestRadio.Checked) - { - _comparisonBotAttempt.TieBreak2= 0; - } - - if (TieBreak3BestRadio.Checked) - { - _comparisonBotAttempt.TieBreak3 = 0; - } - } - else - { - if (MainBestRadio.Checked && _bestBotAttempt.Maximize != _comparisonBotAttempt.Maximize) - { - _comparisonBotAttempt.Maximize = _bestBotAttempt.Maximize; - } - - if (TieBreak1BestRadio.Checked && _bestBotAttempt.TieBreak1 != _comparisonBotAttempt.TieBreak1) - { - _comparisonBotAttempt.TieBreak1 = _bestBotAttempt.TieBreak1; - } - - if (TieBreak2BestRadio.Checked && _bestBotAttempt.TieBreak2 != _comparisonBotAttempt.TieBreak2) - { - _comparisonBotAttempt.TieBreak2 = _bestBotAttempt.TieBreak2; - } - - if (TieBreak3BestRadio.Checked && _bestBotAttempt.TieBreak3 != _comparisonBotAttempt.TieBreak3) - { - _comparisonBotAttempt.TieBreak3 = _bestBotAttempt.TieBreak3; - } - } - } - - private void MainBestRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.MainValueNumeric.Enabled = false; - _comparisonBotAttempt.Maximize = _bestBotAttempt == null ? 0 : _bestBotAttempt.Maximize; - } - } - - private void Tiebreak1BestRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.TieBreak1Numeric.Enabled = false; - _comparisonBotAttempt.TieBreak1 = _bestBotAttempt == null ? 0 : _bestBotAttempt.TieBreak1; - } - } - - private void Tiebreak2BestRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.TieBreak2Numeric.Enabled = false; - _comparisonBotAttempt.TieBreak2 = _bestBotAttempt == null ? 0 : _bestBotAttempt.TieBreak2; - } - } - - private void Tiebreak3BestRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.TieBreak3Numeric.Enabled = false; - _comparisonBotAttempt.TieBreak3 = _bestBotAttempt == null ? 0 : _bestBotAttempt.TieBreak3; - } - } - - private void MainValueRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.MainValueNumeric.Enabled = true; - _comparisonBotAttempt.Maximize = (int)this.MainValueNumeric.Value; - } - } - - private void TieBreak1ValueRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.TieBreak1Numeric.Enabled = true; - _comparisonBotAttempt.TieBreak1 = (int)this.TieBreak1Numeric.Value; - } - } - - private void TieBreak2ValueRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.TieBreak2Numeric.Enabled = true; - _comparisonBotAttempt.TieBreak2 = (int)this.TieBreak2Numeric.Value; - } - } - - private void TieBreak3ValueRadio_CheckedChanged(object sender, EventArgs e) - { - RadioButton radioButton = (RadioButton)sender; - if (radioButton.Checked) - { - this.TieBreak3Numeric.Enabled = true; - _comparisonBotAttempt.TieBreak3 = (int)this.TieBreak3Numeric.Value; - } - } - - private void MainValueNumeric_ValueChanged(object sender, EventArgs e) - { - NumericUpDown numericUpDown = (NumericUpDown)sender; - this._comparisonBotAttempt.Maximize = (int)numericUpDown.Value; - } - - private void TieBreak1Numeric_ValueChanged(object sender, EventArgs e) - { - NumericUpDown numericUpDown = (NumericUpDown)sender; - this._comparisonBotAttempt.TieBreak1 = (int)numericUpDown.Value; - } - - private void TieBreak2Numeric_ValueChanged(object sender, EventArgs e) - { - NumericUpDown numericUpDown = (NumericUpDown)sender; - this._comparisonBotAttempt.TieBreak2 = (int)numericUpDown.Value; - } - - private void TieBreak3Numeric_ValueChanged(object sender, EventArgs e) - { - NumericUpDown numericUpDown = (NumericUpDown)sender; - this._comparisonBotAttempt.TieBreak3 = (int)numericUpDown.Value; - } - - } -} + ComparisonTypeTie3 = Tie3ComparisonType, + MainCompareToBest = MainBestRadio.Checked, + TieBreaker1CompareToBest = TieBreak1BestRadio.Checked, + TieBreaker2CompareToBest = TieBreak2BestRadio.Checked, + TieBreaker3CompareToBest = TieBreak3BestRadio.Checked, + MainCompareToValue = (int)MainValueNumeric.Value, + TieBreaker1CompareToValue = (int)TieBreak1Numeric.Value, + TieBreaker2CompareToValue = (int)TieBreak2Numeric.Value, + TieBreaker3CompareToValue = (int)TieBreak3Numeric.Value, + FromSlot = FromSlot, + FrameLength = FrameLength, + Attempts = Attempts, + Frames = Frames, + MemoryDomain = _currentDomain.Name, + BigEndian = _bigEndian, + DataSize = _dataSize + }; + + var json = ConfigService.SaveWithType(data); + + File.WriteAllText(path, json); + CurrentFileName = path; + Settings.RecentBotFiles.Add(CurrentFileName); + MessageLabel.Text = Path.GetFileName(CurrentFileName) + " saved"; + } + + #endregion + + private void SetupControlsAndProperties() + { + MaximizeAddressBox.SetHexProperties(MemoryDomains.MainMemory.Size); + TieBreaker1Box.SetHexProperties(MemoryDomains.MainMemory.Size); + TieBreaker2Box.SetHexProperties(MemoryDomains.MainMemory.Size); + TieBreaker3Box.SetHexProperties(MemoryDomains.MainMemory.Size); + + StartFromSlotBox.SelectedIndex = 0; + + int starty = 0; + int accumulatedy = 0; + int lineHeight = 30; + int marginLeft = 15; + int count = 0; + + ControlProbabilityPanel.Controls.Clear(); + + foreach (var button in Emulator.ControllerDefinition.BoolButtons) + { + var control = new BotControlsRow + { + ButtonName = button, + Probability = 0.0, + Location = new Point(marginLeft, starty + accumulatedy), + TabIndex = count + 1, + ProbabilityChangedCallback = AssessRunButtonStatus + }; + + ControlProbabilityPanel.Controls.Add(control); + accumulatedy += lineHeight; + count++; + } + + if (Settings.RecentBotFiles.AutoLoad) + { + LoadFileFromRecent(Settings.RecentBotFiles.MostRecent); + } + + UpdateBotStatusIcon(); + } + + private void SetMemoryDomain(string name) + { + _currentDomain = MemoryDomains[name]; + _bigEndian = MemoryDomains[name].EndianType == MemoryDomain.Endian.Big; + } + + private int GetRamvalue(int addr) + { + int val; + switch (_dataSize) + { + default: + case 1: + val = _currentDomain.PeekByte(addr); + break; + case 2: + val = _currentDomain.PeekWord(addr, _bigEndian); + break; + case 4: + val = (int)_currentDomain.PeekDWord(addr, _bigEndian); + break; + } + + return val; + } + + private void Update(bool fast) + { + if (_dontUpdateValues) + { + return; + } + + if (_replayMode) + { + int index = Emulator.Frame - _startFrame; + + if (index < _bestBotAttempt.Log.Count) + { + var logEntry = _bestBotAttempt.Log[index]; + var lg = Global.MovieSession.MovieControllerInstance(); + lg.SetControllersAsMnemonic(logEntry); + + foreach (var button in lg.Type.BoolButtons) + { + // TODO: make an input adapter specifically for the bot? + Global.LuaAndAdaptor.SetButton(button, lg.IsPressed(button)); + } + } + else + { + FinishReplay(); + } + } + else if (_isBotting) + { + if (Global.Emulator.Frame >= _targetFrame) + { + Attempts++; + Frames += FrameLength; + + _currentBotAttempt.Maximize = MaximizeValue; + _currentBotAttempt.TieBreak1 = TieBreaker1Value; + _currentBotAttempt.TieBreak2 = TieBreaker2Value; + _currentBotAttempt.TieBreak3 = TieBreaker3Value; + PlayBestButton.Enabled = true; + + if (IsBetter(_comparisonBotAttempt, _currentBotAttempt)) + { + _bestBotAttempt = _currentBotAttempt; + UpdateBestAttempt(); + } + + _currentBotAttempt = new BotAttempt { Attempt = Attempts }; + GlobalWin.MainForm.LoadQuickSave(SelectedSlot, false, true); + } + + PressButtons(); + } + } + + private void FinishReplay() + { + GlobalWin.MainForm.PauseEmulator(); + _startFrame = 0; + _replayMode = false; + UpdateBotStatusIcon(); + MessageLabel.Text = "Replay stopped"; + } + + private bool IsBetter(BotAttempt comparison, BotAttempt current) + { + if (!TestValue(MainComparisonType, current.Maximize, comparison.Maximize)) + { + return false; + } + else if (current.Maximize == comparison.Maximize) + { + if (!TestValue(Tie1ComparisonType, current.TieBreak1, comparison.TieBreak1)) + { + return false; + } + else if (current.TieBreak1 == comparison.TieBreak1) + { + if (!TestValue(Tie2ComparisonType, current.TieBreak2, comparison.TieBreak2)) + { + return false; + } + else if (current.TieBreak2 == comparison.TieBreak2) + { + if (!TestValue(Tie3ComparisonType, current.TieBreak3, current.TieBreak3)) + { + return false; + } + } + } + } + + return true; + } + + private bool TestValue(byte operation, int currentValue, int bestValue) + { + switch (operation) + { + case 0: + return currentValue > bestValue; + case 1: + return currentValue >= bestValue; + case 2: + return currentValue == bestValue; + case 3: + return currentValue <= bestValue; + case 4: + return currentValue < bestValue; + } + return false; + } + + private void UpdateBestAttempt() + { + if (_bestBotAttempt != null) + { + ClearBestButton.Enabled = true; + BestAttemptNumberLabel.Text = _bestBotAttempt.Attempt.ToString(); + BestMaximizeBox.Text = _bestBotAttempt.Maximize.ToString(); + BestTieBreak1Box.Text = _bestBotAttempt.TieBreak1.ToString(); + BestTieBreak2Box.Text = _bestBotAttempt.TieBreak2.ToString(); + BestTieBreak3Box.Text = _bestBotAttempt.TieBreak3.ToString(); + + var sb = new StringBuilder(); + foreach (var logEntry in _bestBotAttempt.Log) + { + sb.AppendLine(logEntry); + } + BestAttemptLogLabel.Text = sb.ToString(); + PlayBestButton.Enabled = true; + } + else + { + ClearBestButton.Enabled = false; + BestAttemptNumberLabel.Text = string.Empty; + BestMaximizeBox.Text = string.Empty; + BestTieBreak1Box.Text = string.Empty; + BestTieBreak2Box.Text = string.Empty; + BestTieBreak3Box.Text = string.Empty; + BestAttemptLogLabel.Text = string.Empty; + PlayBestButton.Enabled = false; + } + } + + private void PressButtons() + { + var rand = new Random((int)DateTime.Now.Ticks); + + var buttonLog = new Dictionary(); + + foreach (var button in Emulator.ControllerDefinition.BoolButtons) + { + double probability = _cachedControlProbabilities[button]; + bool pressed = !(rand.Next(100) < probability); + + buttonLog.Add(button, pressed); + Global.ClickyVirtualPadController.SetBool(button, pressed); + } + + _currentBotAttempt.Log.Add(_logGenerator.GenerateLogEntry()); + } + + private void StartBot() + { + if (!CanStart()) + { + MessageBox.Show("Unable to run with current settings"); + return; + } + + _isBotting = true; + ControlsBox.Enabled = false; + StartFromSlotBox.Enabled = false; + RunBtn.Visible = false; + StopBtn.Visible = true; + GoalGroupBox.Enabled = false; + _currentBotAttempt = new BotAttempt { Attempt = Attempts }; + + if (Global.MovieSession.Movie.IsRecording) + { + _oldCountingSetting = Global.MovieSession.Movie.IsCountingRerecords; + Global.MovieSession.Movie.IsCountingRerecords = false; + } + + _dontUpdateValues = true; + GlobalWin.MainForm.LoadQuickSave(SelectedSlot, false, true); // Triggers an UpdateValues call + _dontUpdateValues = false; + + _targetFrame = Global.Emulator.Frame + (int)FrameLengthNumeric.Value; + + GlobalWin.MainForm.UnpauseEmulator(); + if (Settings.TurboWhenBotting) + { + SetMaxSpeed(); + } + + UpdateBotStatusIcon(); + MessageLabel.Text = "Running..."; + _cachedControlProbabilities = ControlProbabilities; + _logGenerator = Global.MovieSession.LogGeneratorInstance(); + _logGenerator.SetSource(Global.ClickyVirtualPadController); + } + + private bool CanStart() + { + if (!ControlProbabilities.Any(cp => cp.Value > 0)) + { + return false; + } + + if (!MaximizeAddressBox.ToRawInt().HasValue) + { + return false; + } + + if (FrameLengthNumeric.Value == 0) + { + return false; + } + + return true; + } + + private void StopBot() + { + RunBtn.Visible = true; + StopBtn.Visible = false; + _isBotting = false; + _targetFrame = 0; + ControlsBox.Enabled = true; + StartFromSlotBox.Enabled = true; + _targetFrame = 0; + _currentBotAttempt = null; + GoalGroupBox.Enabled = true; + + if (Global.MovieSession.Movie.IsRecording) + { + Global.MovieSession.Movie.IsCountingRerecords = _oldCountingSetting; + } + + GlobalWin.MainForm.PauseEmulator(); + SetNormalSpeed(); + UpdateBotStatusIcon(); + MessageLabel.Text = "Bot stopped"; + } + + private void UpdateBotStatusIcon() + { + if (_replayMode) + { + BotStatusButton.Image = Properties.Resources.Play; + BotStatusButton.ToolTipText = "Replaying best result"; + } + else if (_isBotting) + { + BotStatusButton.Image = Properties.Resources.RecordHS; + BotStatusButton.ToolTipText = "Botting in progress"; + } + else + { + BotStatusButton.Image = Properties.Resources.Pause; + BotStatusButton.ToolTipText = "Bot is currently not running"; + } + } + + private void SetMaxSpeed() + { + GlobalWin.MainForm.Unthrottle(); + } + + private void SetNormalSpeed() + { + GlobalWin.MainForm.Throttle(); + } + + private void AssessRunButtonStatus() + { + RunBtn.Enabled = + FrameLength > 0 + && !string.IsNullOrWhiteSpace(MaximizeAddressBox.Text) + && ControlProbabilities.Any(kvp => kvp.Value > 0); + } + + /// + /// Updates comparison bot attempt with current best bot attempt values for values where the "best" radio button is selected + /// + private void UpdateComparisonBotAttempt() + { + if(_bestBotAttempt == null) + { + if (MainBestRadio.Checked) + { + _comparisonBotAttempt.Maximize = 0; + } + + if (TieBreak1BestRadio.Checked) + { + _comparisonBotAttempt.TieBreak1 = 0; + } + + if (TieBreak2BestRadio.Checked) + { + _comparisonBotAttempt.TieBreak2= 0; + } + + if (TieBreak3BestRadio.Checked) + { + _comparisonBotAttempt.TieBreak3 = 0; + } + } + else + { + if (MainBestRadio.Checked && _bestBotAttempt.Maximize != _comparisonBotAttempt.Maximize) + { + _comparisonBotAttempt.Maximize = _bestBotAttempt.Maximize; + } + + if (TieBreak1BestRadio.Checked && _bestBotAttempt.TieBreak1 != _comparisonBotAttempt.TieBreak1) + { + _comparisonBotAttempt.TieBreak1 = _bestBotAttempt.TieBreak1; + } + + if (TieBreak2BestRadio.Checked && _bestBotAttempt.TieBreak2 != _comparisonBotAttempt.TieBreak2) + { + _comparisonBotAttempt.TieBreak2 = _bestBotAttempt.TieBreak2; + } + + if (TieBreak3BestRadio.Checked && _bestBotAttempt.TieBreak3 != _comparisonBotAttempt.TieBreak3) + { + _comparisonBotAttempt.TieBreak3 = _bestBotAttempt.TieBreak3; + } + } + } + + private void MainBestRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.MainValueNumeric.Enabled = false; + _comparisonBotAttempt.Maximize = _bestBotAttempt == null ? 0 : _bestBotAttempt.Maximize; + } + } + + private void Tiebreak1BestRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.TieBreak1Numeric.Enabled = false; + _comparisonBotAttempt.TieBreak1 = _bestBotAttempt == null ? 0 : _bestBotAttempt.TieBreak1; + } + } + + private void Tiebreak2BestRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.TieBreak2Numeric.Enabled = false; + _comparisonBotAttempt.TieBreak2 = _bestBotAttempt == null ? 0 : _bestBotAttempt.TieBreak2; + } + } + + private void Tiebreak3BestRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.TieBreak3Numeric.Enabled = false; + _comparisonBotAttempt.TieBreak3 = _bestBotAttempt == null ? 0 : _bestBotAttempt.TieBreak3; + } + } + + private void MainValueRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.MainValueNumeric.Enabled = true; + _comparisonBotAttempt.Maximize = (int)this.MainValueNumeric.Value; + } + } + + private void TieBreak1ValueRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.TieBreak1Numeric.Enabled = true; + _comparisonBotAttempt.TieBreak1 = (int)this.TieBreak1Numeric.Value; + } + } + + private void TieBreak2ValueRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.TieBreak2Numeric.Enabled = true; + _comparisonBotAttempt.TieBreak2 = (int)this.TieBreak2Numeric.Value; + } + } + + private void TieBreak3ValueRadio_CheckedChanged(object sender, EventArgs e) + { + RadioButton radioButton = (RadioButton)sender; + if (radioButton.Checked) + { + this.TieBreak3Numeric.Enabled = true; + _comparisonBotAttempt.TieBreak3 = (int)this.TieBreak3Numeric.Value; + } + } + + private void MainValueNumeric_ValueChanged(object sender, EventArgs e) + { + NumericUpDown numericUpDown = (NumericUpDown)sender; + this._comparisonBotAttempt.Maximize = (int)numericUpDown.Value; + } + + private void TieBreak1Numeric_ValueChanged(object sender, EventArgs e) + { + NumericUpDown numericUpDown = (NumericUpDown)sender; + this._comparisonBotAttempt.TieBreak1 = (int)numericUpDown.Value; + } + + private void TieBreak2Numeric_ValueChanged(object sender, EventArgs e) + { + NumericUpDown numericUpDown = (NumericUpDown)sender; + this._comparisonBotAttempt.TieBreak2 = (int)numericUpDown.Value; + } + + private void TieBreak3Numeric_ValueChanged(object sender, EventArgs e) + { + NumericUpDown numericUpDown = (NumericUpDown)sender; + this._comparisonBotAttempt.TieBreak3 = (int)numericUpDown.Value; + } + + } +} diff --git a/BizHawk.Client.EmuHawk/tools/CDL.cs b/BizHawk.Client.EmuHawk/tools/CDL.cs index ed1d802c81..4220936432 100644 --- a/BizHawk.Client.EmuHawk/tools/CDL.cs +++ b/BizHawk.Client.EmuHawk/tools/CDL.cs @@ -1,17 +1,9 @@ using System; using System.Collections.Generic; -using System.Drawing; using System.IO; using System.Windows.Forms; using BizHawk.Emulation.Common; -using BizHawk.Emulation.Common.IEmulatorExtensions; - -using BizHawk.Emulation.Cores.Nintendo.Gameboy; -using BizHawk.Emulation.Cores.Components.H6280; -using BizHawk.Emulation.Cores.PCEngine; -using BizHawk.Emulation.Cores.Consoles.Sega; -using BizHawk.Emulation.Cores.Consoles.Sega.gpgx; using BizHawk.Client.Common; using BizHawk.Client.EmuHawk.ToolExtensions; @@ -26,7 +18,7 @@ using BizHawk.Client.EmuHawk.ToolExtensions; namespace BizHawk.Client.EmuHawk { - public partial class CDL : Form, IToolFormAutoConfig + public partial class CDL : ToolFormBase, IToolFormAutoConfig { private RecentFiles _recent_fld = new RecentFiles(); @@ -271,7 +263,7 @@ namespace BizHawk.Client.EmuHawk private void OpenMenuItem_Click(object sender, EventArgs e) { - var file = ToolHelpers.OpenFileDialog( + var file = OpenFileDialog( _currentFilename, PathManager.MakeAbsolutePath(Global.Config.PathEntries.LogPathFragment, null), "Code Data Logger Files", @@ -313,7 +305,7 @@ namespace BizHawk.Client.EmuHawk } else { - var file = ToolHelpers.SaveFileDialog( + var file = SaveFileDialog( _currentFilename, PathManager.MakeAbsolutePath(Global.Config.PathEntries.LogPathFragment, null), "Code Data Logger Files", @@ -344,7 +336,7 @@ namespace BizHawk.Client.EmuHawk } else { - var file = ToolHelpers.OpenFileDialog( + var file = ToolFormBase.OpenFileDialog( _currentFilename, PathManager.MakeAbsolutePath(Global.Config.PathEntries.LogPathFragment, null), "Code Data Logger Files", diff --git a/BizHawk.Client.EmuHawk/tools/Cheats/Cheats.cs b/BizHawk.Client.EmuHawk/tools/Cheats/Cheats.cs index 6e6df537e0..db13cdff4e 100644 --- a/BizHawk.Client.EmuHawk/tools/Cheats/Cheats.cs +++ b/BizHawk.Client.EmuHawk/tools/Cheats/Cheats.cs @@ -13,7 +13,7 @@ using BizHawk.Client.EmuHawk.WinFormExtensions; namespace BizHawk.Client.EmuHawk { - public partial class Cheats : Form, IToolForm + public partial class Cheats : ToolFormBase, IToolForm { private const string NAME = "NamesColumn"; private const string ADDRESS = "AddressColumn"; @@ -136,7 +136,7 @@ namespace BizHawk.Client.EmuHawk private static bool SaveAs() { - var file = ToolHelpers.SaveFileDialog( + var file = SaveFileDialog( Global.CheatList.CurrentFileName, PathManager.GetCheatsPath(Global.Game), "Cheat Files", @@ -160,8 +160,8 @@ namespace BizHawk.Client.EmuHawk private void ColumnToggleCallback() { - SaveColumnInfo(); - LoadColumnInfo(); + SaveColumnInfo(CheatListView, Settings.Columns); + LoadColumnInfo(CheatListView, Settings.Columns); } private void ToggleGameGenieButton() @@ -187,7 +187,7 @@ namespace BizHawk.Client.EmuHawk public void SaveConfigSettings() { - SaveColumnInfo(); + SaveColumnInfo(CheatListView, Settings.Columns); if (WindowState == FormWindowState.Normal) { @@ -213,37 +213,14 @@ namespace BizHawk.Client.EmuHawk Size = Settings.WindowSize; } - LoadColumnInfo(); - } - - private void LoadColumnInfo() - { - CheatListView.Columns.Clear(); - - var columns = Settings.Columns - .Where(c => c.Visible) - .OrderBy(c => c.Index); - - foreach (var column in columns) - { - CheatListView.AddColumn(column); - } - } - - private void SaveColumnInfo() - { - foreach (ColumnHeader column in CheatListView.Columns) - { - Settings.Columns[column.Name].Index = column.DisplayIndex; - Settings.Columns[column.Name].Width = column.Width; - } + LoadColumnInfo(CheatListView, Settings.Columns); } private void DoColumnToggle(string column) { Settings.Columns[column].Visible ^= true; - SaveColumnInfo(); - LoadColumnInfo(); + SaveColumnInfo(CheatListView, Settings.Columns); + LoadColumnInfo(CheatListView, Settings.Columns); } private void CheatListView_QueryItemText(int index, int column, out string text) @@ -385,14 +362,13 @@ namespace BizHawk.Client.EmuHawk private void OpenMenuItem_Click(object sender, EventArgs e) { - var append = sender == AppendMenuItem; - var file = ToolHelpers.OpenFileDialog( + var file = OpenFileDialog( Global.CheatList.CurrentFileName, PathManager.GetCheatsPath(Global.Game), "Cheat Files", "cht"); - LoadFile(file, append); + LoadFile(file, append: sender == AppendMenuItem); } private void SaveMenuItem_Click(object sender, EventArgs e) @@ -617,7 +593,7 @@ namespace BizHawk.Client.EmuHawk Global.Config.CheatsAutoSaveOnClose = true; RefreshFloatingWindowControl(); - LoadColumnInfo(); + LoadColumnInfo(CheatListView, Settings.Columns); } #endregion @@ -699,11 +675,11 @@ namespace BizHawk.Client.EmuHawk if (selected.Select(x => x.Domain).Distinct().Count() > 1) { - ToolHelpers.ViewInHexEditor(selected[0].Domain, new List { selected.First().Address ?? 0 }, selected.First().Size); + ViewInHexEditor(selected[0].Domain, new List { selected.First().Address ?? 0 }, selected.First().Size); } else { - ToolHelpers.ViewInHexEditor(selected.First().Domain, selected.Select(x => x.Address ?? 0), selected.First().Size); + ViewInHexEditor(selected.First().Domain, selected.Select(x => x.Address ?? 0), selected.First().Size); } } } diff --git a/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs b/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs index 365b37c407..dbcbd2d148 100644 --- a/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs +++ b/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs @@ -21,7 +21,7 @@ using BizHawk.Client.EmuHawk.ToolExtensions; namespace BizHawk.Client.EmuHawk { // int to long TODO: 32 bit domains have more digits than the hex editor can account for and the address covers up the 0 column - public partial class HexEditor : Form, IToolFormAutoConfig + public partial class HexEditor : ToolFormBase, IToolFormAutoConfig { [RequiredService] private IMemoryDomains MemoryDomains { get; set; } @@ -1589,7 +1589,7 @@ namespace BizHawk.Client.EmuHawk } } - ToolHelpers.UpdateCheatRelatedTools(null, null); + UpdateCheatRelatedTools(null, null); MemoryViewerBox.Refresh(); } diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.Designer.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.Designer.cs index e4a50a9214..bb56b7d5ad 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.Designer.cs @@ -825,7 +825,7 @@ this.Text = "Lua Console"; this.Load += new System.EventHandler(this.LuaConsole_Load); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.LuaConsole_DragDrop); - this.DragEnter += new System.Windows.Forms.DragEventHandler(this.LuaConsole_DragEnter); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.GenericDragEnter); this.ScriptListContextMenu.ResumeLayout(false); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index fe3e0f0d07..2bb55da74c 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -7,17 +7,13 @@ using System.Linq; using System.Text.RegularExpressions; using System.Windows.Forms; -using LuaInterface; - using BizHawk.Client.Common; -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Common.IEmulatorExtensions; using BizHawk.Client.EmuHawk.WinFormExtensions; using BizHawk.Client.EmuHawk.ToolExtensions; namespace BizHawk.Client.EmuHawk { - public partial class LuaConsole : Form, IToolFormAutoConfig + public partial class LuaConsole : ToolFormBase, IToolFormAutoConfig { private readonly LuaFileList _luaList; private bool _sortReverse; @@ -64,7 +60,7 @@ namespace BizHawk.Client.EmuHawk { if (AskSaveChanges()) { - SaveColumnInfo(); + SaveColumnInfo(LuaListView, Settings.Columns); CloseLua(); GlobalWin.DisplayManager.ClearLuaSurfaces(); } @@ -131,30 +127,7 @@ namespace BizHawk.Client.EmuHawk } } - LoadColumnInfo(); - } - - private void LoadColumnInfo() - { - LuaListView.Columns.Clear(); - - var columns = Settings.Columns - .Where(c => c.Visible) - .OrderBy(c => c.Index); - - foreach (var column in columns) - { - LuaListView.AddColumn(column); - } - } - - private void SaveColumnInfo() - { - foreach (ColumnHeader column in LuaListView.Columns) - { - Settings.Columns[column.Name].Index = column.DisplayIndex; - Settings.Columns[column.Name].Width = column.Width; - } + LoadColumnInfo(LuaListView, Settings.Columns); } public void Restart() @@ -1096,11 +1069,6 @@ namespace BizHawk.Client.EmuHawk } } - private void LuaConsole_DragEnter(object sender, DragEventArgs e) - { - e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None; - } - private void LuaListView_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Delete && !e.Control && !e.Alt && !e.Shift) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs index dab12d5ce1..27e09a8e27 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs @@ -1526,7 +1526,7 @@ namespace BizHawk.Client.EmuHawk this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Tastudio_Closing); this.Load += new System.EventHandler(this.Tastudio_Load); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.TAStudio_DragDrop); - this.DragEnter += new System.Windows.Forms.DragEventHandler(this.TAStudio_DragEnter); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.GenericDragEnter); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TAStudio_KeyDown); this.MouseLeave += new System.EventHandler(this.TAStudio_MouseLeave); this.TASMenu.ResumeLayout(false); diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs index ee409d3d6d..f979a3dfa9 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.MenuItems.cs @@ -1,14 +1,10 @@ using System; using System.Collections.Generic; -using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Windows.Forms; -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Common.IEmulatorExtensions; - using BizHawk.Client.Common; using BizHawk.Client.Common.MovieConversionExtensions; using BizHawk.Client.EmuHawk.ToolExtensions; @@ -60,7 +56,7 @@ namespace BizHawk.Client.EmuHawk filename = string.Empty; } - var file = ToolHelpers.OpenFileDialog( + var file = OpenFileDialog( filename, PathManager.MakeAbsolutePath(Global.Config.PathEntries.MoviesPathFragment, null), "Tas Project Files", @@ -104,7 +100,7 @@ namespace BizHawk.Client.EmuHawk filename = SuggestedTasProjName(); } - var file = ToolHelpers.SaveFileDialog( + var file = SaveFileDialog( filename, PathManager.MakeAbsolutePath(Global.Config.PathEntries.MoviesPathFragment, null), "Tas Project Files", diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index e15827b30c..72a022e76d 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -17,7 +17,7 @@ using BizHawk.Client.EmuHawk.ToolExtensions; namespace BizHawk.Client.EmuHawk { - public partial class TAStudio : Form, IToolFormAutoConfig, IControlMainform + public partial class TAStudio : ToolFormBase, IToolFormAutoConfig, IControlMainform { // TODO: UI flow that conveniently allows to start from savestate private const string CursorColumnName = "CursorColumn"; @@ -839,11 +839,10 @@ namespace BizHawk.Client.EmuHawk SetTextProperty(); } - private void TAStudio_DragEnter(object sender, DragEventArgs e) + private void LuaConsole_DragEnter(object sender, DragEventArgs e) { e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None; } - private void TAStudio_DragDrop(object sender, DragEventArgs e) { if (!AskSaveChanges()) diff --git a/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs b/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs index cfc212659e..c6506def92 100644 --- a/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs +++ b/BizHawk.Client.EmuHawk/tools/ToolHelpers.cs @@ -12,7 +12,7 @@ using BizHawk.Client.EmuHawk.WinFormExtensions; namespace BizHawk.Client.EmuHawk { - public static class ToolHelpers + public class ToolFormBase : Form { public static FileInfo OpenFileDialog(string currentFile, string path, string fileType, string fileExt) { @@ -74,7 +74,7 @@ namespace BizHawk.Client.EmuHawk public static FileInfo GetWatchSaveFileFromUser(string currentFile) { return SaveFileDialog(currentFile, PathManager.MakeAbsolutePath(Global.Config.PathEntries.WatchPathFragment, null), "Watch Files", "wch"); - } + } public static void UpdateCheatRelatedTools(object sender, CheatCollection.CheatListEventArgs e) { @@ -98,5 +98,33 @@ namespace BizHawk.Client.EmuHawk GlobalWin.Tools.Load(); GlobalWin.Tools.HexEditor.SetToAddresses(addresses, domain, size); } + + protected void GenericDragEnter(object sender, DragEventArgs e) + { + e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None; + } + + protected void LoadColumnInfo(VirtualListView listView, ToolDialogSettings.ColumnList columns) + { + listView.Columns.Clear(); + + var cl = columns + .Where(c => c.Visible) + .OrderBy(c => c.Index); + + foreach (var column in cl) + { + listView.AddColumn(column); + } + } + + protected void SaveColumnInfo(VirtualListView listview, ToolDialogSettings.ColumnList columns) + { + foreach (ColumnHeader column in listview.Columns) + { + columns[column.Name].Index = column.DisplayIndex; + columns[column.Name].Width = column.Width; + } + } } } diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.Designer.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.Designer.cs index ecea381455..e20de8f986 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.Designer.cs @@ -214,7 +214,7 @@ this.WatchListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.WatchListView_ColumnClick); this.WatchListView.SelectedIndexChanged += new System.EventHandler(this.WatchListView_SelectedIndexChanged); this.WatchListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.NewRamSearch_DragDrop); - this.WatchListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.NewRamSearch_DragEnter); + this.WatchListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.GenericDragEnter); this.WatchListView.Enter += new System.EventHandler(this.WatchListView_Enter); this.WatchListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown); this.WatchListView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.WatchListView_MouseDoubleClick); @@ -1399,7 +1399,7 @@ this.Activated += new System.EventHandler(this.NewRamSearch_Activated); this.Load += new System.EventHandler(this.RamSearch_Load); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.NewRamSearch_DragDrop); - this.DragEnter += new System.Windows.Forms.DragEventHandler(this.NewRamSearch_DragEnter); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.GenericDragEnter); this.ListViewContextMenu.ResumeLayout(false); this.RamSearchMenu.ResumeLayout(false); this.RamSearchMenu.PerformLayout(); diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs index 51c494ee52..05aeb60546 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamSearch.cs @@ -24,7 +24,7 @@ namespace BizHawk.Client.EmuHawk /// /// A form designed to search through ram values /// - public partial class RamSearch : Form, IToolForm + public partial class RamSearch : ToolFormBase, IToolForm { // TODO: DoSearch grabs the state of widgets and passes it to the engine before running, so rip out code that is attempting to keep the state up to date through change events @@ -115,8 +115,8 @@ namespace BizHawk.Client.EmuHawk private void ColumnToggleCallback() { - SaveColumnInfo(); - LoadColumnInfo(); + SaveColumnInfo(WatchListView, Settings.Columns); + LoadColumnInfo(WatchListView, Settings.Columns); } private void RamSearch_Load(object sender, EventArgs e) @@ -244,7 +244,7 @@ namespace BizHawk.Client.EmuHawk TopMost = Settings.TopMost; - LoadColumnInfo(); + LoadColumnInfo(WatchListView, Settings.Columns); } #endregion @@ -312,7 +312,7 @@ namespace BizHawk.Client.EmuHawk public void SaveConfigSettings() { - SaveColumnInfo(); + SaveColumnInfo(WatchListView, Settings.Columns); if (WindowState == FormWindowState.Normal) { @@ -623,29 +623,6 @@ namespace BizHawk.Client.EmuHawk } } - private void LoadColumnInfo() - { - WatchListView.Columns.Clear(); - - var columns = Settings.Columns - .Where(c => c.Visible) - .OrderBy(c => c.Index); - - foreach (var column in columns) - { - WatchListView.AddColumn(column); - } - } - - private void SaveColumnInfo() - { - foreach (ColumnHeader column in WatchListView.Columns) - { - Settings.Columns[column.Name].Index = column.DisplayIndex; - Settings.Columns[column.Name].Width = column.Width; - } - } - private void DoDisplayTypeClick(BizHawk.Client.Common.DisplayType type) { if (_settings.Type != type) @@ -1021,7 +998,7 @@ namespace BizHawk.Client.EmuHawk private void OpenMenuItem_Click(object sender, EventArgs e) { LoadWatchFile( - ToolHelpers.GetWatchFileFromUser(string.Empty), + GetWatchFileFromUser(string.Empty), sender == AppendFileMenuItem, sender == TruncateFromFileMenuItem ); @@ -1048,7 +1025,7 @@ namespace BizHawk.Client.EmuHawk } else { - var result = watches.SaveAs(ToolHelpers.GetWatchSaveFileFromUser(watches.CurrentFileName)); + var result = watches.SaveAs(ToolFormBase.GetWatchSaveFileFromUser(watches.CurrentFileName)); if (result) { MessageLabel.Text = Path.GetFileName(_currentFileName) + " saved"; @@ -1066,7 +1043,7 @@ namespace BizHawk.Client.EmuHawk watches.Add(_searches[i]); } - if (watches.SaveAs(ToolHelpers.GetWatchSaveFileFromUser(watches.CurrentFileName))) + if (watches.SaveAs(ToolFormBase.GetWatchSaveFileFromUser(watches.CurrentFileName))) { _currentFileName = watches.CurrentFileName; MessageLabel.Text = Path.GetFileName(_currentFileName) + " saved"; @@ -1436,7 +1413,7 @@ namespace BizHawk.Client.EmuHawk } RefreshFloatingWindowControl(); - LoadColumnInfo(); + LoadColumnInfo(WatchListView, Settings.Columns); } #endregion @@ -1493,7 +1470,7 @@ namespace BizHawk.Client.EmuHawk { if (SelectedWatches.Any()) { - ToolHelpers.ViewInHexEditor(_searches.Domain, SelectedWatches.Select(x => x.Address), SelectedSize); + ViewInHexEditor(_searches.Domain, SelectedWatches.Select(x => x.Address), SelectedSize); } } @@ -1801,11 +1778,6 @@ namespace BizHawk.Client.EmuHawk WatchListView.Refresh(); } - private void NewRamSearch_DragEnter(object sender, DragEventArgs e) - { - e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None; - } - private void NewRamSearch_DragDrop(object sender, DragEventArgs e) { var filePaths = (string[])e.Data.GetData(DataFormats.FileDrop); diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.Designer.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.Designer.cs index 4155473411..271e847478 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.Designer.cs @@ -881,7 +881,7 @@ this.WatchListView.SelectedIndexChanged += new System.EventHandler(this.WatchListView_SelectedIndexChanged); this.WatchListView.VirtualItemsSelectionRangeChanged += new System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler(this.WatchListView_VirtualItemsSelectionRangeChanged); this.WatchListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.NewRamWatch_DragDrop); - this.WatchListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.NewRamWatch_DragEnter); + this.WatchListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.GenericDragEnter); this.WatchListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown); this.WatchListView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.WatchListView_MouseDoubleClick); // @@ -948,7 +948,7 @@ this.Activated += new System.EventHandler(this.NewRamWatch_Activated); this.Load += new System.EventHandler(this.NewRamWatch_Load); this.DragDrop += new System.Windows.Forms.DragEventHandler(this.NewRamWatch_DragDrop); - this.DragEnter += new System.Windows.Forms.DragEventHandler(this.NewRamWatch_DragEnter); + this.DragEnter += new System.Windows.Forms.DragEventHandler(this.GenericDragEnter); this.Enter += new System.EventHandler(this.NewRamWatch_Enter); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown); this.ListViewContextMenu.ResumeLayout(false); diff --git a/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs b/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs index 09e8e9995f..2662f9519c 100644 --- a/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs +++ b/BizHawk.Client.EmuHawk/tools/Watch/RamWatch.cs @@ -7,7 +7,6 @@ using System.Linq; using System.Text; using System.Windows.Forms; -using BizHawk.Common.NumberExtensions; using BizHawk.Emulation.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; @@ -17,7 +16,7 @@ using BizHawk.Client.EmuHawk.ToolExtensions; namespace BizHawk.Client.EmuHawk { - public partial class RamWatch : Form, IToolForm + public partial class RamWatch : ToolFormBase, IToolForm { private WatchList _watches; @@ -455,20 +454,6 @@ namespace BizHawk.Client.EmuHawk } } - private void LoadColumnInfo() - { - WatchListView.Columns.Clear(); - - var columns = Settings.Columns - .Where(c => c.Visible) - .OrderBy(c => c.Index); - - foreach (var column in columns) - { - WatchListView.AddColumn(column); - } - } - private void LoadConfigSettings() { // Size and Positioning @@ -485,7 +470,7 @@ namespace BizHawk.Client.EmuHawk Size = Settings.WindowSize; } - LoadColumnInfo(); + LoadColumnInfo(WatchListView, Settings.Columns); } private void NewWatchList(bool suppressAsk) @@ -529,7 +514,7 @@ namespace BizHawk.Client.EmuHawk private void SaveAs() { - var result = _watches.SaveAs(ToolHelpers.GetWatchSaveFileFromUser(_watches.CurrentFileName)); + var result = _watches.SaveAs(GetWatchSaveFileFromUser(_watches.CurrentFileName)); if (result) { UpdateStatusBar(saved: true); @@ -537,18 +522,9 @@ namespace BizHawk.Client.EmuHawk } } - private void SaveColumnInfo() - { - foreach (ColumnHeader column in WatchListView.Columns) - { - Settings.Columns[column.Name].Index = column.DisplayIndex; - Settings.Columns[column.Name].Width = column.Width; - } - } - private void SaveConfigSettings() { - SaveColumnInfo(); + SaveColumnInfo(WatchListView, Settings.Columns); if (WindowState == FormWindowState.Normal) { @@ -685,7 +661,7 @@ namespace BizHawk.Client.EmuHawk private void OpenMenuItem_Click(object sender, EventArgs e) { var append = sender == AppendMenuItem; - LoadWatchFile(ToolHelpers.GetWatchFileFromUser(_watches.CurrentFileName), append); + LoadWatchFile(GetWatchFileFromUser(_watches.CurrentFileName), append); } private void SaveMenuItem_Click(object sender, EventArgs e) @@ -993,7 +969,7 @@ namespace BizHawk.Client.EmuHawk Global.Config.DisplayRamWatch = false; RefreshFloatingWindowControl(); - LoadColumnInfo(); + LoadColumnInfo(WatchListView, Settings.Columns); } #endregion @@ -1016,8 +992,8 @@ namespace BizHawk.Client.EmuHawk private void ColumnToggleCallback() { - SaveColumnInfo(); - LoadColumnInfo(); + SaveColumnInfo(WatchListView, Settings.Columns); + LoadColumnInfo(WatchListView, Settings.Columns); } private void NewRamWatch_Activated(object sender, EventArgs e) @@ -1025,11 +1001,6 @@ namespace BizHawk.Client.EmuHawk WatchListView.Refresh(); } - private void NewRamWatch_DragEnter(object sender, DragEventArgs e) - { - e.Effect = e.Data.GetDataPresent(DataFormats.FileDrop) ? DragDropEffects.Copy : DragDropEffects.None; - } - private void NewRamWatch_DragDrop(object sender, DragEventArgs e) { var filePaths = (string[])e.Data.GetData(DataFormats.FileDrop); @@ -1111,11 +1082,11 @@ namespace BizHawk.Client.EmuHawk if (selected.Select(x => x.Domain).Distinct().Count() > 1) { - ToolHelpers.ViewInHexEditor(selected[0].Domain, new List { selected.First().Address }, selected.First().Size); + ViewInHexEditor(selected[0].Domain, new List { selected.First().Address }, selected.First().Size); } else { - ToolHelpers.ViewInHexEditor(selected.First().Domain, selected.Select(x => x.Address), selected.First().Size); + ViewInHexEditor(selected.First().Domain, selected.Select(x => x.Address), selected.First().Size); } } }