aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/GlobalStateTable.cs
diff options
context:
space:
mode:
authorAlex Barney <thealexbarney@gmail.com>2018-12-04 14:23:37 -0600
committergdkchan <gab.dark.100@gmail.com>2018-12-04 18:23:37 -0200
commit85dbb9559ad317a657dafd24da27fec4b3f5250f (patch)
treeecd92931bc2146e549484d9a3af308469089ad4e /Ryujinx.HLE/HOS/GlobalStateTable.cs
parentc86aacde76b5f8e503e2b412385c8491ecc86b3b (diff)
Adjust naming conventions and general refactoring in HLE Project (#490)
* 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 * Remove unneeded property setters
Diffstat (limited to 'Ryujinx.HLE/HOS/GlobalStateTable.cs')
-rw-r--r--Ryujinx.HLE/HOS/GlobalStateTable.cs40
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;