364 lines
11 KiB
C#
364 lines
11 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace YooAsset
|
|
{
|
|
internal class HostPlayModeImpl : IPlayModeServices, IBundleServices
|
|
{
|
|
private PatchManifest _activeManifest;
|
|
|
|
// 参数相关
|
|
private string _packageName;
|
|
private bool _locationToLower;
|
|
private string _defaultHostServer;
|
|
private string _fallbackHostServer;
|
|
private IQueryServices _queryServices;
|
|
|
|
/// <summary>
|
|
/// 异步初始化
|
|
/// </summary>
|
|
public InitializationOperation InitializeAsync(string packageName, bool locationToLower, string defaultHostServer, string fallbackHostServer, IQueryServices queryServices)
|
|
{
|
|
_packageName = packageName;
|
|
_locationToLower = locationToLower;
|
|
_defaultHostServer = defaultHostServer;
|
|
_fallbackHostServer = fallbackHostServer;
|
|
_queryServices = queryServices;
|
|
|
|
var operation = new HostPlayModeInitializationOperation(this, packageName);
|
|
OperationSystem.StartOperation(operation);
|
|
return operation;
|
|
}
|
|
|
|
// WEB相关
|
|
public string GetPatchDownloadMainURL(string fileName)
|
|
{
|
|
return $"{_defaultHostServer}/{fileName}";
|
|
}
|
|
public string GetPatchDownloadFallbackURL(string fileName)
|
|
{
|
|
return $"{_fallbackHostServer}/{fileName}";
|
|
}
|
|
|
|
// 下载相关
|
|
private List<BundleInfo> ConvertToDownloadList(List<PatchBundle> downloadList)
|
|
{
|
|
List<BundleInfo> result = new List<BundleInfo>(downloadList.Count);
|
|
foreach (var patchBundle in downloadList)
|
|
{
|
|
var bundleInfo = ConvertToDownloadInfo(patchBundle);
|
|
result.Add(bundleInfo);
|
|
}
|
|
return result;
|
|
}
|
|
private BundleInfo ConvertToDownloadInfo(PatchBundle patchBundle)
|
|
{
|
|
string remoteMainURL = GetPatchDownloadMainURL(patchBundle.FileName);
|
|
string remoteFallbackURL = GetPatchDownloadFallbackURL(patchBundle.FileName);
|
|
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromRemote, remoteMainURL, remoteFallbackURL);
|
|
return bundleInfo;
|
|
}
|
|
|
|
// 解压相关
|
|
private List<BundleInfo> ConvertToUnpackList(List<PatchBundle> unpackList)
|
|
{
|
|
List<BundleInfo> result = new List<BundleInfo>(unpackList.Count);
|
|
foreach (var patchBundle in unpackList)
|
|
{
|
|
var bundleInfo = ConvertToUnpackInfo(patchBundle);
|
|
result.Add(bundleInfo);
|
|
}
|
|
return result;
|
|
}
|
|
public static BundleInfo ConvertToUnpackInfo(PatchBundle patchBundle)
|
|
{
|
|
// 注意:我们把流加载路径指定为远端下载地址
|
|
string streamingPath = PathHelper.ConvertToWWWPath(patchBundle.StreamingFilePath);
|
|
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromStreaming, streamingPath, streamingPath);
|
|
return bundleInfo;
|
|
}
|
|
|
|
#region IPlayModeServices接口
|
|
public PatchManifest ActiveManifest
|
|
{
|
|
set
|
|
{
|
|
_activeManifest = value;
|
|
_activeManifest.InitAssetPathMapping(_locationToLower);
|
|
PersistentHelper.SaveCachePackageVersionFile(_packageName, _activeManifest.PackageVersion);
|
|
}
|
|
get
|
|
{
|
|
return _activeManifest;
|
|
}
|
|
}
|
|
public bool IsBuildinPatchBundle(PatchBundle patchBundle)
|
|
{
|
|
return _queryServices.QueryStreamingAssets(patchBundle.FileName);
|
|
}
|
|
|
|
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, int timeout)
|
|
{
|
|
var operation = new HostPlayModeUpdatePackageManifestOperation(this, _packageName, packageVersion, timeout);
|
|
OperationSystem.StartOperation(operation);
|
|
return operation;
|
|
}
|
|
CheckContentsIntegrityOperation IPlayModeServices.CheckContentsIntegrityAsync()
|
|
{
|
|
var operation = new HostPlayModeCheckContentsIntegrityOperation(this, _packageName);
|
|
OperationSystem.StartOperation(operation);
|
|
return operation;
|
|
}
|
|
|
|
PatchDownloaderOperation IPlayModeServices.CreatePatchDownloaderByAll(int downloadingMaxNumber, int failedTryAgain, int timeout)
|
|
{
|
|
List<BundleInfo> downloadList = GetDownloadListByAll(_activeManifest);
|
|
var operation = new PatchDownloaderOperation(downloadList, downloadingMaxNumber, failedTryAgain, timeout);
|
|
return operation;
|
|
}
|
|
public List<BundleInfo> GetDownloadListByAll(PatchManifest patchManifest)
|
|
{
|
|
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
|
|
foreach (var patchBundle in patchManifest.BundleList)
|
|
{
|
|
// 忽略缓存文件
|
|
if (CacheSystem.IsCached(patchBundle))
|
|
continue;
|
|
|
|
// 忽略APP资源
|
|
if (IsBuildinPatchBundle(patchBundle))
|
|
continue;
|
|
|
|
downloadList.Add(patchBundle);
|
|
}
|
|
|
|
return ConvertToDownloadList(downloadList);
|
|
}
|
|
|
|
PatchDownloaderOperation IPlayModeServices.CreatePatchDownloaderByTags(string[] tags, int downloadingMaxNumber, int failedTryAgain, int timeout)
|
|
{
|
|
List<BundleInfo> downloadList = GetDownloadListByTags(_activeManifest, tags);
|
|
var operation = new PatchDownloaderOperation(downloadList, downloadingMaxNumber, failedTryAgain, timeout);
|
|
return operation;
|
|
}
|
|
public List<BundleInfo> GetDownloadListByTags(PatchManifest patchManifest, string[] tags)
|
|
{
|
|
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
|
|
foreach (var patchBundle in patchManifest.BundleList)
|
|
{
|
|
// 忽略缓存文件
|
|
if (CacheSystem.IsCached(patchBundle))
|
|
continue;
|
|
|
|
// 忽略APP资源
|
|
if (IsBuildinPatchBundle(patchBundle))
|
|
continue;
|
|
|
|
// 如果未带任何标记,则统一下载
|
|
if (patchBundle.HasAnyTags() == false)
|
|
{
|
|
downloadList.Add(patchBundle);
|
|
}
|
|
else
|
|
{
|
|
// 查询DLC资源
|
|
if (patchBundle.HasTag(tags))
|
|
{
|
|
downloadList.Add(patchBundle);
|
|
}
|
|
}
|
|
}
|
|
|
|
return ConvertToDownloadList(downloadList);
|
|
}
|
|
|
|
PatchDownloaderOperation IPlayModeServices.CreatePatchDownloaderByPaths(AssetInfo[] assetInfos, int downloadingMaxNumber, int failedTryAgain, int timeout)
|
|
{
|
|
List<BundleInfo> downloadList = GetDownloadListByPaths(_activeManifest, assetInfos);
|
|
var operation = new PatchDownloaderOperation(downloadList, downloadingMaxNumber, failedTryAgain, timeout);
|
|
return operation;
|
|
}
|
|
private List<BundleInfo> GetDownloadListByPaths(PatchManifest patchManifest, AssetInfo[] assetInfos)
|
|
{
|
|
// 获取资源对象的资源包和所有依赖资源包
|
|
List<PatchBundle> checkList = new List<PatchBundle>();
|
|
foreach (var assetInfo in assetInfos)
|
|
{
|
|
if (assetInfo.IsInvalid)
|
|
{
|
|
YooLogger.Warning(assetInfo.Error);
|
|
continue;
|
|
}
|
|
|
|
// 注意:如果补丁清单里未找到资源包会抛出异常!
|
|
PatchBundle mainBundle = patchManifest.GetMainPatchBundle(assetInfo.AssetPath);
|
|
if (checkList.Contains(mainBundle) == false)
|
|
checkList.Add(mainBundle);
|
|
|
|
// 注意:如果补丁清单里未找到资源包会抛出异常!
|
|
PatchBundle[] dependBundles = patchManifest.GetAllDependencies(assetInfo.AssetPath);
|
|
foreach (var dependBundle in dependBundles)
|
|
{
|
|
if (checkList.Contains(dependBundle) == false)
|
|
checkList.Add(dependBundle);
|
|
}
|
|
}
|
|
|
|
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
|
|
foreach (var patchBundle in checkList)
|
|
{
|
|
// 忽略缓存文件
|
|
if (CacheSystem.IsCached(patchBundle))
|
|
continue;
|
|
|
|
// 忽略APP资源
|
|
if (IsBuildinPatchBundle(patchBundle))
|
|
continue;
|
|
|
|
downloadList.Add(patchBundle);
|
|
}
|
|
|
|
return ConvertToDownloadList(downloadList);
|
|
}
|
|
|
|
PatchUnpackerOperation IPlayModeServices.CreatePatchUnpackerByAll(int upackingMaxNumber, int failedTryAgain, int timeout)
|
|
{
|
|
List<BundleInfo> unpcakList = GetUnpackListByAll(_activeManifest);
|
|
var operation = new PatchUnpackerOperation(unpcakList, upackingMaxNumber, failedTryAgain, timeout);
|
|
return operation;
|
|
}
|
|
private List<BundleInfo> GetUnpackListByAll(PatchManifest patchManifest)
|
|
{
|
|
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
|
|
foreach (var patchBundle in patchManifest.BundleList)
|
|
{
|
|
// 忽略缓存文件
|
|
if (CacheSystem.IsCached(patchBundle))
|
|
continue;
|
|
|
|
if (IsBuildinPatchBundle(patchBundle))
|
|
{
|
|
downloadList.Add(patchBundle);
|
|
}
|
|
}
|
|
|
|
return ConvertToUnpackList(downloadList);
|
|
}
|
|
|
|
PatchUnpackerOperation IPlayModeServices.CreatePatchUnpackerByTags(string[] tags, int upackingMaxNumber, int failedTryAgain, int timeout)
|
|
{
|
|
List<BundleInfo> unpcakList = GetUnpackListByTags(_activeManifest, tags);
|
|
var operation = new PatchUnpackerOperation(unpcakList, upackingMaxNumber, failedTryAgain, timeout);
|
|
return operation;
|
|
}
|
|
private List<BundleInfo> GetUnpackListByTags(PatchManifest patchManifest, string[] tags)
|
|
{
|
|
List<PatchBundle> downloadList = new List<PatchBundle>(1000);
|
|
foreach (var patchBundle in patchManifest.BundleList)
|
|
{
|
|
// 忽略缓存文件
|
|
if (CacheSystem.IsCached(patchBundle))
|
|
continue;
|
|
|
|
// 查询DLC资源
|
|
if (IsBuildinPatchBundle(patchBundle))
|
|
{
|
|
if (patchBundle.HasTag(tags))
|
|
{
|
|
downloadList.Add(patchBundle);
|
|
}
|
|
}
|
|
}
|
|
|
|
return ConvertToUnpackList(downloadList);
|
|
}
|
|
#endregion
|
|
|
|
#region IBundleServices接口
|
|
private BundleInfo CreateBundleInfo(PatchBundle patchBundle)
|
|
{
|
|
if (patchBundle == null)
|
|
throw new Exception("Should never get here !");
|
|
|
|
// 查询沙盒资源
|
|
if (CacheSystem.IsCached(patchBundle))
|
|
{
|
|
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromCache);
|
|
return bundleInfo;
|
|
}
|
|
|
|
// 查询APP资源
|
|
if (IsBuildinPatchBundle(patchBundle))
|
|
{
|
|
BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromStreaming);
|
|
return bundleInfo;
|
|
}
|
|
|
|
// 从服务端下载
|
|
return ConvertToDownloadInfo(patchBundle);
|
|
}
|
|
BundleInfo IBundleServices.GetBundleInfo(AssetInfo assetInfo)
|
|
{
|
|
if (assetInfo.IsInvalid)
|
|
throw new Exception("Should never get here !");
|
|
|
|
// 注意:如果补丁清单里未找到资源包会抛出异常!
|
|
var patchBundle = _activeManifest.GetMainPatchBundle(assetInfo.AssetPath);
|
|
return CreateBundleInfo(patchBundle);
|
|
}
|
|
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 patchBundle in depends)
|
|
{
|
|
BundleInfo bundleInfo = CreateBundleInfo(patchBundle);
|
|
result.Add(bundleInfo);
|
|
}
|
|
return result.ToArray();
|
|
}
|
|
AssetInfo[] IBundleServices.GetAssetInfos(string[] tags)
|
|
{
|
|
return _activeManifest.GetAssetsInfoByTags(tags);
|
|
}
|
|
PatchAsset IBundleServices.TryGetPatchAsset(string assetPath)
|
|
{
|
|
if (_activeManifest.TryGetPatchAsset(assetPath, out PatchAsset patchAsset))
|
|
return patchAsset;
|
|
else
|
|
return null;
|
|
}
|
|
string IBundleServices.MappingToAssetPath(string location)
|
|
{
|
|
return _activeManifest.MappingToAssetPath(location);
|
|
}
|
|
string IBundleServices.TryMappingToAssetPath(string location)
|
|
{
|
|
return _activeManifest.TryMappingToAssetPath(location);
|
|
}
|
|
string IBundleServices.GetPackageName()
|
|
{
|
|
return _packageName;
|
|
}
|
|
bool IBundleServices.IsIncludeBundleFile(string fileName)
|
|
{
|
|
return _activeManifest.IsIncludeBundleFile(fileName);
|
|
}
|
|
bool IBundleServices.IsServicesValid()
|
|
{
|
|
return _activeManifest != null;
|
|
}
|
|
#endregion
|
|
}
|
|
} |