| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 | using System;using System.Collections;using System.Collections.Generic;namespace YooAsset{	internal class HostPlayModeImpl : IPlayModeServices, IBundleServices	{		private PackageManifest _activeManifest;		// 参数相关		private string _packageName;		private IQueryServices _queryServices;		private IRemoteServices _remoteServices;		public IRemoteServices RemoteServices		{			get { return _remoteServices; }		}		/// <summary>		/// 异步初始化		/// </summary>		public InitializationOperation InitializeAsync(string packageName, IQueryServices queryServices, IRemoteServices remoteServices)		{			_packageName = packageName;			_queryServices = queryServices;			_remoteServices = remoteServices;			var operation = new HostPlayModeInitializationOperation(this, packageName);			OperationSystem.StartOperation(operation);			return operation;		}		// 下载相关		private List<BundleInfo> ConvertToDownloadList(List<PackageBundle> downloadList)		{			List<BundleInfo> result = new List<BundleInfo>(downloadList.Count);			foreach (var packageBundle in downloadList)			{				var bundleInfo = ConvertToDownloadInfo(packageBundle);				result.Add(bundleInfo);			}			return result;		}		private BundleInfo ConvertToDownloadInfo(PackageBundle packageBundle)		{			string remoteMainURL = _remoteServices.GetRemoteMainURL(packageBundle.FileName);			string remoteFallbackURL = _remoteServices.GetRemoteFallbackURL(packageBundle.FileName);			BundleInfo bundleInfo = new BundleInfo(packageBundle, BundleInfo.ELoadMode.LoadFromRemote, remoteMainURL, remoteFallbackURL);			return bundleInfo;		}		#region IPlayModeServices接口		public PackageManifest ActiveManifest		{			set			{				_activeManifest = value;			}			get			{				return _activeManifest;			}		}		public void FlushManifestVersionFile()		{			if (_activeManifest != null)			{				PersistentTools.GetPersistent(_packageName).SaveSandboxPackageVersionFile(_activeManifest.PackageVersion);			}		}		private bool IsBuildinPackageBundle(PackageBundle packageBundle)		{			return _queryServices.QueryStreamingAssets(_packageName, packageBundle.FileName);		}		private bool IsCachedPackageBundle(PackageBundle packageBundle)		{			return CacheSystem.IsCached(packageBundle.PackageName, packageBundle.CacheGUID);		}		UpdatePackageVersionOperation IPlayModeServices.UpdatePackageVersionAsync(bool appendTimeTicks, int timeout)		{			var operation = new HostPlayModeUpdatePackageVersionOperation(this, _packageName, appendTimeTicks, timeout);			OperationSystem.StartOperation(operation);			return operation;		}		UpdatePackageManifestOperation IPlayModeServices.UpdatePackageManifestAsync(string packageVersion, bool autoSaveVersion, int timeout)		{			var operation = new HostPlayModeUpdatePackageManifestOperation(this, _packageName, packageVersion, autoSaveVersion, timeout);			OperationSystem.StartOperation(operation);			return operation;		}		PreDownloadContentOperation IPlayModeServices.PreDownloadContentAsync(string packageVersion, int timeout)		{			var operation = new HostPlayModePreDownloadContentOperation(this, _packageName, packageVersion, timeout);			OperationSystem.StartOperation(operation);			return operation;		}		ResourceDownloaderOperation IPlayModeServices.CreateResourceDownloaderByAll(int downloadingMaxNumber, int failedTryAgain, int timeout)		{			List<BundleInfo> downloadList = GetDownloadListByAll(_activeManifest);			var operation = new ResourceDownloaderOperation(downloadList, downloadingMaxNumber, failedTryAgain, timeout);			return operation;		}		public List<BundleInfo> GetDownloadListByAll(PackageManifest manifest)		{			List<PackageBundle> downloadList = new List<PackageBundle>(1000);			foreach (var packageBundle in manifest.BundleList)			{				// 忽略缓存文件				if (IsCachedPackageBundle(packageBundle))					continue;				// 忽略APP资源				if (IsBuildinPackageBundle(packageBundle))					continue;				downloadList.Add(packageBundle);			}			return ConvertToDownloadList(downloadList);		}		ResourceDownloaderOperation IPlayModeServices.CreateResourceDownloaderByTags(string[] tags, int downloadingMaxNumber, int failedTryAgain, int timeout)		{			List<BundleInfo> downloadList = GetDownloadListByTags(_activeManifest, tags);			var operation = new ResourceDownloaderOperation(downloadList, downloadingMaxNumber, failedTryAgain, timeout);			return operation;		}		public List<BundleInfo> GetDownloadListByTags(PackageManifest manifest, string[] tags)		{			List<PackageBundle> downloadList = new List<PackageBundle>(1000);			foreach (var packageBundle in manifest.BundleList)			{				// 忽略缓存文件				if (IsCachedPackageBundle(packageBundle))					continue;				// 忽略APP资源				if (IsBuildinPackageBundle(packageBundle))					continue;				// 如果未带任何标记,则统一下载				if (packageBundle.HasAnyTags() == false)				{					downloadList.Add(packageBundle);				}				else				{					// 查询DLC资源					if (packageBundle.HasTag(tags))					{						downloadList.Add(packageBundle);					}				}			}			return ConvertToDownloadList(downloadList);		}		ResourceDownloaderOperation IPlayModeServices.CreateResourceDownloaderByPaths(AssetInfo[] assetInfos, int downloadingMaxNumber, int failedTryAgain, int timeout)		{			List<BundleInfo> downloadList = GetDownloadListByPaths(_activeManifest, assetInfos);			var operation = new ResourceDownloaderOperation(downloadList, downloadingMaxNumber, failedTryAgain, timeout);			return operation;		}		public List<BundleInfo> GetDownloadListByPaths(PackageManifest manifest, AssetInfo[] assetInfos)		{			// 获取资源对象的资源包和所有依赖资源包			List<PackageBundle> checkList = new List<PackageBundle>();			foreach (var assetInfo in assetInfos)			{				if (assetInfo.IsInvalid)				{					YooLogger.Warning(assetInfo.Error);					continue;				}				// 注意:如果清单里未找到资源包会抛出异常!				PackageBundle mainBundle = manifest.GetMainPackageBundle(assetInfo.AssetPath);				if (checkList.Contains(mainBundle) == false)					checkList.Add(mainBundle);				// 注意:如果清单里未找到资源包会抛出异常!				PackageBundle[] dependBundles = manifest.GetAllDependencies(assetInfo.AssetPath);				foreach (var dependBundle in dependBundles)				{					if (checkList.Contains(dependBundle) == false)						checkList.Add(dependBundle);				}			}			List<PackageBundle> downloadList = new List<PackageBundle>(1000);			foreach (var packageBundle in checkList)			{				// 忽略缓存文件				if (IsCachedPackageBundle(packageBundle))					continue;				// 忽略APP资源				if (IsBuildinPackageBundle(packageBundle))					continue;				downloadList.Add(packageBundle);			}			return ConvertToDownloadList(downloadList);		}		ResourceUnpackerOperation IPlayModeServices.CreateResourceUnpackerByAll(int upackingMaxNumber, int failedTryAgain, int timeout)		{			List<BundleInfo> unpcakList = GetUnpackListByAll(_activeManifest);			var operation = new ResourceUnpackerOperation(unpcakList, upackingMaxNumber, failedTryAgain, timeout);			return operation;		}		private List<BundleInfo> GetUnpackListByAll(PackageManifest manifest)		{			List<PackageBundle> downloadList = new List<PackageBundle>(1000);			foreach (var packageBundle in manifest.BundleList)			{				// 忽略缓存文件				if (IsCachedPackageBundle(packageBundle))					continue;				if (IsBuildinPackageBundle(packageBundle))				{					downloadList.Add(packageBundle);				}			}			return ManifestTools.ConvertToUnpackInfos(downloadList);		}		ResourceUnpackerOperation IPlayModeServices.CreateResourceUnpackerByTags(string[] tags, int upackingMaxNumber, int failedTryAgain, int timeout)		{			List<BundleInfo> unpcakList = GetUnpackListByTags(_activeManifest, tags);			var operation = new ResourceUnpackerOperation(unpcakList, upackingMaxNumber, failedTryAgain, timeout);			return operation;		}		private List<BundleInfo> GetUnpackListByTags(PackageManifest manifest, string[] tags)		{			List<PackageBundle> downloadList = new List<PackageBundle>(1000);			foreach (var packageBundle in manifest.BundleList)			{				// 忽略缓存文件				if (IsCachedPackageBundle(packageBundle))					continue;				// 查询DLC资源				if (IsBuildinPackageBundle(packageBundle))				{					if (packageBundle.HasTag(tags))					{						downloadList.Add(packageBundle);					}				}			}			return ManifestTools.ConvertToUnpackInfos(downloadList);		}		#endregion		#region IBundleServices接口		private BundleInfo CreateBundleInfo(PackageBundle packageBundle)		{			if (packageBundle == null)				throw new Exception("Should never get here !");			// 查询沙盒资源			if (IsCachedPackageBundle(packageBundle))			{				BundleInfo bundleInfo = new BundleInfo(packageBundle, BundleInfo.ELoadMode.LoadFromCache);				return bundleInfo;			}			// 查询APP资源			if (IsBuildinPackageBundle(packageBundle))			{				BundleInfo bundleInfo = new BundleInfo(packageBundle, BundleInfo.ELoadMode.LoadFromStreaming);				return bundleInfo;			}			// 从服务端下载			return ConvertToDownloadInfo(packageBundle);		}		BundleInfo IBundleServices.GetBundleInfo(AssetInfo assetInfo)		{			if (assetInfo.IsInvalid)				throw new Exception("Should never get here !");			// 注意:如果清单里未找到资源包会抛出异常!			var packageBundle = _activeManifest.GetMainPackageBundle(assetInfo.AssetPath);			return CreateBundleInfo(packageBundle);		}		BundleInfo[] IBundleServices.GetAllDependBundleInfos(AssetInfo assetInfo)		{			if (assetInfo.IsInvalid)				throw new Exception("Should never get here !");			// 注意:如果清单里未找到资源包会抛出异常!			var depends = _activeManifest.GetAllDependencies(assetInfo.AssetPath);			List<BundleInfo> result = new List<BundleInfo>(depends.Length);			foreach (var packageBundle in depends)			{				BundleInfo bundleInfo = CreateBundleInfo(packageBundle);				result.Add(bundleInfo);			}			return result.ToArray();		}		string IBundleServices.GetBundleName(int bundleID)		{			return _activeManifest.GetBundleName(bundleID);		}		bool IBundleServices.IsServicesValid()		{			return _activeManifest != null;		}		#endregion	}}
 |