-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathSerializableDictionary.cs
57 lines (49 loc) · 1.63 KB
/
SerializableDictionary.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
45
46
47
48
49
50
51
52
53
54
55
56
57
#if !(ENABLE_IL2CPP || REACT_DISABLE_CLEARSCRIPT || (UNITY_ANDROID && !UNITY_EDITOR)) && REACT_CLEARSCRIPT_AVAILABLE
#define REACT_CLEARSCRIPT
#endif
using System.Collections.Generic;
using System.Linq;
using ReactUnity.Reactive;
using UnityEngine;
namespace ReactUnity.Helpers
{
[System.Serializable]
public class StringObjectPair
{
public string Key;
public Object Value;
}
[System.Serializable]
public class SerializableDictionary : ReactiveObjectRecord, ISerializationCallbackReceiver
{
[SerializeField] List<StringObjectPair> Entries = new List<StringObjectPair>();
internal event System.Action<SerializableDictionary> reserialized;
public void OnAfterDeserialize()
{
ClearWithoutNotify();
foreach (var entry in Entries)
{
var key = entry.Key;
while (ContainsKey(key)) key += "_Copy";
SetWithoutNotify(key, entry.Value);
}
Reserialize();
}
public void OnBeforeSerialize()
{
Entries = this
.Where(x => x.Value is Object)
.Select(x => new StringObjectPair() { Key = x.Key, Value = x.Value as Object })
.ToList();
}
public System.Action AddReserializeListener(System.Action<SerializableDictionary> callback)
{
reserialized += callback;
return () => reserialized -= callback;
}
protected void Reserialize()
{
reserialized?.Invoke(this);
}
}
}