-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAssetBundleAnalyzer.cs
273 lines (229 loc) · 8.67 KB
/
AssetBundleAnalyzer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
using System.IO;
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
public class AssetBundleAnalyzer : EditorWindow
{
private struct StatData
{
public string typeName;
public string objName;
public int size;
}
private class StatDataComparer : IComparer<StatData>
{
Dictionary<string, int> _typeSizeMap;
public StatDataComparer(Dictionary<string, int> typeSizeMap)
{
_typeSizeMap = typeSizeMap;
}
public int Compare(StatData stat1, StatData stat2)
{
int typeSize1 = _typeSizeMap[stat1.typeName];
int typeSize2 = _typeSizeMap[stat2.typeName];
int stringCompare = stat1.typeName.CompareTo(stat2.typeName);
if (typeSize1 > typeSize2)
{
return -1;
}
else if (typeSize1 < typeSize2)
{
return +1;
}
else if (stringCompare != 0)
{
return stringCompare;
}
else if (stat1.size > stat2.size)
{
return -1;
}
else if (stat1.size < stat2.size)
{
return +1;
}
else
{
return 0;
}
}
}
private Vector2 scrollPosition = Vector2.zero;
private bool compressed = false;
private BuildTarget buildTarget = EditorUserBuildSettings.activeBuildTarget;
private string outputPath = "";
private string selectedPath = "";
private Object analyzedObject = null;
private List<StatData> statistics = new List<StatData>();
private Dictionary<string, int> typeSizeMap = new Dictionary<string, int>();
private Dictionary<string, bool> typeStatusMap = new Dictionary<string, bool>();
[MenuItem("Tools/Analyze Asset Bundle")]
public static void ShowWindow()
{
EditorWindow.GetWindow(typeof(AssetBundleAnalyzer));
}
void OnGUI()
{
Object currentObject = null;
string assetPath = "";
if (Selection.activeObject == null)
return;
assetPath = AssetDatabase.GetAssetPath(Selection.activeObject);
if (assetPath == "" || assetPath == null)
return;
assetPath = Path.GetFullPath(assetPath);
if (assetPath.Contains(Path.GetFullPath(Application.streamingAssetsPath)) && !assetPath.EndsWith(".manifest"))
{
currentObject = Selection.activeObject;
}
GUILayout.Label("Asset bundle to analyze", EditorStyles.boldLabel);
if (currentObject != null)
{
FileInfo file = new FileInfo(assetPath);
GUILayout.Label(" file: " + assetPath);
GUILayout.Label(" size: " + file.Length / 1024 + " Kb");
}
else
{
GUILayout.Label(" file: None (select in project)");
GUILayout.Label(" size: 0 Kb");
}
GUILayout.Label("Settings", EditorStyles.boldLabel);
compressed = EditorGUILayout.Toggle(" Compress", compressed);
buildTarget = (BuildTarget)EditorGUILayout.EnumPopup(" Build Target", buildTarget);
EditorGUILayout.BeginHorizontal();
{
selectedPath = EditorGUILayout.TextField(" Output path: ", selectedPath);
if (GUILayout.Button("select", GUILayout.Width(50)))
{
selectedPath = EditorUtility.SaveFolderPanel("Select output directory", "", selectedPath);
}
outputPath = selectedPath + "/.analyze";
}
EditorGUILayout.EndHorizontal();
EditorGUILayout.Space();
if (GUILayout.Button("analyze", GUILayout.Width(100)) && currentObject != null)
{
if (outputPath.Length == 0)
{
Debug.LogError("Please select valid output path");
return;
}
try
{
if (Directory.Exists(outputPath))
{
Directory.Delete(outputPath, true);
}
}
finally
{
Directory.CreateDirectory(outputPath);
}
if (!Directory.Exists(outputPath))
{
Debug.LogError("Please select valid output path");
return;
}
analyzeAssetBundle(currentObject, buildTarget);
}
if (analyzedObject != currentObject)
{
statistics.Clear();
analyzedObject = null;
}
if (analyzedObject != null)
{
scrollPosition = EditorGUILayout.BeginScrollView(scrollPosition);
{
string curType = "";
foreach (StatData data in statistics)
{
if (curType != data.typeName)
{
EditorGUILayout.BeginHorizontal();
{
typeStatusMap[data.typeName] = EditorGUILayout.Foldout(typeStatusMap[data.typeName], data.typeName);
GUI.skin.label.alignment = TextAnchor.MiddleRight;
GUI.skin.label.fontStyle = FontStyle.Bold;
GUILayout.Label(typeSizeMap[data.typeName] / 1024 + " Kb");
GUILayout.Space(400);
}
EditorGUILayout.EndHorizontal();
curType = data.typeName;
}
if (typeStatusMap[data.typeName])
{
EditorGUILayout.BeginHorizontal();
{
GUI.skin.label.alignment = TextAnchor.MiddleLeft;
GUI.skin.label.fontStyle = FontStyle.Normal;
GUILayout.Label(" " + data.objName);
GUI.skin.label.alignment = TextAnchor.MiddleRight;
GUILayout.Label(data.size / 1024 + " Kb");
GUILayout.Space(400);
}
EditorGUILayout.EndHorizontal();
}
}
}
EditorGUILayout.EndScrollView();
}
}
private void analyzeAssetBundle(Object obj, BuildTarget buildTarget)
{
typeStatusMap.Clear();
typeSizeMap.Clear();
statistics.Clear();
analyzedObject = obj;
string assetPath = Path.GetFullPath(AssetDatabase.GetAssetPath(obj));
var tBundle = AssetBundle.LoadFromFile(assetPath);
if (tBundle == null)
return;
Object[] loadedObjects = tBundle.LoadAllAssets();
foreach (Object loadedObj in loadedObjects)
{
string directory = outputPath + "/" + loadedObj.GetType().FullName + "/";
if (!Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
}
if (loadedObj.GetType() == typeof(UnityEngine.GameObject))
{
continue;
}
string bundlePath = directory + loadedObj.name.Replace("/", ".") + "." + loadedObj.GetInstanceID() + ".bytes";
BuildPipeline.BuildAssetBundle(loadedObj, null, bundlePath,
compressed ? 0 : BuildAssetBundleOptions.UncompressedAssetBundle,
buildTarget);
if (File.Exists(bundlePath))
{
StatData stat = new StatData();
stat.objName = loadedObj.name;
stat.typeName = loadedObj.GetType().FullName;
FileInfo fileInfo = new FileInfo(bundlePath);
stat.size = (int)fileInfo.Length;
statistics.Add(stat);
}
}
tBundle.Unload(true);
// fill type size map
foreach (StatData data in statistics)
{
if (typeSizeMap.ContainsKey(data.typeName))
{
typeSizeMap[data.typeName] += data.size;
}
else
{
typeSizeMap.Add(data.typeName, data.size);
}
}
// fill type status map
foreach (string typeName in typeSizeMap.Keys)
{
typeStatusMap.Add(typeName, false);
}
statistics.Sort(new StatDataComparer(typeSizeMap));
}
}