mirror of https://github.com/tuyoogame/YooAsset
106 lines
3.5 KiB
C#
106 lines
3.5 KiB
C#
|
|
namespace YooAsset
|
|
{
|
|
public class DestroyOperation : AsyncOperationBase
|
|
{
|
|
private enum ESteps
|
|
{
|
|
None,
|
|
CheckInitStatus,
|
|
UnloadAllAssets,
|
|
DestroyPackage,
|
|
Done,
|
|
}
|
|
|
|
private readonly ResourcePackage _resourcePackage;
|
|
private UnloadAllAssetsOperation _unloadAllAssetsOp;
|
|
private ESteps _steps = ESteps.None;
|
|
|
|
|
|
public DestroyOperation(ResourcePackage resourcePackage)
|
|
{
|
|
_resourcePackage = resourcePackage;
|
|
}
|
|
|
|
internal override void InternalStart()
|
|
{
|
|
_steps = ESteps.CheckInitStatus;
|
|
}
|
|
internal override void InternalUpdate()
|
|
{
|
|
if (_steps == ESteps.None || _steps == ESteps.Done)
|
|
return;
|
|
|
|
if (_steps == ESteps.CheckInitStatus)
|
|
{
|
|
if (_resourcePackage.InitializeStatus == EOperationStatus.None)
|
|
{
|
|
_steps = ESteps.DestroyPackage;
|
|
}
|
|
else if (_resourcePackage.InitializeStatus == EOperationStatus.Processing)
|
|
{
|
|
_steps = ESteps.Done;
|
|
Status = EOperationStatus.Failed;
|
|
Error = "The Package is initializing ! Please try to destroy the package again later.";
|
|
}
|
|
else if (_resourcePackage.InitializeStatus == EOperationStatus.Failed)
|
|
{
|
|
_steps = ESteps.DestroyPackage;
|
|
}
|
|
else if (_resourcePackage.InitializeStatus == EOperationStatus.Succeed)
|
|
{
|
|
if (_resourcePackage.PackageValid)
|
|
_steps = ESteps.UnloadAllAssets;
|
|
else
|
|
_steps = ESteps.DestroyPackage;
|
|
}
|
|
else
|
|
{
|
|
throw new System.NotImplementedException(_resourcePackage.InitializeStatus.ToString());
|
|
}
|
|
}
|
|
|
|
if (_steps == ESteps.UnloadAllAssets)
|
|
{
|
|
if (_unloadAllAssetsOp == null)
|
|
{
|
|
_unloadAllAssetsOp = _resourcePackage.UnloadAllAssetsAsync();
|
|
_unloadAllAssetsOp.StartOperation();
|
|
AddChildOperation(_unloadAllAssetsOp);
|
|
}
|
|
|
|
_unloadAllAssetsOp.UpdateOperation();
|
|
if (_unloadAllAssetsOp.IsDone == false)
|
|
return;
|
|
|
|
if (_unloadAllAssetsOp.Status == EOperationStatus.Succeed)
|
|
{
|
|
_steps = ESteps.DestroyPackage;
|
|
}
|
|
else
|
|
{
|
|
_steps = ESteps.Done;
|
|
Status = EOperationStatus.Failed;
|
|
Error = _unloadAllAssetsOp.Error;
|
|
}
|
|
}
|
|
|
|
if (_steps == ESteps.DestroyPackage)
|
|
{
|
|
// 销毁包裹
|
|
_resourcePackage.DestroyPackage();
|
|
|
|
// 最后清理该包裹的异步任务
|
|
// 注意:对于有线程操作的异步任务,需要保证线程安全释放。
|
|
OperationSystem.ClearPackageOperation(_resourcePackage.PackageName);
|
|
|
|
_steps = ESteps.Done;
|
|
Status = EOperationStatus.Succeed;
|
|
}
|
|
}
|
|
internal override string InternalGetDesc()
|
|
{
|
|
return $"PackageVersion : {_resourcePackage.GetPackageVersion()}";
|
|
}
|
|
}
|
|
} |