From 14b6efec5752a09e2711ed5aeeb29230c17b6fd1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 25 Jan 2020 11:12:10 -0600 Subject: [PATCH] PathEntry - some cleanups --- BizHawk.Client.Common/config/PathEntry.cs | 54 ++++++++--------------- 1 file changed, 19 insertions(+), 35 deletions(-) diff --git a/BizHawk.Client.Common/config/PathEntry.cs b/BizHawk.Client.Common/config/PathEntry.cs index 343976f164..129b093265 100644 --- a/BizHawk.Client.Common/config/PathEntry.cs +++ b/BizHawk.Client.Common/config/PathEntry.cs @@ -15,12 +15,7 @@ namespace BizHawk.Client.Common public bool HasSystem(string systemID) { - if (systemID == System) - { - return true; - } - - return System.Split('_').Contains(systemID); + return systemID == System || System.Split('_').Contains(systemID); } } @@ -46,23 +41,12 @@ namespace BizHawk.Client.Common Paths.Add(p); } - public IEnumerator GetEnumerator() - { - return Paths.GetEnumerator(); - } + public IEnumerator GetEnumerator() => Paths.GetEnumerator(); + IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); - IEnumerator IEnumerable.GetEnumerator() - { - return GetEnumerator(); - } - - public PathEntry this[string system, string type] - { - get - { - return Paths.FirstOrDefault(p => p.HasSystem(system) && p.Type == type) ?? TryGetDebugPath(system, type); - } - } + public PathEntry this[string system, string type] => + Paths.FirstOrDefault(p => p.HasSystem(system) && p.Type == type) + ?? TryGetDebugPath(system, type); private PathEntry TryGetDebugPath(string system, string type) { @@ -73,17 +57,17 @@ namespace BizHawk.Client.Common } // we don't have anything for the system in question. add a set of stock paths - var systempath = $"{PathManager.RemoveInvalidFileSystemChars(system)}_INTERIM"; - var systemdisp = $"{system} (INTERIM)"; + var systemPath = $"{PathManager.RemoveInvalidFileSystemChars(system)}_INTERIM"; + var systemDisp = $"{system} (INTERIM)"; Paths.AddRange(new[] { - new PathEntry { System = system, SystemDisplayName = systemdisp, Type = "Base", Path = Path.Combine(".", systempath), Ordinal = 0 }, - new PathEntry { System = system, SystemDisplayName = systemdisp, Type = "ROM", Path = ".", Ordinal = 1 }, - new PathEntry { System = system, SystemDisplayName = systemdisp, Type = "Savestates", Path = Path.Combine(".", "State"), Ordinal = 2 }, - new PathEntry { System = system, SystemDisplayName = systemdisp, Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 }, - new PathEntry { System = system, SystemDisplayName = systemdisp, Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, - new PathEntry { System = system, SystemDisplayName = systemdisp, Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 } + new PathEntry { System = system, SystemDisplayName = systemDisp, Type = "Base", Path = Path.Combine(".", systemPath), Ordinal = 0 }, + new PathEntry { System = system, SystemDisplayName = systemDisp, Type = "ROM", Path = ".", Ordinal = 1 }, + new PathEntry { System = system, SystemDisplayName = systemDisp, Type = "Savestates", Path = Path.Combine(".", "State"), Ordinal = 2 }, + new PathEntry { System = system, SystemDisplayName = systemDisp, Type = "Save RAM", Path = Path.Combine(".", "SaveRAM"), Ordinal = 3 }, + new PathEntry { System = system, SystemDisplayName = systemDisp, Type = "Screenshots", Path = Path.Combine(".", "Screenshots"), Ordinal = 4 }, + new PathEntry { System = system, SystemDisplayName = systemDisp, Type = "Cheats", Path = Path.Combine(".", "Cheats"), Ordinal = 5 } }); return this[system, type]; @@ -92,16 +76,16 @@ namespace BizHawk.Client.Common public void ResolveWithDefaults() { // Add missing entries - foreach (PathEntry defaultpath in DefaultValues) + foreach (PathEntry defaultPath in DefaultValues) { - var path = Paths.FirstOrDefault(p => p.System == defaultpath.System && p.Type == defaultpath.Type); + var path = Paths.FirstOrDefault(p => p.System == defaultPath.System && p.Type == defaultPath.Type); if (path == null) { - Paths.Add(defaultpath); + Paths.Add(defaultPath); } } - List entriesToRemove = new List(); + var entriesToRemove = new List(); // Remove entries that no longer exist in defaults foreach (PathEntry pathEntry in Paths) @@ -118,7 +102,7 @@ namespace BizHawk.Client.Common Paths.Remove(entry); } - // Add missing displaynames + // Add missing display names var missingDisplayPaths = Paths.Where(p => p.SystemDisplayName == null); foreach (PathEntry path in missingDisplayPaths) {