From 592cedba1d78704923a6043df172cfc6d1791832 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 29 Nov 2020 11:26:41 -0600 Subject: [PATCH] make fields readonly where possible in EmuHawk project --- .../CustomControls/FolderBrowserDialogEx.cs | 2 +- .../GraphicsImplementations/IGL_GdiPlus.cs | 2 +- .../GraphicsImplementations/IGL_TK.cs | 8 ++++---- .../Sound/Output/OpenALSoundOutput.cs | 4 ++-- .../config/FileExtensionPreferencesPicker.cs | 2 +- .../config/N64/N64VideoPluginconfig.cs | 2 +- .../tools/Lua/LuaAutocompleteInstaller.cs | 8 ++++---- .../tools/SNES/SNESGraphicsDebugger.cs | 2 +- src/BizHawk.Client.EmuHawk/tools/TraceLogger.cs | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/CustomControls/FolderBrowserDialogEx.cs b/src/BizHawk.Client.EmuHawk/CustomControls/FolderBrowserDialogEx.cs index 78cbccbaf0..4a0026c890 100644 --- a/src/BizHawk.Client.EmuHawk/CustomControls/FolderBrowserDialogEx.cs +++ b/src/BizHawk.Client.EmuHawk/CustomControls/FolderBrowserDialogEx.cs @@ -22,7 +22,7 @@ namespace BizHawk.Client.EmuHawk public sealed class FolderBrowserEx : Component { /// is this supposed to be public? we're obviously not using it at callsites at the moment --yoshi - private Win32Imports.BROWSEINFO.FLAGS publicOptions = Win32Imports.BROWSEINFO.FLAGS.RestrictToFilesystem | Win32Imports.BROWSEINFO.FLAGS.RestrictToDomain; + private readonly Win32Imports.BROWSEINFO.FLAGS publicOptions = Win32Imports.BROWSEINFO.FLAGS.RestrictToFilesystem | Win32Imports.BROWSEINFO.FLAGS.RestrictToDomain; public string Description = "Please select a folder below:"; diff --git a/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs b/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs index 7ee5a8b119..8cc9d535c9 100644 --- a/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs +++ b/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_GdiPlus.cs @@ -269,7 +269,7 @@ namespace BizHawk.Client.EmuHawk { } - private IGL_GdiPlus Gdi; + private readonly IGL_GdiPlus Gdi; /// /// the control associated with this render target (if any) diff --git a/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_TK.cs b/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_TK.cs index d625bd956c..964bd0ab8f 100644 --- a/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_TK.cs +++ b/src/BizHawk.Client.EmuHawk/GraphicsImplementations/IGL_TK.cs @@ -714,7 +714,7 @@ namespace BizHawk.Client.EmuHawk //HAMNUTS: //its not clear how many bindings we'll have to disable before we can enable the ones we need.. //so lets just disable the ones we remember we have bound - var currBindings = sVertexAttribEnables; + var currBindings = _sVertexAttribEnables; foreach (var index in currBindings) GL.DisableVertexAttribArray(index); currBindings.Clear(); @@ -725,7 +725,7 @@ namespace BizHawk.Client.EmuHawk UnbindVertexAttributes(); //HAMNUTS (continued) - var currBindings = sVertexAttribEnables; + var currBindings = _sVertexAttribEnables; sStateCurrentVertexLayout = sStatePendingVertexLayout; if (layout == null) return; @@ -815,13 +815,13 @@ namespace BizHawk.Client.EmuHawk private int sActiveTexture; private VertexLayout sStateCurrentVertexLayout; private VertexLayout sStatePendingVertexLayout; - private HashSet sVertexAttribEnables = new HashSet(); + private readonly HashSet _sVertexAttribEnables = new HashSet(); private void PurgeStateCache() { sStateCurrentVertexLayout = null; sStatePendingVertexLayout = null; - sVertexAttribEnables.Clear(); + _sVertexAttribEnables.Clear(); sActiveTexture = -1; } diff --git a/src/BizHawk.Client.EmuHawk/Sound/Output/OpenALSoundOutput.cs b/src/BizHawk.Client.EmuHawk/Sound/Output/OpenALSoundOutput.cs index 8797dee6c8..863a3819f0 100644 --- a/src/BizHawk.Client.EmuHawk/Sound/Output/OpenALSoundOutput.cs +++ b/src/BizHawk.Client.EmuHawk/Sound/Output/OpenALSoundOutput.cs @@ -147,8 +147,8 @@ namespace BizHawk.Client.EmuHawk private class BufferPool : IDisposable { - private Stack _availableItems = new Stack(); - private Queue _obtainedItems = new Queue(); + private readonly Stack _availableItems = new Stack(); + private readonly Queue _obtainedItems = new Queue(); public void Dispose() { diff --git a/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferencesPicker.cs b/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferencesPicker.cs index 55f6d4ad18..9af438da62 100644 --- a/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferencesPicker.cs +++ b/src/BizHawk.Client.EmuHawk/config/FileExtensionPreferencesPicker.cs @@ -9,7 +9,7 @@ namespace BizHawk.Client.EmuHawk { public partial class FileExtensionPreferencesPicker : UserControl { - private IDictionary _preferredPlatformsForExtensions; + private readonly IDictionary _preferredPlatformsForExtensions; public FileExtensionPreferencesPicker(IDictionary preferredPlatformsForExtensions) { diff --git a/src/BizHawk.Client.EmuHawk/config/N64/N64VideoPluginconfig.cs b/src/BizHawk.Client.EmuHawk/config/N64/N64VideoPluginconfig.cs index 7833fa8fb4..f1ec55627b 100644 --- a/src/BizHawk.Client.EmuHawk/config/N64/N64VideoPluginconfig.cs +++ b/src/BizHawk.Client.EmuHawk/config/N64/N64VideoPluginconfig.cs @@ -38,7 +38,7 @@ namespace BizHawk.Client.EmuHawk CustomResItemName }; - private bool _programmaticallyChangingPluginComboBox = false; + private readonly bool _programmaticallyChangingPluginComboBox = false; public N64VideoPluginConfig( IMainFormForConfig mainForm, diff --git a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaAutocompleteInstaller.cs b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaAutocompleteInstaller.cs index fb30c8a695..95df15dd12 100644 --- a/src/BizHawk.Client.EmuHawk/tools/Lua/LuaAutocompleteInstaller.cs +++ b/src/BizHawk.Client.EmuHawk/tools/Lua/LuaAutocompleteInstaller.cs @@ -57,8 +57,8 @@ namespace BizHawk.Client.EmuHawk return File.Exists(exePath); } - private string SublimeLuaPath = @"Sublime Text 2\Packages\Lua"; - private string SublimeCompletionsFilename = "bizhawk.lua.sublime-completions"; + private readonly string SublimeLuaPath = @"Sublime Text 2\Packages\Lua"; + private readonly string SublimeCompletionsFilename = "bizhawk.lua.sublime-completions"; private bool IsBizLuaSublimeInstalled() { @@ -66,8 +66,8 @@ namespace BizHawk.Client.EmuHawk return File.Exists(bizCompletions); } - private string NotepadPath = "TODO"; - private string NotepadAutoCompleteFileName = "TODO"; + private readonly string NotepadPath = "TODO"; + private readonly string NotepadAutoCompleteFileName = "TODO"; private bool IsBizLuaNotepadInstalled() { diff --git a/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs b/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs index 042bf03784..887729fb57 100644 --- a/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs +++ b/src/BizHawk.Client.EmuHawk/tools/SNES/SNESGraphicsDebugger.cs @@ -203,7 +203,7 @@ namespace BizHawk.Client.EmuHawk private SNESGraphicsDecoder gd; private SNESGraphicsDecoder.ScreenInfo si; private SNESGraphicsDecoder.TileEntry[] map; - private byte[,] spriteMap = new byte[256, 224]; + private readonly byte[,] spriteMap = new byte[256, 224]; private SNESGraphicsDecoder.BGMode viewBgMode; private void RegenerateData() diff --git a/src/BizHawk.Client.EmuHawk/tools/TraceLogger.cs b/src/BizHawk.Client.EmuHawk/tools/TraceLogger.cs index a419ef0cd2..1a241ce905 100644 --- a/src/BizHawk.Client.EmuHawk/tools/TraceLogger.cs +++ b/src/BizHawk.Client.EmuHawk/tools/TraceLogger.cs @@ -53,7 +53,7 @@ namespace BizHawk.Client.EmuHawk private StreamWriter _streamWriter; private bool _splitFile; private string _baseName; - private string _extension = ".log"; + private readonly string _extension = ".log"; private int _segmentCount; private ulong _currentSize;