quantum-space-buddies/QSB/ProbeSync/QSBProbe.cs
2021-07-19 14:58:14 +01:00

143 lines
3.6 KiB
C#

using QSB.Player;
using QSB.Utility;
using UnityEngine;
namespace QSB.ProbeSync
{
public class QSBProbe : MonoBehaviour
{
public delegate void SurveyorProbeEvent();
public delegate void RetrieveEvent(float retrieveLength);
public event SurveyorProbeEvent OnLaunchProbe;
public event SurveyorProbeEvent OnAnchorProbe;
public event SurveyorProbeEvent OnUnanchorProbe;
public event SurveyorProbeEvent OnRetrieveProbe;
public event SurveyorProbeEvent OnProbeDestroyed;
public event RetrieveEvent OnStartRetrieveProbe;
private GameObject _detectorObj;
private RulesetDetector _rulesetDetector;
private SingularityWarpEffect _warpEffect;
private bool _isRetrieving;
private PlayerInfo _owner;
public RulesetDetector GetRulesetDetector()
=> _rulesetDetector;
private void Awake()
{
_detectorObj = GetComponentInChildren<RulesetDetector>().gameObject;
_rulesetDetector = _detectorObj.GetComponent<RulesetDetector>();
_warpEffect = GetComponentInChildren<SingularityWarpEffect>();
_warpEffect.OnWarpComplete += OnWarpComplete;
_isRetrieving = false;
}
private void Start() => gameObject.SetActive(false);
protected void OnDestroy() => _warpEffect.OnWarpComplete -= OnWarpComplete;
public void SetOwner(PlayerInfo player)
{
if (_owner != null)
{
DebugLog.ToConsole($"Warning - Trying to set owner of probe that already has an owner!", OWML.Common.MessageType.Warning);
}
_owner = player;
}
private void OnWarpComplete() => Deactivate();
public bool IsRetrieving()
=> IsLaunched() && _isRetrieving;
public bool IsLaunched()
=> gameObject.activeSelf;
public void HandleEvent(ProbeEvent probeEvent)
{
if (_owner == null)
{
DebugLog.ToConsole($"Error - Trying to handle event on probe with no owner.", OWML.Common.MessageType.Error);
return;
}
switch (probeEvent)
{
case ProbeEvent.Launch:
if (OnLaunchProbe == null)
{
DebugLog.ToConsole($"Warning - OnLaunchProbe is null!", OWML.Common.MessageType.Warning);
break;
}
gameObject.SetActive(true);
transform.position = _owner.ProbeLauncher.transform.position;
transform.rotation = _owner.ProbeLauncher.transform.rotation;
OnLaunchProbe();
break;
case ProbeEvent.Anchor:
if (OnAnchorProbe == null)
{
DebugLog.ToConsole($"Warning - OnAnchorProbe is null!", OWML.Common.MessageType.Warning);
break;
}
OnAnchorProbe();
break;
case ProbeEvent.Unanchor:
OnUnanchorProbe();
break;
case ProbeEvent.Retrieve:
if (OnRetrieveProbe == null)
{
DebugLog.ToConsole($"Warning - OnRetrieveProbe is null!", OWML.Common.MessageType.Warning);
break;
}
OnRetrieveProbe();
break;
case ProbeEvent.Destroy:
if (OnProbeDestroyed == null)
{
DebugLog.ToConsole($"Warning - OnProbeDestroyed is null!", OWML.Common.MessageType.Warning);
break;
}
OnProbeDestroyed();
break;
case ProbeEvent.Invalid:
default:
DebugLog.DebugWrite($"Warning - Unknown/Invalid probe event.", OWML.Common.MessageType.Warning);
break;
}
}
private void Deactivate()
{
transform.localScale = Vector3.one;
gameObject.SetActive(false);
_isRetrieving = false;
}
public void OnStartRetrieve(float duration)
{
if (!_isRetrieving)
{
_isRetrieving = true;
_warpEffect.WarpObjectOut(duration);
if (OnStartRetrieveProbe == null)
{
DebugLog.ToConsole($"Warning - OnStartRetrieveProbe is null!", OWML.Common.MessageType.Warning);
return;
}
OnStartRetrieveProbe(duration);
}
}
}
}