mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 18:25:18 +00:00
71 lines
1.7 KiB
C#
71 lines
1.7 KiB
C#
using QSB.Messaging;
|
|
using QSB.OwnershipSync;
|
|
using QSB.Player;
|
|
using QSB.Player.TransformSync;
|
|
using QSB.ShipSync.TransformSync;
|
|
using QSB.WorldSync;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.ShipSync.Messages;
|
|
|
|
/// <summary>
|
|
/// TODO: initial state for the current flyer
|
|
/// </summary>
|
|
public class FlyShipMessage : QSBMessage<bool>
|
|
{
|
|
static FlyShipMessage()
|
|
{
|
|
GlobalMessenger<OWRigidbody>.AddListener(OWEvents.EnterFlightConsole, _ => Handler(true));
|
|
GlobalMessenger.AddListener(OWEvents.ExitFlightConsole, () => Handler(false));
|
|
}
|
|
|
|
private static void Handler(bool flying)
|
|
{
|
|
if (PlayerTransformSync.LocalInstance)
|
|
{
|
|
new FlyShipMessage(flying).Send();
|
|
}
|
|
}
|
|
|
|
public FlyShipMessage(bool flying) : base(flying) { }
|
|
|
|
public override bool ShouldReceive => QSBWorldSync.AllObjectsReady;
|
|
|
|
public override void OnReceiveLocal() => OnReceiveRemote();
|
|
|
|
public override void OnReceiveRemote()
|
|
{
|
|
SetCurrentFlyer(From, Data);
|
|
var shipCockpitController = ShipManager.Instance.CockpitController;
|
|
|
|
if (shipCockpitController == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (Data)
|
|
{
|
|
QSBPlayerManager.GetPlayer(From)?.AudioController?.PlayOneShot(AudioType.ShipCockpitBuckleUp);
|
|
shipCockpitController._interactVolume?.DisableInteraction();
|
|
}
|
|
else
|
|
{
|
|
QSBPlayerManager.GetPlayer(From)?.AudioController?.PlayOneShot(AudioType.ShipCockpitUnbuckle);
|
|
shipCockpitController._interactVolume?.EnableInteraction();
|
|
}
|
|
}
|
|
|
|
private static void SetCurrentFlyer(uint id, bool isFlying)
|
|
{
|
|
ShipManager.Instance.CurrentFlyer = isFlying
|
|
? id
|
|
: uint.MaxValue;
|
|
|
|
if (QSBCore.IsHost)
|
|
{
|
|
ShipTransformSync.LocalInstance?.netIdentity.SetOwner(isFlying
|
|
? id
|
|
: QSBPlayerManager.LocalPlayerId);
|
|
}
|
|
}
|
|
} |