Unity AB管理

Assetbundle管理

核心:读配置表,依赖加载管理

读取AssetBundle配置表
设置中间类进行引用计数
根据路径加载AssetBundle
根据路径卸载AssetBundle
为ResourceManager提供加载中间类,根据中间类释放资源,查找中间类等方法
项目中新建一个空物体,名字为#StartCRT#,挂上以下脚本,用来加载配置文件:

using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using UnityEngine;

/// <summary>
/// 加载AssetBundleConfig.bytes文件,这个必须在最开始运行
/// </summary>
public class StartCRT : MonoBehaviour
{
    [HideInInspector]
    public byte[] bytes = null;
    [HideInInspector]
    public AssetBundleConfig config = null;
    // Use this for initialization
    void Start()
    {
        StartCoroutine(Load());
    }
 
    IEnumerator Load()
    {
        string path = Application.streamingAssetsPath + "/AssetBundleConfig.bytes";
        WWW www = new WWW(path);
        yield return www;
        if (www.isDone)
        {
            bytes = www.bytes;
            MemoryStream memoryStream = new MemoryStream(bytes);
            BinaryFormatter binaryFormatter = new BinaryFormatter();
            config = (AssetBundleConfig)binaryFormatter.Deserialize(memoryStream);
            memoryStream.Close();
        }
    }
}


AB管理类

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
 
 /// <summary>
 /// AB管理类
 /// </summary>
public class AssetBundleManager : Singleton<AssetBundleManager>
{
    private StartCRT m_startCRT;//为了开启协成加载bytes文件
 
    /// <summary>
    /// 资源关系配置表
    /// 可以根据CRC找到对应资源块
    /// </summary>                                              
    protected Dictionary<uint, ResourceItem> m_ResourceItemDict = new Dictionary<uint, ResourceItem>();
    /// <summary>
    /// 储存已加载的AB包
    /// key为CRC
    /// </summary>
    protected Dictionary<uint, AssetBundleItem> m_AssetBundleItemDict = new Dictionary<uint, AssetBundleItem>();
    /// <summary>
    /// AssetBundleItem类对象池(因为有些对象经常可能用到)
    /// </summary>
    protected ClassObjectPool<AssetBundleItem> m_AssetBundleItemPool = ObjectManager.Instance.GetOrCreateClassPool<AssetBundleItem>(500);
    /// <summary>
    /// 加载AB配置表,返回是否正确加载,在游戏开始场景调用
    /// </summary>
    /// <returns></returns>
    public bool LoadAssetBundleConfig()
    {
        m_ResourceItemDict.Clear();
        m_startCRT = GameObject.Find("#StartCRT#").GetComponent<StartCRT>();
        if (m_startCRT.bytes == null)
        {
            Debug.LogError("AssetBundleConfig is not exist!");
            return false;
        }
 
        for (int i = 0; i < m_startCRT.config.ABList.Count; i++)
        {
            ABBase abBase = m_startCRT.config.ABList[i];
            //使用中间类进行保存
            ResourceItem item = new ResourceItem();
            item.m_Crc = abBase.Crc;
            item.m_AssetName = abBase.AssetName;
            item.m_ABName = abBase.ABName;
            item.m_DependedAssetBundle = abBase.ABDpendece;
            if (m_ResourceItemDict.ContainsKey(item.m_Crc))
            {
                Debug.LogError("重复的CRC,资源名:" + item.m_AssetName + "AB包名:" + item.m_ABName);
            }
            else
            {
                m_ResourceItemDict.Add(item.m_Crc, item);
            }
        }
        return true;
    }
    /// <summary>
    /// 根据路径的CRC加载中间类RecourseItem
    /// </summary>
    /// <param name="crc"></param>
    /// <returns></returns>
    public ResourceItem LoadResourceAssetBundle(uint crc)
    {
        ResourceItem item = null;
        //未找到资源的情况下
        if (!m_ResourceItemDict.TryGetValue(crc, out item) || item == null)
        {
            Debug.Log(string.Format("LoadResourceAssetBundle Error:can not find crc {0} in AssetBundleConfig", crc.ToString()));
            return item;
        }
        //证明这个ab被加载了,直接返回
        if (item.m_AssetBundle != null)
        {
            return item;
        }
        item.m_AssetBundle = LoadAssetBundle(item.m_ABName);
        //加载另外的AB
        if (item.m_DependedAssetBundle != null)
        {
            for (int i = 0; i < item.m_DependedAssetBundle.Count; i++)
            {
                LoadAssetBundle(item.m_DependedAssetBundle[i]);
            }
        }
        return item;
    }
    /// <summary>
    /// 根据名字加载单个AssetBundle
    /// 有可能会出现这种情况,A和B都依赖了C资源,加载A和B的话就会加载两次(第二次会报错),如果卸载了A依赖的C,那B可能就显示不正常了
    /// 因此采用引用计数,加载时+1,判断卸载的时候引用计数为0的时候才让卸载
    /// </summary>
    /// <param name="name"></param>
    /// <returns></returns>
    private AssetBundle LoadAssetBundle(string name)
    {
        AssetBundleItem item = null;
        uint crc = Crc32.GetCrc32(name);
        if (!m_AssetBundleItemDict.TryGetValue(crc, out item))
        {
            AssetBundle ab = null;
            string fullPath = Application.streamingAssetsPath + "/" + name;
            if (File.Exists(fullPath))
            {
                ab = AssetBundle.LoadFromFile(fullPath);
            }
            if (ab == null)
            {
                Debug.LogError("LoadAssetBundle error:" + fullPath);
            }
            item = m_AssetBundleItemPool.Spawn(true);
            item.assetBundle = ab;
            item.refCount++;
            m_AssetBundleItemDict.Add(crc, item);
        }
        else
        {
            item.refCount++;
        }
 
        return item.assetBundle;
    }
    /// <summary>
    /// 释放资源
    /// </summary>
    /// <param name="item"></param>
    public void ReleaseAsset(ResourceItem item)
    {
        if (item == null)
        {
            return;
        }
        if (item.m_DependedAssetBundle != null && item.m_DependedAssetBundle.Count >= 0)
        {
            for (int i = 0; i < item.m_DependedAssetBundle.Count; i++)
            {
                UnLoadAssetBundle(item.m_DependedAssetBundle[i]);
            }
        }
        UnLoadAssetBundle(item.m_ABName);
    }
    /// <summary>
    /// 卸载依赖包
    /// </summary>
    /// <param name="name"></param>
    private void UnLoadAssetBundle(string name)
    {
        AssetBundleItem item = null;
        uint crc = Crc32.GetCrc32(name);
        if (m_AssetBundleItemDict.TryGetValue(crc, out item) && item != null)
        {
            item.refCount--;
            if (item.refCount <= 0 && item.assetBundle != null)
            {
                item.assetBundle.Unload(true);
                item.Reset();
                m_AssetBundleItemPool.Recycle(item);
                m_ResourceItemDict.Remove(crc);
            }
        }
    }
    /// <summary>
    /// 根据crc查找ResourcesItem
    /// </summary>
    /// <param name="crc"></param>
    /// <returns></returns>
    public ResourceItem FindResourceItem(uint crc)
    {
        return m_ResourceItemDict[crc];
    }
}
/// <summary>
/// AB Item
/// </summary>
public class AssetBundleItem
{
    public AssetBundle assetBundle = null;
    //引用计数
    public int refCount;
    //卸载时的话需要还原
    public void Reset()
    {
        assetBundle = null;
        refCount = 0;
    }
}
/// <summary>
/// 资源item
/// </summary>
public class ResourceItem
{
    /// <summary>
    /// 资源路径CRC
    /// </summary>
    public uint m_Crc = 0;
    /// <summary>
    /// 该资源文件名字
    /// </summary>
    public string m_AssetName = string.Empty;
    /// <summary>
    /// 该资源所在的AssetBundle名字
    /// </summary>
    public string m_ABName = string.Empty;
    /// <summary>
    /// 该资源所依赖的AssetBundle
    /// </summary>
    public List<string> m_DependedAssetBundle = null;
    /// <summary>
    /// 该资源所在的AssetBundle名字
    /// </summary>
    public AssetBundle m_AssetBundle = null;
}
 

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 210,914评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 89,935评论 2 383
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,531评论 0 345
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,309评论 1 282
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,381评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,730评论 1 289
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,882评论 3 404
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,643评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,095评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,448评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,566评论 1 339
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,253评论 4 328
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,829评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,715评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,945评论 1 264
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,248评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,440评论 2 348

推荐阅读更多精彩内容

  • 在一个 Unity 3D 项目中,通常会有大量的模型、材质以及其他游戏资源,所以需要将游戏资源归类到不同文件夹做分...
    XY9264阅读 3,693评论 0 1
  • 说到热更新和资源加载就不得不提ab包,只要你游戏进行热更新,就一定要ab包,热更新资源更新,就是把需要热更新的资源...
    飞天满天飞雪阅读 1,309评论 0 0
  • 简介 Unity可寻址资源系统 可寻址资源系统提供了一种简单的方法通过“地址”加载资源。简化资源包的创建和部署的管...
    hh5460阅读 8,910评论 2 10
  • 工具Unity 中的资源来源有三个途径:一个是Unity自动打包资源,一个是Resources,一个是AssetB...
    某人在阅读 8,685评论 0 5
  • 表情是什么,我认为表情就是表现出来的情绪。表情可以传达很多信息。高兴了当然就笑了,难过就哭了。两者是相互影响密不可...
    Persistenc_6aea阅读 124,412评论 2 7