From bfde89b9f3adf27fe0cc10e79937e1f21d313c89 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 25 Jan 2020 07:55:48 +1000 Subject: [PATCH] Enable SA1139 and fix noncompliance "Use literal suffix notation instead of casting" --- BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs | 2 +- BizHawk.Client.Common/movie/PlatformFrameRates.cs | 8 ++++---- BizHawk.Client.Common/rewind/Rewinder.cs | 2 +- BizHawk.Client.EmuHawk/AVOut/WavWriter.cs | 10 +++++----- BizHawk.Client.EmuHawk/CustomControls/HexTextBox.cs | 2 +- .../tools/TAStudio/GreenzoneSettings.cs | 2 +- BizHawk.Common/BinaryQuickSerializer.cs | 12 ++++++------ BizHawk.Emulation.Cores/Calculator/TI83.cs | 4 +--- .../Computers/AmstradCPC/AmstradCPC.Messaging.cs | 4 ++-- .../AmstradCPC/Media/Tape/CDT/CdtConverter.cs | 2 +- .../SinclairSpectrum/ZXSpectrum.Messaging.cs | 4 ++-- .../Consoles/Fairchild/ChannelF/Audio.cs | 2 +- BizHawk.Emulation.Cores/Libretro/LibretroCore.cs | 2 +- Common.ruleset | 3 --- 14 files changed, 27 insertions(+), 32 deletions(-) diff --git a/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs b/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs index 6f085fca19..e37c7d33a3 100644 --- a/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs +++ b/BizHawk.Client.Common/lua/EmuLuaLibrary.Bit.cs @@ -91,7 +91,7 @@ namespace BizHawk.Client.Common [LuaMethod("set", "Sets the bit 'pos' in 'num'")] public static uint Set(uint num, int pos) { - return (uint)(num | (uint)1 << pos); + return (uint)(num | 1U << pos); } [LuaMethodExample("local lobitcle = bit.clear( 25, 35 );")] diff --git a/BizHawk.Client.Common/movie/PlatformFrameRates.cs b/BizHawk.Client.Common/movie/PlatformFrameRates.cs index 1515e4e23a..e2511f1077 100644 --- a/BizHawk.Client.Common/movie/PlatformFrameRates.cs +++ b/BizHawk.Client.Common/movie/PlatformFrameRates.cs @@ -20,10 +20,10 @@ namespace BizHawk.Client.Common ["NES_PAL"] = 50.006977968268290849, ["FDS"] = 60.098813897440515532, ["FDS_PAL"] = 50.006977968268290849, - ["SNES"] = (double)21477272 / (4 * 341 * 262), // 60.098475521 - ["SNES_PAL"] = (double)21281370 / (4 * 341 * 312), // 50.0069789082 - ["SGB"] = (double)21477272 / (4 * 341 * 262), // 60.098475521 - ["SGB_PAL"] = (double)21281370 / (4 * 341 * 312), // 50.0069789082 + ["SNES"] = 21477272.0 / (4 * 341 * 262), // 60.098475521 + ["SNES_PAL"] = 21281370.0 / (4 * 341 * 312), // 50.0069789082 + ["SGB"] = 21477272.0 / (4 * 341 * 262), // 60.098475521 + ["SGB_PAL"] = 21281370.0 / (4 * 341 * 312), // 50.0069789082 ["PCE"] = (7159090.90909090 / 455 / 263), // 59.8261054535 ["PCECD"] = (7159090.90909090 / 455 / 263), // 59.8261054535 ["SMS"] = (3579545 / 262.0 / 228.0), // 59.9227434043 diff --git a/BizHawk.Client.Common/rewind/Rewinder.cs b/BizHawk.Client.Common/rewind/Rewinder.cs index 22fd07ca7b..534b62656a 100644 --- a/BizHawk.Client.Common/rewind/Rewinder.cs +++ b/BizHawk.Client.Common/rewind/Rewinder.cs @@ -69,7 +69,7 @@ namespace BizHawk.Client.Common if (RewindActive) { - var capacity = Global.Config.Rewind_BufferSize * (long)1024 * 1024; + var capacity = Global.Config.Rewind_BufferSize * 1048576L; _rewindBuffer = new StreamBlobDatabase(Global.Config.Rewind_OnDisk, capacity, BufferManage); diff --git a/BizHawk.Client.EmuHawk/AVOut/WavWriter.cs b/BizHawk.Client.EmuHawk/AVOut/WavWriter.cs index 0975c53f33..7dd008ba7f 100644 --- a/BizHawk.Client.EmuHawk/AVOut/WavWriter.cs +++ b/BizHawk.Client.EmuHawk/AVOut/WavWriter.cs @@ -50,20 +50,20 @@ namespace BizHawk.Client.EmuHawk private void WriteHeaders() { _file.Write(Encoding.ASCII.GetBytes("RIFF")); // ChunkID - _file.Write((uint)0); // ChunkSize + _file.Write(0U); // ChunkSize _file.Write(Encoding.ASCII.GetBytes("WAVE")); // Format _file.Write(Encoding.ASCII.GetBytes("fmt ")); // SubchunkID - _file.Write((uint)16); // SubchunkSize - _file.Write((ushort)1); // AudioFormat (PCM) + _file.Write(16U); // SubchunkSize + _file.Write((ushort)1U); // AudioFormat (PCM) _file.Write((ushort)_numChannels); // NumChannels _file.Write((uint)_sampleRate); // SampleRate _file.Write((uint)(_sampleRate * _numChannels * 2)); // ByteRate _file.Write((ushort)(_numChannels * 2)); // BlockAlign - _file.Write((ushort)16); // BitsPerSample + _file.Write((ushort)16U); // BitsPerSample _file.Write(Encoding.ASCII.GetBytes("data")); // SubchunkID - _file.Write((uint)0); // SubchunkSize + _file.Write(0U); // SubchunkSize } /// diff --git a/BizHawk.Client.EmuHawk/CustomControls/HexTextBox.cs b/BizHawk.Client.EmuHawk/CustomControls/HexTextBox.cs index 46b2229797..5cb699f1d3 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/HexTextBox.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/HexTextBox.cs @@ -59,7 +59,7 @@ namespace BizHawk.Client.EmuHawk return _maxSize.Value; } - return ((long)1 << (4 * MaxLength)) - 1; + return (1L << (4 * MaxLength)) - 1; } public override void ResetText() diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/GreenzoneSettings.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/GreenzoneSettings.cs index db47709695..0619e083c9 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/GreenzoneSettings.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/GreenzoneSettings.cs @@ -22,7 +22,7 @@ namespace BizHawk.Client.EmuHawk private void StateHistorySettings_Load(object sender, EventArgs e) { - _stateSizeMb = Statable.SaveStateBinary().Length / (decimal)1024 / 1024; + _stateSizeMb = Statable.SaveStateBinary().Length / 1048576.0M; MemCapacityNumeric.Maximum = 1024 * 8; MemCapacityNumeric.Minimum = _stateSizeMb + 1; diff --git a/BizHawk.Common/BinaryQuickSerializer.cs b/BizHawk.Common/BinaryQuickSerializer.cs index c8063be9fd..411be9d938 100644 --- a/BizHawk.Common/BinaryQuickSerializer.cs +++ b/BizHawk.Common/BinaryQuickSerializer.cs @@ -72,25 +72,25 @@ namespace BizHawk.Common AddW(r => r.Write((sbyte)0)); AddR(r => r.ReadByte()); - AddW(r => r.Write((byte)0)); + AddW(r => r.Write((byte)0U)); AddR(r => r.ReadInt16()); AddW(r => r.Write((short)0)); AddR(r => r.ReadUInt16()); - AddW(r => r.Write((ushort)0)); + AddW(r => r.Write((ushort)0U)); AddR(r => r.ReadInt32()); - AddW(r => r.Write((int)0)); + AddW(r => r.Write(0)); AddR(r => r.ReadUInt32()); - AddW(r => r.Write((uint)0)); + AddW(r => r.Write(0U)); AddR(r => r.ReadInt64()); - AddW(r => r.Write((long)0)); + AddW(r => r.Write(0L)); AddR(r => r.ReadUInt64()); - AddW(r => r.Write((ulong)0)); + AddW(r => r.Write(0UL)); } #endregion diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index 2cc63e9b7c..38f7af78a1 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -210,9 +210,7 @@ namespace BizHawk.Emulation.Cores.Calculators TIM_mult = ((value & 0x10) == 0x10) ? 1800 : 1620; - TIM_hit = (int)Math.Floor((double)TIM_mult / (3 + TIM_frq * 2)); - - TIM_hit = (int)Math.Floor((double)6000000 / TIM_hit); + TIM_hit = (int) Math.Floor(6000000.0 / Math.Floor((double) TIM_mult / (2 * TIM_frq + 3))); // Bit 0 is some form of memory mapping diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Messaging.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Messaging.cs index 6d490092b3..0619635535 100644 --- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Messaging.cs +++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/AmstradCPC.Messaging.cs @@ -430,7 +430,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC int end = _machine.TapeDevice.DataBlocks[_machine.TapeDevice.CurrentDataBlockIndex].DataPeriods.Count; double p = 0; if (end != 0) - p = ((double)pos / (double)end) * (double)100; + p = ((double)pos / (double)end) * 100.0; sb.Append(p.ToString("N0") + "%"); SendMessage(sb.ToString().TrimEnd('\n'), MessageCategory.Tape); @@ -454,7 +454,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC } // work out overall position within the tape p = 0; - p = ((double)ourPos / (double)cnt) * (double)100; + p = ((double)ourPos / (double)cnt) * 100.0; sb.Append(p.ToString("N0") + "%"); SendMessage(sb.ToString().TrimEnd('\n'), MessageCategory.Tape); } diff --git a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs index a501bd0d07..fb6a347a74 100644 --- a/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs +++ b/BizHawk.Emulation.Cores/Computers/AmstradCPC/Media/Tape/CDT/CdtConverter.cs @@ -74,7 +74,7 @@ namespace BizHawk.Emulation.Cores.Computers.AmstradCPC tb.MetaData = db.MetaData; tb.PauseInMS = db.PauseInMS; - double multiplier = (double)4 / (double)3.5; + double multiplier = 8.0 / 7.0; //double cycleScale = ((40 << 16) / 35); double origPeriods = db.DataPeriods.Count(); diff --git a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Messaging.cs b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Messaging.cs index 777ce22db4..4d7c442084 100644 --- a/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Messaging.cs +++ b/BizHawk.Emulation.Cores/Computers/SinclairSpectrum/ZXSpectrum.Messaging.cs @@ -401,7 +401,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum int end = _machine.TapeDevice.DataBlocks[_machine.TapeDevice.CurrentDataBlockIndex].DataPeriods.Count; double p = 0; if (end != 0) - p = ((double)pos / (double)end) * (double)100; + p = ((double)pos / (double)end) * 100.0; sb.Append(p.ToString("N0") + "%"); SendMessage(sb.ToString().TrimEnd('\n'), MessageCategory.Tape); @@ -425,7 +425,7 @@ namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum } // work out overall position within the tape p = 0; - p = ((double)ourPos / (double)cnt) * (double)100; + p = ((double)ourPos / (double)cnt) * 100.0; sb.Append(p.ToString("N0") + "%"); SendMessage(sb.ToString().TrimEnd('\n'), MessageCategory.Tape); } diff --git a/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/Audio.cs b/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/Audio.cs index 6390adea4a..11f155e181 100644 --- a/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/Audio.cs +++ b/BizHawk.Emulation.Cores/Consoles/Fairchild/ChannelF/Audio.cs @@ -35,7 +35,7 @@ namespace BizHawk.Emulation.Cores.Consoles.ChannelF private void SetupAudio() { - Period = (double)1 / SampleRate; + Period = 1.0 / SampleRate; SamplesPerFrame = (int)(SampleRate / refreshRate); CyclesPerSample = (double)ClockPerFrame / (double)SamplesPerFrame; SampleBuffer = new short[SamplesPerFrame]; diff --git a/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs b/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs index 3d364b2107..0993939803 100644 --- a/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs +++ b/BizHawk.Emulation.Cores/Libretro/LibretroCore.cs @@ -232,7 +232,7 @@ namespace BizHawk.Emulation.Cores.Libretro // todo: more precise? uint spsnum = (uint)sps * 1000; - uint spsden = (uint)1000; + uint spsden = 1000U; resampler = new SpeexResampler(SpeexResampler.Quality.QUALITY_DESKTOP, 44100 * spsden, spsnum, (uint)sps, 44100, null, null); } diff --git a/Common.ruleset b/Common.ruleset index a274081952..9280955e24 100644 --- a/Common.ruleset +++ b/Common.ruleset @@ -157,9 +157,6 @@ - - -