@snaptrude/plugin-core 0.9.6 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/api-manifest.full.json +8443 -0
  3. package/api-manifest.json +167 -10
  4. package/dist/api/core/io/import/index.d.ts +3 -1
  5. package/dist/api/core/io/import/index.d.ts.map +1 -1
  6. package/dist/api/design/create/bulk-items.d.ts +185 -0
  7. package/dist/api/design/create/bulk-items.d.ts.map +1 -0
  8. package/dist/api/design/create/index.d.ts +310 -22
  9. package/dist/api/design/create/index.d.ts.map +1 -1
  10. package/dist/api/design/create/opening-fields.d.ts +37 -0
  11. package/dist/api/design/create/opening-fields.d.ts.map +1 -0
  12. package/dist/api/design/delete/index.d.ts +4 -0
  13. package/dist/api/design/delete/index.d.ts.map +1 -1
  14. package/dist/api/design/dimensions.d.ts +427 -0
  15. package/dist/api/design/dimensions.d.ts.map +1 -0
  16. package/dist/api/design/doors/index.d.ts +20 -13
  17. package/dist/api/design/doors/index.d.ts.map +1 -1
  18. package/dist/api/design/index.d.ts +5 -0
  19. package/dist/api/design/index.d.ts.map +1 -1
  20. package/dist/api/presentation/annotate.d.ts +2 -2
  21. package/dist/api/presentation/shapes.d.ts +2 -2
  22. package/dist/handles.d.ts +19 -0
  23. package/dist/handles.d.ts.map +1 -1
  24. package/dist/index.cjs +2011 -1869
  25. package/dist/index.cjs.map +1 -1
  26. package/dist/index.js +1988 -1869
  27. package/dist/index.js.map +1 -1
  28. package/package.json +1 -1
  29. package/src/api/core/io/import/index.ts +11 -3
  30. package/src/api/design/create/bulk-items.ts +186 -0
  31. package/src/api/design/create/index.ts +335 -38
  32. package/src/api/design/create/opening-fields.ts +37 -0
  33. package/src/api/design/delete/index.ts +4 -0
  34. package/src/api/design/dimensions.ts +453 -0
  35. package/src/api/design/doors/index.ts +20 -13
  36. package/src/api/design/index.ts +5 -0
  37. package/src/handles.ts +24 -0
@@ -0,0 +1,453 @@
1
+ import * as z from "zod"
2
+ import { PluginApiReturn } from "../../types"
3
+ import {
4
+ ComponentHandle,
5
+ DimensionHandle,
6
+ Vec3Components,
7
+ Vec3Handle,
8
+ } from "../../handles"
9
+
10
+ /**
11
+ * Dimension lines (Measuring Tape) — the measurement annotations the Measuring
12
+ * Tape tool leaves in the 3D scene, NOT an entity's width/height/depth
13
+ * properties (for those see `design.windows.getDimensions`,
14
+ * `design.create.staircase`'s `dimensions`, or `design.query.measure`).
15
+ *
16
+ * A dimension line is a scene object: two endpoints anchored to the geometry
17
+ * they were measured on, an offset that pushes the drawn line clear of the
18
+ * span, and a label showing the distance in the project's units. Because the
19
+ * endpoints are anchored, the line follows its host when the host is moved,
20
+ * edited, or resized, and it is removed with the host when the host is deleted.
21
+ * Dimension lines are storey-scoped, render in both plan and 3D, and are drawn
22
+ * into Present-mode sheets (style them with
23
+ * `presentation.placedViews.updateStyles(shapeId, "Dimension", …)`).
24
+ *
25
+ * **Units.** Every length here — `offset` and the record's `length` — is in
26
+ * **Babylon units** (BU), the engine's storage unit: 1 BU = 10 in = 0.254 m.
27
+ * Convert with `core.units.convert(value, from, await core.units.getBabylonType())`.
28
+ *
29
+ * **Offset convention.** `options.offset` is a **signed** distance in BU:
30
+ * positive pushes the drawn line to the **left** of the `from` → `to`
31
+ * direction in plan (`cross(up, direction)`), negative to the right. It
32
+ * defaults to `3.937` BU (1 m). The placement mode is always `"across"` (the
33
+ * tape tool's perpendicular mode), which re-perpendicularises when the host
34
+ * geometry is edited.
35
+ *
36
+ * Every mutator here (`create`, `delete`, `hide`, `show`) commits through the
37
+ * engine's command manager, so each call is a single undo entry, is autosaved,
38
+ * and replays to collaborators.
39
+ *
40
+ * Accessed via `snaptrude.design.dimensions`.
41
+ */
42
+ export abstract class PluginDesignDimensionsApi {
43
+ constructor() {}
44
+
45
+ /**
46
+ * Draw one dimension line between two world points, anchored to a component.
47
+ *
48
+ * `anchor` is **required**: the endpoints are stored relative to the anchor's
49
+ * mesh, and only component-anchored dimension lines survive a reload. A
50
+ * free-point dimension anchors to a scene helper mesh whose id is not stable
51
+ * across reloads, so it is dropped or corrupted when the project is reopened
52
+ * — the host therefore rejects a non-component anchor rather than writing a
53
+ * record that silently disappears. Pass `options.anchorTo` to anchor the
54
+ * second endpoint to a different component (it defaults to `anchor`).
55
+ *
56
+ * The dimension is created flat (never plan-projected) so the same call
57
+ * produces the same record whatever the current camera; it still draws in
58
+ * plan.
59
+ *
60
+ * @param from - World-space first endpoint.
61
+ * @param to - World-space second endpoint.
62
+ * @param anchor - The component the first endpoint is anchored to (required).
63
+ * @param options - `anchorTo` (component for the second endpoint; defaults to
64
+ * `anchor`), `offset` (signed perpendicular offset in Babylon units,
65
+ * positive = left of the `from` → `to` direction in plan; default `3.937`
66
+ * BU = 1 m).
67
+ * @returns The new dimension line's {@linkcode DimensionHandle}.
68
+ * @throws `VALIDATION` for malformed arguments or a degenerate span (`from`
69
+ * and `to` closer than the engine's minimum); `HANDLE_INVALID` for an
70
+ * unknown `anchor` / `anchorTo`; `PRECONDITION_FAILED` when the anchor is
71
+ * outside the active proposal or the editor is not mounted;
72
+ * `METHOD_NOT_PERMITTED` when plugin writes are disabled.
73
+ *
74
+ * @examplePrompt Dimension every wall on level 2
75
+ * @examplePrompt Add a dimension line along this wall
76
+ * @examplePrompt Measure the width of this room and label it on the plan
77
+ *
78
+ * # Example
79
+ * ```ts
80
+ * const { design, core } = snaptrude
81
+ * const v = core.math.vec3
82
+ * const curve = core.geom.query.curve
83
+ * for (const wall of await design.query.listWalls({ storeys: [2] })) {
84
+ * const cl = await design.query.geometry.getCenterline(wall)
85
+ * if (!cl) continue
86
+ * const a = await curve.getStartPoint(cl)
87
+ * const b = await curve.getEndPoint(cl)
88
+ * await design.dimensions.create(
89
+ * await v.new(a.x, a.y, a.z),
90
+ * await v.new(b.x, b.y, b.z),
91
+ * wall,
92
+ * )
93
+ * }
94
+ * ```
95
+ */
96
+ public abstract create(
97
+ from: Vec3Handle,
98
+ to: Vec3Handle,
99
+ anchor: ComponentHandle,
100
+ options?: { anchorTo?: ComponentHandle; offset?: number },
101
+ ): PluginApiReturn<DimensionHandle>
102
+
103
+ /**
104
+ * List the dimension lines in the project as full records.
105
+ *
106
+ * Filters combine with AND. `storeys` keeps only the dimensions on those
107
+ * storey numbers, `anchors` only the ones anchored to those components
108
+ * (matching either endpoint, and matching an instanced anchor's source mesh
109
+ * too), `isHidden` only the ones whose user Hide flag equals the value given.
110
+ *
111
+ * Dimension lines drawn by the Measuring Tape onto a scene helper mesh rather
112
+ * than a component come back with `anchor: null` and are not proposal-scoped.
113
+ *
114
+ * @param options - `storeys`, `anchors`, `isHidden` filters (all optional,
115
+ * ANDed).
116
+ * @returns The matching {@linkcode PluginDimensionLine} records (`[]` when
117
+ * nothing matches).
118
+ * @throws `VALIDATION` for malformed filters; `HANDLE_INVALID` for an unknown
119
+ * handle in `anchors`.
120
+ *
121
+ * @examplePrompt List all the dimension lines in this model
122
+ * @examplePrompt Which dimensions are on level 3?
123
+ * @examplePrompt Flag any dimension line shorter than 600 mm
124
+ *
125
+ * @performance Array read — one host round-trip returns every record. Filter
126
+ * in one call rather than calling `get` per dimension.
127
+ *
128
+ * # Example
129
+ * ```ts
130
+ * const units = snaptrude.core.units
131
+ * const min = await units.convert(600, "millimeters", await units.getBabylonType())
132
+ * const short = (await snaptrude.design.dimensions.list()).filter(
133
+ * (d) => d.length < min,
134
+ * )
135
+ * console.log(short.map((d) => `${d.label} on storey ${d.storey}`))
136
+ * ```
137
+ */
138
+ public abstract list(options?: {
139
+ storeys?: number[]
140
+ anchors?: ComponentHandle[]
141
+ isHidden?: boolean
142
+ }): PluginApiReturn<PluginDimensionLine[]>
143
+
144
+ /**
145
+ * Read one dimension line by handle.
146
+ *
147
+ * Returns `null` — rather than throwing — when the dimension no longer
148
+ * exists, so a handle kept across a delete or an undo can be polled safely.
149
+ *
150
+ * @param dimension - The dimension line to read.
151
+ * @returns Its {@linkcode PluginDimensionLine} record, or `null` if it is
152
+ * gone.
153
+ * @throws `VALIDATION` if `dimension` is not a non-empty id string.
154
+ *
155
+ * @examplePrompt Read the dimension line I just created
156
+ * @examplePrompt How long is this dimension and what does its label say?
157
+ * @examplePrompt Check whether that dimension line still exists
158
+ *
159
+ * # Example
160
+ * ```ts
161
+ * const dim = await snaptrude.design.dimensions.get(handle)
162
+ * if (dim) console.log(dim.label, dim.length, dim.storey)
163
+ * ```
164
+ */
165
+ public abstract get(
166
+ dimension: DimensionHandle,
167
+ ): PluginApiReturn<PluginDimensionLine | null>
168
+
169
+ /**
170
+ * Delete dimension lines — the same hard removal as selecting them and
171
+ * pressing Delete. Undoable as a **single** entry for the whole batch.
172
+ *
173
+ * Deleted handles are stale afterwards: {@linkcode
174
+ * PluginDesignDimensionsApi.get} returns `null` for them and the other
175
+ * mutators throw `HANDLE_INVALID`.
176
+ *
177
+ * @param dimensions - The dimension lines to delete (at least one — an empty
178
+ * array is a caller error, not a no-op).
179
+ * @returns The dimensions that were deleted, as
180
+ * {@linkcode PluginDimensionsChangeResult}.
181
+ * @throws `VALIDATION` for an empty or malformed array; `HANDLE_INVALID` if
182
+ * any handle is unknown (the whole call rejects before anything is
183
+ * deleted); `PRECONDITION_FAILED` if any dimension's anchor is outside the
184
+ * active proposal; `METHOD_NOT_PERMITTED` when plugin writes are disabled.
185
+ *
186
+ * @examplePrompt Remove all dimension lines
187
+ * @examplePrompt Delete the dimensions on this wall
188
+ * @examplePrompt Clear the measurements I added to level 2
189
+ *
190
+ * @performance Array API — pass the whole set in one call (one host
191
+ * round-trip, one undo entry). Never loop this per dimension.
192
+ *
193
+ * # Example
194
+ * ```ts
195
+ * const dims = snaptrude.design.dimensions
196
+ * const onWall = await dims.list({ anchors: [wall] })
197
+ * if (onWall.length > 0) await dims.delete(onWall.map((d) => d.id))
198
+ * ```
199
+ */
200
+ public abstract delete(
201
+ dimensions: DimensionHandle[],
202
+ ): PluginApiReturn<PluginDimensionsChangeResult>
203
+
204
+ /**
205
+ * Hide dimension lines from the viewport — the same as the right-click "Hide"
206
+ * action (it sets the user Hide flag, `isHidden`). Undoable. Already-hidden
207
+ * dimensions are skipped and are not reported in `affected`.
208
+ *
209
+ * @param dimensions - The dimension lines to hide.
210
+ * @returns The dimensions actually hidden, as
211
+ * {@linkcode PluginDimensionsChangeResult} — already-hidden inputs are
212
+ * omitted, so `affected` can be shorter than the input.
213
+ * @throws `VALIDATION` for a malformed array; `HANDLE_INVALID` if any handle
214
+ * is unknown; `PRECONDITION_FAILED` if any dimension's anchor is outside
215
+ * the active proposal; `METHOD_NOT_PERMITTED` when plugin writes are
216
+ * disabled.
217
+ *
218
+ * @examplePrompt Hide the dimensions on this storey
219
+ * @examplePrompt Hide every dimension line while I present
220
+ * @examplePrompt Temporarily hide the measurements on level 3
221
+ *
222
+ * @performance Array API — one host round-trip and one undo entry for the
223
+ * whole set.
224
+ *
225
+ * # Example
226
+ * ```ts
227
+ * const dims = snaptrude.design.dimensions
228
+ * const onLevel3 = await dims.list({ storeys: [3] })
229
+ * const { affected } = await dims.hide(onLevel3.map((d) => d.id))
230
+ * ```
231
+ */
232
+ public abstract hide(
233
+ dimensions: DimensionHandle[],
234
+ ): PluginApiReturn<PluginDimensionsChangeResult>
235
+
236
+ /**
237
+ * Reveal hidden dimension lines — clear the user Hide flag, the inverse of
238
+ * {@linkcode PluginDesignDimensionsApi.hide}. Undoable. Already-visible
239
+ * dimensions are skipped and are not reported in `affected`.
240
+ *
241
+ * Clearing the flag does not guarantee the dimension is on screen: a
242
+ * dimension whose anchor component is itself hidden stays off screen with
243
+ * `isHidden: false` and `isVisible: false`.
244
+ *
245
+ * @param dimensions - The dimension lines to reveal.
246
+ * @returns The dimensions actually revealed, as
247
+ * {@linkcode PluginDimensionsChangeResult} — already-visible inputs are
248
+ * omitted, so `affected` can be shorter than the input.
249
+ * @throws `VALIDATION` for a malformed array; `HANDLE_INVALID` if any handle
250
+ * is unknown; `PRECONDITION_FAILED` if any dimension's anchor is outside
251
+ * the active proposal; `METHOD_NOT_PERMITTED` when plugin writes are
252
+ * disabled.
253
+ *
254
+ * @examplePrompt Show the dimension lines again
255
+ * @examplePrompt Unhide all the hidden dimensions
256
+ * @examplePrompt Bring back the measurements I hid on this storey
257
+ *
258
+ * @performance Array API — one host round-trip and one undo entry for the
259
+ * whole set.
260
+ *
261
+ * # Example
262
+ * ```ts
263
+ * const dims = snaptrude.design.dimensions
264
+ * const hidden = await dims.list({ isHidden: true })
265
+ * await dims.show(hidden.map((d) => d.id))
266
+ * ```
267
+ */
268
+ public abstract show(
269
+ dimensions: DimensionHandle[],
270
+ ): PluginApiReturn<PluginDimensionsChangeResult>
271
+ }
272
+
273
+ /**
274
+ * How a dimension line's drawn offset is constrained.
275
+ *
276
+ * - `"across"` — perpendicular to the span (the tape tool's default, and what
277
+ * every plugin-created dimension uses); re-perpendicularises when the host
278
+ * geometry is edited.
279
+ * - `"x"` / `"y"` / `"z"` — the offset is locked to that world axis.
280
+ * - `"none"` — no placement mode recorded (a plain world-space offset).
281
+ */
282
+ export const PluginDimensionPlacement = z.enum([
283
+ "across",
284
+ "x",
285
+ "y",
286
+ "z",
287
+ "none",
288
+ ])
289
+ export type PluginDimensionPlacement = z.infer<typeof PluginDimensionPlacement>
290
+
291
+ /**
292
+ * One dimension line (Measuring Tape annotation). Lengths are in **Babylon
293
+ * units** (1 BU = 0.254 m — convert with `core.units.convert`).
294
+ *
295
+ * | Property | Type | Description |
296
+ * |---|---|---|
297
+ * | `id` | {@linkcode DimensionHandle} | The dimension line's handle |
298
+ * | `from` | {@linkcode Vec3Components} | Live world position of the first endpoint |
299
+ * | `to` | {@linkcode Vec3Components} | Live world position of the second endpoint |
300
+ * | `length` | `number` | Straight-line distance between `from` and `to`, in Babylon units |
301
+ * | `label` | `string` | The text drawn on the canvas, in the project's units (a bare number for metric/inch projects, `27' 7"` style for feet-inches). For a span whose x, y and z all differ the drawn line is the plan projection, so `label` reads the horizontal distance while `length` is the true 3D one |
302
+ * | `offset` | {@linkcode Vec3Components} | World vector from the measured span to the drawn line |
303
+ * | `placement` | {@linkcode PluginDimensionPlacement} | How that offset is constrained |
304
+ * | `anchor` | {@linkcode ComponentHandle}` \| null` | Component the first endpoint is anchored to; `null` for a free point or a non-component host mesh |
305
+ * | `anchorTo` | {@linkcode ComponentHandle}` \| null` | Component the second endpoint is anchored to; equals `anchor` when both endpoints share a host |
306
+ * | `storey` | `number` | Storey the dimension belongs to |
307
+ * | `buildingId` | `string \| null` | Building it belongs to, when it has one |
308
+ * | `isHidden` | `boolean` | The user Hide flag (what `hide` / `show` toggle) |
309
+ * | `isVisible` | `boolean` | Whether it is actually drawn — `false` when hidden, and also when an anchor component is hidden |
310
+ * | `isPlanProjected` | `boolean` | Whether it is drawn flattened onto the storey base (Measuring Tape dimensions drawn in 2D are; plugin-created ones never are) |
311
+ */
312
+ export const PluginDimensionLine = z.object({
313
+ id: DimensionHandle,
314
+ from: Vec3Components,
315
+ to: Vec3Components,
316
+ length: z.number(),
317
+ label: z.string(),
318
+ offset: Vec3Components,
319
+ placement: PluginDimensionPlacement,
320
+ anchor: ComponentHandle.nullable(),
321
+ anchorTo: ComponentHandle.nullable(),
322
+ storey: z.number(),
323
+ buildingId: z.string().nullable(),
324
+ isHidden: z.boolean(),
325
+ isVisible: z.boolean(),
326
+ isPlanProjected: z.boolean(),
327
+ })
328
+ export type PluginDimensionLine = z.infer<typeof PluginDimensionLine>
329
+
330
+ /**
331
+ * Result of every `design.dimensions` mutation that takes a batch
332
+ * ({@linkcode PluginDesignDimensionsApi.delete} /
333
+ * {@linkcode PluginDesignDimensionsApi.hide} /
334
+ * {@linkcode PluginDesignDimensionsApi.show}) — the dimensions actually
335
+ * affected. `hide` / `show` skip dimensions already in the target state, so
336
+ * `affected` can be shorter than the input; `delete` echoes the whole batch.
337
+ * Failures throw (the RPC rejects); there is no `Result<>` monad in the SDK.
338
+ *
339
+ * | Property | Type | Description |
340
+ * |---|---|---|
341
+ * | `affected` | {@linkcode DimensionHandle}`[]` | The dimension lines the call changed |
342
+ */
343
+ export const PluginDimensionsChangeResult = z.object({
344
+ affected: z.array(DimensionHandle),
345
+ })
346
+ export type PluginDimensionsChangeResult = z.infer<
347
+ typeof PluginDimensionsChangeResult
348
+ >
349
+
350
+ /**
351
+ * Arguments for {@linkcode PluginDesignDimensionsApi.create} (options
352
+ * flattened).
353
+ *
354
+ * | Property | Type | Description |
355
+ * |---|---|---|
356
+ * | `from` | {@linkcode Vec3Handle} | World-space first endpoint |
357
+ * | `to` | {@linkcode Vec3Handle} | World-space second endpoint |
358
+ * | `anchor` | {@linkcode ComponentHandle} | Component the first endpoint anchors to (required — free-point dimensions do not survive a reload) |
359
+ * | `anchorTo` | {@linkcode ComponentHandle}? | Component for the second endpoint (default: `anchor`) |
360
+ * | `offset` | `number`? | Signed perpendicular offset in Babylon units, positive = left of the `from` → `to` direction in plan (default `3.937` BU = 1 m) |
361
+ *
362
+ * TRANSPORT: positional args — validated host-side as this object.
363
+ */
364
+ export const PluginDesignDimensionsCreateArgs = z.object({
365
+ from: Vec3Handle,
366
+ to: Vec3Handle,
367
+ anchor: ComponentHandle,
368
+ anchorTo: ComponentHandle.optional(),
369
+ offset: z.number().finite().optional(),
370
+ })
371
+ export type PluginDesignDimensionsCreateArgs = z.infer<
372
+ typeof PluginDesignDimensionsCreateArgs
373
+ >
374
+
375
+ /**
376
+ * Arguments for {@linkcode PluginDesignDimensionsApi.list} (options flattened).
377
+ * Filters combine with AND; omitting all of them lists every dimension line.
378
+ *
379
+ * | Property | Type | Description |
380
+ * |---|---|---|
381
+ * | `storeys` | `number[]`? | Only dimensions on these storey numbers |
382
+ * | `anchors` | {@linkcode ComponentHandle}`[]`? | Only dimensions anchored to these components (either endpoint) |
383
+ * | `isHidden` | `boolean`? | user-hidden flag === |
384
+ */
385
+ export const PluginDesignDimensionsListArgs = z.object({
386
+ storeys: z.array(z.number()).optional(),
387
+ anchors: z.array(ComponentHandle).optional(),
388
+ isHidden: z.boolean().optional(),
389
+ })
390
+ export type PluginDesignDimensionsListArgs = z.infer<
391
+ typeof PluginDesignDimensionsListArgs
392
+ >
393
+
394
+ /**
395
+ * Arguments for {@linkcode PluginDesignDimensionsApi.get}.
396
+ *
397
+ * | Property | Type | Description |
398
+ * |---|---|---|
399
+ * | `dimension` | {@linkcode DimensionHandle} | The dimension line to read |
400
+ */
401
+ export const PluginDesignDimensionsGetArgs = z.object({
402
+ dimension: DimensionHandle,
403
+ })
404
+ export type PluginDesignDimensionsGetArgs = z.infer<
405
+ typeof PluginDesignDimensionsGetArgs
406
+ >
407
+
408
+ /**
409
+ * Arguments for {@linkcode PluginDesignDimensionsApi.delete}.
410
+ *
411
+ * `.min(1)` mirrors {@linkcode PluginDesignDeleteEntitiesArgs}: an empty delete
412
+ * is a caller error, not a no-op.
413
+ *
414
+ * | Property | Type | Description |
415
+ * |---|---|---|
416
+ * | `dimensions` | {@linkcode DimensionHandle}`[]` | Dimension lines to delete. Unknown handles reject the whole call (fail-fast). |
417
+ */
418
+ export const PluginDesignDimensionsDeleteArgs = z.object({
419
+ dimensions: z.array(DimensionHandle).min(1),
420
+ })
421
+ export type PluginDesignDimensionsDeleteArgs = z.infer<
422
+ typeof PluginDesignDimensionsDeleteArgs
423
+ >
424
+
425
+ /**
426
+ * Arguments for {@linkcode PluginDesignDimensionsApi.hide}. An empty array is
427
+ * allowed and is a no-op (mirroring {@linkcode PluginDesignVisibilityHideArgs}).
428
+ *
429
+ * | Property | Type | Description |
430
+ * |---|---|---|
431
+ * | `dimensions` | {@linkcode DimensionHandle}`[]` | Dimension lines to hide |
432
+ */
433
+ export const PluginDesignDimensionsHideArgs = z.object({
434
+ dimensions: z.array(DimensionHandle),
435
+ })
436
+ export type PluginDesignDimensionsHideArgs = z.infer<
437
+ typeof PluginDesignDimensionsHideArgs
438
+ >
439
+
440
+ /**
441
+ * Arguments for {@linkcode PluginDesignDimensionsApi.show}. An empty array is
442
+ * allowed and is a no-op.
443
+ *
444
+ * | Property | Type | Description |
445
+ * |---|---|---|
446
+ * | `dimensions` | {@linkcode DimensionHandle}`[]` | Dimension lines to reveal |
447
+ */
448
+ export const PluginDesignDimensionsShowArgs = z.object({
449
+ dimensions: z.array(DimensionHandle),
450
+ })
451
+ export type PluginDesignDimensionsShowArgs = z.infer<
452
+ typeof PluginDesignDimensionsShowArgs
453
+ >
@@ -8,9 +8,11 @@ import { PluginDesignChangeResult } from "../lock"
8
8
  * `design.create.door`; generic reads (`listDoors`/`getHost`/`getProperties`) live at
9
9
  * `design.query.*`. Door targets are {@linkcode ComponentHandle}s.
10
10
  *
11
- * `getSwingDirection` is a DERIVED read (no persisted field) — computed from the door
12
- * mesh reflection state. `mirror` reflects the door across an axis (undoable, one
13
- * command); `setType` is intentionally absent (the engine has no in-place re-type
11
+ * `getSwingDirection` is a DERIVED read (no persisted field) — computed from the placed
12
+ * mesh's orientation: stand on the side the door swings open to, facing it; `'left'`
13
+ * when the hinged jamb is on your left. `mirror` reflects the door about one of its own
14
+ * axes (undoable, one command): `'x'` flips the swing side, `'z'` swaps the hinged jamb;
15
+ * `setType` is intentionally absent (the engine has no in-place re-type —
14
16
  * it would require delete+recreate).
15
17
  *
16
18
  * The **catalog** reads (`listCatalogGroups`/`listCatalog`/`getCatalogItem`/`exists`)
@@ -154,9 +156,11 @@ export abstract class PluginDesignDoorsApi {
154
156
  public abstract getSupportFloor(door: ComponentHandle): PluginApiReturn<ComponentHandle | null>
155
157
 
156
158
  /**
157
- * Get a door's swing (hinge) handedness whether it opens as a left-hand or
158
- * right-hand door. Derived from the door mesh's reflection state, not a
159
- * persisted field.
159
+ * Get a door's swing (hinge) handedness. Stand on the side the door swings
160
+ * open to, facing the door: `'left'` when the hinged jamb is on your left,
161
+ * `'right'` when it is on your right. Derived from the placed mesh's
162
+ * orientation (the same reflection `mirror` and the `hinge` placement option
163
+ * apply), not a persisted field.
160
164
  *
161
165
  * @param door The door to query
162
166
  * @returns `'left'` / `'right'`, or `null` if indeterminate
@@ -178,11 +182,13 @@ export abstract class PluginDesignDoorsApi {
178
182
  ): PluginApiReturn<"left" | "right" | null>
179
183
 
180
184
  /**
181
- * Mirror a door across an axis, flipping its swing so it opens from the
182
- * other side. Undoable as a single command.
185
+ * Mirror a door about its own axes. `'x'` (default) flips the swing side
186
+ * the door opens to the other side of the wall; `'z'` swaps the hinged jamb
187
+ * (left-hand ↔ right-hand, same swing side); `'y'` turns it upside down.
188
+ * Undoable as a single command.
183
189
  *
184
190
  * @param door The door to mirror
185
- * @param axis Reflection axis (optional; default `'x'` — the swing-flip axis)
191
+ * @param axis Reflection axis (optional; default `'x'` — the swing-flip axis; `'z'` — the hinge-jamb axis)
186
192
  * @returns The affected door(s)
187
193
  *
188
194
  * @examplePrompt Flip this door's swing
@@ -193,10 +199,11 @@ export abstract class PluginDesignDoorsApi {
193
199
  *
194
200
  * # Example
195
201
  * ```ts
196
- * // Flip the selected door's swing — axis defaults to "x" (the swing-flip
197
- * // axis); pass "y" or "z" to reflect across a different axis
202
+ * // Flip the selected door's swing side — axis defaults to "x"
198
203
  * const [door] = await snaptrude.design.query.listDoors({ isSelected: true })
199
204
  * const { affected } = await snaptrude.design.doors.mirror(door)
205
+ * // …or swap the hinged jamb instead (keeps the swing side)
206
+ * await snaptrude.design.doors.mirror(door, "z")
200
207
  * ```
201
208
  */
202
209
  public abstract mirror(
@@ -369,7 +376,7 @@ export const PluginDoorDimensions = z.object({
369
376
  })
370
377
  export type PluginDoorDimensions = z.infer<typeof PluginDoorDimensions>
371
378
 
372
- /** Mirror axis — tokens mirror the engine `FlipDirection` verbatim (§6.1). */
379
+ /** Mirror axis — tokens mirror the engine `FlipDirection` verbatim: `'x'` flips the swing side, `'z'` swaps the hinged jamb, `'y'` turns the door upside down. */
373
380
  export const PluginMirrorAxis = z.enum(["x", "y", "z"])
374
381
  export type PluginMirrorAxis = z.infer<typeof PluginMirrorAxis>
375
382
 
@@ -379,7 +386,7 @@ export type PluginMirrorAxis = z.infer<typeof PluginMirrorAxis>
379
386
  * | Property | Type | Description |
380
387
  * |---|---|---|
381
388
  * | `door` | {@linkcode ComponentHandle} | The door to mirror |
382
- * | `axis` | {@linkcode PluginMirrorAxis} | Reflection axis (optional; default `'x'` — the swing-flip axis) |
389
+ * | `axis` | {@linkcode PluginMirrorAxis} | Reflection axis (optional; default `'x'` — the swing-flip axis; `'z'` — the hinge-jamb axis) |
383
390
  */
384
391
  export const PluginDesignDoorMirrorArgs = z.object({
385
392
  door: ComponentHandle,
@@ -14,6 +14,7 @@ import { PluginDesignTransformApi } from "./transform"
14
14
  import { PluginDesignEditApi } from "./edit"
15
15
  import { PluginDesignUpdateApi } from "./update"
16
16
  import { PluginDesignVisibilityApi } from "./visibility"
17
+ import { PluginDesignDimensionsApi } from "./dimensions"
17
18
  import { PluginDesignTypesApi } from "./types"
18
19
  import { PluginDesignChangeResult } from "./lock"
19
20
 
@@ -30,6 +31,7 @@ import { PluginDesignChangeResult } from "./lock"
30
31
  * - {@linkcode PluginDesignApi.erase} — plan-level adjacency-edge erase (NOT hard delete)
31
32
  * - {@linkcode PluginDesignApi.delete} — hard entity removal
32
33
  * - {@linkcode PluginDesignApi.visibility} — hide / isolate / reveal entities
34
+ * - {@linkcode PluginDesignApi.dimensions} — dimension lines (Measuring Tape): create / list / delete / hide
33
35
  * - {@linkcode PluginDesignApi.types} — read-only building type / assembly reference
34
36
  * - {@linkcode PluginDesignApi.lock} / {@linkcode PluginDesignApi.unlock} / {@linkcode PluginDesignApi.isLocked} / {@linkcode PluginDesignApi.listLocked} — lock state (top-level design verbs, §2A.1)
35
37
  * - {@linkcode PluginDesignApi.lockArea} / {@linkcode PluginDesignApi.unlockArea} / {@linkcode PluginDesignApi.isAreaLocked} / {@linkcode PluginDesignApi.listAreaLocked} — footprint-area lock for Room/Department spaces
@@ -65,6 +67,8 @@ export abstract class PluginDesignApi {
65
67
  public abstract update: PluginDesignUpdateApi
66
68
  /** Hide / isolate / reveal entities. See {@linkcode PluginDesignVisibilityApi}. */
67
69
  public abstract visibility: PluginDesignVisibilityApi
70
+ /** Dimension lines (Measuring Tape). See {@linkcode PluginDesignDimensionsApi}. */
71
+ public abstract dimensions: PluginDesignDimensionsApi
68
72
  /** Read-only building type / assembly reference. See {@linkcode PluginDesignTypesApi}. */
69
73
  public abstract types: PluginDesignTypesApi
70
74
 
@@ -256,4 +260,5 @@ export * from "./transform"
256
260
  export * from "./edit"
257
261
  export * from "./update"
258
262
  export * from "./visibility"
263
+ export * from "./dimensions"
259
264
  export * from "./types"
package/src/handles.ts CHANGED
@@ -115,6 +115,19 @@ export type UnderlayHandle = EntityId<"underlay">
115
115
  */
116
116
  export type TerrainHandle = EntityId<"terrain">
117
117
 
118
+ /**
119
+ * A **dimension line** — one measurement annotation left behind by the Measuring
120
+ * Tape tool (NOT a width/height/depth property; see `design.dimensions`).
121
+ * Entity-style: the token IS the raw engine dimension id (`dim_…`), resolved live
122
+ * host-side from the dimension-line registry (`getDimensionLineMap()`) — not via
123
+ * `ComponentUtility.FindComponentById`, which does not index dimension lines (a
124
+ * dimension line is not a Component). No arena, no quota, stable across
125
+ * undo/redo and across reloads (the record persists with the project). Returned
126
+ * by `design.dimensions.create` and consumed by every other
127
+ * `design.dimensions.*` method.
128
+ */
129
+ export type DimensionHandle = EntityId<"dimension">
130
+
118
131
  /**
119
132
  * A handle to an **asynchronous import job** (today: a DWG → Forge conversion, which
120
133
  * can take minutes). Returned immediately by `core.io.import.dwg`; poll it via
@@ -233,6 +246,17 @@ export const ImportJobHandle = z
233
246
  .min(1)
234
247
  .transform((s) => s as ImportJobHandle)
235
248
 
249
+ /**
250
+ * {@linkcode DimensionHandle} is an entity-style handle — the raw `dim_…` engine
251
+ * id, validated only as a non-empty string (no `"<kind>_"` prefix enforcement),
252
+ * resolved live host-side against the dimension-line registry (existence
253
+ * enforced there, as `HANDLE_INVALID`).
254
+ */
255
+ export const DimensionHandle = z
256
+ .string()
257
+ .min(1)
258
+ .transform((s) => s as DimensionHandle)
259
+
236
260
  // Value-kind handle schemas (all-handle model, §11).
237
261
  export const Vec3Handle = handleSchema("vec3")
238
262
  export const QuatHandle = handleSchema("quat")