mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 12:21:25 +00:00
140 lines
3.9 KiB
C#
140 lines
3.9 KiB
C#
using OWML.Common;
|
|
using OWML.Utils;
|
|
using QSB.Player;
|
|
using QSB.ShipSync.TransformSync;
|
|
using QSB.ShipSync.WorldObjects;
|
|
using QSB.Utility;
|
|
using QSB.WorldSync;
|
|
using QuantumUNET;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.ShipSync
|
|
{
|
|
internal class ShipManager : WorldObjectManager
|
|
{
|
|
public override WorldObjectType WorldObjectType => WorldObjectType.SolarSystem;
|
|
|
|
public static ShipManager Instance;
|
|
|
|
public InteractZone HatchInteractZone;
|
|
public HatchController HatchController;
|
|
public ShipTractorBeamSwitch ShipTractorBeam;
|
|
public ShipCockpitController CockpitController;
|
|
public ShipElectricalComponent ShipElectricalComponent;
|
|
public bool HasAuthority
|
|
=> ShipTransformSync.LocalInstance.HasAuthority;
|
|
public uint CurrentFlyer
|
|
{
|
|
get => _currentFlyer;
|
|
set
|
|
{
|
|
if (_currentFlyer != uint.MaxValue && value != uint.MaxValue)
|
|
{
|
|
DebugLog.ToConsole($"Warning - Trying to set current flyer while someone is still flying? Current:{_currentFlyer}, New:{value}", MessageType.Warning);
|
|
}
|
|
|
|
_currentFlyer = value;
|
|
}
|
|
}
|
|
|
|
private List<PlayerInfo> _playersInShip = new();
|
|
|
|
private uint _currentFlyer = uint.MaxValue;
|
|
|
|
public void Start()
|
|
=> Instance = this;
|
|
|
|
protected override void RebuildWorldObjects(OWScene scene)
|
|
{
|
|
var shipTransform = GameObject.Find("Ship_Body");
|
|
if (shipTransform == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Couldn't find ship!", MessageType.Error);
|
|
return;
|
|
}
|
|
|
|
HatchController = shipTransform.GetComponentInChildren<HatchController>();
|
|
if (HatchController == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Couldn't find hatch controller!", MessageType.Error);
|
|
return;
|
|
}
|
|
|
|
HatchInteractZone = HatchController.GetComponent<InteractZone>();
|
|
ShipTractorBeam = QSBWorldSync.GetUnityObjects<ShipTractorBeamSwitch>().First();
|
|
CockpitController = QSBWorldSync.GetUnityObjects<ShipCockpitController>().First();
|
|
ShipElectricalComponent = QSBWorldSync.GetUnityObjects<ShipElectricalComponent>().First();
|
|
|
|
var sphereShape = HatchController.GetComponent<SphereShape>();
|
|
sphereShape.radius = 2.5f;
|
|
sphereShape.center = new Vector3(0, 0, 1);
|
|
|
|
if (QSBCore.IsHost)
|
|
{
|
|
if (ShipTransformSync.LocalInstance != null)
|
|
{
|
|
if (ShipTransformSync.LocalInstance.gameObject == null)
|
|
{
|
|
DebugLog.ToConsole($"Warning - ShipTransformSync's LocalInstance is not null, but it's gameobject is null!", MessageType.Warning);
|
|
return;
|
|
}
|
|
|
|
QNetworkServer.Destroy(ShipTransformSync.LocalInstance.gameObject);
|
|
}
|
|
|
|
if (QSBPlayerManager.LocalPlayer.TransformSync == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Tried to spawn ship, but LocalPlayer's TransformSync is null!", MessageType.Error);
|
|
}
|
|
|
|
Instantiate(QSBNetworkManager.Instance.ShipPrefab).SpawnWithServerAuthority();
|
|
}
|
|
|
|
QSBWorldSync.Init<QSBShipComponent, ShipComponent>();
|
|
QSBWorldSync.Init<QSBShipHull, ShipHull>();
|
|
}
|
|
|
|
public void AddPlayerToShip(PlayerInfo player)
|
|
{
|
|
DebugLog.DebugWrite($"{player.PlayerId} enter ship.");
|
|
_playersInShip.Add(player);
|
|
UpdateElectricalComponent();
|
|
}
|
|
|
|
public void RemovePlayerFromShip(PlayerInfo player)
|
|
{
|
|
DebugLog.DebugWrite($"{player.PlayerId} leave ship.");
|
|
_playersInShip.Remove(player);
|
|
UpdateElectricalComponent();
|
|
}
|
|
|
|
public bool IsPlayerInShip(PlayerInfo player)
|
|
=> _playersInShip.Contains(player);
|
|
|
|
private void UpdateElectricalComponent()
|
|
{
|
|
var electricalSystem = ShipElectricalComponent.GetValue<ElectricalSystem>("_electricalSystem");
|
|
var damaged = ShipElectricalComponent.GetValue<bool>("_damaged");
|
|
|
|
if (_playersInShip.Count == 0)
|
|
{
|
|
if (!damaged)
|
|
{
|
|
DebugLog.DebugWrite($"No players left in ship - turning off electricals.");
|
|
electricalSystem.SetPowered(false);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!damaged)
|
|
{
|
|
DebugLog.DebugWrite($"Player in ship - turning on electricals.");
|
|
electricalSystem.SetPowered(true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|