mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 13:23:05 +00:00
66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using QSB.TransformSync;
|
|
using QSB.Animation;
|
|
using QSB.Messaging;
|
|
|
|
namespace QSB
|
|
{
|
|
public static class PlayerRegistry
|
|
{
|
|
public static uint LocalPlayerId => PlayerTransformSync.LocalInstance.netId.Value;
|
|
public static PlayerInfo LocalPlayer => GetPlayer(LocalPlayerId);
|
|
public static List<PlayerInfo> PlayerList { get; } = new List<PlayerInfo>();
|
|
|
|
public static List<TransformSync.TransformSync> TransformSyncs { get; } = new List<TransformSync.TransformSync>();
|
|
public static List<TransformSync.TransformSync> LocalTransformSyncs => TransformSyncs.Where(t => t != null && t.hasAuthority).ToList();
|
|
public static List<AnimationSync> AnimationSyncs { get; } = new List<AnimationSync>();
|
|
|
|
public static PlayerInfo GetPlayer(uint id)
|
|
{
|
|
var player = PlayerList.FirstOrDefault(x => x.NetId == id);
|
|
if (player != null)
|
|
{
|
|
return player;
|
|
}
|
|
player = new PlayerInfo(id);
|
|
PlayerList.Add(player);
|
|
return player;
|
|
}
|
|
|
|
public static void RemovePlayer(uint id)
|
|
{
|
|
PlayerList.Remove(GetPlayer(id));
|
|
}
|
|
|
|
public static void HandleFullStateMessage(PlayerStateMessage message)
|
|
{
|
|
var player = GetPlayer(message.SenderId);
|
|
player.Name = message.PlayerName;
|
|
player.IsReady = message.PlayerReady;
|
|
player.State = message.PlayerState;
|
|
|
|
if (LocalPlayer.IsReady)
|
|
{
|
|
player.UpdateStateObjects();
|
|
}
|
|
}
|
|
|
|
public static TransformSync.TransformSync GetTransformSync(uint id)
|
|
{
|
|
return TransformSyncs.FirstOrDefault(x => x != null && x.netId.Value == id);
|
|
}
|
|
|
|
public static bool IsBelongingToLocalPlayer(uint id)
|
|
{
|
|
return id == LocalPlayerId || GetTransformSync(id).PlayerId == LocalPlayerId;
|
|
}
|
|
|
|
public static AnimationSync GetAnimationSync(uint id)
|
|
{
|
|
return AnimationSyncs.FirstOrDefault(x => x != null && x.netId.Value == id);
|
|
}
|
|
|
|
}
|
|
}
|