From 732bc5389c45f7b2d8185e4a897154f560e0836f Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 19 Apr 2015 22:34:08 +0000 Subject: [PATCH] progress on MultiDiskBundler --- .../BizHawk.Client.EmuHawk.csproj | 9 ++ BizHawk.Client.EmuHawk/MainForm.cs | 82 ++++++------ .../MultiDiskBundler/MultiDiskBundler.cs | 5 +- .../MultiDiskFileSelector.Designer.cs | 91 +++++++++++++ .../MultiDiskBundler/MultiDiskFileSelector.cs | 110 ++++++++++++++++ .../MultiDiskFileSelector.resx | 120 ++++++++++++++++++ 6 files changed, 377 insertions(+), 40 deletions(-) create mode 100644 BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.Designer.cs create mode 100644 BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.cs create mode 100644 BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.resx diff --git a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj index ffc78a3e23..8543ec4323 100644 --- a/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj +++ b/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj @@ -826,6 +826,12 @@ MacroInput.cs + + UserControl + + + MultiDiskFileSelector.cs + Form @@ -1360,6 +1366,9 @@ MacroInput.cs + + MultiDiskFileSelector.cs + MultiDiskBundler.cs diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 60dd59d70f..0c8ab4a164 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1850,44 +1850,42 @@ namespace BizHawk.Client.EmuHawk return str; } - private void OpenRom() + public static string RomFilter { - var ofd = new OpenFileDialog { InitialDirectory = PathManager.GetRomsPath(Global.Emulator.SystemId) }; + get + { + if (VersionInfo.DeveloperBuild) + { + return FormatFilter( + "Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.pce;*.sgx;*.bin;*.smd;*.rom;*.a26;*.a78;*.lnx;*.m3u;*.cue;*.ccd;*.exe;*.gb;*.gbc;*.gba;*.gen;*.md;*.col;.int;*.smc;*.sfc;*.prg;*.d64;*.g64;*.crt;*.sgb;*.xml;*.z64;*.v64;*.n64;*.ws;*.wsc;*.dsk;%ARCH%", + "Music Files", "*.psf;*.sid;*.nsf", + "Disc Images", "*.cue;*.ccd;*.m3u", + "NES", "*.nes;*.fds;*.nsf;%ARCH%", + "Super NES", "*.smc;*.sfc;*.xml;%ARCH%", + "Master System", "*.sms;*.gg;*.sg;%ARCH%", + "PC Engine", "*.pce;*.sgx;*.cue;*.ccd;%ARCH%", + "TI-83", "*.rom;%ARCH%", + "Archive Files", "%ARCH%", + "Savestate", "*.state", + "Atari 2600", "*.a26;*.bin;%ARCH%", + "Atari 7800", "*.a78;*.bin;%ARCH%", + "Atari Lynx", "*.lnx;%ARCH%", + "Genesis", "*.gen;*.smd;*.bin;*.md;*.cue;*.ccd;%ARCH%", + "Gameboy", "*.gb;*.gbc;*.sgb;%ARCH%", + "Gameboy Advance", "*.gba;%ARCH%", + "Colecovision", "*.col;%ARCH%", + "Intellivision (very experimental)", "*.int;*.bin;*.rom;%ARCH%", + "PSX Executables (experimental)", "*.exe", + "PSF Playstation Sound File (not supported)", "*.psf", + "Commodore 64 (experimental)", "*.prg; *.d64, *.g64; *.crt;%ARCH%", + "SID Commodore 64 Music File", "*.sid;%ARCH%", + "Nintendo 64", "*.z64;*.v64;*.n64", + "WonderSwan", "*.ws;*.wsc;%ARCH%", + "Apple II", "*.dsk;%ARCH%", + "All Files", "*.*"); + } - // adelikat: ugly design for this, I know - if (VersionInfo.DeveloperBuild) - { - ofd.Filter = FormatFilter( - "Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.pce;*.sgx;*.bin;*.smd;*.rom;*.a26;*.a78;*.lnx;*.m3u;*.cue;*.ccd;*.exe;*.gb;*.gbc;*.gba;*.gen;*.md;*.col;.int;*.smc;*.sfc;*.prg;*.d64;*.g64;*.crt;*.sgb;*.xml;*.z64;*.v64;*.n64;*.ws;*.wsc;*.dsk;%ARCH%", - "Music Files", "*.psf;*.sid;*.nsf", - "Disc Images", "*.cue;*.ccd;*.m3u", - "NES", "*.nes;*.fds;*.nsf;%ARCH%", - "Super NES", "*.smc;*.sfc;*.xml;%ARCH%", - "Master System", "*.sms;*.gg;*.sg;%ARCH%", - "PC Engine", "*.pce;*.sgx;*.cue;*.ccd;%ARCH%", - "TI-83", "*.rom;%ARCH%", - "Archive Files", "%ARCH%", - "Savestate", "*.state", - "Atari 2600", "*.a26;*.bin;%ARCH%", - "Atari 7800", "*.a78;*.bin;%ARCH%", - "Atari Lynx", "*.lnx;%ARCH%", - "Genesis", "*.gen;*.smd;*.bin;*.md;*.cue;*.ccd;%ARCH%", - "Gameboy", "*.gb;*.gbc;*.sgb;%ARCH%", - "Gameboy Advance", "*.gba;%ARCH%", - "Colecovision", "*.col;%ARCH%", - "Intellivision (very experimental)", "*.int;*.bin;*.rom;%ARCH%", - "PSX Executables (experimental)", "*.exe", - "PSF Playstation Sound File (not supported)", "*.psf", - "Commodore 64 (experimental)", "*.prg; *.d64, *.g64; *.crt;%ARCH%", - "SID Commodore 64 Music File", "*.sid;%ARCH%", - "Nintendo 64", "*.z64;*.v64;*.n64", - "WonderSwan", "*.ws;*.wsc;%ARCH%", - "Apple II", "*.dsk;%ARCH%", - "All Files", "*.*"); - } - else - { - ofd.Filter = FormatFilter( + return FormatFilter( "Rom Files", "*.nes;*.fds;*.sms;*.gg;*.sg;*.gb;*.gbc;*.gba;*.pce;*.sgx;*.bin;*.smd;*.gen;*.md;*.smc;*.sfc;*.a26;*.a78;*.lnx;*.col;*.rom;*.cue;*.ccd;*.sgb;*.z64;*.v64;*.n64;*.ws;*.wsc;*.xml;%ARCH%", "Disc Images", "*.cue;*.ccd;*.m3u", "NES", "*.nes;*.fds;*.nsf;%ARCH%", @@ -1908,9 +1906,17 @@ namespace BizHawk.Client.EmuHawk "WonderSwan", "*.ws;*.wsc;%ARCH%", "All Files", "*.*"); } + } - ofd.RestoreDirectory = false; - ofd.FilterIndex = _lastOpenRomFilter; + private void OpenRom() + { + var ofd = new OpenFileDialog + { + InitialDirectory = PathManager.GetRomsPath(Global.Emulator.SystemId), + Filter = RomFilter, + RestoreDirectory = false, + FilterIndex = _lastOpenRomFilter + }; var result = ofd.ShowHawkDialog(); if (result != DialogResult.OK) diff --git a/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs index b0ff80be65..c25a9830ba 100644 --- a/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs +++ b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskBundler.cs @@ -18,7 +18,8 @@ namespace BizHawk.Client.EmuHawk private void MultiGameCreator_Load(object sender, EventArgs e) { - + AddButton_Click(null, null); + AddButton_Click(null, null); } #region IToolForm @@ -74,7 +75,7 @@ namespace BizHawk.Client.EmuHawk Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top }; - groupBox.Controls.Add(new DualGBFileSelector + groupBox.Controls.Add(new MultiDiskFileSelector { Location = new Point(5, 8) }); diff --git a/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.Designer.cs b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.Designer.cs new file mode 100644 index 0000000000..61b79393b0 --- /dev/null +++ b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.Designer.cs @@ -0,0 +1,91 @@ +namespace BizHawk.Client.EmuHawk +{ + partial class MultiDiskFileSelector + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.button1 = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.UseCurrentRomButton = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(290, 3); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(60, 23); + this.button1.TabIndex = 2; + this.button1.Text = "Browse..."; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // textBox1 + // + this.textBox1.AllowDrop = true; + this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.textBox1.Location = new System.Drawing.Point(3, 5); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(285, 20); + this.textBox1.TabIndex = 1; + this.textBox1.DragDrop += new System.Windows.Forms.DragEventHandler(this.textBox1_DragDrop); + this.textBox1.DragEnter += new System.Windows.Forms.DragEventHandler(this.textBox1_DragEnter); + // + // UseCurrentRomButton + // + this.UseCurrentRomButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.UseCurrentRomButton.Location = new System.Drawing.Point(357, 3); + this.UseCurrentRomButton.Name = "UseCurrentRomButton"; + this.UseCurrentRomButton.Size = new System.Drawing.Size(62, 23); + this.UseCurrentRomButton.TabIndex = 3; + this.UseCurrentRomButton.Text = "Current"; + this.UseCurrentRomButton.UseVisualStyleBackColor = true; + this.UseCurrentRomButton.Click += new System.EventHandler(this.UseCurrentRomButton_Click); + // + // MultiDiskFileSelector + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; + this.Controls.Add(this.UseCurrentRomButton); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Name = "MultiDiskFileSelector"; + this.Size = new System.Drawing.Size(425, 29); + this.Load += new System.EventHandler(this.DualGBFileSelector_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button UseCurrentRomButton; + + } +} diff --git a/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.cs b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.cs new file mode 100644 index 0000000000..acb758a88f --- /dev/null +++ b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.cs @@ -0,0 +1,110 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +using BizHawk.Client.Common; +using BizHawk.Emulation.Common; +using BizHawk.Emulation.Cores.Nintendo.Gameboy; + +namespace BizHawk.Client.EmuHawk +{ + public partial class MultiDiskFileSelector : UserControl + { + public string GetName() + { + return textBox1.Text; + } + + public void SetName(string val) + { + textBox1.Text = val; + } + + public event EventHandler NameChanged; + + private void HandleLabelTextChanged(object sender, EventArgs e) + { + this.OnNameChanged(EventArgs.Empty); + } + + public MultiDiskFileSelector() + { + InitializeComponent(); + textBox1.TextChanged += this.HandleLabelTextChanged; + } + + protected virtual void OnNameChanged(EventArgs e) + { + EventHandler handler = this.NameChanged; + if (handler != null) + { + handler(this, e); + } + } + + private void textBox1_DragEnter(object sender, DragEventArgs e) + { + if (e.Data.GetDataPresent(DataFormats.FileDrop) && + ((string[])e.Data.GetData(DataFormats.FileDrop)).Length == 1) + { + e.Effect = DragDropEffects.Copy; + } + else + { + e.Effect = DragDropEffects.None; + } + } + + private void textBox1_DragDrop(object sender, DragEventArgs e) + { + if (e.Data.GetDataPresent(DataFormats.FileDrop)) + { + var ff = (string[])e.Data.GetData(DataFormats.FileDrop); + if (ff.Length == 1) + { + textBox1.Text = ff[0]; + } + } + } + + private void button1_Click(object sender, EventArgs e) + { + using (var ofd = new OpenFileDialog + { + InitialDirectory = PathManager.MakeAbsolutePath(Global.Config.PathEntries["Global_NULL", "ROM"].Path, "Global_NULL"), + Filter = MainForm.RomFilter, + RestoreDirectory = true + }) + { + var result = ofd.ShowDialog(this); + if (result == DialogResult.OK) + { + textBox1.Text = ofd.FileName; + } + } + } + + private void UseCurrentRomButton_Click(object sender, EventArgs e) + { + textBox1.Text = GlobalWin.MainForm.CurrentlyOpenRom; + } + + private void DualGBFileSelector_Load(object sender, EventArgs e) + { + UpdateValues(); + } + + public void UpdateValues() + { + UseCurrentRomButton.Enabled = Global.Emulator != null // For the designer + && !string.IsNullOrEmpty(GlobalWin.MainForm.CurrentlyOpenRom) + && !GlobalWin.MainForm.CurrentlyOpenRom.Contains('|') && // Can't be archive + !GlobalWin.MainForm.CurrentlyOpenRom.Contains(".xml"); // Can't already be an xml + } + } +} diff --git a/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.resx b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.resx new file mode 100644 index 0000000000..29dcb1b3a3 --- /dev/null +++ b/BizHawk.Client.EmuHawk/tools/MultiDiskBundler/MultiDiskFileSelector.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file