Bind ROM in HawkFile, add .rom to open file dialog (and a TI-83 row), fix a bunch of tool dialogs to end the Restart() method if dialog is not open. TI-83 will now open properly again.

This commit is contained in:
andres.delikat 2011-04-21 00:28:04 +00:00
parent 34894b322d
commit c76f9ed729
8 changed files with 10 additions and 4 deletions

View File

@ -505,7 +505,7 @@ namespace BizHawk.MultiClient
//try binding normal rom extensions first
if (!file.IsBound)
file.BindSoleItemOf("SMS", "PCE", "SGX", "GG", "SG", "BIN", "SMD", "GB", "NES");
file.BindSoleItemOf("SMS", "PCE", "SGX", "GG", "SG", "BIN", "SMD", "GB", "NES", "ROM");
//if we have an archive and need to bind something, then pop the dialog
if (file.IsArchive && !file.IsBound)
@ -1470,7 +1470,7 @@ namespace BizHawk.MultiClient
{
var ofd = new OpenFileDialog();
ofd.InitialDirectory = Global.Config.LastRomPath;
ofd.Filter = "Rom Files|*.NES;*.SMS;*.GG;*.SG;*.PCE;*.SGX;*.GB;*.BIN;*.SMD;*.ZIP;*.7z|NES|*.NES|Master System|*.SMS;*.GG;*.SG;*.ZIP;*.7z|PC Engine|*.PCE;*.SGX;*.ZIP;*.7z|Gameboy|*.GB;*.ZIP;*.7z|Archive Files|*.zip;*.7z|All Files|*.*";
ofd.Filter = "Rom Files|*.NES;*.SMS;*.GG;*.SG;*.PCE;*.SGX;*.GB;*.BIN;*.SMD;*.ROM;*.ZIP;*.7z|NES|*.NES|Master System|*.SMS;*.GG;*.SG;*.ZIP;*.7z|PC Engine|*.PCE;*.SGX;*.ZIP;*.7z|Gameboy|*.GB;*.ZIP;*.7z|TI-83|*.rom|Archive Files|*.zip;*.7z|All Files|*.*";
ofd.RestoreDirectory = true;
Global.Sound.StopSound();

View File

@ -25,7 +25,7 @@ namespace BizHawk.MultiClient
public void Restart()
{
if (!this.IsHandleCreated || this.IsDisposed) return;
}
private void NESDebugger_Load(object sender, EventArgs e)

View File

@ -64,6 +64,7 @@ namespace BizHawk.MultiClient
public void Restart()
{
if (!(Global.Emulator is NES)) this.Close();
if (!this.IsHandleCreated || this.IsDisposed) return;
Nes = Global.Emulator as NES;
}

View File

@ -41,6 +41,7 @@ namespace BizHawk.MultiClient
public void Restart()
{
if (!(Global.Emulator is NES)) this.Close();
if (!this.IsHandleCreated || this.IsDisposed) return;
Nes = Global.Emulator as NES;
}

View File

@ -72,7 +72,8 @@ namespace BizHawk.MultiClient
public void Restart()
{
NewCheatList();
NewCheatList(); //Should be run even if dialog isn't open so cheats system can work
if (!this.IsHandleCreated || this.IsDisposed) return;
ClearFields();
}

View File

@ -76,6 +76,7 @@ namespace BizHawk.MultiClient
public void Restart()
{
if (!this.IsHandleCreated || this.IsDisposed) return;
SetMemoryDomainMenu(); //Calls update routines
MemoryViewer.ResetScrollBar();
}

View File

@ -127,6 +127,7 @@ namespace BizHawk.MultiClient
public void Restart()
{
if (!this.IsHandleCreated || this.IsDisposed) return;
SetMemoryDomainMenu(); //Calls Start New Search
}

View File

@ -17,6 +17,7 @@ namespace BizHawk.MultiClient
public partial class RamWatch : Form
{
//TODO:
//Restart() method to be called in main
//Restore window size should restore column order as well
//When receiving a watch from a different domain, should something be done?