62 lines
1.5 KiB
C#
Raw Normal View History

2021-12-23 22:40:37 -08:00
using QSB.AuthoritySync;
using QSB.Messaging;
using QSB.Player;
using QSB.Player.TransformSync;
using QSB.ShipSync.TransformSync;
using QSB.WorldSync;
using UnityEngine;
namespace QSB.ShipSync.Messages
{
internal class FlyShipMessage : QSBBoolMessage
{
static FlyShipMessage()
{
GlobalMessenger<OWRigidbody>.AddListener(OWEvents.EnterFlightConsole, _ => Handler(true));
GlobalMessenger.AddListener(OWEvents.ExitFlightConsole, () => Handler(false));
2021-12-23 22:40:37 -08:00
}
private static void Handler(bool flying)
{
if (PlayerTransformSync.LocalInstance)
{
new FlyShipMessage(flying).Send();
}
}
public FlyShipMessage(bool flying) => Value = flying;
public override bool ShouldReceive => QSBWorldSync.AllObjectsReady;
2021-12-23 22:40:37 -08:00
public override void OnReceiveLocal() => SetCurrentFlyer(From, Value);
public override void OnReceiveRemote()
{
SetCurrentFlyer(From, Value);
var shipCockpitController = GameObject.Find("ShipCockpitController").GetComponent<ShipCockpitController>();
if (Value)
{
shipCockpitController._interactVolume.DisableInteraction();
}
else
{
shipCockpitController._interactVolume.EnableInteraction();
}
}
private static void SetCurrentFlyer(uint id, bool isFlying)
{
ShipManager.Instance.CurrentFlyer = isFlying
? id
: uint.MaxValue;
if (QSBCore.IsHost)
{
2022-01-14 22:31:23 -08:00
ShipTransformSync.LocalInstance.netIdentity.SetAuthority(isFlying
2021-12-23 22:40:37 -08:00
? id
: QSBPlayerManager.LocalPlayerId);
}
}
}
}