mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
using OWML.Common;
|
|
using QSB.Player;
|
|
using QSB.SectorSync;
|
|
using QSB.Syncs.TransformSync;
|
|
using QSB.Tools;
|
|
using QSB.Utility;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.ProbeSync.TransformSync
|
|
{
|
|
public class PlayerProbeSync : SectoredTransformSync
|
|
{
|
|
public static PlayerProbeSync LocalInstance { get; private set; }
|
|
|
|
public override void OnStartAuthority()
|
|
{
|
|
DebugLog.DebugWrite($"OnStartAuthority probe");
|
|
LocalInstance = this;
|
|
}
|
|
|
|
private Transform GetProbe() =>
|
|
Locator.GetProbe().transform.Find("CameraPivot").Find("Geometry");
|
|
|
|
protected override Transform InitLocalTransform()
|
|
{
|
|
SectorSync.Init(Locator.GetProbe().GetSectorDetector(), this);
|
|
var body = GetProbe();
|
|
|
|
Player.ProbeBody = body.gameObject;
|
|
|
|
return body;
|
|
}
|
|
|
|
protected override Transform InitRemoteTransform()
|
|
{
|
|
var probe = GetProbe();
|
|
|
|
if (probe == null)
|
|
{
|
|
DebugLog.ToConsole("Error - Probe is null!", MessageType.Error);
|
|
return default;
|
|
}
|
|
|
|
var body = probe.InstantiateInactive();
|
|
body.name = "RemoteProbeTransform";
|
|
|
|
Destroy(body.GetComponentInChildren<ProbeAnimatorController>());
|
|
|
|
PlayerToolsManager.CreateProbe(body, Player);
|
|
|
|
Player.ProbeBody = body.gameObject;
|
|
|
|
return body;
|
|
}
|
|
|
|
public override bool IsReady => Locator.GetProbe() != null
|
|
&& Player != null
|
|
&& QSBPlayerManager.PlayerExists(Player.PlayerId)
|
|
&& Player.PlayerStates.IsReady
|
|
&& NetId.Value != uint.MaxValue
|
|
&& NetId.Value != 0U;
|
|
|
|
protected override float DistanceLeeway => 10f;
|
|
|
|
public override bool UseInterpolation => true;
|
|
|
|
public override TargetType Type => TargetType.Probe;
|
|
}
|
|
} |