1
1
import {
2
+ JoltRVec3_JoltVec3 ,
3
+ JoltVec3_JoltRVec3 ,
2
4
JoltVec3_ThreeVector3 ,
3
5
MirabufFloatArr_JoltFloat3 ,
4
6
MirabufFloatArr_JoltVec3 ,
7
+ MirabufVector3_JoltRVec3 ,
5
8
MirabufVector3_JoltVec3 ,
6
9
ThreeMatrix4_JoltMat44 ,
10
+ ThreeVector3_JoltRVec3 ,
7
11
ThreeVector3_JoltVec3 ,
8
12
_JoltQuat ,
9
13
} from "../../util/TypeConversions"
@@ -234,7 +238,7 @@ class PhysicsSystem extends WorldSystem {
234
238
const shape = new JOLT . BoxShape ( size , 0.1 )
235
239
JOLT . destroy ( size )
236
240
237
- const pos = position ? ThreeVector3_JoltVec3 ( position ) : new JOLT . Vec3 ( 0.0 , 0.0 , 0.0 )
241
+ const pos = position ? ThreeVector3_JoltRVec3 ( position ) : new JOLT . RVec3 ( 0.0 , 0.0 , 0.0 )
238
242
const rot = _JoltQuat ( rotation )
239
243
const creationSettings = new JOLT . BodyCreationSettings (
240
244
shape ,
@@ -269,7 +273,7 @@ class PhysicsSystem extends WorldSystem {
269
273
position : THREE . Vector3 | undefined ,
270
274
rotation : THREE . Euler | THREE . Quaternion | undefined
271
275
) {
272
- const pos = position ? ThreeVector3_JoltVec3 ( position ) : new JOLT . Vec3 ( 0.0 , 0.0 , 0.0 )
276
+ const pos = position ? ThreeVector3_JoltRVec3 ( position ) : new JOLT . RVec3 ( 0.0 , 0.0 , 0.0 )
273
277
const rot = _JoltQuat ( rotation )
274
278
const creationSettings = new JOLT . BodyCreationSettings (
275
279
shape ,
@@ -464,14 +468,14 @@ class PhysicsSystem extends WorldSystem {
464
468
const hingeConstraintSettings = new JOLT . HingeConstraintSettings ( )
465
469
466
470
const jointOrigin = jointDefinition . origin
467
- ? MirabufVector3_JoltVec3 ( jointDefinition . origin as mirabuf . Vector3 )
468
- : new JOLT . Vec3 ( 0 , 0 , 0 )
471
+ ? MirabufVector3_JoltRVec3 ( jointDefinition . origin as mirabuf . Vector3 )
472
+ : new JOLT . RVec3 ( 0 , 0 , 0 )
469
473
// TODO: Offset transformation for robot builder.
470
474
const jointOriginOffset = jointInstance . offset
471
- ? MirabufVector3_JoltVec3 ( jointInstance . offset as mirabuf . Vector3 )
472
- : new JOLT . Vec3 ( 0 , 0 , 0 )
475
+ ? MirabufVector3_JoltRVec3 ( jointInstance . offset as mirabuf . Vector3 )
476
+ : new JOLT . RVec3 ( 0 , 0 , 0 )
473
477
474
- const anchorPoint = jointOrigin . Add ( jointOriginOffset )
478
+ const anchorPoint = jointOrigin . AddRVec3 ( jointOriginOffset )
475
479
hingeConstraintSettings . mPoint1 = hingeConstraintSettings . mPoint2 = anchorPoint
476
480
477
481
const rotationalFreedom = jointDefinition . rotational ! . rotationalFreedom !
@@ -532,14 +536,14 @@ class PhysicsSystem extends WorldSystem {
532
536
const sliderConstraintSettings = new JOLT . SliderConstraintSettings ( )
533
537
534
538
const jointOrigin = jointDefinition . origin
535
- ? MirabufVector3_JoltVec3 ( jointDefinition . origin as mirabuf . Vector3 )
536
- : new JOLT . Vec3 ( 0 , 0 , 0 )
539
+ ? MirabufVector3_JoltRVec3 ( jointDefinition . origin as mirabuf . Vector3 )
540
+ : new JOLT . RVec3 ( 0 , 0 , 0 )
537
541
// TODO: Offset transformation for robot builder.
538
542
const jointOriginOffset = jointInstance . offset
539
- ? MirabufVector3_JoltVec3 ( jointInstance . offset as mirabuf . Vector3 )
540
- : new JOLT . Vec3 ( 0 , 0 , 0 )
543
+ ? MirabufVector3_JoltRVec3 ( jointInstance . offset as mirabuf . Vector3 )
544
+ : new JOLT . RVec3 ( 0 , 0 , 0 )
541
545
542
- const anchorPoint = jointOrigin . Add ( jointOriginOffset )
546
+ const anchorPoint = jointOrigin . AddRVec3 ( jointOriginOffset )
543
547
sliderConstraintSettings . mPoint1 = sliderConstraintSettings . mPoint2 = anchorPoint
544
548
545
549
const prismaticFreedom = jointDefinition . prismatic ! . prismaticFreedom !
@@ -594,27 +598,27 @@ class PhysicsSystem extends WorldSystem {
594
598
const fixedSettings = new JOLT . FixedConstraintSettings ( )
595
599
596
600
const jointOrigin = jointDefinition . origin
597
- ? MirabufVector3_JoltVec3 ( jointDefinition . origin as mirabuf . Vector3 )
598
- : new JOLT . Vec3 ( 0 , 0 , 0 )
601
+ ? MirabufVector3_JoltRVec3 ( jointDefinition . origin as mirabuf . Vector3 )
602
+ : new JOLT . RVec3 ( 0 , 0 , 0 )
599
603
const jointOriginOffset = jointInstance . offset
600
- ? MirabufVector3_JoltVec3 ( jointInstance . offset as mirabuf . Vector3 )
601
- : new JOLT . Vec3 ( 0 , 0 , 0 )
604
+ ? MirabufVector3_JoltRVec3 ( jointInstance . offset as mirabuf . Vector3 )
605
+ : new JOLT . RVec3 ( 0 , 0 , 0 )
602
606
603
- const anchorPoint = jointOrigin . Add ( jointOriginOffset )
607
+ const anchorPoint = jointOrigin . AddRVec3 ( jointOriginOffset )
604
608
fixedSettings . mPoint1 = fixedSettings . mPoint2 = anchorPoint
605
609
606
610
const rotationalFreedom = jointDefinition . rotational ! . rotationalFreedom !
607
611
608
612
// No scaling, these are unit vectors
609
613
const miraAxis = rotationalFreedom . axis ! as mirabuf . Vector3
610
614
const miraAxisX : number = ( versionNum < 5 ? - miraAxis . x : miraAxis . x ) ?? 0
611
- const axis : Jolt . Vec3 = new JOLT . Vec3 ( miraAxisX , miraAxis . y ?? 0 , miraAxis . z ?? 0 )
615
+ const axis : Jolt . RVec3 = new JOLT . RVec3 ( miraAxisX , miraAxis . y ?? 0 , miraAxis . z ?? 0 )
612
616
613
617
const bounds = bodyWheel . GetShape ( ) . GetLocalBounds ( )
614
618
const radius = ( bounds . mMax . GetY ( ) - bounds . mMin . GetY ( ) ) / 2.0
615
619
616
620
const wheelSettings = new JOLT . WheelSettingsWV ( )
617
- wheelSettings . mPosition = anchorPoint . Add ( axis . Mul ( 0.1 ) )
621
+ wheelSettings . mPosition = JoltRVec3_JoltVec3 ( anchorPoint . AddRVec3 ( axis . Mul ( 0.1 ) ) )
618
622
wheelSettings . mMaxSteerAngle = 0.0
619
623
wheelSettings . mMaxHandBrakeTorque = 0.0
620
624
wheelSettings . mRadius = radius * 1.05
@@ -733,7 +737,7 @@ class PhysicsSystem extends WorldSystem {
733
737
const c = constraints [ i ]
734
738
const hingeSettings = new JOLT . HingeConstraintSettings ( )
735
739
hingeSettings . mMaxFrictionTorque = c . friction
736
- hingeSettings . mPoint1 = hingeSettings . mPoint2 = anchorPoint
740
+ hingeSettings . mPoint1 = hingeSettings . mPoint2 = JoltVec3_JoltRVec3 ( anchorPoint )
737
741
hingeSettings . mHingeAxis1 = hingeSettings . mHingeAxis2 = c . axis . Normalized ( )
738
742
hingeSettings . mNormalAxis1 = hingeSettings . mNormalAxis2 = getPerpendicular ( hingeSettings . mHingeAxis1 )
739
743
if ( c . upper && c . lower ) {
@@ -1029,7 +1033,7 @@ class PhysicsSystem extends WorldSystem {
1029
1033
1030
1034
const bodySettings = new JOLT . BodyCreationSettings (
1031
1035
shape ,
1032
- new JOLT . Vec3 ( 0.0 , 0.0 , 0.0 ) ,
1036
+ new JOLT . RVec3 ( 0.0 , 0.0 , 0.0 ) ,
1033
1037
new JOLT . Quat ( 0 , 0 , 0 , 1 ) ,
1034
1038
rn . isDynamic ? JOLT . EMotionType_Dynamic : JOLT . EMotionType_Static ,
1035
1039
rnLayer
@@ -1162,7 +1166,7 @@ class PhysicsSystem extends WorldSystem {
1162
1166
* @returns Either the hit results of the closest object in the ray's path, or undefined if nothing was hit.
1163
1167
*/
1164
1168
public RayCast ( from : Jolt . Vec3 , dir : Jolt . Vec3 , ...ignoreBodies : Jolt . BodyID [ ] ) : RayCastHit | undefined {
1165
- const ray = new JOLT . RayCast ( from , dir )
1169
+ const ray = new JOLT . RRayCast ( JoltVec3_JoltRVec3 ( from ) , dir )
1166
1170
1167
1171
const raySettings = new JOLT . RayCastSettings ( )
1168
1172
raySettings . mTreatConvexAsSolid = false
@@ -1181,7 +1185,7 @@ class PhysicsSystem extends WorldSystem {
1181
1185
if ( ! collector . HadHit ( ) ) return undefined
1182
1186
1183
1187
const hitPoint = ray . GetPointOnRay ( collector . mHit . mFraction )
1184
- return { data : collector . mHit , point : hitPoint , ray : ray }
1188
+ return { data : collector . mHit , point : JoltRVec3_JoltVec3 ( hitPoint ) , ray : ray }
1185
1189
}
1186
1190
1187
1191
/**
@@ -1287,7 +1291,7 @@ class PhysicsSystem extends WorldSystem {
1287
1291
const rot = new JOLT . Quat ( 0 , 0 , 0 , 1 )
1288
1292
const creationSettings = new JOLT . BodyCreationSettings (
1289
1293
shape ,
1290
- position ,
1294
+ JoltVec3_JoltRVec3 ( position ) ,
1291
1295
rot ,
1292
1296
JOLT . EMotionType_Dynamic ,
1293
1297
LAYER_GHOST
@@ -1326,8 +1330,7 @@ class PhysicsSystem extends WorldSystem {
1326
1330
this . _bodies . push ( ghostBodyId )
1327
1331
1328
1332
const constraintSettings = new JOLT . PointConstraintSettings ( )
1329
- constraintSettings . set_mPoint1 ( anchorPoint )
1330
- constraintSettings . set_mPoint2 ( anchorPoint )
1333
+ constraintSettings . mPoint1 = constraintSettings . mPoint2 = JoltVec3_JoltRVec3 ( anchorPoint )
1331
1334
const constraint = constraintSettings . Create ( ghostBody , body )
1332
1335
this . _joltPhysSystem . AddConstraint ( constraint )
1333
1336
this . _constraints . push ( constraint )
@@ -1610,7 +1613,7 @@ function tryGetPerpendicular(vec: Jolt.Vec3, toCheck: Jolt.Vec3): Jolt.Vec3 | un
1610
1613
export type RayCastHit = {
1611
1614
data : Jolt . RayCastResult
1612
1615
point : Jolt . Vec3
1613
- ray : Jolt . RayCast
1616
+ ray : Jolt . RRayCast
1614
1617
}
1615
1618
1616
1619
/**
0 commit comments