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.7.0] - 2023-10-11 ### Added - exposed NetworkObject.GetNetworkBehaviourAtOrderIndex as a public API (#2724) - Added context menu tool that provides users with the ability to quickly update the GlobalObjectIdHash value for all in-scene placed prefab instances that were created prior to adding a NetworkObject component to it. (#2707) - Added methods NetworkManager.SetPeerMTU and NetworkManager.GetPeerMTU to be able to set MTU sizes per-peer (#2676) - Added `GenerateSerializationForGenericParameterAttribute`, which can be applied to user-created Network Variable types to ensure the codegen generates serialization for the generic types they wrap. (#2694) - Added `GenerateSerializationForTypeAttribute`, which can be applied to any class or method to ensure the codegen generates serialization for the specific provided type. (#2694) - Exposed `NetworkVariableSerialization<T>.Read`, `NetworkVariableSerialization<T>.Write`, `NetworkVariableSerialization<T>.AreEqual`, and `NetworkVariableSerialization<T>.Duplicate` to further support the creation of user-created network variables by allowing users to access the generated serialization methods and serialize generic types efficiently without boxing. (#2694) - Added `NetworkVariableBase.MarkNetworkBehaviourDirty` so that user-created network variable types can mark their containing `NetworkBehaviour` to be processed by the update loop. (#2694) ### Fixed - Fixed issue where the server side `NetworkSceneManager` instance was not adding the currently active scene to its list of scenes loaded. (#2723) - Generic NetworkBehaviour types no longer result in compile errors or runtime errors (#2720) - Rpcs within Generic NetworkBehaviour types can now serialize parameters of the class's generic types (but may not have generic types of their own) (#2720) - Errors are no longer thrown when entering play mode with domain reload disabled (#2720) - NetworkSpawn is now correctly called each time when entering play mode with scene reload disabled (#2720) - NetworkVariables of non-integer types will no longer break the inspector (#2714) - NetworkVariables with NonSerializedAttribute will not appear in the inspector (#2714) - Fixed issue where `UnityTransport` would attempt to establish WebSocket connections even if using UDP/DTLS Relay allocations when the build target was WebGL. This only applied to working in the editor since UDP/DTLS can't work in the browser. (#2695) - Fixed issue where a `NetworkBehaviour` component's `OnNetworkDespawn` was not being invoked on the host-server side for an in-scene placed `NetworkObject` when a scene was unloaded (during a scene transition) and the `NetworkBehaviour` component was positioned/ordered before the `NetworkObject` component. (#2685) - Fixed issue where `SpawnWithObservers` was not being honored when `NetworkConfig.EnableSceneManagement` was disabled. (#2682) - Fixed issue where `NetworkAnimator` was not internally tracking changes to layer weights which prevented proper layer weight synchronization back to the original layer weight value. (#2674) - Fixed "writing past the end of the buffer" error when calling ResetDirty() on managed network variables that are larger than 256 bytes when serialized. (#2670) - Fixed issue where generation of the `DefaultNetworkPrefabs` asset was not enabled by default. (#2662) - Fixed issue where the `GlobalObjectIdHash` value could be updated but the asset not marked as dirty. (#2662) - Fixed issue where the `GlobalObjectIdHash` value of a (network) prefab asset could be assigned an incorrect value when editing the prefab in a temporary scene. (#2662) - Fixed issue where the `GlobalObjectIdHash` value generated after creating a (network) prefab from an object constructed within the scene would not be the correct final value in a stand alone build. (#2662) ### Changed - Updated dependency on `com.unity.transport` to version 1.4.0. (#2716)
217 lines
8.7 KiB
C#
217 lines
8.7 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using Unity.Collections;
|
|
using Unity.Netcode.TestHelpers.Runtime;
|
|
using UnityEngine.TestTools;
|
|
using Debug = UnityEngine.Debug;
|
|
using Vector3 = UnityEngine.Vector3;
|
|
|
|
namespace Unity.Netcode.RuntimeTests
|
|
{
|
|
public class RpcTests : NetcodeIntegrationTest
|
|
{
|
|
public class GenericRpcTestNB<T> : NetworkBehaviour where T : unmanaged
|
|
{
|
|
public event Action<T, ServerRpcParams> OnServer_Rpc;
|
|
|
|
[ServerRpc]
|
|
public void MyServerRpc(T clientId, ServerRpcParams param = default)
|
|
{
|
|
OnServer_Rpc(clientId, param);
|
|
}
|
|
}
|
|
|
|
public class RpcTestNBFloat : GenericRpcTestNB<float>
|
|
{
|
|
}
|
|
|
|
public class RpcTestNB : GenericRpcTestNB<ulong>
|
|
{
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
public event Action<NativeList<ulong>, ServerRpcParams> OnNativeListServer_Rpc;
|
|
#endif
|
|
public event Action<Vector3, Vector3[],
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
NativeList<Vector3>,
|
|
#endif
|
|
FixedString32Bytes> OnTypedServer_Rpc;
|
|
|
|
public event Action OnClient_Rpc;
|
|
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
[ServerRpc]
|
|
public void MyNativeListServerRpc(NativeList<ulong> clientId, ServerRpcParams param = default)
|
|
{
|
|
OnNativeListServer_Rpc(clientId, param);
|
|
}
|
|
#endif
|
|
|
|
|
|
[ClientRpc]
|
|
public void MyClientRpc()
|
|
{
|
|
OnClient_Rpc();
|
|
}
|
|
|
|
[ServerRpc]
|
|
public void MyTypedServerRpc(Vector3 param1, Vector3[] param2,
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
NativeList<Vector3> param3,
|
|
#endif
|
|
FixedString32Bytes param4)
|
|
{
|
|
OnTypedServer_Rpc(param1, param2,
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
param3,
|
|
#endif
|
|
param4);
|
|
}
|
|
}
|
|
|
|
protected override int NumberOfClients => 1;
|
|
|
|
protected override void OnCreatePlayerPrefab()
|
|
{
|
|
m_PlayerPrefab.AddComponent<RpcTestNB>();
|
|
m_PlayerPrefab.AddComponent<RpcTestNBFloat>();
|
|
}
|
|
|
|
[UnityTest]
|
|
public IEnumerator TestRpcs()
|
|
{
|
|
// This is the *SERVER VERSION* of the *CLIENT PLAYER* RpcTestNB component
|
|
var serverClientRpcTestNB = m_PlayerNetworkObjects[m_ServerNetworkManager.LocalClientId][m_ClientNetworkManagers[0].LocalClientId].GetComponent<RpcTestNB>();
|
|
var serverClientRpcTestNBFloat = m_PlayerNetworkObjects[m_ServerNetworkManager.LocalClientId][m_ClientNetworkManagers[0].LocalClientId].GetComponent<RpcTestNBFloat>();
|
|
|
|
// This is the *CLIENT VERSION* of the *CLIENT PLAYER* RpcTestNB component
|
|
var localClienRpcTestNB = m_PlayerNetworkObjects[m_ClientNetworkManagers[0].LocalClientId][m_ClientNetworkManagers[0].LocalClientId].GetComponent<RpcTestNB>();
|
|
var localClienRpcTestNBFloat = m_PlayerNetworkObjects[m_ClientNetworkManagers[0].LocalClientId][m_ClientNetworkManagers[0].LocalClientId].GetComponent<RpcTestNBFloat>();
|
|
|
|
// Setup state
|
|
bool hasReceivedServerRpc = false;
|
|
bool hasReceivedFloatServerRpc = false;
|
|
bool hasReceivedTypedServerRpc = false;
|
|
bool hasReceivedClientRpcRemotely = false;
|
|
bool hasReceivedClientRpcLocally = false;
|
|
|
|
var vector3 = new Vector3(1, 2, 3);
|
|
Vector3[] vector3s = new[] { new Vector3(4, 5, 6), new Vector3(7, 8, 9) };
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
using var vector3sNativeList = new NativeList<Vector3>(Allocator.Persistent)
|
|
{
|
|
new Vector3(10, 11, 12),
|
|
new Vector3(13, 14, 15)
|
|
};
|
|
#endif
|
|
|
|
localClienRpcTestNB.OnClient_Rpc += () =>
|
|
{
|
|
Debug.Log("ClientRpc received on client object");
|
|
hasReceivedClientRpcRemotely = true;
|
|
};
|
|
|
|
localClienRpcTestNB.OnServer_Rpc += (clientId, param) =>
|
|
{
|
|
// The RPC invoked locally. (Weaver failure?)
|
|
Assert.Fail("ServerRpc invoked locally. Weaver failure?");
|
|
};
|
|
|
|
localClienRpcTestNBFloat.OnServer_Rpc += (clientId, param) =>
|
|
{
|
|
// The RPC invoked locally. (Weaver failure?)
|
|
Assert.Fail("ServerRpc (float) invoked locally. Weaver failure?");
|
|
};
|
|
|
|
serverClientRpcTestNB.OnServer_Rpc += (clientId, param) =>
|
|
{
|
|
Debug.Log("ServerRpc received on server object");
|
|
Assert.True(param.Receive.SenderClientId == clientId);
|
|
hasReceivedServerRpc = true;
|
|
};
|
|
|
|
serverClientRpcTestNBFloat.OnServer_Rpc += (clientId, param) =>
|
|
{
|
|
Debug.Log("ServerRpc (float) received on server object");
|
|
Assert.True(param.Receive.SenderClientId == clientId);
|
|
hasReceivedFloatServerRpc = true;
|
|
};
|
|
|
|
serverClientRpcTestNB.OnClient_Rpc += () =>
|
|
{
|
|
// The RPC invoked locally. (Weaver failure?)
|
|
Debug.Log("ClientRpc received on server object");
|
|
hasReceivedClientRpcLocally = true;
|
|
};
|
|
|
|
var str = new FixedString32Bytes("abcdefg");
|
|
|
|
serverClientRpcTestNB.OnTypedServer_Rpc += (param1, param2,
|
|
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
param3,
|
|
#endif
|
|
param4) =>
|
|
{
|
|
Debug.Log("TypedServerRpc received on server object");
|
|
Assert.AreEqual(param1, vector3);
|
|
Assert.AreEqual(param2.Length, vector3s.Length);
|
|
Assert.AreEqual(param2[0], vector3s[0]);
|
|
Assert.AreEqual(param2[1], vector3s[1]);
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
Assert.AreEqual(param3.Length, vector3s.Length);
|
|
Assert.AreEqual(param3[0], vector3sNativeList[0]);
|
|
Assert.AreEqual(param3[1], vector3sNativeList[1]);
|
|
#endif
|
|
Assert.AreEqual(param4, str);
|
|
hasReceivedTypedServerRpc = true;
|
|
};
|
|
|
|
// Send ServerRpc
|
|
localClienRpcTestNB.MyServerRpc(m_ClientNetworkManagers[0].LocalClientId);
|
|
localClienRpcTestNBFloat.MyServerRpc(m_ClientNetworkManagers[0].LocalClientId);
|
|
|
|
// Send TypedServerRpc
|
|
localClienRpcTestNB.MyTypedServerRpc(vector3, vector3s,
|
|
#if UNITY_NETCODE_NATIVE_COLLECTION_SUPPORT
|
|
vector3sNativeList,
|
|
#endif
|
|
str);
|
|
|
|
// Send ClientRpc
|
|
serverClientRpcTestNB.MyClientRpc();
|
|
|
|
// Validate each NetworkManager relative NetworkMessageManager received each respective RPC
|
|
var messageHookList = new List<MessageHookEntry>();
|
|
var serverMessageHookEntry = new MessageHookEntry(m_ServerNetworkManager);
|
|
serverMessageHookEntry.AssignMessageType<ServerRpcMessage>();
|
|
messageHookList.Add(serverMessageHookEntry);
|
|
|
|
var typedServerMessageHookEntry = new MessageHookEntry(m_ServerNetworkManager);
|
|
typedServerMessageHookEntry.AssignMessageType<ServerRpcMessage>();
|
|
messageHookList.Add(typedServerMessageHookEntry);
|
|
|
|
foreach (var client in m_ClientNetworkManagers)
|
|
{
|
|
var clientMessageHookEntry = new MessageHookEntry(client);
|
|
clientMessageHookEntry.AssignMessageType<ClientRpcMessage>();
|
|
messageHookList.Add(clientMessageHookEntry);
|
|
}
|
|
|
|
var rpcMessageHooks = new MessageHooksConditional(messageHookList);
|
|
yield return WaitForConditionOrTimeOut(rpcMessageHooks);
|
|
Assert.False(s_GlobalTimeoutHelper.TimedOut, $"Timed out waiting for messages: {rpcMessageHooks.GetHooksStillWaiting()}");
|
|
|
|
// Make sure RPCs propagated all the way up and were called on the relative destination class instance
|
|
yield return WaitForConditionOrTimeOut(() => hasReceivedServerRpc && hasReceivedClientRpcLocally && hasReceivedClientRpcRemotely && hasReceivedTypedServerRpc);
|
|
|
|
Assert.True(hasReceivedServerRpc, "ServerRpc was not received");
|
|
Assert.True(hasReceivedFloatServerRpc, "ServerRpc was not received");
|
|
Assert.True(hasReceivedTypedServerRpc, "TypedServerRpc was not received");
|
|
Assert.True(hasReceivedClientRpcLocally, "ClientRpc was not locally received on the server");
|
|
Assert.True(hasReceivedClientRpcRemotely, "ClientRpc was not remotely received on the client");
|
|
}
|
|
}
|
|
}
|