81 lines
2.3 KiB
C#
Raw Normal View History

2022-01-28 20:49:07 -08:00
using Cysharp.Threading.Tasks;
using QSB.ElevatorSync.Messages;
2022-01-22 17:30:08 -08:00
using QSB.Messaging;
using QSB.WorldSync;
2022-01-28 20:49:07 -08:00
using System.Threading;
2020-08-12 21:58:29 +02:00
using UnityEngine;
2022-03-02 19:46:33 -08:00
namespace QSB.ElevatorSync.WorldObjects;
public class QSBElevator : WorldObject<Elevator>
2020-08-12 21:58:29 +02:00
{
2022-03-02 19:46:33 -08:00
private OWTriggerVolume _elevatorTrigger;
2022-03-02 19:46:33 -08:00
public override async UniTask Init(CancellationToken ct)
{
// BUG : This won't work for the log lift! need to make a different trigger for that
2020-08-12 21:58:29 +02:00
2022-03-02 19:46:33 -08:00
var boxShape = AttachedObject.gameObject.GetAddComponent<BoxShape>();
boxShape.center = new Vector3(0, 1.75f, 0.25f);
boxShape.size = new Vector3(3, 3.5f, 3);
2022-01-22 17:30:08 -08:00
2022-03-02 19:46:33 -08:00
_elevatorTrigger = AttachedObject.gameObject.GetAddComponent<OWTriggerVolume>();
}
2021-12-07 15:56:08 +00:00
2022-03-02 19:46:33 -08:00
public override void SendInitialState(uint to) =>
this.SendMessage(new ElevatorMessage(AttachedObject._goingToTheEnd));
2021-11-25 18:55:22 +00:00
2022-03-02 19:46:33 -08:00
public void RemoteCall(bool isGoingUp)
{
if (AttachedObject._goingToTheEnd == isGoingUp)
{
2022-03-02 19:46:33 -08:00
return;
}
2022-03-02 19:46:33 -08:00
if (_elevatorTrigger.IsTrackingObject(Locator.GetPlayerDetector()))
{
SetDirection(isGoingUp);
2022-03-02 19:46:33 -08:00
AttachedObject._attachPoint.AttachPlayer();
if (Locator.GetPlayerSuit().IsWearingSuit() && Locator.GetPlayerSuit().IsTrainingSuit())
{
2022-03-02 19:46:33 -08:00
Locator.GetPlayerSuit().RemoveSuit();
}
2022-03-02 19:46:33 -08:00
RemoteStartLift();
2022-01-24 11:46:16 -08:00
}
2022-03-02 19:46:33 -08:00
else
{
2022-03-02 19:46:33 -08:00
SetDirection(isGoingUp);
RemoteStartLift();
}
2022-03-02 19:46:33 -08:00
}
2022-03-02 19:46:33 -08:00
private void SetDirection(bool isGoingUp)
{
AttachedObject._interactVolume.transform.Rotate(0f, 180f, 0f);
AttachedObject._goingToTheEnd = isGoingUp;
AttachedObject._targetLocalPos = isGoingUp ? AttachedObject._endLocalPos : AttachedObject._startLocalPos;
}
private void RemoteStartLift()
{
AttachedObject.enabled = true;
AttachedObject._initLocalPos = AttachedObject.transform.localPosition;
AttachedObject._initLiftTime = Time.time;
AttachedObject._owAudioSourceOneShot.PlayOneShot(AudioType.TH_LiftActivate);
AttachedObject._owAudioSourceLP.FadeIn(0.5f);
AttachedObject._interactVolume.DisableInteraction();
}
public override void DisplayLines()
{
var boxShape = (BoxShape)_elevatorTrigger._shape;
Popcron.Gizmos.Cube(
ShapeUtil.Box.CalcWorldSpaceCenter(boxShape),
boxShape.transform.rotation,
ShapeUtil.Box.CalcWorldSpaceSize(boxShape),
_elevatorTrigger.IsTrackingObject(Locator.GetPlayerDetector()) ? Color.green : Color.white
);
2020-12-02 21:23:01 +00:00
}
}