-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathAssetTree.cs
93 lines (70 loc) · 1.86 KB
/
AssetTree.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
using System.Collections;
using UnityEditor;
/**
* TreeNode.cs
* Author: Luke Holland (http://lukeholland.me/)
*/
namespace TreeView {
public class AssetTree
{
private TreeNode<AssetData> _root;
public AssetTree()
{
_root = new TreeNode<AssetData>(null);
}
public TreeNode<AssetData> Root { get { return _root; }}
public void Clear()
{
_root.Clear();
}
public void AddAsset(string guid)
{
if(string.IsNullOrEmpty(guid)) return;
TreeNode<AssetData> node = _root;
string assetPath = AssetDatabase.GUIDToAssetPath(guid);
int startIndex = 0, length = assetPath.Length;
while(startIndex<length)
{
int endIndex = assetPath.IndexOf('/',startIndex);
int subLength = endIndex==-1 ? length-startIndex : endIndex-startIndex;
string directory = assetPath.Substring(startIndex,subLength);
AssetData pathNode = new AssetData(endIndex==-1 ? guid : null,directory,assetPath.Substring(0,endIndex==-1 ? length : endIndex),node.Level==0);
TreeNode<AssetData> child = node.FindInChildren(pathNode);
if(child==null) child = node.AddChild(pathNode);
node = child;
startIndex += subLength+1;
}
}
}
public class AssetData : ITreeIMGUIData
{
public readonly string guid;
public readonly string path;
public readonly string fullPath;
public bool isExpanded { get; set; }
public AssetData(string guid, string path, string fullPath, bool isExpanded)
{
this.guid = guid;
this.path = path;
this.fullPath = fullPath;
this.isExpanded = isExpanded;
}
public override string ToString ()
{
return path;
}
public override int GetHashCode ()
{
return path.GetHashCode()+10;
}
public override bool Equals (object obj)
{
AssetData node = obj as AssetData;
return node!=null && node.path==path;
}
public bool Equals(AssetData node)
{
return node.path==path;
}
}
}