@needle-tools/engine 2.38.0-pre.2 → 2.40.0-pre

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 (63) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/needle-engine.d.ts +129 -36
  3. package/dist/needle-engine.js +356 -356
  4. package/dist/needle-engine.js.map +3 -3
  5. package/dist/needle-engine.min.js +61 -61
  6. package/dist/needle-engine.min.js.map +3 -3
  7. package/lib/engine/api.d.ts +1 -0
  8. package/lib/engine/api.js +1 -0
  9. package/lib/engine/api.js.map +1 -1
  10. package/lib/engine/engine_gizmos.d.ts +24 -0
  11. package/lib/engine/engine_gizmos.js +97 -5
  12. package/lib/engine/engine_gizmos.js.map +1 -1
  13. package/lib/engine/engine_gltf_builtin_components.js +4 -2
  14. package/lib/engine/engine_gltf_builtin_components.js.map +1 -1
  15. package/lib/engine/engine_input.d.ts +2 -0
  16. package/lib/engine/engine_input.js +9 -2
  17. package/lib/engine/engine_input.js.map +1 -1
  18. package/lib/engine/engine_networking.d.ts +1 -0
  19. package/lib/engine/engine_networking.js +9 -0
  20. package/lib/engine/engine_networking.js.map +1 -1
  21. package/lib/engine/engine_physics.d.ts +20 -2
  22. package/lib/engine/engine_physics.js +133 -16
  23. package/lib/engine/engine_physics.js.map +1 -1
  24. package/lib/engine/engine_serialization_core.d.ts +11 -1
  25. package/lib/engine/engine_serialization_core.js +41 -10
  26. package/lib/engine/engine_serialization_core.js.map +1 -1
  27. package/lib/engine/engine_three_utils.js +1 -22
  28. package/lib/engine/engine_three_utils.js.map +1 -1
  29. package/lib/engine/engine_types.d.ts +12 -6
  30. package/lib/engine/engine_types.js +22 -5
  31. package/lib/engine/engine_types.js.map +1 -1
  32. package/lib/engine/engine_utils.d.ts +8 -0
  33. package/lib/engine/engine_utils.js +22 -0
  34. package/lib/engine/engine_utils.js.map +1 -1
  35. package/lib/engine/extensions/NEEDLE_lightmaps.js +1 -1
  36. package/lib/engine/extensions/NEEDLE_lightmaps.js.map +1 -1
  37. package/lib/engine-components/Component.d.ts +18 -0
  38. package/lib/engine-components/Component.js +15 -2
  39. package/lib/engine-components/Component.js.map +1 -1
  40. package/lib/engine-components/Joints.d.ts +5 -1
  41. package/lib/engine-components/Joints.js +17 -7
  42. package/lib/engine-components/Joints.js.map +1 -1
  43. package/lib/engine-components/Light.js +1 -1
  44. package/lib/engine-components/codegen/components.d.ts +1 -0
  45. package/lib/engine-components/codegen/components.js +1 -0
  46. package/lib/engine-components/codegen/components.js.map +1 -1
  47. package/package.json +1 -1
  48. package/src/engine/api.ts +2 -1
  49. package/src/engine/codegen/register_types.js +4 -0
  50. package/src/engine/engine_gizmos.ts +117 -5
  51. package/src/engine/engine_gltf_builtin_components.ts +5 -2
  52. package/src/engine/engine_input.ts +12 -2
  53. package/src/engine/engine_networking.ts +10 -0
  54. package/src/engine/engine_physics.ts +159 -17
  55. package/src/engine/engine_serialization_core.ts +49 -12
  56. package/src/engine/engine_three_utils.ts +1 -29
  57. package/src/engine/engine_types.ts +33 -14
  58. package/src/engine/engine_utils.ts +27 -0
  59. package/src/engine/extensions/NEEDLE_lightmaps.ts +1 -1
  60. package/src/engine-components/Component.ts +30 -4
  61. package/src/engine-components/Joints.ts +19 -7
  62. package/src/engine-components/Light.ts +1 -1
  63. package/src/engine-components/codegen/components.ts +1 -0
@@ -1,31 +1,7 @@
1
1
  import * as THREE from "three";
2
2
  import { Mathf } from "./engine_math"
3
3
  import { Vector3, Quaternion, Uniform } from "three";
4
-
5
- class CircularBuffer<T> {
6
- private _factory: () => T;
7
- private _cache: T[] = [];
8
- private _maxSize: number;
9
- private _index: number = 0;
10
-
11
- constructor(factory: () => T, maxSize: number) {
12
- this._factory = factory;
13
- this._maxSize = maxSize;
14
- }
15
-
16
- get(): T {
17
- let i = this._index++;
18
- if (i >= this._cache.length) {
19
- if (i >= this._maxSize) {
20
- i = this._index = 0;
21
- }
22
- else {
23
- this._cache.push(this._factory());
24
- }
25
- }
26
- return this._cache[i];
27
- }
28
- }
4
+ import { CircularBuffer } from "./engine_utils";
29
5
 
30
6
 
31
7
 
@@ -39,10 +15,6 @@ export function lookAtInverse(obj: THREE.Object3D, target: Vector3) {
39
15
 
40
16
  const _worldPositions = new CircularBuffer(() => new THREE.Vector3(), 100);
41
17
 
42
-
43
-
44
-
45
-
46
18
  export function getWorldPosition(obj: THREE.Object3D, vec: THREE.Vector3 | null = null, updateParents: boolean = true): THREE.Vector3 {
47
19
  const wp = vec ?? _worldPositions.get();
48
20
  if (!obj) return wp.set(0, 0, 0);
@@ -1,6 +1,8 @@
1
1
  import { Camera, Color, Material, Object3D, Vector3, Quaternion } from "three";
2
2
  import { RGBAColor } from "../engine-components/js-extensions/RGBAColor";
3
3
  import { CollisionDetectionMode, RigidbodyConstraints } from "./engine_physics.types";
4
+ import { getWorldPosition } from "./engine_three_utils";
5
+ import { CircularBuffer } from "./engine_utils";
4
6
 
5
7
  /** used to find data registered via gltf files e.g. find lightmaps for a Renderer component that were shipped inside a gltf */
6
8
  export declare type SourceIdentifier = string;
@@ -40,7 +42,7 @@ export interface IComponent {
40
42
  get name(): string;
41
43
  get layer(): number;
42
44
  get destroyed(): boolean;
43
- get tag() : string;
45
+ get tag(): string;
44
46
 
45
47
  context: any;
46
48
 
@@ -84,7 +86,7 @@ export interface IComponent {
84
86
 
85
87
 
86
88
  export declare interface ICamera extends IComponent {
87
- get isCamera() : boolean;
89
+ get isCamera(): boolean;
88
90
  applyClearFlagsIfIsActiveCamera(): unknown;
89
91
  buildCamera();
90
92
  get cam(): Camera;
@@ -147,34 +149,51 @@ export declare type ICollisionContext = {
147
149
  }
148
150
 
149
151
 
152
+ export type Vec2 = {
153
+ x: number,
154
+ y: number
155
+ }
156
+
150
157
  export type Vec3 = {
151
158
  x: number,
152
159
  y: number,
153
160
  z: number
154
161
  }
155
162
 
156
- export type Vec2 = {
157
- x: number,
158
- y: number
159
- }
163
+ const contactsVectorBuffer = new CircularBuffer(() => new Vector3(), 20);
160
164
 
161
165
  export class ContactPoint {
162
166
 
163
- readonly localPoint: Vec3;
167
+ private readonly _point: Vec3;
168
+ private readonly _normal: Vec3;
169
+
164
170
  readonly distance: number;
165
- readonly normal: Vec3;
171
+ readonly impulse: number;
172
+ readonly friction: number;
166
173
 
167
- constructor(localPt: Vec3, dist: number, normal: Vec3) {
168
- this.localPoint = localPt;
169
- this.distance = dist;
170
- this.normal = normal;
174
+ /** worldspace point */
175
+ get point() {
176
+ const target = contactsVectorBuffer.get();
177
+ return target.set(this._point.x, this._point.y, this._point.z);
178
+ }
179
+
180
+ /** worldspace normal */
181
+ get normal() {
182
+ const target = contactsVectorBuffer.get();
183
+ return target.set(this._normal.x, this._normal.y, this._normal.z);
171
184
  }
172
185
 
186
+ constructor(point: Vec3, dist: number, normal: Vec3, impulse: number, friction: number) {
187
+ this._point = point;
188
+ this.distance = dist;
189
+ this._normal = normal;
190
+ this.impulse = impulse;
191
+ this.friction = friction;
192
+ }
173
193
  }
174
194
 
175
195
  /// all info in here must be readonly because the object is only created once per started collision
176
196
  export class Collision {
177
-
178
197
  readonly contacts: ContactPoint[];
179
198
 
180
199
  constructor(obj: Object3D, otherCollider: ICollider, contacts: ContactPoint[]) {
@@ -203,7 +222,7 @@ export class Collision {
203
222
  return this.collider?.attachedRigidbody;
204
223
  }
205
224
 
206
-
225
+
207
226
 
208
227
  // private _normal?: Vector3;
209
228
  // get normal(): Vector3 {
@@ -14,6 +14,33 @@ export function isDebugMode(): boolean {
14
14
 
15
15
 
16
16
 
17
+ export class CircularBuffer<T> {
18
+ private _factory: () => T;
19
+ private _cache: T[] = [];
20
+ private _maxSize: number;
21
+ private _index: number = 0;
22
+
23
+ constructor(factory: () => T, maxSize: number) {
24
+ this._factory = factory;
25
+ this._maxSize = maxSize;
26
+ }
27
+
28
+ get(): T {
29
+ let i = this._index++;
30
+ if (i >= this._cache.length) {
31
+ if (i >= this._maxSize) {
32
+ i = this._index = 0;
33
+ }
34
+ else {
35
+ this._cache.push(this._factory());
36
+ }
37
+ }
38
+ return this._cache[i];
39
+ }
40
+ }
41
+
42
+
43
+
17
44
  let saveParams: boolean = false;
18
45
  const requestedParams: Array<string> = [];
19
46
  setTimeout(() => {
@@ -51,7 +51,7 @@ export class NEEDLE_lightmaps implements GLTFLoaderPlugin {
51
51
  const ext: LightmapExtension = extensions[EXTENSION_NAME];
52
52
  if (ext) {
53
53
  const arr = ext.textures;
54
- if (!arr.length) {
54
+ if (!arr?.length) {
55
55
  return null;
56
56
  }
57
57
  if (debug)
@@ -309,14 +309,17 @@ class Component implements IComponent, EventTarget {
309
309
  /** called on a component with a map of old to new guids (e.g. when instantiate generated new guids and e.g. timeline track bindings needs to remape them) */
310
310
  resolveGuids?(guidsMap: GuidsMap): void;
311
311
 
312
- // TODO: can we not have these and then check in update loop if they are implemented (magick methods) ?
312
+ /** called once when the component becomes active for the first time */
313
313
  awake() { }
314
- // update() { }
314
+ /** called every time when the component gets enabled (this is invoked after awake and before start) */
315
315
  onEnable() { }
316
316
  onDisable() { }
317
317
  onDestroy() {
318
318
  this.__destroyed = true;
319
319
  }
320
+ /** called when you decorate fields with the @validate() decorator
321
+ * @param field the name of the field that was changed
322
+ */
320
323
  onValidate?(prop?: string): void;
321
324
  start?(): void;
322
325
  earlyUpdate?(): void;
@@ -350,20 +353,35 @@ class Component implements IComponent, EventTarget {
350
353
  this.__internalDestroy();
351
354
  }
352
355
 
356
+
357
+
358
+ /** @internal */
353
359
  protected __didAwake: boolean = false;
360
+
361
+ /** @internal */
354
362
  private __didStart: boolean = false;
363
+
364
+ /** @internal */
355
365
  protected __didEnable: boolean = false;
366
+
367
+ /** @internal */
356
368
  protected __isEnabled: boolean | undefined = undefined;
369
+
370
+ /** @internal */
357
371
  private __destroyed: boolean = false;
358
-
372
+
373
+ /** @internal */
359
374
  get __internalDidAwakeAndStart() { return this.__didAwake && this.__didStart; }
360
375
 
361
-
376
+
377
+ /** @internal */
362
378
  constructor() {
363
379
  // super();
364
380
  this.__internalNewInstanceCreated();
365
381
  }
366
382
 
383
+
384
+ /** @internal */
367
385
  __internalNewInstanceCreated() {
368
386
  this.__didAwake = false;
369
387
  this.__didStart = false;
@@ -373,6 +391,8 @@ class Component implements IComponent, EventTarget {
373
391
  // this.__internalResetsCachedPhysicsData();
374
392
  }
375
393
 
394
+
395
+ /** @internal */
376
396
  __internalAwake() {
377
397
  if (this.__didAwake) return;
378
398
  // console.log("__internalAwake");
@@ -382,12 +402,16 @@ class Component implements IComponent, EventTarget {
382
402
  this.awake();
383
403
  }
384
404
 
405
+
406
+ /** @internal */
385
407
  __internalStart() {
386
408
  if (this.__didStart) return;
387
409
  this.__didStart = true;
388
410
  if (this.start) this.start();
389
411
  }
390
412
 
413
+
414
+ /** @internal */
391
415
  __internalEnable(): boolean {
392
416
  if (this.__didEnable) return false;
393
417
  // console.trace("INTERNAL ENABLE");
@@ -398,6 +422,7 @@ class Component implements IComponent, EventTarget {
398
422
  return true;
399
423
  }
400
424
 
425
+ /** @internal */
401
426
  __internalDisable() {
402
427
  if (!this.__didEnable) return;
403
428
  this.__didEnable = false;
@@ -408,6 +433,7 @@ class Component implements IComponent, EventTarget {
408
433
  this.__isEnabled = false;
409
434
  }
410
435
 
436
+ /** @internal */
411
437
  __internalDestroy() {
412
438
  if (this.__destroyed) return;
413
439
  this.__destroyed = true;
@@ -13,9 +13,6 @@ export abstract class Joint extends Behaviour {
13
13
  private _rigidBody: Rigidbody | null = null;
14
14
 
15
15
 
16
- @serializeable(Vector3)
17
- connectedAnchor?: Vector3;
18
-
19
16
  onEnable() {
20
17
  if (!this._rigidBody) this._rigidBody = this.gameObject.getComponent(Rigidbody);
21
18
  if (this.rigidBody && this.connectedBody)
@@ -24,8 +21,9 @@ export abstract class Joint extends Behaviour {
24
21
 
25
22
  private *create() {
26
23
  yield;
27
- if (this.rigidBody && this.connectedBody)
28
- this.createJoint(this.rigidBody, this.connectedBody);
24
+ if (this.rigidBody && this.connectedBody) {
25
+ this.createJoint(this.rigidBody, this.connectedBody)
26
+ }
29
27
  }
30
28
 
31
29
  protected abstract createJoint(self: Rigidbody, other: Rigidbody);
@@ -34,7 +32,21 @@ export abstract class Joint extends Behaviour {
34
32
  export class FixedJoint extends Joint {
35
33
 
36
34
  protected createJoint(self: Rigidbody, other: Rigidbody) {
37
- if (this.connectedAnchor)
38
- this.context.physics.addFixedJoint(self, other, this.connectedAnchor);
35
+ this.context.physics.addFixedJoint(self, other);
39
36
  }
37
+ }
38
+
39
+ export class HingeJoint extends Joint {
40
+
41
+ @serializeable(Vector3)
42
+ anchor?: Vector3;
43
+
44
+ @serializeable(Vector3)
45
+ axis?: Vector3;
46
+
47
+ protected createJoint(self: Rigidbody, other: Rigidbody) {
48
+ if (this.axis && this.anchor)
49
+ this.context.physics.addHingeJoint(self, other, this.anchor, this.axis);
50
+ }
51
+
40
52
  }
@@ -272,7 +272,7 @@ export class Light extends Behaviour implements ILight {
272
272
  }
273
273
 
274
274
  private *_updateLightIntensityInARRoutine() {
275
- while (this.context.isInXR) {
275
+ while (this.context.isInAR) {
276
276
  yield;
277
277
  this.updateIntensity();
278
278
  for (let i = 0; i < 30; i++) yield;
@@ -39,6 +39,7 @@ export { GroundProjectedEnv } from "../GroundProjection";
39
39
  export { Interactable } from "../Interactable";
40
40
  export { UsageMarker } from "../Interactable";
41
41
  export { FixedJoint } from "../Joints";
42
+ export { HingeJoint } from "../Joints";
42
43
  export { Light } from "../Light";
43
44
  export { LODModel } from "../LODGroup";
44
45
  export { LODGroup } from "../LODGroup";