AssetBundleBuildCommand.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. using HybridCLR.Editor.Commands;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using UnityEditor;
  9. using UnityEditor.EditorTools;
  10. using UnityEngine;
  11. using EditorTools = YooAsset.Editor.EditorTools;
  12. namespace HybridCLR.Editor
  13. {
  14. public static class AssetBundleBuildCommand
  15. {
  16. public static string HybridCLRBuildCacheDir => Application.dataPath + "/HybridCLRBuildCache";
  17. public static string AssetBundleOutputDir => $"{HybridCLRBuildCacheDir}/AssetBundleOutput";
  18. public static string AssetBundleSourceDataTempDir => $"{HybridCLRBuildCacheDir}/AssetBundleSourceData";
  19. public static string GetAssetBundleOutputDirByTarget(BuildTarget target)
  20. {
  21. return $"{AssetBundleOutputDir}/{target}";
  22. }
  23. public static string YooAssetCodeDll = Application.dataPath + "/Res/CodeDll/";
  24. public static string GetAssetBundleTempDirByTarget(BuildTarget target)
  25. {
  26. return $"{AssetBundleSourceDataTempDir}/{target}";
  27. }
  28. public static string ToRelativeAssetPath(string s)
  29. {
  30. return s.Substring(s.IndexOf("Assets/"));
  31. }
  32. /// <summary>
  33. /// 将HotFix.dll和HotUpdatePrefab.prefab打入common包.
  34. /// 将HotUpdateScene.unity打入scene包.
  35. /// </summary>
  36. /// <param name="tempDir"></param>
  37. /// <param name="outputDir"></param>
  38. /// <param name="target"></param>
  39. private static void BuildAssetBundles(string tempDir, string outputDir, BuildTarget target)
  40. {
  41. Directory.CreateDirectory(tempDir);
  42. Directory.CreateDirectory(outputDir);
  43. if (Directory.Exists(YooAssetCodeDll))
  44. {
  45. EditorTools.DeleteDirectory(YooAssetCodeDll);
  46. }
  47. Directory.CreateDirectory(YooAssetCodeDll);
  48. //step 1
  49. CompileDllCommand.CompileDll(target);
  50. //step 2
  51. PrebuildCommand.GenerateAll();
  52. //step 3 copy
  53. ET.BuildEditor.BuildModelAndHotfix();
  54. //hotfix.dll不使用默认的打包,ET里面加了些骚操作
  55. // List<string> notSceneAssets = new List<string>();
  56. /*string hotfixDllSrcDir = SettingsUtil.GetHotUpdateDllsOutputDirByTarget(target);
  57. foreach (var dll in SettingsUtil.HotUpdateAssemblyFiles)
  58. {
  59. string dllPath = $"{hotfixDllSrcDir}/{dll}";
  60. string dllBytesPath = $"{YooAssetCodeDll}/{dll}.bytes";
  61. File.Copy(dllPath, dllBytesPath, true);
  62. // notSceneAssets.Add(dllBytesPath);
  63. Debug.Log($"[BuildAssetBundles] copy hotfix dll {dllPath} -> {dllBytesPath}");
  64. }*/
  65. //step 4
  66. string aotDllDir = SettingsUtil.GetAssembliesPostIl2CppStripDir(target);
  67. ConfigStringList manifest = AssetDatabase.LoadAssetAtPath("Assets/Res/Config/HotUpdateAOTDlls.asset", typeof(ConfigStringList)) as ConfigStringList;
  68. if (manifest == null)
  69. {
  70. throw new Exception($"resource asset:{nameof(ConfigStringList)} 配置不存在,请在Resources目录下创建");
  71. }
  72. List<string> AOTMetaAssemblies= (manifest.List?? Array.Empty<string>()).ToList();
  73. foreach (var dll in AOTMetaAssemblies)
  74. {
  75. string dllPath = $"{aotDllDir}/{dll}";
  76. if (!File.Exists(dllPath))
  77. {
  78. Debug.LogError($"ab中添加AOT补充元数据dll:{dllPath} 时发生错误,文件不存在。裁剪后的AOT dll在BuildPlayer时才能生成,因此需要你先构建一次游戏App后再打包。");
  79. continue;
  80. }
  81. string dllBytesPath = $"{YooAssetCodeDll}/{dll}.bytes";
  82. File.Copy(dllPath, dllBytesPath, true);
  83. // notSceneAssets.Add(dllBytesPath);
  84. Debug.Log($"[BuildAssetBundles] copy AOT dll {dllPath} -> {dllBytesPath}");
  85. }
  86. // string testPrefab = $"{Application.dataPath}/Prefabs/HotUpdatePrefab.prefab";
  87. // notSceneAssets.Add(testPrefab);
  88. // AssetDatabase.Refresh(ImportAssetOptions.ForceUpdate);
  89. //
  90. // List<AssetBundleBuild> abs = new List<AssetBundleBuild>();
  91. // AssetBundleBuild notSceneAb = new AssetBundleBuild
  92. // {
  93. // assetBundleName = "common",
  94. // assetNames = notSceneAssets.Select(s => ToRelativeAssetPath(s)).ToArray(),
  95. // };
  96. // abs.Add(notSceneAb);
  97. //
  98. // UnityEditor.BuildPipeline.BuildAssetBundles(outputDir, abs.ToArray(), BuildAssetBundleOptions.None, target);
  99. //
  100. // AssetDatabase.Refresh(ImportAssetOptions.ForceUpdate);
  101. //
  102. // string streamingAssetPathDst = $"{Application.streamingAssetsPath}";
  103. // Directory.CreateDirectory(streamingAssetPathDst);
  104. //
  105. // foreach (var ab in abs)
  106. // {
  107. // AssetDatabase.CopyAsset(ToRelativeAssetPath($"{outputDir}/{ab.assetBundleName}"),
  108. // ToRelativeAssetPath($"{streamingAssetPathDst}/{ab.assetBundleName}"));
  109. // }
  110. }
  111. public static void BuildAssetBundleByTarget(BuildTarget target)
  112. {
  113. BuildAssetBundles(GetAssetBundleTempDirByTarget(target), GetAssetBundleOutputDirByTarget(target), target);
  114. }
  115. [MenuItem("HybridCLR/CollectorDll/ActiveBuildTarget")]
  116. public static void BuildSceneAssetBundleActiveBuildTarget()
  117. {
  118. BuildAssetBundleByTarget(EditorUserBuildSettings.activeBuildTarget);
  119. }
  120. // [MenuItem("HybridCLR/CollectorDll/Win64")]
  121. // public static void BuildSceneAssetBundleWin64()
  122. // {
  123. // var target = BuildTarget.StandaloneWindows64;
  124. // BuildAssetBundleByTarget(target);
  125. // }
  126. //
  127. // [MenuItem("HybridCLR/CollectorDll/Win32")]
  128. // public static void BuildSceneAssetBundleWin32()
  129. // {
  130. // var target = BuildTarget.StandaloneWindows;
  131. // BuildAssetBundleByTarget(target);
  132. // }
  133. //
  134. // [MenuItem("HybridCLR/CollectorDll/Android")]
  135. // public static void BuildSceneAssetBundleAndroid()
  136. // {
  137. // var target = BuildTarget.Android;
  138. // BuildAssetBundleByTarget(target);
  139. // }
  140. //
  141. // [MenuItem("HybridCLR/CollectorDll/IOS")]
  142. // public static void BuildSceneAssetBundleIOS()
  143. // {
  144. // var target = BuildTarget.iOS;
  145. // BuildAssetBundleByTarget(target);
  146. // }
  147. }
  148. }