forked from mem9-ai/mem9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplant-placement.ts
More file actions
258 lines (226 loc) · 7.11 KB
/
plant-placement.ts
File metadata and controls
258 lines (226 loc) · 7.11 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
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
import type { PixelFarmMemoryBucketState } from "@/lib/pixel-farm/data/types";
import type {
PixelFarmFieldCell,
PixelFarmFieldLayout,
} from "@/lib/pixel-farm/field-layout";
export interface PixelFarmPlantPlacement {
bucket: PixelFarmMemoryBucketState;
cell: PixelFarmFieldCell;
fieldKind: "main";
plant: PixelFarmMemoryBucketState["plants"][number];
}
function cellKey(cell: PixelFarmFieldCell): string {
return `${cell.row}:${cell.column}`;
}
function compareCells(left: PixelFarmFieldCell, right: PixelFarmFieldCell): number {
return left.row - right.row || left.column - right.column;
}
function measureBounds(
cells: readonly PixelFarmFieldCell[],
): {
minRow: number;
maxRow: number;
minColumn: number;
maxColumn: number;
} {
return cells.reduce(
(bounds, cell) => ({
minRow: Math.min(bounds.minRow, cell.row),
maxRow: Math.max(bounds.maxRow, cell.row),
minColumn: Math.min(bounds.minColumn, cell.column),
maxColumn: Math.max(bounds.maxColumn, cell.column),
}),
{
minRow: Number.POSITIVE_INFINITY,
maxRow: Number.NEGATIVE_INFINITY,
minColumn: Number.POSITIVE_INFINITY,
maxColumn: Number.NEGATIVE_INFINITY,
},
);
}
function cellDistance(left: PixelFarmFieldCell, right: PixelFarmFieldCell): number {
return Math.abs(left.row - right.row) + Math.abs(left.column - right.column);
}
function lerp(min: number, max: number, ratio: number): number {
return min + (max - min) * ratio;
}
function buildFieldInteriorDepthIndex(
cells: readonly PixelFarmFieldCell[],
): ReadonlyMap<string, number> {
const cellByKey = new Map(cells.map((cell) => [cellKey(cell), cell] as const));
const depthByKey = new Map<string, number>();
const queue: PixelFarmFieldCell[] = [];
const directions = [
{ row: -1, column: 0 },
{ row: 1, column: 0 },
{ row: 0, column: -1 },
{ row: 0, column: 1 },
] as const;
for (const cell of cells) {
const isBoundaryCell = directions.some((direction) =>
!cellByKey.has(
cellKey({
row: cell.row + direction.row,
column: cell.column + direction.column,
}),
),
);
if (!isBoundaryCell) {
continue;
}
depthByKey.set(cellKey(cell), 0);
queue.push(cell);
}
while (queue.length > 0) {
const current = queue.shift()!;
const currentDepth = depthByKey.get(cellKey(current)) ?? 0;
for (const direction of directions) {
const neighborKey = cellKey({
row: current.row + direction.row,
column: current.column + direction.column,
});
const neighbor = cellByKey.get(neighborKey);
if (!neighbor || depthByKey.has(neighborKey)) {
continue;
}
depthByKey.set(neighborKey, currentDepth + 1);
queue.push(neighbor);
}
}
return depthByKey;
}
function isInteriorCell(
cell: PixelFarmFieldCell,
depthByKey: ReadonlyMap<string, number>,
): boolean {
return (depthByKey.get(cellKey(cell)) ?? 0) > 0;
}
function pickDistributedCells(
cells: readonly PixelFarmFieldCell[],
count: number,
depthByKey: ReadonlyMap<string, number>,
): PixelFarmFieldCell[] {
if (count <= 0 || cells.length < 1) {
return [];
}
const interiorCells = cells.filter((cell) => isInteriorCell(cell, depthByKey));
const candidateCells =
interiorCells.length >= count
? interiorCells
: cells;
const sortedCells = [...candidateCells].sort(compareCells);
if (sortedCells.length <= count) {
return sortedCells;
}
const bounds = measureBounds(sortedCells);
const targetRows = Math.max(1, Math.round(Math.sqrt(count)));
const targetColumns = Math.max(1, Math.ceil(count / targetRows));
const remaining = [...sortedCells];
const picked: PixelFarmFieldCell[] = [];
for (let index = 0; index < count; index += 1) {
const targetRowIndex = Math.floor(index / targetColumns);
const targetColumnIndex = index % targetColumns;
const targetRow =
targetRows === 1
? (bounds.minRow + bounds.maxRow) * 0.5
: lerp(bounds.minRow, bounds.maxRow, targetRowIndex / (targetRows - 1));
const targetColumn =
targetColumns === 1
? (bounds.minColumn + bounds.maxColumn) * 0.5
: lerp(bounds.minColumn, bounds.maxColumn, targetColumnIndex / (targetColumns - 1));
let bestIndex = 0;
let bestDistance = Number.POSITIVE_INFINITY;
let bestDepth = Number.NEGATIVE_INFINITY;
for (const [candidateIndex, candidate] of remaining.entries()) {
const candidateDepth = depthByKey.get(cellKey(candidate)) ?? 0;
const distance =
Math.abs(candidate.row - targetRow) + Math.abs(candidate.column - targetColumn);
if (candidateDepth < bestDepth) {
continue;
}
if (candidateDepth === bestDepth && distance >= bestDistance) {
continue;
}
bestDepth = candidateDepth;
bestDistance = distance;
bestIndex = candidateIndex;
}
picked.push(remaining.splice(bestIndex, 1)[0]!);
}
return picked.sort(compareCells);
}
function takeNearestCells(
remainingCells: PixelFarmFieldCell[],
anchor: PixelFarmFieldCell,
count: number,
depthByKey: ReadonlyMap<string, number>,
): PixelFarmFieldCell[] {
const interiorCells = remainingCells.filter((cell) => isInteriorCell(cell, depthByKey));
const candidateCells =
interiorCells.length >= count
? interiorCells
: remainingCells;
return candidateCells
.map((cell, index) => ({
cell,
distance: cellDistance(cell, anchor),
depth: depthByKey.get(cellKey(cell)) ?? 0,
index,
}))
.sort(
(left, right) =>
left.distance - right.distance ||
right.depth - left.depth ||
left.index - right.index,
)
.slice(0, count)
.map((entry) => entry.cell)
.sort(compareCells);
}
export function buildPixelFarmPlantPlacements(input: {
eventField: PixelFarmFieldLayout | null;
mainField: PixelFarmFieldLayout;
memoryBuckets: readonly PixelFarmMemoryBucketState[];
}): PixelFarmPlantPlacement[] {
const depthByKey = buildFieldInteriorDepthIndex(input.mainField.cells);
const anchors = pickDistributedCells(
input.mainField.cells,
input.memoryBuckets.length,
depthByKey,
);
const remainingCells = [...input.mainField.cells];
const placements: PixelFarmPlantPlacement[] = [];
for (const [bucketIndex, bucket] of [...input.memoryBuckets]
.sort((left, right) => left.rank - right.rank)
.entries()) {
const anchor = anchors[bucketIndex] ?? remainingCells[0];
if (!anchor) {
break;
}
const chosenCells = takeNearestCells(
remainingCells,
anchor,
bucket.plants.length,
depthByKey,
);
for (const [plantIndex, plant] of bucket.plants.entries()) {
const cell = chosenCells[plantIndex];
if (!cell) {
continue;
}
const remainingIndex = remainingCells.findIndex(
(candidate) => candidate.row === cell.row && candidate.column === cell.column,
);
if (remainingIndex >= 0) {
remainingCells.splice(remainingIndex, 1);
}
placements.push({
bucket,
cell,
fieldKind: "main",
plant,
});
}
}
return placements;
}