@pascal-app/core 1.0.0-beta.5 → 1.0.0
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/LICENSE +21 -0
- package/README.md +23 -0
- package/dist/capture/index.d.ts +3 -0
- package/dist/capture/index.d.ts.map +1 -0
- package/dist/capture/index.js +2 -0
- package/dist/capture/schema.d.ts +417 -0
- package/dist/capture/schema.d.ts.map +1 -0
- package/dist/capture/schema.js +348 -0
- package/dist/capture/source.d.ts +60 -0
- package/dist/capture/source.d.ts.map +1 -0
- package/dist/capture/source.js +254 -0
- package/dist/events/bus.d.ts +55 -7
- package/dist/events/bus.d.ts.map +1 -1
- package/dist/events/hidden-wall-pointer-hold.d.ts +28 -0
- package/dist/events/hidden-wall-pointer-hold.d.ts.map +1 -0
- package/dist/events/hidden-wall-pointer-hold.js +37 -0
- package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts +2785 -1
- package/dist/hooks/spatial-grid/spatial-grid-sync.d.ts.map +1 -1
- package/dist/hooks/spatial-grid/spatial-grid-sync.js +132 -19
- package/dist/hooks/spatial-grid/support-host-patch.d.ts +45 -1
- package/dist/hooks/spatial-grid/support-host-patch.d.ts.map +1 -1
- package/dist/hooks/spatial-grid/support-host-patch.js +171 -6
- package/dist/index.d.ts +14 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +16 -5
- package/dist/lib/asset-storage.d.ts.map +1 -1
- package/dist/lib/asset-storage.js +4 -1
- package/dist/lib/polygon-union.d.ts +4 -0
- package/dist/lib/polygon-union.d.ts.map +1 -0
- package/dist/lib/polygon-union.js +306 -0
- package/dist/lib/roof-overlap.d.ts +32 -0
- package/dist/lib/roof-overlap.d.ts.map +1 -0
- package/dist/lib/roof-overlap.js +72 -0
- package/dist/lib/slab-polygon.d.ts +35 -2
- package/dist/lib/slab-polygon.d.ts.map +1 -1
- package/dist/lib/slab-polygon.js +133 -27
- package/dist/lib/space-detection.d.ts +11 -0
- package/dist/lib/space-detection.d.ts.map +1 -1
- package/dist/lib/space-detection.js +42 -14
- package/dist/registry/handles.d.ts +24 -3
- package/dist/registry/handles.d.ts.map +1 -1
- package/dist/registry/index.d.ts +3 -4
- package/dist/registry/index.d.ts.map +1 -1
- package/dist/registry/index.js +1 -2
- package/dist/registry/registry.d.ts +13 -6
- package/dist/registry/registry.d.ts.map +1 -1
- package/dist/registry/registry.js +37 -4
- package/dist/registry/scene-api.d.ts +16 -0
- package/dist/registry/scene-api.d.ts.map +1 -1
- package/dist/registry/scene-api.js +49 -1
- package/dist/registry/types.d.ts +226 -13
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/schema/__bench__/node-parsers.bench.d.ts +24 -0
- package/dist/schema/__bench__/node-parsers.bench.d.ts.map +1 -0
- package/dist/schema/__bench__/node-parsers.bench.js +314 -0
- package/dist/schema/__fixtures__/node-fixtures.d.ts +28 -0
- package/dist/schema/__fixtures__/node-fixtures.d.ts.map +1 -0
- package/dist/schema/__fixtures__/node-fixtures.js +125 -0
- package/dist/schema/base.d.ts +1 -1
- package/dist/schema/base.d.ts.map +1 -1
- package/dist/schema/base.js +8 -1
- package/dist/schema/compiled-node-parsers.d.ts +40 -0
- package/dist/schema/compiled-node-parsers.d.ts.map +1 -0
- package/dist/schema/compiled-node-parsers.js +95 -0
- package/dist/schema/index.d.ts +19 -15
- package/dist/schema/index.d.ts.map +1 -1
- package/dist/schema/index.js +17 -12
- package/dist/schema/material.d.ts +2 -1
- package/dist/schema/material.d.ts.map +1 -1
- package/dist/schema/material.js +1 -0
- package/dist/schema/nodes/automatic-downspout.d.ts +17 -0
- package/dist/schema/nodes/automatic-downspout.d.ts.map +1 -0
- package/dist/schema/nodes/automatic-downspout.js +237 -0
- package/dist/schema/nodes/block.d.ts +107 -0
- package/dist/schema/nodes/block.d.ts.map +1 -0
- package/dist/schema/nodes/block.js +207 -0
- package/dist/schema/nodes/box-vent.d.ts +8 -2
- package/dist/schema/nodes/box-vent.d.ts.map +1 -1
- package/dist/schema/nodes/box-vent.js +2 -0
- package/dist/schema/nodes/building.d.ts +1 -1
- package/dist/schema/nodes/cabinet.d.ts +25 -3
- package/dist/schema/nodes/cabinet.d.ts.map +1 -1
- package/dist/schema/nodes/cabinet.js +26 -5
- package/dist/schema/nodes/ceiling.d.ts +1 -1
- package/dist/schema/nodes/chimney.d.ts +2 -2
- package/dist/schema/nodes/column.d.ts +6 -6
- package/dist/schema/nodes/construction-dimension.d.ts +4 -4
- package/dist/schema/nodes/cupola.d.ts +9 -1
- package/dist/schema/nodes/cupola.d.ts.map +1 -1
- package/dist/schema/nodes/cupola.js +2 -0
- package/dist/schema/nodes/door.d.ts +1 -1
- package/dist/schema/nodes/dormer.d.ts +44 -1
- package/dist/schema/nodes/dormer.d.ts.map +1 -1
- package/dist/schema/nodes/dormer.js +131 -7
- package/dist/schema/nodes/downspout.d.ts +11 -1
- package/dist/schema/nodes/downspout.d.ts.map +1 -1
- package/dist/schema/nodes/downspout.js +24 -0
- package/dist/schema/nodes/duct-fitting.d.ts +18 -1
- package/dist/schema/nodes/duct-fitting.d.ts.map +1 -1
- package/dist/schema/nodes/duct-fitting.js +25 -4
- package/dist/schema/nodes/duct-segment.d.ts +23 -1
- package/dist/schema/nodes/duct-segment.d.ts.map +1 -1
- package/dist/schema/nodes/duct-segment.js +20 -0
- package/dist/schema/nodes/duct-terminal.d.ts +1 -1
- package/dist/schema/nodes/elevator.d.ts +1 -1
- package/dist/schema/nodes/eyebrow-vent.d.ts +8 -2
- package/dist/schema/nodes/eyebrow-vent.d.ts.map +1 -1
- package/dist/schema/nodes/eyebrow-vent.js +2 -0
- package/dist/schema/nodes/fence.d.ts +1 -1
- package/dist/schema/nodes/guide.d.ts +1 -1
- package/dist/schema/nodes/gutter.d.ts +36 -2
- package/dist/schema/nodes/gutter.d.ts.map +1 -1
- package/dist/schema/nodes/gutter.js +308 -1
- package/dist/schema/nodes/hanger-overrides.d.ts +7 -0
- package/dist/schema/nodes/hanger-overrides.d.ts.map +1 -0
- package/dist/schema/nodes/hanger-overrides.js +6 -0
- package/dist/schema/nodes/hvac-equipment.d.ts +1 -1
- package/dist/schema/nodes/item.d.ts +4 -3
- package/dist/schema/nodes/item.d.ts.map +1 -1
- package/dist/schema/nodes/item.js +5 -0
- package/dist/schema/nodes/lean-to-extension.d.ts +212 -0
- package/dist/schema/nodes/lean-to-extension.d.ts.map +1 -0
- package/dist/schema/nodes/lean-to-extension.js +114 -0
- package/dist/schema/nodes/level.d.ts +2 -2
- package/dist/schema/nodes/level.d.ts.map +1 -1
- package/dist/schema/nodes/lineset.d.ts +1 -1
- package/dist/schema/nodes/liquid-line.d.ts +1 -1
- package/dist/schema/nodes/measurement.d.ts +1 -1
- package/dist/schema/nodes/pipe-fitting.d.ts +9 -1
- package/dist/schema/nodes/pipe-fitting.d.ts.map +1 -1
- package/dist/schema/nodes/pipe-fitting.js +6 -2
- package/dist/schema/nodes/pipe-segment.d.ts +23 -1
- package/dist/schema/nodes/pipe-segment.d.ts.map +1 -1
- package/dist/schema/nodes/pipe-segment.js +20 -0
- package/dist/schema/nodes/pipe-trap.d.ts +1 -1
- package/dist/schema/nodes/ridge-vent.d.ts +1 -1
- package/dist/schema/nodes/ridge-vent.d.ts.map +1 -1
- package/dist/schema/nodes/ridge-vent.js +4 -1
- package/dist/schema/nodes/roof-segment-shape.d.ts +4 -0
- package/dist/schema/nodes/roof-segment-shape.d.ts.map +1 -1
- package/dist/schema/nodes/roof-segment-shape.js +64 -1
- package/dist/schema/nodes/roof-segment-walls.d.ts +3 -1
- package/dist/schema/nodes/roof-segment-walls.d.ts.map +1 -1
- package/dist/schema/nodes/roof-segment-walls.js +1 -1
- package/dist/schema/nodes/roof-segment.d.ts +41 -1
- package/dist/schema/nodes/roof-segment.d.ts.map +1 -1
- package/dist/schema/nodes/roof-segment.js +79 -2
- package/dist/schema/nodes/roof.d.ts +22 -1
- package/dist/schema/nodes/roof.d.ts.map +1 -1
- package/dist/schema/nodes/roof.js +14 -0
- package/dist/schema/nodes/scan.d.ts +19 -2
- package/dist/schema/nodes/scan.d.ts.map +1 -1
- package/dist/schema/nodes/scan.js +11 -1
- package/dist/schema/nodes/shelf.d.ts +2 -2
- package/dist/schema/nodes/site.d.ts +1 -1
- package/dist/schema/nodes/skylight.d.ts +1 -1
- package/dist/schema/nodes/slab.d.ts +1 -1
- package/dist/schema/nodes/solar-panel.d.ts +1 -1
- package/dist/schema/nodes/spawn.d.ts +1 -1
- package/dist/schema/nodes/stair-segment.d.ts +1 -1
- package/dist/schema/nodes/stair.d.ts +1 -1
- package/dist/schema/nodes/structural-grid.d.ts +1 -1
- package/dist/schema/nodes/turbine-vent.d.ts +7 -1
- package/dist/schema/nodes/turbine-vent.d.ts.map +1 -1
- package/dist/schema/nodes/turbine-vent.js +2 -0
- package/dist/schema/nodes/wall.d.ts +4 -4
- package/dist/schema/nodes/wall.d.ts.map +1 -1
- package/dist/schema/nodes/wall.js +7 -1
- package/dist/schema/nodes/window.d.ts +10 -3
- package/dist/schema/nodes/window.d.ts.map +1 -1
- package/dist/schema/nodes/window.js +4 -0
- package/dist/schema/nodes/zone.d.ts +2 -2
- package/dist/schema/nodes/zone.js +1 -1
- package/dist/schema/types.d.ts +484 -109
- package/dist/schema/types.d.ts.map +1 -1
- package/dist/schema/types.js +27 -1
- package/dist/services/hosting.d.ts +2 -2
- package/dist/services/hosting.d.ts.map +1 -1
- package/dist/services/hosting.js +4 -4
- package/dist/services/index.d.ts +1 -1
- package/dist/services/index.d.ts.map +1 -1
- package/dist/services/index.js +1 -1
- package/dist/services/system-graph.d.ts +11 -0
- package/dist/services/system-graph.d.ts.map +1 -1
- package/dist/services/system-graph.js +35 -5
- package/dist/store/actions/node-actions.d.ts +7 -0
- package/dist/store/actions/node-actions.d.ts.map +1 -1
- package/dist/store/actions/node-actions.js +429 -17
- package/dist/store/history-invalidation.d.ts +3 -0
- package/dist/store/history-invalidation.d.ts.map +1 -0
- package/dist/store/history-invalidation.js +72 -0
- package/dist/store/scene-hydration.d.ts +5 -0
- package/dist/store/scene-hydration.d.ts.map +1 -0
- package/dist/store/scene-hydration.js +57 -0
- package/dist/store/use-scene.d.ts +3 -0
- package/dist/store/use-scene.d.ts.map +1 -1
- package/dist/store/use-scene.js +332 -64
- package/dist/systems/roof/roof-elevation-system.d.ts +3 -0
- package/dist/systems/roof/roof-elevation-system.d.ts.map +1 -0
- package/dist/systems/roof/roof-elevation-system.js +94 -0
- package/dist/systems/roof/roof-elevation.d.ts +4 -0
- package/dist/systems/roof/roof-elevation.d.ts.map +1 -0
- package/dist/systems/roof/roof-elevation.js +95 -0
- package/dist/systems/roof/roof-footprint.d.ts +17 -0
- package/dist/systems/roof/roof-footprint.d.ts.map +1 -0
- package/dist/systems/roof/roof-footprint.js +83 -0
- package/dist/systems/stair/stair-flight.d.ts +17 -0
- package/dist/systems/stair/stair-flight.d.ts.map +1 -0
- package/dist/systems/stair/stair-flight.js +27 -0
- package/dist/systems/stair/stair-opening-preview.d.ts +1555 -1328
- package/dist/systems/stair/stair-opening-preview.d.ts.map +1 -1
- package/dist/systems/stair/stair-opening-system.d.ts +1 -0
- package/dist/systems/stair/stair-opening-system.d.ts.map +1 -1
- package/dist/systems/stair/stair-opening-system.js +93 -96
- package/dist/systems/stair/stair-rise.d.ts.map +1 -1
- package/dist/systems/stair/stair-rise.js +20 -21
- package/dist/systems/wall/wall-curve.d.ts +1 -0
- package/dist/systems/wall/wall-curve.d.ts.map +1 -1
- package/dist/systems/wall/wall-curve.js +73 -0
- package/dist/systems/wall/wall-footprint.d.ts +1 -0
- package/dist/systems/wall/wall-footprint.d.ts.map +1 -1
- package/dist/systems/wall/wall-footprint.js +1 -0
- package/dist/utils/clone-scene-graph.d.ts.map +1 -1
- package/dist/utils/clone-scene-graph.js +26 -0
- package/dist/validation/validate-build-json.d.ts +3 -0
- package/dist/validation/validate-build-json.d.ts.map +1 -1
- package/dist/validation/validate-build-json.js +49 -2
- package/package.json +10 -3
- package/dist/systems/elevator/elevator-runtime-system.d.ts +0 -2
- package/dist/systems/elevator/elevator-runtime-system.d.ts.map +0 -1
- package/dist/systems/elevator/elevator-runtime-system.js +0 -8
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stair-opening-preview.d.ts","sourceRoot":"","sources":["../../../src/systems/stair/stair-opening-preview.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AAC7E,OAA6B,EAAE,KAAK,iBAAiB,EAAE,MAAM,qCAAqC,CAAA;AAClG,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAGpE,KAAK,oBAAoB,GAAG;IAC1B,EAAE,EAAE,SAAS,CAAA;IACb,IAAI,EAAE,OAAO,CAAC,QAAQ,GAAG,WAAW,CAAC,CAAA;CACtC,CAAA;AAoBD,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,cAAc,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,EAClD,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,iBAAiB,CAAC,EACrD,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,WAYvC;AAED,wBAAgB,kCAAkC,CAChD,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,cAAc,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,EAClD,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,iBAAiB,CAAC,EACrD,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC
|
|
1
|
+
{"version":3,"file":"stair-opening-preview.d.ts","sourceRoot":"","sources":["../../../src/systems/stair/stair-opening-preview.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AAC7E,OAA6B,EAAE,KAAK,iBAAiB,EAAE,MAAM,qCAAqC,CAAA;AAClG,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAGpE,KAAK,oBAAoB,GAAG;IAC1B,EAAE,EAAE,SAAS,CAAA;IACb,IAAI,EAAE,OAAO,CAAC,QAAQ,GAAG,WAAW,CAAC,CAAA;CACtC,CAAA;AAoBD,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,cAAc,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,EAClD,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,iBAAiB,CAAC,EACrD,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC,WAYvC;AAED,wBAAgB,kCAAkC,CAChD,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC9B,cAAc,EAAE,WAAW,CAAC,MAAM,EAAE,aAAa,CAAC,EAClD,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,iBAAiB,CAAC,EACrD,iBAAiB,EAAE,WAAW,CAAC,MAAM,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwBvC;AAED,wBAAgB,qCAAqC;;mBAUlC,oBAAoB,EAAE;;EAiCxC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stair-opening-system.d.ts","sourceRoot":"","sources":["../../../src/systems/stair/stair-opening-system.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stair-opening-system.d.ts","sourceRoot":"","sources":["../../../src/systems/stair/stair-opening-system.tsx"],"names":[],"mappings":"AA6CA,wBAAgB,0BAA0B,eAsGzC;AAED,eAAO,MAAM,kBAAkB,YAG9B,CAAA"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
import { useEffect
|
|
2
|
+
import { useEffect } from 'react';
|
|
3
3
|
import { pauseSceneHistory, resumeSceneHistory } from '../../store/history-control';
|
|
4
|
+
import { queueSceneNormalization } from '../../store/scene-hydration';
|
|
4
5
|
import useLiveNodeOverrides from '../../store/use-live-node-overrides';
|
|
5
6
|
import useLiveTransforms from '../../store/use-live-transforms';
|
|
6
7
|
import useScene from '../../store/use-scene';
|
|
@@ -29,104 +30,100 @@ function hasOpeningRelevantNodeChange(nextNodes, prevNodes) {
|
|
|
29
30
|
}
|
|
30
31
|
return false;
|
|
31
32
|
}
|
|
32
|
-
export
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
const
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
previewControllerRef.current.apply(updates);
|
|
55
|
-
queueMicrotask(() => {
|
|
56
|
-
syncingPreviewOpeningsRef.current = false;
|
|
57
|
-
});
|
|
58
|
-
};
|
|
59
|
-
const clearPreviewUpdates = () => {
|
|
60
|
-
if (previewControllerRef.current.previewSurfaceIds.size === 0)
|
|
61
|
-
return;
|
|
62
|
-
syncingPreviewOpeningsRef.current = true;
|
|
63
|
-
previewControllerRef.current.clear();
|
|
64
|
-
queueMicrotask(() => {
|
|
65
|
-
syncingPreviewOpeningsRef.current = false;
|
|
66
|
-
});
|
|
67
|
-
};
|
|
68
|
-
const refreshLivePreview = () => {
|
|
69
|
-
if (syncingPreviewOpeningsRef.current)
|
|
70
|
-
return;
|
|
71
|
-
const nodes = useScene.getState().nodes;
|
|
72
|
-
const liveTransforms = useLiveTransforms.getState().transforms;
|
|
73
|
-
const liveOverrides = useLiveNodeOverrides.getState().overrides;
|
|
74
|
-
const previewSurfaceIds = previewControllerRef.current.previewSurfaceIds;
|
|
75
|
-
if (!hasLiveStairOpeningInputs(nodes, liveTransforms, liveOverrides, previewSurfaceIds)) {
|
|
76
|
-
clearPreviewUpdates();
|
|
77
|
-
return;
|
|
78
|
-
}
|
|
79
|
-
applyPreviewUpdates(syncAutoStairOpenings(getNodesWithLiveStairOpeningInputs(nodes, liveTransforms, liveOverrides, previewSurfaceIds)));
|
|
80
|
-
};
|
|
81
|
-
const runAutoSync = () => {
|
|
82
|
-
// Rise first: straight stairs converge their flight heights to the
|
|
83
|
-
// resolved rise (level height or deck elevation), and the opening pass
|
|
84
|
-
// reads those segment heights — so it must run against the post-rise
|
|
85
|
-
// nodes.
|
|
86
|
-
applyUpdates(syncStairRises(useScene.getState().nodes));
|
|
87
|
-
applyUpdates(syncAutoStairOpenings(useScene.getState().nodes));
|
|
88
|
-
};
|
|
89
|
-
let disposed = false;
|
|
90
|
-
let autoSyncQueued = false;
|
|
91
|
-
const scheduleAutoSync = () => {
|
|
92
|
-
if (autoSyncQueued)
|
|
93
|
-
return;
|
|
94
|
-
autoSyncQueued = true;
|
|
95
|
-
// One microtask later so every other scene-store listener for the
|
|
96
|
-
// triggering transition (and, at mount, the editor's spatial-grid
|
|
97
|
-
// init) runs first — the spatial-grid sync in particular. The
|
|
98
|
-
// deck-attached rise elects the stair's floor-stack base elevation
|
|
99
|
-
// through the spatial grid; syncing before the grid listener would
|
|
100
|
-
// rescale flights against the pre-transition slab state.
|
|
101
|
-
queueMicrotask(() => {
|
|
102
|
-
autoSyncQueued = false;
|
|
103
|
-
if (disposed)
|
|
104
|
-
return;
|
|
105
|
-
runAutoSync();
|
|
106
|
-
refreshLivePreview();
|
|
107
|
-
});
|
|
108
|
-
};
|
|
109
|
-
scheduleAutoSync();
|
|
110
|
-
const unsubscribeScene = useScene.subscribe((state, prevState) => {
|
|
111
|
-
if (syncingAutoOpeningsRef.current)
|
|
112
|
-
return;
|
|
113
|
-
if (!hasOpeningRelevantNodeChange(state.nodes, prevState.nodes))
|
|
114
|
-
return;
|
|
115
|
-
scheduleAutoSync();
|
|
33
|
+
export function initializeStairOpeningSync() {
|
|
34
|
+
let syncingAutoOpenings = false;
|
|
35
|
+
let syncingPreviewOpenings = false;
|
|
36
|
+
const previewController = createSurfaceOpeningPreviewController();
|
|
37
|
+
const applyUpdates = (updates) => {
|
|
38
|
+
if (updates.length === 0)
|
|
39
|
+
return;
|
|
40
|
+
syncingAutoOpenings = true;
|
|
41
|
+
pauseSceneHistory(useScene);
|
|
42
|
+
try {
|
|
43
|
+
useScene.getState().updateNodes(updates);
|
|
44
|
+
}
|
|
45
|
+
finally {
|
|
46
|
+
resumeSceneHistory(useScene);
|
|
47
|
+
syncingAutoOpenings = false;
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
const applyPreviewUpdates = (updates) => {
|
|
51
|
+
syncingPreviewOpenings = true;
|
|
52
|
+
previewController.apply(updates);
|
|
53
|
+
queueMicrotask(() => {
|
|
54
|
+
syncingPreviewOpenings = false;
|
|
116
55
|
});
|
|
117
|
-
|
|
118
|
-
|
|
56
|
+
};
|
|
57
|
+
const clearPreviewUpdates = () => {
|
|
58
|
+
if (previewController.previewSurfaceIds.size === 0)
|
|
59
|
+
return;
|
|
60
|
+
syncingPreviewOpenings = true;
|
|
61
|
+
previewController.clear();
|
|
62
|
+
queueMicrotask(() => {
|
|
63
|
+
syncingPreviewOpenings = false;
|
|
119
64
|
});
|
|
120
|
-
|
|
65
|
+
};
|
|
66
|
+
const refreshLivePreview = () => {
|
|
67
|
+
if (syncingPreviewOpenings)
|
|
68
|
+
return;
|
|
69
|
+
const nodes = useScene.getState().nodes;
|
|
70
|
+
const liveTransforms = useLiveTransforms.getState().transforms;
|
|
71
|
+
const liveOverrides = useLiveNodeOverrides.getState().overrides;
|
|
72
|
+
const previewSurfaceIds = previewController.previewSurfaceIds;
|
|
73
|
+
if (!hasLiveStairOpeningInputs(nodes, liveTransforms, liveOverrides, previewSurfaceIds)) {
|
|
74
|
+
clearPreviewUpdates();
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
applyPreviewUpdates(syncAutoStairOpenings(getNodesWithLiveStairOpeningInputs(nodes, liveTransforms, liveOverrides, previewSurfaceIds)));
|
|
78
|
+
};
|
|
79
|
+
const runAutoSync = () => {
|
|
80
|
+
// Rise first: straight stairs converge their flight heights to the
|
|
81
|
+
// resolved rise (level height or deck elevation), and the opening pass
|
|
82
|
+
// reads those segment heights — so it must run against the post-rise
|
|
83
|
+
// nodes.
|
|
84
|
+
applyUpdates(syncStairRises(useScene.getState().nodes));
|
|
85
|
+
applyUpdates(syncAutoStairOpenings(useScene.getState().nodes));
|
|
86
|
+
};
|
|
87
|
+
let disposed = false;
|
|
88
|
+
let syncGeneration = 0;
|
|
89
|
+
const scheduleAutoSync = () => {
|
|
90
|
+
const generation = ++syncGeneration;
|
|
91
|
+
// One microtask later so every other scene-store listener for the
|
|
92
|
+
// triggering transition (and, at mount, the editor's spatial-grid
|
|
93
|
+
// init) runs first — the spatial-grid sync in particular. The
|
|
94
|
+
// deck-attached rise elects the stair's floor-stack base elevation
|
|
95
|
+
// through the spatial grid; syncing before the grid listener would
|
|
96
|
+
// rescale flights against the pre-transition slab state.
|
|
97
|
+
queueSceneNormalization(() => {
|
|
98
|
+
if (disposed || generation !== syncGeneration)
|
|
99
|
+
return;
|
|
100
|
+
runAutoSync();
|
|
121
101
|
refreshLivePreview();
|
|
122
102
|
});
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
103
|
+
};
|
|
104
|
+
scheduleAutoSync();
|
|
105
|
+
const unsubscribeScene = useScene.subscribe((state, prevState) => {
|
|
106
|
+
if (syncingAutoOpenings)
|
|
107
|
+
return;
|
|
108
|
+
if (!hasOpeningRelevantNodeChange(state.nodes, prevState.nodes))
|
|
109
|
+
return;
|
|
110
|
+
scheduleAutoSync();
|
|
111
|
+
});
|
|
112
|
+
const unsubscribeLiveTransforms = useLiveTransforms.subscribe(() => {
|
|
113
|
+
refreshLivePreview();
|
|
114
|
+
});
|
|
115
|
+
const unsubscribeLiveOverrides = useLiveNodeOverrides.subscribe(() => {
|
|
116
|
+
refreshLivePreview();
|
|
117
|
+
});
|
|
118
|
+
return () => {
|
|
119
|
+
disposed = true;
|
|
120
|
+
unsubscribeScene();
|
|
121
|
+
unsubscribeLiveTransforms();
|
|
122
|
+
unsubscribeLiveOverrides();
|
|
123
|
+
previewController.clear();
|
|
124
|
+
};
|
|
125
|
+
}
|
|
126
|
+
export const StairOpeningSystem = () => {
|
|
127
|
+
useEffect(() => initializeStairOpeningSync(), []);
|
|
131
128
|
return null;
|
|
132
129
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stair-rise.d.ts","sourceRoot":"","sources":["../../../src/systems/stair/stair-rise.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAoB,MAAM,cAAc,CAAA;AAInF,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"stair-rise.d.ts","sourceRoot":"","sources":["../../../src/systems/stair/stair-rise.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,SAAS,EAAoB,MAAM,cAAc,CAAA;AAInF,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CA+B9F;AAID;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,cAAc,CAC5B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,KAAK,CAAC;IAAE,EAAE,EAAE,SAAS,CAAC;IAAC,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,CAAA;CAAE,CAAC,CAgClD"}
|
|
@@ -5,31 +5,30 @@ export function resolveStairTotalRise(stair, nodes) {
|
|
|
5
5
|
if (stair.totalRise !== undefined)
|
|
6
6
|
return stair.totalRise;
|
|
7
7
|
const level = Object.values(nodes).find((node) => node.type === 'level' && node.children.includes(stair.id));
|
|
8
|
+
// Both destinations are absolute level-local heights, while the stair's own
|
|
9
|
+
// base may be lifted onto a floor slab by the floor-stack
|
|
10
|
+
// (`FloorElevationSystem` / `syncStairGroupElevation` put the group at
|
|
11
|
+
// `position[1] + elected slab elevation`). The rise is measured from that
|
|
12
|
+
// base, so subtract it — electing the base exactly the way the visual
|
|
13
|
+
// systems do (persisted `supportSlabId` honored, uncapped election
|
|
14
|
+
// otherwise) keeps base + rise landing precisely on the destination surface.
|
|
15
|
+
const baseElevation = getFloorStackedPosition({
|
|
16
|
+
node: stair,
|
|
17
|
+
nodes,
|
|
18
|
+
position: stair.position,
|
|
19
|
+
rotation: stair.rotation,
|
|
20
|
+
levelId: level?.id ?? null,
|
|
21
|
+
})[1];
|
|
8
22
|
if (stair.deckSlabId) {
|
|
23
|
+
// The deck's `elevation` IS its walking surface (level-local). A stale
|
|
24
|
+
// reference (deck gone) falls through to the level-derived rise.
|
|
9
25
|
const deck = nodes[stair.deckSlabId];
|
|
10
|
-
|
|
11
|
-
// stair's own base may be lifted onto a floor slab by the floor-stack
|
|
12
|
-
// (`FloorElevationSystem` / `syncStairGroupElevation` put the group at
|
|
13
|
-
// `position[1] + elected slab elevation`). The rise is measured from
|
|
14
|
-
// that base, so subtract it — electing the base exactly the way the
|
|
15
|
-
// visual systems do (persisted `supportSlabId` honored, uncapped
|
|
16
|
-
// election otherwise) keeps base + rise landing precisely on the deck's
|
|
17
|
-
// walking surface. A stale reference (deck gone) falls through to the
|
|
18
|
-
// level-derived rise.
|
|
19
|
-
if (deck?.type === 'slab') {
|
|
20
|
-
const baseElevation = getFloorStackedPosition({
|
|
21
|
-
node: stair,
|
|
22
|
-
nodes,
|
|
23
|
-
position: stair.position,
|
|
24
|
-
rotation: stair.rotation,
|
|
25
|
-
levelId: level?.id ?? null,
|
|
26
|
-
})[1];
|
|
26
|
+
if (deck?.type === 'slab')
|
|
27
27
|
return (deck.elevation ?? 0.05) - baseElevation;
|
|
28
|
-
}
|
|
29
28
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
if (level?.type !== 'level')
|
|
30
|
+
return DEFAULT_LEVEL_HEIGHT;
|
|
31
|
+
return getLevelFloorToFloorHeight(level.id, nodes) - baseElevation;
|
|
33
32
|
}
|
|
34
33
|
const RISE_SYNC_EPSILON = 1e-4;
|
|
35
34
|
/**
|
|
@@ -47,6 +47,7 @@ export declare function getWallArcData(wall: WallCurveLike): {
|
|
|
47
47
|
export declare function getWallCurveFrameAt(wall: WallCurveLike, t: number): CurveFrame;
|
|
48
48
|
export declare function getWallMidpointHandlePoint(wall: WallCurveLike): Point2D;
|
|
49
49
|
export declare function sampleWallCenterline(wall: WallCurveLike, segments?: number): Point2D[];
|
|
50
|
+
export declare function constrainWallCurveOffsetToAvoidIntersections(wall: WallNode, proposedOffset: number, walls: readonly WallNode[]): number;
|
|
50
51
|
export declare function getWallCurveLength(wall: WallCurveLike, segments?: number): number;
|
|
51
52
|
export declare function getWallSurfacePolygon(wall: Pick<WallNode | FenceNode, 'start' | 'end' | 'curveOffset' | 'thickness'>, segments?: number, miterOverrides?: WallSurfaceMiterOverrides): Point2D[];
|
|
52
53
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wall-curve.d.ts","sourceRoot":"","sources":["../../../src/systems/wall/wall-curve.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AACvD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;
|
|
1
|
+
{"version":3,"file":"wall-curve.d.ts","sourceRoot":"","sources":["../../../src/systems/wall/wall-curve.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AACvD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAA;AAO9C,KAAK,aAAa,GAAG,IAAI,CAAC,QAAQ,GAAG,SAAS,EAAE,OAAO,GAAG,KAAK,GAAG,aAAa,CAAC,CAAA;AAEhF,KAAK,UAAU,GAAG;IAChB,KAAK,EAAE,OAAO,CAAA;IACd,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,OAAO,CAAA;CAChB,CAAA;AAED,KAAK,yBAAyB,GAAG;IAC/B,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAcD,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,aAAa,GAAG,OAAO,CAE9D;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,aAAa,GAAG,OAAO,CAE5D;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,aAAa,UAErD;AAED,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,aAAa,UAExD;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,aAAa,UAE5D;AAWD,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,UAG3E;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,aAAa,UAI5D;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,aAAa,WAE/C;AAED,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,aAAa;;;;;;;;;;;;;EA6BpD;AAED,wBAAgB,cAAc,CAAC,IAAI,EAAE,aAAa;;;;;;;;;SA2BjD;AAED,wBAAgB,mBAAmB,CAAC,IAAI,EAAE,aAAa,EAAE,CAAC,EAAE,MAAM,GAAG,UAAU,CAwC9E;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,aAAa,WAE7D;AAED,wBAAgB,oBAAoB,CAAC,IAAI,EAAE,aAAa,EAAE,QAAQ,SAA0B,aAM3F;AAgED,wBAAgB,4CAA4C,CAC1D,IAAI,EAAE,QAAQ,EACd,cAAc,EAAE,MAAM,EACtB,KAAK,EAAE,SAAS,QAAQ,EAAE,UAoB3B;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,aAAa,EAAE,QAAQ,SAA0B,UASzF;AAED,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,IAAI,CAAC,QAAQ,GAAG,SAAS,EAAE,OAAO,GAAG,KAAK,GAAG,aAAa,GAAG,WAAW,CAAC,EAC/E,QAAQ,SAA0B,EAClC,cAAc,CAAC,EAAE,yBAAyB,aA2B3C"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
const CURVE_EPSILON = 1e-6;
|
|
2
2
|
const DEFAULT_SAMPLE_SEGMENTS = 24;
|
|
3
|
+
const CURVE_INTERSECTION_SEARCH_STEPS = 20;
|
|
4
|
+
const CURVE_INTERSECTION_TOLERANCE = 1e-6;
|
|
3
5
|
function clamp01(value) {
|
|
4
6
|
return Math.max(0, Math.min(1, value));
|
|
5
7
|
}
|
|
@@ -142,6 +144,77 @@ export function sampleWallCenterline(wall, segments = DEFAULT_SAMPLE_SEGMENTS) {
|
|
|
142
144
|
const count = Math.max(1, segments);
|
|
143
145
|
return Array.from({ length: count + 1 }, (_, index) => getWallCurveFrameAt(wall, index / count).point);
|
|
144
146
|
}
|
|
147
|
+
function segmentIntersectionPoint(a, b, c, d) {
|
|
148
|
+
const abX = b.x - a.x;
|
|
149
|
+
const abY = b.y - a.y;
|
|
150
|
+
const cdX = d.x - c.x;
|
|
151
|
+
const cdY = d.y - c.y;
|
|
152
|
+
const denominator = abX * cdY - abY * cdX;
|
|
153
|
+
if (Math.abs(denominator) <= CURVE_INTERSECTION_TOLERANCE)
|
|
154
|
+
return null;
|
|
155
|
+
const acX = c.x - a.x;
|
|
156
|
+
const acY = c.y - a.y;
|
|
157
|
+
const t = (acX * cdY - acY * cdX) / denominator;
|
|
158
|
+
const u = (acX * abY - acY * abX) / denominator;
|
|
159
|
+
if (t < -CURVE_INTERSECTION_TOLERANCE ||
|
|
160
|
+
t > 1 + CURVE_INTERSECTION_TOLERANCE ||
|
|
161
|
+
u < -CURVE_INTERSECTION_TOLERANCE ||
|
|
162
|
+
u > 1 + CURVE_INTERSECTION_TOLERANCE) {
|
|
163
|
+
return null;
|
|
164
|
+
}
|
|
165
|
+
return { x: a.x + t * abX, y: a.y + t * abY };
|
|
166
|
+
}
|
|
167
|
+
function pointMatchesEndpoint(point, wall) {
|
|
168
|
+
return [getWallStartPoint(wall), getWallEndPoint(wall)].some((endpoint) => distance(point, endpoint) <= CURVE_INTERSECTION_TOLERANCE);
|
|
169
|
+
}
|
|
170
|
+
function wallCurveIntersectsSibling(wall, sibling) {
|
|
171
|
+
const wallPoints = sampleWallCenterline(wall);
|
|
172
|
+
const siblingPoints = sampleWallCenterline(sibling);
|
|
173
|
+
for (let wallIndex = 0; wallIndex < wallPoints.length - 1; wallIndex += 1) {
|
|
174
|
+
const wallStart = wallPoints[wallIndex];
|
|
175
|
+
const wallEnd = wallPoints[wallIndex + 1];
|
|
176
|
+
for (let siblingIndex = 0; siblingIndex < siblingPoints.length - 1; siblingIndex += 1) {
|
|
177
|
+
const siblingStart = siblingPoints[siblingIndex];
|
|
178
|
+
const siblingEnd = siblingPoints[siblingIndex + 1];
|
|
179
|
+
const intersection = segmentIntersectionPoint(wallStart, wallEnd, siblingStart, siblingEnd);
|
|
180
|
+
if (!intersection)
|
|
181
|
+
continue;
|
|
182
|
+
if (pointMatchesEndpoint(intersection, wall) && pointMatchesEndpoint(intersection, sibling)) {
|
|
183
|
+
continue;
|
|
184
|
+
}
|
|
185
|
+
return true;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
return false;
|
|
189
|
+
}
|
|
190
|
+
function wallCurveIntersectsSiblings(wall, walls) {
|
|
191
|
+
if (!isCurvedWall(wall))
|
|
192
|
+
return false;
|
|
193
|
+
return walls.some((sibling) => sibling.id !== wall.id &&
|
|
194
|
+
sibling.parentId === wall.parentId &&
|
|
195
|
+
wallCurveIntersectsSibling(wall, sibling));
|
|
196
|
+
}
|
|
197
|
+
export function constrainWallCurveOffsetToAvoidIntersections(wall, proposedOffset, walls) {
|
|
198
|
+
const currentOffset = normalizeWallCurveOffset(wall, wall.curveOffset ?? 0);
|
|
199
|
+
const normalizedProposal = normalizeWallCurveOffset(wall, proposedOffset);
|
|
200
|
+
const proposedWall = { ...wall, curveOffset: normalizedProposal };
|
|
201
|
+
if (!wallCurveIntersectsSiblings(proposedWall, walls))
|
|
202
|
+
return normalizedProposal;
|
|
203
|
+
const currentWall = { ...wall, curveOffset: currentOffset };
|
|
204
|
+
if (wallCurveIntersectsSiblings(currentWall, walls))
|
|
205
|
+
return currentOffset;
|
|
206
|
+
let safeOffset = currentOffset;
|
|
207
|
+
let blockedOffset = normalizedProposal;
|
|
208
|
+
for (let index = 0; index < CURVE_INTERSECTION_SEARCH_STEPS; index += 1) {
|
|
209
|
+
const candidateOffset = (safeOffset + blockedOffset) / 2;
|
|
210
|
+
const candidateWall = { ...wall, curveOffset: candidateOffset };
|
|
211
|
+
if (wallCurveIntersectsSiblings(candidateWall, walls))
|
|
212
|
+
blockedOffset = candidateOffset;
|
|
213
|
+
else
|
|
214
|
+
safeOffset = candidateOffset;
|
|
215
|
+
}
|
|
216
|
+
return normalizeWallCurveOffset(wall, safeOffset);
|
|
217
|
+
}
|
|
145
218
|
export function getWallCurveLength(wall, segments = DEFAULT_SAMPLE_SEGMENTS) {
|
|
146
219
|
const points = sampleWallCenterline(wall, segments);
|
|
147
220
|
let totalLength = 0;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { WallNode } from '../../schema';
|
|
2
2
|
import { type Point2D, type WallMiterData } from './wall-mitering';
|
|
3
|
+
export { calculateLevelMiters, type Point2D, type WallMiterData } from './wall-mitering';
|
|
3
4
|
export declare const DEFAULT_WALL_THICKNESS = 0.1;
|
|
4
5
|
export declare const DEFAULT_WALL_HEIGHT = 2.5;
|
|
5
6
|
export declare function getWallThickness(wallNode: WallNode): number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wall-footprint.d.ts","sourceRoot":"","sources":["../../../src/systems/wall/wall-footprint.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AAE5C,OAAO,EAEL,KAAK,OAAO,EAEZ,KAAK,aAAa,EACnB,MAAM,iBAAiB,CAAA;AAExB,eAAO,MAAM,sBAAsB,MAAM,CAAA;AACzC,eAAO,MAAM,mBAAmB,MAAM,CAAA;AAGtC,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,CAE3D;AAED,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,GAAG,OAAO,EAAE,CA6D5F"}
|
|
1
|
+
{"version":3,"file":"wall-footprint.d.ts","sourceRoot":"","sources":["../../../src/systems/wall/wall-footprint.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AAE5C,OAAO,EAEL,KAAK,OAAO,EAEZ,KAAK,aAAa,EACnB,MAAM,iBAAiB,CAAA;AAExB,OAAO,EAAE,oBAAoB,EAAE,KAAK,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAExF,eAAO,MAAM,sBAAsB,MAAM,CAAA;AACzC,eAAO,MAAM,mBAAmB,MAAM,CAAA;AAGtC,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,GAAG,MAAM,CAE3D;AAED,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,GAAG,OAAO,EAAE,CA6D5F"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { getWallSurfacePolygon, isCurvedWall } from './wall-curve';
|
|
2
2
|
import { getWallMiterBoundaryPoints, pointToKey, } from './wall-mitering';
|
|
3
|
+
export { calculateLevelMiters } from './wall-mitering';
|
|
3
4
|
export const DEFAULT_WALL_THICKNESS = 0.1;
|
|
4
5
|
export const DEFAULT_WALL_HEIGHT = 2.5;
|
|
5
6
|
const CURVED_WALL_SURFACE_SEGMENTS = 24;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clone-scene-graph.d.ts","sourceRoot":"","sources":["../../src/utils/clone-scene-graph.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAEnD,OAAO,KAAK,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACrE,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAE9E,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;IACjC,WAAW,EAAE,SAAS,EAAE,CAAA;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC,YAAY,EAAE,UAAU,CAAC,CAAA;IAC9C,SAAS,CAAC,EAAE,MAAM,CAAC,eAAe,EAAE,aAAa,CAAC,CAAA;IAClD,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;CAC5B,CAAA;AAUD;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAAC,UAAU,EAAE,UAAU,GAAG,UAAU,
|
|
1
|
+
{"version":3,"file":"clone-scene-graph.d.ts","sourceRoot":"","sources":["../../src/utils/clone-scene-graph.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAA;AAEnD,OAAO,KAAK,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACrE,OAAO,KAAK,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAE9E,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,EAAE,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;IACjC,WAAW,EAAE,SAAS,EAAE,CAAA;IACxB,WAAW,CAAC,EAAE,MAAM,CAAC,YAAY,EAAE,UAAU,CAAC,CAAA;IAC9C,SAAS,CAAC,EAAE,MAAM,CAAC,eAAe,EAAE,aAAa,CAAC,CAAA;IAClD,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;CAC5B,CAAA;AAUD;;;;;;;;GAQG;AACH,wBAAgB,eAAe,CAAC,UAAU,EAAE,UAAU,GAAG,UAAU,CA8JlE;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,iBAAiB,CAC/B,KAAK,EAAE,MAAM,CAAC,SAAS,EAAE,OAAO,CAAC,EACjC,OAAO,EAAE,SAAS,GACjB;IAAE,WAAW,EAAE,OAAO,EAAE,CAAC;IAAC,UAAU,EAAE,SAAS,CAAC;IAAC,KAAK,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAAE,CAqH/E;AAED,MAAM,MAAM,qBAAqB,GAAG;IAClC,aAAa,CAAC,EAAE,OAAO,CAAA;CACxB,CAAA;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAC5B,UAAU,EAAE,UAAU,EACtB,OAAO,GAAE,qBAA0B,GAClC,UAAU,CA0EZ"}
|
|
@@ -64,6 +64,18 @@ export function cloneSceneGraph(sceneGraph) {
|
|
|
64
64
|
;
|
|
65
65
|
clonedNode.roofSegmentId = idMap.get(clonedNode.roofSegmentId);
|
|
66
66
|
}
|
|
67
|
+
if ('hostRoofId' in clonedNode && typeof clonedNode.hostRoofId === 'string') {
|
|
68
|
+
;
|
|
69
|
+
clonedNode.hostRoofId = idMap.get(clonedNode.hostRoofId);
|
|
70
|
+
}
|
|
71
|
+
if ('hostRoofSegmentId' in clonedNode && typeof clonedNode.hostRoofSegmentId === 'string') {
|
|
72
|
+
;
|
|
73
|
+
clonedNode.hostRoofSegmentId = idMap.get(clonedNode.hostRoofSegmentId);
|
|
74
|
+
}
|
|
75
|
+
if (clonedNode.type === 'roof' && clonedNode.support?.kind === 'roof') {
|
|
76
|
+
clonedNode.support.roofSegmentId = (idMap.get(clonedNode.support.roofSegmentId) ??
|
|
77
|
+
clonedNode.support.roofSegmentId);
|
|
78
|
+
}
|
|
67
79
|
// Remap supportSlabId (persisted slab-support hosts). The 'ground'
|
|
68
80
|
// sentinel is not a node id — keep it as-is.
|
|
69
81
|
if ('supportSlabId' in clonedNode &&
|
|
@@ -223,6 +235,20 @@ export function cloneLevelSubtree(nodes, levelId) {
|
|
|
223
235
|
cloned.roofSegmentId =
|
|
224
236
|
idMap.get(cloned.roofSegmentId) ?? cloned.roofSegmentId;
|
|
225
237
|
}
|
|
238
|
+
if ('hostRoofId' in cloned && typeof cloned.hostRoofId === 'string') {
|
|
239
|
+
;
|
|
240
|
+
cloned.hostRoofId =
|
|
241
|
+
idMap.get(cloned.hostRoofId) ?? cloned.hostRoofId;
|
|
242
|
+
}
|
|
243
|
+
if ('hostRoofSegmentId' in cloned && typeof cloned.hostRoofSegmentId === 'string') {
|
|
244
|
+
;
|
|
245
|
+
cloned.hostRoofSegmentId =
|
|
246
|
+
idMap.get(cloned.hostRoofSegmentId) ?? cloned.hostRoofSegmentId;
|
|
247
|
+
}
|
|
248
|
+
if (cloned.type === 'roof' && cloned.support?.kind === 'roof') {
|
|
249
|
+
cloned.support.roofSegmentId = (idMap.get(cloned.support.roofSegmentId) ??
|
|
250
|
+
cloned.support.roofSegmentId);
|
|
251
|
+
}
|
|
226
252
|
// Remap supportSlabId when the host slab is inside the cloned subtree;
|
|
227
253
|
// preserve it otherwise (like wallId, the reference may point outside).
|
|
228
254
|
if ('supportSlabId' in cloned && typeof cloned.supportSlabId === 'string') {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SceneMaterial } from '../schema/scene-material';
|
|
1
2
|
import { type AnyNodeType } from '../schema/types';
|
|
2
3
|
export type ValidationSeverity = 'error' | 'warning';
|
|
3
4
|
export type ValidationIssue = {
|
|
@@ -18,6 +19,8 @@ export type ParsedBuildJson = {
|
|
|
18
19
|
nodes: Record<string, unknown>;
|
|
19
20
|
rootNodeIds: string[];
|
|
20
21
|
installedPlugins?: string[];
|
|
22
|
+
/** Scene materials referenced by node `slots` (`scene:<id>`). */
|
|
23
|
+
materials?: Record<string, SceneMaterial>;
|
|
21
24
|
};
|
|
22
25
|
export type SchemaIssue = {
|
|
23
26
|
nodeId: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validate-build-json.d.ts","sourceRoot":"","sources":["../../src/validation/validate-build-json.ts"],"names":[],"mappings":"AACA,OAAO,EAAW,KAAK,WAAW,
|
|
1
|
+
{"version":3,"file":"validate-build-json.d.ts","sourceRoot":"","sources":["../../src/validation/validate-build-json.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AACxD,OAAO,EAAW,KAAK,WAAW,EAAc,MAAM,iBAAiB,CAAA;AAGvE,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,SAAS,CAAA;AAEpD,MAAM,MAAM,eAAe,GAAG;IAC5B,QAAQ,EAAE,kBAAkB,CAAA;IAC5B,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACvB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,WAAW,EAAE,MAAM,CAAC,CAAC,CAAA;IAC5C,iFAAiF;IACjF,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACnC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACpC,WAAW,EAAE,MAAM,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC5B,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAC9B,WAAW,EAAE,MAAM,EAAE,CAAA;IACrB,gBAAgB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC3B,iEAAiE;IACjE,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,aAAa,CAAC,CAAA;CAC1C,CAAA;AAED,MAAM,MAAM,WAAW,GAAG;IACxB,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,EAAE,EAAE,OAAO,CAAA;IACX,MAAM,EAAE,eAAe,GAAG,IAAI,CAAA;IAC9B,KAAK,EAAE,UAAU,CAAA;IACjB,MAAM,EAAE,eAAe,EAAE,CAAA;IACzB,QAAQ,EAAE,eAAe,EAAE,CAAA;IAC3B,YAAY,EAAE,WAAW,EAAE,CAAA;IAC3B,gBAAgB,EAAE,MAAM,CAAA;CACzB,CAAA;AA4BD;;;;;;;GAOG;AACH,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,OAAO,GAAG,uBAAuB,CA4VzE"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { nodeRegistry } from '../registry';
|
|
2
|
-
import {
|
|
2
|
+
import { SceneMaterial } from '../schema/scene-material';
|
|
3
|
+
import { AnyNode, nodeKindOf } from '../schema/types';
|
|
3
4
|
import { healSceneNodes } from '../utils/heal-scene-graph';
|
|
4
|
-
const KNOWN_TYPES = new Set(AnyNode.options.map(
|
|
5
|
+
const KNOWN_TYPES = new Set(AnyNode.options.map(nodeKindOf));
|
|
5
6
|
function isPlainObject(value) {
|
|
6
7
|
return typeof value === 'object' && value !== null && !Array.isArray(value);
|
|
7
8
|
}
|
|
@@ -61,6 +62,7 @@ export function validateBuildJson(input) {
|
|
|
61
62
|
const nodesRaw = input.nodes;
|
|
62
63
|
const rootNodeIdsRaw = input.rootNodeIds;
|
|
63
64
|
const installedPluginsRaw = input.installedPlugins;
|
|
65
|
+
const materialsRaw = input.materials;
|
|
64
66
|
if (!isPlainObject(nodesRaw)) {
|
|
65
67
|
errors.push({
|
|
66
68
|
severity: 'error',
|
|
@@ -102,6 +104,50 @@ export function validateBuildJson(input) {
|
|
|
102
104
|
message: 'Ignored invalid "installedPlugins" — expected an array of plugin IDs.',
|
|
103
105
|
});
|
|
104
106
|
}
|
|
107
|
+
// Scene materials ride along with the graph: nodes reference them by
|
|
108
|
+
// `scene:<id>` slot refs, so dropping the table here silently strips
|
|
109
|
+
// every custom finish from the imported scene. Invalid entries are
|
|
110
|
+
// skipped one by one — a bad material must not take the import down.
|
|
111
|
+
//
|
|
112
|
+
// DELIBERATE: `safeParse().data` NORMALIZES — defaults are injected
|
|
113
|
+
// and unknown keys dropped. That is the opposite of the API boundary
|
|
114
|
+
// (`apiGraphSchema` preserves unknown fields on purpose), and it is
|
|
115
|
+
// chosen here because import feeds the live scene store, which only
|
|
116
|
+
// understands schema-shaped materials; a hand-edited file with a
|
|
117
|
+
// half-formed material should land as something the renderer can
|
|
118
|
+
// draw, not round-trip garbage.
|
|
119
|
+
let materials;
|
|
120
|
+
if (isPlainObject(materialsRaw)) {
|
|
121
|
+
const skippedIds = [];
|
|
122
|
+
const kept = {};
|
|
123
|
+
for (const [id, value] of Object.entries(materialsRaw)) {
|
|
124
|
+
const result = SceneMaterial.safeParse(value);
|
|
125
|
+
if (result.success) {
|
|
126
|
+
kept[id] = result.data;
|
|
127
|
+
}
|
|
128
|
+
else {
|
|
129
|
+
skippedIds.push(id);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
if (Object.keys(kept).length > 0)
|
|
133
|
+
materials = kept;
|
|
134
|
+
if (skippedIds.length > 0) {
|
|
135
|
+
// Name the ids: the audience is hand-edited files, and a count
|
|
136
|
+
// alone leaves nothing to repair by.
|
|
137
|
+
warnings.push({
|
|
138
|
+
severity: 'warning',
|
|
139
|
+
code: 'invalid_materials',
|
|
140
|
+
message: `Ignored ${skippedIds.length} invalid scene material${skippedIds.length === 1 ? '' : 's'}: ${skippedIds.join(', ')}.`,
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
else if (materialsRaw !== undefined) {
|
|
145
|
+
warnings.push({
|
|
146
|
+
severity: 'warning',
|
|
147
|
+
code: 'invalid_materials',
|
|
148
|
+
message: 'Ignored invalid "materials" — expected an object of id → material.',
|
|
149
|
+
});
|
|
150
|
+
}
|
|
105
151
|
if (strippedChildRefs > 0 || droppedWallIds.length > 0) {
|
|
106
152
|
warnings.push({
|
|
107
153
|
severity: 'warning',
|
|
@@ -301,6 +347,7 @@ export function validateBuildJson(input) {
|
|
|
301
347
|
nodes,
|
|
302
348
|
rootNodeIds,
|
|
303
349
|
...(installedPlugins ? { installedPlugins } : {}),
|
|
350
|
+
...(materials ? { materials } : {}),
|
|
304
351
|
}
|
|
305
352
|
: null,
|
|
306
353
|
stats,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pascal-app/core",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Core library for Pascal 3D building editor",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,6 +21,11 @@
|
|
|
21
21
|
"import": "./dist/utils/scene-migrations.js",
|
|
22
22
|
"default": "./dist/utils/scene-migrations.js"
|
|
23
23
|
},
|
|
24
|
+
"./capture": {
|
|
25
|
+
"types": "./dist/capture/index.d.ts",
|
|
26
|
+
"import": "./dist/capture/index.js",
|
|
27
|
+
"default": "./dist/capture/index.js"
|
|
28
|
+
},
|
|
24
29
|
"./registry": {
|
|
25
30
|
"types": "./dist/registry/index.d.ts",
|
|
26
31
|
"import": "./dist/registry/index.js",
|
|
@@ -66,20 +71,21 @@
|
|
|
66
71
|
"dev": "tsgo --build --watch",
|
|
67
72
|
"test": "bun test src",
|
|
68
73
|
"bench:registry": "bun run src/registry/__bench__/relations-resolver.bench.ts",
|
|
74
|
+
"bench:schema": "bun run src/schema/__bench__/node-parsers.bench.ts",
|
|
69
75
|
"prepublishOnly": "npm run build"
|
|
70
76
|
},
|
|
71
77
|
"peerDependencies": {
|
|
72
78
|
"@react-three/drei": "^10",
|
|
73
79
|
"@react-three/fiber": "^9",
|
|
74
80
|
"react": "^18 || ^19",
|
|
75
|
-
"three": "^0.
|
|
81
|
+
"three": "^0.186"
|
|
76
82
|
},
|
|
77
83
|
"dependencies": {
|
|
78
84
|
"dedent": "^1.7.1",
|
|
79
85
|
"idb-keyval": "^6.2.2",
|
|
80
86
|
"mitt": "^3.0.1",
|
|
81
87
|
"nanoid": "^5.1.6",
|
|
82
|
-
"zod": "
|
|
88
|
+
"zod": ">=4.5.4 <4.6",
|
|
83
89
|
"zundo": "^2.3.0",
|
|
84
90
|
"zustand": "^5"
|
|
85
91
|
},
|
|
@@ -88,6 +94,7 @@
|
|
|
88
94
|
"@types/bun": "^1.3.0",
|
|
89
95
|
"@types/react": "^19.2.2",
|
|
90
96
|
"@types/three": "^0.184.0",
|
|
97
|
+
"fake-indexeddb": "^6.2.5",
|
|
91
98
|
"typescript": "6.0.3"
|
|
92
99
|
},
|
|
93
100
|
"keywords": [
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"elevator-runtime-system.d.ts","sourceRoot":"","sources":["../../../src/systems/elevator/elevator-runtime-system.tsx"],"names":[],"mappings":"AAGA,wBAAgB,qBAAqB,SAMpC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { useFrame } from '@react-three/fiber';
|
|
2
|
-
import { stepElevatorRuntimes } from './elevator-runtime';
|
|
3
|
-
export function ElevatorRuntimeSystem() {
|
|
4
|
-
useFrame(({ clock }, delta) => {
|
|
5
|
-
stepElevatorRuntimes(clock.getElapsedTime() * 1000, delta);
|
|
6
|
-
}, 2);
|
|
7
|
-
return null;
|
|
8
|
-
}
|