当前位置: 首页 > article >正文

【C#】Xasset加载资源模块

分享一下之前接Xasset的模块Code【仅用于业务参考】

using System;
using System.Collections.Generic;
using System.IO;
using Common;
using Cysharp.Threading.Tasks;
using UnityEngine;
using xasset;
using xasset.example;
using Logger = xasset.Logger;
using Object = UnityEngine.Object;

namespace Resource
{
    public class ResourceModule : BaseModule
    {
        public string Name => "ResourceModule"; // 获取对应模块的名称
        public LoadMode loadMode = LoadMode.LoadByRelativePath;

        public string[] filters =
        {
            "Scenes", "Prefabs", "Textures"
        };

        private static Dictionary<string, Asset> cache = new Dictionary<string, Asset>(); // 存储已加载的资源

        public async UniTask BeforeInit()
        {
            Debug.Log($"{Name} XAsset init start");
            Versions.VerifyMode = VerifyMode.Size;
            Bundle.AutoUpdate = true;
            await Versions.InitializeAsync();
            Initialize();
            Debug.Log($"{Name} XAsset init finish");
            PreLoadResource();
        }

        public void Initialize()
        {
            switch (loadMode)
            {
                case LoadMode.LoadByName:
                    Manifest.customLoader += LoadByName;
                    break;
                case LoadMode.LoadByNameWithoutExtension:
                    Manifest.customLoader += LoadByNameWithoutExtension;
                    break;
                default:
                    Manifest.customLoader = null;
                    break;
            }
        }

        public void PreLoadResource()
        {
            // 加载预加载资源
            LoadNewAsset<GameObject>("Assets/.prefab");
        }

        //加载指定资源  path相对路径:Assets/.....  type获取的类型
        public static T LoadNewAsset<T>(string path) where T : Object
        {
            if (cache.TryGetValue(path, out var value))
            {
                return (T)value.asset;
            }

            value = Asset.Load(path, typeof(T));
            if (value != null)
            {
                cache.Add(path, value);
                return (T)value.asset;
            }

            Debug.Log("LoadNewAsset value is null");
            return null;
        }

        // 卸载指定路径的资源
        public static void UnLoadAsset(string path)
        {
            //引用计数减 1
            cache[path].Release();
            cache.Remove(path);
        }

        private string LoadByName(string assetPath)
        {
            if (filters == null || filters.Length == 0)
            {
                return null;
            }

            if (!Array.Exists(filters, assetPath.Contains))
            {
                return null;
            }

            var assetName = Path.GetFileName(assetPath);
            return assetName;
        }

        private string LoadByNameWithoutExtension(string assetPath)
        {
            if (filters == null || filters.Length == 0)
            {
                return null;
            }

            if (!Array.Exists(filters, assetPath.Contains))
            {
                return null;
            }

            var assetName = Path.GetFileNameWithoutExtension(assetPath);
            return assetName;
        }

        public void Init()
        {
            // Method intentionally left empty.
        }

        public void ModuleUpdate()
        {
            // Method intentionally left empty.
        }

        public void Resume()
        {
            // Method intentionally left empty.
        }

        public void Restart()
        {
            // Method intentionally left empty.
        }
        
        public void OpenModuleDialog()
        {
            // Method intentionally left empty.
        }

        public void Pause()
        {
            // Method intentionally left empty.
        }

        public void Destroy()
        {
            cache.Clear();
        }
    }
}


http://www.kler.cn/a/231685.html

相关文章:

  • WPF的基础控件详解
  • Java多线程回顾总结
  • 初识Linux · 信号处理 · 续
  • Solana应用开发常见技术栈
  • 【c++笔试强训】(第十一篇)
  • 平台整合是网络安全成功的关键
  • 中科大计网学习记录笔记(四):Internet 和 ISP | 分组延时、丢失和吞吐量
  • nodeJS 的 npm 设置国内高速镜像之淘宝镜像的方法
  • 小白水平理解面试经典题目LeetCode 71. Simplify Path【Stack类】
  • Java-加解密-roadmap
  • 16:定时器和计数器
  • 【Ubuntu】安装filebeat
  • SpringCache缓存快速实现注解
  • 在angular12中proxy.conf.json中配置详解
  • 【Git版本控制 03】远程操作
  • 2024年的VUE2下的无效指令npm install --save vue-i18n
  • ChatGPT高效提问—prompt常见用法(续篇三)
  • 超级干货:ArcGIS的那些花样技巧
  • 容器基础知识:容器和虚拟化的区别
  • 【Script】使用pyOpenAnnotate搭建半自动标注工具(附python源码)
  • 服务器安装Docker (centOS)
  • 廖雪峰Python教程实战Day 2 - 编写Web App骨架,运行后不显示网页如何解决
  • 【element-ui】输入框组件el-input输入数字/输出Number类型:type=“number“、v-model.number用法
  • 【实训】自动运维ansible实训(网络管理与维护综合实训)
  • Javascript第十二个知识点:Dom
  • 前端开发:(三)CSS入门