From fd691ece0bf86d6f589b6a02e00f9648c0030dc7 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Tue, 18 Jan 2011 04:26:27 +0000 Subject: [PATCH] Made LoadRom value returning and Made a LoadRomFromRecent function. If a recent item fails to load, the user is prompted with the option to remove it from the list. --- BizHawk.MultiClient/MainForm.cs | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 2abe3f3db8..ce6212066b 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -78,7 +78,18 @@ namespace BizHawk.MultiClient if (args.Length != 0) LoadRom(args[0]); else if (Global.Config.AutoLoadMostRecentRom && !Global.Config.RecentRoms.IsEmpty()) - LoadRom(Global.Config.RecentRoms.GetRecentFileByPosition(0)); + LoadRomFromRecent(Global.Config.RecentRoms.GetRecentFileByPosition(0)); + } + + private void LoadRomFromRecent(string rom) + { + bool r = LoadRom(rom); + if (!r) + { + DialogResult result = MessageBox.Show("Could not open " + rom + "\nRemove from list?", "File not found", MessageBoxButtons.YesNo, MessageBoxIcon.Error); + if (result == DialogResult.Yes) + Global.Config.RecentRoms.Remove(rom); + } } public static ControllerDefinition ClientControlsDef = new ControllerDefinition @@ -161,10 +172,10 @@ namespace BizHawk.MultiClient return false; } - private void LoadRom(string path) + private bool LoadRom(string path) { var file = new FileInfo(path); - if (file.Exists == false) return; + if (file.Exists == false) return false; CloseGame(); @@ -201,6 +212,7 @@ namespace BizHawk.MultiClient Global.Config.RecentRoms.Add(file.FullName); if (File.Exists(game.SaveRamPath)) LoadSaveRam(); + return true; } private void LoadSaveRam() @@ -694,7 +706,7 @@ namespace BizHawk.MultiClient string path = Global.Config.RecentRoms.GetRecentFileByPosition(x); var item = new ToolStripMenuItem(); item.Text = path; - item.Click += (o, ev) => LoadRom(path); + item.Click += (o, ev) => LoadRomFromRecent(path); recentROMToolStripMenuItem.DropDownItems.Add(item); //TODO: truncate this to a nice size } }