@inweb/viewer-visualize 26.12.7 → 27.1.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/dist/viewer-visualize.js +110 -54
- package/dist/viewer-visualize.js.map +1 -1
- package/dist/viewer-visualize.min.js +1 -1
- package/dist/viewer-visualize.module.js +110 -54
- package/dist/viewer-visualize.module.js.map +1 -1
- package/lib/Viewer/Components/InfoComponent.d.ts +22 -0
- package/lib/Viewer/Viewer.d.ts +1 -0
- package/package.json +5 -5
- package/src/Viewer/Components/InfoComponent.ts +139 -0
- package/src/Viewer/Components/index.ts +2 -0
- package/src/Viewer/Loaders/VSFCloudLoader.ts +0 -4
- package/src/Viewer/Loaders/VSFXCloudLoader.ts +0 -4
- package/src/Viewer/Loaders/VSFXCloudPartialLoader.ts +7 -12
- package/src/Viewer/Loaders/VSFXCloudStreamingLoader.ts +6 -15
- package/src/Viewer/Viewer.ts +9 -3
- package/lib/Viewer/Loaders/UpdateController.d.ts +0 -14
- package/src/Viewer/Loaders/UpdateController.ts +0 -60
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IComponent } from "@inweb/viewer-core";
|
|
2
|
+
import type { Viewer } from "../Viewer";
|
|
3
|
+
export declare class InfoComponent implements IComponent {
|
|
4
|
+
protected viewer: Viewer;
|
|
5
|
+
private startTime;
|
|
6
|
+
private beginTime;
|
|
7
|
+
private prevTime;
|
|
8
|
+
private frames;
|
|
9
|
+
constructor(viewer: Viewer);
|
|
10
|
+
dispose(): void;
|
|
11
|
+
initialize: () => void;
|
|
12
|
+
clear: () => void;
|
|
13
|
+
optionsChange: ({ data: options }: {
|
|
14
|
+
data: any;
|
|
15
|
+
}) => void;
|
|
16
|
+
geometryStart: () => void;
|
|
17
|
+
databaseChunk: () => void;
|
|
18
|
+
geometryEnd: () => void;
|
|
19
|
+
resize: () => void;
|
|
20
|
+
render: () => void;
|
|
21
|
+
animate: () => void;
|
|
22
|
+
}
|
package/lib/Viewer/Viewer.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inweb/viewer-visualize",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "27.1.0",
|
|
4
4
|
"description": "JavaScript library for rendering CAD and BIM files in a browser using VisualizeJS",
|
|
5
5
|
"homepage": "https://cloud.opendesign.com/docs/index.html",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"docs": "typedoc"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@inweb/client": "~
|
|
33
|
-
"@inweb/eventemitter2": "~
|
|
34
|
-
"@inweb/markup": "~
|
|
35
|
-
"@inweb/viewer-core": "~
|
|
32
|
+
"@inweb/client": "~27.1.0",
|
|
33
|
+
"@inweb/eventemitter2": "~27.1.0",
|
|
34
|
+
"@inweb/markup": "~27.1.0",
|
|
35
|
+
"@inweb/viewer-core": "~27.1.0"
|
|
36
36
|
},
|
|
37
37
|
"visualizeJS": "https://public-fhemb7e3embacwec.z02.azurefd.net/libs/visualizejs/master/Visualize.js"
|
|
38
38
|
}
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
2
|
+
// Copyright (C) 2002-2025, Open Design Alliance (the "Alliance").
|
|
3
|
+
// All rights reserved.
|
|
4
|
+
//
|
|
5
|
+
// This software and its documentation and related materials are owned by
|
|
6
|
+
// the Alliance. The software may only be incorporated into application
|
|
7
|
+
// programs owned by members of the Alliance, subject to a signed
|
|
8
|
+
// Membership Agreement and Supplemental Software License Agreement with the
|
|
9
|
+
// Alliance. The structure and organization of this software are the valuable
|
|
10
|
+
// trade secrets of the Alliance and its suppliers. The software is also
|
|
11
|
+
// protected by copyright law and international treaty provisions. Application
|
|
12
|
+
// programs incorporating this software must include the following statement
|
|
13
|
+
// with their copyright notices:
|
|
14
|
+
//
|
|
15
|
+
// This application incorporates Open Design Alliance software pursuant to a
|
|
16
|
+
// license agreement with Open Design Alliance.
|
|
17
|
+
// Open Design Alliance Copyright (C) 2002-2025 by Open Design Alliance.
|
|
18
|
+
// All rights reserved.
|
|
19
|
+
//
|
|
20
|
+
// By use of this software, its documentation or related materials, you
|
|
21
|
+
// acknowledge and accept the above terms.
|
|
22
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
23
|
+
|
|
24
|
+
import { IComponent } from "@inweb/viewer-core";
|
|
25
|
+
import type { Viewer } from "../Viewer";
|
|
26
|
+
|
|
27
|
+
export class InfoComponent implements IComponent {
|
|
28
|
+
protected viewer: Viewer;
|
|
29
|
+
private startTime: number;
|
|
30
|
+
private beginTime: number;
|
|
31
|
+
private prevTime: number;
|
|
32
|
+
private frames: number;
|
|
33
|
+
|
|
34
|
+
constructor(viewer: Viewer) {
|
|
35
|
+
this.viewer = viewer;
|
|
36
|
+
this.startTime = 0;
|
|
37
|
+
this.beginTime = performance.now();
|
|
38
|
+
this.prevTime = performance.now();
|
|
39
|
+
this.frames = 0;
|
|
40
|
+
this.viewer.addEventListener("initialize", this.initialize);
|
|
41
|
+
this.viewer.addEventListener("clear", this.clear);
|
|
42
|
+
this.viewer.addEventListener("optionschange", this.optionsChange);
|
|
43
|
+
this.viewer.addEventListener("geometrystart", this.geometryStart);
|
|
44
|
+
this.viewer.addEventListener("databasechunk", this.databaseChunk);
|
|
45
|
+
this.viewer.addEventListener("geometryend", this.geometryEnd);
|
|
46
|
+
this.viewer.addEventListener("resize", this.resize);
|
|
47
|
+
this.viewer.addEventListener("render", this.render);
|
|
48
|
+
this.viewer.addEventListener("animate", this.animate);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
dispose() {
|
|
52
|
+
this.viewer.removeEventListener("initialize", this.initialize);
|
|
53
|
+
this.viewer.removeEventListener("clear", this.clear);
|
|
54
|
+
this.viewer.removeEventListener("optionschange", this.optionsChange);
|
|
55
|
+
this.viewer.removeEventListener("geometrystart", this.geometryStart);
|
|
56
|
+
this.viewer.removeEventListener("databasechunk", this.databaseChunk);
|
|
57
|
+
this.viewer.removeEventListener("geometryend", this.geometryEnd);
|
|
58
|
+
this.viewer.removeEventListener("resize", this.resize);
|
|
59
|
+
this.viewer.removeEventListener("render", this.render);
|
|
60
|
+
this.viewer.addEventListener("animate", this.animate);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
initialize = () => {
|
|
64
|
+
this.resize();
|
|
65
|
+
this.optionsChange({ data: this.viewer.options });
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
clear = () => {
|
|
69
|
+
this.viewer.info.performance.timeToFirstRender = 0;
|
|
70
|
+
this.viewer.info.performance.loadTime = 0;
|
|
71
|
+
|
|
72
|
+
this.viewer.info.scene.objects = 0;
|
|
73
|
+
this.viewer.info.scene.triangles = 0;
|
|
74
|
+
this.viewer.info.scene.points = 0;
|
|
75
|
+
this.viewer.info.scene.lines = 0;
|
|
76
|
+
this.viewer.info.scene.edges = 0;
|
|
77
|
+
|
|
78
|
+
this.viewer.info.optimizedScene.objects = 0;
|
|
79
|
+
this.viewer.info.optimizedScene.triangles = 0;
|
|
80
|
+
this.viewer.info.optimizedScene.points = 0;
|
|
81
|
+
this.viewer.info.optimizedScene.lines = 0;
|
|
82
|
+
this.viewer.info.optimizedScene.edges = 0;
|
|
83
|
+
|
|
84
|
+
this.viewer.info.memory.geometries = 0;
|
|
85
|
+
this.viewer.info.memory.geometryBytes = 0;
|
|
86
|
+
this.viewer.info.memory.textures = 0;
|
|
87
|
+
this.viewer.info.memory.textureBytes = 0;
|
|
88
|
+
this.viewer.info.memory.materials = 0;
|
|
89
|
+
this.viewer.info.memory.totalEstimatedGpuBytes = 0;
|
|
90
|
+
this.viewer.info.memory.usedJSHeapSize = 0;
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
optionsChange = ({ data: options }) => {
|
|
94
|
+
const antialiasing = options.antialiasing === true || options.antialiasing === "fxaa";
|
|
95
|
+
if (antialiasing) this.viewer.info.render.antialiasing = "fxaa";
|
|
96
|
+
else this.viewer.info.render.antialiasing = "";
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
geometryStart = () => {
|
|
100
|
+
this.startTime = performance.now();
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
databaseChunk = () => {
|
|
104
|
+
this.viewer.info.performance.timeToFirstRender += performance.now() - this.startTime;
|
|
105
|
+
|
|
106
|
+
console.log("Time to first render:", this.viewer.info.performance.timeToFirstRender, "ms");
|
|
107
|
+
};
|
|
108
|
+
|
|
109
|
+
geometryEnd = () => {
|
|
110
|
+
const memory = performance["memory"];
|
|
111
|
+
if (memory) this.viewer.info.memory.usedJSHeapSize = memory.usedJSHeapSize;
|
|
112
|
+
|
|
113
|
+
this.viewer.info.performance.loadTime += performance.now() - this.startTime;
|
|
114
|
+
|
|
115
|
+
console.log("File load time:", this.viewer.info.performance.loadTime, "ms");
|
|
116
|
+
};
|
|
117
|
+
|
|
118
|
+
resize = () => {
|
|
119
|
+
const { width, height } = this.viewer.canvas;
|
|
120
|
+
this.viewer.info.render.viewport.width = width;
|
|
121
|
+
this.viewer.info.render.viewport.height = height;
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
render = () => {};
|
|
125
|
+
|
|
126
|
+
animate = () => {
|
|
127
|
+
const time = performance.now();
|
|
128
|
+
|
|
129
|
+
this.viewer.info.performance.frameTime = Math.round(time - this.beginTime);
|
|
130
|
+
this.beginTime = time;
|
|
131
|
+
|
|
132
|
+
this.frames++;
|
|
133
|
+
if (time - this.prevTime >= 1000) {
|
|
134
|
+
this.viewer.info.performance.fps = Math.round((this.frames * 1000) / (time - this.prevTime));
|
|
135
|
+
this.prevTime = time;
|
|
136
|
+
this.frames = 0;
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
}
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
import { IComponentsRegistry, componentsRegistry } from "@inweb/viewer-core";
|
|
25
25
|
|
|
26
26
|
import { CameraComponent } from "./CameraComponent";
|
|
27
|
+
import { InfoComponent } from "./InfoComponent";
|
|
27
28
|
import { RenderLoopComponent } from "./RenderLoopComponent";
|
|
28
29
|
import { ResizeCanvasComponent } from "./ResizeCanvasComponent";
|
|
29
30
|
import { ZoomWheelComponent } from "./ZoomWheelComponent";
|
|
@@ -74,6 +75,7 @@ export const components: IComponentsRegistry = componentsRegistry("visualizejs")
|
|
|
74
75
|
// build-in components
|
|
75
76
|
|
|
76
77
|
components.registerComponent("CameraComponent", (viewer) => new CameraComponent(viewer));
|
|
78
|
+
components.registerComponent("InfoComponent", (viewer) => new InfoComponent(viewer));
|
|
77
79
|
components.registerComponent("ResizeCanvasComponent", (viewer) => new ResizeCanvasComponent(viewer));
|
|
78
80
|
components.registerComponent("RenderLoopComponent", (viewer) => new RenderLoopComponent(viewer));
|
|
79
81
|
components.registerComponent("ZoomWheelComponent", (viewer) => new ZoomWheelComponent(viewer));
|
|
@@ -48,8 +48,6 @@ export class VSFCloudLoader extends Loader {
|
|
|
48
48
|
const visViewer = this.viewer.visViewer();
|
|
49
49
|
const filesToDownload = [model.database, ...model.geometry];
|
|
50
50
|
|
|
51
|
-
console.time("File load time");
|
|
52
|
-
|
|
53
51
|
for (let i = 0; i < filesToDownload.length; i++) {
|
|
54
52
|
const dataId = filesToDownload[i];
|
|
55
53
|
|
|
@@ -87,8 +85,6 @@ export class VSFCloudLoader extends Loader {
|
|
|
87
85
|
}
|
|
88
86
|
}
|
|
89
87
|
|
|
90
|
-
console.timeEnd("File load time");
|
|
91
|
-
|
|
92
88
|
return this;
|
|
93
89
|
}
|
|
94
90
|
}
|
|
@@ -52,8 +52,6 @@ export class VSFXCloudLoader extends Loader {
|
|
|
52
52
|
this.viewer.emitEvent({ type: "geometryprogress", data: progress, file: model.file, model });
|
|
53
53
|
};
|
|
54
54
|
|
|
55
|
-
console.time("File load time");
|
|
56
|
-
|
|
57
55
|
const arrayBuffer = await model.downloadResource(model.database, progress, this.abortController.signal);
|
|
58
56
|
const data = new Uint8Array(arrayBuffer);
|
|
59
57
|
|
|
@@ -77,8 +75,6 @@ export class VSFXCloudLoader extends Loader {
|
|
|
77
75
|
|
|
78
76
|
this.viewer.emitEvent({ type: "databasechunk", data, file: model.file, model });
|
|
79
77
|
|
|
80
|
-
console.timeEnd("File load time");
|
|
81
|
-
|
|
82
78
|
return this;
|
|
83
79
|
}
|
|
84
80
|
}
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
import { Loader } from "@inweb/viewer-core";
|
|
25
25
|
import { Viewer } from "../Viewer";
|
|
26
26
|
import { ModelImpl } from "../Models/ModelImpl";
|
|
27
|
-
import { UpdateController, UpdateType } from "./UpdateController";
|
|
28
27
|
|
|
29
28
|
const PENDING_REQUESTS_SIZE = 50;
|
|
30
29
|
const PENDING_REQUESTS_TIMEOUT = 250;
|
|
@@ -54,6 +53,8 @@ export class VSFXCloudPartialLoader extends Loader {
|
|
|
54
53
|
if (!this.viewer.visualizeJs) return this;
|
|
55
54
|
|
|
56
55
|
const visViewer = this.viewer.visViewer();
|
|
56
|
+
visViewer.memoryLimit = this.viewer.options.memoryLimit;
|
|
57
|
+
|
|
57
58
|
let servicePartAborted = false;
|
|
58
59
|
|
|
59
60
|
const pendingRequestsMap = new Map();
|
|
@@ -63,11 +64,6 @@ export class VSFXCloudPartialLoader extends Loader {
|
|
|
63
64
|
const pendingRequestsAbortController = new AbortController();
|
|
64
65
|
this.abortControllerForRequestMap.set(0, pendingRequestsAbortController);
|
|
65
66
|
|
|
66
|
-
const updateController = new UpdateController();
|
|
67
|
-
updateController.initialize(this.viewer);
|
|
68
|
-
|
|
69
|
-
visViewer.memoryLimit = this.viewer.options.memoryLimit;
|
|
70
|
-
|
|
71
67
|
const chunkLoadHandler = (progress: number, chunk: Uint8Array, requestId = 0) => {
|
|
72
68
|
if (!this.viewer.visualizeJs) return;
|
|
73
69
|
|
|
@@ -89,11 +85,11 @@ export class VSFXCloudPartialLoader extends Loader {
|
|
|
89
85
|
|
|
90
86
|
this.viewer.syncOptions();
|
|
91
87
|
this.viewer.syncOverlay();
|
|
92
|
-
|
|
88
|
+
this.viewer.update(true);
|
|
93
89
|
|
|
94
90
|
this.viewer.emitEvent({ type: "databasechunk", data: chunk, file: model.file, model });
|
|
95
91
|
} else {
|
|
96
|
-
|
|
92
|
+
this.viewer.update();
|
|
97
93
|
this.viewer.emitEvent({ type: "geometrychunk", data: chunk, file: model.file, model });
|
|
98
94
|
}
|
|
99
95
|
};
|
|
@@ -108,7 +104,6 @@ export class VSFXCloudPartialLoader extends Loader {
|
|
|
108
104
|
} finally {
|
|
109
105
|
ranges.forEach((range) => visViewer.onRequestResponseComplete(range.requestId));
|
|
110
106
|
this.abortControllerForRequestMap.delete(requestId);
|
|
111
|
-
updateController.update(UpdateType.kNormal);
|
|
112
107
|
}
|
|
113
108
|
};
|
|
114
109
|
|
|
@@ -140,12 +135,11 @@ export class VSFXCloudPartialLoader extends Loader {
|
|
|
140
135
|
},
|
|
141
136
|
|
|
142
137
|
onFullLoaded: () => {
|
|
143
|
-
|
|
138
|
+
this.viewer.update(true);
|
|
144
139
|
},
|
|
145
140
|
|
|
146
141
|
onRequestResponseParsed: (requestId: number) => {
|
|
147
142
|
this.abortControllerForRequestMap.delete(requestId);
|
|
148
|
-
updateController.update(UpdateType.kNormal);
|
|
149
143
|
},
|
|
150
144
|
|
|
151
145
|
onRequestAborted: (requestId: number) => {
|
|
@@ -165,7 +159,8 @@ export class VSFXCloudPartialLoader extends Loader {
|
|
|
165
159
|
requestNumber = pendingRequest.number;
|
|
166
160
|
}
|
|
167
161
|
|
|
168
|
-
// first several records of each file are processed without grouping
|
|
162
|
+
// first several records of each file are processed without grouping
|
|
163
|
+
// (they usually require to be processed sequentially)
|
|
169
164
|
if (requestNumber <= 5) {
|
|
170
165
|
pendingRequestsMap.set(dataId, { ranges: [], number: requestNumber + 1 });
|
|
171
166
|
downloadResourceRange(dataId, requestId, ranges);
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
import { Loader } from "@inweb/viewer-core";
|
|
25
25
|
import { Viewer } from "../Viewer";
|
|
26
26
|
import { ModelImpl } from "../Models/ModelImpl";
|
|
27
|
-
import { UpdateController, UpdateType } from "./UpdateController";
|
|
28
27
|
|
|
29
28
|
export class VSFXCloudStreamingLoader extends Loader {
|
|
30
29
|
public viewer: Viewer;
|
|
@@ -52,10 +51,7 @@ export class VSFXCloudStreamingLoader extends Loader {
|
|
|
52
51
|
const visLib = this.viewer.visLib();
|
|
53
52
|
const visViewer = this.viewer.visViewer();
|
|
54
53
|
|
|
55
|
-
|
|
56
|
-
updateController.initialize(this.viewer);
|
|
57
|
-
|
|
58
|
-
let isFireDatabaseChunk = false;
|
|
54
|
+
let isServiceDataReady = false;
|
|
59
55
|
|
|
60
56
|
const chunkLoadHandler = (progress: number, chunk: Uint8Array) => {
|
|
61
57
|
if (!this.viewer.visualizeJs) return;
|
|
@@ -73,9 +69,9 @@ export class VSFXCloudStreamingLoader extends Loader {
|
|
|
73
69
|
let isDatabaseChunk = false;
|
|
74
70
|
if (
|
|
75
71
|
status === visLib.DatabaseStreamStatus.ReadyServiceData ||
|
|
76
|
-
(status === visLib.DatabaseStreamStatus.Complete && !
|
|
72
|
+
(status === visLib.DatabaseStreamStatus.Complete && !isServiceDataReady)
|
|
77
73
|
) {
|
|
78
|
-
|
|
74
|
+
isServiceDataReady = true;
|
|
79
75
|
isDatabaseChunk = true;
|
|
80
76
|
}
|
|
81
77
|
|
|
@@ -87,22 +83,17 @@ export class VSFXCloudStreamingLoader extends Loader {
|
|
|
87
83
|
|
|
88
84
|
this.viewer.syncOptions();
|
|
89
85
|
this.viewer.syncOverlay();
|
|
90
|
-
|
|
86
|
+
this.viewer.update(true);
|
|
91
87
|
|
|
92
88
|
this.viewer.emitEvent({ type: "databasechunk", data: chunk, file: model.file, model });
|
|
93
89
|
} else {
|
|
94
|
-
|
|
90
|
+
this.viewer.update();
|
|
95
91
|
this.viewer.emitEvent({ type: "geometrychunk", data: chunk, file: model.file, model });
|
|
96
92
|
}
|
|
97
93
|
};
|
|
98
94
|
|
|
99
|
-
console.time("File load time");
|
|
100
|
-
|
|
101
95
|
await model.downloadResource(model.database, chunkLoadHandler, this.abortController.signal);
|
|
102
|
-
updateController.update(UpdateType.kNormal);
|
|
103
|
-
|
|
104
|
-
console.timeEnd("File load time");
|
|
105
96
|
|
|
106
|
-
return
|
|
97
|
+
return this;
|
|
107
98
|
}
|
|
108
99
|
}
|
package/src/Viewer/Viewer.ts
CHANGED
|
@@ -86,6 +86,7 @@ export class Viewer
|
|
|
86
86
|
private _activeDragger: IDragger | null;
|
|
87
87
|
private _components: IComponent[];
|
|
88
88
|
|
|
89
|
+
private _updateDelay: number;
|
|
89
90
|
private _renderNeeded: boolean;
|
|
90
91
|
private _renderTime: DOMHighResTimeStamp;
|
|
91
92
|
private _enableAutoUpdate: boolean;
|
|
@@ -132,6 +133,7 @@ export class Viewer
|
|
|
132
133
|
this._activeDragger = null;
|
|
133
134
|
this._components = [];
|
|
134
135
|
|
|
136
|
+
this._updateDelay = 1000;
|
|
135
137
|
this._renderNeeded = false;
|
|
136
138
|
this._renderTime = 0;
|
|
137
139
|
this._enableAutoUpdate = params.enableAutoUpdate ?? true;
|
|
@@ -372,11 +374,15 @@ export class Viewer
|
|
|
372
374
|
* Default is `false`.
|
|
373
375
|
*/
|
|
374
376
|
update(force = false) {
|
|
377
|
+
const time = performance.now();
|
|
378
|
+
force = force || time - this._renderTime >= this._updateDelay;
|
|
379
|
+
|
|
375
380
|
if (this._enableAutoUpdate) {
|
|
376
381
|
this._renderNeeded = true;
|
|
377
|
-
if (force) this.render();
|
|
382
|
+
if (force) this.render(time);
|
|
378
383
|
}
|
|
379
|
-
|
|
384
|
+
|
|
385
|
+
this.emitEvent({ type: "update", force });
|
|
380
386
|
}
|
|
381
387
|
|
|
382
388
|
// Internal render routines
|
|
@@ -1361,7 +1367,7 @@ export class Viewer
|
|
|
1361
1367
|
this.visViewer()?.update(maxScheduleUpdateTimeInMs);
|
|
1362
1368
|
this._activeDragger?.updatePreview?.();
|
|
1363
1369
|
}
|
|
1364
|
-
this.emitEvent({ type: "update",
|
|
1370
|
+
this.emitEvent({ type: "update", force: false });
|
|
1365
1371
|
resolve();
|
|
1366
1372
|
} catch (e) {
|
|
1367
1373
|
console.error(e);
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Viewer } from "../Viewer";
|
|
2
|
-
export declare enum UpdateType {
|
|
3
|
-
kDelay = 0,
|
|
4
|
-
kNormal = 1,
|
|
5
|
-
kForce = 2
|
|
6
|
-
}
|
|
7
|
-
export declare class UpdateController {
|
|
8
|
-
private lastUpdate;
|
|
9
|
-
private viewer;
|
|
10
|
-
delayUpdateTime: number;
|
|
11
|
-
constructor();
|
|
12
|
-
initialize(viewer: Viewer): void;
|
|
13
|
-
update(type: UpdateType): void;
|
|
14
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
///////////////////////////////////////////////////////////////////////////////
|
|
2
|
-
// Copyright (C) 2002-2025, Open Design Alliance (the "Alliance").
|
|
3
|
-
// All rights reserved.
|
|
4
|
-
//
|
|
5
|
-
// This software and its documentation and related materials are owned by
|
|
6
|
-
// the Alliance. The software may only be incorporated into application
|
|
7
|
-
// programs owned by members of the Alliance, subject to a signed
|
|
8
|
-
// Membership Agreement and Supplemental Software License Agreement with the
|
|
9
|
-
// Alliance. The structure and organization of this software are the valuable
|
|
10
|
-
// trade secrets of the Alliance and its suppliers. The software is also
|
|
11
|
-
// protected by copyright law and international treaty provisions. Application
|
|
12
|
-
// programs incorporating this software must include the following statement
|
|
13
|
-
// with their copyright notices:
|
|
14
|
-
//
|
|
15
|
-
// This application incorporates Open Design Alliance software pursuant to a
|
|
16
|
-
// license agreement with Open Design Alliance.
|
|
17
|
-
// Open Design Alliance Copyright (C) 2002-2025 by Open Design Alliance.
|
|
18
|
-
// All rights reserved.
|
|
19
|
-
//
|
|
20
|
-
// By use of this software, its documentation or related materials, you
|
|
21
|
-
// acknowledge and accept the above terms.
|
|
22
|
-
///////////////////////////////////////////////////////////////////////////////
|
|
23
|
-
|
|
24
|
-
import { Viewer } from "../Viewer";
|
|
25
|
-
|
|
26
|
-
const DELAY_TIME_MULTIPLEXER = 2.0;
|
|
27
|
-
const START_UPDATE_TIME = 1000;
|
|
28
|
-
|
|
29
|
-
export enum UpdateType {
|
|
30
|
-
kDelay,
|
|
31
|
-
kNormal,
|
|
32
|
-
kForce,
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export class UpdateController {
|
|
36
|
-
private lastUpdate: number;
|
|
37
|
-
private viewer: Viewer;
|
|
38
|
-
public delayUpdateTime: number;
|
|
39
|
-
|
|
40
|
-
constructor() {
|
|
41
|
-
this.lastUpdate = 0;
|
|
42
|
-
this.delayUpdateTime = START_UPDATE_TIME;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
initialize(viewer: Viewer) {
|
|
46
|
-
this.viewer = viewer;
|
|
47
|
-
this.lastUpdate = performance.now();
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
update(type: UpdateType) {
|
|
51
|
-
const isNeedUpdate = type !== UpdateType.kDelay || performance.now() - this.lastUpdate >= this.delayUpdateTime;
|
|
52
|
-
const isForce = type === UpdateType.kForce;
|
|
53
|
-
|
|
54
|
-
if (isNeedUpdate) {
|
|
55
|
-
this.viewer.update(isForce);
|
|
56
|
-
this.lastUpdate = performance.now();
|
|
57
|
-
this.delayUpdateTime *= DELAY_TIME_MULTIPLEXER;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|