49 lines
2.1 KiB
C#
49 lines
2.1 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class TaskCreatePackage_BBP : IBuildTask
|
|
{
|
|
void IBuildTask.Run(BuildContext context)
|
|
{
|
|
var buildParameters = context.GetContextObject<BuildParametersContext>();
|
|
var buildMapContext = context.GetContextObject<BuildMapContext>();
|
|
CreatePackagePatch(buildParameters, buildMapContext);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 拷贝补丁文件到补丁包目录
|
|
/// </summary>
|
|
private void CreatePackagePatch(BuildParametersContext buildParametersContext, BuildMapContext buildMapContext)
|
|
{
|
|
string pipelineOutputDirectory = buildParametersContext.GetPipelineOutputDirectory();
|
|
string packageOutputDirectory = buildParametersContext.GetPackageOutputDirectory();
|
|
BuildLogger.Log($"Start making patch package: {packageOutputDirectory}");
|
|
|
|
// 拷贝UnityManifest序列化文件
|
|
{
|
|
string sourcePath = $"{pipelineOutputDirectory}/{YooAssetSettings.OutputFolderName}";
|
|
string destPath = $"{packageOutputDirectory}/{YooAssetSettings.OutputFolderName}";
|
|
EditorTools.CopyFile(sourcePath, destPath, true);
|
|
}
|
|
|
|
// 拷贝UnityManifest文本文件
|
|
{
|
|
string sourcePath = $"{pipelineOutputDirectory}/{YooAssetSettings.OutputFolderName}.manifest";
|
|
string destPath = $"{packageOutputDirectory}/{YooAssetSettings.OutputFolderName}.manifest";
|
|
EditorTools.CopyFile(sourcePath, destPath, true);
|
|
}
|
|
|
|
// 拷贝所有补丁文件
|
|
int progressValue = 0;
|
|
int fileTotalCount = buildMapContext.Collection.Count;
|
|
foreach (var bundleInfo in buildMapContext.Collection)
|
|
{
|
|
EditorTools.CopyFile(bundleInfo.PackageSourceFilePath, bundleInfo.PackageDestFilePath, true);
|
|
EditorTools.DisplayProgressBar("Copy patch file", ++progressValue, fileTotalCount);
|
|
}
|
|
EditorTools.ClearProgressBar();
|
|
}
|
|
}
|
|
} |