first commit
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
using NitroxClient.Communication.Packets.Processors.Abstract;
|
||||
using NitroxClient.GameLogic;
|
||||
using NitroxClient.MonoBehaviours;
|
||||
using NitroxModel.Packets;
|
||||
using NitroxModel_Subnautica.DataStructures;
|
||||
using UnityEngine;
|
||||
using static NitroxModel.Packets.EntityTransformUpdates;
|
||||
|
||||
namespace NitroxClient.Communication.Packets.Processors;
|
||||
|
||||
public class EntityTransformUpdatesProcessor : ClientPacketProcessor<EntityTransformUpdates>
|
||||
{
|
||||
private readonly SimulationOwnership simulationOwnership;
|
||||
|
||||
public EntityTransformUpdatesProcessor(SimulationOwnership simulationOwnership)
|
||||
{
|
||||
this.simulationOwnership = simulationOwnership;
|
||||
}
|
||||
|
||||
public override void Process(EntityTransformUpdates packet)
|
||||
{
|
||||
foreach (EntityTransformUpdate update in packet.Updates)
|
||||
{
|
||||
// We will cancel any position update attempt at one of our locked entities
|
||||
if (!NitroxEntity.TryGetObjectFrom(update.Id, out GameObject gameObject) ||
|
||||
simulationOwnership.HasAnyLockType(update.Id))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
RemotelyControlled remotelyControlled = gameObject.EnsureComponent<RemotelyControlled>();
|
||||
|
||||
Vector3 position = update.Position.ToUnity();
|
||||
Quaternion rotation = update.Rotation.ToUnity();
|
||||
|
||||
if (update is SplineTransformUpdate splineUpdate)
|
||||
{
|
||||
remotelyControlled.UpdateKnownSplineUser(position, rotation, splineUpdate.DestinationPosition.ToUnity(), splineUpdate.DestinationDirection.ToUnity(), splineUpdate.Velocity);
|
||||
}
|
||||
else
|
||||
{
|
||||
remotelyControlled.UpdateOrientation(position, rotation);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user