-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNodeGraphData.cs
90 lines (72 loc) · 1.99 KB
/
NodeGraphData.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
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
using System.Linq;
#if UNITY_EDITOR
using UnityEditor;
#endif
public class NodeGraphData : ScriptableObject
{
[System.Serializable]
public class NodeData
{
public int id;
public UnityEngine.Object nodeObject;
public Vector2 graphPosition;
public bool isExpanded;
public override bool Equals(object obj)
{
var nodeData = obj as NodeData;
if (nodeData == null)
return false;
return nodeData.id == id;
}
public override int GetHashCode()
{
return id.GetHashCode();
}
}
[SerializeField]/* [HideInInspector] */ List<NodeData> nodes = new List<NodeData>();
public IEnumerable<NodeData> Nodes { get { return nodes; } }
public int NodeCount { get { return nodes.Count; } }
#if UNITY_EDITOR
UnityEngine.Object graphObject;
public UnityEngine.Object GraphObject
{
get
{
if (graphObject == null)
graphObject = AssetDatabase.LoadMainAssetAtPath(AssetDatabase.GetAssetPath(this));
return graphObject;
}
}
public UnityEngine.Object CreateNode(Type nodeType, Vector2 position, string name)
{
Undo.RecordObject(this, "Added node to graph.");
var node = ScriptableObject.CreateInstance(nodeType);
node.name = name;
//node.hideFlags = HideFlags.HideInHierarchy;
nodes.Add(new NodeData() { id = GetUniqueNodeID(), nodeObject = node, graphPosition = position });
AssetDatabase.AddObjectToAsset(node, GraphObject);
EditorUtility.SetDirty(GraphObject);
AssetDatabase.SaveAssets();
return node;
}
int GetUniqueNodeID()
{
return Nodes.Count() == 0 ? 0 : Nodes.Max(x => x.id) + 1;
}
public void DeleteNode(UnityEngine.Object node)
{
if (nodes.Exists(x => x.nodeObject == node))
{
Undo.RecordObjects(new UnityEngine.Object[] { GraphObject, node, this }, "Removed node from graph.");
nodes.RemoveAll(x => x.nodeObject == node);
Undo.DestroyObjectImmediate(node);
EditorUtility.SetDirty(GraphObject);
AssetDatabase.SaveAssets();
}
}
#endif
}