UGUI-ObjectPool<T>

作者:追风剑情 发布于:2019-6-5 20:45 分类:Unity3d

示例

  1. using System.Collections.Generic;
  2. using UnityEngine.Events;
  3. using UnityEngine;
  4.  
  5. /// <summary>
  6. /// 对象池
  7. /// new()约束T必须要有无参构造函数
  8. /// </summary>
  9. /// <typeparam name="T"></typeparam>
  10. public class ObjectPool<T> where T : new()
  11. {
  12. private readonly Stack<T> m_Stack = new Stack<T>();
  13. private readonly UnityAction<T> m_ActionOnGet;
  14. private readonly UnityAction<T> m_ActionOnRelease;
  15.  
  16. public int countAll { get; private set; }
  17. public int countActive { get { return countAll - countInactive; } }
  18. public int countInactive { get { return m_Stack.Count; } }
  19.  
  20. public ObjectPool(UnityAction<T> actionOnGet, UnityAction<T> actionOnRelease)
  21. {
  22. m_ActionOnGet = actionOnGet;
  23. m_ActionOnRelease = actionOnRelease;
  24. }
  25.  
  26. public T Get()
  27. {
  28. T element;
  29. if (m_Stack.Count == 0)
  30. {
  31. element = new T();
  32. countAll++;
  33. }
  34. else
  35. {
  36. element = m_Stack.Pop();
  37. }
  38. if (m_ActionOnGet != null)
  39. m_ActionOnGet(element);
  40. return element;
  41. }
  42.  
  43. public void Release(T element)
  44. {
  45. if (m_Stack.Count > 0 && ReferenceEquals(m_Stack.Peek(), element))
  46. Debug.LogError("Internal error. Trying to destroy object that is already released to pool.");
  47. if (m_ActionOnRelease != null)
  48. m_ActionOnRelease(element);
  49. m_Stack.Push(element);
  50. }
  51. }


  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public static class ListPool<T>
  6. {
  7. // Object pool to avoid allocations.
  8. private static readonly ObjectPool<List<T>> s_ListPool = new ObjectPool<List<T>>(null, Clear);
  9. static void Clear(List<T> l) { l.Clear(); }
  10.  
  11. public static List<T> Get()
  12. {
  13. return s_ListPool.Get();
  14. }
  15.  
  16. public static void Release(List<T> toRelease)
  17. {
  18. s_ListPool.Release(toRelease);
  19. }
  20. }

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号