2020-11-03 21:33:48 +00:00
|
|
|
|
using QSB.Player;
|
|
|
|
|
using UnityEngine;
|
2020-05-19 17:41:33 +00:00
|
|
|
|
|
|
|
|
|
namespace QSB.TransformSync
|
|
|
|
|
{
|
2020-07-28 13:59:24 +00:00
|
|
|
|
public class PlayerHUDMarker : HUDDistanceMarker
|
2020-05-19 17:41:33 +00:00
|
|
|
|
{
|
2020-08-18 13:00:37 +00:00
|
|
|
|
private PlayerInfo _player;
|
2020-05-19 17:41:33 +00:00
|
|
|
|
private bool _isReady;
|
|
|
|
|
|
|
|
|
|
protected override void InitCanvasMarker()
|
|
|
|
|
{
|
2020-07-27 23:13:43 +00:00
|
|
|
|
_markerRadius = 2f;
|
2020-05-19 17:41:33 +00:00
|
|
|
|
|
|
|
|
|
_markerTarget = new GameObject().transform;
|
|
|
|
|
_markerTarget.parent = transform;
|
2020-07-27 23:13:43 +00:00
|
|
|
|
|
2020-08-08 12:53:57 +00:00
|
|
|
|
_markerTarget.localPosition = Vector3.up * 2;
|
2020-05-19 17:41:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-08 10:25:09 +00:00
|
|
|
|
public void Init(PlayerInfo player)
|
2020-05-19 17:41:33 +00:00
|
|
|
|
{
|
2020-08-08 10:25:09 +00:00
|
|
|
|
_player = player;
|
2020-08-18 19:31:14 +00:00
|
|
|
|
_player.HudMarker = this;
|
2020-05-19 17:41:33 +00:00
|
|
|
|
_isReady = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void RefreshOwnVisibility()
|
|
|
|
|
{
|
|
|
|
|
if (_canvasMarker != null)
|
|
|
|
|
{
|
|
|
|
|
_canvasMarker.SetVisibility(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-28 13:59:24 +00:00
|
|
|
|
private void Update()
|
2020-05-19 17:41:33 +00:00
|
|
|
|
{
|
2020-08-08 10:25:09 +00:00
|
|
|
|
if (!_isReady || !_player.IsReady)
|
2020-05-19 17:41:33 +00:00
|
|
|
|
{
|
2020-07-28 13:59:24 +00:00
|
|
|
|
return;
|
2020-05-19 17:41:33 +00:00
|
|
|
|
}
|
2020-08-24 15:00:37 +00:00
|
|
|
|
_markerLabel = _player.Name.ToUpper();
|
2020-07-28 13:59:24 +00:00
|
|
|
|
_isReady = false;
|
|
|
|
|
|
|
|
|
|
base.InitCanvasMarker();
|
2020-05-19 17:41:33 +00:00
|
|
|
|
}
|
2020-08-18 20:37:27 +00:00
|
|
|
|
|
|
|
|
|
public void Remove()
|
|
|
|
|
{
|
2020-08-20 16:29:47 +00:00
|
|
|
|
// do N O T destroy the parent - it completely breaks the ENTIRE GAME
|
2020-08-23 19:01:09 +00:00
|
|
|
|
if (_canvasMarker?.gameObject != null)
|
2020-08-20 16:29:47 +00:00
|
|
|
|
{
|
|
|
|
|
_canvasMarker.DestroyMarker();
|
2020-08-20 17:24:31 +00:00
|
|
|
|
}
|
2020-08-23 19:01:09 +00:00
|
|
|
|
Destroy(_markerTarget.gameObject);
|
|
|
|
|
Destroy(this);
|
2020-08-18 20:37:27 +00:00
|
|
|
|
}
|
2020-08-23 19:01:09 +00:00
|
|
|
|
|
2020-05-19 17:41:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|