@snaptrude/plugin-core 0.9.6 → 0.9.7
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.
- package/CHANGELOG.md +14 -0
- package/api-manifest.full.json +8442 -0
- package/api-manifest.json +162 -6
- package/dist/api/core/io/import/index.d.ts +3 -1
- package/dist/api/core/io/import/index.d.ts.map +1 -1
- package/dist/api/design/create/bulk-items.d.ts +177 -0
- package/dist/api/design/create/bulk-items.d.ts.map +1 -0
- package/dist/api/design/create/index.d.ts +273 -8
- package/dist/api/design/create/index.d.ts.map +1 -1
- package/dist/api/design/create/opening-fields.d.ts +29 -0
- package/dist/api/design/create/opening-fields.d.ts.map +1 -0
- package/dist/api/design/delete/index.d.ts +4 -0
- package/dist/api/design/delete/index.d.ts.map +1 -1
- package/dist/api/design/dimensions.d.ts +427 -0
- package/dist/api/design/dimensions.d.ts.map +1 -0
- package/dist/api/design/index.d.ts +5 -0
- package/dist/api/design/index.d.ts.map +1 -1
- package/dist/api/presentation/annotate.d.ts +2 -2
- package/dist/api/presentation/shapes.d.ts +2 -2
- package/dist/handles.d.ts +19 -0
- package/dist/handles.d.ts.map +1 -1
- package/dist/index.cjs +2006 -1867
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1983 -1867
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/core/io/import/index.ts +11 -3
- package/src/api/design/create/bulk-items.ts +182 -0
- package/src/api/design/create/index.ts +296 -18
- package/src/api/design/create/opening-fields.ts +29 -0
- package/src/api/design/delete/index.ts +4 -0
- package/src/api/design/dimensions.ts +453 -0
- package/src/api/design/index.ts +5 -0
- package/src/handles.ts +24 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as z from "zod"
|
|
2
|
+
import { ComponentHandle, Vec3Handle } from "../../../handles"
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* The shared field bag every hosted opening (door / window) carries — used by
|
|
6
|
+
* {@linkcode PluginDesignCreateOpeningOptions} and by the bulk item schemas in
|
|
7
|
+
* `bulk-items.ts`, so singular and plural openings validate identically.
|
|
8
|
+
*
|
|
9
|
+
* `facing` is a WORLD POINT on the desired side of the wall, not a direction.
|
|
10
|
+
*
|
|
11
|
+
* | Property | Type | Description |
|
|
12
|
+
* |---|---|---|
|
|
13
|
+
* | `catalogId` | `string` | Library id: team `_id` or general `fullName` |
|
|
14
|
+
* | `hostWall` | {@linkcode ComponentHandle} | The wall to host the opening |
|
|
15
|
+
* | `position` | {@linkcode Vec3Handle} | World point projected onto the wall |
|
|
16
|
+
* | `facing` | {@linkcode Vec3Handle}? | World point on the side of the wall the opening faces (default engine-chosen) |
|
|
17
|
+
* | `label` | `string`? | Instance name (optional) |
|
|
18
|
+
* | `width` | `number`? | Width override (Snaptrude units, > 0; default the catalog item's) |
|
|
19
|
+
* | `height` | `number`? | Height override (Snaptrude units, > 0; default the catalog item's) |
|
|
20
|
+
*/
|
|
21
|
+
export const PluginOpeningBaseOptions = {
|
|
22
|
+
catalogId: z.string().min(1),
|
|
23
|
+
hostWall: ComponentHandle,
|
|
24
|
+
position: Vec3Handle,
|
|
25
|
+
facing: Vec3Handle.optional(),
|
|
26
|
+
label: z.string().optional(),
|
|
27
|
+
width: z.number().finite().positive().optional(),
|
|
28
|
+
height: z.number().finite().positive().optional(),
|
|
29
|
+
}
|
|
@@ -39,6 +39,10 @@ export abstract class PluginDesignDeleteApi {
|
|
|
39
39
|
* children are removed and linked-list neighbours are fixed up — not caller-tunable
|
|
40
40
|
* in v1. Undoable — commits as a **single** undo entry.
|
|
41
41
|
*
|
|
42
|
+
* Dimension lines anchored to a deleted entity are removed with it, in the same undo
|
|
43
|
+
* entry, exactly as the editor's Delete key does — see `design.dimensions`. They are
|
|
44
|
+
* NOT listed in `affected`, which reports component handles only.
|
|
45
|
+
*
|
|
42
46
|
* @param components - Entities to delete. Unknown/forged handles reject the whole call (fail-fast).
|
|
43
47
|
* @returns The entities that were deleted, as {@linkcode ComponentHandle}`[]`
|
|
44
48
|
* (echoed host-side from the resolved+deleted set — the engine returns no ids).
|
|
@@ -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
|
+
>
|
package/src/api/design/index.ts
CHANGED
|
@@ -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")
|