mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
139 lines
4.6 KiB
C#
139 lines
4.6 KiB
C#
using OWML.Common;
|
|
using QSB.Player.Events;
|
|
using QSB.Player.TransformSync;
|
|
using QSB.Tools;
|
|
using QSB.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Player
|
|
{
|
|
public static class QSBPlayerManager
|
|
{
|
|
public static uint LocalPlayerId
|
|
{
|
|
get
|
|
{
|
|
var localInstance = PlayerTransformSync.LocalInstance;
|
|
if (localInstance == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Trying to get LocalPlayerId when the local PlayerTransformSync instance is null.", MessageType.Error);
|
|
return uint.MaxValue;
|
|
}
|
|
if (localInstance.NetIdentity == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - Trying to get LocalPlayerId when the local PlayerTransformSync instance's QNetworkIdentity is null.", MessageType.Error);
|
|
return uint.MaxValue;
|
|
}
|
|
return localInstance.NetIdentity.NetId.Value;
|
|
}
|
|
}
|
|
|
|
public static Action<uint> OnRemovePlayer;
|
|
|
|
public static PlayerInfo LocalPlayer => GetPlayer(LocalPlayerId);
|
|
public static List<PlayerInfo> PlayerList { get; } = new List<PlayerInfo>();
|
|
|
|
private static readonly List<PlayerSyncObject> PlayerSyncObjects = new List<PlayerSyncObject>();
|
|
|
|
public static PlayerInfo GetPlayer(uint id)
|
|
{
|
|
if (!QSBNetworkManager.Instance.IsReady)
|
|
{
|
|
var method = new StackTrace().GetFrame(1).GetMethod();
|
|
DebugLog.ToConsole($"Warning - GetPlayer() (id<{id}>) called when Network Manager not ready! Is a Player Sync Object still active? " +
|
|
$"{Environment.NewLine} Called from {method.DeclaringType.Name}.{method.Name}", MessageType.Warning);
|
|
}
|
|
|
|
if (id == uint.MaxValue || id == 0U)
|
|
{
|
|
return default;
|
|
}
|
|
var player = PlayerList.FirstOrDefault(x => x.PlayerId == id);
|
|
if (player != null)
|
|
{
|
|
return player;
|
|
}
|
|
var trace = new StackTrace().GetFrame(1).GetMethod();
|
|
DebugLog.DebugWrite($"Create Player : id<{id}> (Called from {trace.DeclaringType.Name}.{trace.Name})", MessageType.Info);
|
|
player = new PlayerInfo(id);
|
|
PlayerList.Add(player);
|
|
return player;
|
|
}
|
|
|
|
public static void RemovePlayer(uint id)
|
|
{
|
|
var trace = new StackTrace().GetFrame(1).GetMethod();
|
|
DebugLog.DebugWrite($"Remove Player : id<{id}> (Called from {trace.DeclaringType.Name}.{trace.Name})", MessageType.Info);
|
|
PlayerList.RemoveAll(x => x.PlayerId == id);
|
|
}
|
|
|
|
public static bool PlayerExists(uint id) =>
|
|
id != uint.MaxValue && PlayerList.Any(x => x.PlayerId == id);
|
|
|
|
public static void HandleFullStateMessage(PlayerStateMessage message)
|
|
{
|
|
var player = GetPlayer(message.AboutId);
|
|
player.Name = message.PlayerName;
|
|
player.PlayerStates = message.PlayerState;
|
|
if (LocalPlayer.PlayerStates.IsReady)
|
|
{
|
|
player.UpdateStateObjects();
|
|
}
|
|
}
|
|
|
|
public static IEnumerable<T> GetSyncObjects<T>() where T : PlayerSyncObject =>
|
|
PlayerSyncObjects.OfType<T>().Where(x => x != null);
|
|
|
|
public static T GetSyncObject<T>(uint id) where T : PlayerSyncObject =>
|
|
GetSyncObjects<T>().FirstOrDefault(x => x != null && x.AttachedNetId == id);
|
|
|
|
public static void AddSyncObject(PlayerSyncObject obj) => PlayerSyncObjects.Add(obj);
|
|
|
|
public static void RemoveSyncObject(PlayerSyncObject obj) => PlayerSyncObjects.Remove(obj);
|
|
|
|
public static bool IsBelongingToLocalPlayer(uint id)
|
|
{
|
|
return id == LocalPlayerId ||
|
|
PlayerSyncObjects.Any(x => x != null && x.AttachedNetId == id && x.IsLocalPlayer);
|
|
}
|
|
|
|
public static List<PlayerInfo> GetPlayersWithCameras(bool includeLocalCamera = true)
|
|
{
|
|
var cameraList = PlayerList.Where(x => x.Camera != null && x.PlayerId != LocalPlayerId).ToList();
|
|
if (includeLocalCamera
|
|
&& LocalPlayer != default
|
|
&& LocalPlayer.Camera != null)
|
|
{
|
|
cameraList.Add(LocalPlayer);
|
|
}
|
|
return cameraList;
|
|
}
|
|
|
|
public static Tuple<Flashlight, IEnumerable<QSBFlashlight>> GetPlayerFlashlights()
|
|
=> new Tuple<Flashlight, IEnumerable<QSBFlashlight>>(Locator.GetFlashlight(), PlayerList.Where(x => x.FlashLight != null).Select(x => x.FlashLight));
|
|
|
|
public static void ShowAllPlayers()
|
|
=> PlayerList.Where(x => x != LocalPlayer).ToList().ForEach(x => ChangePlayerVisibility(x.PlayerId, true));
|
|
|
|
public static void HideAllPlayers()
|
|
=> PlayerList.Where(x => x != LocalPlayer).ToList().ForEach(x => ChangePlayerVisibility(x.PlayerId, false));
|
|
|
|
public static void ChangePlayerVisibility(uint playerId, bool visible)
|
|
{
|
|
var player = GetPlayer(playerId);
|
|
if (player.Body == null)
|
|
{
|
|
DebugLog.ToConsole($"Warning - Player {playerId} has a null body!", MessageType.Warning);
|
|
return;
|
|
}
|
|
foreach (var renderer in player.Body.GetComponentsInChildren<Renderer>())
|
|
{
|
|
renderer.enabled = visible;
|
|
}
|
|
}
|
|
}
|
|
} |