The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com). ## [1.0.0-pre.10] - 2022-06-21 ### Added - Added a new `OnTransportFailure` callback to `NetworkManager`. This callback is invoked when the manager's `NetworkTransport` encounters an unrecoverable error. Transport failures also cause the `NetworkManager` to shut down. Currently, this is only used by `UnityTransport` to signal a timeout of its connection to the Unity Relay servers. (#1994) - Added `NetworkEvent.TransportFailure`, which can be used by implementations of `NetworkTransport` to signal to `NetworkManager` that an unrecoverable error was encountered. (#1994) - Added test to ensure a warning occurs when nesting NetworkObjects in a NetworkPrefab (#1969) - Added `NetworkManager.RemoveNetworkPrefab(...)` to remove a prefab from the prefabs list (#1950) ### Changed - Updated `UnityTransport` dependency on `com.unity.transport` to 1.1.0. (#2025) - (API Breaking) `ConnectionApprovalCallback` is no longer an `event` and will not allow more than 1 handler registered at a time. Also, `ConnectionApprovalCallback` is now a `Func<>` taking `ConnectionApprovalRequest` in and returning `ConnectionApprovalResponse` back out (#1972) ### Removed ### Fixed - Fixed issue where dynamically spawned `NetworkObject`s could throw an exception if the scene of origin handle was zero (0) and the `NetworkObject` was already spawned. (#2017) - Fixed issue where `NetworkObject.Observers` was not being cleared when despawned. (#2009) - Fixed `NetworkAnimator` could not run in the server authoritative mode. (#2003) - Fixed issue where late joining clients would get a soft synchronization error if any in-scene placed NetworkObjects were parented under another `NetworkObject`. (#1985) - Fixed issue where `NetworkBehaviourReference` would throw a type cast exception if using `NetworkBehaviourReference.TryGet` and the component type was not found. (#1984) - Fixed `NetworkSceneManager` was not sending scene event notifications for the currently active scene and any additively loaded scenes when loading a new scene in `LoadSceneMode.Single` mode. (#1975) - Fixed issue where one or more clients disconnecting during a scene event would cause `LoadEventCompleted` or `UnloadEventCompleted` to wait until the `NetworkConfig.LoadSceneTimeOut` period before being triggered. (#1973) - Fixed issues when multiple `ConnectionApprovalCallback`s were registered (#1972) - Fixed a regression in serialization support: `FixedString`, `Vector2Int`, and `Vector3Int` types can now be used in NetworkVariables and RPCs again without requiring a `ForceNetworkSerializeByMemcpy<>` wrapper. (#1961) - Fixed generic types that inherit from NetworkBehaviour causing crashes at compile time. (#1976) - Fixed endless dialog boxes when adding a `NetworkBehaviour` to a `NetworkManager` or vice-versa. (#1947) - Fixed `NetworkAnimator` issue where it was only synchronizing parameters if the layer or state changed or was transitioning between states. (#1946) - Fixed `NetworkAnimator` issue where when it did detect a parameter had changed it would send all parameters as opposed to only the parameters that changed. (#1946) - Fixed `NetworkAnimator` issue where it was not always disposing the `NativeArray` that is allocated when spawned. (#1946) - Fixed `NetworkAnimator` issue where it was not taking the animation speed or state speed multiplier into consideration. (#1946) - Fixed `NetworkAnimator` issue where it was not properly synchronizing late joining clients if they joined while `Animator` was transitioning between states. (#1946) - Fixed `NetworkAnimator` issue where the server was not relaying changes to non-owner clients when a client was the owner. (#1946) - Fixed issue where the `PacketLoss` metric for tools would return the packet loss over a connection lifetime instead of a single frame. (#2004)
536 lines
18 KiB
C#
536 lines
18 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Unity.Collections;
|
|
|
|
namespace Unity.Netcode
|
|
{
|
|
/// <summary>
|
|
/// Event based NetworkVariable container for syncing Lists
|
|
/// </summary>
|
|
/// <typeparam name="T">The type for the list</typeparam>
|
|
public class NetworkList<T> : NetworkVariableBase where T : unmanaged, IEquatable<T>
|
|
{
|
|
private NativeList<T> m_List = new NativeList<T>(64, Allocator.Persistent);
|
|
private NativeList<T> m_ListAtLastReset = new NativeList<T>(64, Allocator.Persistent);
|
|
private NativeList<NetworkListEvent<T>> m_DirtyEvents = new NativeList<NetworkListEvent<T>>(64, Allocator.Persistent);
|
|
|
|
/// <summary>
|
|
/// Delegate type for list changed event
|
|
/// </summary>
|
|
/// <param name="changeEvent">Struct containing information about the change event</param>
|
|
public delegate void OnListChangedDelegate(NetworkListEvent<T> changeEvent);
|
|
|
|
/// <summary>
|
|
/// The callback to be invoked when the list gets changed
|
|
/// </summary>
|
|
public event OnListChangedDelegate OnListChanged;
|
|
|
|
public NetworkList() { }
|
|
|
|
public NetworkList(IEnumerable<T> values = default,
|
|
NetworkVariableReadPermission readPerm = DefaultReadPerm,
|
|
NetworkVariableWritePermission writePerm = DefaultWritePerm)
|
|
: base(readPerm, writePerm)
|
|
{
|
|
foreach (var value in values)
|
|
{
|
|
m_List.Add(value);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void ResetDirty()
|
|
{
|
|
base.ResetDirty();
|
|
if (m_DirtyEvents.Length > 0)
|
|
{
|
|
m_DirtyEvents.Clear();
|
|
m_ListAtLastReset.CopyFrom(m_List);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override bool IsDirty()
|
|
{
|
|
// we call the base class to allow the SetDirty() mechanism to work
|
|
return base.IsDirty() || m_DirtyEvents.Length > 0;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void WriteDelta(FastBufferWriter writer)
|
|
{
|
|
|
|
if (base.IsDirty())
|
|
{
|
|
writer.WriteValueSafe((ushort)1);
|
|
writer.WriteValueSafe(NetworkListEvent<T>.EventType.Full);
|
|
WriteField(writer);
|
|
|
|
return;
|
|
}
|
|
|
|
writer.WriteValueSafe((ushort)m_DirtyEvents.Length);
|
|
for (int i = 0; i < m_DirtyEvents.Length; i++)
|
|
{
|
|
var element = m_DirtyEvents.ElementAt(i);
|
|
writer.WriteValueSafe(element.Type);
|
|
switch (element.Type)
|
|
{
|
|
case NetworkListEvent<T>.EventType.Add:
|
|
{
|
|
NetworkVariableSerialization<T>.Write(writer, ref element.Value);
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Insert:
|
|
{
|
|
writer.WriteValueSafe(element.Index);
|
|
NetworkVariableSerialization<T>.Write(writer, ref element.Value);
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Remove:
|
|
{
|
|
NetworkVariableSerialization<T>.Write(writer, ref element.Value);
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.RemoveAt:
|
|
{
|
|
writer.WriteValueSafe(element.Index);
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Value:
|
|
{
|
|
writer.WriteValueSafe(element.Index);
|
|
NetworkVariableSerialization<T>.Write(writer, ref element.Value);
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Clear:
|
|
{
|
|
//Nothing has to be written
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void WriteField(FastBufferWriter writer)
|
|
{
|
|
writer.WriteValueSafe((ushort)m_ListAtLastReset.Length);
|
|
for (int i = 0; i < m_ListAtLastReset.Length; i++)
|
|
{
|
|
NetworkVariableSerialization<T>.Write(writer, ref m_ListAtLastReset.ElementAt(i));
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void ReadField(FastBufferReader reader)
|
|
{
|
|
m_List.Clear();
|
|
reader.ReadValueSafe(out ushort count);
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
NetworkVariableSerialization<T>.Read(reader, out T value);
|
|
m_List.Add(value);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void ReadDelta(FastBufferReader reader, bool keepDirtyDelta)
|
|
{
|
|
reader.ReadValueSafe(out ushort deltaCount);
|
|
for (int i = 0; i < deltaCount; i++)
|
|
{
|
|
reader.ReadValueSafe(out NetworkListEvent<T>.EventType eventType);
|
|
switch (eventType)
|
|
{
|
|
case NetworkListEvent<T>.EventType.Add:
|
|
{
|
|
NetworkVariableSerialization<T>.Read(reader, out T value);
|
|
m_List.Add(value);
|
|
|
|
if (OnListChanged != null)
|
|
{
|
|
OnListChanged(new NetworkListEvent<T>
|
|
{
|
|
Type = eventType,
|
|
Index = m_List.Length - 1,
|
|
Value = m_List[m_List.Length - 1]
|
|
});
|
|
}
|
|
|
|
if (keepDirtyDelta)
|
|
{
|
|
m_DirtyEvents.Add(new NetworkListEvent<T>()
|
|
{
|
|
Type = eventType,
|
|
Index = m_List.Length - 1,
|
|
Value = m_List[m_List.Length - 1]
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Insert:
|
|
{
|
|
reader.ReadValueSafe(out int index);
|
|
NetworkVariableSerialization<T>.Read(reader, out T value);
|
|
m_List.InsertRangeWithBeginEnd(index, index + 1);
|
|
m_List[index] = value;
|
|
|
|
if (OnListChanged != null)
|
|
{
|
|
OnListChanged(new NetworkListEvent<T>
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = m_List[index]
|
|
});
|
|
}
|
|
|
|
if (keepDirtyDelta)
|
|
{
|
|
m_DirtyEvents.Add(new NetworkListEvent<T>()
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = m_List[index]
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Remove:
|
|
{
|
|
NetworkVariableSerialization<T>.Read(reader, out T value);
|
|
int index = m_List.IndexOf(value);
|
|
if (index == -1)
|
|
{
|
|
break;
|
|
}
|
|
|
|
m_List.RemoveAt(index);
|
|
|
|
if (OnListChanged != null)
|
|
{
|
|
OnListChanged(new NetworkListEvent<T>
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = value
|
|
});
|
|
}
|
|
|
|
if (keepDirtyDelta)
|
|
{
|
|
m_DirtyEvents.Add(new NetworkListEvent<T>()
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = value
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.RemoveAt:
|
|
{
|
|
reader.ReadValueSafe(out int index);
|
|
T value = m_List[index];
|
|
m_List.RemoveAt(index);
|
|
|
|
if (OnListChanged != null)
|
|
{
|
|
OnListChanged(new NetworkListEvent<T>
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = value
|
|
});
|
|
}
|
|
|
|
if (keepDirtyDelta)
|
|
{
|
|
m_DirtyEvents.Add(new NetworkListEvent<T>()
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = value
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Value:
|
|
{
|
|
reader.ReadValueSafe(out int index);
|
|
NetworkVariableSerialization<T>.Read(reader, out T value);
|
|
if (index >= m_List.Length)
|
|
{
|
|
throw new Exception("Shouldn't be here, index is higher than list length");
|
|
}
|
|
|
|
var previousValue = m_List[index];
|
|
m_List[index] = value;
|
|
|
|
if (OnListChanged != null)
|
|
{
|
|
OnListChanged(new NetworkListEvent<T>
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = value,
|
|
PreviousValue = previousValue
|
|
});
|
|
}
|
|
|
|
if (keepDirtyDelta)
|
|
{
|
|
m_DirtyEvents.Add(new NetworkListEvent<T>()
|
|
{
|
|
Type = eventType,
|
|
Index = index,
|
|
Value = value,
|
|
PreviousValue = previousValue
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Clear:
|
|
{
|
|
//Read nothing
|
|
m_List.Clear();
|
|
|
|
if (OnListChanged != null)
|
|
{
|
|
OnListChanged(new NetworkListEvent<T>
|
|
{
|
|
Type = eventType,
|
|
});
|
|
}
|
|
|
|
if (keepDirtyDelta)
|
|
{
|
|
m_DirtyEvents.Add(new NetworkListEvent<T>()
|
|
{
|
|
Type = eventType
|
|
});
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Full:
|
|
{
|
|
ReadField(reader);
|
|
ResetDirty();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IEnumerator<T> GetEnumerator()
|
|
{
|
|
return m_List.GetEnumerator();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Add(T item)
|
|
{
|
|
m_List.Add(item);
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Add,
|
|
Value = item,
|
|
Index = m_List.Length - 1
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Clear()
|
|
{
|
|
m_List.Clear();
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Clear
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Contains(T item)
|
|
{
|
|
int index = NativeArrayExtensions.IndexOf(m_List, item);
|
|
return index != -1;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Remove(T item)
|
|
{
|
|
int index = NativeArrayExtensions.IndexOf(m_List, item);
|
|
if (index == -1)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
m_List.RemoveAt(index);
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Remove,
|
|
Value = item
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
return true;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public int Count => m_List.Length;
|
|
|
|
/// <inheritdoc />
|
|
public int IndexOf(T item)
|
|
{
|
|
return m_List.IndexOf(item);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Insert(int index, T item)
|
|
{
|
|
m_List.InsertRangeWithBeginEnd(index, index + 1);
|
|
m_List[index] = item;
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Insert,
|
|
Index = index,
|
|
Value = item
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void RemoveAt(int index)
|
|
{
|
|
m_List.RemoveAt(index);
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.RemoveAt,
|
|
Index = index
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public T this[int index]
|
|
{
|
|
get => m_List[index];
|
|
set
|
|
{
|
|
m_List[index] = value;
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Value,
|
|
Index = index,
|
|
Value = value
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
}
|
|
|
|
private void HandleAddListEvent(NetworkListEvent<T> listEvent)
|
|
{
|
|
m_DirtyEvents.Add(listEvent);
|
|
OnListChanged?.Invoke(listEvent);
|
|
}
|
|
|
|
public int LastModifiedTick
|
|
{
|
|
get
|
|
{
|
|
// todo: implement proper network tick for NetworkList
|
|
return NetworkTickSystem.NoTick;
|
|
}
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
m_List.Dispose();
|
|
m_ListAtLastReset.Dispose();
|
|
m_DirtyEvents.Dispose();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Struct containing event information about changes to a NetworkList.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type for the list that the event is about</typeparam>
|
|
public struct NetworkListEvent<T>
|
|
{
|
|
/// <summary>
|
|
/// Enum representing the different operations available for triggering an event.
|
|
/// </summary>
|
|
public enum EventType : byte
|
|
{
|
|
/// <summary>
|
|
/// Add
|
|
/// </summary>
|
|
Add,
|
|
|
|
/// <summary>
|
|
/// Insert
|
|
/// </summary>
|
|
Insert,
|
|
|
|
/// <summary>
|
|
/// Remove
|
|
/// </summary>
|
|
Remove,
|
|
|
|
/// <summary>
|
|
/// Remove at
|
|
/// </summary>
|
|
RemoveAt,
|
|
|
|
/// <summary>
|
|
/// Value changed
|
|
/// </summary>
|
|
Value,
|
|
|
|
/// <summary>
|
|
/// Clear
|
|
/// </summary>
|
|
Clear,
|
|
|
|
/// <summary>
|
|
/// Full list refresh
|
|
/// </summary>
|
|
Full
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enum representing the operation made to the list.
|
|
/// </summary>
|
|
public EventType Type;
|
|
|
|
/// <summary>
|
|
/// The value changed, added or removed if available.
|
|
/// </summary>
|
|
public T Value;
|
|
|
|
/// <summary>
|
|
/// The previous value when "Value" has changed, if available.
|
|
/// </summary>
|
|
public T PreviousValue;
|
|
|
|
/// <summary>
|
|
/// the index changed, added or removed if available
|
|
/// </summary>
|
|
public int Index;
|
|
}
|
|
}
|