-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathGlobalRecord.cs
44 lines (33 loc) · 1.31 KB
/
GlobalRecord.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using ReactUnity.Reactive;
namespace ReactUnity.Helpers
{
public class GlobalRecord : ReactiveObjectRecord
{
private Action removeStringDictionaryListener;
public GlobalRecord() { }
public void BindSerializableDictionary(SerializableDictionary dict, bool isSerializing)
{
removeStringDictionaryListener?.Invoke();
removeStringDictionaryListener = null;
if (dict == null) return;
UpdateStringObjectDictionary(dict, isSerializing);
removeStringDictionaryListener = dict.AddListener((key, value, dc) => {
if (key != null) this[key] = value;
else UpdateStringObjectDictionary(dc as ReactiveRecord<object>, false);
});
dict.AddReserializeListener((dc) => {
UpdateStringObjectDictionary(dc, true);
});
}
public void UpdateStringObjectDictionary(ReactiveRecord<object> dict, bool isSerializing)
{
foreach (var entry in dict)
{
if (entry.Value == null) RemoveWithoutNotify(entry.Key);
else SetWithoutNotify(entry.Key, entry.Value);
}
if (!isSerializing) Change(null, default);
}
}
}