Unity3D AssetBundle简单应用

编辑器脚本,用于打包资源文件

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System.IO;
using System;
using System.Security.Cryptography;
using System.Text;
using LitJson;
/// <summary>
/// 编辑器脚本
/// </summary>
public class BuildBundle : Editor {

    [MenuItem("Tools/build")]
    public static void Build()
    {

        //生成bundle包
        BuildAB();

        //拷贝lua文件
        HandleLuaFile();

        //生成版本文件
        GenFileText();
    }
    //拷贝lua文件
    private static void HandleLuaFile()
    {
        string path = Application.dataPath + "/Lua/";
        string[] files = Directory.GetFiles(path, "*.lua");//搜索所有的lua文件

        string desPath = Application.streamingAssetsPath + "/";

        if (!Directory.Exists(desPath))
        {
            Directory.CreateDirectory(desPath);
        }

        for (int i = 0; i < files.Length; i++)
        {
            string fileName = Path.GetFileName(files[i]);
            string des = desPath + "/" + fileName;
            File.Copy(files[i], des);
        }
    }

    //生成bundle包
    private static void BuildAB()
    {
        string path = Application.streamingAssetsPath;
        if (Directory.Exists(path))
        {
            //递归删除字目录
            Directory.Delete(path, true);
        }

        //创建目录
        Directory.CreateDirectory(path);
        //资源打包
        BuildPipeline.BuildAssetBundles(path, 0, BuildTarget.StandaloneWindows64);
    }

    //获取文件夹中所有文件
    static List<string> files = new List<string>();
    static void Recusive(string path)
    {
        string[] fs = Directory.GetFiles(path);
        files.AddRange(fs);

        string[] dires = Directory.GetDirectories(path);
        foreach (var item in dires)
        {
            Recusive(item);
        }
    }

    //生成版本文件
    private static void GenFileText()
    {
        Dictionary<string, string> filesMd5 = new Dictionary<string, string>();
        string path = Application.streamingAssetsPath;

        files.Clear();
        Recusive(path);      

        foreach (var item in files)
        {
            if (Path.GetFileName(item) != ".meta")
            {
                string md5 = Md5File(item);
                string fileName = Path.GetFileName(item);

                filesMd5.Add(fileName, md5);
            }
        }
        //将文件名和文件MD5值写入版本文件
        StreamWriter writer = File.CreateText(path + "/file.txt");
        writer.Write(JsonMapper.ToJson(filesMd5));
        writer.Close();

        //刷新文件夹
        AssetDatabase.Refresh();
    }

    //计算文件的MD5值
    private static string Md5File(string file)
    {
        FileStream fs = new FileStream(file, FileMode.Open);
        MD5 md5 = MD5CryptoServiceProvider.Create();

        byte[] retVal = md5.ComputeHash(fs);
        fs.Close();

        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < retVal.Length; i++)
        {
            sb.Append(retVal[i].ToString("x2"));
        }

        return sb.ToString();
    }
}

资源下载解压与加载
在Android和IOS中streamingAssets文件夹是只读的,不可以写入,所有资源文件统一拷贝到persistentDataPath下使用
PC路径为C:\Users\Robyn\AppData\LocalLow\DefaultCompany\项目名\

using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using UnityEngine;
using LitJson;
//检查更新
public class ABUpdateManager : MonoBehaviour {
    string streamingPaht;
    string dataPath;
    string baseUrl = "http://192.168.108.19/StreamingAssets/";

    public static event System.Action Complete;

    void Start () {
        streamingPaht = Application.streamingAssetsPath + "/";
        dataPath = Application.persistentDataPath + "/";
        Debug.Log(dataPath);
        Debug.Log("检测本地沙盒目录");
        if (File.Exists(dataPath + "file.txt"))
        {
            Debug.Log("沙盒目录不为空");
            //开启协程,检查更新
            StartCoroutine(CheckUpdate());
        }else
        {
            Debug.Log("沙盒目录为空");
            //首次运行,拷贝StreamingAsset到PersistentDatapath
            CheckCompress();
        }
    }

    private IEnumerator CheckUpdate()
    {
        Debug.Log("获取远程file.txt文件");
        WWW www = new WWW(baseUrl + "file.txt");
        yield return www;

        if (www.error != null)
        {
            Debug.Log(www.error);
            yield return 0;
        }
        //获取远程本版文件
        Dictionary<string, string> fileMd5 = JsonMapper.ToObject<Dictionary<string, string>>(www.text);

        //获取本地版本文件
        string filePath = dataPath + "file.txt";
        Dictionary<string, string> localMd5 = JsonMapper.ToObject<Dictionary<string, string>>(File.ReadAllText(filePath));

        //比较差异

        foreach (var item in fileMd5)
        {
            Debug.Log("检测更新" + item.Key);
            if (localMd5.ContainsKey(item.Key))
            {
                if (localMd5[item.Key] != fileMd5[item.Key])
                {
                    Debug.Log("MD5不同,更新:" + item.Key);
                    //删除本地文件
                    File.Delete(dataPath + item.Key);
                    //下载远程文件
                    StartCoroutine(DownloadFile(item.Key));
                }
            }
            else
            {
                //本地文件缺失,下载服务器文件
                Debug.Log("文件缺失,直接下载" + item.Key);
                StartCoroutine(DownloadFile(item.Key));
            }
        }

        //更新file
        File.Delete(dataPath + "file.txt");
        File.WriteAllText(dataPath + "file.txt", www.text);

        Debug.Log("解压更新完成");
        if (Complete != null)
        {
            Complete();
        }
    }

    //下载更新文件
    private IEnumerator DownloadFile(string fileName)
    {
        WWW download = new WWW(baseUrl + fileName);
        yield return download;

        File.WriteAllBytes(dataPath + fileName, download.bytes);
        Debug.LogFormat("更新文件{0}成功", fileName);
    }

    //拷贝文件到沙盒
    private void CheckCompress()
    {
        string[] files = Directory.GetFiles(streamingPaht);

        foreach (var item in files)
        {
            string targetPath = dataPath + Path.GetFileName(item);

            //如果文件存在,拷贝会失败
            if (File.Exists(targetPath))
            {
                File.Delete(targetPath);
            }

            File.Copy(item, targetPath);
        }

        //解压完成,检测更新
        StartCoroutine(CheckUpdate());
    }

}

使用


using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using UnityEngine;
using UnityEngine.Events;
using UnityEngine.UI;

public class LoadAB_Dependence : MonoBehaviour {
    //保存加载过的bundle包
    Dictionary<string, AssetBundle> loadedBundles = new Dictionary<string, AssetBundle>();
    Button createBtn;
    void Start () {
        createBtn = GetComponent<Button>();
        createBtn.onClick.AddListener(CreatePrefabs);
    }

    private void CreatePrefabs()
    {
        var perfab1 = LoadAB("perfabs.unity3d", "Cube");
        var perfab2 = LoadAB("perfabs.unity3d", "Capsule");

        Instantiate(perfab1);
        Instantiate(perfab2);

        TestLoadLua();
    }

    void TestLoadLua()
    {

        LuaLoader loader = new LuaLoader();

        string luastring = loader.LoadLua("hello.lua");

        Debug.Log(luastring);
    }

    //解压资源与寻找依赖包
    public GameObject LoadAB(string abName, string prefabName)
    {
       //加在总配置
        AssetBundle ab = GetBundle("StreamingAssets");
        AssetBundleManifest abm = ab.LoadAsset<AssetBundleManifest>("AssetBundleManifest");

        //加载依赖
        string[] depends = abm.GetAllDependencies(abName);
        for (int i = 0; i < depends.Length; i++)
        {
            GetBundle(depends[i]);
        }

        //加载ab包
        AssetBundle asset = GetBundle(abName);
        return asset.LoadAsset<GameObject>(prefabName);
    }

    //缓存bundle
    AssetBundle GetBundle(string bundName)
    {
        if (loadedBundles.ContainsKey(bundName))
        {
            return loadedBundles[bundName];
        }

        AssetBundle ab = AssetBundle.LoadFromFile(Path + bundName);
        loadedBundles.Add(bundName, ab);

        return ab;
    }

    string path;

    public string Path
    {
        get
        {
            if (path == null)
            {
               path = Application.persistentDataPath + "/";
            }
           return path;
        }

    }

}

public class LuaLoader
{
    public string LoadLua(string luaName)
    {
        //string path = Application.persistentDataPath + "/Lua/";
        string path = Application.persistentDataPath + "/";

        string str = File.ReadAllText(path + luaName);

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

推荐阅读更多精彩内容

  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,093评论 1 32
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,066评论 4 62
  • 《ilua》速成开发手册3.0 官方用户交流:iApp开发交流(1) 239547050iApp开发交流(2) 1...
    叶染柒丶阅读 10,609评论 0 11
  • 1、什么是AssetBundle AssetBundle 是Unity pro提供的一种用来存储资源的文件格式,它...
    好怕怕阅读 7,521评论 1 8
  • feisky云计算、虚拟化与Linux技术笔记posts - 1014, comments - 298, trac...
    不排版阅读 3,833评论 0 5