-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflatbush.ts
More file actions
146 lines (125 loc) · 3.22 KB
/
flatbush.ts
File metadata and controls
146 lines (125 loc) · 3.22 KB
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
import type { Node } from '@xyflow/svelte';
import type { CollisionAlgorithm } from '.';
import Flatbush from 'flatbush';
type Box = {
minX: number;
minY: number;
maxX: number;
maxY: number;
id: string;
moved: boolean;
x: number;
y: number;
width: number;
height: number;
node: Node;
};
function rebuildFlatbush(boxes: Box[]) {
const index = new Flatbush(boxes.length);
for (const box of boxes) {
index.add(box.minX, box.minY, box.maxX, box.maxY);
}
index.finish();
return index;
}
export const flatbush: CollisionAlgorithm = (
nodes,
{ iterations = 50, overlapThreshold = 0.5, margin = 0 }
) => {
// Create boxes from nodes
const boxes: Box[] = new Array(nodes.length);
for (let i = 0; i < nodes.length; i++) {
const node = nodes[i];
// Use measured dimensions if available, otherwise use defaults
const width = node.width! + margin * 2;
const height = node.height! + margin * 2;
const x = node.position.x - margin;
const y = node.position.y - margin;
const box: Box = {
minX: x,
minY: y,
maxX: x + width,
maxY: y + height,
id: node.id,
moved: false,
x,
y,
width,
height,
node
};
boxes[i] = box;
}
let numIterations = 0;
let index = rebuildFlatbush(boxes);
for (let iter = 0; iter <= iterations; iter++) {
let moved = false;
// For each box, find potential collisions using spatial search
for (let i = 0; i < boxes.length; i++) {
const A = boxes[i];
// Search for boxes that might overlap with A
const candidateIndices = index.search(A.minX, A.minY, A.maxX, A.maxY);
for (const j of candidateIndices) {
const B = boxes[j];
// Skip self
if (A.id === B.id) continue;
// Calculate center positions
const centerAX = A.x + A.width * 0.5;
const centerAY = A.y + A.height * 0.5;
const centerBX = B.x + B.width * 0.5;
const centerBY = B.y + B.height * 0.5;
// Calculate distance between centers
const dx = centerAX - centerBX;
const dy = centerAY - centerBY;
// Calculate overlap along each axis
const px = (A.width + B.width) * 0.5 - Math.abs(dx);
const py = (A.height + B.height) * 0.5 - Math.abs(dy);
// Check if there's significant overlap
if (px > overlapThreshold && py > overlapThreshold) {
A.moved = B.moved = moved = true;
// Resolve along the smallest overlap axis
if (px < py) {
// Move along x-axis
const sx = dx > 0 ? 1 : -1;
const moveAmount = (px / 2) * sx;
A.x += moveAmount;
A.minX += moveAmount;
A.maxX += moveAmount;
B.x -= moveAmount;
B.minX -= moveAmount;
B.maxX -= moveAmount;
} else {
// Move along y-axis
const sy = dy > 0 ? 1 : -1;
const moveAmount = (py / 2) * sy;
A.y += moveAmount;
A.minY += moveAmount;
A.maxY += moveAmount;
B.y -= moveAmount;
B.minY -= moveAmount;
B.maxY -= moveAmount;
}
}
}
}
numIterations++;
// Early exit if no overlaps were found
if (!moved) {
break;
}
index = rebuildFlatbush(boxes);
}
const newNodes = boxes.map((box) => {
if (box.moved) {
return {
...box.node,
position: {
x: box.x + margin,
y: box.y + margin
}
};
}
return box.node;
});
return { newNodes, numIterations };
};