mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-03 20:04:33 +00:00
123 lines
4.4 KiB
C#
123 lines
4.4 KiB
C#
#if UNITY_EDITOR || DEVELOPMENT_BUILD
|
|
#define DEVELOPMENT
|
|
#endif
|
|
using FishNet.Managing;
|
|
using FishNet.Managing.Predicting;
|
|
using FishNet.Managing.Timing;
|
|
using FishNet.Managing.Transporting;
|
|
using FishNet.Serializing;
|
|
using FishNet.Transporting;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace FishNet.Connection
|
|
{
|
|
|
|
/// <summary>
|
|
/// A container for a connected client used to perform actions on and gather information for the declared client.
|
|
/// </summary>
|
|
public partial class NetworkConnection
|
|
{
|
|
/// <summary>
|
|
/// Approximate replicate tick on the server for this connection.
|
|
/// This also contains the last set value for local and remote.
|
|
/// </summary>
|
|
public EstimatedTick ReplicateTick { get; private set; } = new();
|
|
/// <summary>
|
|
/// Writers for states.
|
|
/// </summary>
|
|
internal List<PooledWriter> PredictionStateWriters = new();
|
|
|
|
internal void Prediction_Initialize(NetworkManager manager, bool asServer) { }
|
|
|
|
|
|
/// <summary>
|
|
/// Writes a prediction state.
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
internal void WriteState(PooledWriter data)
|
|
{
|
|
#if !DEVELOPMENT
|
|
//Do not send states to clientHost.
|
|
if (IsLocalClient)
|
|
return;
|
|
#endif
|
|
|
|
TimeManager timeManager = NetworkManager.TimeManager;
|
|
TransportManager transportManager = NetworkManager.TransportManager;
|
|
uint ticksBehind = (IsLocalClient) ? 0 : PacketTick.LocalTickDifference(timeManager);
|
|
/* If it's been a really long while the client could just be setting up
|
|
* or dropping. Only send if they've communicated within 5 seconds. */
|
|
if (ticksBehind > (timeManager.TickRate * 5))
|
|
return;
|
|
|
|
int mtu = transportManager.GetLowestMTU((byte)Channel.Unreliable);
|
|
PooledWriter stateWriter;
|
|
int writerCount = PredictionStateWriters.Count;
|
|
/* Conditions to create a new writer are:
|
|
* - writer does not exist yet.
|
|
* - data length + currentWriter length > mtu */
|
|
Channel channel = Channel.Unreliable;
|
|
if (writerCount > 0)
|
|
transportManager.CheckSetReliableChannel((data.Length + PredictionStateWriters[writerCount - 1].Length), ref channel);
|
|
/* If no writers or if channel would be forced reliable.
|
|
*
|
|
* By checking if channel would be reliable this is
|
|
* essentially asking if (current written + new data) would
|
|
* exceed mtu. When it would get a new writer to try
|
|
* and favor unreliable. Emphasis on try, because if some
|
|
* really unlikely chance the data was really large it would
|
|
* still send on reliable down the line. */
|
|
if (writerCount == 0 || channel == Channel.Reliable)
|
|
{
|
|
stateWriter = WriterPool.Retrieve(mtu);
|
|
PredictionStateWriters.Add(stateWriter);
|
|
stateWriter.Skip(PredictionManager.STATE_HEADER_RESERVE_LENGTH);
|
|
/// 2 PacketId.
|
|
/// 4 Last replicate tick run for connection.
|
|
/// 4 Length unpacked.
|
|
}
|
|
else
|
|
{
|
|
stateWriter = PredictionStateWriters[writerCount - 1];
|
|
}
|
|
|
|
stateWriter.WriteArraySegment(data.GetArraySegment());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stores prediction writers to be re-used later.
|
|
/// </summary>
|
|
internal void StorePredictionStateWriters()
|
|
{
|
|
for (int i = 0; i < PredictionStateWriters.Count; i++)
|
|
WriterPool.Store(PredictionStateWriters[i]);
|
|
|
|
PredictionStateWriters.Clear();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Sets the last tick a NetworkBehaviour replicated with.
|
|
/// </summary>
|
|
/// <param name="setUnordered">True to set unordered value, false to set ordered.</param>
|
|
internal void SetReplicateTick(uint value, EstimatedTick.OldTickOption oldTickOption = EstimatedTick.OldTickOption.Discard)
|
|
{
|
|
ReplicateTick.Update(value, oldTickOption);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Resets NetworkConnection.
|
|
/// </summary>
|
|
|
|
private void Prediction_Reset()
|
|
{
|
|
StorePredictionStateWriters();
|
|
ReplicateTick.Reset();
|
|
}
|
|
}
|
|
|
|
|
|
}
|