@combeenation/3d-viewer 7.0.0-beta3 → 7.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.
Files changed (103) hide show
  1. package/README.md +111 -111
  2. package/dist/lib-cjs/api/classes/animationInterface.d.ts +8 -8
  3. package/dist/lib-cjs/api/classes/animationInterface.js +2 -2
  4. package/dist/lib-cjs/api/classes/dottedPath.d.ts +79 -79
  5. package/dist/lib-cjs/api/classes/dottedPath.js +166 -166
  6. package/dist/lib-cjs/api/classes/element.d.ts +153 -153
  7. package/dist/lib-cjs/api/classes/element.js +670 -670
  8. package/dist/lib-cjs/api/classes/event.d.ts +396 -396
  9. package/dist/lib-cjs/api/classes/event.js +419 -419
  10. package/dist/lib-cjs/api/classes/eventBroadcaster.d.ts +26 -26
  11. package/dist/lib-cjs/api/classes/eventBroadcaster.js +49 -49
  12. package/dist/lib-cjs/api/classes/fuzzyMap.d.ts +7 -7
  13. package/dist/lib-cjs/api/classes/fuzzyMap.js +21 -21
  14. package/dist/lib-cjs/api/classes/parameter.d.ts +351 -351
  15. package/dist/lib-cjs/api/classes/parameter.js +517 -517
  16. package/dist/lib-cjs/api/classes/parameterObservable.d.ts +36 -36
  17. package/dist/lib-cjs/api/classes/parameterObservable.js +72 -72
  18. package/dist/lib-cjs/api/classes/parameterizable.d.ts +15 -15
  19. package/dist/lib-cjs/api/classes/parameterizable.js +102 -102
  20. package/dist/lib-cjs/api/classes/placementAnimation.d.ts +45 -45
  21. package/dist/lib-cjs/api/classes/placementAnimation.js +176 -176
  22. package/dist/lib-cjs/api/classes/variant.d.ts +253 -253
  23. package/dist/lib-cjs/api/classes/variant.js +843 -843
  24. package/dist/lib-cjs/api/classes/variantInstance.d.ts +53 -53
  25. package/dist/lib-cjs/api/classes/variantInstance.js +125 -125
  26. package/dist/lib-cjs/api/classes/variantParameterizable.d.ts +17 -17
  27. package/dist/lib-cjs/api/classes/variantParameterizable.js +88 -88
  28. package/dist/lib-cjs/api/classes/viewer.d.ts +200 -199
  29. package/dist/lib-cjs/api/classes/viewer.js +671 -670
  30. package/dist/lib-cjs/api/classes/viewer.js.map +1 -1
  31. package/dist/lib-cjs/api/classes/viewerLight.d.ts +66 -66
  32. package/dist/lib-cjs/api/classes/viewerLight.js +348 -348
  33. package/dist/lib-cjs/api/internal/lensRendering.d.ts +8 -8
  34. package/dist/lib-cjs/api/internal/lensRendering.js +11 -11
  35. package/dist/lib-cjs/api/internal/sceneSetup.d.ts +13 -13
  36. package/dist/lib-cjs/api/internal/sceneSetup.js +226 -226
  37. package/dist/lib-cjs/api/manager/animationManager.d.ts +30 -30
  38. package/dist/lib-cjs/api/manager/animationManager.js +126 -126
  39. package/dist/lib-cjs/api/manager/gltfExportManager.d.ts +78 -78
  40. package/dist/lib-cjs/api/manager/gltfExportManager.js +241 -241
  41. package/dist/lib-cjs/api/manager/sceneManager.d.ts +33 -33
  42. package/dist/lib-cjs/api/manager/sceneManager.js +130 -130
  43. package/dist/lib-cjs/api/manager/tagManager.d.ts +108 -108
  44. package/dist/lib-cjs/api/manager/tagManager.js +419 -419
  45. package/dist/lib-cjs/api/manager/textureLoadManager.d.ts +22 -22
  46. package/dist/lib-cjs/api/manager/textureLoadManager.js +97 -97
  47. package/dist/lib-cjs/api/manager/variantInstanceManager.d.ts +103 -102
  48. package/dist/lib-cjs/api/manager/variantInstanceManager.js +285 -284
  49. package/dist/lib-cjs/api/manager/variantInstanceManager.js.map +1 -1
  50. package/dist/lib-cjs/api/store/specStorage.d.ts +32 -32
  51. package/dist/lib-cjs/api/store/specStorage.js +65 -65
  52. package/dist/lib-cjs/api/util/babylonHelper.d.ts +235 -235
  53. package/dist/lib-cjs/api/util/babylonHelper.js +750 -750
  54. package/dist/lib-cjs/api/util/globalTypes.d.ts +436 -432
  55. package/dist/lib-cjs/api/util/globalTypes.js +1 -1
  56. package/dist/lib-cjs/api/util/resourceHelper.d.ts +58 -58
  57. package/dist/lib-cjs/api/util/resourceHelper.js +203 -203
  58. package/dist/lib-cjs/api/util/sceneLoaderHelper.d.ts +44 -44
  59. package/dist/lib-cjs/api/util/sceneLoaderHelper.js +173 -173
  60. package/dist/lib-cjs/api/util/stringHelper.d.ts +13 -13
  61. package/dist/lib-cjs/api/util/stringHelper.js +32 -32
  62. package/dist/lib-cjs/api/util/structureHelper.d.ts +9 -9
  63. package/dist/lib-cjs/api/util/structureHelper.js +48 -48
  64. package/dist/lib-cjs/buildinfo.json +3 -3
  65. package/dist/lib-cjs/commonjs.tsconfig.tsbuildinfo +1 -1
  66. package/dist/lib-cjs/index.d.ts +53 -53
  67. package/dist/lib-cjs/index.js +114 -114
  68. package/package.json +81 -81
  69. package/src/api/classes/animationInterface.ts +10 -10
  70. package/src/api/classes/dottedPath.ts +181 -181
  71. package/src/api/classes/element.ts +731 -731
  72. package/src/api/classes/event.ts +452 -452
  73. package/src/api/classes/eventBroadcaster.ts +52 -52
  74. package/src/api/classes/fuzzyMap.ts +21 -21
  75. package/src/api/classes/parameter.ts +554 -554
  76. package/src/api/classes/parameterObservable.ts +73 -73
  77. package/src/api/classes/parameterizable.ts +87 -87
  78. package/src/api/classes/placementAnimation.ts +162 -162
  79. package/src/api/classes/variant.ts +933 -933
  80. package/src/api/classes/variantInstance.ts +123 -123
  81. package/src/api/classes/variantParameterizable.ts +85 -85
  82. package/src/api/classes/viewer.ts +744 -743
  83. package/src/api/classes/viewerLight.ts +339 -339
  84. package/src/api/internal/debugViewer.ts +90 -90
  85. package/src/api/internal/lensRendering.ts +9 -9
  86. package/src/api/internal/sceneSetup.ts +205 -205
  87. package/src/api/manager/animationManager.ts +143 -143
  88. package/src/api/manager/gltfExportManager.ts +236 -236
  89. package/src/api/manager/sceneManager.ts +136 -136
  90. package/src/api/manager/tagManager.ts +451 -451
  91. package/src/api/manager/textureLoadManager.ts +95 -95
  92. package/src/api/manager/variantInstanceManager.ts +298 -297
  93. package/src/api/store/specStorage.ts +68 -68
  94. package/src/api/util/babylonHelper.ts +822 -822
  95. package/src/api/util/globalTypes.ts +503 -499
  96. package/src/api/util/resourceHelper.ts +191 -191
  97. package/src/api/util/sceneLoaderHelper.ts +170 -170
  98. package/src/api/util/stringHelper.ts +30 -30
  99. package/src/api/util/structureHelper.ts +49 -49
  100. package/src/buildinfo.json +3 -3
  101. package/src/dev.ts +62 -62
  102. package/src/index.ts +100 -100
  103. package/src/types.d.ts +35 -35
@@ -1,297 +1,298 @@
1
- import { DottedPath } from '../classes/dottedPath';
2
- import { Event } from '../classes/event';
3
- import { EventBroadcaster } from '../classes/eventBroadcaster';
4
- import { Parameter } from '../classes/parameter';
5
- import { Variant } from '../classes/variant';
6
- import { VariantInstance } from '../classes/variantInstance';
7
- import { SpecStorage } from '../store/specStorage';
8
- import { duplicateNodeNames, reportDuplicateNodeNames } from '../util/babylonHelper';
9
- import { TransformNode } from '@babylonjs/core/Meshes/transformNode';
10
- import { merge } from 'lodash-es';
11
-
12
- /**
13
- * There's usually no need to instantiate a {@link VariantInstanceManager} yourself as it is provided by each
14
- * {@link Viewer} instance via its {@link Viewer.variantInstances}
15
- */
16
- export class VariantInstanceManager extends EventBroadcaster {
17
- protected variantInstancePromises: Map<string, Promise<VariantInstance>> = new Map();
18
-
19
- protected variantInstances: Map<string, VariantInstance> = new Map();
20
-
21
- protected variantInstanceDefinitions: Map<string, VariantInstanceDefinition> = new Map();
22
-
23
- protected parameters: ParameterBag = {};
24
-
25
- protected queues: { [name: string]: Promise<VariantInstance>[] } = {};
26
-
27
- /**
28
- * Constructor.
29
- */
30
- protected constructor(public viewer: Viewer, protected rootVariant: Variant) {
31
- super();
32
- }
33
-
34
- /**
35
- * Creates a {@link VariantInstanceManager} based on given root Variant.
36
- */
37
- public static async create(viewer: Viewer): Promise<VariantInstanceManager> {
38
- const rootVariant = await Variant.createRoot(SpecStorage.getSpec(), viewer);
39
- return new VariantInstanceManager(viewer, rootVariant);
40
- }
41
-
42
- /**
43
- * Gets all instances.
44
- */
45
- get all() {
46
- const all: VariantInstance[] = [];
47
- this.variantInstances.forEach(variantInstance => all.push(variantInstance));
48
- return all;
49
- }
50
-
51
- /**
52
- * Gets all instance definitions.
53
- */
54
- get allDefinitions() {
55
- const all: VariantInstanceDefinition[] = [];
56
- this.variantInstanceDefinitions.forEach(definition => all.push(definition));
57
- return all;
58
- }
59
-
60
- /**
61
- * Gets all {@link VariantInstance}s with given {@link Variant}'s name.
62
- */
63
- public allWithVariantName(name: string): VariantInstance[] {
64
- return this.all.filter(instance => instance.variant.name === name);
65
- }
66
-
67
- /**
68
- * Checks whether a {@link VariantInstance} is either registered or created.
69
- */
70
- public has(name: string) {
71
- return this.variantInstances.has(name) || this.variantInstanceDefinitions.has(name);
72
- }
73
-
74
- /**
75
- * Retrieves a {@link VariantInstance}.
76
- * If the instance has been created, the created instance will be returned.
77
- * If the instance is registered, the instance will be created and returned.
78
- * if the instance has already been requested and is currently pending, the dedicated promise will be returned.
79
- * If none of these apply, an Error is thrown.
80
- *
81
- * @emits {@link Event.VARIANT_INSTANCE_CREATED}
82
- */
83
- public async get(name: string): Promise<VariantInstance> {
84
- // 1) see if we have an instance of that name already and return it if found
85
- if (this.variantInstances.has(name)) {
86
- return this.variantInstances.get(name)!; // cannot be null, hence the exclamation mark
87
- }
88
-
89
- // 2) try to get promise from list of requested instances and return it if found
90
- if (this.variantInstancePromises.has(name)) {
91
- return this.variantInstancePromises.get(name)!;
92
- }
93
-
94
- // 3) see if there's a definition of that name, create an instance from it and store the related promise
95
- if (this.variantInstanceDefinitions.has(name)) {
96
- const definition = this.variantInstanceDefinitions.get(name)!; // cannot be null
97
- const vip = this.createFromDefinition(definition);
98
- this.variantInstancePromises.set(name, vip);
99
- // remove promise after it has been finished
100
- vip.then(() => this.variantInstancePromises.delete(name));
101
-
102
- return vip;
103
- }
104
-
105
- //* if we are here, no instance definition of that name exists. throw error.
106
- throw Error(`VariantInstance with name "${name}" neither created nor configured.`);
107
- }
108
-
109
- /**
110
- * Creates and registers a unique {@link VariantInstance}.
111
- *
112
- * @emits {@link Event.VARIANT_INSTANCE_CREATED}
113
- */
114
- public async create(
115
- dottedPath: DottedPathArgument,
116
- name?: string,
117
- parameters?: ParameterBag
118
- ): Promise<VariantInstance> {
119
- const variant = DottedPath.create(dottedPath).path;
120
- const definition = {
121
- name: this.ensureUniqueName(name ? name : variant),
122
- variant: variant,
123
- parameters: parameters,
124
- };
125
- return await this.createFromDefinition(definition);
126
- }
127
-
128
- /**
129
- * Registers a unique {@link VariantInstanceDefinition}.
130
- *
131
- * @emits {@link Event.VARIANT_INSTANCE_REGISTERED}
132
- */
133
- public register(instanceDefinition: VariantInstanceDefinition): VariantInstanceDefinition {
134
- const name = instanceDefinition.name ? instanceDefinition.name : DottedPath.create(instanceDefinition.variant).path;
135
- instanceDefinition.name = this.ensureUniqueName(name);
136
- this.variantInstanceDefinitions.set(instanceDefinition.name, instanceDefinition);
137
- this.broadcastEvent(Event.VARIANT_INSTANCE_REGISTERED, instanceDefinition);
138
- return instanceDefinition;
139
- }
140
-
141
- /**
142
- * Commits the {@link ParameterBag} to all registered and created {@link VariantInstance}s.
143
- */
144
- public async commitParameters(
145
- parameters: ParameterBag = {},
146
- onlyVisible: boolean = true
147
- ): Promise<VariantInstanceManager> {
148
- this.parameters = merge(this.parameters, parameters);
149
- this.allDefinitions.forEach(definition => (definition.parameters = merge(definition.parameters, this.parameters)));
150
- let instances = this.all;
151
- if (onlyVisible) {
152
- instances = this.all.filter(instance => instance.variant.visible);
153
- }
154
- const promises = instances.map(instance => instance.variant.commitParameters(this.parameters));
155
- await Promise.all(promises);
156
- return this;
157
- }
158
-
159
- /**
160
- * Show one {@link VariantInstance}. If `exclusive` is set to `true` it will hide all other
161
- * instances handled by this {@link VariantInstanceManager}. If the function is called synchronously,
162
- * the calls end up in a queue according to the FIFO principle (the last one wins).
163
- */
164
- public async show(name: string, exclusive: boolean = false): Promise<VariantInstance> {
165
- const promise: Promise<VariantInstance> = new Promise(async resolve => {
166
- if (exclusive) {
167
- this.allDefinitions
168
- .filter(definition => definition.name !== name)
169
- .forEach(definition => {
170
- const parameters: ParameterBag = {};
171
- parameters[Parameter.VISIBLE] = false;
172
- definition.parameters = merge(definition.parameters, parameters);
173
- });
174
- await Promise.all(
175
- this.all
176
- .filter(_instance => _instance.name !== name)
177
- .map(_instance => {
178
- return _instance.variant.hide();
179
- })
180
- );
181
- }
182
- const instance = await this.get(name);
183
- await instance.variant.show();
184
- resolve(instance);
185
- });
186
- if (!this.queues['show']) {
187
- this.queues['show'] = [];
188
- }
189
- this.queues['show'].push(promise);
190
- for (let i = 0; i < this.queues['show'].length; i++) {
191
- const instance = await this.queues['show'][i];
192
- if (exclusive) {
193
- if (i + 1 < this.queues['show'].length) {
194
- await instance.variant.hide();
195
- }
196
- }
197
- }
198
- this.queues['show'] = [];
199
- return promise;
200
- }
201
-
202
- /**
203
- * Clones and registers a new {@link VariantInstance} with a new, unique name.
204
- *
205
- * @param tagMapping Object for renaming tags on the clone, whereas the "key" is the tag name of orignal variant
206
- * instance and the "value" is the new tag name that should be created from it.\
207
- * Check the docs of the tag managers [renaming](https://3dviewer.docs.combeenation.com/pages/documentation/Tag-Manager.html#uniqueness-of-node-and-tag-names)
208
- * chapter for further details.
209
- *
210
- * @emits {@link Event.VARIANT_INSTANCE_CLONED}
211
- */
212
- public async clone(
213
- name: string,
214
- newName: string,
215
- parameters?: ParameterBag,
216
- tagMapping?: TagMapping
217
- ): Promise<VariantInstance> {
218
- if (!this.variantInstances.has(name)) {
219
- throw Error(`VariantInstance with name "${name}" does not exist.`);
220
- }
221
- if (this.viewer.tagManager.parameters.size > 0) {
222
- // visible state of nodes should be updated by tag manager if it is in use
223
- // this logic is programmed in the elements `addParameterObservers` function and will be triggered by setting the
224
- // variants visibility to true
225
- parameters = { [Parameter.VISIBLE]: true, ...(parameters ?? {}) };
226
- }
227
- const variantInstance = this.variantInstances.get(name)!;
228
- const definition = {
229
- name: this.ensureUniqueName(newName ? newName : name),
230
- variant: variantInstance.variant.id,
231
- parameters: parameters,
232
- };
233
- const variantInstanceClone = await VariantInstance.createLiving(
234
- variantInstance.variant,
235
- definition.name,
236
- definition.parameters
237
- );
238
- this.variantInstances.set(definition.name, variantInstanceClone);
239
- reportDuplicateNodeNames(duplicateNodeNames(this.viewer.scene.getNodes(), n => n instanceof TransformNode));
240
- this.viewer.tagManager.mapNodesAndTags(variantInstanceClone.variant.elementNodesFlat, tagMapping ?? {});
241
- await this.viewer.tagManager.applyExistingParameterValuesTo(variantInstanceClone.variant.elementNodesFlat);
242
- variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_CLONED, variantInstanceClone);
243
- return variantInstanceClone;
244
- }
245
-
246
- /**
247
- * Destroys the instance by removing the {@link Variant} and de-registering the instance.
248
- *
249
- * @emits {@link Event.VARIANT_INSTANCE_DESTROYED}
250
- */
251
- public destroy(name: string): VariantInstanceManager {
252
- if (!this.variantInstances.has(name)) {
253
- throw Error(`VariantInstance with name "${name}" does not exist.`);
254
- }
255
- const variantInstance = this.variantInstances.get(name)!;
256
- variantInstance.variant.destroy();
257
- this.variantInstances.delete(name);
258
- variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_DESTROYED, variantInstance);
259
- return this;
260
- }
261
-
262
- /**
263
- * Creates and registers a unique {@link VariantInstance} from `definition`.
264
- *
265
- * @emits {@link Event.VARIANT_INSTANCE_CREATED}
266
- */
267
- protected async createFromDefinition(definition: VariantInstanceDefinition): Promise<VariantInstance> {
268
- if (!definition.name) {
269
- throw new Error(`Given VariantInstanceDefinition ${definition.variant} is missing a name property.`);
270
- }
271
- if (this.variantInstances.has(definition.name)) {
272
- throw new Error(`VariantInstance with name "${definition.name}" is already created.`);
273
- }
274
- if (!this.rootVariant) {
275
- throw new Error(`Viewer has not been properly bootstrapped (rootVariant missing).`);
276
- }
277
- const variant = await this.rootVariant.getDescendant(definition.variant);
278
- const variantInstance = await VariantInstance.createLiving(variant, definition.name, definition.parameters);
279
- this.variantInstances.set(definition.name, variantInstance);
280
- this.broadcastEvent(Event.VARIANT_INSTANCE_CREATED, variantInstance);
281
- return variantInstance;
282
- }
283
-
284
- /**
285
- * Creates a unique instance name based on already registered instance names on the {@link VariantInstanceManager}.
286
- * Appends an `_i` to the name where `i = 0` and increments as long as the name is not registered.
287
- */
288
- protected ensureUniqueName(name: string): string {
289
- let instanceName = name;
290
- let i = 1;
291
- while (this.has(instanceName)) {
292
- instanceName = `${name}_${i}`;
293
- i++;
294
- }
295
- return instanceName;
296
- }
297
- }
1
+ import { DottedPath } from '../classes/dottedPath';
2
+ import { Event } from '../classes/event';
3
+ import { EventBroadcaster } from '../classes/eventBroadcaster';
4
+ import { Parameter } from '../classes/parameter';
5
+ import { Variant } from '../classes/variant';
6
+ import { VariantInstance } from '../classes/variantInstance';
7
+ import { SpecStorage } from '../store/specStorage';
8
+ import { duplicateNodeNames, reportDuplicateNodeNames } from '../util/babylonHelper';
9
+ import { TransformNode } from '@babylonjs/core/Meshes/transformNode';
10
+ import { merge } from 'lodash-es';
11
+
12
+ /**
13
+ * There's usually no need to instantiate a {@link VariantInstanceManager} yourself as it is provided by each
14
+ * {@link Viewer} instance via its {@link Viewer.variantInstances}
15
+ */
16
+ export class VariantInstanceManager extends EventBroadcaster {
17
+ protected variantInstancePromises: Map<string, Promise<VariantInstance>> = new Map();
18
+
19
+ protected variantInstances: Map<string, VariantInstance> = new Map();
20
+
21
+ protected variantInstanceDefinitions: Map<string, VariantInstanceDefinition> = new Map();
22
+
23
+ protected parameters: ParameterBag = {};
24
+
25
+ protected queues: { [name: string]: Promise<VariantInstance>[] } = {};
26
+
27
+ /**
28
+ * Constructor.
29
+ */
30
+ protected constructor(public viewer: Viewer, protected rootVariant: Variant) {
31
+ super();
32
+ }
33
+
34
+ /**
35
+ * Creates a {@link VariantInstanceManager} based on given root Variant.
36
+ */
37
+ public static async create(viewer: Viewer): Promise<VariantInstanceManager> {
38
+ const rootVariant = await Variant.createRoot(SpecStorage.getSpec(), viewer);
39
+ return new VariantInstanceManager(viewer, rootVariant);
40
+ }
41
+
42
+ /**
43
+ * Gets all instances.
44
+ */
45
+ get all() {
46
+ const all: VariantInstance[] = [];
47
+ this.variantInstances.forEach(variantInstance => all.push(variantInstance));
48
+ return all;
49
+ }
50
+
51
+ /**
52
+ * Gets all instance definitions.
53
+ */
54
+ get allDefinitions() {
55
+ const all: VariantInstanceDefinition[] = [];
56
+ this.variantInstanceDefinitions.forEach(definition => all.push(definition));
57
+ return all;
58
+ }
59
+
60
+ /**
61
+ * Gets all {@link VariantInstance}s with given {@link Variant}'s name.
62
+ */
63
+ public allWithVariantName(name: string): VariantInstance[] {
64
+ return this.all.filter(instance => instance.variant.name === name);
65
+ }
66
+
67
+ /**
68
+ * Checks whether a {@link VariantInstance} is either registered or created.
69
+ */
70
+ public has(name: string) {
71
+ return this.variantInstances.has(name) || this.variantInstanceDefinitions.has(name);
72
+ }
73
+
74
+ /**
75
+ * Retrieves a {@link VariantInstance}.
76
+ * If the instance has been created, the created instance will be returned.
77
+ * If the instance is registered, the instance will be created and returned.
78
+ * if the instance has already been requested and is currently pending, the dedicated promise will be returned.
79
+ * If none of these apply, an Error is thrown.
80
+ *
81
+ * @emits {@link Event.VARIANT_INSTANCE_CREATED}
82
+ */
83
+ public async get(name: string): Promise<VariantInstance> {
84
+ // 1) see if we have an instance of that name already and return it if found
85
+ if (this.variantInstances.has(name)) {
86
+ return this.variantInstances.get(name)!; // cannot be null, hence the exclamation mark
87
+ }
88
+
89
+ // 2) try to get promise from list of requested instances and return it if found
90
+ if (this.variantInstancePromises.has(name)) {
91
+ return this.variantInstancePromises.get(name)!;
92
+ }
93
+
94
+ // 3) see if there's a definition of that name, create an instance from it and store the related promise
95
+ if (this.variantInstanceDefinitions.has(name)) {
96
+ const definition = this.variantInstanceDefinitions.get(name)!; // cannot be null
97
+ const vip = this.createFromDefinition(definition);
98
+ this.variantInstancePromises.set(name, vip);
99
+ // remove promise after it has been finished
100
+ vip.then(() => this.variantInstancePromises.delete(name));
101
+
102
+ return vip;
103
+ }
104
+
105
+ //* if we are here, no instance definition of that name exists. throw error.
106
+ throw Error(`VariantInstance with name "${name}" neither created nor configured.`);
107
+ }
108
+
109
+ /**
110
+ * Creates and registers a unique {@link VariantInstance}.
111
+ *
112
+ * @emits {@link Event.VARIANT_INSTANCE_CREATED}
113
+ */
114
+ public async create(
115
+ dottedPath: DottedPathArgument,
116
+ name?: string,
117
+ parameters?: ParameterBag
118
+ ): Promise<VariantInstance> {
119
+ const variant = DottedPath.create(dottedPath).path;
120
+ const definition = {
121
+ name: this.ensureUniqueName(name ? name : variant),
122
+ variant: variant,
123
+ parameters: parameters,
124
+ };
125
+ return await this.createFromDefinition(definition);
126
+ }
127
+
128
+ /**
129
+ * Registers a unique {@link VariantInstanceDefinition}.
130
+ *
131
+ * @emits {@link Event.VARIANT_INSTANCE_REGISTERED}
132
+ */
133
+ public register(instanceDefinition: VariantInstanceDefinition): VariantInstanceDefinition {
134
+ const name = instanceDefinition.name ? instanceDefinition.name : DottedPath.create(instanceDefinition.variant).path;
135
+ instanceDefinition.name = this.ensureUniqueName(name);
136
+ this.variantInstanceDefinitions.set(instanceDefinition.name, instanceDefinition);
137
+ this.broadcastEvent(Event.VARIANT_INSTANCE_REGISTERED, instanceDefinition);
138
+ return instanceDefinition;
139
+ }
140
+
141
+ /**
142
+ * Commits the {@link ParameterBag} to all registered and created {@link VariantInstance}s.
143
+ */
144
+ public async commitParameters(
145
+ parameters: ParameterBag = {},
146
+ onlyVisible: boolean = true
147
+ ): Promise<VariantInstanceManager> {
148
+ this.parameters = merge(this.parameters, parameters);
149
+ this.allDefinitions.forEach(definition => (definition.parameters = merge(definition.parameters, this.parameters)));
150
+ let instances = this.all;
151
+ if (onlyVisible) {
152
+ instances = this.all.filter(instance => instance.variant.visible);
153
+ }
154
+ const promises = instances.map(instance => instance.variant.commitParameters(this.parameters));
155
+ await Promise.all(promises);
156
+ return this;
157
+ }
158
+
159
+ /**
160
+ * Show one {@link VariantInstance}. If `exclusive` is set to `true` it will hide all other
161
+ * instances handled by this {@link VariantInstanceManager}. If the function is called synchronously,
162
+ * the calls end up in a queue according to the FIFO principle (the last one wins).
163
+ */
164
+ public async show(name: string, exclusive: boolean = false): Promise<VariantInstance> {
165
+ const promise: Promise<VariantInstance> = new Promise(async resolve => {
166
+ if (exclusive) {
167
+ this.allDefinitions
168
+ .filter(definition => definition.name !== name)
169
+ .forEach(definition => {
170
+ const parameters: ParameterBag = {};
171
+ parameters[Parameter.VISIBLE] = false;
172
+ definition.parameters = merge(definition.parameters, parameters);
173
+ });
174
+ await Promise.all(
175
+ this.all
176
+ .filter(_instance => _instance.name !== name)
177
+ .map(_instance => {
178
+ return _instance.variant.hide();
179
+ })
180
+ );
181
+ }
182
+ const instance = await this.get(name);
183
+ await instance.variant.show();
184
+ resolve(instance);
185
+ });
186
+ if (!this.queues['show']) {
187
+ this.queues['show'] = [];
188
+ }
189
+ this.queues['show'].push(promise);
190
+ for (let i = 0; i < this.queues['show'].length; i++) {
191
+ const instance = await this.queues['show'][i];
192
+ if (exclusive) {
193
+ if (i + 1 < this.queues['show'].length) {
194
+ await instance.variant.hide();
195
+ }
196
+ }
197
+ }
198
+ this.queues['show'] = [];
199
+ return promise;
200
+ }
201
+
202
+ /**
203
+ * Clones and registers a new {@link VariantInstance} with a new, unique name.
204
+ *
205
+ * @param tagMapping Object for renaming tags on the clone, whereas the "key" is the tag name of orignal variant
206
+ * instance and the "value" is the new tag name that should be created from it.\
207
+ * Check the docs of the tag managers
208
+ * [renaming](./../pages/documentation/Tag-Manager.html#uniqueness-of-node-and-tag-names)
209
+ * chapter for further details.
210
+ *
211
+ * @emits {@link Event.VARIANT_INSTANCE_CLONED}
212
+ */
213
+ public async clone(
214
+ name: string,
215
+ newName: string,
216
+ parameters?: ParameterBag,
217
+ tagMapping?: TagMapping
218
+ ): Promise<VariantInstance> {
219
+ if (!this.variantInstances.has(name)) {
220
+ throw Error(`VariantInstance with name "${name}" does not exist.`);
221
+ }
222
+ if (this.viewer.tagManager.parameters.size > 0) {
223
+ // visible state of nodes should be updated by tag manager if it is in use
224
+ // this logic is programmed in the elements `addParameterObservers` function and will be triggered by setting the
225
+ // variants visibility to true
226
+ parameters = { [Parameter.VISIBLE]: true, ...(parameters ?? {}) };
227
+ }
228
+ const variantInstance = this.variantInstances.get(name)!;
229
+ const definition = {
230
+ name: this.ensureUniqueName(newName ? newName : name),
231
+ variant: variantInstance.variant.id,
232
+ parameters: parameters,
233
+ };
234
+ const variantInstanceClone = await VariantInstance.createLiving(
235
+ variantInstance.variant,
236
+ definition.name,
237
+ definition.parameters
238
+ );
239
+ this.variantInstances.set(definition.name, variantInstanceClone);
240
+ reportDuplicateNodeNames(duplicateNodeNames(this.viewer.scene.getNodes(), n => n instanceof TransformNode));
241
+ this.viewer.tagManager.mapNodesAndTags(variantInstanceClone.variant.elementNodesFlat, tagMapping ?? {});
242
+ await this.viewer.tagManager.applyExistingParameterValuesTo(variantInstanceClone.variant.elementNodesFlat);
243
+ variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_CLONED, variantInstanceClone);
244
+ return variantInstanceClone;
245
+ }
246
+
247
+ /**
248
+ * Destroys the instance by removing the {@link Variant} and de-registering the instance.
249
+ *
250
+ * @emits {@link Event.VARIANT_INSTANCE_DESTROYED}
251
+ */
252
+ public destroy(name: string): VariantInstanceManager {
253
+ if (!this.variantInstances.has(name)) {
254
+ throw Error(`VariantInstance with name "${name}" does not exist.`);
255
+ }
256
+ const variantInstance = this.variantInstances.get(name)!;
257
+ variantInstance.variant.destroy();
258
+ this.variantInstances.delete(name);
259
+ variantInstance.broadcastEvent(Event.VARIANT_INSTANCE_DESTROYED, variantInstance);
260
+ return this;
261
+ }
262
+
263
+ /**
264
+ * Creates and registers a unique {@link VariantInstance} from `definition`.
265
+ *
266
+ * @emits {@link Event.VARIANT_INSTANCE_CREATED}
267
+ */
268
+ protected async createFromDefinition(definition: VariantInstanceDefinition): Promise<VariantInstance> {
269
+ if (!definition.name) {
270
+ throw new Error(`Given VariantInstanceDefinition ${definition.variant} is missing a name property.`);
271
+ }
272
+ if (this.variantInstances.has(definition.name)) {
273
+ throw new Error(`VariantInstance with name "${definition.name}" is already created.`);
274
+ }
275
+ if (!this.rootVariant) {
276
+ throw new Error(`Viewer has not been properly bootstrapped (rootVariant missing).`);
277
+ }
278
+ const variant = await this.rootVariant.getDescendant(definition.variant);
279
+ const variantInstance = await VariantInstance.createLiving(variant, definition.name, definition.parameters);
280
+ this.variantInstances.set(definition.name, variantInstance);
281
+ this.broadcastEvent(Event.VARIANT_INSTANCE_CREATED, variantInstance);
282
+ return variantInstance;
283
+ }
284
+
285
+ /**
286
+ * Creates a unique instance name based on already registered instance names on the {@link VariantInstanceManager}.
287
+ * Appends an `_i` to the name where `i = 0` and increments as long as the name is not registered.
288
+ */
289
+ protected ensureUniqueName(name: string): string {
290
+ let instanceName = name;
291
+ let i = 1;
292
+ while (this.has(instanceName)) {
293
+ instanceName = `${name}_${i}`;
294
+ i++;
295
+ }
296
+ return instanceName;
297
+ }
298
+ }