From 0b6795fffca564ec37f1b4c9546f0cff07090f1e Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 4 May 2014 14:10:28 +0000 Subject: [PATCH] Some misc cleanup of redundant qualifiers --- BizHawk.Client.EmuHawk/MainForm.cs | 53 +++++++++---------- .../config/SNES/SNESOptions.cs | 10 +--- .../tools/HexEditor/HexEditor.cs | 2 +- .../tools/Lua/LuaConsole.cs | 2 +- BizHawk.Client.EmuHawk/tools/NES/NESPPU.cs | 2 +- .../tools/VirtualPads/VirtualPadButton.cs | 7 +-- 6 files changed, 32 insertions(+), 44 deletions(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 5a22ee760f..7691345732 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -56,7 +56,7 @@ namespace BizHawk.Client.EmuHawk public MainForm(string[] args) { GlobalWin.MainForm = this; - Global.Rewinder = new Rewinder() + Global.Rewinder = new Rewinder { MessageCallback = GlobalWin.OSD.AddMessage }; @@ -703,25 +703,24 @@ namespace BizHawk.Client.EmuHawk // also handle floats conInput.AcceptNewFloats(Input.Instance.GetFloats().Select(o => + { + // hackish + if (o.Item1 == "WMouse X") { - // hackish - if (o.Item1 == "WMouse X") - { - var P = GlobalWin.DisplayManager.UntransformPoint(new System.Drawing.Point((int)o.Item2, 0)); - float x = P.X / (float)Global.Emulator.VideoProvider.BufferWidth; - return new Tuple("WMouse X", x * 20000 - 10000); - } - else if (o.Item1 == "WMouse Y") - { - var P = GlobalWin.DisplayManager.UntransformPoint(new System.Drawing.Point(0, (int)o.Item2)); - float y = P.Y / (float)Global.Emulator.VideoProvider.BufferHeight; - return new Tuple("WMouse Y", y * 20000 - 10000); - } - else - { - return o; - } - })); + var P = GlobalWin.DisplayManager.UntransformPoint(new System.Drawing.Point((int)o.Item2, 0)); + float x = P.X / (float)Global.Emulator.VideoProvider.BufferWidth; + return new Tuple("WMouse X", x * 20000 - 10000); + } + + if (o.Item1 == "WMouse Y") + { + var P = GlobalWin.DisplayManager.UntransformPoint(new System.Drawing.Point(0, (int)o.Item2)); + float y = P.Y / (float)Global.Emulator.VideoProvider.BufferHeight; + return new Tuple("WMouse Y", y * 20000 - 10000); + } + + return o; + })); } public void RebootCore() @@ -2345,38 +2344,38 @@ namespace BizHawk.Client.EmuHawk if (!attributes.Ported) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.CorpHawkSmall; + CoreNameStatusBarButton.Image = Properties.Resources.CorpHawkSmall; } else { if (Global.Emulator is QuickNES) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.QuickNes; + CoreNameStatusBarButton.Image = Properties.Resources.QuickNes; } else if (Global.Emulator is LibsnesCore) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.bsnes; + CoreNameStatusBarButton.Image = Properties.Resources.bsnes; CoreNameStatusBarButton.Text += " (" + ((LibsnesCore.SnesSyncSettings)Global.Emulator.GetSyncSettings()).Profile + ")"; } else if (Global.Emulator is Yabause) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.yabause; + CoreNameStatusBarButton.Image = Properties.Resources.yabause; } else if (Global.Emulator is Atari7800) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.emu7800; + CoreNameStatusBarButton.Image = Properties.Resources.emu7800; } else if (Global.Emulator is GBA) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.meteor; + CoreNameStatusBarButton.Image = Properties.Resources.meteor; } else if (Global.Emulator is GPGX) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.genplus; + CoreNameStatusBarButton.Image = Properties.Resources.genplus; } else if (Global.Emulator is PSP) { - CoreNameStatusBarButton.Image = BizHawk.Client.EmuHawk.Properties.Resources.ppsspp; + CoreNameStatusBarButton.Image = Properties.Resources.ppsspp; } else if (Global.Emulator is Gameboy) { diff --git a/BizHawk.Client.EmuHawk/config/SNES/SNESOptions.cs b/BizHawk.Client.EmuHawk/config/SNES/SNESOptions.cs index c344aa54fe..e417028b4e 100644 --- a/BizHawk.Client.EmuHawk/config/SNES/SNESOptions.cs +++ b/BizHawk.Client.EmuHawk/config/SNES/SNESOptions.cs @@ -1,10 +1,4 @@ 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 BizHawk.Emulation.Cores.Nintendo.SNES; using BizHawk.Client.Common; @@ -42,13 +36,13 @@ namespace BizHawk.Client.EmuHawk private void btnOk_Click(object sender, EventArgs e) { - DialogResult = System.Windows.Forms.DialogResult.OK; + DialogResult = DialogResult.OK; Close(); } private void btnCancel_Click(object sender, EventArgs e) { - DialogResult = System.Windows.Forms.DialogResult.Cancel; + DialogResult = DialogResult.Cancel; Close(); } diff --git a/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs b/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs index aed5437e0e..d3d09df501 100644 --- a/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs +++ b/BizHawk.Client.EmuHawk/tools/HexEditor/HexEditor.cs @@ -1853,7 +1853,7 @@ namespace BizHawk.Client.EmuHawk return; } - if ((Control.ModifierKeys & (Keys.Control | Keys.Shift | Keys.Alt)) != 0) + if ((ModifierKeys & (Keys.Control | Keys.Shift | Keys.Alt)) != 0) { return; } diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs index ba6edf6e1d..13ba5d2fae 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaConsole.cs @@ -404,7 +404,7 @@ namespace BizHawk.Client.EmuHawk } catch (Exception ex) { - if (ex is LuaInterface.LuaScriptException || ex is LuaInterface.LuaException) + if (ex is LuaScriptException || ex is LuaException) { lf.Enabled = false; lf.Thread = null; diff --git a/BizHawk.Client.EmuHawk/tools/NES/NESPPU.cs b/BizHawk.Client.EmuHawk/tools/NES/NESPPU.cs index 3b6868f345..1e10840a8a 100644 --- a/BizHawk.Client.EmuHawk/tools/NES/NESPPU.cs +++ b/BizHawk.Client.EmuHawk/tools/NES/NESPPU.cs @@ -206,7 +206,7 @@ namespace BizHawk.Client.EmuHawk DrawPatternView(PatternView, _ppuBus); } - var bmpdata2 = SpriteView.sprites.LockBits(new Rectangle(new Point(0, 0), SpriteView.sprites.Size), System.Drawing.Imaging.ImageLockMode.WriteOnly, System.Drawing.Imaging.PixelFormat.Format32bppArgb); + var bmpdata2 = SpriteView.sprites.LockBits(new Rectangle(new Point(0, 0), SpriteView.sprites.Size), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb); var framebuf2 = (int*)bmpdata2.Scan0.ToPointer(); int pt_add = _nes.ppu.reg_2000.obj_pattern_hi ? 0x1000 : 0; diff --git a/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadButton.cs b/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadButton.cs index a7986a7383..a63f4278a1 100644 --- a/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadButton.cs +++ b/BizHawk.Client.EmuHawk/tools/VirtualPads/VirtualPadButton.cs @@ -1,9 +1,4 @@ using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Diagnostics; -using System.Linq; -using System.Text; using System.Windows.Forms; using System.Drawing; @@ -22,7 +17,7 @@ namespace BizHawk.Client.EmuHawk SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.DoubleBuffer, true); - Appearance = System.Windows.Forms.Appearance.Button; + Appearance = Appearance.Button; ForeColor = Color.Black; }