From 2fdf734bc516716a93ca4bb7a0264e2bad415627 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Mar 2011 17:00:27 +0000 Subject: [PATCH] Ram Watch - display frozen addresses (those active in cheat search) with a blue background --- BizHawk.MultiClient/tools/Cheats.cs | 12 ++++++++++++ BizHawk.MultiClient/tools/HexEditor.cs | 2 ++ BizHawk.MultiClient/tools/RamWatch.cs | 3 ++- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/tools/Cheats.cs b/BizHawk.MultiClient/tools/Cheats.cs index 19684c7648..fa9b6a031c 100644 --- a/BizHawk.MultiClient/tools/Cheats.cs +++ b/BizHawk.MultiClient/tools/Cheats.cs @@ -13,6 +13,7 @@ namespace BizHawk.MultiClient { public partial class Cheats : Form { + //Open/Close rom should start a new cheat list //File format - loading //Implement Options menu settings //Implement Freeze/Unfreeze on enabled changed in Cheat object @@ -751,5 +752,16 @@ namespace BizHawk.MultiClient CheatListView.Columns[4].Width = defaultOnWidth; } + public bool IsActiveCheat(MemoryDomain d, int address) + { + for (int x = 0; x < cheatList.Count; x++) + { + if (cheatList[x].address == address && cheatList[x].domain.Name == d.Name) + { + return true; + } + } + return false; + } } } diff --git a/BizHawk.MultiClient/tools/HexEditor.cs b/BizHawk.MultiClient/tools/HexEditor.cs index 31af896512..f5ebcb2e18 100644 --- a/BizHawk.MultiClient/tools/HexEditor.cs +++ b/BizHawk.MultiClient/tools/HexEditor.cs @@ -13,6 +13,8 @@ namespace BizHawk.MultiClient public partial class HexEditor : Form { //TODO: + //Freeze address feature + //different back color for frozen addresses //Find text box - autohighlights matches, and shows total matches //Users can customize background, & text colors //Tool strip diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 5dba8c9a4b..0271e3f56a 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -18,7 +18,6 @@ namespace BizHawk.MultiClient { //TODO: //Ability to freeze 2 & 4 byte - //Display frozen watches with blue background //Ability to watch in different memory domains //.wch format includes platform and domain type //address num digits based on domain size @@ -118,6 +117,8 @@ namespace BizHawk.MultiClient { if (watchList[index].type == atype.SEPARATOR) color = this.BackColor; + if (Global.MainForm.Cheats1.IsActiveCheat(Global.Emulator.MainMemory, watchList[index].address)) + color = Color.LightCyan; } void WatchListView_QueryItemText(int index, int column, out string text)