quantum-space-buddies/QSB/QSBNetworkManager.cs

193 lines
7.8 KiB
C#
Raw Normal View History

2020-08-21 14:04:13 +01:00
using QSB.Animation;
2020-08-13 21:46:16 +02:00
using QSB.DeathSync;
2020-03-04 21:46:16 +01:00
using QSB.Events;
2020-08-13 19:25:12 +02:00
using QSB.GeyserSync;
using QSB.TimeSync;
2020-02-21 23:36:07 +01:00
using QSB.TransformSync;
using QSB.Utility;
2020-08-21 14:04:13 +01:00
using System;
using System.Linq;
2020-02-21 23:36:07 +01:00
using UnityEngine;
2020-02-13 20:23:26 +01:00
using UnityEngine.Networking;
2020-02-15 20:48:02 +01:00
namespace QSB
{
public class QSBNetworkManager : NetworkManager
{
private const int MaxConnections = 128;
2020-08-18 22:37:27 +02:00
public static QSBNetworkManager Instance { get; private set; }
public event Action OnNetworkManagerReady;
public bool IsReady { get; private set; }
private QSBNetworkLobby _lobby;
2020-02-21 23:36:07 +01:00
private AssetBundle _assetBundle;
private GameObject _shipPrefab;
private GameObject _cameraPrefab;
private GameObject _probePrefab;
2020-02-21 23:36:07 +01:00
2020-02-15 20:48:02 +01:00
private void Awake()
{
2020-08-18 22:37:27 +02:00
Instance = this;
_lobby = gameObject.AddComponent<QSBNetworkLobby>();
2020-08-17 16:51:56 +01:00
_assetBundle = QSB.NetworkAssetBundle;
playerPrefab = _assetBundle.LoadAsset<GameObject>("assets/networkplayer.prefab");
2020-02-21 23:36:07 +01:00
playerPrefab.AddComponent<PlayerTransformSync>();
playerPrefab.AddComponent<AnimationSync>();
playerPrefab.AddComponent<WakeUpSync>();
DebugLog.LogState("PlayerPrefab", playerPrefab);
_shipPrefab = _assetBundle.LoadAsset<GameObject>("assets/networkship.prefab");
_shipPrefab.AddComponent<ShipTransformSync>();
spawnPrefabs.Add(_shipPrefab);
DebugLog.LogState("ShipPrefab", _shipPrefab);
_cameraPrefab = _assetBundle.LoadAsset<GameObject>("assets/networkcameraroot.prefab");
_cameraPrefab.AddComponent<PlayerCameraSync>();
spawnPrefabs.Add(_cameraPrefab);
DebugLog.LogState("CameraPrefab", _cameraPrefab);
_probePrefab = _assetBundle.LoadAsset<GameObject>("assets/networkprobe.prefab");
_probePrefab.AddComponent<PlayerProbeSync>();
spawnPrefabs.Add(_probePrefab);
DebugLog.LogState("ProbePrefab", _probePrefab);
ConfigureNetworkManager();
QSB.Helper.HarmonyHelper.EmptyMethod<NetworkManagerHUD>("Update");
}
private void ConfigureNetworkManager()
{
networkAddress = QSB.DefaultServerIP;
maxConnections = MaxConnections;
customConfig = true;
connectionConfig.AddChannel(QosType.Reliable);
connectionConfig.AddChannel(QosType.Unreliable);
channels.Add(QosType.Reliable);
channels.Add(QosType.Unreliable);
}
public override void OnServerAddPlayer(NetworkConnection connection, short playerControllerId) // Called on the server when a client joins
{
base.OnServerAddPlayer(connection, playerControllerId);
2020-08-20 14:10:37 +01:00
// These have to be in a constant order (for now, until we get a better netId getting system...)
NetworkServer.SpawnWithClientAuthority(Instantiate(_shipPrefab), connection);
NetworkServer.SpawnWithClientAuthority(Instantiate(_cameraPrefab), connection);
NetworkServer.SpawnWithClientAuthority(Instantiate(_probePrefab), connection);
2020-08-09 22:10:47 +01:00
gameObject.AddComponent<Events.PlayerState>();
2020-02-13 20:23:26 +01:00
}
public override void OnClientConnect(NetworkConnection connection) // Called on the client when connecting to a server
2020-02-15 20:48:02 +01:00
{
base.OnClientConnect(connection);
2020-02-13 20:23:26 +01:00
2020-02-13 21:23:12 +01:00
gameObject.AddComponent<SectorSync>();
gameObject.AddComponent<RespawnOnDeath>();
gameObject.AddComponent<PreventShipDestruction>();
2020-08-13 14:32:58 +01:00
if (NetworkClient.active && !NetworkServer.active)
{
2020-08-09 21:46:51 +01:00
gameObject.AddComponent<Events.PlayerState>();
2020-08-13 19:25:12 +02:00
GeyserManager.Instance.EmptyUpdate();
2020-08-13 22:06:34 +01:00
WakeUpPatches.AddPatches();
}
2020-08-18 22:37:27 +02:00
_lobby.CanEditName = false;
OnNetworkManagerReady?.Invoke();
IsReady = true;
2020-08-08 12:23:23 +01:00
2020-08-20 14:10:37 +01:00
QSB.Helper.Events.Unity.RunWhen(() => PlayerTransformSync.LocalInstance != null, EventList.Init);
2020-08-09 14:26:33 +01:00
2020-08-20 14:10:37 +01:00
QSB.Helper.Events.Unity.RunWhen(() => EventList.Ready,
2020-08-18 22:37:27 +02:00
() => GlobalMessenger<string>.FireEvent(EventNames.QSBPlayerJoin, _lobby.PlayerName));
}
public override void OnStopClient() // Called on the client when closing connection
{
2020-08-18 13:56:07 +01:00
DebugLog.ToConsole("Disconnecting from server...", OWML.Common.MessageType.Info);
Destroy(GetComponent<SectorSync>());
Destroy(GetComponent<RespawnOnDeath>());
Destroy(GetComponent<PreventShipDestruction>());
2020-08-15 20:32:58 +01:00
EventList.Reset();
2020-08-18 22:37:27 +02:00
PlayerRegistry.PlayerList.ForEach(player => player.HudMarker?.Remove());
2020-08-20 19:31:10 +01:00
foreach (var player in PlayerRegistry.PlayerList.Where(x => x.NetId != PlayerRegistry.LocalPlayerId).ToList())
2020-08-20 17:29:47 +01:00
{
PlayerRegistry.GetPlayerNetIds(player).ForEach(CleanupNetworkBehaviour);
2020-08-20 18:24:31 +01:00
PlayerRegistry.RemovePlayer(player.NetId);
2020-08-20 17:29:47 +01:00
}
2020-08-20 18:24:31 +01:00
_lobby.CanEditName = true;
2020-03-04 21:46:16 +01:00
}
public override void OnServerDisconnect(NetworkConnection connection) // Called on the server when any client disconnects
2020-03-06 19:03:35 +01:00
{
var playerId = connection.playerControllers[0].gameObject.GetComponent<PlayerTransformSync>().netId.Value;
2020-08-18 22:37:27 +02:00
var netIds = connection.clientOwnedObjects.Select(x => x.Value).ToArray();
GlobalMessenger<uint, uint[]>.FireEvent(EventNames.QSBPlayerLeave, playerId, netIds);
2020-08-20 14:18:11 +01:00
PlayerRegistry.GetPlayer(playerId).HudMarker?.Remove();
2020-08-19 21:28:04 +01:00
CleanupConnection(connection);
2020-03-06 19:03:35 +01:00
}
2020-08-15 20:32:58 +01:00
public override void OnStopServer()
{
2020-08-20 17:29:47 +01:00
Destroy(GetComponent<SectorSync>());
Destroy(GetComponent<RespawnOnDeath>());
Destroy(GetComponent<PreventShipDestruction>());
EventList.Reset();
2020-08-17 16:51:56 +01:00
DebugLog.ToConsole("Server stopped!", OWML.Common.MessageType.Info);
2020-08-20 17:29:47 +01:00
PlayerRegistry.PlayerList.ForEach(player => player.HudMarker?.Remove());
2020-08-18 22:37:27 +02:00
NetworkServer.connections.ToList().ForEach(CleanupConnection);
2020-08-17 16:51:56 +01:00
base.OnStopServer();
}
private void CleanupConnection(NetworkConnection connection)
{
var playerId = connection.playerControllers[0].gameObject.GetComponent<PlayerTransformSync>().netId.Value;
2020-08-20 17:29:47 +01:00
if (!PlayerRegistry.PlayerExists(playerId))
{
return;
}
2020-08-17 16:51:56 +01:00
var playerName = PlayerRegistry.GetPlayer(playerId).Name;
DebugLog.ToConsole($"{playerName} disconnected.", OWML.Common.MessageType.Info);
PlayerRegistry.RemovePlayer(playerId);
2020-08-18 22:37:27 +02:00
2020-08-20 14:18:11 +01:00
if (playerId != PlayerRegistry.LocalPlayerId) // We don't want to delete the local player!
2020-08-20 13:43:16 +01:00
{
var netIds = connection.clientOwnedObjects.Select(x => x.Value).ToList();
netIds.ForEach(CleanupNetworkBehaviour);
}
2020-08-17 16:51:56 +01:00
}
2020-08-18 22:37:27 +02:00
public void CleanupNetworkBehaviour(uint netId)
2020-08-17 16:51:56 +01:00
{
2020-08-20 13:43:16 +01:00
DebugLog.ToConsole($"Cleaning up object {netId}");
2020-08-20 14:18:11 +01:00
// Multiple networkbehaviours can use the same networkidentity (same netId), so get all of them
2020-08-18 22:37:27 +02:00
var networkBehaviours = FindObjectsOfType<NetworkBehaviour>()
2020-08-19 22:29:53 +02:00
.Where(x => x != null && x.netId.Value == netId);
2020-08-18 22:37:27 +02:00
foreach (var networkBehaviour in networkBehaviours)
2020-08-17 16:51:56 +01:00
{
2020-08-18 22:37:27 +02:00
var transformSync = networkBehaviour.GetComponent<TransformSync.TransformSync>();
2020-08-17 16:51:56 +01:00
2020-08-17 17:59:13 +01:00
if (transformSync != null)
2020-08-17 16:51:56 +01:00
{
PlayerRegistry.PlayerSyncObjects.Remove(transformSync);
2020-08-17 17:59:13 +01:00
if (transformSync.SyncedTransform != null)
{
Destroy(transformSync.SyncedTransform.gameObject);
}
2020-08-17 16:51:56 +01:00
}
2020-08-18 22:37:27 +02:00
Destroy(networkBehaviour.gameObject);
}
2020-02-13 20:23:26 +01:00
}
2020-02-13 20:23:26 +01:00
}
}