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 ad5eb5787c
.
* Small changes
* Revert external enum renaming
* Changes from feedback
* Remove unneeded property setters
This commit is contained in:
parent
c86aacde76
commit
85dbb9559a
299 changed files with 12268 additions and 12276 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue