From 6fc3a07f49933d81e39f099f3eca07e05763242c Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 20 Mar 2019 15:52:54 +1000 Subject: [PATCH] Use string interpolation --- .../Classes/Api/JoypadApi.cs | 18 +++++++-------- .../Classes/Api/MemApiBase.cs | 12 +++++----- .../Classes/Api/MovieApi.cs | 2 +- BizHawk.Client.ApiHawk/Classes/Api/SqlApi.cs | 4 ++-- ...izHawkSystemIdToCoreSystemEnumConverter.cs | 4 ++-- BizHawk.Client.ApiHawk/Classes/ClientApi.cs | 22 +++++++++---------- .../Classes/ExternalToolManager.cs | 2 +- BizHawk.Client.ApiHawk/Classes/Joypad.cs | 2 +- .../Classes/JoypadStringToEnumConverter.cs | 4 ++-- 9 files changed, 35 insertions(+), 35 deletions(-) diff --git a/BizHawk.Client.ApiHawk/Classes/Api/JoypadApi.cs b/BizHawk.Client.ApiHawk/Classes/Api/JoypadApi.cs index 0c049ed97c..a1074d5507 100644 --- a/BizHawk.Client.ApiHawk/Classes/Api/JoypadApi.cs +++ b/BizHawk.Client.ApiHawk/Classes/Api/JoypadApi.cs @@ -20,9 +20,9 @@ namespace BizHawk.Client.ApiHawk { buttons[button] = adaptor.IsPressed(button); } - else if (button.Length >= 3 && button.Substring(0, 2) == "P" + controller) + else if (button.Length >= 3 && button.Substring(0, 2) == $"P{controller}") { - buttons[button.Substring(3)] = adaptor.IsPressed("P" + controller + " " + button.Substring(3)); + buttons[button.Substring(3)] = adaptor.IsPressed($"P{controller} {button.Substring(3)}"); } } @@ -32,9 +32,9 @@ namespace BizHawk.Client.ApiHawk { buttons[button] = adaptor.GetFloat(button); } - else if (button.Length >= 3 && button.Substring(0, 2) == "P" + controller) + else if (button.Length >= 3 && button.Substring(0, 2) == $"P{controller}") { - buttons[button.Substring(3)] = adaptor.GetFloat("P" + controller + " " + button.Substring(3)); + buttons[button.Substring(3)] = adaptor.GetFloat($"P{controller} {button.Substring(3)}"); } } @@ -81,7 +81,7 @@ namespace BizHawk.Client.ApiHawk } catch (Exception) { - Console.WriteLine("invalid mnemonic string: " + inputLogEntry); + Console.WriteLine($"invalid mnemonic string: {inputLogEntry}"); } } @@ -119,7 +119,7 @@ namespace BizHawk.Client.ApiHawk var toPress = button.ToString(); if (controller.HasValue) { - toPress = "P" + controller + " " + button; + toPress = $"P{controller} {button}"; } if (!invert) @@ -154,7 +154,7 @@ namespace BizHawk.Client.ApiHawk var toPress = button; if (controller.HasValue) { - toPress = "P" + controller + " " + button; + toPress = $"P{controller} {button}"; } if (state.HasValue) Global.LuaAndAdaptor.SetButton(toPress, state.Value); @@ -191,7 +191,7 @@ namespace BizHawk.Client.ApiHawk } else { - Global.StickyXORAdapter.SetFloat("P" + controller + " " + name, theValue); + Global.StickyXORAdapter.SetFloat($"P{controller} {name}", theValue); } } } @@ -210,7 +210,7 @@ namespace BizHawk.Client.ApiHawk } else { - Global.StickyXORAdapter.SetFloat("P" + controller + " " + control, value); + Global.StickyXORAdapter.SetFloat($"P{controller} {control}", value); } } catch diff --git a/BizHawk.Client.ApiHawk/Classes/Api/MemApiBase.cs b/BizHawk.Client.ApiHawk/Classes/Api/MemApiBase.cs index bc5c328d66..e446e9a159 100644 --- a/BizHawk.Client.ApiHawk/Classes/Api/MemApiBase.cs +++ b/BizHawk.Client.ApiHawk/Classes/Api/MemApiBase.cs @@ -64,7 +64,7 @@ namespace BizHawk.Client.ApiHawk return d.PeekByte(addr); } - Console.WriteLine("Warning: attempted read of " + addr + " outside the memory size of " + d.Size); + Console.WriteLine($"Warning: attempted read of {addr} outside the memory size of {d.Size}"); return 0; } @@ -79,7 +79,7 @@ namespace BizHawk.Client.ApiHawk } else { - Console.WriteLine("Warning: attempted write to " + addr + " outside the memory size of " + d.Size); + Console.WriteLine($"Warning: attempted write to {addr} outside the memory size of {d.Size}"); } } else @@ -166,7 +166,7 @@ namespace BizHawk.Client.ApiHawk if (addr < d.Size) list.Add(d.PeekByte(addr)); else { - Console.WriteLine("Warning: Attempted read " + addr + " outside memory domain size of " + d.Size + " in readbyterange()"); + Console.WriteLine($"Warning: Attempted read {addr} outside memory domain size of {d.Size} in readbyterange()"); list.Add(0); } } @@ -187,7 +187,7 @@ namespace BizHawk.Client.ApiHawk } else { - Console.WriteLine("Warning: Attempted write " + addr + " outside memory domain size of " + d.Size + " in writebyterange()"); + Console.WriteLine($"Warning: Attempted write {addr} outside memory domain size of {d.Size} in writebyterange()"); } } } @@ -207,7 +207,7 @@ namespace BizHawk.Client.ApiHawk return BitConverter.ToSingle(bytes, 0); } - Console.WriteLine("Warning: Attempted read " + addr + " outside memory size of " + d.Size); + Console.WriteLine($"Warning: Attempted read {addr} outside memory size of {d.Size}"); return 0; } @@ -226,7 +226,7 @@ namespace BizHawk.Client.ApiHawk } else { - Console.WriteLine("Warning: Attempted write " + addr + " outside memory size of " + d.Size); + Console.WriteLine($"Warning: Attempted write {addr} outside memory size of {d.Size}"); } } else diff --git a/BizHawk.Client.ApiHawk/Classes/Api/MovieApi.cs b/BizHawk.Client.ApiHawk/Classes/Api/MovieApi.cs index 0b74cfd5cc..049cdb4fa3 100644 --- a/BizHawk.Client.ApiHawk/Classes/Api/MovieApi.cs +++ b/BizHawk.Client.ApiHawk/Classes/Api/MovieApi.cs @@ -169,7 +169,7 @@ namespace BizHawk.Client.ApiHawk if (!string.IsNullOrEmpty(filename)) { - filename += "." + Global.MovieSession.Movie.PreferredExtension; + filename += $".{Global.MovieSession.Movie.PreferredExtension}"; var test = new FileInfo(filename); if (test.Exists) { diff --git a/BizHawk.Client.ApiHawk/Classes/Api/SqlApi.cs b/BizHawk.Client.ApiHawk/Classes/Api/SqlApi.cs index 6a18d507af..4b66a827f9 100644 --- a/BizHawk.Client.ApiHawk/Classes/Api/SqlApi.cs +++ b/BizHawk.Client.ApiHawk/Classes/Api/SqlApi.cs @@ -87,7 +87,7 @@ namespace BizHawk.Client.ApiHawk { var table = new Dictionary(); m_dbConnection.Open(); - string sql = "PRAGMA read_uncommitted =1;" + query; + string sql = $"PRAGMA read_uncommitted =1;{query}"; SQLiteCommand command = new SQLiteCommand(sql, m_dbConnection); SQLiteDataReader reader = command.ExecuteReader(); bool rows = reader.HasRows; @@ -101,7 +101,7 @@ namespace BizHawk.Client.ApiHawk { for (int i = 0; i < reader.FieldCount; ++i) { - table[columns[i] + " " + rowCount.ToString()] = reader.GetValue(i); + table[$"{columns[i]} {rowCount}"] = reader.GetValue(i); } rowCount += 1; } diff --git a/BizHawk.Client.ApiHawk/Classes/BizHawkSystemIdToCoreSystemEnumConverter.cs b/BizHawk.Client.ApiHawk/Classes/BizHawkSystemIdToCoreSystemEnumConverter.cs index 4c22cc8825..a9d0fdafe6 100644 --- a/BizHawk.Client.ApiHawk/Classes/BizHawkSystemIdToCoreSystemEnumConverter.cs +++ b/BizHawk.Client.ApiHawk/Classes/BizHawkSystemIdToCoreSystemEnumConverter.cs @@ -115,7 +115,7 @@ namespace BizHawk.Client.ApiHawk return 0; // like I give a shit default: - throw new IndexOutOfRangeException(string.Format("{0} is missing in convert list", value)); + throw new IndexOutOfRangeException($"{value} is missing in convert list"); } } @@ -221,7 +221,7 @@ namespace BizHawk.Client.ApiHawk return "AmstradCPC"; default: - throw new IndexOutOfRangeException(string.Format("{0} is missing in convert list", value.ToString())); + throw new IndexOutOfRangeException($"{value.ToString()} is missing in convert list"); } } diff --git a/BizHawk.Client.ApiHawk/Classes/ClientApi.cs b/BizHawk.Client.ApiHawk/Classes/ClientApi.cs index 19d01f9f08..0a1e1caa42 100644 --- a/BizHawk.Client.ApiHawk/Classes/ClientApi.cs +++ b/BizHawk.Client.ApiHawk/Classes/ClientApi.cs @@ -145,7 +145,7 @@ namespace BizHawk.Client.ApiHawk { if (player < 1 || player > RunningSystem.MaxControllers) { - throw new IndexOutOfRangeException(string.Format("{0} does not support {1} controller(s)", RunningSystem.DisplayName, player)); + throw new IndexOutOfRangeException($"{RunningSystem.DisplayName} does not support {player} controller(s)"); } else { @@ -161,7 +161,7 @@ namespace BizHawk.Client.ApiHawk /// Savetate friendly name public static void LoadState(string name) { - InvokeMainFormMethod("LoadState", new object[] { Path.Combine(PathManager.GetSaveStatePath(Global.Game), string.Format("{0}.{1}", name, "State")), name, false, false }); + InvokeMainFormMethod("LoadState", new object[] { Path.Combine(PathManager.GetSaveStatePath(Global.Game), $"{name}.{"State"}"), name, false, false }); } @@ -250,7 +250,7 @@ namespace BizHawk.Client.ApiHawk /// Savetate friendly name public static void SaveState(string name) { - InvokeMainFormMethod("SaveState", new object[] { Path.Combine(PathManager.GetSaveStatePath(Global.Game), string.Format("{0}.{1}", name, "State")), name, false }); + InvokeMainFormMethod("SaveState", new object[] { Path.Combine(PathManager.GetSaveStatePath(Global.Game), $"{name}.{"State"}"), name, false }); } /// @@ -358,7 +358,7 @@ namespace BizHawk.Client.ApiHawk { if (player < 1 || player > RunningSystem.MaxControllers) { - throw new IndexOutOfRangeException(string.Format("{0} does not support {1} controller(s)", RunningSystem.DisplayName, player)); + throw new IndexOutOfRangeException($"{RunningSystem.DisplayName} does not support {player} controller(s)"); } else { @@ -376,11 +376,11 @@ namespace BizHawk.Client.ApiHawk AutoFireStickyXorAdapter joypadAdaptor = Global.AutofireStickyXORAdapter; if (RunningSystem == SystemInfo.GB) { - joypadAdaptor.SetSticky(string.Format("{0}", JoypadConverter.ConvertBack(button, RunningSystem)), true); + joypadAdaptor.SetSticky($"{JoypadConverter.ConvertBack(button, RunningSystem)}", true); } else { - joypadAdaptor.SetSticky(string.Format("P{0} {1}", player, JoypadConverter.ConvertBack(button, RunningSystem)), true); + joypadAdaptor.SetSticky($"P{player} {JoypadConverter.ConvertBack(button, RunningSystem)}", true); } } } @@ -392,8 +392,8 @@ namespace BizHawk.Client.ApiHawk AutoFireStickyXorAdapter joypadAdaptor = Global.AutofireStickyXORAdapter; for (int i = 1; i <= RunningSystem.MaxControllers; i++) { - joypadAdaptor.SetFloat(string.Format("P{0} X Axis", i), allJoypads[i - 1].AnalogX); - joypadAdaptor.SetFloat(string.Format("P{0} Y Axis", i), allJoypads[i - 1].AnalogY); + joypadAdaptor.SetFloat($"P{i} X Axis", allJoypads[i - 1].AnalogX); + joypadAdaptor.SetFloat($"P{i} Y Axis", allJoypads[i - 1].AnalogY); } }*/ } @@ -446,8 +446,8 @@ namespace BizHawk.Client.ApiHawk { for (int i = 1; i <= RunningSystem.MaxControllers; i++) { - allJoypads[i - 1].AnalogX = joypadAdaptor.GetFloat(string.Format("P{0} X Axis", i)); - allJoypads[i - 1].AnalogY = joypadAdaptor.GetFloat(string.Format("P{0} Y Axis", i)); + allJoypads[i - 1].AnalogX = joypadAdaptor.GetFloat($"P{i} X Axis"); + allJoypads[i - 1].AnalogY = joypadAdaptor.GetFloat($"P{i} Y Axis"); } } } @@ -650,7 +650,7 @@ namespace BizHawk.Client.ApiHawk object osd = f.GetValue(null); t = f.GetType(); MethodInfo m = t.GetMethod("AddMessage"); - m.Invoke(osd, new Object[] { "Window size set to " + size + "x" }); + m.Invoke(osd, new Object[] { $"Window size set to {size}x" }); } else { diff --git a/BizHawk.Client.ApiHawk/Classes/ExternalToolManager.cs b/BizHawk.Client.ApiHawk/Classes/ExternalToolManager.cs index 54a9ccfa37..b9371e7358 100644 --- a/BizHawk.Client.ApiHawk/Classes/ExternalToolManager.cs +++ b/BizHawk.Client.ApiHawk/Classes/ExternalToolManager.cs @@ -94,7 +94,7 @@ namespace BizHawk.Client.ApiHawk item.ToolTipText = attribute.Description; if (attribute.IconResourceName != "") { - Stream s = externalToolFile.GetManifestResourceStream(string.Format("{0}.{1}", externalToolFile.GetName().Name, attribute.IconResourceName)); + Stream s = externalToolFile.GetManifestResourceStream($"{externalToolFile.GetName().Name}.{attribute.IconResourceName}"); if (s != null) { item.Image = new Bitmap(s); diff --git a/BizHawk.Client.ApiHawk/Classes/Joypad.cs b/BizHawk.Client.ApiHawk/Classes/Joypad.cs index d13273e64e..6848a106bd 100644 --- a/BizHawk.Client.ApiHawk/Classes/Joypad.cs +++ b/BizHawk.Client.ApiHawk/Classes/Joypad.cs @@ -29,7 +29,7 @@ namespace BizHawk.Client.ApiHawk { if (player < 1 || player > system.MaxControllers) { - throw new InvalidOperationException(string.Format("{0} is invalid for {1}", player, system.DisplayName)); + throw new InvalidOperationException($"{player} is invalid for {system.DisplayName}"); } _System = system; diff --git a/BizHawk.Client.ApiHawk/Classes/JoypadStringToEnumConverter.cs b/BizHawk.Client.ApiHawk/Classes/JoypadStringToEnumConverter.cs index 0e82da2ea2..638e93b329 100644 --- a/BizHawk.Client.ApiHawk/Classes/JoypadStringToEnumConverter.cs +++ b/BizHawk.Client.ApiHawk/Classes/JoypadStringToEnumConverter.cs @@ -91,7 +91,7 @@ namespace BizHawk.Client.ApiHawk return JoypadButton.R; default: - throw new IndexOutOfRangeException(string.Format("{0} is missing in convert list", value)); + throw new IndexOutOfRangeException($"{value} is missing in convert list"); } } @@ -210,7 +210,7 @@ namespace BizHawk.Client.ApiHawk return "R"; default: - throw new IndexOutOfRangeException(string.Format("{0} is missing in convert list", value)); + throw new IndexOutOfRangeException($"{value} is missing in convert list"); } }