using System; using System.Collections; using System.Collections.Generic; namespace YooAsset { internal class WebPlayModeImpl : IPlayMode, IBundleQuery { private PackageManifest _activeManifest; private ResourceAssist _assist; private IBuildinQueryServices _buildinQueryServices; private IRemoteServices _remoteServices; private IWechatQueryServices _wechatQueryServices; public readonly string PackageName; public DownloadManager Download { get { return _assist.Download; } } public PersistentManager Persistent { get { return _assist.Persistent; } } public IRemoteServices RemoteServices { get { return _remoteServices; } } public WebPlayModeImpl(string packageName) { PackageName = packageName; } /// /// 异步初始化 /// public InitializationOperation InitializeAsync(ResourceAssist assist, IBuildinQueryServices buildinQueryServices, IRemoteServices remoteServices, IWechatQueryServices wechatQueryServices) { _assist = assist; _buildinQueryServices = buildinQueryServices; _remoteServices = remoteServices; _wechatQueryServices = wechatQueryServices; var operation = new WebPlayModeInitializationOperation(this); OperationSystem.StartOperation(PackageName, operation); return operation; } // 下载相关 private BundleInfo ConvertToDownloadInfo(PackageBundle packageBundle) { string remoteMainURL = _remoteServices.GetRemoteMainURL(packageBundle.FileName); string remoteFallbackURL = _remoteServices.GetRemoteFallbackURL(packageBundle.FileName); BundleInfo bundleInfo = new BundleInfo(_assist, packageBundle, BundleInfo.ELoadMode.LoadFromRemote, remoteMainURL, remoteFallbackURL); return bundleInfo; } private List ConvertToDownloadList(List downloadList) { List result = new List(downloadList.Count); foreach (var packageBundle in downloadList) { var bundleInfo = ConvertToDownloadInfo(packageBundle); result.Add(bundleInfo); } return result; } // 查询相关 private bool IsCachedPackageBundle(PackageBundle packageBundle) { if (_wechatQueryServices != null) return _wechatQueryServices.Query(PackageName, packageBundle.FileName, packageBundle.FileCRC); else return false; } private bool IsBuildinPackageBundle(PackageBundle packageBundle) { return _buildinQueryServices.Query(PackageName, packageBundle.FileName, packageBundle.FileCRC); } #region IPlayMode接口 public PackageManifest ActiveManifest { set { _activeManifest = value; } get { return _activeManifest; } } public void FlushManifestVersionFile() { } UpdatePackageVersionOperation IPlayMode.UpdatePackageVersionAsync(bool appendTimeTicks, int timeout) { var operation = new WebPlayModeUpdatePackageVersionOperation(this, appendTimeTicks, timeout); OperationSystem.StartOperation(PackageName, operation); return operation; } UpdatePackageManifestOperation IPlayMode.UpdatePackageManifestAsync(string packageVersion, bool autoSaveVersion, int timeout) { var operation = new WebPlayModeUpdatePackageManifestOperation(this, packageVersion, timeout); OperationSystem.StartOperation(PackageName, operation); return operation; } PreDownloadContentOperation IPlayMode.PreDownloadContentAsync(string packageVersion, int timeout) { var operation = new WebPlayModePreDownloadContentOperation(this); OperationSystem.StartOperation(PackageName, operation); return operation; } ResourceDownloaderOperation IPlayMode.CreateResourceDownloaderByAll(int downloadingMaxNumber, int failedTryAgain, int timeout) { List downloadList = GetDownloadListByAll(_activeManifest); var operation = new ResourceDownloaderOperation(Download, PackageName, downloadList, downloadingMaxNumber, failedTryAgain, timeout); return operation; } public List GetDownloadListByAll(PackageManifest manifest) { List downloadList = new List(1000); foreach (var packageBundle in manifest.BundleList) { // 忽略缓存文件 if (IsCachedPackageBundle(packageBundle)) continue; // 忽略APP资源 if (IsBuildinPackageBundle(packageBundle)) continue; downloadList.Add(packageBundle); } return ConvertToDownloadList(downloadList); } ResourceDownloaderOperation IPlayMode.CreateResourceDownloaderByTags(string[] tags, int downloadingMaxNumber, int failedTryAgain, int timeout) { List downloadList = GetDownloadListByTags(_activeManifest, tags); var operation = new ResourceDownloaderOperation(Download, PackageName, downloadList, downloadingMaxNumber, failedTryAgain, timeout); return operation; } public List GetDownloadListByTags(PackageManifest manifest, string[] tags) { List downloadList = new List(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 IPlayMode.CreateResourceDownloaderByPaths(AssetInfo[] assetInfos, int downloadingMaxNumber, int failedTryAgain, int timeout) { List downloadList = GetDownloadListByPaths(_activeManifest, assetInfos); var operation = new ResourceDownloaderOperation(Download, PackageName, downloadList, downloadingMaxNumber, failedTryAgain, timeout); return operation; } public List GetDownloadListByPaths(PackageManifest manifest, AssetInfo[] assetInfos) { // 获取资源对象的资源包和所有依赖资源包 List checkList = new List(); 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 downloadList = new List(1000); foreach (var packageBundle in checkList) { // 忽略缓存文件 if (IsCachedPackageBundle(packageBundle)) continue; // 忽略APP资源 if (IsBuildinPackageBundle(packageBundle)) continue; downloadList.Add(packageBundle); } return ConvertToDownloadList(downloadList); } ResourceUnpackerOperation IPlayMode.CreateResourceUnpackerByAll(int upackingMaxNumber, int failedTryAgain, int timeout) { return ResourceUnpackerOperation.CreateEmptyUnpacker(Download, PackageName, upackingMaxNumber, failedTryAgain, timeout); } ResourceUnpackerOperation IPlayMode.CreateResourceUnpackerByTags(string[] tags, int upackingMaxNumber, int failedTryAgain, int timeout) { return ResourceUnpackerOperation.CreateEmptyUnpacker(Download, PackageName, upackingMaxNumber, failedTryAgain, timeout); } ResourceImporterOperation IPlayMode.CreateResourceImporterByFilePaths(string[] filePaths, int importerMaxNumber, int failedTryAgain, int timeout) { return ResourceImporterOperation.CreateEmptyImporter(Download, PackageName, importerMaxNumber, failedTryAgain, timeout); } #endregion #region IBundleQuery接口 private BundleInfo CreateBundleInfo(PackageBundle packageBundle) { if (packageBundle == null) throw new Exception("Should never get here !"); // 查询APP资源 if (IsBuildinPackageBundle(packageBundle)) { BundleInfo bundleInfo = new BundleInfo(_assist, packageBundle, BundleInfo.ELoadMode.LoadFromStreaming); return bundleInfo; } // 从服务端下载 return ConvertToDownloadInfo(packageBundle); } BundleInfo IBundleQuery.GetMainBundleInfo(AssetInfo assetInfo) { if (assetInfo.IsInvalid) throw new Exception("Should never get here !"); // 注意:如果清单里未找到资源包会抛出异常! var packageBundle = _activeManifest.GetMainPackageBundle(assetInfo.AssetPath); return CreateBundleInfo(packageBundle); } BundleInfo[] IBundleQuery.GetDependBundleInfos(AssetInfo assetInfo) { if (assetInfo.IsInvalid) throw new Exception("Should never get here !"); // 注意:如果清单里未找到资源包会抛出异常! var depends = _activeManifest.GetAllDependencies(assetInfo.AssetPath); List result = new List(depends.Length); foreach (var packageBundle in depends) { BundleInfo bundleInfo = CreateBundleInfo(packageBundle); result.Add(bundleInfo); } return result.ToArray(); } string IBundleQuery.GetMainBundleName(AssetInfo assetInfo) { if (assetInfo.IsInvalid) throw new Exception("Should never get here !"); // 注意:如果清单里未找到资源包会抛出异常! var packageBundle = _activeManifest.GetMainPackageBundle(assetInfo.AssetPath); return packageBundle.BundleName; } string[] IBundleQuery.GetDependBundleNames(AssetInfo assetInfo) { if (assetInfo.IsInvalid) throw new Exception("Should never get here !"); // 注意:如果清单里未找到资源包会抛出异常! var depends = _activeManifest.GetAllDependencies(assetInfo.AssetPath); List result = new List(depends.Length); foreach (var packageBundle in depends) { result.Add(packageBundle.BundleName); } return result.ToArray(); } bool IBundleQuery.ManifestValid() { return _activeManifest != null; } #endregion } }