纳金网

标题: Unity对象池的实现 [打印本页]

作者: 烟雨    时间: 2015-11-21 07:19
标题: Unity对象池的实现

网上介绍对象池的文章有很多,但是总感觉代码不太清晰,并不适合新手学习最近在一个工程里看到一段对象池的代码感觉不错,故分享一下
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System;

  5. public class PoolManager : UnitySingleton<PoolManager> {

  6.         public static Dictionary<Type, Stack<IPoolable>> ObjectPoolDic = new Dictionary<Type, Stack<IPoolable>>();
  7.         public static Dictionary<Type, int> ObjectPoolSizeDic = new Dictionary<Type,int>();
  8.        
  9.         void Start () {

  10.         }
  11.        
  12.         public void RegistPoolableType(Type type, int poolSize)
  13.         {
  14.                 if (!ObjectPoolDic.ContainsKey(type))
  15.                 {
  16.                         ObjectPoolDic[type] = new Stack<IPoolable>();
  17.                         ObjectPoolSizeDic[type] = poolSize;
  18.                 }
  19.         }
  20.        
  21.         public bool HasPoolObject(Type type)
  22.         {
  23.                 return ObjectPoolDic.ContainsKey(type) && ObjectPoolDic[type].Count > 0;
  24.         }
  25.        
  26.         public bool IsPoolFull(Type type)
  27.         {
  28.                 if (!ObjectPoolDic.ContainsKey(type))
  29.                         return true;
  30.                 else if (ObjectPoolDic[type].Count >= ObjectPoolSizeDic[type])
  31.                         return true;
  32.                 return false;
  33.         }
  34.        
  35.         public IPoolable TakePoolObject(Type type)
  36.         {
  37.                 if (ObjectPoolDic.ContainsKey(type) && ObjectPoolDic[type].Count > 0)
  38.                 {
  39.                         return ObjectPoolDic[type].Pop();
  40.                 }
  41.                 else
  42.                 {
  43.                         return null;
  44.                 }
  45.         }
  46.        
  47.         public bool PutPoolObject(Type type, IPoolable obj)
  48.         {
  49.                 if (!ObjectPoolDic.ContainsKey(type) || ObjectPoolDic[type].Count >= ObjectPoolSizeDic[type])
  50.                 {
  51.                         GameObject.Destroy((obj as MonoBehaviour).gameObject);
  52.                         return false;
  53.                 }
  54.                 else
  55.                 {
  56.                         (obj as MonoBehaviour).gameObject.SetActive(false);
  57.                         //(obj as MonoBehaviour).transform.parent = GameManager.Instance.PoolRoot;
  58.                         ObjectPoolDic[type].Push(obj);
  59.                         return true;
  60.                 }
  61.         }
  62. }
复制代码
首先继承自一个单例类,就可以用PoolManager.Instance来获取这个类的单例了
定义了两个字典,一个用来对应存储对应的对象类型的栈,一个用来记录实例化的最大个数来控制内存
用的时候Pop,用完了Push
可存储在对象池的对象必须实现IPoolable接口
  1. using UnityEngine;
  2. using System.Collections;

  3. public interface IPoolable {

  4.         void Destroy();
  5. }
复制代码
destroy里可以这样写
  1. if (!PoolManager.Instance.IsPoolFull(GetType()))
  2.                 {
  3.                         PoolManager.Instance.PutPoolObject(GetType(), this);
  4.                 }
  5.                 else
  6.                 {
  7.                         GameObject.Destroy(this.gameObject);
  8.                 }
复制代码





欢迎光临 纳金网 (http://old.narkii.com/club/) Powered by Discuz! X2.5