quantum-space-buddies/QSB/Player/PlayerEntanglementWatcher.cs

45 lines
958 B
C#
Raw Normal View History

2021-12-24 01:07:29 +00:00
using QSB.Messaging;
2021-12-23 21:49:47 +00:00
using QSB.Player.Messages;
2021-12-14 06:49:18 +00:00
using QSB.QuantumSync.WorldObjects;
2022-02-01 22:24:21 +00:00
using QSB.Utility;
2021-02-24 10:45:25 +00:00
using QSB.WorldSync;
2021-02-21 21:27:54 +00:00
using UnityEngine;
namespace QSB.Player
{
2022-02-01 22:24:21 +00:00
internal class PlayerEntanglementWatcher : MonoBehaviour, IAddComponentOnStart
2021-02-21 21:27:54 +00:00
{
private QuantumObject _previousCollidingQuantumObject;
private void Update()
{
2021-03-09 19:45:00 +00:00
if (!QSBCore.IsInMultiplayer)
{
return;
}
2021-06-18 21:38:32 +00:00
if (!QSBWorldSync.AllObjectsReady)
2021-12-12 10:49:21 +00:00
{
return;
}
2021-02-21 21:27:54 +00:00
var controller = Locator.GetPlayerController();
if (controller == null)
{
return;
}
2021-06-18 21:38:32 +00:00
2021-12-12 10:49:21 +00:00
var collidingQuantumObject = controller._collidingQuantumObject;
2021-02-21 21:27:54 +00:00
if (_previousCollidingQuantumObject != collidingQuantumObject)
{
2021-12-23 04:45:25 +00:00
var objectId = collidingQuantumObject != null
? collidingQuantumObject.GetWorldObject<IQSBQuantumObject>().ObjectId
2021-02-21 21:27:54 +00:00
: -1;
2021-12-23 04:45:25 +00:00
new PlayerEntangledMessage(objectId).Send();
2021-02-21 21:27:54 +00:00
_previousCollidingQuantumObject = collidingQuantumObject;
}
}
}
}