From c1a7556d7fa18f944e9438f0c3bb724240b11da3 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Tue, 8 Mar 2022 11:52:07 +1000 Subject: [PATCH] Enable SA1129 and fix noncompliance (except in Cores) calling implicit default struct ctor --- Common.ruleset | 2 +- src/BizHawk.BizInvoke/BizInvoker.cs | 4 ++-- src/BizHawk.Bizware.BizwareGL/math/Matrix4.cs | 2 +- src/BizHawk.Bizware.DirectX/GamePad360.cs | 2 +- src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs | 1 + src/BizHawk.Client.EmuHawk/MainForm.cs | 2 +- src/BizHawk.Client.EmuHawk/QuickBmpFile.cs | 2 ++ .../tools/Lua/Libraries/TAStudioLuaLibrary.cs | 4 ++-- src/BizHawk.Client.EmuHawk/tools/NES/NESMusicRipper.cs | 9 ++++++--- .../BizHawk.Emulation.Cores.csproj | 2 +- src/BizHawk.Emulation.DiscSystem/Disc.cs | 2 +- .../DiscFormats/CUE/CUE_Load.cs | 2 +- .../Internal/Jobs/Synthesize_A0A1A2_Job.cs | 2 +- .../Internal/Jobs/Synthesize_Leadout_Job.cs | 2 +- src/BizHawk.Emulation.DiscSystem/Internal/SectorSynth.cs | 2 +- 15 files changed, 23 insertions(+), 17 deletions(-) diff --git a/Common.ruleset b/Common.ruleset index bf97cebb1b..5a5937628f 100644 --- a/Common.ruleset +++ b/Common.ruleset @@ -414,7 +414,7 @@ - + diff --git a/src/BizHawk.BizInvoke/BizInvoker.cs b/src/BizHawk.BizInvoke/BizInvoker.cs index 8adb181116..892612411e 100644 --- a/src/BizHawk.BizInvoke/BizInvoker.cs +++ b/src/BizHawk.BizInvoke/BizInvoker.cs @@ -269,7 +269,7 @@ namespace BizHawk.BizInvoke var il = method.GetILGenerator(); - Label exc = new Label(); + Label exc = default; if (monitorField != null) // monitor: enter and then begin try { il.Emit(OpCodes.Ldarg_0); @@ -376,7 +376,7 @@ namespace BizHawk.BizInvoke var il = method.GetILGenerator(); - Label exc = new Label(); + Label exc = default; if (monitorField != null) // monitor: enter and then begin try { il.Emit(OpCodes.Ldarg_0); diff --git a/src/BizHawk.Bizware.BizwareGL/math/Matrix4.cs b/src/BizHawk.Bizware.BizwareGL/math/Matrix4.cs index 3ac5392c69..633009e2bc 100644 --- a/src/BizHawk.Bizware.BizwareGL/math/Matrix4.cs +++ b/src/BizHawk.Bizware.BizwareGL/math/Matrix4.cs @@ -165,7 +165,7 @@ namespace BizHawk.Bizware.BizwareGL var pFlIn = (float*) pMatIn; for (var i = 0; i < 16; i++) pDbTemp[i] = pFlIn[i]; } - Matrix4 result = new(); + Matrix4 result = default; ref var refResult = ref result; fixed (Matrix4* pMatOut = &refResult) { diff --git a/src/BizHawk.Bizware.DirectX/GamePad360.cs b/src/BizHawk.Bizware.DirectX/GamePad360.cs index e1aacd9e02..7b81ace4ac 100644 --- a/src/BizHawk.Bizware.DirectX/GamePad360.cs +++ b/src/BizHawk.Bizware.DirectX/GamePad360.cs @@ -140,7 +140,7 @@ namespace BizHawk.Bizware.DirectX if (XInputGetStateExProc != null) { - _state = new XINPUT_STATE(); + _state = default; XInputGetStateExProc(_index0, out _state); } else diff --git a/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs b/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs index d30aa6a785..54cd1b093a 100644 --- a/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs +++ b/src/BizHawk.Client.EmuHawk/AVOut/AviWriter.cs @@ -1,4 +1,5 @@ #if AVI_SUPPORT +#pragma warning disable SA1129 using System; using System.Collections.Concurrent; using System.Collections.Generic; diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index b8371a288b..f87dcf69e7 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -4832,6 +4832,6 @@ namespace BizHawk.Client.EmuHawk LoadRom(args[0]); } - public IQuickBmpFile QuickBmpFile { get; } = new QuickBmpFile(); + public IQuickBmpFile QuickBmpFile { get; } = EmuHawk.QuickBmpFile.INSTANCE; } } diff --git a/src/BizHawk.Client.EmuHawk/QuickBmpFile.cs b/src/BizHawk.Client.EmuHawk/QuickBmpFile.cs index afa513f280..261560a58b 100644 --- a/src/BizHawk.Client.EmuHawk/QuickBmpFile.cs +++ b/src/BizHawk.Client.EmuHawk/QuickBmpFile.cs @@ -332,6 +332,8 @@ namespace BizHawk.Client.EmuHawk s.Write(dst, 0, dst.Length); } + public static readonly QuickBmpFile INSTANCE = default; + readonly void IQuickBmpFile.Copy(IVideoProvider src, IVideoProvider dst) => Copy(src, dst); readonly bool IQuickBmpFile.Load(IVideoProvider v, Stream s) => Load(v, s); diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs index 300ba84da3..569af1ec3c 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/Libraries/TAStudioLuaLibrary.cs @@ -178,7 +178,7 @@ namespace BizHawk.Client.EmuHawk { if (frame >= 0) { - PendingChanges newChange = new PendingChanges(); + PendingChanges newChange = default; if (frame < Tastudio.CurrentTasMovie.InputLogLength) { @@ -215,7 +215,7 @@ namespace BizHawk.Client.EmuHawk { if (frame >= 0) { - PendingChanges newChange = new PendingChanges(); + PendingChanges newChange = default; if (frame < Tastudio.CurrentTasMovie.InputLogLength) { diff --git a/src/BizHawk.Client.EmuHawk/tools/NES/NESMusicRipper.cs b/src/BizHawk.Client.EmuHawk/tools/NES/NESMusicRipper.cs index f57a3ad526..20aea5a0b5 100644 --- a/src/BizHawk.Client.EmuHawk/tools/NES/NESMusicRipper.cs +++ b/src/BizHawk.Client.EmuHawk/tools/NES/NESMusicRipper.cs @@ -166,9 +166,12 @@ namespace BizHawk.Client.EmuHawk var rec = _log[index]; - PulseState pulse = new PulseState(); - if (track == 0) pulse = rec.Pulse0; - if (track == 1) pulse = rec.Pulse1; + var pulse = track switch + { + 0 => rec.Pulse0, + 1 => rec.Pulse1, + _ => default + }; // transform quieted notes to dead notes // blech its buggy, im tired diff --git a/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj b/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj index 6ffed5ddf1..a5fd011e2a 100644 --- a/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj +++ b/src/BizHawk.Emulation.Cores/BizHawk.Emulation.Cores.csproj @@ -5,7 +5,7 @@ true - $(NoWarn);CA1806;CA1825;CA2214;SA1100;SA1120;SA1137;SA1205;SA1208;SA1400 + $(NoWarn);CA1806;CA1825;CA2214;SA1100;SA1120;SA1129;SA1137;SA1205;SA1208;SA1400 disable diff --git a/src/BizHawk.Emulation.DiscSystem/Disc.cs b/src/BizHawk.Emulation.DiscSystem/Disc.cs index cf4c8124ac..7db2fc7aa8 100644 --- a/src/BizHawk.Emulation.DiscSystem/Disc.cs +++ b/src/BizHawk.Emulation.DiscSystem/Disc.cs @@ -120,7 +120,7 @@ namespace BizHawk.Emulation.DiscSystem /// /// Parameters set during disc loading which can be referenced by the sector synthesizers /// - internal SectorSynthParams SynthParams = new SectorSynthParams(); + internal SectorSynthParams SynthParams = default; /// /// Forbid public construction diff --git a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Load.cs b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Load.cs index d02743f847..5a385f73a3 100644 --- a/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Load.cs +++ b/src/BizHawk.Emulation.DiscSystem/DiscFormats/CUE/CUE_Load.cs @@ -160,7 +160,7 @@ namespace BizHawk.Emulation.DiscSystem.CUE private void EmitRawTOCEntry(CompiledCueTrack cct) { - SubchannelQ toc_sq = new SubchannelQ(); + SubchannelQ toc_sq = default; //absent some kind of policy for how to set it, this is a safe assumption: byte toc_ADR = 1; toc_sq.SetStatus(toc_ADR, (EControlQ)(int)cct.Flags); diff --git a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_A0A1A2_Job.cs b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_A0A1A2_Job.cs index a710ff503e..3e29e62537 100644 --- a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_A0A1A2_Job.cs +++ b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_A0A1A2_Job.cs @@ -42,7 +42,7 @@ namespace BizHawk.Emulation.DiscSystem //NOTE: entries are inserted at the beginning due to observations of CCD indicating they might need to be that way //Since I'm being asked to synthesize them here, I guess I can put them in whatever order I want, can't I? - SubchannelQ sq = new SubchannelQ(); + SubchannelQ sq = default; //ADR (q-Mode) is necessarily 0x01 for a RawTOCEntry const int kADR = 1; diff --git a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_Leadout_Job.cs b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_Leadout_Job.cs index 67e743eb9a..349045f4f2 100644 --- a/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_Leadout_Job.cs +++ b/src/BizHawk.Emulation.DiscSystem/Internal/Jobs/Synthesize_Leadout_Job.cs @@ -37,7 +37,7 @@ namespace BizHawk.Emulation.DiscSystem { //var se = new SectorEntry(sz); //Disc.Sectors.Add(se); - SubchannelQ sq = new SubchannelQ(); + SubchannelQ sq = default; int track_relative_msf = i; sq.min = BCD2.FromDecimal(new Timestamp(track_relative_msf).MIN); diff --git a/src/BizHawk.Emulation.DiscSystem/Internal/SectorSynth.cs b/src/BizHawk.Emulation.DiscSystem/Internal/SectorSynth.cs index 31e31ffcd9..4e4a59cc79 100644 --- a/src/BizHawk.Emulation.DiscSystem/Internal/SectorSynth.cs +++ b/src/BizHawk.Emulation.DiscSystem/Internal/SectorSynth.cs @@ -239,7 +239,7 @@ namespace BizHawk.Emulation.DiscSystem // else if(toc.disc_type == DISC_TYPE_CD_I) control |= 0x4; control |= (EControlQ)(((int)ses.LastInformationTrack.Control) & 4); - SubchannelQ sq = new SubchannelQ(); + SubchannelQ sq = default; sq.SetStatus(ADR, control); sq.q_tno.BCDValue = 0xAA; sq.q_index.BCDValue = 0x01;