@combeenation/3d-viewer 12.4.3 → 12.4.4
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/README.md +9 -9
- package/dist/lib-cjs/api/classes/animationInterface.d.ts +8 -8
- package/dist/lib-cjs/api/classes/animationInterface.js +2 -2
- package/dist/lib-cjs/api/classes/dottedPath.d.ts +79 -79
- package/dist/lib-cjs/api/classes/dottedPath.js +166 -166
- package/dist/lib-cjs/api/classes/element.d.ts +153 -153
- package/dist/lib-cjs/api/classes/element.js +702 -702
- package/dist/lib-cjs/api/classes/event.d.ts +401 -401
- package/dist/lib-cjs/api/classes/event.js +424 -424
- package/dist/lib-cjs/api/classes/eventBroadcaster.d.ts +26 -26
- package/dist/lib-cjs/api/classes/eventBroadcaster.js +49 -49
- package/dist/lib-cjs/api/classes/fuzzyMap.d.ts +7 -7
- package/dist/lib-cjs/api/classes/fuzzyMap.js +21 -21
- package/dist/lib-cjs/api/classes/parameter.d.ts +410 -410
- package/dist/lib-cjs/api/classes/parameter.js +642 -642
- package/dist/lib-cjs/api/classes/parameterObservable.d.ts +36 -36
- package/dist/lib-cjs/api/classes/parameterObservable.js +72 -72
- package/dist/lib-cjs/api/classes/parameterizable.d.ts +15 -15
- package/dist/lib-cjs/api/classes/parameterizable.js +102 -102
- package/dist/lib-cjs/api/classes/placementAnimation.d.ts +45 -45
- package/dist/lib-cjs/api/classes/placementAnimation.js +176 -176
- package/dist/lib-cjs/api/classes/variant.d.ts +261 -261
- package/dist/lib-cjs/api/classes/variant.js +872 -872
- package/dist/lib-cjs/api/classes/variantInstance.d.ts +53 -53
- package/dist/lib-cjs/api/classes/variantInstance.js +125 -125
- package/dist/lib-cjs/api/classes/variantParameterizable.d.ts +17 -17
- package/dist/lib-cjs/api/classes/variantParameterizable.js +86 -86
- package/dist/lib-cjs/api/classes/viewer.d.ts +215 -215
- package/dist/lib-cjs/api/classes/viewer.js +708 -708
- package/dist/lib-cjs/api/classes/viewerError.d.ts +43 -43
- package/dist/lib-cjs/api/classes/viewerError.js +55 -55
- package/dist/lib-cjs/api/classes/viewerLight.d.ts +66 -66
- package/dist/lib-cjs/api/classes/viewerLight.js +344 -344
- package/dist/lib-cjs/api/internal/lensRendering.d.ts +8 -8
- package/dist/lib-cjs/api/internal/lensRendering.js +11 -11
- package/dist/lib-cjs/api/internal/sceneSetup.d.ts +13 -13
- package/dist/lib-cjs/api/internal/sceneSetup.js +227 -227
- package/dist/lib-cjs/api/manager/animationManager.d.ts +30 -30
- package/dist/lib-cjs/api/manager/animationManager.js +126 -126
- package/dist/lib-cjs/api/manager/gltfExportManager.d.ts +80 -80
- package/dist/lib-cjs/api/manager/gltfExportManager.js +300 -300
- package/dist/lib-cjs/api/manager/sceneManager.d.ts +33 -33
- package/dist/lib-cjs/api/manager/sceneManager.js +128 -128
- package/dist/lib-cjs/api/manager/tagManager.d.ts +118 -118
- package/dist/lib-cjs/api/manager/tagManager.js +530 -530
- package/dist/lib-cjs/api/manager/textureLoadManager.d.ts +22 -22
- package/dist/lib-cjs/api/manager/textureLoadManager.js +107 -107
- package/dist/lib-cjs/api/manager/variantInstanceManager.d.ts +106 -106
- package/dist/lib-cjs/api/manager/variantInstanceManager.js +290 -290
- package/dist/lib-cjs/api/store/specStorage.d.ts +32 -32
- package/dist/lib-cjs/api/store/specStorage.js +65 -65
- package/dist/lib-cjs/api/util/babylonHelper.d.ts +238 -238
- package/dist/lib-cjs/api/util/babylonHelper.js +825 -825
- package/dist/lib-cjs/api/util/debugHelper.d.ts +9 -9
- package/dist/lib-cjs/api/util/debugHelper.js +93 -93
- package/dist/lib-cjs/api/util/deviceHelper.d.ts +9 -9
- package/dist/lib-cjs/api/util/deviceHelper.js +28 -28
- package/dist/lib-cjs/api/util/geometryHelper.d.ts +17 -17
- package/dist/lib-cjs/api/util/geometryHelper.js +112 -112
- package/dist/lib-cjs/api/util/globalTypes.d.ts +490 -490
- package/dist/lib-cjs/api/util/globalTypes.js +1 -1
- package/dist/lib-cjs/api/util/resourceHelper.d.ts +58 -58
- package/dist/lib-cjs/api/util/resourceHelper.js +214 -214
- package/dist/lib-cjs/api/util/sceneLoaderHelper.d.ts +58 -58
- package/dist/lib-cjs/api/util/sceneLoaderHelper.js +228 -228
- package/dist/lib-cjs/api/util/stringHelper.d.ts +13 -13
- package/dist/lib-cjs/api/util/stringHelper.js +32 -32
- package/dist/lib-cjs/api/util/structureHelper.d.ts +9 -9
- package/dist/lib-cjs/api/util/structureHelper.js +57 -57
- package/dist/lib-cjs/buildinfo.json +3 -3
- package/dist/lib-cjs/commonjs.tsconfig.tsbuildinfo +1 -1
- package/dist/lib-cjs/index.d.ts +63 -63
- package/dist/lib-cjs/index.js +128 -128
- package/package.json +93 -93
- package/src/api/classes/animationInterface.ts +10 -10
- package/src/api/classes/dottedPath.ts +181 -181
- package/src/api/classes/element.ts +766 -766
- package/src/api/classes/event.ts +457 -457
- package/src/api/classes/eventBroadcaster.ts +52 -52
- package/src/api/classes/fuzzyMap.ts +21 -21
- package/src/api/classes/parameter.ts +686 -686
- package/src/api/classes/parameterObservable.ts +73 -73
- package/src/api/classes/parameterizable.ts +87 -87
- package/src/api/classes/placementAnimation.ts +162 -162
- package/src/api/classes/variant.ts +965 -965
- package/src/api/classes/variantInstance.ts +123 -123
- package/src/api/classes/variantParameterizable.ts +83 -83
- package/src/api/classes/viewer.ts +751 -751
- package/src/api/classes/viewerError.ts +63 -63
- package/src/api/classes/viewerLight.ts +335 -335
- package/src/api/internal/debugViewer.ts +90 -90
- package/src/api/internal/lensRendering.ts +9 -9
- package/src/api/internal/sceneSetup.ts +208 -208
- package/src/api/manager/animationManager.ts +143 -143
- package/src/api/manager/gltfExportManager.ts +337 -337
- package/src/api/manager/sceneManager.ts +134 -134
- package/src/api/manager/tagManager.ts +572 -572
- package/src/api/manager/textureLoadManager.ts +107 -107
- package/src/api/manager/variantInstanceManager.ts +306 -306
- package/src/api/store/specStorage.ts +68 -68
- package/src/api/util/babylonHelper.ts +915 -915
- package/src/api/util/debugHelper.ts +121 -121
- package/src/api/util/deviceHelper.ts +31 -31
- package/src/api/util/geometryHelper.ts +142 -142
- package/src/api/util/globalTypes.ts +566 -566
- package/src/api/util/resourceHelper.ts +201 -201
- package/src/api/util/sceneLoaderHelper.ts +247 -247
- package/src/api/util/stringHelper.ts +30 -30
- package/src/api/util/structureHelper.ts +62 -62
- package/src/buildinfo.json +3 -3
- package/src/dev.ts +70 -70
- package/src/index.ts +116 -116
- package/src/types.d.ts +49 -49
|
@@ -1,73 +1,73 @@
|
|
|
1
|
-
import { uuidv4 } from '../util/stringHelper';
|
|
2
|
-
import { EventBroadcaster } from './eventBroadcaster';
|
|
3
|
-
import { Parameter } from './parameter';
|
|
4
|
-
import { merge } from 'lodash-es';
|
|
5
|
-
|
|
6
|
-
export abstract class ParameterObservable extends EventBroadcaster {
|
|
7
|
-
public readonly uuid: string;
|
|
8
|
-
|
|
9
|
-
public readonly parameters: ParameterBag = {};
|
|
10
|
-
|
|
11
|
-
protected readonly parameterDeclaration: ParameterDeclarations = {};
|
|
12
|
-
|
|
13
|
-
protected parameterObservers: Map<string, ParameterObserver[]> = new Map();
|
|
14
|
-
|
|
15
|
-
protected constructor(parameterDeclaration: ParameterDeclarations = {}, parameters: ParameterBag = {}) {
|
|
16
|
-
super();
|
|
17
|
-
this.uuid = uuidv4();
|
|
18
|
-
this.parameterDeclaration = merge(this.parameterDeclaration, parameterDeclaration);
|
|
19
|
-
this.parameters = merge(this.parameters, parameters);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* The uuid (if not overloaded).
|
|
24
|
-
*/
|
|
25
|
-
get id(): string {
|
|
26
|
-
return this.uuid;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Adds an observer function for parameter changes.
|
|
31
|
-
* The {@link ParameterObserver} gets 3 parameters: the {@link ParameterObservable}, the old {@link ParameterValue}
|
|
32
|
-
* and the new {@link ParameterValue}.
|
|
33
|
-
*
|
|
34
|
-
* See [Parameters](https://3dviewer.docs.combeenation.com/pages/documentation/Parameters.html) for an example.
|
|
35
|
-
*/
|
|
36
|
-
public addParameterObserver(parameter: string, observer: ParameterObserver): ParameterObservable {
|
|
37
|
-
if (this.parameterObservers.has(parameter)) {
|
|
38
|
-
this.parameterObservers.get(parameter)!.push(observer);
|
|
39
|
-
return this;
|
|
40
|
-
}
|
|
41
|
-
this.parameterObservers.set(parameter, [observer]);
|
|
42
|
-
return this;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* Removes all {@link ParameterObserver}s for given parameter.
|
|
47
|
-
*/
|
|
48
|
-
public removeParameterObservers(parameter: string): ParameterObservable {
|
|
49
|
-
this.parameterObservers.delete(parameter);
|
|
50
|
-
return this;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/**
|
|
54
|
-
* Invoke parameter observers for given parameter.
|
|
55
|
-
*/
|
|
56
|
-
public async commitParameter(parameter: string, value: ParameterValue): Promise<ParameterObservable> {
|
|
57
|
-
const parameters: ParameterBag = {};
|
|
58
|
-
parameters[parameter] = value;
|
|
59
|
-
return this.commitParameters(parameters);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* Invoke parameter observers for given parameters.
|
|
64
|
-
*/
|
|
65
|
-
public abstract commitParameters(parameters?: ParameterBag): Promise<ParameterObservable>;
|
|
66
|
-
|
|
67
|
-
/**
|
|
68
|
-
* Asserts whether given parameter is declared and valid.
|
|
69
|
-
*/
|
|
70
|
-
public assertParameter(parameterDeclaration: ParameterDeclarations, parameter: string, value: ParameterValue) {
|
|
71
|
-
Parameter.assertParameter(parameterDeclaration, parameter, value);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
1
|
+
import { uuidv4 } from '../util/stringHelper';
|
|
2
|
+
import { EventBroadcaster } from './eventBroadcaster';
|
|
3
|
+
import { Parameter } from './parameter';
|
|
4
|
+
import { merge } from 'lodash-es';
|
|
5
|
+
|
|
6
|
+
export abstract class ParameterObservable extends EventBroadcaster {
|
|
7
|
+
public readonly uuid: string;
|
|
8
|
+
|
|
9
|
+
public readonly parameters: ParameterBag = {};
|
|
10
|
+
|
|
11
|
+
protected readonly parameterDeclaration: ParameterDeclarations = {};
|
|
12
|
+
|
|
13
|
+
protected parameterObservers: Map<string, ParameterObserver[]> = new Map();
|
|
14
|
+
|
|
15
|
+
protected constructor(parameterDeclaration: ParameterDeclarations = {}, parameters: ParameterBag = {}) {
|
|
16
|
+
super();
|
|
17
|
+
this.uuid = uuidv4();
|
|
18
|
+
this.parameterDeclaration = merge(this.parameterDeclaration, parameterDeclaration);
|
|
19
|
+
this.parameters = merge(this.parameters, parameters);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* The uuid (if not overloaded).
|
|
24
|
+
*/
|
|
25
|
+
get id(): string {
|
|
26
|
+
return this.uuid;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Adds an observer function for parameter changes.
|
|
31
|
+
* The {@link ParameterObserver} gets 3 parameters: the {@link ParameterObservable}, the old {@link ParameterValue}
|
|
32
|
+
* and the new {@link ParameterValue}.
|
|
33
|
+
*
|
|
34
|
+
* See [Parameters](https://3dviewer.docs.combeenation.com/pages/documentation/Parameters.html) for an example.
|
|
35
|
+
*/
|
|
36
|
+
public addParameterObserver(parameter: string, observer: ParameterObserver): ParameterObservable {
|
|
37
|
+
if (this.parameterObservers.has(parameter)) {
|
|
38
|
+
this.parameterObservers.get(parameter)!.push(observer);
|
|
39
|
+
return this;
|
|
40
|
+
}
|
|
41
|
+
this.parameterObservers.set(parameter, [observer]);
|
|
42
|
+
return this;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Removes all {@link ParameterObserver}s for given parameter.
|
|
47
|
+
*/
|
|
48
|
+
public removeParameterObservers(parameter: string): ParameterObservable {
|
|
49
|
+
this.parameterObservers.delete(parameter);
|
|
50
|
+
return this;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Invoke parameter observers for given parameter.
|
|
55
|
+
*/
|
|
56
|
+
public async commitParameter(parameter: string, value: ParameterValue): Promise<ParameterObservable> {
|
|
57
|
+
const parameters: ParameterBag = {};
|
|
58
|
+
parameters[parameter] = value;
|
|
59
|
+
return this.commitParameters(parameters);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Invoke parameter observers for given parameters.
|
|
64
|
+
*/
|
|
65
|
+
public abstract commitParameters(parameters?: ParameterBag): Promise<ParameterObservable>;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Asserts whether given parameter is declared and valid.
|
|
69
|
+
*/
|
|
70
|
+
public assertParameter(parameterDeclaration: ParameterDeclarations, parameter: string, value: ParameterValue) {
|
|
71
|
+
Parameter.assertParameter(parameterDeclaration, parameter, value);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
import { Parameter } from './parameter';
|
|
2
|
-
import { ParameterObservable } from './parameterObservable';
|
|
3
|
-
|
|
4
|
-
export abstract class Parameterizable extends ParameterObservable {
|
|
5
|
-
protected parameterDeclaration: ParameterDeclarations = Parameter.declarations;
|
|
6
|
-
|
|
7
|
-
get visible(): boolean | undefined {
|
|
8
|
-
if (!(Parameter.VISIBLE in this.parameters)) {
|
|
9
|
-
return undefined;
|
|
10
|
-
}
|
|
11
|
-
try {
|
|
12
|
-
return Parameter.parseBoolean(this.parameters[Parameter.VISIBLE]);
|
|
13
|
-
} catch (e) {
|
|
14
|
-
return undefined;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
get highlighted(): boolean | undefined {
|
|
19
|
-
if (!(Parameter.HIGHLIGHTED in this.parameters)) {
|
|
20
|
-
return undefined;
|
|
21
|
-
}
|
|
22
|
-
try {
|
|
23
|
-
return Parameter.parseBoolean(this.parameters[Parameter.HIGHLIGHTED]);
|
|
24
|
-
} catch (e) {
|
|
25
|
-
return undefined;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
get material(): string | undefined {
|
|
30
|
-
if (!(Parameter.MATERIAL in this.parameters)) {
|
|
31
|
-
return undefined;
|
|
32
|
-
}
|
|
33
|
-
return this.parameters[Parameter.MATERIAL].toString();
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
get scaling(): string | undefined {
|
|
37
|
-
if (!(Parameter.SCALING in this.parameters)) {
|
|
38
|
-
return undefined;
|
|
39
|
-
}
|
|
40
|
-
return this.parameters[Parameter.SCALING].toString();
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
get position(): string | undefined {
|
|
44
|
-
if (!(Parameter.POSITION in this.parameters)) {
|
|
45
|
-
return undefined;
|
|
46
|
-
}
|
|
47
|
-
return this.parameters[Parameter.POSITION].toString();
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
get rotation(): string | undefined {
|
|
51
|
-
if (!(Parameter.ROTATION in this.parameters)) {
|
|
52
|
-
return undefined;
|
|
53
|
-
}
|
|
54
|
-
return this.parameters[Parameter.ROTATION].toString();
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
get castShadow(): boolean | undefined {
|
|
58
|
-
if (!(Parameter.CAST_SHADOW in this.parameters)) {
|
|
59
|
-
return undefined;
|
|
60
|
-
}
|
|
61
|
-
try {
|
|
62
|
-
return Parameter.parseBoolean(this.parameters[Parameter.CAST_SHADOW]);
|
|
63
|
-
} catch (e) {
|
|
64
|
-
return undefined;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
public async show(): Promise<ParameterObservable> {
|
|
69
|
-
await this.commitParameter(Parameter.VISIBLE, true);
|
|
70
|
-
return this;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
public async hide(): Promise<ParameterObservable> {
|
|
74
|
-
await this.commitParameter(Parameter.VISIBLE, false);
|
|
75
|
-
return this;
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
public async toggle(): Promise<ParameterObservable> {
|
|
79
|
-
await this.commitParameter(Parameter.VISIBLE, !this.visible);
|
|
80
|
-
return this;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
public async toggleHighlight(): Promise<ParameterObservable> {
|
|
84
|
-
await this.commitParameter(Parameter.HIGHLIGHTED, !this.highlighted);
|
|
85
|
-
return this;
|
|
86
|
-
}
|
|
87
|
-
}
|
|
1
|
+
import { Parameter } from './parameter';
|
|
2
|
+
import { ParameterObservable } from './parameterObservable';
|
|
3
|
+
|
|
4
|
+
export abstract class Parameterizable extends ParameterObservable {
|
|
5
|
+
protected parameterDeclaration: ParameterDeclarations = Parameter.declarations;
|
|
6
|
+
|
|
7
|
+
get visible(): boolean | undefined {
|
|
8
|
+
if (!(Parameter.VISIBLE in this.parameters)) {
|
|
9
|
+
return undefined;
|
|
10
|
+
}
|
|
11
|
+
try {
|
|
12
|
+
return Parameter.parseBoolean(this.parameters[Parameter.VISIBLE]);
|
|
13
|
+
} catch (e) {
|
|
14
|
+
return undefined;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
get highlighted(): boolean | undefined {
|
|
19
|
+
if (!(Parameter.HIGHLIGHTED in this.parameters)) {
|
|
20
|
+
return undefined;
|
|
21
|
+
}
|
|
22
|
+
try {
|
|
23
|
+
return Parameter.parseBoolean(this.parameters[Parameter.HIGHLIGHTED]);
|
|
24
|
+
} catch (e) {
|
|
25
|
+
return undefined;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
get material(): string | undefined {
|
|
30
|
+
if (!(Parameter.MATERIAL in this.parameters)) {
|
|
31
|
+
return undefined;
|
|
32
|
+
}
|
|
33
|
+
return this.parameters[Parameter.MATERIAL].toString();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
get scaling(): string | undefined {
|
|
37
|
+
if (!(Parameter.SCALING in this.parameters)) {
|
|
38
|
+
return undefined;
|
|
39
|
+
}
|
|
40
|
+
return this.parameters[Parameter.SCALING].toString();
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
get position(): string | undefined {
|
|
44
|
+
if (!(Parameter.POSITION in this.parameters)) {
|
|
45
|
+
return undefined;
|
|
46
|
+
}
|
|
47
|
+
return this.parameters[Parameter.POSITION].toString();
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
get rotation(): string | undefined {
|
|
51
|
+
if (!(Parameter.ROTATION in this.parameters)) {
|
|
52
|
+
return undefined;
|
|
53
|
+
}
|
|
54
|
+
return this.parameters[Parameter.ROTATION].toString();
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
get castShadow(): boolean | undefined {
|
|
58
|
+
if (!(Parameter.CAST_SHADOW in this.parameters)) {
|
|
59
|
+
return undefined;
|
|
60
|
+
}
|
|
61
|
+
try {
|
|
62
|
+
return Parameter.parseBoolean(this.parameters[Parameter.CAST_SHADOW]);
|
|
63
|
+
} catch (e) {
|
|
64
|
+
return undefined;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
public async show(): Promise<ParameterObservable> {
|
|
69
|
+
await this.commitParameter(Parameter.VISIBLE, true);
|
|
70
|
+
return this;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
public async hide(): Promise<ParameterObservable> {
|
|
74
|
+
await this.commitParameter(Parameter.VISIBLE, false);
|
|
75
|
+
return this;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
public async toggle(): Promise<ParameterObservable> {
|
|
79
|
+
await this.commitParameter(Parameter.VISIBLE, !this.visible);
|
|
80
|
+
return this;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
public async toggleHighlight(): Promise<ParameterObservable> {
|
|
84
|
+
await this.commitParameter(Parameter.HIGHLIGHTED, !this.highlighted);
|
|
85
|
+
return this;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -1,162 +1,162 @@
|
|
|
1
|
-
import { Parameter } from '../classes/parameter';
|
|
2
|
-
import { SpecStorage } from '../store/specStorage';
|
|
3
|
-
import { AnimationInterface } from './animationInterface';
|
|
4
|
-
import { ArcRotateCamera } from '@babylonjs/core/Cameras/arcRotateCamera';
|
|
5
|
-
import { Vector3 } from '@babylonjs/core/Maths/math.vector';
|
|
6
|
-
import { gsap } from 'gsap';
|
|
7
|
-
import { cloneDeep, get, isString, merge, set } from 'lodash-es';
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* An {@link PlacementAnimation} handling `Tweens` of the `GSAP` API using configured {@link PlacementDefinition}s
|
|
11
|
-
* and {@link AnimationDefinition}s. It mutates the attributes in the given {@link PlacementDefinition} with the given
|
|
12
|
-
* {@link AnimationDefinition}. The latter can be anything the `GSAP` allows in its API. Please consider using the
|
|
13
|
-
* API of the {@link AnimationManager} to handle instances of this class in your consuming project.
|
|
14
|
-
*/
|
|
15
|
-
export class PlacementAnimation implements AnimationInterface {
|
|
16
|
-
protected _placementDefinition: PlacementDefinition;
|
|
17
|
-
|
|
18
|
-
protected _animationDefinition: AnimationDefinition;
|
|
19
|
-
|
|
20
|
-
protected _timeline: GSAPTimeline;
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Constructor.
|
|
24
|
-
*/
|
|
25
|
-
public constructor(
|
|
26
|
-
public readonly mutable: object,
|
|
27
|
-
protected _placement: PlacementDefinition | string,
|
|
28
|
-
protected _animation?: AnimationDefinition | string
|
|
29
|
-
) {
|
|
30
|
-
if (isString(_placement)) {
|
|
31
|
-
const placementDefinitions = SpecStorage.get<PlacementDefinitions>('scene.placements');
|
|
32
|
-
if (!placementDefinitions) {
|
|
33
|
-
throw new Error(`No PlacementDefinitions defined in JSON structure.`);
|
|
34
|
-
}
|
|
35
|
-
const placementDefinition = placementDefinitions[_placement];
|
|
36
|
-
if (!placementDefinition) {
|
|
37
|
-
throw new Error(`PlacementDefinition "${_placement}" not defined in JSON structure.`);
|
|
38
|
-
}
|
|
39
|
-
this._placementDefinition = cloneDeep(placementDefinition);
|
|
40
|
-
} else {
|
|
41
|
-
this._placementDefinition = cloneDeep(_placement) as PlacementDefinition;
|
|
42
|
-
}
|
|
43
|
-
if (isString(_animation)) {
|
|
44
|
-
const animationDefinition = SpecStorage.get<AnimationDefinitions>('scene.animations')?.[_animation];
|
|
45
|
-
if (!animationDefinition) {
|
|
46
|
-
throw new Error(`AnimationDefinition "${_animation}" not defined in JSON structure.`);
|
|
47
|
-
}
|
|
48
|
-
this._animationDefinition = cloneDeep(animationDefinition);
|
|
49
|
-
} else {
|
|
50
|
-
this._animationDefinition = cloneDeep(_animation) as AnimationDefinition;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
this.prepareAnimationDefinition();
|
|
54
|
-
// create (shallow) copy for GSAP which doesn't contain `shortestWay`,
|
|
55
|
-
// because that's not part of the original `TweenVars` input typing and therefore leads to warnings
|
|
56
|
-
const { shortestWay, ...gsapTweenVars } = this._animationDefinition;
|
|
57
|
-
this._timeline = gsap.timeline({
|
|
58
|
-
defaults: gsapTweenVars,
|
|
59
|
-
paused: true,
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
this.preparePlacementDefinition();
|
|
63
|
-
this.createTweens();
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
/**
|
|
67
|
-
* Plays all `Tweens` of this {@link PlacementAnimation}.
|
|
68
|
-
*/
|
|
69
|
-
public async play(): Promise<AnimationInterface> {
|
|
70
|
-
await this._timeline.play().then();
|
|
71
|
-
return this;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* Pause all `Tweens` of this {@link PlacementAnimation}.
|
|
76
|
-
*/
|
|
77
|
-
public pause(): AnimationInterface {
|
|
78
|
-
this._timeline.pause();
|
|
79
|
-
return this;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
/**
|
|
83
|
-
* Kills all `Tweens` of this {@link PlacementAnimation}.
|
|
84
|
-
*/
|
|
85
|
-
public kill(): AnimationInterface {
|
|
86
|
-
this._timeline.kill();
|
|
87
|
-
return this;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* Creates a {@link AnimationDefinition} definition if not provided in the constructor and sets some defaults.
|
|
92
|
-
* Only custom properties from {@link AnimationDefinition} are adjusted, all {@link GSAPTweenVars} remain untouched.
|
|
93
|
-
*/
|
|
94
|
-
protected prepareAnimationDefinition() {
|
|
95
|
-
// create an animation definition if not available yet
|
|
96
|
-
this._animationDefinition = this._animationDefinition || {};
|
|
97
|
-
|
|
98
|
-
// parse shortest way flag or set to `true` if not configured
|
|
99
|
-
if (this._animationDefinition.shortestWay !== undefined) {
|
|
100
|
-
this._animationDefinition.shortestWay = Parameter.parseBoolean(this._animationDefinition.shortestWay);
|
|
101
|
-
} else {
|
|
102
|
-
this._animationDefinition.shortestWay = true;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
/**
|
|
107
|
-
* Prepares different types of {@link PlacementDefinition} and sets some defaults.
|
|
108
|
-
*/
|
|
109
|
-
protected preparePlacementDefinition() {
|
|
110
|
-
let position = this._placementDefinition.position;
|
|
111
|
-
if (isString(position)) {
|
|
112
|
-
position = Parameter.parseVector(position);
|
|
113
|
-
this._placementDefinition.position = position;
|
|
114
|
-
}
|
|
115
|
-
if (this.mutable instanceof ArcRotateCamera) {
|
|
116
|
-
// parse the target
|
|
117
|
-
if (isString(this._placementDefinition.target)) {
|
|
118
|
-
this._placementDefinition.target = Parameter.parseVector(this._placementDefinition.target);
|
|
119
|
-
}
|
|
120
|
-
if (position) {
|
|
121
|
-
// parse the position and calculate alpha, beta and radius with a "ghost camera"
|
|
122
|
-
// @see https://www.babylonjs-playground.com/#4IVMG#0
|
|
123
|
-
const ghostCam = (this.mutable as ArcRotateCamera).clone('ghost') as ArcRotateCamera;
|
|
124
|
-
ghostCam.setPosition(position);
|
|
125
|
-
merge(this._placementDefinition, {
|
|
126
|
-
alpha: ghostCam.alpha,
|
|
127
|
-
beta: ghostCam.beta,
|
|
128
|
-
radius: ghostCam.radius,
|
|
129
|
-
});
|
|
130
|
-
delete this._placementDefinition.position;
|
|
131
|
-
ghostCam.dispose();
|
|
132
|
-
} else if (this._animationDefinition.shortestWay && this._placementDefinition.alpha !== undefined) {
|
|
133
|
-
// transform the target's alpha value into the same turn as the current camera position to avoid movements
|
|
134
|
-
// > 360 degrees
|
|
135
|
-
const alphaGap = this.mutable.alpha - this._placementDefinition.alpha;
|
|
136
|
-
const cntTurns = Math.round(alphaGap / (2 * Math.PI));
|
|
137
|
-
this._placementDefinition.alpha += 2 * Math.PI * cntTurns;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* Creates `Tweens` for the {@link PlacementDefinition} configured for this {@link PlacementAnimation}.
|
|
144
|
-
*/
|
|
145
|
-
protected createTweens() {
|
|
146
|
-
for (const property in this._placementDefinition) {
|
|
147
|
-
const propertyValue = get(this._placementDefinition, property);
|
|
148
|
-
const tweenVars: object = {};
|
|
149
|
-
let _mutable = this.mutable;
|
|
150
|
-
if (propertyValue instanceof Vector3) {
|
|
151
|
-
// GSAP does not support mutation of complex objects, so we are forced
|
|
152
|
-
// to use the properties on the object as mutable directly and mutate
|
|
153
|
-
// the coordinates separately.
|
|
154
|
-
_mutable = get(this.mutable, property);
|
|
155
|
-
merge(tweenVars, { x: propertyValue.x, y: propertyValue.y, z: propertyValue.z });
|
|
156
|
-
} else {
|
|
157
|
-
set(tweenVars, property, propertyValue);
|
|
158
|
-
}
|
|
159
|
-
this._timeline.to(_mutable, tweenVars, 0); // Note: position 0 does the "parallel" stuff here
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
1
|
+
import { Parameter } from '../classes/parameter';
|
|
2
|
+
import { SpecStorage } from '../store/specStorage';
|
|
3
|
+
import { AnimationInterface } from './animationInterface';
|
|
4
|
+
import { ArcRotateCamera } from '@babylonjs/core/Cameras/arcRotateCamera';
|
|
5
|
+
import { Vector3 } from '@babylonjs/core/Maths/math.vector';
|
|
6
|
+
import { gsap } from 'gsap';
|
|
7
|
+
import { cloneDeep, get, isString, merge, set } from 'lodash-es';
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* An {@link PlacementAnimation} handling `Tweens` of the `GSAP` API using configured {@link PlacementDefinition}s
|
|
11
|
+
* and {@link AnimationDefinition}s. It mutates the attributes in the given {@link PlacementDefinition} with the given
|
|
12
|
+
* {@link AnimationDefinition}. The latter can be anything the `GSAP` allows in its API. Please consider using the
|
|
13
|
+
* API of the {@link AnimationManager} to handle instances of this class in your consuming project.
|
|
14
|
+
*/
|
|
15
|
+
export class PlacementAnimation implements AnimationInterface {
|
|
16
|
+
protected _placementDefinition: PlacementDefinition;
|
|
17
|
+
|
|
18
|
+
protected _animationDefinition: AnimationDefinition;
|
|
19
|
+
|
|
20
|
+
protected _timeline: GSAPTimeline;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Constructor.
|
|
24
|
+
*/
|
|
25
|
+
public constructor(
|
|
26
|
+
public readonly mutable: object,
|
|
27
|
+
protected _placement: PlacementDefinition | string,
|
|
28
|
+
protected _animation?: AnimationDefinition | string
|
|
29
|
+
) {
|
|
30
|
+
if (isString(_placement)) {
|
|
31
|
+
const placementDefinitions = SpecStorage.get<PlacementDefinitions>('scene.placements');
|
|
32
|
+
if (!placementDefinitions) {
|
|
33
|
+
throw new Error(`No PlacementDefinitions defined in JSON structure.`);
|
|
34
|
+
}
|
|
35
|
+
const placementDefinition = placementDefinitions[_placement];
|
|
36
|
+
if (!placementDefinition) {
|
|
37
|
+
throw new Error(`PlacementDefinition "${_placement}" not defined in JSON structure.`);
|
|
38
|
+
}
|
|
39
|
+
this._placementDefinition = cloneDeep(placementDefinition);
|
|
40
|
+
} else {
|
|
41
|
+
this._placementDefinition = cloneDeep(_placement) as PlacementDefinition;
|
|
42
|
+
}
|
|
43
|
+
if (isString(_animation)) {
|
|
44
|
+
const animationDefinition = SpecStorage.get<AnimationDefinitions>('scene.animations')?.[_animation];
|
|
45
|
+
if (!animationDefinition) {
|
|
46
|
+
throw new Error(`AnimationDefinition "${_animation}" not defined in JSON structure.`);
|
|
47
|
+
}
|
|
48
|
+
this._animationDefinition = cloneDeep(animationDefinition);
|
|
49
|
+
} else {
|
|
50
|
+
this._animationDefinition = cloneDeep(_animation) as AnimationDefinition;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
this.prepareAnimationDefinition();
|
|
54
|
+
// create (shallow) copy for GSAP which doesn't contain `shortestWay`,
|
|
55
|
+
// because that's not part of the original `TweenVars` input typing and therefore leads to warnings
|
|
56
|
+
const { shortestWay, ...gsapTweenVars } = this._animationDefinition;
|
|
57
|
+
this._timeline = gsap.timeline({
|
|
58
|
+
defaults: gsapTweenVars,
|
|
59
|
+
paused: true,
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
this.preparePlacementDefinition();
|
|
63
|
+
this.createTweens();
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Plays all `Tweens` of this {@link PlacementAnimation}.
|
|
68
|
+
*/
|
|
69
|
+
public async play(): Promise<AnimationInterface> {
|
|
70
|
+
await this._timeline.play().then();
|
|
71
|
+
return this;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Pause all `Tweens` of this {@link PlacementAnimation}.
|
|
76
|
+
*/
|
|
77
|
+
public pause(): AnimationInterface {
|
|
78
|
+
this._timeline.pause();
|
|
79
|
+
return this;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Kills all `Tweens` of this {@link PlacementAnimation}.
|
|
84
|
+
*/
|
|
85
|
+
public kill(): AnimationInterface {
|
|
86
|
+
this._timeline.kill();
|
|
87
|
+
return this;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Creates a {@link AnimationDefinition} definition if not provided in the constructor and sets some defaults.
|
|
92
|
+
* Only custom properties from {@link AnimationDefinition} are adjusted, all {@link GSAPTweenVars} remain untouched.
|
|
93
|
+
*/
|
|
94
|
+
protected prepareAnimationDefinition() {
|
|
95
|
+
// create an animation definition if not available yet
|
|
96
|
+
this._animationDefinition = this._animationDefinition || {};
|
|
97
|
+
|
|
98
|
+
// parse shortest way flag or set to `true` if not configured
|
|
99
|
+
if (this._animationDefinition.shortestWay !== undefined) {
|
|
100
|
+
this._animationDefinition.shortestWay = Parameter.parseBoolean(this._animationDefinition.shortestWay);
|
|
101
|
+
} else {
|
|
102
|
+
this._animationDefinition.shortestWay = true;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Prepares different types of {@link PlacementDefinition} and sets some defaults.
|
|
108
|
+
*/
|
|
109
|
+
protected preparePlacementDefinition() {
|
|
110
|
+
let position = this._placementDefinition.position;
|
|
111
|
+
if (isString(position)) {
|
|
112
|
+
position = Parameter.parseVector(position);
|
|
113
|
+
this._placementDefinition.position = position;
|
|
114
|
+
}
|
|
115
|
+
if (this.mutable instanceof ArcRotateCamera) {
|
|
116
|
+
// parse the target
|
|
117
|
+
if (isString(this._placementDefinition.target)) {
|
|
118
|
+
this._placementDefinition.target = Parameter.parseVector(this._placementDefinition.target);
|
|
119
|
+
}
|
|
120
|
+
if (position) {
|
|
121
|
+
// parse the position and calculate alpha, beta and radius with a "ghost camera"
|
|
122
|
+
// @see https://www.babylonjs-playground.com/#4IVMG#0
|
|
123
|
+
const ghostCam = (this.mutable as ArcRotateCamera).clone('ghost') as ArcRotateCamera;
|
|
124
|
+
ghostCam.setPosition(position);
|
|
125
|
+
merge(this._placementDefinition, {
|
|
126
|
+
alpha: ghostCam.alpha,
|
|
127
|
+
beta: ghostCam.beta,
|
|
128
|
+
radius: ghostCam.radius,
|
|
129
|
+
});
|
|
130
|
+
delete this._placementDefinition.position;
|
|
131
|
+
ghostCam.dispose();
|
|
132
|
+
} else if (this._animationDefinition.shortestWay && this._placementDefinition.alpha !== undefined) {
|
|
133
|
+
// transform the target's alpha value into the same turn as the current camera position to avoid movements
|
|
134
|
+
// > 360 degrees
|
|
135
|
+
const alphaGap = this.mutable.alpha - this._placementDefinition.alpha;
|
|
136
|
+
const cntTurns = Math.round(alphaGap / (2 * Math.PI));
|
|
137
|
+
this._placementDefinition.alpha += 2 * Math.PI * cntTurns;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Creates `Tweens` for the {@link PlacementDefinition} configured for this {@link PlacementAnimation}.
|
|
144
|
+
*/
|
|
145
|
+
protected createTweens() {
|
|
146
|
+
for (const property in this._placementDefinition) {
|
|
147
|
+
const propertyValue = get(this._placementDefinition, property);
|
|
148
|
+
const tweenVars: object = {};
|
|
149
|
+
let _mutable = this.mutable;
|
|
150
|
+
if (propertyValue instanceof Vector3) {
|
|
151
|
+
// GSAP does not support mutation of complex objects, so we are forced
|
|
152
|
+
// to use the properties on the object as mutable directly and mutate
|
|
153
|
+
// the coordinates separately.
|
|
154
|
+
_mutable = get(this.mutable, property);
|
|
155
|
+
merge(tweenVars, { x: propertyValue.x, y: propertyValue.y, z: propertyValue.z });
|
|
156
|
+
} else {
|
|
157
|
+
set(tweenVars, property, propertyValue);
|
|
158
|
+
}
|
|
159
|
+
this._timeline.to(_mutable, tweenVars, 0); // Note: position 0 does the "parallel" stuff here
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|