2022-01-14 21:25:13 -08:00
|
|
|
|
using Mirror;
|
|
|
|
|
using QSB.AuthoritySync;
|
2021-12-23 17:07:29 -08:00
|
|
|
|
using QSB.JellyfishSync.WorldObjects;
|
2021-12-01 01:10:38 -08:00
|
|
|
|
using QSB.Syncs.Unsectored.Rigidbodies;
|
2021-12-01 03:55:56 -08:00
|
|
|
|
using QSB.Utility;
|
2021-12-01 01:10:38 -08:00
|
|
|
|
using QSB.WorldSync;
|
2021-12-07 15:56:08 +00:00
|
|
|
|
using System.Collections.Generic;
|
2021-12-01 01:44:12 -08:00
|
|
|
|
using UnityEngine;
|
2021-12-01 01:10:38 -08:00
|
|
|
|
|
|
|
|
|
namespace QSB.JellyfishSync.TransformSync
|
|
|
|
|
{
|
2022-01-14 22:39:41 -08:00
|
|
|
|
public class JellyfishTransformSync : UnsectoredRigidbodySync
|
2022-01-14 21:25:13 -08:00
|
|
|
|
{
|
2022-01-16 06:11:44 -08:00
|
|
|
|
protected override bool IsReady => WorldObjectManager.AllObjectsAdded;
|
|
|
|
|
protected override bool UseInterpolation => false;
|
|
|
|
|
protected override bool IsPlayerObject => false;
|
2022-01-14 21:25:13 -08:00
|
|
|
|
|
|
|
|
|
private QSBJellyfish _qsbJellyfish;
|
2022-01-14 22:28:44 -08:00
|
|
|
|
private static readonly List<JellyfishTransformSync> _instances = new();
|
2022-01-14 21:25:13 -08:00
|
|
|
|
|
2022-01-16 04:51:37 -08:00
|
|
|
|
protected override OWRigidbody InitAttachedRigidbody()
|
2022-01-14 21:25:13 -08:00
|
|
|
|
=> _qsbJellyfish.AttachedObject._jellyfishBody;
|
|
|
|
|
|
|
|
|
|
public override void Start()
|
|
|
|
|
{
|
|
|
|
|
_instances.Add(this);
|
|
|
|
|
base.Start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDestroy()
|
|
|
|
|
{
|
|
|
|
|
_instances.Remove(this);
|
|
|
|
|
base.OnDestroy();
|
|
|
|
|
|
|
|
|
|
if (QSBCore.IsHost)
|
|
|
|
|
{
|
|
|
|
|
netIdentity.UnregisterAuthQueue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AttachedRigidbody.OnUnsuspendOWRigidbody -= OnUnsuspend;
|
|
|
|
|
AttachedRigidbody.OnSuspendOWRigidbody -= OnSuspend;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override float SendInterval => 10;
|
|
|
|
|
protected override bool UseReliableRpc => true;
|
|
|
|
|
|
|
|
|
|
protected override void Init()
|
|
|
|
|
{
|
|
|
|
|
_qsbJellyfish = JellyfishManager.Jellyfish[_instances.IndexOf(this)].GetWorldObject<QSBJellyfish>();
|
2022-01-14 22:07:32 -08:00
|
|
|
|
_qsbJellyfish.TransformSync = this;
|
2022-01-14 21:25:13 -08:00
|
|
|
|
|
|
|
|
|
base.Init();
|
|
|
|
|
SetReferenceTransform(_qsbJellyfish.AttachedObject._planetBody.transform);
|
|
|
|
|
|
|
|
|
|
if (QSBCore.IsHost)
|
|
|
|
|
{
|
|
|
|
|
netIdentity.RegisterAuthQueue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AttachedRigidbody.OnUnsuspendOWRigidbody += OnUnsuspend;
|
|
|
|
|
AttachedRigidbody.OnSuspendOWRigidbody += OnSuspend;
|
|
|
|
|
netIdentity.SendAuthQueueMessage(AttachedRigidbody.IsSuspended() ? AuthQueueAction.Remove : AuthQueueAction.Add);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnUnsuspend(OWRigidbody suspendedBody) => netIdentity.SendAuthQueueMessage(AuthQueueAction.Add);
|
|
|
|
|
private void OnSuspend(OWRigidbody suspendedBody) => netIdentity.SendAuthQueueMessage(AuthQueueAction.Remove);
|
|
|
|
|
|
2022-01-16 01:58:47 -08:00
|
|
|
|
protected override void Serialize(NetworkWriter writer)
|
2022-01-14 21:25:13 -08:00
|
|
|
|
{
|
2022-01-16 01:58:47 -08:00
|
|
|
|
base.Serialize(writer);
|
2022-01-14 21:25:13 -08:00
|
|
|
|
|
|
|
|
|
if (!WorldObjectManager.AllObjectsReady)
|
|
|
|
|
{
|
|
|
|
|
writer.Write(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_qsbJellyfish.Align = true;
|
|
|
|
|
writer.Write(_qsbJellyfish.IsRising);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool _shouldUpdate;
|
|
|
|
|
|
2022-01-16 01:58:47 -08:00
|
|
|
|
protected override void Deserialize(NetworkReader reader)
|
2022-01-14 21:25:13 -08:00
|
|
|
|
{
|
2022-01-16 01:58:47 -08:00
|
|
|
|
base.Deserialize(reader);
|
2022-01-14 21:25:13 -08:00
|
|
|
|
|
|
|
|
|
if (!WorldObjectManager.AllObjectsReady)
|
|
|
|
|
{
|
|
|
|
|
reader.ReadBool();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_qsbJellyfish.Align = false;
|
|
|
|
|
_qsbJellyfish.IsRising = reader.ReadBool();
|
|
|
|
|
_shouldUpdate = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// replacement using SetPosition/Rotation instead of Move
|
|
|
|
|
protected override bool UpdateTransform()
|
|
|
|
|
{
|
|
|
|
|
if (hasAuthority)
|
|
|
|
|
{
|
|
|
|
|
SetValuesToSync();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!_shouldUpdate)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_shouldUpdate = false;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var pos = ReferenceTransform.FromRelPos(transform.position);
|
|
|
|
|
AttachedRigidbody.SetPosition(pos);
|
|
|
|
|
AttachedRigidbody.SetRotation(ReferenceTransform.FromRelRot(transform.rotation));
|
|
|
|
|
AttachedRigidbody.SetVelocity(ReferenceTransform.GetAttachedOWRigidbody().FromRelVel(_relativeVelocity, pos));
|
|
|
|
|
AttachedRigidbody.SetAngularVelocity(ReferenceTransform.GetAttachedOWRigidbody().FromRelAngVel(_relativeAngularVelocity));
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnRenderObject()
|
|
|
|
|
{
|
|
|
|
|
if (!QSBCore.ShowLinesInDebug
|
2022-01-16 06:11:44 -08:00
|
|
|
|
|| !IsInitialized
|
2022-01-14 21:25:13 -08:00
|
|
|
|
|| AttachedRigidbody == null
|
|
|
|
|
|| ReferenceTransform == null
|
|
|
|
|
|| AttachedRigidbody.IsSuspended())
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.OnRenderObject();
|
|
|
|
|
|
|
|
|
|
var jellyfish = _qsbJellyfish.AttachedObject;
|
|
|
|
|
var position = ReferenceTransform.position;
|
|
|
|
|
var dir = Vector3.Normalize(jellyfish.transform.position - position);
|
|
|
|
|
// Popcron.Gizmos.Line(position + dir * jellyfish._lowerLimit, position + dir * jellyfish._upperLimit, Color.magenta);
|
|
|
|
|
Popcron.Gizmos.Sphere(position + dir * jellyfish._lowerLimit, 10f, Color.magenta);
|
|
|
|
|
Popcron.Gizmos.Sphere(position + dir * jellyfish._upperLimit, 10f, Color.magenta);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-01 01:10:38 -08:00
|
|
|
|
}
|