您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
629 行
21 KiB
629 行
21 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Unity.Collections;
|
|
using UnityEngine;
|
|
|
|
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<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;
|
|
|
|
/// <summary>
|
|
/// Constructor method for <see cref="NetworkList"/>
|
|
/// </summary>
|
|
public NetworkList() { }
|
|
|
|
/// <inheritdoc/>
|
|
/// <param name="values"></param>
|
|
/// <param name="readPerm"></param>
|
|
/// <param name="writePerm"></param>
|
|
public NetworkList(IEnumerable<T> values = default,
|
|
NetworkVariableReadPermission readPerm = DefaultReadPerm,
|
|
NetworkVariableWritePermission writePerm = DefaultWritePerm)
|
|
: base(readPerm, writePerm)
|
|
{
|
|
// allow null IEnumerable<T> to mean "no values"
|
|
if (values != null)
|
|
{
|
|
foreach (var value in values)
|
|
{
|
|
m_List.Add(value);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void ResetDirty()
|
|
{
|
|
base.ResetDirty();
|
|
if (m_DirtyEvents.Length > 0)
|
|
{
|
|
m_DirtyEvents.Clear();
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override bool IsDirty()
|
|
{
|
|
// we call the base class to allow the SetDirty() mechanism to work
|
|
return base.IsDirty() || m_DirtyEvents.Length > 0;
|
|
}
|
|
|
|
internal void MarkNetworkObjectDirty()
|
|
{
|
|
if (m_NetworkBehaviour == null)
|
|
{
|
|
Debug.LogWarning($"NetworkList is written to, but doesn't know its NetworkBehaviour yet. " +
|
|
"Are you modifying a NetworkList before the NetworkObject is spawned?");
|
|
return;
|
|
}
|
|
|
|
m_NetworkBehaviour.NetworkManager.MarkNetworkObjectDirty(m_NetworkBehaviour.NetworkObject);
|
|
}
|
|
|
|
/// <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_List.Length);
|
|
for (int i = 0; i < m_List.Length; i++)
|
|
{
|
|
NetworkVariableSerialization<T>.Write(writer, ref m_List.ElementAt(i));
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void ReadField(FastBufferReader reader)
|
|
{
|
|
m_List.Clear();
|
|
reader.ReadValueSafe(out ushort count);
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
var value = new T();
|
|
NetworkVariableSerialization<T>.Read(reader, ref 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:
|
|
{
|
|
var value = new T();
|
|
NetworkVariableSerialization<T>.Read(reader, ref 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]
|
|
});
|
|
MarkNetworkObjectDirty();
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Insert:
|
|
{
|
|
reader.ReadValueSafe(out int index);
|
|
var value = new T();
|
|
NetworkVariableSerialization<T>.Read(reader, ref value);
|
|
|
|
if (index < m_List.Length)
|
|
{
|
|
m_List.InsertRangeWithBeginEnd(index, index + 1);
|
|
m_List[index] = value;
|
|
}
|
|
else
|
|
{
|
|
m_List.Add(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]
|
|
});
|
|
MarkNetworkObjectDirty();
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Remove:
|
|
{
|
|
var value = new T();
|
|
NetworkVariableSerialization<T>.Read(reader, ref 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
|
|
});
|
|
MarkNetworkObjectDirty();
|
|
}
|
|
}
|
|
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
|
|
});
|
|
MarkNetworkObjectDirty();
|
|
}
|
|
}
|
|
break;
|
|
case NetworkListEvent<T>.EventType.Value:
|
|
{
|
|
reader.ReadValueSafe(out int index);
|
|
var value = new T();
|
|
NetworkVariableSerialization<T>.Read(reader, ref 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
|
|
});
|
|
MarkNetworkObjectDirty();
|
|
}
|
|
}
|
|
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
|
|
});
|
|
MarkNetworkObjectDirty();
|
|
}
|
|
}
|
|
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)
|
|
{
|
|
// check write permissions
|
|
if (!CanClientWrite(m_NetworkBehaviour.NetworkManager.LocalClientId))
|
|
{
|
|
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
|
|
}
|
|
|
|
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()
|
|
{
|
|
// check write permissions
|
|
if (!CanClientWrite(m_NetworkBehaviour.NetworkManager.LocalClientId))
|
|
{
|
|
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
|
|
}
|
|
|
|
m_List.Clear();
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Clear
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Contains(T item)
|
|
{
|
|
int index = m_List.IndexOf(item);
|
|
return index != -1;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Remove(T item)
|
|
{
|
|
// check write permissions
|
|
if (!CanClientWrite(m_NetworkBehaviour.NetworkManager.LocalClientId))
|
|
{
|
|
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
|
|
}
|
|
|
|
int index = m_List.IndexOf(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)
|
|
{
|
|
// check write permissions
|
|
if (!CanClientWrite(m_NetworkBehaviour.NetworkManager.LocalClientId))
|
|
{
|
|
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
|
|
}
|
|
|
|
if (index < m_List.Length)
|
|
{
|
|
m_List.InsertRangeWithBeginEnd(index, index + 1);
|
|
m_List[index] = item;
|
|
}
|
|
else
|
|
{
|
|
m_List.Add(item);
|
|
}
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Insert,
|
|
Index = index,
|
|
Value = item
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void RemoveAt(int index)
|
|
{
|
|
// check write permissions
|
|
if (!CanClientWrite(m_NetworkBehaviour.NetworkManager.LocalClientId))
|
|
{
|
|
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
|
|
}
|
|
|
|
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
|
|
{
|
|
// check write permissions
|
|
if (!CanClientWrite(m_NetworkBehaviour.NetworkManager.LocalClientId))
|
|
{
|
|
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
|
|
}
|
|
|
|
var previousValue = m_List[index];
|
|
m_List[index] = value;
|
|
|
|
var listEvent = new NetworkListEvent<T>()
|
|
{
|
|
Type = NetworkListEvent<T>.EventType.Value,
|
|
Index = index,
|
|
Value = value,
|
|
PreviousValue = previousValue
|
|
};
|
|
|
|
HandleAddListEvent(listEvent);
|
|
}
|
|
}
|
|
|
|
private void HandleAddListEvent(NetworkListEvent<T> listEvent)
|
|
{
|
|
m_DirtyEvents.Add(listEvent);
|
|
MarkNetworkObjectDirty();
|
|
OnListChanged?.Invoke(listEvent);
|
|
}
|
|
|
|
/// <summary>
|
|
/// This is actually unused left-over from a previous interface
|
|
/// </summary>
|
|
public int LastModifiedTick
|
|
{
|
|
get
|
|
{
|
|
// todo: implement proper network tick for NetworkList
|
|
return NetworkTickSystem.NoTick;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Overridden <see cref="IDisposable"/> implementation.
|
|
/// CAUTION: If you derive from this class and override the <see cref="Dispose"/> method,
|
|
/// you **must** always invoke the base.Dispose() method!
|
|
/// </summary>
|
|
public override void Dispose()
|
|
{
|
|
m_List.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;
|
|
}
|
|
}
|