mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 18:25:18 +00:00
108 lines
1.9 KiB
C#
108 lines
1.9 KiB
C#
using QSB.ServerSettings;
|
|
using QSB.Utility;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Player;
|
|
|
|
[UsedInUnityProject]
|
|
public class PlayerHUDMarker : HUDDistanceMarker
|
|
{
|
|
private PlayerInfo _player;
|
|
private bool _needsInitializing;
|
|
private bool _isReady;
|
|
|
|
public override void InitCanvasMarker()
|
|
{
|
|
_markerRadius = 2f;
|
|
|
|
_markerTarget = new GameObject().transform;
|
|
_markerTarget.parent = transform;
|
|
|
|
_markerTarget.localPosition = Vector3.up * 0.25f;
|
|
}
|
|
|
|
public void Init(PlayerInfo player)
|
|
{
|
|
_player = player;
|
|
_player.HudMarker = this;
|
|
_needsInitializing = true;
|
|
}
|
|
|
|
private bool ShouldBeVisible()
|
|
{
|
|
if (_player == null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!ServerSettingsManager.ShowPlayerNames)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return _player.IsReady &&
|
|
!_player.IsDead &&
|
|
_player.Visible &&
|
|
_player.InDreamWorld == QSBPlayerManager.LocalPlayer.InDreamWorld &&
|
|
_player.IsInMoon == QSBPlayerManager.LocalPlayer.IsInMoon;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (_needsInitializing)
|
|
{
|
|
Initialize();
|
|
}
|
|
|
|
if (!_isReady || !_player.IsReady)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (_canvasMarker != null)
|
|
{
|
|
var isVisible = _canvasMarker.IsVisible();
|
|
|
|
if (ShouldBeVisible() != isVisible)
|
|
{
|
|
_canvasMarker.SetVisibility(ShouldBeVisible());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
DebugLog.ToConsole($"Warning - _canvasMarker for {_player} is null!", OWML.Common.MessageType.Warning);
|
|
}
|
|
}
|
|
|
|
private void Initialize()
|
|
{
|
|
if (_player.Name == null)
|
|
{
|
|
DebugLog.ToConsole($"Error - {_player} has a null name!", OWML.Common.MessageType.Error);
|
|
_player.Name = "NULL";
|
|
}
|
|
|
|
_markerLabel = _player.Name.ToUpper();
|
|
_needsInitializing = false;
|
|
_isReady = true;
|
|
|
|
base.InitCanvasMarker();
|
|
}
|
|
|
|
public void Remove()
|
|
{
|
|
_isReady = false;
|
|
// do N O T destroy the parent - it completely breaks the ENTIRE GAME
|
|
if (_canvasMarker != null)
|
|
{
|
|
_canvasMarker.DestroyMarker();
|
|
}
|
|
|
|
if (_markerTarget != null)
|
|
{
|
|
Destroy(_markerTarget.gameObject);
|
|
}
|
|
|
|
Destroy(this);
|
|
}
|
|
} |