YooHelper.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. using System.IO;
  2. using System.Collections.Generic;
  3. namespace YooAsset
  4. {
  5. /// <summary>
  6. /// 资源路径帮助类
  7. /// </summary>
  8. internal static class PathHelper
  9. {
  10. /// <summary>
  11. /// 获取规范化的路径
  12. /// </summary>
  13. public static string GetRegularPath(string path)
  14. {
  15. return path.Replace('\\', '/').Replace("\\", "/"); //替换为Linux路径格式
  16. }
  17. /// <summary>
  18. /// 获取文件所在的目录路径(Linux格式)
  19. /// </summary>
  20. public static string GetDirectory(string filePath)
  21. {
  22. string directory = Path.GetDirectoryName(filePath);
  23. return GetRegularPath(directory);
  24. }
  25. /// <summary>
  26. /// 获取基于流文件夹的加载路径
  27. /// </summary>
  28. public static string MakeStreamingLoadPath(string path)
  29. {
  30. return StringUtility.Format("{0}/YooAssets/{1}", UnityEngine.Application.streamingAssetsPath, path);
  31. }
  32. /// <summary>
  33. /// 获取基于沙盒文件夹的加载路径
  34. /// </summary>
  35. public static string MakePersistentLoadPath(string path)
  36. {
  37. string root = MakePersistentRootPath();
  38. return StringUtility.Format("{0}/{1}", root, path);
  39. }
  40. /// <summary>
  41. /// 获取沙盒文件夹路径
  42. /// </summary>
  43. public static string MakePersistentRootPath()
  44. {
  45. #if UNITY_EDITOR
  46. // 注意:为了方便调试查看,编辑器下把存储目录放到项目里
  47. string projectPath = GetDirectory(UnityEngine.Application.dataPath);
  48. return StringUtility.Format("{0}/Sandbox", projectPath);
  49. #else
  50. return StringUtility.Format("{0}/Sandbox", UnityEngine.Application.persistentDataPath);
  51. #endif
  52. }
  53. /// <summary>
  54. /// 获取WWW加载本地资源的路径
  55. /// </summary>
  56. public static string ConvertToWWWPath(string path)
  57. {
  58. #if UNITY_EDITOR
  59. return StringUtility.Format("file:///{0}", path);
  60. #elif UNITY_IPHONE
  61. return StringUtility.Format("file://{0}", path);
  62. #elif UNITY_ANDROID
  63. return path;
  64. #elif UNITY_STANDALONE
  65. return StringUtility.Format("file:///{0}", path);
  66. #elif UNITY_WEBGL
  67. return path;
  68. #endif
  69. }
  70. }
  71. /// <summary>
  72. /// 沙盒帮助类
  73. /// </summary>
  74. internal static class SandboxHelper
  75. {
  76. private const string CacheFolderName = "CacheFiles";
  77. /// <summary>
  78. /// 删除沙盒总目录
  79. /// </summary>
  80. public static void DeleteSandbox()
  81. {
  82. string directoryPath = PathHelper.MakePersistentLoadPath(string.Empty);
  83. if (Directory.Exists(directoryPath))
  84. Directory.Delete(directoryPath, true);
  85. }
  86. /// <summary>
  87. /// 删除沙盒内的缓存文件夹
  88. /// </summary>
  89. public static void DeleteCacheFolder()
  90. {
  91. string directoryPath = GetCacheFolderPath();
  92. if (Directory.Exists(directoryPath))
  93. Directory.Delete(directoryPath, true);
  94. }
  95. /// <summary>
  96. /// 获取缓存文件夹路径
  97. /// </summary>
  98. public static string GetCacheFolderPath()
  99. {
  100. return PathHelper.MakePersistentLoadPath(CacheFolderName);
  101. }
  102. }
  103. /// <summary>
  104. /// 补丁包帮助类
  105. /// </summary>
  106. internal static class PatchHelper
  107. {
  108. /// <summary>
  109. /// 获取资源信息列表
  110. /// </summary>
  111. public static AssetInfo[] GetAssetsInfoByTags(PatchManifest patchManifest, string[] tags)
  112. {
  113. List<AssetInfo> result = new List<AssetInfo>(100);
  114. foreach (var patchAsset in patchManifest.AssetList)
  115. {
  116. if(patchAsset.HasTag(tags))
  117. {
  118. AssetInfo assetInfo = new AssetInfo(patchAsset);
  119. result.Add(assetInfo);
  120. }
  121. }
  122. return result.ToArray();
  123. }
  124. /// <summary>
  125. /// 资源解压相关
  126. /// </summary>
  127. public static List<BundleInfo> ConvertToUnpackList(List<PatchBundle> unpackList)
  128. {
  129. List<BundleInfo> result = new List<BundleInfo>(unpackList.Count);
  130. foreach (var patchBundle in unpackList)
  131. {
  132. var bundleInfo = ConvertToUnpackInfo(patchBundle);
  133. result.Add(bundleInfo);
  134. }
  135. return result;
  136. }
  137. public static BundleInfo ConvertToUnpackInfo(PatchBundle patchBundle)
  138. {
  139. // 注意:我们把流加载路径指定为远端下载地址
  140. string streamingPath = PathHelper.ConvertToWWWPath(patchBundle.StreamingFilePath);
  141. BundleInfo bundleInfo = new BundleInfo(patchBundle, BundleInfo.ELoadMode.LoadFromStreaming, streamingPath, streamingPath);
  142. return bundleInfo;
  143. }
  144. }
  145. }