420 lines
14 KiB
C#
420 lines
14 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.IO;
|
|
using System.Globalization;
|
|
|
|
namespace BizHawk.MultiClient
|
|
{
|
|
public partial class RamWatch : Form
|
|
{
|
|
//TODO:
|
|
//Recent files & autoload
|
|
//Keep track of changes to watch list in order to prompt the user to save changes, also use this to enable/disable things like quick save
|
|
//implement separator feature
|
|
//Display address as hex
|
|
//Since window is resizable, save window size
|
|
//Fix window position setting, shoudl it be set in a specific event?
|
|
|
|
List<Watch> watchList = new List<Watch>();
|
|
string currentWatchFile = "";
|
|
|
|
public RamWatch()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public int HowMany(string str, char c) //Shouldn't something like this exist already? Counts how many times c in in str
|
|
{
|
|
int count = 0;
|
|
for (int x = 0; x < str.Length; x++)
|
|
{
|
|
if (str[x] == c)
|
|
count++;
|
|
}
|
|
return count;
|
|
}
|
|
|
|
public void LoadWatchFromRecent(string file)
|
|
{
|
|
bool r = LoadWatchFile(file, false);
|
|
if (!r)
|
|
{
|
|
DialogResult result = MessageBox.Show("Could not open " + file + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error);
|
|
if (result == DialogResult.Yes)
|
|
Global.Config.RecentWatches.Remove(file);
|
|
}
|
|
DisplayWatchList();
|
|
}
|
|
|
|
private void NewWatchList()
|
|
{
|
|
//TODO: ask to save changes if necessary
|
|
watchList.Clear();
|
|
DisplayWatchList();
|
|
currentWatchFile = "";
|
|
}
|
|
|
|
private bool SaveWatchFile(string path)
|
|
{
|
|
var file = new FileInfo(path);
|
|
//if (file.Exists == true) //TODO: prompt to overwrite
|
|
|
|
using (StreamWriter sw = new StreamWriter(path))
|
|
{
|
|
string str = "";
|
|
|
|
for (int x = 0; x < watchList.Count; x++)
|
|
{
|
|
str += watchList[x].address.ToString() + "\t"; //TODO: Make hex
|
|
str += watchList[x].GetTypeByChar().ToString() + "\t";
|
|
str += watchList[x].GetSignedByChar().ToString() + "\t";
|
|
|
|
if (watchList[x].bigendian == true)
|
|
str += "1\t";
|
|
else
|
|
str += "0\t";
|
|
|
|
str += watchList[x].notes + "\n";
|
|
}
|
|
|
|
sw.WriteLine(str);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool LoadWatchFile(string path, bool append)
|
|
{
|
|
int y, z;
|
|
var file = new FileInfo(path);
|
|
if (file.Exists == false) return false;
|
|
|
|
using (StreamReader sr = file.OpenText())
|
|
{
|
|
currentWatchFile = path;
|
|
|
|
int count = 0;
|
|
string s = "";
|
|
string temp = "";
|
|
|
|
if (append == false)
|
|
watchList.Clear(); //Wipe existing list and read from file
|
|
|
|
while ((s = sr.ReadLine()) != null)
|
|
{
|
|
//parse each line and add to watchList
|
|
|
|
//.wch files from other emulators start with a number representing the number of watch, that line can be discarded here
|
|
//Any properly formatted line couldn't possibly be this short anyway, this also takes care of any garbage lines that might be in a file
|
|
if (s.Length < 5) continue;
|
|
|
|
z = HowMany(s, '\t');
|
|
if (z == 5)
|
|
{
|
|
//If 5, then this is a .wch file format made from another emulator, the first column (watch position) is not needed here
|
|
y = s.IndexOf('\t') + 1;
|
|
s = s.Substring(y, s.Length - y); //5 digit value representing the watch position number
|
|
}
|
|
else if (z != 4)
|
|
continue; //If not 4, something is wrong with this line, ignore it
|
|
count++;
|
|
Watch w = new Watch();
|
|
|
|
temp = s.Substring(0, s.IndexOf('\t'));
|
|
w.address = int.Parse(temp, NumberStyles.HexNumber);
|
|
|
|
y = s.IndexOf('\t') + 1;
|
|
s = s.Substring(y, s.Length - y); //Type
|
|
w.SetTypeByChar(s[0]);
|
|
|
|
y = s.IndexOf('\t') + 1;
|
|
s = s.Substring(y, s.Length - y); //Signed
|
|
w.SetSignedByChar(s[0]);
|
|
|
|
y = s.IndexOf('\t') + 1;
|
|
s = s.Substring(y, s.Length - y); //Endian
|
|
y = Int16.Parse(s[0].ToString());
|
|
if (y == 0)
|
|
w.bigendian = false;
|
|
else
|
|
w.bigendian = true;
|
|
|
|
w.notes = s.Substring(2, s.Length - 2); //User notes
|
|
|
|
watchList.Add(w);
|
|
}
|
|
|
|
Global.Config.RecentWatches.Add(file.FullName);
|
|
|
|
//Update the number of watches
|
|
WatchCountLabel.Text = count.ToString() + " watches";
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void AddNewWatch()
|
|
{
|
|
}
|
|
|
|
void EditWatch()
|
|
{
|
|
}
|
|
|
|
void RemoveWatch()
|
|
{
|
|
}
|
|
|
|
void DuplicateWatch()
|
|
{
|
|
}
|
|
|
|
void MoveUp()
|
|
{
|
|
}
|
|
|
|
void MoveDown()
|
|
{
|
|
}
|
|
|
|
private void exitToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
private void newListToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
NewWatchList();
|
|
}
|
|
|
|
private FileInfo GetFileFromUser()
|
|
{
|
|
var ofd = new OpenFileDialog();
|
|
ofd.InitialDirectory = Global.Config.LastRomPath;
|
|
ofd.Filter = "Watch Files (*.wch)|*.wch|All Files|*.*";
|
|
ofd.RestoreDirectory = true;
|
|
|
|
Global.Sound.StopSound();
|
|
var result = ofd.ShowDialog();
|
|
Global.Sound.StartSound();
|
|
if (result != DialogResult.OK)
|
|
return null;
|
|
var file = new FileInfo(ofd.FileName);
|
|
Global.Config.LastRomPath = file.DirectoryName;
|
|
return file;
|
|
}
|
|
|
|
private void openToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var file = GetFileFromUser();
|
|
if (file != null)
|
|
LoadWatchFile(file.FullName, false);
|
|
DisplayWatchList();
|
|
}
|
|
|
|
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.Compare(currentWatchFile, "") == 0) return;
|
|
|
|
SaveWatchFile(currentWatchFile); //TODO: only do this if changes have been made
|
|
}
|
|
|
|
private FileInfo GetSaveFileFromUser()
|
|
{
|
|
var sfd = new SaveFileDialog();
|
|
sfd.InitialDirectory = Global.Config.LastRomPath;
|
|
sfd.Filter = "Watch Files (*.wch)|*.wch|All Files|*.*";
|
|
sfd.RestoreDirectory = true;
|
|
Global.Sound.StopSound();
|
|
var result = sfd.ShowDialog();
|
|
Global.Sound.StartSound();
|
|
if (result != DialogResult.OK)
|
|
return null;
|
|
var file = new FileInfo(sfd.FileName);
|
|
Global.Config.LastRomPath = file.DirectoryName;
|
|
return file;
|
|
}
|
|
|
|
private void saveAsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var file = GetSaveFileFromUser();
|
|
if (file != null)
|
|
SaveWatchFile(file.FullName);
|
|
//TODO: inform the user (with using an annoying message box)
|
|
}
|
|
|
|
private void appendFileToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var file = GetFileFromUser();
|
|
if (file != null)
|
|
LoadWatchFile(file.FullName, true);
|
|
DisplayWatchList();
|
|
}
|
|
|
|
private void autoLoadToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
UpdateAutoLoadRamWatch();
|
|
}
|
|
|
|
private void newWatchToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
AddNewWatch();
|
|
}
|
|
|
|
private void editWatchToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
EditWatch();
|
|
}
|
|
|
|
private void removeWatchToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
RemoveWatch();
|
|
}
|
|
|
|
private void duplicateWatchToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
DuplicateWatch();
|
|
}
|
|
|
|
private void moveUpToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
MoveUp();
|
|
}
|
|
|
|
private void moveDownToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
MoveDown();
|
|
}
|
|
|
|
private void DisplayWatchList()
|
|
{
|
|
WatchListView.Items.Clear();
|
|
for (int x = 0; x < watchList.Count; x++)
|
|
{
|
|
ListViewItem item = new ListViewItem(watchList[x].address.ToString());
|
|
item.SubItems.Add(watchList[x].value.ToString());
|
|
item.SubItems.Add(watchList[x].notes);
|
|
WatchListView.Items.Add(item);
|
|
}
|
|
|
|
}
|
|
|
|
private void RamWatch_Load(object sender, EventArgs e)
|
|
{
|
|
if (Global.Config.RamWatchWndx >= 0 && Global.Config.RamWatchWndy >= 0)
|
|
this.Location = new Point(Global.Config.RamWatchWndx, Global.Config.RamWatchWndy);
|
|
}
|
|
|
|
private void filesToolStripMenuItem_DropDownOpened(object sender, EventArgs e)
|
|
{
|
|
if (Global.Config.AutoLoadRamWatch == true)
|
|
autoLoadToolStripMenuItem.Checked = true;
|
|
else
|
|
autoLoadToolStripMenuItem.Checked = false;
|
|
|
|
if (string.Compare(currentWatchFile, "") == 0)
|
|
{
|
|
saveToolStripMenuItem.Enabled = false;
|
|
}
|
|
else
|
|
{
|
|
saveToolStripMenuItem.Enabled = true;
|
|
}
|
|
}
|
|
|
|
private void UpdateAutoLoadRamWatch()
|
|
{
|
|
if (Global.Config.AutoLoadRamWatch == true)
|
|
{
|
|
Global.Config.AutoLoadRamWatch = false;
|
|
autoLoadToolStripMenuItem.Checked = false;
|
|
}
|
|
else
|
|
{
|
|
Global.Config.AutoLoadRamWatch = true;
|
|
autoLoadToolStripMenuItem.Checked = true;
|
|
}
|
|
}
|
|
private void recentToolStripMenuItem_DropDownOpened(object sender, EventArgs e)
|
|
{
|
|
//Clear out recent Roms list
|
|
//repopulate it with an up to date list
|
|
recentToolStripMenuItem.DropDownItems.Clear();
|
|
|
|
if (Global.Config.RecentWatches.IsEmpty())
|
|
{
|
|
recentToolStripMenuItem.DropDownItems.Add("None");
|
|
}
|
|
else
|
|
{
|
|
for (int x = 0; x < Global.Config.RecentWatches.Length(); x++)
|
|
{
|
|
string path = Global.Config.RecentWatches.GetRecentFileByPosition(x);
|
|
var item = new ToolStripMenuItem();
|
|
item.Text = path;
|
|
item.Click += (o, ev) => LoadWatchFromRecent(path);
|
|
recentToolStripMenuItem.DropDownItems.Add(item); //TODO: truncate this to a nice size
|
|
}
|
|
}
|
|
|
|
recentToolStripMenuItem.DropDownItems.Add("-");
|
|
|
|
var clearitem = new ToolStripMenuItem();
|
|
clearitem.Text = "&Clear";
|
|
clearitem.Click += (o, ev) => Global.Config.RecentRoms.Clear();
|
|
recentToolStripMenuItem.DropDownItems.Add(clearitem);
|
|
|
|
var auto = new ToolStripMenuItem();
|
|
auto.Text = "&Auto-Load";
|
|
auto.Click += (o, ev) => UpdateAutoLoadRamWatch();
|
|
if (Global.Config.AutoLoadRamWatch == true)
|
|
auto.Checked = true;
|
|
else
|
|
auto.Checked = false;
|
|
recentToolStripMenuItem.DropDownItems.Add(auto);
|
|
}
|
|
|
|
private void WatchListView_AfterLabelEdit(object sender, LabelEditEventArgs e)
|
|
{
|
|
// Determine if label is changed by checking for null.
|
|
if (e.Label == null)
|
|
return;
|
|
|
|
// ASCIIEncoding is used to determine if a number character has been entered.
|
|
ASCIIEncoding AE = new ASCIIEncoding();
|
|
// Convert the new label to a character array.
|
|
char[] temp = e.Label.ToCharArray();
|
|
|
|
// Check each character in the new label to determine if it is a number.
|
|
for(int x=0; x < temp.Length; x++)
|
|
{
|
|
// Encode the character from the character array to its ASCII code.
|
|
byte[] bc = AE.GetBytes(temp[x].ToString());
|
|
|
|
// Determine if the ASCII code is within the valid range of numerical values.
|
|
if(bc[0] > 47 && bc[0] < 58)
|
|
{
|
|
// Cancel the event and return the lable to its original state.
|
|
e.CancelEdit = true;
|
|
// Display a MessageBox alerting the user that numbers are not allowed.
|
|
MessageBox.Show ("The text for the item cannot contain numerical values.");
|
|
// Break out of the loop and exit.
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void RamWatch_LocationChanged(object sender, EventArgs e)
|
|
{
|
|
Global.Config.RamWatchWndx = this.Location.X;
|
|
Global.Config.RamWatchWndy = this.Location.Y;
|
|
}
|
|
}
|
|
}
|