| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 | using System.IO;namespace YooAsset{	/// <summary>	/// WebGL平台加载器	/// </summary>	internal class RawBundleWebLoader : BundleLoaderBase	{		private enum ESteps		{			None,			Download,			CheckDownload,			Website,			CheckWebsite,			CheckFile,			Done,		}		private ESteps _steps = ESteps.None;		private DownloaderBase _website;		private DownloaderBase _downloader;		public RawBundleWebLoader(AssetSystemImpl impl, BundleInfo bundleInfo) : base(impl, bundleInfo)		{		}		/// <summary>		/// 轮询更新		/// </summary>		public override void Update()		{			if (_steps == ESteps.Done)				return;			if (_steps == ESteps.None)			{				if (MainBundleInfo.LoadMode == BundleInfo.ELoadMode.LoadFromRemote)				{					_steps = ESteps.Download;					FileLoadPath = MainBundleInfo.Bundle.CachedDataFilePath;				}				else if (MainBundleInfo.LoadMode == BundleInfo.ELoadMode.LoadFromStreaming)				{					_steps = ESteps.Website;					FileLoadPath = MainBundleInfo.Bundle.CachedDataFilePath;				}				else if (MainBundleInfo.LoadMode == BundleInfo.ELoadMode.LoadFromCache)				{					_steps = ESteps.CheckFile;					FileLoadPath = MainBundleInfo.Bundle.CachedDataFilePath;				}				else				{					throw new System.NotImplementedException(MainBundleInfo.LoadMode.ToString());				}			}			// 1. 下载远端文件			if (_steps == ESteps.Download)			{				int failedTryAgain = Impl.DownloadFailedTryAgain;				_downloader = DownloadSystem.BeginDownload(MainBundleInfo, failedTryAgain);				_steps = ESteps.CheckDownload;			}			// 2. 检测下载结果			if (_steps == ESteps.CheckDownload)			{				DownloadProgress = _downloader.DownloadProgress;				DownloadedBytes = _downloader.DownloadedBytes;				if (_downloader.IsDone() == false)					return;				if (_downloader.HasError())				{					_steps = ESteps.Done;					Status = EStatus.Failed;					LastError = _downloader.GetLastError();				}				else				{					_steps = ESteps.CheckFile;				}			}			// 3. 从站点下载			if (_steps == ESteps.Website)			{				int failedTryAgain = Impl.DownloadFailedTryAgain;				var bundleInfo = ManifestTools.ConvertToUnpackInfo(MainBundleInfo.Bundle);				_website = DownloadSystem.BeginDownload(bundleInfo, failedTryAgain);				_steps = ESteps.CheckWebsite;			}			// 4. 检测站点下载			if (_steps == ESteps.CheckWebsite)			{				DownloadProgress = _website.DownloadProgress;				DownloadedBytes = _website.DownloadedBytes;				if (_website.IsDone() == false)					return;				if (_website.HasError())				{					_steps = ESteps.Done;					Status = EStatus.Failed;					LastError = _website.GetLastError();				}				else				{					_steps = ESteps.CheckFile;				}			}			// 5. 检测结果			if (_steps == ESteps.CheckFile)			{				// 设置下载进度				DownloadProgress = 1f;				DownloadedBytes = (ulong)MainBundleInfo.Bundle.FileSize;				_steps = ESteps.Done;				if (File.Exists(FileLoadPath))				{					Status = EStatus.Succeed;				}				else				{					Status = EStatus.Failed;					LastError = $"Raw file not found : {FileLoadPath}";				}			}		}		/// <summary>		/// 主线程等待异步操作完毕		/// </summary>		public override void WaitForAsyncComplete()		{			if (IsDone() == false)			{				Status = EStatus.Failed;				LastError = $"{nameof(WaitForAsyncComplete)} failed ! WebGL platform not support sync load method !";				YooLogger.Error(LastError);			}		}	}}
 |