From c52c8801017efb9239e611775939d1dcd6ae7dd8 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 12 Nov 2021 21:20:58 +1000 Subject: [PATCH] Backport `KeyValuePair<,>.Deconstruct` it's infuriating that you can't use this for lambda parameters --- src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs | 6 +-- src/BizHawk.Bizware.OpenTK3/IGL_TK.cs | 26 ++++++------ .../Api/Classes/EmulationApi.cs | 3 +- .../Api/Classes/GameInfoApi.cs | 3 +- .../Api/Classes/InputApi.cs | 4 +- .../Api/Classes/JoypadApi.cs | 3 +- .../Api/Classes/MovieApi.cs | 3 +- src/BizHawk.Client.Common/Controller.cs | 34 +++++++-------- .../DisplayManager/Filters/Retro.cs | 7 ++-- .../controllers/AutofireController.cs | 16 ++++---- .../lua/NLuaTableHelper.cs | 9 ++-- .../movie/MovieConversionExtensions.cs | 20 ++------- .../movie/bk2/Bk2Controller.cs | 5 +-- .../movie/bk2/Bk2Header.cs | 13 ++---- .../movie/import/BkmImport.cs | 9 ++-- .../movie/tasproj/ZwinderStateManager.cs | 20 ++++----- .../savestates/SavestateFile.cs | 5 +-- src/BizHawk.Client.EmuHawk/Input/Input.cs | 5 +-- src/BizHawk.Client.EmuHawk/MainForm.cs | 6 +-- .../config/ControllerConfig.cs | 6 +-- .../config/FileExtensionPreferences.cs | 8 ++-- .../config/Messages/MessageConfig.cs | 19 +++++---- .../config/NES/DataTableDictionaryBind.cs | 7 ++-- src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs | 22 +++++----- .../tools/BasicBot/BasicBot.cs | 6 +-- src/BizHawk.Client.EmuHawk/tools/CDL.cs | 21 +++++----- .../tools/Debugger/RegisterBoxControl.cs | 41 ++++++++++--------- .../tools/TAStudio/TAStudio.cs | 11 ++--- src/BizHawk.Common/MultiPredicateSort.cs | 12 +++--- src/BizHawk.Common/Util.cs | 6 +++ .../Base Implementations/CodeDataLog.cs | 32 +++++++-------- .../ControllerDefinition.cs | 8 ++-- .../ControllerDefinitionMerger.cs | 10 +++-- .../DiscFormats/Blobs/RiffMaster.cs | 6 +-- .../DiscFormats/CCD_format.cs | 13 +++--- .../Movie/ZwinderStateManagerTests.cs | 6 +-- .../config/CorePickerStabilityTests.cs | 4 +- .../config/SerializationStabilityTests.cs | 6 +-- 38 files changed, 212 insertions(+), 229 deletions(-) diff --git a/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs b/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs index 58c27be42f..518192fee5 100644 --- a/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs +++ b/src/BizHawk.Bizware.DirectX/IGL_SlimDX9.cs @@ -6,6 +6,7 @@ using System.Threading; using BizHawk.Bizware.BizwareGL; using BizHawk.Bizware.OpenTK3; +using BizHawk.Common; using SlimDX.Direct3D9; @@ -352,9 +353,8 @@ namespace BizHawk.Bizware.DirectX var ves = new VertexElement[vertexLayout.Items.Count]; int stride = 0; - foreach (var kvp in vertexLayout.Items) + foreach (var (i, item) in vertexLayout.Items) { - var item = kvp.Value; DeclarationType declType; switch (item.AttribType) { @@ -391,7 +391,7 @@ namespace BizHawk.Bizware.DirectX throw new NotSupportedException(); } - ves[kvp.Key] = new VertexElement(0, (short)item.Offset, declType, DeclarationMethod.Default, usage, usageIndex); + ves[i] = new VertexElement(0, (short) item.Offset, declType, DeclarationMethod.Default, usage, usageIndex); } var pw = new PipelineWrapper diff --git a/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs b/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs index 0a166c6412..c1e73666c0 100644 --- a/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs +++ b/src/BizHawk.Bizware.OpenTK3/IGL_TK.cs @@ -768,19 +768,19 @@ namespace BizHawk.Bizware.OpenTK3 } GL.ClientActiveTexture(TextureUnit.Texture0); - foreach (var kvp in layout.Items) + foreach (var (i, item) in layout.Items) { if(_currPipeline.Memo == "gui") { GL.VertexAttribPointer( - kvp.Key, - kvp.Value.Components, - (VertexAttribPointerType) (int) kvp.Value.AttribType, // these are the same enum - kvp.Value.Normalized, - kvp.Value.Stride, - pData + kvp.Value.Offset); - GL.EnableVertexAttribArray(kvp.Key); - currBindings.Add(kvp.Key); + i, + item.Components, + (VertexAttribPointerType) (int) item.AttribType, // these are the same enum + item.Normalized, + item.Stride, + pData + item.Offset); + GL.EnableVertexAttribArray(i); + currBindings.Add(i); } else { @@ -788,21 +788,21 @@ namespace BizHawk.Bizware.OpenTK3 var pw = _currPipeline.Opaque as PipelineWrapper; //comment SNACKPANTS - switch (kvp.Value.Usage) + switch (item.Usage) { case AttribUsage.Position: GL.EnableClientState(ArrayCap.VertexArray); - GL.VertexPointer(kvp.Value.Components,VertexPointerType.Float,kvp.Value.Stride,pData + kvp.Value.Offset); + GL.VertexPointer(item.Components, VertexPointerType.Float, item.Stride, pData + item.Offset); break; case AttribUsage.Texcoord0: GL.ClientActiveTexture(TextureUnit.Texture0); GL.EnableClientState(ArrayCap.TextureCoordArray); - GL.TexCoordPointer(kvp.Value.Components, TexCoordPointerType.Float, kvp.Value.Stride, pData + kvp.Value.Offset); + GL.TexCoordPointer(item.Components, TexCoordPointerType.Float, item.Stride, pData + item.Offset); break; case AttribUsage.Texcoord1: GL.ClientActiveTexture(TextureUnit.Texture1); GL.EnableClientState(ArrayCap.TextureCoordArray); - GL.TexCoordPointer(kvp.Value.Components, TexCoordPointerType.Float, kvp.Value.Stride, pData + kvp.Value.Offset); + GL.TexCoordPointer(item.Components, TexCoordPointerType.Float, item.Stride, pData + item.Offset); GL.ClientActiveTexture(TextureUnit.Texture0); break; case AttribUsage.Color0: diff --git a/src/BizHawk.Client.Common/Api/Classes/EmulationApi.cs b/src/BizHawk.Client.Common/Api/Classes/EmulationApi.cs index 398b585c2e..f671c2ee15 100644 --- a/src/BizHawk.Client.Common/Api/Classes/EmulationApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/EmulationApi.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.ComponentModel; +using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES; using BizHawk.Emulation.Cores.Consoles.Sega.gpgx; @@ -117,7 +118,7 @@ namespace BizHawk.Client.Common if (DebuggableCore != null) { var table = new Dictionary(); - foreach (var kvp in DebuggableCore.GetCpuFlagsAndRegisters()) table[kvp.Key] = kvp.Value.Value; + foreach (var (name, rv) in DebuggableCore.GetCpuFlagsAndRegisters()) table[name] = rv.Value; return table; } } diff --git a/src/BizHawk.Client.Common/Api/Classes/GameInfoApi.cs b/src/BizHawk.Client.Common/Api/Classes/GameInfoApi.cs index da982efee7..3446f88393 100644 --- a/src/BizHawk.Client.Common/Api/Classes/GameInfoApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/GameInfoApi.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; +using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Client.Common @@ -26,7 +27,7 @@ namespace BizHawk.Client.Common { var options = new Dictionary(); if (_game == null) return options; - foreach (var option in ((GameInfo) _game).GetOptions()) options[option.Key] = option.Value; + foreach (var (k, v) in ((GameInfo) _game).GetOptions()) options[k] = v; return options; } } diff --git a/src/BizHawk.Client.Common/Api/Classes/InputApi.cs b/src/BizHawk.Client.Common/Api/Classes/InputApi.cs index e54c147a92..19951ff5ba 100644 --- a/src/BizHawk.Client.Common/Api/Classes/InputApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/InputApi.cs @@ -1,6 +1,8 @@ using System.Collections.Generic; using System.Linq; +using BizHawk.Common; + namespace BizHawk.Client.Common { public sealed class InputApi : IInputApi @@ -18,7 +20,7 @@ namespace BizHawk.Client.Common public Dictionary Get() { var buttons = new Dictionary(); - foreach (var kvp in _inputManager.ControllerInputCoalescer.BoolButtons().Where(kvp => kvp.Value)) buttons[kvp.Key] = true; + foreach (var (button, _) in _inputManager.ControllerInputCoalescer.BoolButtons().Where(kvp => kvp.Value)) buttons[button] = true; return buttons; } diff --git a/src/BizHawk.Client.Common/Api/Classes/JoypadApi.cs b/src/BizHawk.Client.Common/Api/Classes/JoypadApi.cs index 4a0d2cb2a6..a145712d6b 100644 --- a/src/BizHawk.Client.Common/Api/Classes/JoypadApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/JoypadApi.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; +using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Client.Common @@ -90,7 +91,7 @@ namespace BizHawk.Client.Common public void SetAnalog(IReadOnlyDictionary controls, object controller = null) { - foreach (var kvp in controls) SetAnalog(kvp.Key, kvp.Value, controller); + foreach (var (k, v) in controls) SetAnalog(k, v, controller); } public void SetAnalog(string control, int? value = null, object controller = null) diff --git a/src/BizHawk.Client.Common/Api/Classes/MovieApi.cs b/src/BizHawk.Client.Common/Api/Classes/MovieApi.cs index 6c905b95c8..1e53078941 100644 --- a/src/BizHawk.Client.Common/Api/Classes/MovieApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/MovieApi.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; +using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Client.Common @@ -79,7 +80,7 @@ namespace BizHawk.Client.Common { return table; } - foreach (var kvp in _movieSession.Movie.HeaderEntries) table[kvp.Key] = kvp.Value; + foreach (var (k, v) in _movieSession.Movie.HeaderEntries) table[k] = v; return table; } diff --git a/src/BizHawk.Client.Common/Controller.cs b/src/BizHawk.Client.Common/Controller.cs index 1b09dc3b0f..849ec2e519 100644 --- a/src/BizHawk.Client.Common/Controller.cs +++ b/src/BizHawk.Client.Common/Controller.cs @@ -12,10 +12,10 @@ namespace BizHawk.Client.Common public Controller(ControllerDefinition definition) { Definition = definition; - foreach (var kvp in Definition.Axes) + foreach (var (k, v) in Definition.Axes) { - _axes[kvp.Key] = kvp.Value.Neutral; - _axisRanges[kvp.Key] = kvp.Value; + _axes[k] = v.Neutral; + _axisRanges[k] = v; } foreach (var channel in Definition.HapticsChannels) _haptics[channel] = 0; } @@ -65,54 +65,54 @@ namespace BizHawk.Client.Common { _buttons.Clear(); - foreach (var kvp in _bindings) + foreach (var (k, v) in _bindings) { - _buttons[kvp.Key] = false; - foreach (var button in kvp.Value) + _buttons[k] = false; + foreach (var button in v) { if (finalHostController.IsPressed(button)) { - _buttons[kvp.Key] = true; + _buttons[k] = true; } } } - foreach (var kvp in _axisBindings) + foreach (var (k, v) in _axisBindings) { // values from finalHostController are ints in -10000..10000 (or 0..10000), so scale to -1..1, using floats to keep fractional part - var value = finalHostController.AxisValue(kvp.Value.Value) / 10000.0f; + var value = finalHostController.AxisValue(v.Value) / 10000.0f; // apply deadzone (and scale diminished range back up to -1..1) - var deadzone = kvp.Value.Deadzone; + var deadzone = v.Deadzone; if (value < -deadzone) value += deadzone; else if (value < deadzone) value = 0.0f; else value -= deadzone; value /= 1.0f - deadzone; // scale by user-set multiplier (which is -2..2, therefore value is now in -2..2) - value *= kvp.Value.Mult; + value *= v.Mult; // -1..1 -> -A..A (where A is the larger "side" of the range e.g. a range of 0..50, neutral=10 would give A=40, and thus a value in -40..40) - var range = _axisRanges[kvp.Key]; + var range = _axisRanges[k]; value *= Math.Max(range.Neutral - range.Min, range.Max - range.Neutral); // shift the midpoint, so a value of 0 becomes range.Neutral (and, assuming >=1x multiplier, all values in range are reachable) value += range.Neutral; // finally, constrain to range - _axes[kvp.Key] = ((int) value).ConstrainWithin(range.Range); + _axes[k] = ((int) value).ConstrainWithin(range.Range); } } public void PrepareHapticsForHost(SimpleController finalHostController) { - foreach (var kvp in _feedbackBindings) + foreach (var (k, v) in _feedbackBindings) { - if (_haptics.TryGetValue(kvp.Key, out var strength)) + if (_haptics.TryGetValue(k, out var strength)) { - foreach (var hostChannel in kvp.Value.Channels!.Split('+')) + foreach (var hostChannel in v.Channels!.Split('+')) { - finalHostController.SetHapticChannelStrength(kvp.Value.GamepadPrefix + hostChannel, (int) ((double) strength * kvp.Value.Prescale)); + finalHostController.SetHapticChannelStrength(v.GamepadPrefix + hostChannel, (int) ((double) strength * v.Prescale)); } } } diff --git a/src/BizHawk.Client.Common/DisplayManager/Filters/Retro.cs b/src/BizHawk.Client.Common/DisplayManager/Filters/Retro.cs index 470db75088..f7f1818203 100644 --- a/src/BizHawk.Client.Common/DisplayManager/Filters/Retro.cs +++ b/src/BizHawk.Client.Common/DisplayManager/Filters/Retro.cs @@ -10,6 +10,7 @@ using System.Drawing; using BizHawk.Client.Common.FilterManager; using BizHawk.Bizware.BizwareGL; +using BizHawk.Common; namespace BizHawk.Client.Common.Filters { @@ -288,11 +289,11 @@ namespace BizHawk.Client.Common.Filters // apply all parameters to this shader.. even if it was meant for other shaders. kind of lame. if(Parameters != null) { - foreach (var kvp in Parameters) + foreach (var (k, v) in Parameters) { - if (kvp.Value is float value) + if (v is float value) { - shader.Pipeline[kvp.Key].Set(value); + shader.Pipeline[k].Set(value); } } } diff --git a/src/BizHawk.Client.Common/controllers/AutofireController.cs b/src/BizHawk.Client.Common/controllers/AutofireController.cs index 0e4a90ca01..6c7ff21e14 100644 --- a/src/BizHawk.Client.Common/controllers/AutofireController.cs +++ b/src/BizHawk.Client.Common/controllers/AutofireController.cs @@ -59,26 +59,26 @@ namespace BizHawk.Client.Common { internal_frame = _emulator.Frame; - foreach (var kvp in _bindings) + foreach (var (k, v) in _bindings) { - foreach (var boundBtn in kvp.Value) + foreach (var boundBtn in v) { - if (_buttons[kvp.Key] == false && controller.IsPressed(boundBtn)) + if (_buttons[k] == false && controller.IsPressed(boundBtn)) { - _buttonStarts[kvp.Key] = _emulator.Frame; + _buttonStarts[k] = _emulator.Frame; } } } _buttons.Clear(); - foreach (var kvp in _bindings) + foreach (var (k, v) in _bindings) { - _buttons[kvp.Key] = false; - foreach (var button in kvp.Value) + _buttons[k] = false; + foreach (var button in v) { if (controller.IsPressed(button)) { - _buttons[kvp.Key] = true; + _buttons[k] = true; } } } diff --git a/src/BizHawk.Client.Common/lua/NLuaTableHelper.cs b/src/BizHawk.Client.Common/lua/NLuaTableHelper.cs index 054c596693..0f3be7db1e 100644 --- a/src/BizHawk.Client.Common/lua/NLuaTableHelper.cs +++ b/src/BizHawk.Client.Common/lua/NLuaTableHelper.cs @@ -4,6 +4,8 @@ using System.Drawing; using System.Globalization; using System.Linq; +using BizHawk.Common; + using NLua; namespace BizHawk.Client.Common @@ -25,12 +27,7 @@ namespace BizHawk.Client.Common public LuaTable DictToTable(IReadOnlyDictionary dictionary) { var table = _lua.NewTable(); - - foreach (var kvp in dictionary) - { - table[kvp.Key] = kvp.Value; - } - + foreach (var (k, v) in dictionary) table[k] = v; return table; } diff --git a/src/BizHawk.Client.Common/movie/MovieConversionExtensions.cs b/src/BizHawk.Client.Common/movie/MovieConversionExtensions.cs index 38ab149fb8..0560573cd3 100644 --- a/src/BizHawk.Client.Common/movie/MovieConversionExtensions.cs +++ b/src/BizHawk.Client.Common/movie/MovieConversionExtensions.cs @@ -25,10 +25,7 @@ namespace BizHawk.Client.Common old.Truncate(0); // Trying to minimize ram usage tas.HeaderEntries.Clear(); - foreach (var kvp in old.HeaderEntries) - { - tas.HeaderEntries[kvp.Key] = kvp.Value; - } + foreach (var (k, v) in old.HeaderEntries) tas.HeaderEntries[k] = v; // TODO: we have this version number string generated in multiple places tas.HeaderEntries[HeaderKeys.MovieVersion] = $"BizHawk v2.0 Tasproj v{TasMovie.CurrentVersion}"; @@ -61,10 +58,7 @@ namespace BizHawk.Client.Common bk2.CopyLog(old.GetLogEntries()); bk2.HeaderEntries.Clear(); - foreach (var kvp in old.HeaderEntries) - { - bk2.HeaderEntries[kvp.Key] = kvp.Value; - } + foreach (var (k, v) in old.HeaderEntries) bk2.HeaderEntries[k] = v; // TODO: we have this version number string generated in multiple places bk2.HeaderEntries[HeaderKeys.MovieVersion] = "BizHawk v2.0"; @@ -113,10 +107,7 @@ namespace BizHawk.Client.Common tas.LagLog.StartFromFrame(frame); tas.HeaderEntries.Clear(); - foreach (var kvp in old.HeaderEntries) - { - tas.HeaderEntries[kvp.Key] = kvp.Value; - } + foreach (var (k, v) in old.HeaderEntries) tas.HeaderEntries[k] = v; tas.StartsFromSavestate = true; tas.SyncSettingsJson = old.SyncSettingsJson; @@ -162,10 +153,7 @@ namespace BizHawk.Client.Common tas.CopyVerificationLog(entries); tas.HeaderEntries.Clear(); - foreach (var kvp in old.HeaderEntries) - { - tas.HeaderEntries[kvp.Key] = kvp.Value; - } + foreach (var (k, v) in old.HeaderEntries) tas.HeaderEntries[k] = v; tas.StartsFromSaveRam = true; tas.SyncSettingsJson = old.SyncSettingsJson; diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs index 4d682d47d9..920a5cecb6 100755 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Controller.cs @@ -73,10 +73,7 @@ namespace BizHawk.Client.Common } // axes don't have sticky logic, so latch default value - foreach (var kvp in Definition.Axes) - { - _myAxisControls[kvp.Key] = kvp.Value.Neutral; - } + foreach (var (k, v) in Definition.Axes) _myAxisControls[k] = v.Neutral; } public void SetFromMnemonic(string mnemonic) diff --git a/src/BizHawk.Client.Common/movie/bk2/Bk2Header.cs b/src/BizHawk.Client.Common/movie/bk2/Bk2Header.cs index d895990f27..4a6bd55d59 100644 --- a/src/BizHawk.Client.Common/movie/bk2/Bk2Header.cs +++ b/src/BizHawk.Client.Common/movie/bk2/Bk2Header.cs @@ -1,6 +1,8 @@ using System.Collections.Generic; using System.Text; +using BizHawk.Common; + namespace BizHawk.Client.Common { public class Bk2Header : Dictionary @@ -14,16 +16,7 @@ namespace BizHawk.Client.Common public override string ToString() { var sb = new StringBuilder(); - - foreach (var kvp in this) - { - sb - .Append(kvp.Key) - .Append(' ') - .Append(kvp.Value) - .AppendLine(); - } - + foreach (var (k, v) in this) sb.Append(k).Append(' ').Append(v).AppendLine(); return sb.ToString(); } } diff --git a/src/BizHawk.Client.Common/movie/import/BkmImport.cs b/src/BizHawk.Client.Common/movie/import/BkmImport.cs index b382c8e112..76996cf838 100644 --- a/src/BizHawk.Client.Common/movie/import/BkmImport.cs +++ b/src/BizHawk.Client.Common/movie/import/BkmImport.cs @@ -1,4 +1,6 @@ -namespace BizHawk.Client.Common.movie.import +using BizHawk.Common; + +namespace BizHawk.Client.Common.movie.import { // ReSharper disable once UnusedMember.Global [ImporterFor("BizHawk", ".bkm")] @@ -16,10 +18,7 @@ } Result.Movie.HeaderEntries.Clear(); - foreach (var kvp in bkm.Header) - { - Result.Movie.HeaderEntries[kvp.Key] = kvp.Value; - } + foreach (var (k, v) in bkm.Header) Result.Movie.HeaderEntries[k] = v; Result.Movie.SyncSettingsJson = bkm.SyncSettingsJson; diff --git a/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManager.cs b/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManager.cs index b281139404..013036c83f 100644 --- a/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManager.cs +++ b/src/BizHawk.Client.Common/movie/tasproj/ZwinderStateManager.cs @@ -66,14 +66,11 @@ namespace BizHawk.Client.Common { get { - var kvp = GetStateClosestToFrame(frame); - if (kvp.Key != frame) - { - return NonState; - } + var (f, data) = GetStateClosestToFrame(frame); + if (f != frame) return NonState; var ms = new MemoryStream(); - kvp.Value.CopyTo(ms); + data.CopyTo(ms); return ms.ToArray(); } } @@ -148,8 +145,7 @@ namespace BizHawk.Client.Common } if (_reserved != null) { - foreach (var kvp in _reserved) - newReserved.Add(kvp.Key, kvp.Value); + foreach (var (f, data) in _reserved) newReserved.Add(f, data); (_reserved as TempFileStateDictionary)?.Dispose(); } _reserved = newReserved; @@ -568,11 +564,11 @@ namespace BizHawk.Client.Common _gapFiller.SaveStateBinary(bw); bw.Write(_reserved.Count); - foreach (var s in _reserved) + foreach (var (f, data) in _reserved) { - bw.Write(s.Key); - bw.Write(s.Value.Length); - bw.Write(s.Value); + bw.Write(f); + bw.Write(data.Length); + bw.Write(data); } } diff --git a/src/BizHawk.Client.Common/savestates/SavestateFile.cs b/src/BizHawk.Client.Common/savestates/SavestateFile.cs index a2bdd6da3e..8f7c20cb92 100644 --- a/src/BizHawk.Client.Common/savestates/SavestateFile.cs +++ b/src/BizHawk.Client.Common/savestates/SavestateFile.cs @@ -182,10 +182,7 @@ namespace BizHawk.Client.Common { var bag = (Dictionary)ConfigService.LoadWithType(userData); _userBag.Clear(); - foreach (var kvp in bag) - { - _userBag.Add(kvp.Key, kvp.Value); - } + foreach (var (k, v) in bag) _userBag.Add(k, v); } if (_movieSession.Movie.IsActive() && _movieSession.Movie is ITasMovie) diff --git a/src/BizHawk.Client.EmuHawk/Input/Input.cs b/src/BizHawk.Client.EmuHawk/Input/Input.cs index 7e8ba9e9f0..14a6404841 100644 --- a/src/BizHawk.Client.EmuHawk/Input/Input.cs +++ b/src/BizHawk.Client.EmuHawk/Input/Input.cs @@ -342,11 +342,10 @@ namespace BizHawk.Client.EmuHawk { lock (_axisValues) { - foreach (var kvp in _axisDeltas) + foreach (var (k, v) in _axisDeltas) { // need to wiggle the stick a bit - if (kvp.Value >= 20000.0f) - return kvp.Key; + if (v >= 20000.0f) return k; } } return null; diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index 0b5a02e774..83544c74d1 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -3812,17 +3812,17 @@ namespace BizHawk.Client.EmuHawk { var ext = Path.GetExtension(xmlGame.AssetFullPaths[xg])?.ToLowerInvariant(); + var (filename, data) = xmlGame.Assets[xg]; if (ext == ".cue" || ext == ".ccd" || ext == ".toc" || ext == ".mds") { - xSw.WriteLine(Path.GetFileNameWithoutExtension(xmlGame.Assets[xg].Key)); + xSw.WriteLine(Path.GetFileNameWithoutExtension(filename)); xSw.WriteLine("SHA1:N/A"); xSw.WriteLine("MD5:N/A"); xSw.WriteLine(); } else { - xSw.WriteLine(xmlGame.Assets[xg].Key); - var data = xmlGame.Assets[xg].Value; + xSw.WriteLine(filename); xSw.WriteLine(SHA1Checksum.ComputePrefixedHex(data)); xSw.WriteLine(MD5Checksum.ComputePrefixedHex(data)); xSw.WriteLine(); diff --git a/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs b/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs index 4067cbe986..befd413f6d 100644 --- a/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs +++ b/src/BizHawk.Client.EmuHawk/config/ControllerConfig.cs @@ -7,6 +7,7 @@ using System.Text.RegularExpressions; using System.Windows.Forms; using BizHawk.Client.Common; +using BizHawk.Common; using BizHawk.Emulation.Common; namespace BizHawk.Client.EmuHawk @@ -166,11 +167,10 @@ namespace BizHawk.Client.EmuHawk var tt = new TabControl { Dock = DockStyle.Fill }; dest.Controls.Add(tt); int pageIdx = 0; - foreach (var kvp in orderedBuckets) + foreach (var (tabName, buttons) in orderedBuckets) { - string tabName = kvp.Key; tt.TabPages.Add(tabName); - tt.TabPages[pageIdx++].Controls.Add(createPanel(settings, kvp.Value, tt.Size)); + tt.TabPages[pageIdx++].Controls.Add(createPanel(settings, buttons, tt.Size)); } } } diff --git a/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferences.cs b/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferences.cs index f83e5ab365..6246efb6b8 100644 --- a/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferences.cs +++ b/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferences.cs @@ -4,6 +4,8 @@ using System.Drawing; using System.Linq; using System.Windows.Forms; +using BizHawk.Common; + namespace BizHawk.Client.EmuHawk { public partial class FileExtensionPreferences : Form @@ -20,12 +22,12 @@ namespace BizHawk.Client.EmuHawk { int spacing = UIHelper.ScaleY(30); int count = 0; - foreach (var kvp in _preferredPlatformsForExtensions) + foreach (var (fileExt, sysID) in _preferredPlatformsForExtensions) { var picker = new FileExtensionPreferencesPicker(_preferredPlatformsForExtensions) { - FileExtension = kvp.Key, - OriginalPreference = kvp.Value, + FileExtension = fileExt, + OriginalPreference = sysID, Location = new Point(UIHelper.ScaleX(15), UIHelper.ScaleY(15) + (spacing * count)) }; diff --git a/src/BizHawk.Client.EmuHawk/config/Messages/MessageConfig.cs b/src/BizHawk.Client.EmuHawk/config/Messages/MessageConfig.cs index 9d08e1572f..639bf42293 100644 --- a/src/BizHawk.Client.EmuHawk/config/Messages/MessageConfig.cs +++ b/src/BizHawk.Client.EmuHawk/config/Messages/MessageConfig.cs @@ -4,6 +4,7 @@ using System.Drawing; using System.Linq; using System.Windows.Forms; using BizHawk.Client.Common; +using BizHawk.Common; namespace BizHawk.Client.EmuHawk { @@ -80,19 +81,19 @@ namespace BizHawk.Client.EmuHawk MessageTypeBox.Controls.Clear(); int y = 12; - foreach (var position in Positions) + foreach (var (name, pos) in Positions) { var row = new MessageRow { - Name = position.Key, + Name = name, Location = new Point(10, y) }; row.Size = new Size(MessageTypeBox.Width - 12, row.Size.Height); - row.Bind(position.Key, position.Value, (e) => { SetMessagePosition(row, e); }); - if (position.Value == _fps) + row.Bind(name, pos, e => SetMessagePosition(row, e)); + if (pos == _fps) { row.Checked = true; - MessageEditor.Bind(position.Value, () => { row.SetText(); }); + MessageEditor.Bind(pos, row.SetText); } y += row.Size.Height; @@ -104,14 +105,14 @@ namespace BizHawk.Client.EmuHawk { ColorBox.Controls.Clear(); int y = 20; - foreach (var color in Colors) + foreach (var (name, argb) in Colors) { var row = new ColorRow { - Name = color.Key, + Name = name, Location = new Point(10, y), - DisplayName = color.Key, - SelectedColor = color.Value + DisplayName = name, + SelectedColor = argb }; row.Size = new Size(ColorBox.Width - 12, row.Size.Height); y += row.Size.Height; diff --git a/src/BizHawk.Client.EmuHawk/config/NES/DataTableDictionaryBind.cs b/src/BizHawk.Client.EmuHawk/config/NES/DataTableDictionaryBind.cs index 4a472a10d3..6439914eae 100644 --- a/src/BizHawk.Client.EmuHawk/config/NES/DataTableDictionaryBind.cs +++ b/src/BizHawk.Client.EmuHawk/config/NES/DataTableDictionaryBind.cs @@ -1,6 +1,8 @@ using System.Collections.Generic; using System.Data; +using BizHawk.Common; + namespace BizHawk.Client.EmuHawk { public class DataTableDictionaryBind @@ -22,10 +24,7 @@ namespace BizHawk.Client.EmuHawk Table = new DataTable(); Table.Columns.Add("Key", typeof(TKey)); Table.Columns.Add("Value", typeof(TValue)); - foreach (var kvp in Dictionary) - { - Table.Rows.Add(kvp.Key, kvp.Value); - } + foreach (var (k, v) in Dictionary) Table.Rows.Add(k, v); Table.RowChanged += Table_RowChanged; WasModified = false; diff --git a/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs b/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs index 6e982c711e..4f0b803f56 100644 --- a/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs +++ b/src/BizHawk.Client.EmuHawk/movie/PlayMovie.cs @@ -384,32 +384,32 @@ namespace BizHawk.Client.EmuHawk var firstIndex = MovieView.SelectedIndices[0]; MovieView.EnsureVisible(firstIndex); - foreach (var kvp in _movieList[firstIndex].HeaderEntries) + foreach (var (k, v) in _movieList[firstIndex].HeaderEntries) { - var item = new ListViewItem(kvp.Key); - item.SubItems.Add(kvp.Value); - item.ToolTipText = kvp.Value; - switch (kvp.Key) + var item = new ListViewItem(k); + item.SubItems.Add(v); + item.ToolTipText = v; + switch (k) { case HeaderKeys.Sha1: - if (_game.Hash != kvp.Value) + if (_game.Hash != v) { item.BackColor = Color.Pink; - item.ToolTipText = $"Expected: {kvp.Value}\nActual: {_game.Hash}"; + item.ToolTipText = $"Expected: {v}\nActual: {_game.Hash}"; } break; case HeaderKeys.EmulatorVersion: - if (VersionInfo.GetEmuVersion() != kvp.Value) + if (VersionInfo.GetEmuVersion() != v) { item.BackColor = Color.Yellow; - item.ToolTipText = $"Expected: {kvp.Value}\nActual: {VersionInfo.GetEmuVersion()}"; + item.ToolTipText = $"Expected: {v}\nActual: {VersionInfo.GetEmuVersion()}"; } break; case HeaderKeys.Platform: - if (_emulator.SystemId != kvp.Value) + if (_emulator.SystemId != v) { item.BackColor = Color.Pink; - item.ToolTipText = $"Expected: {kvp.Value}\n Actual: {_emulator.SystemId}"; + item.ToolTipText = $"Expected: {v}\n Actual: {_emulator.SystemId}"; } break; } diff --git a/src/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs b/src/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs index 54898b78a7..a3b7a176b0 100644 --- a/src/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs +++ b/src/BizHawk.Client.EmuHawk/tools/BasicBot/BasicBot.cs @@ -637,10 +637,10 @@ namespace BizHawk.Client.EmuHawk .OfType() .ToList(); - foreach (var kvp in botData.ControlProbabilities) + foreach (var (button, p) in botData.ControlProbabilities) { - var control = probabilityControls.Single(c => c.ButtonName == kvp.Key); - control.Probability = kvp.Value; + var control = probabilityControls.Single(c => c.ButtonName == button); + control.Probability = p; } MaximizeAddress = botData.Maximize; diff --git a/src/BizHawk.Client.EmuHawk/tools/CDL.cs b/src/BizHawk.Client.EmuHawk/tools/CDL.cs index fff6bfb488..96f893ca92 100644 --- a/src/BizHawk.Client.EmuHawk/tools/CDL.cs +++ b/src/BizHawk.Client.EmuHawk/tools/CDL.cs @@ -7,6 +7,7 @@ using BizHawk.Emulation.Common; using BizHawk.Client.Common; using BizHawk.Client.EmuHawk.Properties; using BizHawk.Client.EmuHawk.ToolExtensions; +using BizHawk.Common; // TODO - select which memorydomains go out to the CDL file. will this cause a problem when re-importing it? // perhaps missing domains shouldn't fail a check @@ -133,7 +134,7 @@ namespace BizHawk.Client.EmuHawk _listContents = new string[_cdl.Count][]; int idx = 0; - foreach (var kvp in _cdl) + foreach (var (scope, dataA) in _cdl) { int[] totals = new int[8]; int total = 0; @@ -141,10 +142,10 @@ namespace BizHawk.Client.EmuHawk for (int i = 0; i < 256; i++) map[i] = 0; - fixed (byte* data = kvp.Value) + fixed (byte* data = dataA) { byte* src = data; - byte* end = data + kvp.Value.Length; + byte* end = data + dataA.Length; while (src < end) { byte s = *src++; @@ -166,28 +167,28 @@ namespace BizHawk.Client.EmuHawk } var bm = _cdl.GetBlockMap(); - long addr = bm[kvp.Key]; + long addr = bm[scope]; var lvi = _listContents[idx++] = new string[13]; lvi[0] = $"{addr:X8}"; - lvi[1] = kvp.Key; - lvi[2] = $"{total / (float)kvp.Value.Length * 100f:0.00}%"; + lvi[1] = scope; + lvi[2] = $"{total / (float) dataA.Length * 100f:0.00}%"; if (tsbViewStyle.SelectedIndex == 2) lvi[3] = $"{total / 1024.0f:0.00}"; else lvi[3] = $"{total}"; if (tsbViewStyle.SelectedIndex == 2) { - int n = (int)(kvp.Value.Length / 1024.0f); - float ncheck = kvp.Value.Length / 1024.0f; + int n = (int) (dataA.Length / 1024.0f); + float ncheck = dataA.Length / 1024.0f; lvi[4] = $"of {(n == ncheck ? "" : "~")}{n} KBytes"; } else - lvi[4] = $"of {kvp.Value.Length} Bytes"; + lvi[4] = $"of {dataA.Length} Bytes"; for (int i = 0; i < 8; i++) { if (tsbViewStyle.SelectedIndex == 0) - lvi[5 + i] = $"{totals[i] / (float)kvp.Value.Length * 100f:0.00}%"; + lvi[5 + i] = $"{totals[i] / (float) dataA.Length * 100f:0.00}%"; if (tsbViewStyle.SelectedIndex == 1) lvi[5 + i] = $"{totals[i]}"; if (tsbViewStyle.SelectedIndex == 2) diff --git a/src/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs b/src/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs index 2960e78c21..79e3e77a71 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Debugger/RegisterBoxControl.cs @@ -3,6 +3,7 @@ using System.Drawing; using System.Linq; using System.Windows.Forms; +using BizHawk.Common; using BizHawk.Common.NumberExtensions; using BizHawk.Emulation.Common; @@ -30,7 +31,7 @@ namespace BizHawk.Client.EmuHawk var registers = Core.GetCpuFlagsAndRegisters(); _suppressChangeEvents = true; - foreach (var register in registers) + foreach (var (name, rv) in registers) { if (Controls.OfType().Any(p => p.Name == "FlagPanel")) { @@ -39,9 +40,9 @@ namespace BizHawk.Client.EmuHawk .Controls .OfType()) { - if (checkbox.Name == register.Key) + if (checkbox.Name == name) { - checkbox.Checked = register.Value.Value == 1; + checkbox.Checked = rv.Value == 1; } } } @@ -50,9 +51,9 @@ namespace BizHawk.Client.EmuHawk { foreach (var textBox in Controls.OfType()) { - if (textBox.Name == register.Key) + if (textBox.Name == name) { - textBox.Text = register.Value.Value.ToHexString(register.Value.BitSize / 4); + textBox.Text = rv.Value.ToHexString(rv.BitSize / 4); } } } @@ -60,9 +61,9 @@ namespace BizHawk.Client.EmuHawk { foreach (var label in Controls.OfType