ISerializationCallbackReceiver

作者:追风剑情 发布于:2017-5-24 11:54 分类:Unity3d

用来处理不能被JsonUtility序列化的类,比如Dictionary

  1. using UnityEngine;
  2. using System;
  3. using System.Collections.Generic;
  4.  
  5. /// <summary>
  6. /// 封装一个可被JsonUtility序列化&反序列化的字典类
  7. /// </summary>
  8. [Serializable]
  9. public class SerializationDictionary : ISerializationCallbackReceiver
  10. {
  11. public List<int> _keys = new List<int> { 3, 4, 5 };
  12. public List<string> _values = new List<string> { "I", "Love", "Unity" };
  13.  
  14. //Unity doesn't know how to serialize a Dictionary
  15. public Dictionary<int, string> _myDictionary = new Dictionary<int, string>();
  16.  
  17. public string this[int key]{
  18. get{
  19. if (!_myDictionary.ContainsKey(key))
  20. return string.Empty;
  21. return _myDictionary[key];
  22. }
  23. set{
  24. if (_myDictionary.ContainsKey(key))
  25. _myDictionary[key] = value;
  26. else
  27. _myDictionary.Add(key, value);
  28. }
  29. }
  30.  
  31. public void OnBeforeSerialize()
  32. {
  33. _keys.Clear();
  34. _values.Clear();
  35.  
  36. foreach (var kvp in _myDictionary)
  37. {
  38. _keys.Add(kvp.Key);
  39. _values.Add(kvp.Value);
  40. }
  41. }
  42.  
  43. public void OnAfterDeserialize()
  44. {
  45. _myDictionary = new Dictionary<int, string>();
  46.  
  47. for (int i = 0; i != Math.Min(_keys.Count, _values.Count); i++)
  48. _myDictionary.Add(_keys[i], _values[i]);
  49. }
  50. }

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号