Ram Watch - Implement Freeze address, and a few misc fix ups
This commit is contained in:
parent
d211a6d3c5
commit
a68053bc1b
|
@ -3,7 +3,7 @@
|
|||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<ProductVersion>9.0.21022</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{DD448B37-BA3F-4544-9754-5406E8094723}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
|
@ -392,6 +392,8 @@
|
|||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="config\ControllerImages\NESController.PNG" />
|
||||
<None Include="images\cheat.png" />
|
||||
<None Include="images\Cheats.ico" />
|
||||
<Content Include="output\gamedb.txt" />
|
||||
<Content Include="output\gamedb_neshomebrew.txt" />
|
||||
<None Include="images\Refresh.bmp" />
|
||||
|
|
|
@ -81,6 +81,20 @@ namespace BizHawk.MultiClient.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap cheat {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("cheat", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Icon Cheats {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("Cheats", resourceCulture);
|
||||
return ((System.Drawing.Icon)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
internal static System.Drawing.Bitmap FindHS {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("FindHS", resourceCulture);
|
||||
|
|
|
@ -597,4 +597,10 @@
|
|||
<data name="TruncateFromRW" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\TruncateFromRW.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="cheat" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\cheat.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Cheats" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\images\Cheats.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
|
@ -31,7 +31,7 @@ namespace BizHawk.MultiClient
|
|||
domain = c.domain;
|
||||
}
|
||||
|
||||
public Cheat(string cname, int addr, byte val, int comp, bool e, MemoryDomain d)
|
||||
public Cheat(string cname, int addr, byte val, bool e, MemoryDomain d)
|
||||
{
|
||||
name = cname;
|
||||
address = addr;
|
||||
|
|
|
@ -55,18 +55,11 @@
|
|||
this.saveWindowPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.findAndLoadCheatFileByGameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.autoTurnOnCheatsOnLoadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.restoreWindowSizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButtonSeparator = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.toolStripButtonMoveUp = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton();
|
||||
this.MessageLabel = new System.Windows.Forms.Label();
|
||||
this.AddCheatGroup = new System.Windows.Forms.GroupBox();
|
||||
this.EditButton = new System.Windows.Forms.Button();
|
||||
|
@ -88,7 +81,14 @@
|
|||
this.Value = new System.Windows.Forms.ColumnHeader();
|
||||
this.Domain = new System.Windows.Forms.ColumnHeader();
|
||||
this.On = new System.Windows.Forms.ColumnHeader();
|
||||
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButtonSeparator = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButtonMoveUp = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton();
|
||||
this.CheatsMenu.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
this.AddCheatGroup.SuspendLayout();
|
||||
|
@ -224,7 +224,7 @@
|
|||
// addCheatToolStripMenuItem
|
||||
//
|
||||
this.addCheatToolStripMenuItem.Name = "addCheatToolStripMenuItem";
|
||||
this.addCheatToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
|
||||
this.addCheatToolStripMenuItem.Size = new System.Drawing.Size(201, 22);
|
||||
this.addCheatToolStripMenuItem.Text = "&Add Cheat";
|
||||
this.addCheatToolStripMenuItem.Click += new System.EventHandler(this.addCheatToolStripMenuItem_Click);
|
||||
//
|
||||
|
@ -232,7 +232,7 @@
|
|||
//
|
||||
this.removeCheatToolStripMenuItem.Name = "removeCheatToolStripMenuItem";
|
||||
this.removeCheatToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
|
||||
this.removeCheatToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
|
||||
this.removeCheatToolStripMenuItem.Size = new System.Drawing.Size(201, 22);
|
||||
this.removeCheatToolStripMenuItem.Text = "&Remove Cheat";
|
||||
this.removeCheatToolStripMenuItem.Click += new System.EventHandler(this.removeCheatToolStripMenuItem_Click);
|
||||
//
|
||||
|
@ -255,7 +255,7 @@
|
|||
// toolStripSeparator3
|
||||
//
|
||||
this.toolStripSeparator3.Name = "toolStripSeparator3";
|
||||
this.toolStripSeparator3.Size = new System.Drawing.Size(192, 6);
|
||||
this.toolStripSeparator3.Size = new System.Drawing.Size(198, 6);
|
||||
//
|
||||
// moveUpToolStripMenuItem
|
||||
//
|
||||
|
@ -305,6 +305,11 @@
|
|||
this.autoTurnOnCheatsOnLoadToolStripMenuItem.Size = new System.Drawing.Size(248, 22);
|
||||
this.autoTurnOnCheatsOnLoadToolStripMenuItem.Text = "Auto Turn on Cheats on Load";
|
||||
//
|
||||
// toolStripSeparator5
|
||||
//
|
||||
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
||||
this.toolStripSeparator5.Size = new System.Drawing.Size(245, 6);
|
||||
//
|
||||
// restoreWindowSizeToolStripMenuItem
|
||||
//
|
||||
this.restoreWindowSizeToolStripMenuItem.Name = "restoreWindowSizeToolStripMenuItem";
|
||||
|
@ -331,96 +336,16 @@
|
|||
this.toolStrip1.TabIndex = 2;
|
||||
this.toolStrip1.Text = "toolStrip1";
|
||||
//
|
||||
// newToolStripButton
|
||||
//
|
||||
this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
|
||||
this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.newToolStripButton.Name = "newToolStripButton";
|
||||
this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.newToolStripButton.Text = "&New";
|
||||
this.newToolStripButton.Click += new System.EventHandler(this.newToolStripButton_Click);
|
||||
//
|
||||
// openToolStripButton
|
||||
//
|
||||
this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
|
||||
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.openToolStripButton.Name = "openToolStripButton";
|
||||
this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.openToolStripButton.Text = "&Open";
|
||||
this.openToolStripButton.Click += new System.EventHandler(this.openToolStripButton_Click);
|
||||
//
|
||||
// saveToolStripButton
|
||||
//
|
||||
this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
|
||||
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.saveToolStripButton.Name = "saveToolStripButton";
|
||||
this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.saveToolStripButton.Text = "&Save";
|
||||
this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
|
||||
//
|
||||
// toolStripSeparator
|
||||
//
|
||||
this.toolStripSeparator.Name = "toolStripSeparator";
|
||||
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// cutToolStripButton
|
||||
//
|
||||
this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.cutToolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_delete;
|
||||
this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.cutToolStripButton.Name = "cutToolStripButton";
|
||||
this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.cutToolStripButton.Text = "&Remove";
|
||||
this.cutToolStripButton.Click += new System.EventHandler(this.cutToolStripButton_Click);
|
||||
//
|
||||
// copyToolStripButton
|
||||
//
|
||||
this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
|
||||
this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.copyToolStripButton.Name = "copyToolStripButton";
|
||||
this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.copyToolStripButton.Text = "&Duplicate";
|
||||
this.copyToolStripButton.Click += new System.EventHandler(this.copyToolStripButton_Click);
|
||||
//
|
||||
// toolStripButtonSeparator
|
||||
//
|
||||
this.toolStripButtonSeparator.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButtonSeparator.Image = global::BizHawk.MultiClient.Properties.Resources.InserSeparator;
|
||||
this.toolStripButtonSeparator.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButtonSeparator.Name = "toolStripButtonSeparator";
|
||||
this.toolStripButtonSeparator.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButtonSeparator.Text = "Insert Separator";
|
||||
this.toolStripButtonSeparator.Click += new System.EventHandler(this.toolStripButtonSeparator_Click);
|
||||
//
|
||||
// toolStripSeparator2
|
||||
//
|
||||
this.toolStripSeparator2.Name = "toolStripSeparator2";
|
||||
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// toolStripButtonMoveUp
|
||||
//
|
||||
this.toolStripButtonMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButtonMoveUp.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_moveup;
|
||||
this.toolStripButtonMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButtonMoveUp.Name = "toolStripButtonMoveUp";
|
||||
this.toolStripButtonMoveUp.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButtonMoveUp.Text = "toolStripButton1";
|
||||
this.toolStripButtonMoveUp.Click += new System.EventHandler(this.toolStripButtonMoveUp_Click);
|
||||
//
|
||||
// toolStripButtonMoveDown
|
||||
//
|
||||
this.toolStripButtonMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButtonMoveDown.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_movedown;
|
||||
this.toolStripButtonMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButtonMoveDown.Name = "toolStripButtonMoveDown";
|
||||
this.toolStripButtonMoveDown.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButtonMoveDown.Text = "Move Down";
|
||||
this.toolStripButtonMoveDown.Click += new System.EventHandler(this.toolStripButtonMoveDown_Click);
|
||||
//
|
||||
// MessageLabel
|
||||
//
|
||||
this.MessageLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
|
@ -629,10 +554,85 @@
|
|||
this.On.Text = "On";
|
||||
this.On.Width = 40;
|
||||
//
|
||||
// toolStripSeparator5
|
||||
// newToolStripButton
|
||||
//
|
||||
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
||||
this.toolStripSeparator5.Size = new System.Drawing.Size(245, 6);
|
||||
this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
|
||||
this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.newToolStripButton.Name = "newToolStripButton";
|
||||
this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.newToolStripButton.Text = "&New";
|
||||
this.newToolStripButton.Click += new System.EventHandler(this.newToolStripButton_Click);
|
||||
//
|
||||
// openToolStripButton
|
||||
//
|
||||
this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
|
||||
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.openToolStripButton.Name = "openToolStripButton";
|
||||
this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.openToolStripButton.Text = "&Open";
|
||||
this.openToolStripButton.Click += new System.EventHandler(this.openToolStripButton_Click);
|
||||
//
|
||||
// saveToolStripButton
|
||||
//
|
||||
this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
|
||||
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.saveToolStripButton.Name = "saveToolStripButton";
|
||||
this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.saveToolStripButton.Text = "&Save";
|
||||
this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
|
||||
//
|
||||
// cutToolStripButton
|
||||
//
|
||||
this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.cutToolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_delete;
|
||||
this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.cutToolStripButton.Name = "cutToolStripButton";
|
||||
this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.cutToolStripButton.Text = "&Remove";
|
||||
this.cutToolStripButton.Click += new System.EventHandler(this.cutToolStripButton_Click);
|
||||
//
|
||||
// copyToolStripButton
|
||||
//
|
||||
this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
|
||||
this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.copyToolStripButton.Name = "copyToolStripButton";
|
||||
this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.copyToolStripButton.Text = "&Duplicate";
|
||||
this.copyToolStripButton.Click += new System.EventHandler(this.copyToolStripButton_Click);
|
||||
//
|
||||
// toolStripButtonSeparator
|
||||
//
|
||||
this.toolStripButtonSeparator.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButtonSeparator.Image = global::BizHawk.MultiClient.Properties.Resources.InserSeparator;
|
||||
this.toolStripButtonSeparator.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButtonSeparator.Name = "toolStripButtonSeparator";
|
||||
this.toolStripButtonSeparator.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButtonSeparator.Text = "Insert Separator";
|
||||
this.toolStripButtonSeparator.Click += new System.EventHandler(this.toolStripButtonSeparator_Click);
|
||||
//
|
||||
// toolStripButtonMoveUp
|
||||
//
|
||||
this.toolStripButtonMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButtonMoveUp.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_moveup;
|
||||
this.toolStripButtonMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButtonMoveUp.Name = "toolStripButtonMoveUp";
|
||||
this.toolStripButtonMoveUp.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButtonMoveUp.Text = "toolStripButton1";
|
||||
this.toolStripButtonMoveUp.Click += new System.EventHandler(this.toolStripButtonMoveUp_Click);
|
||||
//
|
||||
// toolStripButtonMoveDown
|
||||
//
|
||||
this.toolStripButtonMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButtonMoveDown.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_movedown;
|
||||
this.toolStripButtonMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButtonMoveDown.Name = "toolStripButtonMoveDown";
|
||||
this.toolStripButtonMoveDown.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButtonMoveDown.Text = "Move Down";
|
||||
this.toolStripButtonMoveDown.Click += new System.EventHandler(this.toolStripButtonMoveDown_Click);
|
||||
//
|
||||
// Cheats
|
||||
//
|
||||
|
@ -645,6 +645,7 @@
|
|||
this.Controls.Add(this.toolStrip1);
|
||||
this.Controls.Add(this.CheatListView);
|
||||
this.Controls.Add(this.CheatsMenu);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.MainMenuStrip = this.CheatsMenu;
|
||||
this.Name = "Cheats";
|
||||
this.Text = "Cheats";
|
||||
|
|
|
@ -181,6 +181,30 @@
|
|||
6auUqlU/KwBZJV4skWUuvMmYV8b+Ls6jQQ81DfryO3KtfUoA/p3810G37T3VJ3TlARdvukhldjANeemx
|
||||
z2B8MS0mq80GyySHj98rD2jQOpXbtgrVNprRnO2h5lQX1Sc7leYODh27W3nN9/WZDnroDx0A5wwhdtmt
|
||||
AAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAAAAMQOAADEDgAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAFZ+l/9TfJT/UniR/091jv9Mcoz/Sm+I/0drhv9FaIP/Q2aB/0Fkfv8/YXz/PV97/ztc
|
||||
ef86Wnf/AAAAAAAAAABdhp7/su32/5fS3v+Tz9z/jc3b/4nL2v+Eydn/fsfZ/3rF1/90wtb/cMDV/2y/
|
||||
1P9mvNL/Pl97/wAAAAAAAAAAY4+l/7vy+P+27/f/sO32/6rr9f+l6PP/nubx/5jj8f+R4O7/jN7t/4bb
|
||||
7P+A2Ov/b8DU/0Jmgf8AAAAAAAAAAGmXrP/D9fr/v/P5/7nx+P+07/f/ru31/wAAAP+BgID/iquw/5bi
|
||||
8P+Q4O7/itzt/3fD1v9IbYf/AAAAAAAAAABvnrL/y/n8/8f2+//C9fr/vfP4/7jx9/+BgID/dXFu/1dU
|
||||
Uf8AAAD/iMvY/5Xi7/+Ax9n/TXSN/wAAAAAAAAAAdKW4/9D7/f/N+fz/yfj7/8b2+v/B9Pr/sMvM/6Od
|
||||
mP/9/v7/UZOp/w4SFv+N0d7/iMva/1R8lP8AAAAAAAAAAHmqvf/V/f7/0/z9/9D7/f/M+fz/yPj7/8T2
|
||||
+v+jnZj/iLfH/3TO4v9JmrL/DhIW/3Kruf9bhJv/AAAAAAAAAAB9sML/1f3+/9X9/v/V/f7/0/z9/8/6
|
||||
/P/M+fz/s+Dn/02cs/+M4O7/Yr/X/0masv8OEhb/V4CW/wAAAAAAAAAAf7LE/9X9/v/V/f7/1f3+/9X9
|
||||
/v/U/f7/0fz9/876/P+14ef/V6C1/4zg7v9sxNn/SZqy/w4SFuPX3+LnAAAAAH+yxP9/ssT/f7LE/3+y
|
||||
xP9+sML/fK/B/3usv/96q73/eKm8/3ekt/99sLv/jODu/2zE2f99hob/NTWQ37/C2eEAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3Obq6X2wu//KuKz/c4XR/15srf81NZD/AAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADc5urpXmyt7YGf6/9edtD/Xmyt/wAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANTa7uVebK3tXmyt7eLm
|
||||
8uMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAA//8AAP//AAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAABAAAAAAAA/8AAAP/g
|
||||
AAD/8AAA//8AAA==
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
|
@ -31,8 +31,15 @@
|
|||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RamSearch));
|
||||
this.SearchtoolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.TruncateFromFiletoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.ExcludeRamWatchtoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.WatchtoolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.PoketoolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.TotalSearchLabel = new System.Windows.Forms.Label();
|
||||
this.SearchListView = new BizHawk.VirtualListView();
|
||||
this.Address = new System.Windows.Forms.ColumnHeader();
|
||||
|
@ -81,9 +88,27 @@
|
|||
this.alwaysExludeRamSearchListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
|
||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.NewSearchtoolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.SetCurrToPrevtoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.ClearChangeCountstoolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.UndotoolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
|
||||
this.DataSizetoolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
|
||||
this.byteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.bytesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dWordToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.DataTypetoolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
|
||||
this.unsignedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.signedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.hexadecimalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.includeMisalignedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.EndiantoolSplitButton = new System.Windows.Forms.ToolStripSplitButton();
|
||||
this.bigEndianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.littleEndianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.CompareToBox = new System.Windows.Forms.GroupBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.NumberOfChangesBox = new System.Windows.Forms.TextBox();
|
||||
|
@ -105,31 +130,6 @@
|
|||
this.AutoSearchCheckBox = new System.Windows.Forms.CheckBox();
|
||||
this.MemDomainLabel = new System.Windows.Forms.Label();
|
||||
this.OutputLabel = new System.Windows.Forms.Label();
|
||||
this.NewSearchtoolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.SetCurrToPrevtoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.ClearChangeCountstoolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.UndotoolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.TruncateFromFiletoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.ExcludeRamWatchtoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.WatchtoolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.PoketoolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.DataSizetoolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
|
||||
this.byteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.bytesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.dWordToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.DataTypetoolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
|
||||
this.unsignedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.signedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.hexadecimalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.includeMisalignedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.EndiantoolSplitButton = new System.Windows.Forms.ToolStripSplitButton();
|
||||
this.bigEndianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.littleEndianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.SearchtoolStrip1.SuspendLayout();
|
||||
this.contextMenuStrip1.SuspendLayout();
|
||||
this.menuStrip1.SuspendLayout();
|
||||
|
@ -160,16 +160,89 @@
|
|||
this.SearchtoolStrip1.TabIndex = 0;
|
||||
this.SearchtoolStrip1.Text = "Search";
|
||||
//
|
||||
// openToolStripButton
|
||||
//
|
||||
this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
|
||||
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.openToolStripButton.Name = "openToolStripButton";
|
||||
this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.openToolStripButton.Text = "&Open";
|
||||
this.openToolStripButton.ToolTipText = "Open Search List";
|
||||
this.openToolStripButton.Click += new System.EventHandler(this.openToolStripButton_Click);
|
||||
//
|
||||
// saveToolStripButton
|
||||
//
|
||||
this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
|
||||
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.saveToolStripButton.Name = "saveToolStripButton";
|
||||
this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.saveToolStripButton.Text = "&Save";
|
||||
this.saveToolStripButton.ToolTipText = "Save Watch List";
|
||||
this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator
|
||||
//
|
||||
this.toolStripSeparator.Name = "toolStripSeparator";
|
||||
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// cutToolStripButton
|
||||
//
|
||||
this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.cutToolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_delete;
|
||||
this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.cutToolStripButton.Name = "cutToolStripButton";
|
||||
this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.cutToolStripButton.Text = "C&ut";
|
||||
this.cutToolStripButton.ToolTipText = "Eliminate Selected Items";
|
||||
this.cutToolStripButton.Click += new System.EventHandler(this.cutToolStripButton_Click);
|
||||
//
|
||||
// TruncateFromFiletoolStripButton2
|
||||
//
|
||||
this.TruncateFromFiletoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.TruncateFromFiletoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.TruncateFromFile;
|
||||
this.TruncateFromFiletoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.TruncateFromFiletoolStripButton2.Name = "TruncateFromFiletoolStripButton2";
|
||||
this.TruncateFromFiletoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.TruncateFromFiletoolStripButton2.Text = "Eliminate from File";
|
||||
this.TruncateFromFiletoolStripButton2.Click += new System.EventHandler(this.TruncateFromFiletoolStripButton2_Click);
|
||||
//
|
||||
// ExcludeRamWatchtoolStripButton2
|
||||
//
|
||||
this.ExcludeRamWatchtoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.ExcludeRamWatchtoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.TruncateFromRW;
|
||||
this.ExcludeRamWatchtoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.ExcludeRamWatchtoolStripButton2.Name = "ExcludeRamWatchtoolStripButton2";
|
||||
this.ExcludeRamWatchtoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.ExcludeRamWatchtoolStripButton2.Text = "Elmininate Ram Watch list";
|
||||
this.ExcludeRamWatchtoolStripButton2.Click += new System.EventHandler(this.ExcludeRamWatchtoolStripButton2_Click);
|
||||
//
|
||||
// toolStripSeparator8
|
||||
//
|
||||
this.toolStripSeparator8.Name = "toolStripSeparator8";
|
||||
this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// WatchtoolStripButton1
|
||||
//
|
||||
this.WatchtoolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.WatchtoolStripButton1.Image = global::BizHawk.MultiClient.Properties.Resources.FindHS;
|
||||
this.WatchtoolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.WatchtoolStripButton1.Name = "WatchtoolStripButton1";
|
||||
this.WatchtoolStripButton1.Size = new System.Drawing.Size(23, 22);
|
||||
this.WatchtoolStripButton1.Text = "Watch";
|
||||
this.WatchtoolStripButton1.Click += new System.EventHandler(this.WatchtoolStripButton1_Click);
|
||||
//
|
||||
// PoketoolStripButton1
|
||||
//
|
||||
this.PoketoolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.PoketoolStripButton1.Image = global::BizHawk.MultiClient.Properties.Resources.poke;
|
||||
this.PoketoolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.PoketoolStripButton1.Name = "PoketoolStripButton1";
|
||||
this.PoketoolStripButton1.Size = new System.Drawing.Size(23, 22);
|
||||
this.PoketoolStripButton1.Text = "Poke";
|
||||
this.PoketoolStripButton1.Click += new System.EventHandler(this.PoketoolStripButton1_Click);
|
||||
//
|
||||
// TotalSearchLabel
|
||||
//
|
||||
this.TotalSearchLabel.AutoSize = true;
|
||||
|
@ -578,16 +651,68 @@
|
|||
this.toolStrip1.Size = new System.Drawing.Size(137, 25);
|
||||
this.toolStrip1.TabIndex = 1;
|
||||
//
|
||||
// NewSearchtoolStripButton
|
||||
//
|
||||
this.NewSearchtoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.NewSearchtoolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.restart;
|
||||
this.NewSearchtoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.NewSearchtoolStripButton.Name = "NewSearchtoolStripButton";
|
||||
this.NewSearchtoolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.NewSearchtoolStripButton.Text = "New Search";
|
||||
this.NewSearchtoolStripButton.Click += new System.EventHandler(this.NewSearchtoolStripButton_Click);
|
||||
//
|
||||
// toolStripSeparator6
|
||||
//
|
||||
this.toolStripSeparator6.Name = "toolStripSeparator6";
|
||||
this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// toolStripButton1
|
||||
//
|
||||
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
||||
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton1.Name = "toolStripButton1";
|
||||
this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButton1.Text = "Search";
|
||||
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
||||
//
|
||||
// toolStripSeparator7
|
||||
//
|
||||
this.toolStripSeparator7.Name = "toolStripSeparator7";
|
||||
this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// SetCurrToPrevtoolStripButton2
|
||||
//
|
||||
this.SetCurrToPrevtoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.SetCurrToPrevtoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.Refresh;
|
||||
this.SetCurrToPrevtoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.SetCurrToPrevtoolStripButton2.Name = "SetCurrToPrevtoolStripButton2";
|
||||
this.SetCurrToPrevtoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.SetCurrToPrevtoolStripButton2.Text = "Copy Value to Prev";
|
||||
this.SetCurrToPrevtoolStripButton2.Click += new System.EventHandler(this.SetCurrToPrevtoolStripButton2_Click);
|
||||
//
|
||||
// ClearChangeCountstoolStripButton
|
||||
//
|
||||
this.ClearChangeCountstoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.ClearChangeCountstoolStripButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.ClearChangeCountstoolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("ClearChangeCountstoolStripButton.Image")));
|
||||
this.ClearChangeCountstoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.ClearChangeCountstoolStripButton.Name = "ClearChangeCountstoolStripButton";
|
||||
this.ClearChangeCountstoolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.ClearChangeCountstoolStripButton.Text = "C";
|
||||
this.ClearChangeCountstoolStripButton.ToolTipText = "Clear Change Counts";
|
||||
this.ClearChangeCountstoolStripButton.Click += new System.EventHandler(this.ClearChangeCountstoolStripButton_Click);
|
||||
//
|
||||
// UndotoolStripButton
|
||||
//
|
||||
this.UndotoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.UndotoolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.undo;
|
||||
this.UndotoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.UndotoolStripButton.Name = "UndotoolStripButton";
|
||||
this.UndotoolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.UndotoolStripButton.Text = "Undo Search";
|
||||
this.UndotoolStripButton.Click += new System.EventHandler(this.UndotoolStripButton_Click_1);
|
||||
//
|
||||
// toolStrip2
|
||||
//
|
||||
this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
|
||||
|
@ -600,6 +725,120 @@
|
|||
this.toolStrip2.Size = new System.Drawing.Size(206, 25);
|
||||
this.toolStrip2.TabIndex = 2;
|
||||
//
|
||||
// DataSizetoolStripSplitButton1
|
||||
//
|
||||
this.DataSizetoolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.DataSizetoolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.byteToolStripMenuItem,
|
||||
this.bytesToolStripMenuItem,
|
||||
this.dWordToolStripMenuItem1});
|
||||
this.DataSizetoolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("DataSizetoolStripSplitButton1.Image")));
|
||||
this.DataSizetoolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.DataSizetoolStripSplitButton1.Name = "DataSizetoolStripSplitButton1";
|
||||
this.DataSizetoolStripSplitButton1.Size = new System.Drawing.Size(68, 22);
|
||||
this.DataSizetoolStripSplitButton1.Text = "Data Size";
|
||||
//
|
||||
// byteToolStripMenuItem
|
||||
//
|
||||
this.byteToolStripMenuItem.Checked = true;
|
||||
this.byteToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.byteToolStripMenuItem.Name = "byteToolStripMenuItem";
|
||||
this.byteToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
|
||||
this.byteToolStripMenuItem.Text = "1 Byte";
|
||||
this.byteToolStripMenuItem.Click += new System.EventHandler(this.byteToolStripMenuItem_Click);
|
||||
//
|
||||
// bytesToolStripMenuItem
|
||||
//
|
||||
this.bytesToolStripMenuItem.Name = "bytesToolStripMenuItem";
|
||||
this.bytesToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
|
||||
this.bytesToolStripMenuItem.Text = "2 Bytes";
|
||||
this.bytesToolStripMenuItem.Click += new System.EventHandler(this.bytesToolStripMenuItem_Click);
|
||||
//
|
||||
// dWordToolStripMenuItem1
|
||||
//
|
||||
this.dWordToolStripMenuItem1.Name = "dWordToolStripMenuItem1";
|
||||
this.dWordToolStripMenuItem1.Size = new System.Drawing.Size(121, 22);
|
||||
this.dWordToolStripMenuItem1.Text = "4 Bytes";
|
||||
this.dWordToolStripMenuItem1.Click += new System.EventHandler(this.dWordToolStripMenuItem1_Click);
|
||||
//
|
||||
// DataTypetoolStripSplitButton1
|
||||
//
|
||||
this.DataTypetoolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.DataTypetoolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.unsignedToolStripMenuItem,
|
||||
this.signedToolStripMenuItem,
|
||||
this.hexadecimalToolStripMenuItem,
|
||||
this.toolStripSeparator3,
|
||||
this.includeMisalignedToolStripMenuItem});
|
||||
this.DataTypetoolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("DataTypetoolStripSplitButton1.Image")));
|
||||
this.DataTypetoolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.DataTypetoolStripSplitButton1.Name = "DataTypetoolStripSplitButton1";
|
||||
this.DataTypetoolStripSplitButton1.Size = new System.Drawing.Size(73, 22);
|
||||
this.DataTypetoolStripSplitButton1.Text = "Data Type";
|
||||
//
|
||||
// unsignedToolStripMenuItem
|
||||
//
|
||||
this.unsignedToolStripMenuItem.Checked = true;
|
||||
this.unsignedToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.unsignedToolStripMenuItem.Name = "unsignedToolStripMenuItem";
|
||||
this.unsignedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.unsignedToolStripMenuItem.Text = "Unsigned";
|
||||
this.unsignedToolStripMenuItem.Click += new System.EventHandler(this.unsignedToolStripMenuItem_Click);
|
||||
//
|
||||
// signedToolStripMenuItem
|
||||
//
|
||||
this.signedToolStripMenuItem.Name = "signedToolStripMenuItem";
|
||||
this.signedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.signedToolStripMenuItem.Text = "Signed";
|
||||
this.signedToolStripMenuItem.Click += new System.EventHandler(this.signedToolStripMenuItem_Click);
|
||||
//
|
||||
// hexadecimalToolStripMenuItem
|
||||
//
|
||||
this.hexadecimalToolStripMenuItem.Name = "hexadecimalToolStripMenuItem";
|
||||
this.hexadecimalToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.hexadecimalToolStripMenuItem.Text = "Hexadecimal";
|
||||
this.hexadecimalToolStripMenuItem.Click += new System.EventHandler(this.hexadecimalToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator3
|
||||
//
|
||||
this.toolStripSeparator3.Name = "toolStripSeparator3";
|
||||
this.toolStripSeparator3.Size = new System.Drawing.Size(173, 6);
|
||||
//
|
||||
// includeMisalignedToolStripMenuItem
|
||||
//
|
||||
this.includeMisalignedToolStripMenuItem.Name = "includeMisalignedToolStripMenuItem";
|
||||
this.includeMisalignedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.includeMisalignedToolStripMenuItem.Text = "Include mis-aligned";
|
||||
this.includeMisalignedToolStripMenuItem.Click += new System.EventHandler(this.includeMisalignedToolStripMenuItem_Click);
|
||||
//
|
||||
// EndiantoolSplitButton
|
||||
//
|
||||
this.EndiantoolSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.EndiantoolSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.bigEndianToolStripMenuItem,
|
||||
this.littleEndianToolStripMenuItem});
|
||||
this.EndiantoolSplitButton.Image = ((System.Drawing.Image)(resources.GetObject("EndiantoolSplitButton.Image")));
|
||||
this.EndiantoolSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.EndiantoolSplitButton.Name = "EndiantoolSplitButton";
|
||||
this.EndiantoolSplitButton.Size = new System.Drawing.Size(55, 22);
|
||||
this.EndiantoolSplitButton.Text = "Endian";
|
||||
//
|
||||
// bigEndianToolStripMenuItem
|
||||
//
|
||||
this.bigEndianToolStripMenuItem.Checked = true;
|
||||
this.bigEndianToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.bigEndianToolStripMenuItem.Name = "bigEndianToolStripMenuItem";
|
||||
this.bigEndianToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
|
||||
this.bigEndianToolStripMenuItem.Text = "Big Endian";
|
||||
this.bigEndianToolStripMenuItem.Click += new System.EventHandler(this.bigEndianToolStripMenuItem_Click);
|
||||
//
|
||||
// littleEndianToolStripMenuItem
|
||||
//
|
||||
this.littleEndianToolStripMenuItem.Name = "littleEndianToolStripMenuItem";
|
||||
this.littleEndianToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
|
||||
this.littleEndianToolStripMenuItem.Text = "Little Endian";
|
||||
this.littleEndianToolStripMenuItem.Click += new System.EventHandler(this.littleEndianToolStripMenuItem_Click);
|
||||
//
|
||||
// CompareToBox
|
||||
//
|
||||
this.CompareToBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
|
@ -850,245 +1089,6 @@
|
|||
this.OutputLabel.TabIndex = 9;
|
||||
this.OutputLabel.Text = " ";
|
||||
//
|
||||
// NewSearchtoolStripButton
|
||||
//
|
||||
this.NewSearchtoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.NewSearchtoolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.restart;
|
||||
this.NewSearchtoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.NewSearchtoolStripButton.Name = "NewSearchtoolStripButton";
|
||||
this.NewSearchtoolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.NewSearchtoolStripButton.Text = "New Search";
|
||||
this.NewSearchtoolStripButton.Click += new System.EventHandler(this.NewSearchtoolStripButton_Click);
|
||||
//
|
||||
// toolStripButton1
|
||||
//
|
||||
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
||||
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.toolStripButton1.Name = "toolStripButton1";
|
||||
this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
|
||||
this.toolStripButton1.Text = "Search";
|
||||
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
||||
//
|
||||
// SetCurrToPrevtoolStripButton2
|
||||
//
|
||||
this.SetCurrToPrevtoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.SetCurrToPrevtoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.Refresh;
|
||||
this.SetCurrToPrevtoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.SetCurrToPrevtoolStripButton2.Name = "SetCurrToPrevtoolStripButton2";
|
||||
this.SetCurrToPrevtoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.SetCurrToPrevtoolStripButton2.Text = "Copy Value to Prev";
|
||||
this.SetCurrToPrevtoolStripButton2.Click += new System.EventHandler(this.SetCurrToPrevtoolStripButton2_Click);
|
||||
//
|
||||
// ClearChangeCountstoolStripButton
|
||||
//
|
||||
this.ClearChangeCountstoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.ClearChangeCountstoolStripButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.ClearChangeCountstoolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("ClearChangeCountstoolStripButton.Image")));
|
||||
this.ClearChangeCountstoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.ClearChangeCountstoolStripButton.Name = "ClearChangeCountstoolStripButton";
|
||||
this.ClearChangeCountstoolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.ClearChangeCountstoolStripButton.Text = "C";
|
||||
this.ClearChangeCountstoolStripButton.ToolTipText = "Clear Change Counts";
|
||||
this.ClearChangeCountstoolStripButton.Click += new System.EventHandler(this.ClearChangeCountstoolStripButton_Click);
|
||||
//
|
||||
// UndotoolStripButton
|
||||
//
|
||||
this.UndotoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.UndotoolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.undo;
|
||||
this.UndotoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.UndotoolStripButton.Name = "UndotoolStripButton";
|
||||
this.UndotoolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.UndotoolStripButton.Text = "Undo Search";
|
||||
this.UndotoolStripButton.Click += new System.EventHandler(this.UndotoolStripButton_Click_1);
|
||||
//
|
||||
// openToolStripButton
|
||||
//
|
||||
this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
|
||||
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.openToolStripButton.Name = "openToolStripButton";
|
||||
this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.openToolStripButton.Text = "&Open";
|
||||
this.openToolStripButton.ToolTipText = "Open Search List";
|
||||
this.openToolStripButton.Click += new System.EventHandler(this.openToolStripButton_Click);
|
||||
//
|
||||
// saveToolStripButton
|
||||
//
|
||||
this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
|
||||
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.saveToolStripButton.Name = "saveToolStripButton";
|
||||
this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.saveToolStripButton.Text = "&Save";
|
||||
this.saveToolStripButton.ToolTipText = "Save Watch List";
|
||||
this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
|
||||
//
|
||||
// cutToolStripButton
|
||||
//
|
||||
this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.cutToolStripButton.Image = global::BizHawk.MultiClient.Properties.Resources.BuilderDialog_delete;
|
||||
this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.cutToolStripButton.Name = "cutToolStripButton";
|
||||
this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
|
||||
this.cutToolStripButton.Text = "C&ut";
|
||||
this.cutToolStripButton.ToolTipText = "Eliminate Selected Items";
|
||||
this.cutToolStripButton.Click += new System.EventHandler(this.cutToolStripButton_Click);
|
||||
//
|
||||
// TruncateFromFiletoolStripButton2
|
||||
//
|
||||
this.TruncateFromFiletoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.TruncateFromFiletoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.TruncateFromFile;
|
||||
this.TruncateFromFiletoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.TruncateFromFiletoolStripButton2.Name = "TruncateFromFiletoolStripButton2";
|
||||
this.TruncateFromFiletoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.TruncateFromFiletoolStripButton2.Text = "Eliminate from File";
|
||||
this.TruncateFromFiletoolStripButton2.Click += new System.EventHandler(this.TruncateFromFiletoolStripButton2_Click);
|
||||
//
|
||||
// ExcludeRamWatchtoolStripButton2
|
||||
//
|
||||
this.ExcludeRamWatchtoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.ExcludeRamWatchtoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.TruncateFromRW;
|
||||
this.ExcludeRamWatchtoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.ExcludeRamWatchtoolStripButton2.Name = "ExcludeRamWatchtoolStripButton2";
|
||||
this.ExcludeRamWatchtoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.ExcludeRamWatchtoolStripButton2.Text = "Elmininate Ram Watch list";
|
||||
this.ExcludeRamWatchtoolStripButton2.Click += new System.EventHandler(this.ExcludeRamWatchtoolStripButton2_Click);
|
||||
//
|
||||
// WatchtoolStripButton1
|
||||
//
|
||||
this.WatchtoolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.WatchtoolStripButton1.Image = global::BizHawk.MultiClient.Properties.Resources.FindHS;
|
||||
this.WatchtoolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.WatchtoolStripButton1.Name = "WatchtoolStripButton1";
|
||||
this.WatchtoolStripButton1.Size = new System.Drawing.Size(23, 22);
|
||||
this.WatchtoolStripButton1.Text = "toolStripButton1";
|
||||
this.WatchtoolStripButton1.Click += new System.EventHandler(this.WatchtoolStripButton1_Click);
|
||||
//
|
||||
// PoketoolStripButton1
|
||||
//
|
||||
this.PoketoolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.PoketoolStripButton1.Image = global::BizHawk.MultiClient.Properties.Resources.poke;
|
||||
this.PoketoolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.PoketoolStripButton1.Name = "PoketoolStripButton1";
|
||||
this.PoketoolStripButton1.Size = new System.Drawing.Size(23, 22);
|
||||
this.PoketoolStripButton1.Text = "Poke";
|
||||
this.PoketoolStripButton1.Click += new System.EventHandler(this.PoketoolStripButton1_Click);
|
||||
//
|
||||
// DataSizetoolStripSplitButton1
|
||||
//
|
||||
this.DataSizetoolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.DataSizetoolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.byteToolStripMenuItem,
|
||||
this.bytesToolStripMenuItem,
|
||||
this.dWordToolStripMenuItem1});
|
||||
this.DataSizetoolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("DataSizetoolStripSplitButton1.Image")));
|
||||
this.DataSizetoolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.DataSizetoolStripSplitButton1.Name = "DataSizetoolStripSplitButton1";
|
||||
this.DataSizetoolStripSplitButton1.Size = new System.Drawing.Size(68, 22);
|
||||
this.DataSizetoolStripSplitButton1.Text = "Data Size";
|
||||
//
|
||||
// byteToolStripMenuItem
|
||||
//
|
||||
this.byteToolStripMenuItem.Checked = true;
|
||||
this.byteToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.byteToolStripMenuItem.Name = "byteToolStripMenuItem";
|
||||
this.byteToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
|
||||
this.byteToolStripMenuItem.Text = "1 Byte";
|
||||
this.byteToolStripMenuItem.Click += new System.EventHandler(this.byteToolStripMenuItem_Click);
|
||||
//
|
||||
// bytesToolStripMenuItem
|
||||
//
|
||||
this.bytesToolStripMenuItem.Name = "bytesToolStripMenuItem";
|
||||
this.bytesToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
|
||||
this.bytesToolStripMenuItem.Text = "2 Bytes";
|
||||
this.bytesToolStripMenuItem.Click += new System.EventHandler(this.bytesToolStripMenuItem_Click);
|
||||
//
|
||||
// dWordToolStripMenuItem1
|
||||
//
|
||||
this.dWordToolStripMenuItem1.Name = "dWordToolStripMenuItem1";
|
||||
this.dWordToolStripMenuItem1.Size = new System.Drawing.Size(121, 22);
|
||||
this.dWordToolStripMenuItem1.Text = "4 Bytes";
|
||||
this.dWordToolStripMenuItem1.Click += new System.EventHandler(this.dWordToolStripMenuItem1_Click);
|
||||
//
|
||||
// DataTypetoolStripSplitButton1
|
||||
//
|
||||
this.DataTypetoolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.DataTypetoolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.unsignedToolStripMenuItem,
|
||||
this.signedToolStripMenuItem,
|
||||
this.hexadecimalToolStripMenuItem,
|
||||
this.toolStripSeparator3,
|
||||
this.includeMisalignedToolStripMenuItem});
|
||||
this.DataTypetoolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("DataTypetoolStripSplitButton1.Image")));
|
||||
this.DataTypetoolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.DataTypetoolStripSplitButton1.Name = "DataTypetoolStripSplitButton1";
|
||||
this.DataTypetoolStripSplitButton1.Size = new System.Drawing.Size(73, 22);
|
||||
this.DataTypetoolStripSplitButton1.Text = "Data Type";
|
||||
//
|
||||
// unsignedToolStripMenuItem
|
||||
//
|
||||
this.unsignedToolStripMenuItem.Checked = true;
|
||||
this.unsignedToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.unsignedToolStripMenuItem.Name = "unsignedToolStripMenuItem";
|
||||
this.unsignedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.unsignedToolStripMenuItem.Text = "Unsigned";
|
||||
this.unsignedToolStripMenuItem.Click += new System.EventHandler(this.unsignedToolStripMenuItem_Click);
|
||||
//
|
||||
// signedToolStripMenuItem
|
||||
//
|
||||
this.signedToolStripMenuItem.Name = "signedToolStripMenuItem";
|
||||
this.signedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.signedToolStripMenuItem.Text = "Signed";
|
||||
this.signedToolStripMenuItem.Click += new System.EventHandler(this.signedToolStripMenuItem_Click);
|
||||
//
|
||||
// hexadecimalToolStripMenuItem
|
||||
//
|
||||
this.hexadecimalToolStripMenuItem.Name = "hexadecimalToolStripMenuItem";
|
||||
this.hexadecimalToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.hexadecimalToolStripMenuItem.Text = "Hexadecimal";
|
||||
this.hexadecimalToolStripMenuItem.Click += new System.EventHandler(this.hexadecimalToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator3
|
||||
//
|
||||
this.toolStripSeparator3.Name = "toolStripSeparator3";
|
||||
this.toolStripSeparator3.Size = new System.Drawing.Size(173, 6);
|
||||
//
|
||||
// includeMisalignedToolStripMenuItem
|
||||
//
|
||||
this.includeMisalignedToolStripMenuItem.Name = "includeMisalignedToolStripMenuItem";
|
||||
this.includeMisalignedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
|
||||
this.includeMisalignedToolStripMenuItem.Text = "Include mis-aligned";
|
||||
this.includeMisalignedToolStripMenuItem.Click += new System.EventHandler(this.includeMisalignedToolStripMenuItem_Click);
|
||||
//
|
||||
// EndiantoolSplitButton
|
||||
//
|
||||
this.EndiantoolSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
||||
this.EndiantoolSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.bigEndianToolStripMenuItem,
|
||||
this.littleEndianToolStripMenuItem});
|
||||
this.EndiantoolSplitButton.Image = ((System.Drawing.Image)(resources.GetObject("EndiantoolSplitButton.Image")));
|
||||
this.EndiantoolSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.EndiantoolSplitButton.Name = "EndiantoolSplitButton";
|
||||
this.EndiantoolSplitButton.Size = new System.Drawing.Size(55, 22);
|
||||
this.EndiantoolSplitButton.Text = "Endian";
|
||||
//
|
||||
// bigEndianToolStripMenuItem
|
||||
//
|
||||
this.bigEndianToolStripMenuItem.Checked = true;
|
||||
this.bigEndianToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.bigEndianToolStripMenuItem.Name = "bigEndianToolStripMenuItem";
|
||||
this.bigEndianToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
|
||||
this.bigEndianToolStripMenuItem.Text = "Big Endian";
|
||||
this.bigEndianToolStripMenuItem.Click += new System.EventHandler(this.bigEndianToolStripMenuItem_Click);
|
||||
//
|
||||
// littleEndianToolStripMenuItem
|
||||
//
|
||||
this.littleEndianToolStripMenuItem.Name = "littleEndianToolStripMenuItem";
|
||||
this.littleEndianToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
|
||||
this.littleEndianToolStripMenuItem.Text = "Little Endian";
|
||||
this.littleEndianToolStripMenuItem.Click += new System.EventHandler(this.littleEndianToolStripMenuItem_Click);
|
||||
//
|
||||
// RamSearch
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
|
@ -120,50 +120,7 @@
|
|||
<metadata name="SearchtoolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>457, 17</value>
|
||||
</metadata>
|
||||
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>150, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>259, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>358, 17</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="toolStripButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAjpJREFUOE+Nkl9I
|
||||
U2EYxl0RQuFQI7oIuqno30U3XXoRVCAJXbibWkTgRRd2MZoZjcks12iptLQIIsi2Ylu2dJrQFslkljZo
|
||||
rXWxtalMsZVIus2xTFc9PefslFnH6oMf34Hv/J73fb9zFEV/WXq9S1u2a5Nm1erizaWl5UW52ZnsZDR+
|
||||
p9l41EgtTfIr6lfafNaxZAZTeSD4GXg6CwxlgXuhHE7rOiMUt5Ni2QCLZaDGH09BWNPzgO8j4EoA7kmg
|
||||
Pw0432RRVaV5LIX8mXHLER4MfgKic4CXki8D+HPA8ALwjIFDPDvT3JeleUyuA4Xdl0SAgvc9W2cjQXYS
|
||||
JSPkLQl/Aa65XoJyk2zA3f5CQOdYoXKEUpJwEnwgMXKzVwxolw24evtFwM+2e96xXbYtVBZk3ic4AeLE
|
||||
ZOmeXzGgocF2wR5IYYB3IMwstD1F+DHEFZ/JoqLi+IjsCPmuQ02Puh1PzC0PcD+UwXOOEP5a6GKUjKdy
|
||||
0NS1TFO2EvWyERYfVtq+eVQItR6BTqudUKvrY+dbvbkb7lfoGh5HR8frfLVKM0rJRmrJtp8Bi86Dohwx
|
||||
HoBDp8OpWnOCh23kHLkozXudu0n6fIJc+JGEtuFVIWbaL8qNjfa5kpL1Lh6dJLvJFrKD7CRbyQayRpQX
|
||||
3Idr4KleJiuV5b080pE9UhUF919ZGr2v/cRgwrwPzrN1YmVJ1vONvWStJC4Jvz8ZDAbP5XpBtqaVyrIe
|
||||
nv+Q1/1TlsI2SpdyibtWqvzf8nekLoIPBKj+ywAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="ClearChangeCountstoolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAgxJREFUOE+lkvtL
|
||||
U2EYx+0PEbtpFwnBKPGKiJImGP0gYhIYs1E5GF5gIxkpA00JRSmMEF0ohMh+GaRWYlqabMVcNdS2QpaI
|
||||
VqiDIYhk397vA6fXhCjyhYdzeM/5fp7vczkAdeL2cwho7v/wWzT1zcN+Pwhr51uY2/y41PQaF+wzKKiZ
|
||||
QvaN58g0jyLd5KEUcQbg+84P/Cm2tncQjW3j68YWIqubCC3FcOJc478BAuGoZM6zvoRnakXEruEIjhc4
|
||||
/g5gZop9c+voGAyLbQIfeBZxLL9BA1jzXvuGbWamuKh+GmmVbswE19A59FEBbmoAG7YbsLtm2mZmiml9
|
||||
cvabNDwpz6YB7LYBoMXCumkJr7LOmnnHzBQ/9X2Bo2cOibm1GsBREbAQiYmw/8lnuCeWkVzcgnZlnw1j
|
||||
3HV/wuNXK6i/9x5Hc6wawDlTXHbLJ+LZUBQPRyKwdQdxutwl1h+NLXHh5Ht1ewBHsiwawCW57HyDAfWR
|
||||
dvl0uhZQ1eqX8aVc7EKLqrum651ATLf9OJx5XQM4KmY0xPzZ0hFAiQJnXB0WwME0E3IsL5B17ZlADqWb
|
||||
NYDrOepdlcysmTWWOrxqbceRWtaLk0VO1XW72D5Vckd2gMBfq8zdpmUG62NJvKM4+XyziDk24xmfWoGE
|
||||
s1c0gHPmbrPTpHNJKOCo2G1mZs20zcwUJ5yp1AB5+8/zEwgF5GMVDxh4AAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="openToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
|
@ -197,6 +154,49 @@
|
|||
Cv71r/4OTrQ4xWMwWlcAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>457, 17</value>
|
||||
</metadata>
|
||||
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>150, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>259, 17</value>
|
||||
</metadata>
|
||||
<data name="toolStripButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAjpJREFUOE+Nkl9I
|
||||
U2EYxl0RQuFQI7oIuqno30U3XXoRVCAJXbibWkTgRRd2MZoZjcks12iptLQIIsi2Ylu2dJrQFslkljZo
|
||||
rXWxtalMsZVIus2xTFc9PefslFnH6oMf34Hv/J73fb9zFEV/WXq9S1u2a5Nm1erizaWl5UW52ZnsZDR+
|
||||
p9l41EgtTfIr6lfafNaxZAZTeSD4GXg6CwxlgXuhHE7rOiMUt5Ni2QCLZaDGH09BWNPzgO8j4EoA7kmg
|
||||
Pw0432RRVaV5LIX8mXHLER4MfgKic4CXki8D+HPA8ALwjIFDPDvT3JeleUyuA4Xdl0SAgvc9W2cjQXYS
|
||||
JSPkLQl/Aa65XoJyk2zA3f5CQOdYoXKEUpJwEnwgMXKzVwxolw24evtFwM+2e96xXbYtVBZk3ic4AeLE
|
||||
ZOmeXzGgocF2wR5IYYB3IMwstD1F+DHEFZ/JoqLi+IjsCPmuQ02Puh1PzC0PcD+UwXOOEP5a6GKUjKdy
|
||||
0NS1TFO2EvWyERYfVtq+eVQItR6BTqudUKvrY+dbvbkb7lfoGh5HR8frfLVKM0rJRmrJtp8Bi86Dohwx
|
||||
HoBDp8OpWnOCh23kHLkozXudu0n6fIJc+JGEtuFVIWbaL8qNjfa5kpL1Lh6dJLvJFrKD7CRbyQayRpQX
|
||||
3Idr4KleJiuV5b080pE9UhUF919ZGr2v/cRgwrwPzrN1YmVJ1vONvWStJC4Jvz8ZDAbP5XpBtqaVyrIe
|
||||
nv+Q1/1TlsI2SpdyibtWqvzf8nekLoIPBKj+ywAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="ClearChangeCountstoolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAgxJREFUOE+lkvtL
|
||||
U2EYx+0PEbtpFwnBKPGKiJImGP0gYhIYs1E5GF5gIxkpA00JRSmMEF0ohMh+GaRWYlqabMVcNdS2QpaI
|
||||
VqiDIYhk397vA6fXhCjyhYdzeM/5fp7vczkAdeL2cwho7v/wWzT1zcN+Pwhr51uY2/y41PQaF+wzKKiZ
|
||||
QvaN58g0jyLd5KEUcQbg+84P/Cm2tncQjW3j68YWIqubCC3FcOJc478BAuGoZM6zvoRnakXEruEIjhc4
|
||||
/g5gZop9c+voGAyLbQIfeBZxLL9BA1jzXvuGbWamuKh+GmmVbswE19A59FEBbmoAG7YbsLtm2mZmiml9
|
||||
cvabNDwpz6YB7LYBoMXCumkJr7LOmnnHzBQ/9X2Bo2cOibm1GsBREbAQiYmw/8lnuCeWkVzcgnZlnw1j
|
||||
3HV/wuNXK6i/9x5Hc6wawDlTXHbLJ+LZUBQPRyKwdQdxutwl1h+NLXHh5Ht1ewBHsiwawCW57HyDAfWR
|
||||
dvl0uhZQ1eqX8aVc7EKLqrum651ATLf9OJx5XQM4KmY0xPzZ0hFAiQJnXB0WwME0E3IsL5B17ZlADqWb
|
||||
NYDrOepdlcysmTWWOrxqbceRWtaLk0VO1XW72D5Vckd2gMBfq8zdpmUG62NJvKM4+XyziDk24xmfWoGE
|
||||
s1c0gHPmbrPTpHNJKOCo2G1mZs20zcwUJ5yp1AB5+8/zEwgF5GMVDxh4AAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="toolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>358, 17</value>
|
||||
</metadata>
|
||||
<data name="DataSizetoolStripSplitButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
|
|
|
@ -71,6 +71,7 @@
|
|||
this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.duplicateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.pokeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.viewInHexEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.insertSeperatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.moveUpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
|
@ -80,10 +81,13 @@
|
|||
this.showPreviousValueToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.prevValueAsChangeAmountToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.WatchCountLabel = new System.Windows.Forms.Label();
|
||||
this.MessageLabel = new System.Windows.Forms.Label();
|
||||
this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.NewWatchStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.EditWatchToolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
|
@ -91,12 +95,11 @@
|
|||
this.DuplicateWatchToolStripButton = new System.Windows.Forms.ToolStripButton();
|
||||
this.PoketoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.MoveUpStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.MoveDownStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.WatchCountLabel = new System.Windows.Forms.Label();
|
||||
this.MessageLabel = new System.Windows.Forms.Label();
|
||||
this.viewInHexEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.freezeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.freezeAddressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.FreezetoolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.menuStrip1.SuspendLayout();
|
||||
this.contextMenuStrip1.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
|
@ -225,8 +228,9 @@
|
|||
this.editWatchToolStripMenuItem,
|
||||
this.removeWatchToolStripMenuItem,
|
||||
this.duplicateWatchToolStripMenuItem,
|
||||
this.insertSeparatorToolStripMenuItem,
|
||||
this.pokeAddressToolStripMenuItem,
|
||||
this.freezeAddressToolStripMenuItem,
|
||||
this.insertSeparatorToolStripMenuItem,
|
||||
this.clearChangeCountsToolStripMenuItem,
|
||||
this.toolStripSeparator3,
|
||||
this.moveUpToolStripMenuItem,
|
||||
|
@ -417,6 +421,7 @@
|
|||
this.removeToolStripMenuItem,
|
||||
this.duplicateToolStripMenuItem,
|
||||
this.pokeToolStripMenuItem,
|
||||
this.freezeToolStripMenuItem,
|
||||
this.viewInHexEditorToolStripMenuItem,
|
||||
this.toolStripSeparator6,
|
||||
this.insertSeperatorToolStripMenuItem,
|
||||
|
@ -458,6 +463,13 @@
|
|||
this.pokeToolStripMenuItem.Text = "&Poke";
|
||||
this.pokeToolStripMenuItem.Click += new System.EventHandler(this.pokeToolStripMenuItem_Click);
|
||||
//
|
||||
// viewInHexEditorToolStripMenuItem
|
||||
//
|
||||
this.viewInHexEditorToolStripMenuItem.Name = "viewInHexEditorToolStripMenuItem";
|
||||
this.viewInHexEditorToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
|
||||
this.viewInHexEditorToolStripMenuItem.Text = "View in Hex Editor";
|
||||
this.viewInHexEditorToolStripMenuItem.Click += new System.EventHandler(this.viewInHexEditorToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStripSeparator6
|
||||
//
|
||||
this.toolStripSeparator6.Name = "toolStripSeparator6";
|
||||
|
@ -523,6 +535,7 @@
|
|||
this.ClearChangeCountstoolStripButton,
|
||||
this.DuplicateWatchToolStripButton,
|
||||
this.PoketoolStripButton2,
|
||||
this.FreezetoolStripButton2,
|
||||
this.toolStripButton1,
|
||||
this.toolStripSeparator5,
|
||||
this.MoveUpStripButton1,
|
||||
|
@ -533,6 +546,35 @@
|
|||
this.toolStrip1.TabIndex = 2;
|
||||
this.toolStrip1.Text = "toolStrip1";
|
||||
//
|
||||
// toolStripSeparator
|
||||
//
|
||||
this.toolStripSeparator.Name = "toolStripSeparator";
|
||||
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// toolStripSeparator5
|
||||
//
|
||||
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
||||
this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// WatchCountLabel
|
||||
//
|
||||
this.WatchCountLabel.AutoSize = true;
|
||||
this.WatchCountLabel.Location = new System.Drawing.Point(22, 57);
|
||||
this.WatchCountLabel.Name = "WatchCountLabel";
|
||||
this.WatchCountLabel.Size = new System.Drawing.Size(56, 13);
|
||||
this.WatchCountLabel.TabIndex = 4;
|
||||
this.WatchCountLabel.Text = "0 watches";
|
||||
//
|
||||
// MessageLabel
|
||||
//
|
||||
this.MessageLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.MessageLabel.AutoSize = true;
|
||||
this.MessageLabel.Location = new System.Drawing.Point(28, 390);
|
||||
this.MessageLabel.Name = "MessageLabel";
|
||||
this.MessageLabel.Size = new System.Drawing.Size(187, 13);
|
||||
this.MessageLabel.TabIndex = 5;
|
||||
this.MessageLabel.Text = " ";
|
||||
//
|
||||
// newToolStripButton
|
||||
//
|
||||
this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
|
@ -563,11 +605,6 @@
|
|||
this.saveToolStripButton.Text = "&Save";
|
||||
this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
|
||||
//
|
||||
// toolStripSeparator
|
||||
//
|
||||
this.toolStripSeparator.Name = "toolStripSeparator";
|
||||
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// NewWatchStripButton1
|
||||
//
|
||||
this.NewWatchStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
|
@ -644,11 +681,6 @@
|
|||
this.toolStripButton1.ToolTipText = "Insert Separator";
|
||||
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
|
||||
//
|
||||
// toolStripSeparator5
|
||||
//
|
||||
this.toolStripSeparator5.Name = "toolStripSeparator5";
|
||||
this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
|
||||
//
|
||||
// MoveUpStripButton1
|
||||
//
|
||||
this.MoveUpStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
|
@ -669,31 +701,30 @@
|
|||
this.MoveDownStripButton1.Text = "Move Down";
|
||||
this.MoveDownStripButton1.Click += new System.EventHandler(this.MoveDownStripButton1_Click);
|
||||
//
|
||||
// WatchCountLabel
|
||||
// freezeToolStripMenuItem
|
||||
//
|
||||
this.WatchCountLabel.AutoSize = true;
|
||||
this.WatchCountLabel.Location = new System.Drawing.Point(22, 57);
|
||||
this.WatchCountLabel.Name = "WatchCountLabel";
|
||||
this.WatchCountLabel.Size = new System.Drawing.Size(56, 13);
|
||||
this.WatchCountLabel.TabIndex = 4;
|
||||
this.WatchCountLabel.Text = "0 watches";
|
||||
this.freezeToolStripMenuItem.Name = "freezeToolStripMenuItem";
|
||||
this.freezeToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
|
||||
this.freezeToolStripMenuItem.Text = "&Freeze";
|
||||
this.freezeToolStripMenuItem.Click += new System.EventHandler(this.freezeToolStripMenuItem_Click);
|
||||
//
|
||||
// MessageLabel
|
||||
// freezeAddressToolStripMenuItem
|
||||
//
|
||||
this.MessageLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
||||
this.MessageLabel.AutoSize = true;
|
||||
this.MessageLabel.Location = new System.Drawing.Point(28, 390);
|
||||
this.MessageLabel.Name = "MessageLabel";
|
||||
this.MessageLabel.Size = new System.Drawing.Size(187, 13);
|
||||
this.MessageLabel.TabIndex = 5;
|
||||
this.MessageLabel.Text = " ";
|
||||
this.freezeAddressToolStripMenuItem.Name = "freezeAddressToolStripMenuItem";
|
||||
this.freezeAddressToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
|
||||
this.freezeAddressToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
|
||||
this.freezeAddressToolStripMenuItem.Text = "Freeze Address";
|
||||
this.freezeAddressToolStripMenuItem.Click += new System.EventHandler(this.freezeAddressToolStripMenuItem_Click);
|
||||
//
|
||||
// viewInHexEditorToolStripMenuItem
|
||||
// FreezetoolStripButton2
|
||||
//
|
||||
this.viewInHexEditorToolStripMenuItem.Name = "viewInHexEditorToolStripMenuItem";
|
||||
this.viewInHexEditorToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
|
||||
this.viewInHexEditorToolStripMenuItem.Text = "View in Hex Editor";
|
||||
this.viewInHexEditorToolStripMenuItem.Click += new System.EventHandler(this.viewInHexEditorToolStripMenuItem_Click);
|
||||
this.FreezetoolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||
this.FreezetoolStripButton2.Image = global::BizHawk.MultiClient.Properties.Resources.cheat;
|
||||
this.FreezetoolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||
this.FreezetoolStripButton2.Name = "FreezetoolStripButton2";
|
||||
this.FreezetoolStripButton2.Size = new System.Drawing.Size(23, 22);
|
||||
this.FreezetoolStripButton2.Text = "Freeze";
|
||||
this.FreezetoolStripButton2.Click += new System.EventHandler(this.FreezetoolStripButton2_Click);
|
||||
//
|
||||
// RamWatch
|
||||
//
|
||||
|
@ -793,5 +824,8 @@
|
|||
private System.Windows.Forms.ToolStripMenuItem showPreviousValueToolStripMenuItem1;
|
||||
private System.Windows.Forms.ToolStripMenuItem prevValueAsChangeAmountToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem viewInHexEditorToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem freezeToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem freezeAddressToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripButton FreezetoolStripButton2;
|
||||
}
|
||||
}
|
|
@ -17,6 +17,8 @@ namespace BizHawk.MultiClient
|
|||
public partial class RamWatch : Form
|
||||
{
|
||||
//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
|
||||
|
@ -874,6 +876,8 @@ namespace BizHawk.MultiClient
|
|||
removeWatchToolStripMenuItem.Enabled = true;
|
||||
moveUpToolStripMenuItem.Enabled = true;
|
||||
moveDownToolStripMenuItem.Enabled = true;
|
||||
pokeAddressToolStripMenuItem.Enabled = true;
|
||||
freezeAddressToolStripMenuItem.Enabled = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -882,6 +886,8 @@ namespace BizHawk.MultiClient
|
|||
removeWatchToolStripMenuItem.Enabled = false;
|
||||
moveUpToolStripMenuItem.Enabled = false;
|
||||
moveDownToolStripMenuItem.Enabled = false;
|
||||
pokeAddressToolStripMenuItem.Enabled = false;
|
||||
freezeAddressToolStripMenuItem.Enabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -931,8 +937,9 @@ namespace BizHawk.MultiClient
|
|||
contextMenuStrip1.Items[3].Visible = false;
|
||||
contextMenuStrip1.Items[4].Visible = false;
|
||||
contextMenuStrip1.Items[5].Visible = false;
|
||||
contextMenuStrip1.Items[7].Visible = false;
|
||||
contextMenuStrip1.Items[6].Visible = false;
|
||||
contextMenuStrip1.Items[8].Visible = false;
|
||||
contextMenuStrip1.Items[9].Visible = false;
|
||||
|
||||
}
|
||||
else
|
||||
|
@ -942,19 +949,19 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
|
||||
if (Global.Config.RamWatchShowChangeColumn)
|
||||
contextMenuStrip1.Items[10].Text = "Hide change counts";
|
||||
contextMenuStrip1.Items[11].Text = "Hide change counts";
|
||||
else
|
||||
contextMenuStrip1.Items[10].Text = "Show change counts";
|
||||
contextMenuStrip1.Items[11].Text = "Show change counts";
|
||||
|
||||
if (Global.Config.RamWatchShowPrevColumn)
|
||||
contextMenuStrip1.Items[11].Text = "Hide previous value";
|
||||
contextMenuStrip1.Items[12].Text = "Hide previous value";
|
||||
else
|
||||
contextMenuStrip1.Items[11].Text = "Show previous value";
|
||||
contextMenuStrip1.Items[12].Text = "Show previous value";
|
||||
|
||||
if (Global.Config.RamWatchShowChangeFromPrev)
|
||||
contextMenuStrip1.Items[12].Text = "Display Previous value as previous";
|
||||
contextMenuStrip1.Items[13].Text = "Display Previous value as previous";
|
||||
else
|
||||
contextMenuStrip1.Items[12].Text = "Display Previosu value as change amount";
|
||||
contextMenuStrip1.Items[13].Text = "Display Previosu value as change amount";
|
||||
}
|
||||
|
||||
private void WatchListView_MouseDoubleClick(object sender, MouseEventArgs e)
|
||||
|
@ -1061,10 +1068,35 @@ namespace BizHawk.MultiClient
|
|||
//if (i < 0x100) return 2;
|
||||
//if (i < 0x1000) return 3; //adelikat: commenting these out because I decided that regardless of domain, 4 digits should be the minimum
|
||||
if (i < 0x10000) return 4;
|
||||
//if (i < 0x100000) return 5;
|
||||
if (i < 0x1000000) return 6;
|
||||
//if (i < 0x10000000) return 7;
|
||||
else return 8;
|
||||
}
|
||||
|
||||
private void freezeToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
FreezeAddress();
|
||||
}
|
||||
|
||||
private void FreezeAddress()
|
||||
{
|
||||
ListView.SelectedIndexCollection indexes = WatchListView.SelectedIndices;
|
||||
//TODO: if 2 byte or 4 byte, freeze correct addresses
|
||||
if (indexes.Count > 0)
|
||||
{
|
||||
Cheat c = new Cheat("", watchList[indexes[0]].address, (byte)watchList[indexes[0]].value,
|
||||
true, Global.Emulator.MainMemory);
|
||||
Global.MainForm.Cheats1.AddCheat(c);
|
||||
}
|
||||
}
|
||||
|
||||
private void freezeAddressToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
FreezeAddress();
|
||||
}
|
||||
|
||||
private void FreezetoolStripButton2_Click(object sender, EventArgs e)
|
||||
{
|
||||
FreezeAddress();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue