Files
YooAsset/Assets/YooAsset/Runtime/PackageSystem/PlayMode/OfflinePlayModeImpl.cs

174 lines
5.6 KiB
C#
Raw Normal View History

2022-03-01 10:44:12 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
namespace YooAsset
{
2022-12-17 22:37:39 +08:00
internal class OfflinePlayModeImpl : IPlayModeServices, IBundleServices
2022-03-01 10:44:12 +08:00
{
private PackageManifest _activeManifest;
2022-03-25 15:02:21 +08:00
2022-03-01 10:44:12 +08:00
/// <summary>
/// 异步初始化
/// </summary>
public InitializationOperation InitializeAsync(string packageName)
2022-03-01 10:44:12 +08:00
{
2022-10-27 14:20:05 +08:00
var operation = new OfflinePlayModeInitializationOperation(this, packageName);
2022-08-06 11:23:43 +08:00
OperationSystem.StartOperation(operation);
2022-03-01 10:44:12 +08:00
return operation;
}
2022-12-18 21:55:49 +08:00
2022-12-17 22:37:39 +08:00
#region IPlayModeServices接口
public PackageManifest ActiveManifest
2022-12-17 22:37:39 +08:00
{
set
{
2022-12-24 22:09:14 +08:00
_activeManifest = value;
2022-12-17 22:37:39 +08:00
}
get
{
2022-12-24 22:09:14 +08:00
return _activeManifest;
2022-12-17 22:37:39 +08:00
}
}
public void FlushManifestVersionFile()
2022-12-17 22:37:39 +08:00
{
}
private bool IsCachedPackageBundle(PackageBundle packageBundle)
{
return CacheSystem.IsCached(packageBundle.PackageName, packageBundle.CacheGUID);
}
2022-12-17 22:37:39 +08:00
UpdatePackageVersionOperation IPlayModeServices.UpdatePackageVersionAsync(bool appendTimeTicks, int timeout)
{
var operation = new OfflinePlayModeUpdatePackageVersionOperation();
OperationSystem.StartOperation(operation);
return operation;
}
UpdatePackageManifestOperation IPlayModeServices.UpdatePackageManifestAsync(string packageVersion, bool autoSaveVersion, int timeout)
2022-12-17 22:37:39 +08:00
{
2022-12-20 16:17:01 +08:00
var operation = new OfflinePlayModeUpdatePackageManifestOperation();
2022-12-17 22:37:39 +08:00
OperationSystem.StartOperation(operation);
return operation;
}
PreDownloadContentOperation IPlayModeServices.PreDownloadContentAsync(string packageVersion, int timeout)
2022-12-17 22:37:39 +08:00
{
var operation = new OfflinePlayModePreDownloadContentOperation();
2022-12-26 00:48:56 +08:00
OperationSystem.StartOperation(operation);
return operation;
}
ResourceDownloaderOperation IPlayModeServices.CreateResourceDownloaderByAll(int downloadingMaxNumber, int failedTryAgain, int timeout)
{
return ResourceDownloaderOperation.CreateEmptyDownloader(downloadingMaxNumber, failedTryAgain, timeout);
2022-12-18 21:55:49 +08:00
}
ResourceDownloaderOperation IPlayModeServices.CreateResourceDownloaderByTags(string[] tags, int downloadingMaxNumber, int failedTryAgain, int timeout)
2022-12-17 22:37:39 +08:00
{
return ResourceDownloaderOperation.CreateEmptyDownloader(downloadingMaxNumber, failedTryAgain, timeout);
2022-12-18 21:55:49 +08:00
}
ResourceDownloaderOperation IPlayModeServices.CreateResourceDownloaderByPaths(AssetInfo[] assetInfos, int downloadingMaxNumber, int failedTryAgain, int timeout)
2022-12-17 22:37:39 +08:00
{
return ResourceDownloaderOperation.CreateEmptyDownloader(downloadingMaxNumber, failedTryAgain, timeout);
2022-12-17 22:37:39 +08:00
}
2022-12-18 21:55:49 +08:00
ResourceUnpackerOperation IPlayModeServices.CreateResourceUnpackerByAll(int upackingMaxNumber, int failedTryAgain, int timeout)
2022-12-17 22:37:39 +08:00
{
List<BundleInfo> unpcakList = GetUnpackListByAll(_activeManifest);
var operation = new ResourceUnpackerOperation(unpcakList, upackingMaxNumber, failedTryAgain, timeout);
return operation;
2022-12-18 21:55:49 +08:00
}
private List<BundleInfo> GetUnpackListByAll(PackageManifest manifest)
{
List<PackageBundle> downloadList = new List<PackageBundle>(1000);
foreach (var packageBundle in manifest.BundleList)
{
// 忽略缓存文件
if (IsCachedPackageBundle(packageBundle))
continue;
downloadList.Add(packageBundle);
}
2023-06-26 10:42:56 +08:00
return ManifestTools.ConvertToUnpackInfos(downloadList);
}
ResourceUnpackerOperation IPlayModeServices.CreateResourceUnpackerByTags(string[] tags, int upackingMaxNumber, int failedTryAgain, int timeout)
2022-12-18 21:55:49 +08:00
{
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 (packageBundle.HasTag(tags))
{
downloadList.Add(packageBundle);
}
}
2023-06-26 10:42:56 +08:00
return ManifestTools.ConvertToUnpackInfos(downloadList);
2022-12-17 22:37:39 +08:00
}
#endregion
2022-03-01 10:44:12 +08:00
#region IBundleServices接口
private BundleInfo CreateBundleInfo(PackageBundle packageBundle)
2022-03-01 10:44:12 +08:00
{
if (packageBundle == null)
throw new Exception("Should never get here !");
// 查询沙盒资源
if (CacheSystem.IsCached(packageBundle.PackageName, packageBundle.CacheGUID))
{
BundleInfo bundleInfo = new BundleInfo(packageBundle, BundleInfo.ELoadMode.LoadFromCache);
return bundleInfo;
}
// 查询APP资源
{
BundleInfo bundleInfo = new BundleInfo(packageBundle, BundleInfo.ELoadMode.LoadFromStreaming);
return bundleInfo;
}
2022-03-01 10:44:12 +08:00
}
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 !");
// 注意:如果清单里未找到资源包会抛出异常!
2022-12-24 22:09:14 +08:00
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()
{
2022-12-24 22:09:14 +08:00
return _activeManifest != null;
}
2022-03-01 10:44:12 +08:00
#endregion
}
}