From cac6548fc304fe65ce7114172cc2b0e6d31b2595 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Tue, 15 Feb 2011 20:18:12 +0000 Subject: [PATCH] Add Mute Frame Advance & Sound On/Off to sound config (neither option is currently hooked up) --- BizHawk.MultiClient/Config.cs | 5 +- BizHawk.MultiClient/MainForm.cs | 3 +- .../config/SoundConfig.Designer.cs | 61 ++++++++++++++++++- BizHawk.MultiClient/config/SoundConfig.cs | 13 ++++ 4 files changed, 78 insertions(+), 4 deletions(-) diff --git a/BizHawk.MultiClient/Config.cs b/BizHawk.MultiClient/Config.cs index 21d9e08d34..28b74a2cf4 100644 --- a/BizHawk.MultiClient/Config.cs +++ b/BizHawk.MultiClient/Config.cs @@ -3,7 +3,6 @@ public class Config { // General Client Settings - public bool SoundEnabled = true; public int TargetZoomFactor = 2; public string LastRomPath = "."; public bool AutoLoadMostRecentRom = false; //TODO: eventually make a class or struct for all the auto-loads, which will include recent roms, movies, etc, as well as autoloading any modeless dialog @@ -16,6 +15,10 @@ public bool DisplayLagCounter = false; public bool DisplayInput = false; + // Sound options + public bool SoundEnabled = true; + public bool MuteFrameAdvance = true; + // RamWatch Settings public bool AutoLoadRamWatch = false; public RecentFiles RecentWatches = new RecentFiles(8); diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 8fd5937856..59a8d763e6 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1192,7 +1192,8 @@ namespace BizHawk.MultiClient private void soundToolStripMenuItem_Click(object sender, EventArgs e) { - + SoundConfig s = new SoundConfig(); + s.ShowDialog(); } } } \ No newline at end of file diff --git a/BizHawk.MultiClient/config/SoundConfig.Designer.cs b/BizHawk.MultiClient/config/SoundConfig.Designer.cs index 3fe6a36feb..f0ac64027f 100644 --- a/BizHawk.MultiClient/config/SoundConfig.Designer.cs +++ b/BizHawk.MultiClient/config/SoundConfig.Designer.cs @@ -28,20 +28,77 @@ /// private void InitializeComponent() { + this.Cancel = new System.Windows.Forms.Button(); + this.OK = new System.Windows.Forms.Button(); + this.SoundOnCheckBox = new System.Windows.Forms.CheckBox(); + this.MuteFrameAdvance = new System.Windows.Forms.CheckBox(); this.SuspendLayout(); // + // Cancel + // + this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.Cancel.Location = new System.Drawing.Point(198, 174); + this.Cancel.Name = "Cancel"; + this.Cancel.Size = new System.Drawing.Size(75, 23); + this.Cancel.TabIndex = 0; + this.Cancel.Text = "&Cancel"; + this.Cancel.UseVisualStyleBackColor = true; + this.Cancel.Click += new System.EventHandler(this.Cancel_Click); + // + // OK + // + this.OK.Location = new System.Drawing.Point(112, 174); + this.OK.Name = "OK"; + this.OK.Size = new System.Drawing.Size(75, 23); + this.OK.TabIndex = 1; + this.OK.Text = "&Ok"; + this.OK.UseVisualStyleBackColor = true; + this.OK.Click += new System.EventHandler(this.OK_Click); + // + // SoundOnCheckBox + // + this.SoundOnCheckBox.AutoSize = true; + this.SoundOnCheckBox.Location = new System.Drawing.Point(12, 12); + this.SoundOnCheckBox.Name = "SoundOnCheckBox"; + this.SoundOnCheckBox.Size = new System.Drawing.Size(74, 17); + this.SoundOnCheckBox.TabIndex = 2; + this.SoundOnCheckBox.Text = "Sound On"; + this.SoundOnCheckBox.UseVisualStyleBackColor = true; + // + // MuteFrameAdvance + // + this.MuteFrameAdvance.AutoSize = true; + this.MuteFrameAdvance.Location = new System.Drawing.Point(12, 35); + this.MuteFrameAdvance.Name = "MuteFrameAdvance"; + this.MuteFrameAdvance.Size = new System.Drawing.Size(128, 17); + this.MuteFrameAdvance.TabIndex = 3; + this.MuteFrameAdvance.Text = "Mute Frame Advance"; + this.MuteFrameAdvance.UseVisualStyleBackColor = true; + // // SoundConfig // + this.AcceptButton = this.OK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(292, 273); + this.CancelButton = this.Cancel; + this.ClientSize = new System.Drawing.Size(280, 209); + this.Controls.Add(this.MuteFrameAdvance); + this.Controls.Add(this.SoundOnCheckBox); + this.Controls.Add(this.OK); + this.Controls.Add(this.Cancel); this.Name = "SoundConfig"; - this.Text = "SoundConfig"; + this.Text = "Sound Configuration"; this.Load += new System.EventHandler(this.SoundConfig_Load); this.ResumeLayout(false); + this.PerformLayout(); } #endregion + + private System.Windows.Forms.Button Cancel; + private System.Windows.Forms.Button OK; + private System.Windows.Forms.CheckBox SoundOnCheckBox; + private System.Windows.Forms.CheckBox MuteFrameAdvance; } } \ No newline at end of file diff --git a/BizHawk.MultiClient/config/SoundConfig.cs b/BizHawk.MultiClient/config/SoundConfig.cs index 820f857fb6..f13513f33c 100644 --- a/BizHawk.MultiClient/config/SoundConfig.cs +++ b/BizHawk.MultiClient/config/SoundConfig.cs @@ -18,7 +18,20 @@ namespace BizHawk.MultiClient private void SoundConfig_Load(object sender, EventArgs e) { + SoundOnCheckBox.Checked = Global.Config.SoundEnabled; + MuteFrameAdvance.Checked = Global.Config.MuteFrameAdvance; + } + private void OK_Click(object sender, EventArgs e) + { + Global.Config.SoundEnabled = SoundOnCheckBox.Checked; + Global.Config.MuteFrameAdvance = MuteFrameAdvance.Checked; + this.Close(); + } + + private void Cancel_Click(object sender, EventArgs e) + { + this.Close(); } } }