From c0b8647e6990b48da81959c2d4ce6f712c2eca2c Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 3 May 2014 01:33:12 +0000 Subject: [PATCH] RecentFiles - put jsonignore on derived properties, and clean up some things --- BizHawk.Client.Common/RecentFiles.cs | 95 +++++++++++++--------------- 1 file changed, 45 insertions(+), 50 deletions(-) diff --git a/BizHawk.Client.Common/RecentFiles.cs b/BizHawk.Client.Common/RecentFiles.cs index f0530ba133..1fd28233c0 100644 --- a/BizHawk.Client.Common/RecentFiles.cs +++ b/BizHawk.Client.Common/RecentFiles.cs @@ -2,17 +2,14 @@ using System.Collections; using System.Collections.Generic; using System.Linq; +using Newtonsoft.Json; namespace BizHawk.Client.Common { - [Newtonsoft.Json.JsonObject] + [JsonObject] public class RecentFiles : IEnumerable { - public int MAX_RECENT_FILES { get; private set; } // Maximum number of files - public List recentlist { get; private set; } // List of recent files - - public bool AutoLoad = false; - + private List recentlist; public RecentFiles() : this(8) { } public RecentFiles(int max) { @@ -20,6 +17,43 @@ namespace BizHawk.Client.Common MAX_RECENT_FILES = max; } + public int MAX_RECENT_FILES { get; private set; } + public bool AutoLoad { get; set; } + + [JsonIgnore] + public bool Empty + { + get { return !recentlist.Any(); } + } + + [JsonIgnore] + public int Count + { + get { return recentlist.Count; } + } + + [JsonIgnore] + public string MostRecent + { + get + { + return recentlist.Any() ? recentlist[0] : string.Empty; + } + } + + public string this[int index] + { + get + { + if (recentlist.Any()) + { + return recentlist[index]; + } + + return string.Empty; + } + } + public IEnumerator GetEnumerator() { return recentlist.GetEnumerator(); @@ -35,39 +69,23 @@ namespace BizHawk.Client.Common recentlist.Clear(); } - public bool Empty - { - get { return !recentlist.Any(); } - } - - public int Count - { - get { return recentlist.Count; } - } - public void Add(string newFile) { - for (int i = 0; i < recentlist.Count; i++) - { - if (String.Compare(newFile, recentlist[i], StringComparison.CurrentCultureIgnoreCase) == 0) - { - recentlist.Remove(newFile); // intentionally keeps iterating after this to remove duplicate instances, though those should never exist in the first place - } - } - + Remove(newFile); recentlist.Insert(0, newFile); + if (recentlist.Count > MAX_RECENT_FILES) { - recentlist.Remove(recentlist[recentlist.Count - 1]); + recentlist.Remove(recentlist.Last()); } } public bool Remove(string newFile) { var removed = false; - for (int i = 0; i < recentlist.Count; i++) + foreach (var recent in recentlist.ToList()) { - if (String.Compare(newFile, recentlist[i], StringComparison.CurrentCultureIgnoreCase) == 0) + if (string.Compare(newFile, recent, StringComparison.CurrentCultureIgnoreCase) == 0) { recentlist.Remove(newFile); // intentionally keeps iterating after this to remove duplicate instances, though those should never exist in the first place removed = true; @@ -82,32 +100,9 @@ namespace BizHawk.Client.Common return recentlist.Select(t => t.Substring(0, length)).ToList(); } - public string this[int index] - { - get - { - if (recentlist.Any()) - { - return recentlist[index]; - } - else - { - return String.Empty; - } - } - } - public void ToggleAutoLoad() { AutoLoad ^= true; } - - public string MostRecent - { - get - { - return recentlist.Any() ? recentlist[0] : string.Empty; - } - } } }