2022-01-14 20:59:42 -08:00
|
|
|
|
using Mirror;
|
|
|
|
|
using QSB.Utility;
|
2021-12-02 02:39:47 -08:00
|
|
|
|
using QSB.WorldSync;
|
2021-08-22 16:42:43 +01:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace QSB.Syncs.Unsectored.Rigidbodies
|
|
|
|
|
{
|
2022-01-14 22:39:41 -08:00
|
|
|
|
public abstract class UnsectoredRigidbodySync : BaseUnsectoredSync
|
2022-01-14 20:59:42 -08:00
|
|
|
|
{
|
|
|
|
|
public const float PositionMovedThreshold = 0.05f;
|
|
|
|
|
public const float AngleRotatedThreshold = 0.05f;
|
|
|
|
|
public const float VelocityChangeThreshold = 0.05f;
|
|
|
|
|
public const float AngVelocityChangeThreshold = 0.05f;
|
|
|
|
|
|
|
|
|
|
protected Vector3 _relativeVelocity;
|
|
|
|
|
protected Vector3 _relativeAngularVelocity;
|
|
|
|
|
protected Vector3 _prevVelocity;
|
|
|
|
|
protected Vector3 _prevAngularVelocity;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The previous position of the VISIBLE object, as if parented to the reference.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected Vector3 _localPrevPosition;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The previous rotation of the VISIBLE object, as if parented to the reference.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected Quaternion _localPrevRotation;
|
|
|
|
|
|
|
|
|
|
protected Vector3 _localPrevVelocity;
|
|
|
|
|
protected Vector3 _localPrevAngularVelocity;
|
|
|
|
|
|
|
|
|
|
public OWRigidbody AttachedRigidbody { get; set; }
|
|
|
|
|
|
2022-01-16 04:51:37 -08:00
|
|
|
|
protected abstract OWRigidbody InitAttachedRigidbody();
|
2022-01-14 20:59:42 -08:00
|
|
|
|
|
2022-01-16 04:34:52 -08:00
|
|
|
|
protected override Transform InitAttachedTransform()
|
2022-01-14 20:59:42 -08:00
|
|
|
|
{
|
2022-01-16 04:51:37 -08:00
|
|
|
|
AttachedRigidbody = InitAttachedRigidbody();
|
2022-01-14 20:59:42 -08:00
|
|
|
|
return AttachedRigidbody.transform;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdatePrevData()
|
|
|
|
|
{
|
2022-01-16 04:51:37 -08:00
|
|
|
|
base.UpdatePrevData();
|
2022-01-14 20:59:42 -08:00
|
|
|
|
_prevVelocity = _relativeVelocity;
|
|
|
|
|
_prevAngularVelocity = _relativeAngularVelocity;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-16 01:58:47 -08:00
|
|
|
|
protected override void Serialize(NetworkWriter writer)
|
2022-01-14 20:59:42 -08:00
|
|
|
|
{
|
2022-01-16 01:58:47 -08:00
|
|
|
|
base.Serialize(writer);
|
2022-01-14 20:59:42 -08:00
|
|
|
|
writer.Write(_relativeVelocity);
|
|
|
|
|
writer.Write(_relativeAngularVelocity);
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-16 01:58:47 -08:00
|
|
|
|
protected override void Deserialize(NetworkReader reader)
|
2022-01-14 20:59:42 -08:00
|
|
|
|
{
|
2022-01-16 01:58:47 -08:00
|
|
|
|
base.Deserialize(reader);
|
2022-01-16 04:51:37 -08:00
|
|
|
|
_relativeVelocity = reader.ReadVector3();
|
|
|
|
|
_relativeAngularVelocity = reader.ReadVector3();
|
2022-01-14 20:59:42 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void SetValuesToSync()
|
|
|
|
|
{
|
|
|
|
|
transform.position = ReferenceTransform.ToRelPos(AttachedRigidbody.GetPosition());
|
|
|
|
|
transform.rotation = ReferenceTransform.ToRelRot(AttachedRigidbody.GetRotation());
|
|
|
|
|
_relativeVelocity = ReferenceTransform.GetAttachedOWRigidbody().ToRelVel(AttachedRigidbody.GetVelocity(), AttachedRigidbody.GetPosition());
|
|
|
|
|
_relativeAngularVelocity = ReferenceTransform.GetAttachedOWRigidbody().ToRelAngVel(AttachedRigidbody.GetAngularVelocity());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool UpdateTransform()
|
|
|
|
|
{
|
|
|
|
|
if (hasAuthority)
|
|
|
|
|
{
|
|
|
|
|
SetValuesToSync();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var targetPos = ReferenceTransform.FromRelPos(transform.position);
|
|
|
|
|
var targetRot = ReferenceTransform.FromRelRot(transform.rotation);
|
|
|
|
|
|
|
|
|
|
var positionToSet = targetPos;
|
|
|
|
|
var rotationToSet = targetRot;
|
|
|
|
|
|
|
|
|
|
if (UseInterpolation)
|
|
|
|
|
{
|
|
|
|
|
positionToSet = ReferenceTransform.FromRelPos(SmoothPosition);
|
|
|
|
|
rotationToSet = ReferenceTransform.FromRelRot(SmoothRotation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var hasMoved = CustomHasMoved(
|
|
|
|
|
transform.position,
|
|
|
|
|
_localPrevPosition,
|
|
|
|
|
transform.rotation,
|
|
|
|
|
_localPrevRotation,
|
|
|
|
|
_relativeVelocity,
|
|
|
|
|
_localPrevVelocity,
|
|
|
|
|
_relativeAngularVelocity,
|
|
|
|
|
_localPrevAngularVelocity);
|
|
|
|
|
|
|
|
|
|
_localPrevPosition = transform.position;
|
|
|
|
|
_localPrevRotation = transform.rotation;
|
|
|
|
|
_localPrevVelocity = _relativeVelocity;
|
|
|
|
|
_localPrevAngularVelocity = _relativeAngularVelocity;
|
|
|
|
|
|
|
|
|
|
if (!hasMoved)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AttachedRigidbody.MoveToPosition(positionToSet);
|
|
|
|
|
AttachedRigidbody.MoveToRotation(rotationToSet);
|
|
|
|
|
|
|
|
|
|
var targetVelocity = ReferenceTransform.GetAttachedOWRigidbody().FromRelVel(_relativeVelocity, targetPos);
|
|
|
|
|
var targetAngularVelocity = ReferenceTransform.GetAttachedOWRigidbody().FromRelAngVel(_relativeAngularVelocity);
|
|
|
|
|
|
|
|
|
|
AttachedRigidbody.SetVelocity(targetVelocity);
|
|
|
|
|
AttachedRigidbody.SetAngularVelocity(targetAngularVelocity);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool HasChanged()
|
|
|
|
|
=> CustomHasMoved(
|
|
|
|
|
transform.position,
|
|
|
|
|
_prevPosition,
|
|
|
|
|
transform.rotation,
|
|
|
|
|
_prevRotation,
|
2021-11-09 16:17:20 -08:00
|
|
|
|
_relativeVelocity,
|
|
|
|
|
_prevVelocity,
|
|
|
|
|
_relativeAngularVelocity,
|
|
|
|
|
_prevAngularVelocity);
|
|
|
|
|
|
|
|
|
|
// OPTIMIZE : optimize by using sqrMagnitude
|
2021-12-01 03:55:56 -08:00
|
|
|
|
internal bool CustomHasMoved(
|
2021-11-09 16:17:20 -08:00
|
|
|
|
Vector3 newPosition,
|
|
|
|
|
Vector3 prevPosition,
|
|
|
|
|
Quaternion newRotation,
|
|
|
|
|
Quaternion prevRotation,
|
|
|
|
|
Vector3 newVelocity,
|
|
|
|
|
Vector3 prevVelocity,
|
|
|
|
|
Vector3 newAngVelocity,
|
|
|
|
|
Vector3 prevAngVelocity)
|
|
|
|
|
{
|
|
|
|
|
var displacementMagnitude = (newPosition - prevPosition).magnitude;
|
|
|
|
|
|
|
|
|
|
if (displacementMagnitude > PositionMovedThreshold)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Quaternion.Angle(newRotation, prevRotation) > AngleRotatedThreshold)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var velocityChangeMagnitude = (newVelocity - prevVelocity).magnitude;
|
|
|
|
|
var angularVelocityChangeMagnitude = (newAngVelocity - prevAngVelocity).magnitude;
|
|
|
|
|
if (velocityChangeMagnitude > VelocityChangeThreshold)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (angularVelocityChangeMagnitude > AngVelocityChangeThreshold)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-08-22 16:42:43 +01:00
|
|
|
|
}
|
|
|
|
|
}
|