美文网首页
游戏 对象池

游戏 对象池

作者: BugUnknown | 来源:发表于2018-08-25 17:34 被阅读46次
对象池思路.png
  • 代码实现
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;

public class ObjectPool
{
    #region 单例

    private static ObjectPool instance;

    public static ObjectPool GetInstance(string resPath="")
    {
        if (instance==null)
        {
            if (resPath != null)
            {
                instance = new ObjectPool(resPath);
            }
            else
            {
                instance = new ObjectPool();
            }
        }

        instance.UpdateResourcePath(resPath);    

        return instance;
    }

    /// <summary>
    /// 构造方法
    /// </summary>
    public ObjectPool()
    {
        prefabs = new Dictionary<string, GameObject>();
        pools = new Dictionary<string, List<GameObject>>();
    }

    /// <summary>
    /// 构造方法
    /// </summary>
    /// <param name="resPath"></param>
    public ObjectPool(string resPath)
    {
        resourcePath = resPath;
        prefabs = new Dictionary<string, GameObject>();
        pools = new Dictionary<string, List<GameObject>>();
    }

    #endregion


    #region 对象预设体资源管理

    //资源加载路径
    private string resourcePath;
    //所有预设体
    private Dictionary<string, GameObject> prefabs;

    public GameObject GetPrefab(string prefabName)
    {
        if (prefabs.ContainsKey(prefabName))
        {
            //返回
            return prefabs[prefabName];
        }
        else
        {
            //添加新的预设体
            return LoadPrefab((prefabName));
        }
    }

    /// <summary>
    /// 加载预设体
    /// </summary>
    /// <param name="prefabName"></param>
    /// <returns></returns>
    public GameObject LoadPrefab(string prefabName)
    {
        string path = "";
        if (resourcePath!= "")
        {
            path += resourcePath;
        }
        GameObject obj = Resources.Load<GameObject>(path + prefabName);
        //异常处理
        if (obj != null)
        {
            //放到字典
            prefabs.Add(prefabName, obj);
        }
        //返回
        return obj;
    }

    /// <summary>
    /// 更新预设体加载路径
    /// </summary>
    /// <param name="resPath"></param>
    public void UpdateResourcePath(string resPath)
    {
        resourcePath = resPath;
    }

    #endregion

    #region 对象池

    private Dictionary<string, List<GameObject>> pools;

    /// <summary>
    /// 回收对象
    /// </summary>
    /// <param name="obj"></param>
    public void RecycleObject(GameObject obj)
    {
        //非激活
        obj.SetActive(false);
        //获取对象的名称
        string objName = obj.name.Replace("(Clone)", "");
        //判断有无该类对象池
        if(!pools.ContainsKey(objName))
        {
            //实例化子池
            pools.Add(objName, new List<GameObject>());
        }
        //添加到池子
        pools[objName].Add(obj);
    }

    public GameObject SpawnObject(string objName,Action<GameObject> poolEvent=null)
    {
        //输出结果
        GameObject result = null;

        //池中有货
        if (pools.ContainsKey(objName)&&pools[objName].Count>0)
        {
            //结果
            result = pools[objName][0];
            //移除
            pools[objName].Remove(result);
        }
        else
        {
            //拿到预设体
            GameObject prefab = GetPrefab(objName);
            if (prefab!=null)
            {
               result = GameObject.Instantiate(prefab);
            }
        }

        //激活
        result.SetActive(true);

        //执行事件
        if (result && poolEvent != null)
        {
            poolEvent(result);
        }

        //返回结果
        return result;
    }

    #endregion
}

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Bullet : MonoBehaviour
{
    void OnEnable()
    {
        StartCoroutine(AutoRecycle());
    }

    IEnumerator AutoRecycle()
    {
        yield return new WaitForSeconds(2f);

        //回收
        ObjectPool.GetInstance().RecycleObject(gameObject);
    }
}

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PoolDemo : MonoBehaviour
{
    void Update()
    {
        if (Input.GetKeyDown(KeyCode.Space))
        {
            ObjectPool.GetInstance("Prefabs/").SpawnObject("Cube", (o) =>  
            {
                o.transform.position = new Vector3
                (
                    Random.Range(-5,5f),
                    Random.Range(-5, 5f),
                    Random.Range(-5, 5f)
                );
            });
        }
    }
}
对象池效果图.gif

相关文章

  • 游戏 对象池

    代码实现

  • 游戏框架与组件(1):对象池

    本文介绍了对象池以及对象池的代码实现。 本文链接游戏框架与组件(1):对象池[https://www.jiansh...

  • 对象池优化内存

    对象池优化内存 1. 对象池优化是游戏开发中非常重要的优化方式,也是影响游戏性能的重要因素之一2. 游戏中有许多对...

  • [Unity3D] 浮动伤害数值的UI实现

    关键词:对象池,UI Text,多人游戏 思路:利用预先设置好动画效果的 UI Text,来建立对象池(Objec...

  • 微信小游戏性能优化点

    1. 对象池 多数游戏,频繁创建和销毁同类对象很常见,使用对象池已是基本操作,必须牢记并熟练使用。推荐一个应用示例...

  • 你使用对象池了吗

    什么是对象池?对象池,简单的说就是一种为了避免重复创建,删除对象的解决方案。它可以通过复用游戏对象,一定程度上提高...

  • Unity_简单对象池的运用

    一、脚本1:对象池:用于存放相同类型的游戏对象 usingSystem.Collections; usingSys...

  • 游戏编程模式-对象池模式

    Object Pool Pattern 对象池模式 Intent 意义 Improve performance a...

  • Phaser制作h5小游戏(二)

    此篇主要总结一下小游戏中的知识点。 总结 预加载素材 创建对象 对象池:游戏主要特点就是占用内存大, 一是与游戏的...

  • [个人框架 C_Framework] C_Pool快速对象池

    对象池 作为游戏开发过程中最常用的手段之一,在C_Framework框架中也必然会有,那么什么是池呢,池实际上可以...

网友评论

      本文标题:游戏 对象池

      本文链接:https://www.haomeiwen.com/subject/gxrdiftx.html