Improve full graph view
This commit is contained in:
parent
308a6a1ee7
commit
249e88850a
@ -29,10 +29,6 @@ namespace NanoBrain {
|
|||||||
const float minZoom = 0.5f;
|
const float minZoom = 0.5f;
|
||||||
const float maxZoom = 2.0f;
|
const float maxZoom = 2.0f;
|
||||||
|
|
||||||
// Vector2 dragStart;
|
|
||||||
// bool draggingNode = false;
|
|
||||||
// int draggingNodeId = -1;
|
|
||||||
|
|
||||||
private readonly System.Type acceptedType = typeof(ClusterPrefab);
|
private readonly System.Type acceptedType = typeof(ClusterPrefab);
|
||||||
|
|
||||||
[MenuItem("Window/Brain Viewer")]
|
[MenuItem("Window/Brain Viewer")]
|
||||||
@ -42,14 +38,10 @@ namespace NanoBrain {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void OnEnable() {
|
void OnEnable() {
|
||||||
// if (nodes.Count == 0)
|
|
||||||
// CreateSampleGraph();
|
|
||||||
|
|
||||||
|
|
||||||
// Register callback so window updates when selection changes
|
// Register callback so window updates when selection changes
|
||||||
Selection.selectionChanged += OnSelectionChanged;
|
Selection.selectionChanged += OnSelectionChanged;
|
||||||
RefreshSelection();
|
RefreshSelection();
|
||||||
ComputeLeftToRightLayout();
|
ComputeLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnDisable() {
|
private void OnDisable() {
|
||||||
@ -58,7 +50,7 @@ namespace NanoBrain {
|
|||||||
|
|
||||||
private void OnSelectionChanged() {
|
private void OnSelectionChanged() {
|
||||||
RefreshSelection();
|
RefreshSelection();
|
||||||
ComputeLeftToRightLayout();
|
ComputeLayout();
|
||||||
Repaint();
|
Repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,27 +78,6 @@ namespace NanoBrain {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// void CreateSampleGraph() {
|
|
||||||
// nodes.Clear();
|
|
||||||
// edges.Clear();
|
|
||||||
|
|
||||||
// nodes.Add(new DagNode() { id = 0, title = "In1" });
|
|
||||||
// nodes.Add(new DagNode() { id = 1, title = "In2" });
|
|
||||||
// nodes.Add(new DagNode() { id = 2, title = "A" });
|
|
||||||
// nodes.Add(new DagNode() { id = 3, title = "B" });
|
|
||||||
// nodes.Add(new DagNode() { id = 4, title = "C" });
|
|
||||||
// nodes.Add(new DagNode() { id = 5, title = "Out1" });
|
|
||||||
// nodes.Add(new DagNode() { id = 6, title = "Out2" });
|
|
||||||
|
|
||||||
// edges.Add(new DagEdge() { fromId = 0, toId = 2 });
|
|
||||||
// edges.Add(new DagEdge() { fromId = 1, toId = 2 });
|
|
||||||
// edges.Add(new DagEdge() { fromId = 2, toId = 3 });
|
|
||||||
// edges.Add(new DagEdge() { fromId = 2, toId = 4 });
|
|
||||||
// edges.Add(new DagEdge() { fromId = 3, toId = 5 });
|
|
||||||
// edges.Add(new DagEdge() { fromId = 4, toId = 6 });
|
|
||||||
// }
|
|
||||||
|
|
||||||
void OnGUI() {
|
void OnGUI() {
|
||||||
HandleInput();
|
HandleInput();
|
||||||
|
|
||||||
@ -132,7 +103,8 @@ namespace NanoBrain {
|
|||||||
foreach (DagEdge e in edges) {
|
foreach (DagEdge e in edges) {
|
||||||
DagNode from = GetNodeById(e.fromId);
|
DagNode from = GetNodeById(e.fromId);
|
||||||
DagNode to = GetNodeById(e.toId);
|
DagNode to = GetNodeById(e.toId);
|
||||||
if (from == null || to == null) continue;
|
if (from == null || to == null)
|
||||||
|
continue;
|
||||||
DrawEdgeCircleNodes(from, to);
|
DrawEdgeCircleNodes(from, to);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,13 +113,6 @@ namespace NanoBrain {
|
|||||||
DrawNucleus(n);
|
DrawNucleus(n);
|
||||||
|
|
||||||
GUI.matrix = oldMatrix;
|
GUI.matrix = oldMatrix;
|
||||||
|
|
||||||
// Footer toolbar
|
|
||||||
GUILayout.FlexibleSpace();
|
|
||||||
EditorGUILayout.BeginHorizontal(EditorStyles.toolbar);
|
|
||||||
if (GUILayout.Button("Fit", EditorStyles.toolbarButton)) FitToView();
|
|
||||||
if (GUILayout.Button("Layout LR", EditorStyles.toolbarButton)) ComputeLeftToRightLayout();
|
|
||||||
EditorGUILayout.EndHorizontal();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void HandleInput() {
|
void HandleInput() {
|
||||||
@ -171,22 +136,6 @@ namespace NanoBrain {
|
|||||||
}
|
}
|
||||||
|
|
||||||
DagNode GetNodeById(int id) => nodes.FirstOrDefault(x => x.id == id);
|
DagNode GetNodeById(int id) => nodes.FirstOrDefault(x => x.id == id);
|
||||||
List<DagEdge> GetIncomingEdges(DagNode node) {
|
|
||||||
List<DagEdge> incoming = new();
|
|
||||||
foreach (DagEdge e in edges) {
|
|
||||||
if (e.toId == node.id)
|
|
||||||
incoming.Add(e);
|
|
||||||
}
|
|
||||||
return incoming;
|
|
||||||
}
|
|
||||||
List<DagEdge> GetOutgoingEdges(DagNode node) {
|
|
||||||
List<DagEdge> outgoing = new();
|
|
||||||
foreach (DagEdge e in edges) {
|
|
||||||
if (e.fromId == node.id)
|
|
||||||
outgoing.Add(e);
|
|
||||||
}
|
|
||||||
return outgoing;
|
|
||||||
}
|
|
||||||
|
|
||||||
void DrawNucleus(DagNode n) {
|
void DrawNucleus(DagNode n) {
|
||||||
Vector3 position = n.position;
|
Vector3 position = n.position;
|
||||||
@ -194,11 +143,6 @@ namespace NanoBrain {
|
|||||||
Handles.color = Color.white * 0.9f;
|
Handles.color = Color.white * 0.9f;
|
||||||
Handles.DrawSolidDisc(n.position, Vector3.forward, n.radius);
|
Handles.DrawSolidDisc(n.position, Vector3.forward, n.radius);
|
||||||
|
|
||||||
if (GetIncomingEdges(n).Count == 0)
|
|
||||||
DrawArrowHead(n.position - new Vector2(n.radius + 10, 0), n.position - new Vector2(n.radius + 5, 0), 10f / zoom, 12f / zoom, Color.white);
|
|
||||||
if (GetOutgoingEdges(n).Count == 0)
|
|
||||||
DrawArrowHead(n.position + new Vector2(n.radius + 10, 0), n.position + new Vector2(n.radius + 15, 0), 10f / zoom, 12f / zoom, Color.white);
|
|
||||||
|
|
||||||
Handles.color = Color.white;
|
Handles.color = Color.white;
|
||||||
GUIStyle style = new(EditorStyles.label) {
|
GUIStyle style = new(EditorStyles.label) {
|
||||||
alignment = TextAnchor.UpperCenter,
|
alignment = TextAnchor.UpperCenter,
|
||||||
@ -216,109 +160,114 @@ namespace NanoBrain {
|
|||||||
|
|
||||||
Handles.color = Color.white * 0.9f;
|
Handles.color = Color.white * 0.9f;
|
||||||
Handles.DrawLine(from.position, to.position);
|
Handles.DrawLine(from.position, to.position);
|
||||||
|
|
||||||
// Vector2 dir = (b - a).normalized;
|
|
||||||
// Vector2 start = a + dir * from.radius;
|
|
||||||
// Vector2 end = b - dir * to.radius;
|
|
||||||
|
|
||||||
//DrawArrowHead(end - dir * 2f, end, 10f / zoom, 12f / zoom, Color.white);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void DrawArrowHead(Vector2 from, Vector2 to, float headWidth, float headLength, Color color) {
|
// Right-to-left layered layout (sources on the right, sinks on the left)
|
||||||
Vector2 dir = (to - from).normalized;
|
void ComputeLayout() {
|
||||||
if (dir == Vector2.zero) return;
|
|
||||||
Vector2 right = new Vector2(-dir.y, dir.x);
|
|
||||||
|
|
||||||
Vector3 p1 = to;
|
|
||||||
Vector3 p2 = to - dir * headLength + right * headWidth * 0.5f;
|
|
||||||
Vector3 p3 = to - dir * headLength - right * headWidth * 0.5f;
|
|
||||||
|
|
||||||
Handles.color = color;
|
|
||||||
Handles.DrawAAConvexPolygon(p1, p2, p3);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Left-to-right layered layout (sources on the left, sinks on the right)
|
|
||||||
void ComputeLeftToRightLayout() {
|
|
||||||
// build adjacency and indegree
|
// build adjacency and indegree
|
||||||
var adj = nodes.ToDictionary(n => n.id, n => new List<int>());
|
Dictionary<int, List<int>> adjacency = nodes.ToDictionary(n => n.id, n => new List<int>());
|
||||||
var indeg = nodes.ToDictionary(n => n.id, n => 0);
|
Dictionary<int, int> indegree = nodes.ToDictionary(n => n.id, n => 0);
|
||||||
foreach (var e in edges) {
|
foreach (DagEdge edge in edges) {
|
||||||
if (!adj.ContainsKey(e.fromId) || !adj.ContainsKey(e.toId)) continue;
|
if (!adjacency.ContainsKey(edge.fromId) || !adjacency.ContainsKey(edge.toId))
|
||||||
adj[e.fromId].Add(e.toId);
|
continue;
|
||||||
indeg[e.toId]++;
|
adjacency[edge.fromId].Add(edge.toId);
|
||||||
|
indegree[edge.toId]++;
|
||||||
|
}
|
||||||
|
Dictionary<int, int> outdegree = nodes.ToDictionary(node => node.id, n => 0);
|
||||||
|
foreach (DagEdge edge in edges) {
|
||||||
|
if (!adjacency.ContainsKey(edge.fromId) || !adjacency.ContainsKey(edge.toId))
|
||||||
|
continue;
|
||||||
|
adjacency[edge.fromId].Add(edge.toId);
|
||||||
|
outdegree[edge.fromId]++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Kahn's algorithm to compute topological layers (horizontal layers)
|
// Kahn's algorithm to compute topological layers (horizontal layers)
|
||||||
Dictionary<int, int> layer = new();
|
// build parent list (reverse adjacency) and parentIndegree = number of children each parent has
|
||||||
Queue<int> q = new(indeg.Where(kv => kv.Value == 0).Select(kv => kv.Key));
|
Dictionary<int, List<int>> parents = nodes.ToDictionary(n => n.id, _ => new List<int>());
|
||||||
foreach (var id in q) layer[id] = 0;
|
Dictionary<int, int> childCount = nodes.ToDictionary(n => n.id, _ => 0);
|
||||||
|
foreach (DagEdge edge in edges) {
|
||||||
|
if (!adjacency.ContainsKey(edge.fromId) || !adjacency.ContainsKey(edge.toId)) continue;
|
||||||
|
adjacency[edge.fromId].Add(edge.toId);
|
||||||
|
parents[edge.toId].Add(edge.fromId); // parent of 'to' is 'from'
|
||||||
|
childCount[edge.fromId]++; // outdegree
|
||||||
|
}
|
||||||
|
|
||||||
while (q.Count > 0) {
|
Dictionary<int, int> layer = new();
|
||||||
int u = q.Dequeue();
|
Queue<int> queue = new(outdegree.Where(kv => kv.Value == 0).Select(kv => kv.Key));
|
||||||
|
foreach (int id in queue)
|
||||||
|
layer[id] = 0;
|
||||||
|
|
||||||
|
// process parents (reverse traversal)
|
||||||
|
while (queue.Count > 0) {
|
||||||
|
int u = queue.Dequeue();
|
||||||
int l = layer[u];
|
int l = layer[u];
|
||||||
foreach (var v in adj[u]) {
|
foreach (int p in parents[u]) {
|
||||||
// prefer placing v at least one layer after u
|
if (!layer.ContainsKey(p) || layer[p] < l + 1)
|
||||||
if (!layer.ContainsKey(v) || layer[v] < l + 1) layer[v] = l + 1;
|
layer[p] = l + 1;
|
||||||
indeg[v]--;
|
childCount[p]--; // decrement remaining unprocessed children
|
||||||
if (indeg[v] == 0) q.Enqueue(v);
|
if (childCount[p] == 0)
|
||||||
|
queue.Enqueue(p);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Any unreachable nodes -> assign next layers
|
// Any unreachable nodes -> assign next layers
|
||||||
int maxLayer = layer.Count > 0 ? layer.Values.Max() : 0;
|
int maxLayer = layer.Count > 0 ? layer.Values.Max() : 0;
|
||||||
foreach (var n in nodes) {
|
foreach (DagNode node in nodes) {
|
||||||
if (!layer.ContainsKey(n.id)) {
|
if (!layer.ContainsKey(node.id)) {
|
||||||
maxLayer++;
|
maxLayer++;
|
||||||
layer[n.id] = maxLayer;
|
layer[node.id] = maxLayer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Group nodes by layer (left to right)
|
// Group nodes by layer (left to right)
|
||||||
var layers = layer.GroupBy(kv => kv.Value).OrderBy(g => g.Key).Select(g => g.Select(x => x.Key).ToList()).ToList();
|
List<List<int>> layers = layer.GroupBy(kv => kv.Value).OrderBy(g => g.Key).Select(g => g.Select(x => x.Key).ToList()).ToList();
|
||||||
|
|
||||||
// Layout parameters (horizontal spacing drives left->right)
|
// Same code without using Linq
|
||||||
float hSpacing = 150f;
|
// Build layers dictionary: layerIndex -> List<int> nodeIds
|
||||||
|
// Dictionary<int, List<int>> layersDict = new();
|
||||||
|
// foreach (KeyValuePair<int, int> kv in layer) {
|
||||||
|
// int nodeId = kv.Key;
|
||||||
|
// int layerIndex = kv.Value;
|
||||||
|
// if (!layersDict.TryGetValue(layerIndex, out List<int> list)) {
|
||||||
|
// list = new List<int>();
|
||||||
|
// layersDict[layerIndex] = list;
|
||||||
|
// }
|
||||||
|
// list.Add(nodeId);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// // Determine sorted layer indices
|
||||||
|
// List<int> layerIndices = new(layersDict.Keys);
|
||||||
|
// layerIndices.Sort(); // ascending order
|
||||||
|
|
||||||
|
// // Build final List<List<int>> in sorted order
|
||||||
|
// List<List<int>> layers = new();
|
||||||
|
// foreach (int idx in layerIndices) {
|
||||||
|
// layers.Add(layersDict[idx]);
|
||||||
|
// }
|
||||||
|
|
||||||
|
float hSpacing = 100f;
|
||||||
float vSpacing = 100f;
|
float vSpacing = 100f;
|
||||||
|
|
||||||
// Place nodes: x increases with layer index, y spaced within layer
|
// Place nodes: x increases with layer index, y spaced within layer
|
||||||
for (int li = 0; li < layers.Count; li++) {
|
for (int layerIx = 0; layerIx < layers.Count; layerIx++) {
|
||||||
var lst = layers[li];
|
List<int> nodeList = layers[layerIx];
|
||||||
float totalHeight = (lst.Count - 1) * vSpacing;
|
float totalHeight = (nodeList.Count - 1) * vSpacing;
|
||||||
for (int i = 0; i < lst.Count; i++) {
|
for (int i = 0; i < nodeList.Count; i++) {
|
||||||
int id = lst[i];
|
int index = nodeList[i];
|
||||||
var n = GetNodeById(id);
|
DagNode node = GetNodeById(index);
|
||||||
if (n == null) continue;
|
if (node == null)
|
||||||
float x = hSpacing + li * hSpacing;
|
continue;
|
||||||
|
float x = hSpacing + layerIx * hSpacing;
|
||||||
float y = 400 - totalHeight / 2f + i * vSpacing;
|
float y = 400 - totalHeight / 2f + i * vSpacing;
|
||||||
// Debug.Log($"({li}, {i}) -> {x}, {y}");
|
// Debug.Log($"({li}, {i}) -> {x}, {y}");
|
||||||
n.position = new Vector2(x, y);
|
node.position = new Vector2(x, y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Repaint();
|
Repaint();
|
||||||
}
|
}
|
||||||
|
|
||||||
void FitToView() {
|
|
||||||
if (nodes.Count == 0) return;
|
|
||||||
// compute bounds including radii
|
|
||||||
Rect bounds = new Rect(nodes[0].position - Vector2.one * nodes[0].radius, Vector2.one * nodes[0].radius * 2f);
|
|
||||||
foreach (var n in nodes)
|
|
||||||
bounds = RectUnion(bounds, new Rect(n.position - Vector2.one * n.radius, Vector2.one * n.radius * 2f));
|
|
||||||
|
|
||||||
// center graph at origin (0,0) then set pan so it appears centered in window
|
|
||||||
Vector2 graphCenter = bounds.center;
|
|
||||||
// move nodes so center is at origin
|
|
||||||
for (int i = 0; i < nodes.Count; i++)
|
|
||||||
nodes[i].position -= graphCenter;
|
|
||||||
|
|
||||||
// reset pan/zoom so centered
|
|
||||||
pan = Vector2.zero;
|
|
||||||
zoom = 1.0f;
|
|
||||||
Repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static Rect RectUnion(Rect a, Rect b) {
|
static Rect RectUnion(Rect a, Rect b) {
|
||||||
float xMin = Mathf.Min(a.xMin, b.xMin);
|
float xMin = Mathf.Min(a.xMin, b.xMin);
|
||||||
float xMax = Mathf.Max(a.xMax, b.xMax);
|
float xMax = Mathf.Max(a.xMax, b.xMax);
|
||||||
@ -327,21 +276,6 @@ namespace NanoBrain {
|
|||||||
return Rect.MinMaxRect(xMin, yMin, xMax, yMax);
|
return Rect.MinMaxRect(xMin, yMin, xMax, yMax);
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector2 ScreenToGraph_old(Vector2 screenPos) {
|
|
||||||
Vector2 origin = new Vector2(position.width / 2, position.height / 2);
|
|
||||||
// invert the GUI.matrix transform (approx for current simple transforms)
|
|
||||||
return (screenPos - (origin + pan)) / zoom + origin * (1 - 1 / zoom);
|
|
||||||
}
|
|
||||||
Vector2 ScreenToGraph(Vector2 screenPos) {
|
|
||||||
Vector2 windowCenter = new Vector2(position.width / 2f, position.height / 2f);
|
|
||||||
Rect bounds = GetGraphBounds();
|
|
||||||
Vector2 graphCenter = bounds.center;
|
|
||||||
Vector2 autoPan = -graphCenter;
|
|
||||||
// inverse of: screen -> translate by -(windowCenter+autoPan+pan), scale by 1/zoom, translate by windowCenter
|
|
||||||
return (screenPos - (windowCenter + autoPan + pan)) / zoom + windowCenter;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Rect GetGraphBounds() {
|
Rect GetGraphBounds() {
|
||||||
if (nodes == null || nodes.Count == 0) return new Rect(Vector2.zero, Vector2.one);
|
if (nodes == null || nodes.Count == 0) return new Rect(Vector2.zero, Vector2.one);
|
||||||
Rect bounds = new(
|
Rect bounds = new(
|
||||||
@ -352,18 +286,6 @@ namespace NanoBrain {
|
|||||||
new Rect(n.position - Vector2.one * n.radius, 2f * n.radius * Vector2.one));
|
new Rect(n.position - Vector2.one * n.radius, 2f * n.radius * Vector2.one));
|
||||||
return bounds;
|
return bounds;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int HitTestNode(Vector2 graphPos) {
|
|
||||||
// returns node id under point or -1
|
|
||||||
for (int i = nodes.Count - 1; i >= 0; i--) {
|
|
||||||
var n = nodes[i];
|
|
||||||
if ((graphPos - n.position).sqrMagnitude <= n.radius * n.radius) return n.id;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@ -466,15 +466,14 @@ namespace NanoBrain {
|
|||||||
style.alignment = TextAnchor.UpperCenter;
|
style.alignment = TextAnchor.UpperCenter;
|
||||||
|
|
||||||
if (nucleus.parent != null && nucleus.parent is Cluster parentCluster1) {
|
if (nucleus.parent != null && nucleus.parent is Cluster parentCluster1) {
|
||||||
|
// This neuron is part of another cluster
|
||||||
parentCluster1.name ??= "";
|
parentCluster1.name ??= "";
|
||||||
string baseName = "";
|
string baseName = "";
|
||||||
if (parentCluster1 != currentNucleus.parent) {
|
|
||||||
int colonPos = parentCluster1.name.IndexOf(":");
|
int colonPos = parentCluster1.name.IndexOf(":");
|
||||||
if (colonPos > 0 && colonPos < parentCluster1.name.Length - 2)
|
if (colonPos > 0 && colonPos < parentCluster1.name.Length - 2)
|
||||||
baseName = parentCluster1.name[..colonPos] + ".";
|
baseName = parentCluster1.name[..colonPos] + ".";
|
||||||
else
|
else
|
||||||
baseName = parentCluster1.name + ".";
|
baseName = parentCluster1.name + ".";
|
||||||
}
|
|
||||||
// if (colonPos > 0 && colonPos < parentCluster1.name.Length - 2) {
|
// if (colonPos > 0 && colonPos < parentCluster1.name.Length - 2) {
|
||||||
// // if it is an array, we should not show the :0 of the first element
|
// // if it is an array, we should not show the :0 of the first element
|
||||||
// //baseName = baseName[..colonPos];
|
// //baseName = baseName[..colonPos];
|
||||||
@ -549,13 +548,13 @@ namespace NanoBrain {
|
|||||||
else
|
else
|
||||||
expandArray = false;
|
expandArray = false;
|
||||||
}
|
}
|
||||||
else if (nucleus.parent != this.currentNucleus.parent) {
|
// else if (nucleus.parent != this.currentNucleus.parent) {
|
||||||
// We go to a different cluster
|
// // We go to a different cluster
|
||||||
// select the cluster, not the neuron in the cluster
|
// // select the cluster, not the neuron in the cluster
|
||||||
this.currentNucleus = nucleus.parent;
|
// this.currentNucleus = nucleus.parent;
|
||||||
expandArray = false;
|
// expandArray = false;
|
||||||
BuildLayers();
|
// BuildLayers();
|
||||||
}
|
// }
|
||||||
else {
|
else {
|
||||||
this.currentNucleus = nucleus;
|
this.currentNucleus = nucleus;
|
||||||
expandArray = false;
|
expandArray = false;
|
||||||
|
|||||||
@ -1,356 +0,0 @@
|
|||||||
|
|
||||||
using UnityEngine;
|
|
||||||
using UnityEditor;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace NanoBrain {
|
|
||||||
|
|
||||||
// Simple DAG data model
|
|
||||||
// [System.Serializable]
|
|
||||||
// public class DagNode
|
|
||||||
// {
|
|
||||||
// public int id;
|
|
||||||
// public string title;
|
|
||||||
// public Vector2 position;
|
|
||||||
// public float radius = 36f; // circle radius
|
|
||||||
// }
|
|
||||||
|
|
||||||
// [System.Serializable]
|
|
||||||
// public class DagEdge
|
|
||||||
// {
|
|
||||||
// public int fromId;
|
|
||||||
// public int toId;
|
|
||||||
// }
|
|
||||||
|
|
||||||
public class DAGEditorWindow : EditorWindow {
|
|
||||||
List<DagNode> nodes = new List<DagNode>();
|
|
||||||
List<DagEdge> edges = new List<DagEdge>();
|
|
||||||
|
|
||||||
Vector2 pan = Vector2.zero;
|
|
||||||
float zoom = 1.0f;
|
|
||||||
const float minZoom = 0.5f;
|
|
||||||
const float maxZoom = 2.0f;
|
|
||||||
|
|
||||||
GUIStyle labelStyle;
|
|
||||||
int selectedNodeId = -1;
|
|
||||||
|
|
||||||
Vector2 dragStart;
|
|
||||||
bool draggingNode = false;
|
|
||||||
int draggingNodeId = -1;
|
|
||||||
|
|
||||||
[MenuItem("Window/DAG Viewer (LR, Circles)")]
|
|
||||||
public static void ShowWindow() {
|
|
||||||
var w = GetWindow<DAGEditorWindow>("DAG Viewer (LR)");
|
|
||||||
w.minSize = new Vector2(500, 300);
|
|
||||||
}
|
|
||||||
|
|
||||||
void OnEnable() {
|
|
||||||
labelStyle = new GUIStyle(EditorStyles.label);
|
|
||||||
labelStyle.alignment = TextAnchor.MiddleCenter;
|
|
||||||
labelStyle.normal.textColor = Color.white;
|
|
||||||
labelStyle.fontStyle = FontStyle.Bold;
|
|
||||||
|
|
||||||
if (nodes.Count == 0)
|
|
||||||
CreateSampleGraph();
|
|
||||||
|
|
||||||
ComputeLeftToRightLayout();
|
|
||||||
}
|
|
||||||
|
|
||||||
void CreateSampleGraph() {
|
|
||||||
nodes.Clear();
|
|
||||||
edges.Clear();
|
|
||||||
|
|
||||||
nodes.Add(new DagNode() { id = 0, title = "In1" });
|
|
||||||
nodes.Add(new DagNode() { id = 1, title = "In2" });
|
|
||||||
nodes.Add(new DagNode() { id = 2, title = "A" });
|
|
||||||
nodes.Add(new DagNode() { id = 3, title = "B" });
|
|
||||||
nodes.Add(new DagNode() { id = 4, title = "C" });
|
|
||||||
nodes.Add(new DagNode() { id = 5, title = "Out1" });
|
|
||||||
nodes.Add(new DagNode() { id = 6, title = "Out2" });
|
|
||||||
|
|
||||||
edges.Add(new DagEdge() { fromId = 0, toId = 2 });
|
|
||||||
edges.Add(new DagEdge() { fromId = 1, toId = 2 });
|
|
||||||
edges.Add(new DagEdge() { fromId = 2, toId = 3 });
|
|
||||||
edges.Add(new DagEdge() { fromId = 2, toId = 4 });
|
|
||||||
edges.Add(new DagEdge() { fromId = 3, toId = 5 });
|
|
||||||
edges.Add(new DagEdge() { fromId = 4, toId = 6 });
|
|
||||||
}
|
|
||||||
|
|
||||||
void OnGUI() {
|
|
||||||
HandleInput();
|
|
||||||
|
|
||||||
Rect rect = new Rect(0, 0, position.width, position.height);
|
|
||||||
EditorGUI.DrawRect(rect, new Color(0.11f, 0.11f, 0.11f));
|
|
||||||
|
|
||||||
Matrix4x4 oldMatrix = GUI.matrix;
|
|
||||||
Vector2 origin = new Vector2(position.width / 2, position.height / 2);
|
|
||||||
GUI.matrix = Matrix4x4.TRS(origin + pan, Quaternion.identity, Vector3.one * zoom) *
|
|
||||||
Matrix4x4.TRS(-origin, Quaternion.identity, Vector3.one);
|
|
||||||
|
|
||||||
// Draw edges first
|
|
||||||
foreach (var e in edges) {
|
|
||||||
var from = GetNodeById(e.fromId);
|
|
||||||
var to = GetNodeById(e.toId);
|
|
||||||
if (from == null || to == null) continue;
|
|
||||||
DrawEdgeCircleNodes(from, to);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Draw nodes (circles)
|
|
||||||
foreach (var n in nodes) {
|
|
||||||
DrawNodeCircle(n);
|
|
||||||
}
|
|
||||||
|
|
||||||
GUI.matrix = oldMatrix;
|
|
||||||
|
|
||||||
// Footer toolbar
|
|
||||||
GUILayout.FlexibleSpace();
|
|
||||||
EditorGUILayout.BeginHorizontal(EditorStyles.toolbar);
|
|
||||||
if (GUILayout.Button("Fit", EditorStyles.toolbarButton)) FitToView();
|
|
||||||
if (GUILayout.Button("Layout LR", EditorStyles.toolbarButton)) ComputeLeftToRightLayout();
|
|
||||||
if (GUILayout.Button("Add Node", EditorStyles.toolbarButton)) {
|
|
||||||
AddNode("N" + nodes.Count);
|
|
||||||
ComputeLeftToRightLayout();
|
|
||||||
}
|
|
||||||
if (GUILayout.Button("Add Edge (selected->new)", EditorStyles.toolbarButton)) {
|
|
||||||
if (selectedNodeId != -1) {
|
|
||||||
var newNode = AddNode("N" + nodes.Count);
|
|
||||||
edges.Add(new DagEdge() { fromId = selectedNodeId, toId = newNode.id });
|
|
||||||
ComputeLeftToRightLayout();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
EditorGUILayout.EndHorizontal();
|
|
||||||
}
|
|
||||||
|
|
||||||
void HandleInput() {
|
|
||||||
Event e = Event.current;
|
|
||||||
|
|
||||||
// Zoom with scroll
|
|
||||||
if (e.type == EventType.ScrollWheel) {
|
|
||||||
float oldZoom = zoom;
|
|
||||||
float delta = -e.delta.y * 0.01f;
|
|
||||||
zoom = Mathf.Clamp(zoom + delta, minZoom, maxZoom);
|
|
||||||
Vector2 mouse = e.mousePosition;
|
|
||||||
pan += (mouse - new Vector2(position.width / 2, position.height / 2)) * (1 - zoom / oldZoom);
|
|
||||||
e.Use();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pan with middle or right+ctrl drag
|
|
||||||
if (e.type == EventType.MouseDrag && (e.button == 2 || (e.button == 1 && e.control))) {
|
|
||||||
pan += e.delta;
|
|
||||||
e.Use();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Node dragging & selection (convert mouse to graph space)
|
|
||||||
Vector2 graphMouse = ScreenToGraph(e.mousePosition);
|
|
||||||
if (e.type == EventType.MouseDown && e.button == 0) {
|
|
||||||
int hit = HitTestNode(graphMouse);
|
|
||||||
if (hit != -1) {
|
|
||||||
selectedNodeId = hit;
|
|
||||||
draggingNode = true;
|
|
||||||
draggingNodeId = hit;
|
|
||||||
dragStart = graphMouse;
|
|
||||||
e.Use();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
selectedNodeId = -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (draggingNode && draggingNodeId != -1) {
|
|
||||||
if (e.type == EventType.MouseDrag && e.button == 0) {
|
|
||||||
Vector2 graphDelta = e.delta / zoom;
|
|
||||||
var n = GetNodeById(draggingNodeId);
|
|
||||||
if (n != null) {
|
|
||||||
n.position += graphDelta;
|
|
||||||
Repaint();
|
|
||||||
e.Use();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (e.type == EventType.MouseUp && e.button == 0) {
|
|
||||||
draggingNode = false;
|
|
||||||
draggingNodeId = -1;
|
|
||||||
e.Use();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DagNode AddNode(string title) {
|
|
||||||
int nextId = nodes.Count > 0 ? nodes.Max(n => n.id) + 1 : 0;
|
|
||||||
var n = new DagNode() { id = nextId, title = title, position = Vector2.zero };
|
|
||||||
nodes.Add(n);
|
|
||||||
return n;
|
|
||||||
}
|
|
||||||
|
|
||||||
DagNode GetNodeById(int id) => nodes.FirstOrDefault(x => x.id == id);
|
|
||||||
|
|
||||||
void DrawNodeCircle(DagNode n) {
|
|
||||||
Vector2 center = n.position;
|
|
||||||
float r = n.radius;
|
|
||||||
Rect nodeRect = new Rect(center.x - r, center.y - r, r * 2, r * 2);
|
|
||||||
|
|
||||||
// circle background
|
|
||||||
Color bg = (n.id == selectedNodeId) ? new Color(0.15f, 0.5f, 0.9f) : new Color(0.2f, 0.2f, 0.2f);
|
|
||||||
EditorGUI.DrawRect(nodeRect, bg);
|
|
||||||
|
|
||||||
// anti-aliased circle outline
|
|
||||||
Handles.color = Color.white * 0.9f;
|
|
||||||
Handles.DrawAAPolyLine(3f / zoom, GetCircleOutlinePoints(center, r, 48).ToArray());
|
|
||||||
|
|
||||||
// label
|
|
||||||
Vector2 labelPos = center - new Vector2(0, 8);
|
|
||||||
GUI.Label(new Rect(labelPos.x - r, labelPos.y - 8, r * 2, 18), n.title, labelStyle);
|
|
||||||
}
|
|
||||||
|
|
||||||
List<Vector3> GetCircleOutlinePoints(Vector2 center, float radius, int segments) {
|
|
||||||
var pts = new List<Vector3>(segments + 1);
|
|
||||||
for (int i = 0; i <= segments; i++) {
|
|
||||||
float a = (float)i / segments * Mathf.PI * 2f;
|
|
||||||
pts.Add(new Vector3(center.x + Mathf.Cos(a) * radius, center.y + Mathf.Sin(a) * radius, 0));
|
|
||||||
}
|
|
||||||
return pts;
|
|
||||||
}
|
|
||||||
|
|
||||||
void DrawEdgeCircleNodes(DagNode from, DagNode to) {
|
|
||||||
Vector2 a = from.position;
|
|
||||||
Vector2 b = to.position;
|
|
||||||
if (a == b) return;
|
|
||||||
|
|
||||||
// Compute edge line that starts/ends at circle circumferences
|
|
||||||
Vector2 dir = (b - a).normalized;
|
|
||||||
Vector2 start = a + dir * from.radius;
|
|
||||||
Vector2 end = b - dir * to.radius;
|
|
||||||
|
|
||||||
// Use a simple curved line: start -> control -> end (bezier)
|
|
||||||
Vector2 control = new Vector2((start.x + end.x) / 2f, (start.y + end.y) / 2f);
|
|
||||||
// Slight vertical offset to separate overlapping lines based on node ids
|
|
||||||
float offset = ((from.id * 7 + to.id * 11) % 7 - 3) * 6f / zoom;
|
|
||||||
control += new Vector2(0, offset);
|
|
||||||
|
|
||||||
Handles.color = Color.white * 0.9f;
|
|
||||||
Handles.DrawAAPolyLine(3f / zoom, 20, GetBezierPoints(start, control, end, 24).ToArray());
|
|
||||||
|
|
||||||
// Arrow at end pointing towards 'b'
|
|
||||||
DrawArrowHead(end - dir * 2f, end, 10f / zoom, 12f / zoom, Color.white);
|
|
||||||
}
|
|
||||||
|
|
||||||
List<Vector3> GetBezierPoints(Vector2 p0, Vector2 p1, Vector2 p2, int seg) {
|
|
||||||
var pts = new List<Vector3>(seg + 1);
|
|
||||||
for (int i = 0; i <= seg; i++) {
|
|
||||||
float t = (float)i / seg;
|
|
||||||
Vector2 p = (1 - t) * (1 - t) * p0 + 2 * (1 - t) * t * p1 + t * t * p2;
|
|
||||||
pts.Add(new Vector3(p.x, p.y, 0));
|
|
||||||
}
|
|
||||||
return pts;
|
|
||||||
}
|
|
||||||
|
|
||||||
void DrawArrowHead(Vector2 from, Vector2 to, float headWidth, float headLength, Color color) {
|
|
||||||
Vector2 dir = (to - from).normalized;
|
|
||||||
if (dir == Vector2.zero) return;
|
|
||||||
Vector2 right = new Vector2(-dir.y, dir.x);
|
|
||||||
|
|
||||||
Vector3 p1 = to;
|
|
||||||
Vector3 p2 = to - dir * headLength + right * headWidth * 0.5f;
|
|
||||||
Vector3 p3 = to - dir * headLength - right * headWidth * 0.5f;
|
|
||||||
|
|
||||||
Handles.color = color;
|
|
||||||
Handles.DrawAAConvexPolygon(p1, p2, p3);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Left-to-right layered layout (sources on the left, sinks on the right)
|
|
||||||
void ComputeLeftToRightLayout() {
|
|
||||||
// build adjacency and indegree
|
|
||||||
var adj = nodes.ToDictionary(n => n.id, n => new List<int>());
|
|
||||||
var indeg = nodes.ToDictionary(n => n.id, n => 0);
|
|
||||||
foreach (var e in edges) {
|
|
||||||
if (!adj.ContainsKey(e.fromId) || !adj.ContainsKey(e.toId)) continue;
|
|
||||||
adj[e.fromId].Add(e.toId);
|
|
||||||
indeg[e.toId]++;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Kahn's algorithm to compute topological layers (horizontal layers)
|
|
||||||
Dictionary<int, int> layer = new Dictionary<int, int>();
|
|
||||||
Queue<int> q = new Queue<int>(indeg.Where(kv => kv.Value == 0).Select(kv => kv.Key));
|
|
||||||
foreach (var id in q) layer[id] = 0;
|
|
||||||
|
|
||||||
while (q.Count > 0) {
|
|
||||||
int u = q.Dequeue();
|
|
||||||
int l = layer[u];
|
|
||||||
foreach (var v in adj[u]) {
|
|
||||||
// prefer placing v at least one layer after u
|
|
||||||
if (!layer.ContainsKey(v) || layer[v] < l + 1) layer[v] = l + 1;
|
|
||||||
indeg[v]--;
|
|
||||||
if (indeg[v] == 0) q.Enqueue(v);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Any unreachable nodes -> assign next layers
|
|
||||||
int maxLayer = layer.Count > 0 ? layer.Values.Max() : 0;
|
|
||||||
foreach (var n in nodes) {
|
|
||||||
if (!layer.ContainsKey(n.id)) {
|
|
||||||
maxLayer++;
|
|
||||||
layer[n.id] = maxLayer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Group nodes by layer (left to right)
|
|
||||||
var layers = layer.GroupBy(kv => kv.Value).OrderBy(g => g.Key).Select(g => g.Select(x => x.Key).ToList()).ToList();
|
|
||||||
|
|
||||||
// Layout parameters (horizontal spacing drives left->right)
|
|
||||||
float hSpacing = 220f;
|
|
||||||
float vSpacing = 120f;
|
|
||||||
|
|
||||||
// Place nodes: x increases with layer index, y spaced within layer
|
|
||||||
for (int li = 0; li < layers.Count; li++) {
|
|
||||||
var lst = layers[li];
|
|
||||||
float totalHeight = (lst.Count - 1) * vSpacing;
|
|
||||||
for (int i = 0; i < lst.Count; i++) {
|
|
||||||
int id = lst[i];
|
|
||||||
var n = GetNodeById(id);
|
|
||||||
if (n == null) continue;
|
|
||||||
float x = li * hSpacing;
|
|
||||||
float y = -totalHeight / 2f + i * vSpacing;
|
|
||||||
n.position = new Vector2(x, y);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
void FitToView() {
|
|
||||||
if (nodes.Count == 0) return;
|
|
||||||
Rect bounds = new Rect(nodes[0].position - Vector2.one * nodes[0].radius, Vector2.one * nodes[0].radius * 2f);
|
|
||||||
foreach (var n in nodes)
|
|
||||||
bounds = RectUnion(bounds, new Rect(n.position - Vector2.one * n.radius, Vector2.one * n.radius * 2f));
|
|
||||||
|
|
||||||
Vector2 center = bounds.center;
|
|
||||||
pan = -center;
|
|
||||||
zoom = 1.0f;
|
|
||||||
Repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
static Rect RectUnion(Rect a, Rect b) {
|
|
||||||
float xMin = Mathf.Min(a.xMin, b.xMin);
|
|
||||||
float xMax = Mathf.Max(a.xMax, b.xMax);
|
|
||||||
float yMin = Mathf.Min(a.yMin, b.yMin);
|
|
||||||
float yMax = Mathf.Max(a.yMax, b.yMax);
|
|
||||||
return Rect.MinMaxRect(xMin, yMin, xMax, yMax);
|
|
||||||
}
|
|
||||||
|
|
||||||
Vector2 ScreenToGraph(Vector2 screenPos) {
|
|
||||||
Vector2 origin = new Vector2(position.width / 2, position.height / 2);
|
|
||||||
// invert the GUI.matrix transform (approx for current simple transforms)
|
|
||||||
return (screenPos - (origin + pan)) / zoom + origin * (1 - 1 / zoom);
|
|
||||||
}
|
|
||||||
|
|
||||||
int HitTestNode(Vector2 graphPos) {
|
|
||||||
// returns node id under point or -1
|
|
||||||
for (int i = nodes.Count - 1; i >= 0; i--) {
|
|
||||||
var n = nodes[i];
|
|
||||||
if ((graphPos - n.position).sqrMagnitude <= n.radius * n.radius) return n.id;
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 95393aed582b8b30d965400672aec4d8
|
|
||||||
@ -524,16 +524,9 @@ namespace NanoBrain {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public virtual void RemoveReceiver(Nucleus receiverToRemove) {
|
public virtual void RemoveReceiver(Nucleus receiverToRemove) {
|
||||||
int n1 = _receivers.Count;
|
|
||||||
this._receivers.RemoveAll(receiver => receiver == receiverToRemove);
|
this._receivers.RemoveAll(receiver => receiver == receiverToRemove);
|
||||||
int n2 = _receivers.Count;
|
|
||||||
Debug.Log($" Removed {n1} - {n2} receivers");
|
|
||||||
|
|
||||||
n1 = receiverToRemove.synapses.Count;
|
|
||||||
receiverToRemove.synapses.RemoveAll(synapse => synapse.neuron == this);
|
receiverToRemove.synapses.RemoveAll(synapse => synapse.neuron == this);
|
||||||
n2 = receiverToRemove.synapses.Count;
|
}
|
||||||
Debug.Log($" Removed {n1} - {n2} synapses");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#endregion Receivers
|
#endregion Receivers
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user