mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-17 01:13:05 +00:00
85 lines
2.3 KiB
C#
85 lines
2.3 KiB
C#
using QSB.AuthoritySync;
|
|
using QSB.OrbSync.WorldObjects;
|
|
using QSB.Syncs.Unsectored.Transforms;
|
|
using QSB.WorldSync;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.OrbSync.TransformSync
|
|
{
|
|
public class NomaiOrbTransformSync : UnsectoredTransformSync
|
|
{
|
|
/// <summary>
|
|
/// normally prints error when attached object is null.
|
|
/// this overrides it so that doesn't happen, since the orb can be destroyed.
|
|
/// </summary>
|
|
protected override bool CheckValid() => AttachedTransform && base.CheckValid();
|
|
|
|
protected override bool UseInterpolation => true;
|
|
protected override float DistanceLeeway => 1f;
|
|
|
|
protected override Transform InitLocalTransform() => _qsbOrb.AttachedObject.transform;
|
|
protected override Transform InitRemoteTransform() => _qsbOrb.AttachedObject.transform;
|
|
|
|
private QSBOrb _qsbOrb;
|
|
private static readonly List<NomaiOrbTransformSync> _instances = new();
|
|
|
|
public override void OnStartClient()
|
|
{
|
|
_instances.Add(this);
|
|
base.OnStartClient();
|
|
}
|
|
|
|
public override void OnStopClient()
|
|
{
|
|
_instances.Remove(this);
|
|
base.OnStopClient();
|
|
}
|
|
|
|
protected override void Init()
|
|
{
|
|
_qsbOrb = OrbManager.Orbs[_instances.IndexOf(this)].GetWorldObject<QSBOrb>();
|
|
_qsbOrb.TransformSync = this;
|
|
|
|
base.Init();
|
|
var body = AttachedTransform.GetAttachedOWRigidbody();
|
|
SetReferenceTransform(body.GetOrigParent());
|
|
|
|
if (QSBCore.IsHost)
|
|
{
|
|
netIdentity.RegisterAuthQueue();
|
|
}
|
|
|
|
body.OnUnsuspendOWRigidbody += OnUnsuspend;
|
|
body.OnSuspendOWRigidbody += OnSuspend;
|
|
netIdentity.SendAuthQueueMessage(body.IsSuspended() ? AuthQueueAction.Remove : AuthQueueAction.Add);
|
|
}
|
|
|
|
protected override void Uninit()
|
|
{
|
|
base.Uninit();
|
|
|
|
if (QSBCore.IsHost)
|
|
{
|
|
netIdentity.UnregisterAuthQueue();
|
|
}
|
|
|
|
// this is null sometimes on here, but not on other similar transforms syncs (like anglers)
|
|
// idk why, but whatever
|
|
if (AttachedTransform)
|
|
{
|
|
var body = AttachedTransform.GetAttachedOWRigidbody();
|
|
if (body)
|
|
{
|
|
body.OnUnsuspendOWRigidbody -= OnUnsuspend;
|
|
body.OnSuspendOWRigidbody -= OnSuspend;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnUnsuspend(OWRigidbody suspendedBody) => netIdentity.SendAuthQueueMessage(AuthQueueAction.Add);
|
|
private void OnSuspend(OWRigidbody suspendedBody) => netIdentity.SendAuthQueueMessage(AuthQueueAction.Remove);
|
|
}
|
|
}
|