1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace YooAsset
- {
- internal sealed class DatabaseSubAssetsProvider : ProviderBase
- {
- public DatabaseSubAssetsProvider(AssetSystemImpl impl, string providerGUID, AssetInfo assetInfo) : base(impl, providerGUID, assetInfo)
- {
- }
- public override void Update()
- {
- #if UNITY_EDITOR
- if (IsDone)
- return;
- if (Status == EStatus.None)
- {
- // 检测资源文件是否存在
- string guid = UnityEditor.AssetDatabase.AssetPathToGUID(MainAssetInfo.AssetPath);
- if (string.IsNullOrEmpty(guid))
- {
- Status = EStatus.Failed;
- LastError = $"Not found asset : {MainAssetInfo.AssetPath}";
- YooLogger.Error(LastError);
- InvokeCompletion();
- return;
- }
- Status = EStatus.CheckBundle;
- // 注意:模拟异步加载效果提前返回
- if (IsWaitForAsyncComplete == false)
- return;
- }
- // 1. 检测资源包
- if (Status == EStatus.CheckBundle)
- {
- if (IsWaitForAsyncComplete)
- {
- OwnerBundle.WaitForAsyncComplete();
- }
- if (OwnerBundle.IsDone() == false)
- return;
- if (OwnerBundle.Status != BundleLoaderBase.EStatus.Succeed)
- {
- Status = EStatus.Failed;
- LastError = OwnerBundle.LastError;
- InvokeCompletion();
- return;
- }
- Status = EStatus.Loading;
- }
- // 2. 加载资源对象
- if (Status == EStatus.Loading)
- {
- if (MainAssetInfo.AssetType == null)
- {
- AllAssetObjects = UnityEditor.AssetDatabase.LoadAllAssetRepresentationsAtPath(MainAssetInfo.AssetPath);
- }
- else
- {
- UnityEngine.Object[] findAssets = UnityEditor.AssetDatabase.LoadAllAssetRepresentationsAtPath(MainAssetInfo.AssetPath);
- List<UnityEngine.Object> result = new List<Object>(findAssets.Length);
- foreach (var findAsset in findAssets)
- {
- if (MainAssetInfo.AssetType.IsAssignableFrom(findAsset.GetType()))
- result.Add(findAsset);
- }
- AllAssetObjects = result.ToArray();
- }
- Status = EStatus.Checking;
- }
- // 3. 检测加载结果
- if (Status == EStatus.Checking)
- {
- Status = AllAssetObjects == null ? EStatus.Failed : EStatus.Succeed;
- if (Status == EStatus.Failed)
- {
- if (MainAssetInfo.AssetType == null)
- LastError = $"Failed to load sub assets : {MainAssetInfo.AssetPath} AssetType : null";
- else
- LastError = $"Failed to load sub assets : {MainAssetInfo.AssetPath} AssetType : {MainAssetInfo.AssetType}";
- YooLogger.Error(LastError);
- }
- InvokeCompletion();
- }
- #endif
- }
- }
- }
|