diff options
| author | Alex Barney <thealexbarney@gmail.com> | 2018-12-06 05:16:24 -0600 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-12-06 09:16:24 -0200 |
| commit | fb1d9493a3d43f2b86c551682586905a1f0e9ea7 (patch) | |
| tree | d842685ff5bdd45d11d94bd1a45a002b9d532fe7 /Ryujinx.HLE/HOS/GlobalStateTable.cs | |
| parent | 3615a70cae3f89197fe185dfc5d0a47fa42151d9 (diff) | |
Adjust naming conventions and general refactoring in HLE Project (#527)
* Rename enum fields
* Naming conventions
* Remove unneeded ".this"
* Remove unneeded semicolons
* Remove unused Usings
* Don't use var
* Remove unneeded enum underlying types
* Explicitly label class visibility
* Remove unneeded @ prefixes
* Remove unneeded commas
* Remove unneeded if expressions
* Method doesn't use unsafe code
* Remove unneeded casts
* Initialized objects don't need an empty constructor
* Remove settings from DotSettings
* Revert "Explicitly label class visibility"
This reverts commit ad5eb5787cc5b27a4631cd46ef5f551c4ae95e51.
* Small changes
* Revert external enum renaming
* Changes from feedback
* Apply previous refactorings to the merged code
Diffstat (limited to 'Ryujinx.HLE/HOS/GlobalStateTable.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/GlobalStateTable.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/Ryujinx.HLE/HOS/GlobalStateTable.cs b/Ryujinx.HLE/HOS/GlobalStateTable.cs index d7d83453..a350dee2 100644 --- a/Ryujinx.HLE/HOS/GlobalStateTable.cs +++ b/Ryujinx.HLE/HOS/GlobalStateTable.cs @@ -6,62 +6,62 @@ namespace Ryujinx.HLE.HOS { class GlobalStateTable { - private ConcurrentDictionary<KProcess, IdDictionary> DictByProcess; + private ConcurrentDictionary<KProcess, IdDictionary> _dictByProcess; public GlobalStateTable() { - DictByProcess = new ConcurrentDictionary<KProcess, IdDictionary>(); + _dictByProcess = new ConcurrentDictionary<KProcess, IdDictionary>(); } - public bool Add(KProcess Process, int Id, object Data) + public bool Add(KProcess process, int id, object data) { - IdDictionary Dict = DictByProcess.GetOrAdd(Process, (Key) => new IdDictionary()); + IdDictionary dict = _dictByProcess.GetOrAdd(process, (key) => new IdDictionary()); - return Dict.Add(Id, Data); + return dict.Add(id, data); } - public int Add(KProcess Process, object Data) + public int Add(KProcess process, object data) { - IdDictionary Dict = DictByProcess.GetOrAdd(Process, (Key) => new IdDictionary()); + IdDictionary dict = _dictByProcess.GetOrAdd(process, (key) => new IdDictionary()); - return Dict.Add(Data); + return dict.Add(data); } - public object GetData(KProcess Process, int Id) + public object GetData(KProcess process, int id) { - if (DictByProcess.TryGetValue(Process, out IdDictionary Dict)) + if (_dictByProcess.TryGetValue(process, out IdDictionary dict)) { - return Dict.GetData(Id); + return dict.GetData(id); } return null; } - public T GetData<T>(KProcess Process, int Id) + public T GetData<T>(KProcess process, int id) { - if (DictByProcess.TryGetValue(Process, out IdDictionary Dict)) + if (_dictByProcess.TryGetValue(process, out IdDictionary dict)) { - return Dict.GetData<T>(Id); + return dict.GetData<T>(id); } return default(T); } - public object Delete(KProcess Process, int Id) + public object Delete(KProcess process, int id) { - if (DictByProcess.TryGetValue(Process, out IdDictionary Dict)) + if (_dictByProcess.TryGetValue(process, out IdDictionary dict)) { - return Dict.Delete(Id); + return dict.Delete(id); } return null; } - public ICollection<object> DeleteProcess(KProcess Process) + public ICollection<object> DeleteProcess(KProcess process) { - if (DictByProcess.TryRemove(Process, out IdDictionary Dict)) + if (_dictByProcess.TryRemove(process, out IdDictionary dict)) { - return Dict.Clear(); + return dict.Clear(); } return null; |
