mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
feat: new virtual OnStopServer called when object is unspawned (#1743)
This commit is contained in:
parent
86ac5ad40b
commit
d1695dd16f
@ -840,6 +840,12 @@ public virtual void OnStopClient()
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual void OnStartServer() { }
|
public virtual void OnStartServer() { }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Invoked on the server when the object is unspawned
|
||||||
|
/// <para>Useful for saving object data in persistant storage</para>
|
||||||
|
/// </summary>
|
||||||
|
public virtual void OnStopServer() { }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called on every NetworkBehaviour when it is activated on a client.
|
/// Called on every NetworkBehaviour when it is activated on a client.
|
||||||
/// <para>Objects on the host have this function called, as there is a local client on the host. The values of SyncVars on object are guaranteed to be initialized correctly with the latest state from the server when this function is called on the client.</para>
|
/// <para>Objects on the host have this function called, as there is a local client on the host. The values of SyncVars on object are guaranteed to be initialized correctly with the latest state from the server when this function is called on the client.</para>
|
||||||
|
@ -598,6 +598,26 @@ internal void OnStartServer()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void OnStopServer()
|
||||||
|
{
|
||||||
|
foreach (NetworkBehaviour comp in NetworkBehaviours)
|
||||||
|
{
|
||||||
|
// an exception in OnStartServer should be caught, so that one
|
||||||
|
// component's exception doesn't stop all other components from
|
||||||
|
// being initialized
|
||||||
|
// => this is what Unity does for Start() etc. too.
|
||||||
|
// one exception doesn't stop all the other Start() calls!
|
||||||
|
try
|
||||||
|
{
|
||||||
|
comp.OnStopServer();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Debug.LogError("Exception in OnStopServer:" + e.Message + " " + e.StackTrace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool clientStarted;
|
bool clientStarted;
|
||||||
internal void OnStartClient()
|
internal void OnStartClient()
|
||||||
{
|
{
|
||||||
|
@ -1094,6 +1094,8 @@ static void DestroyObject(NetworkIdentity identity, bool destroyServerObject)
|
|||||||
identity.OnStopClient();
|
identity.OnStopClient();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
identity.OnStopServer();
|
||||||
|
|
||||||
// when unspawning, dont destroy the server's object
|
// when unspawning, dont destroy the server's object
|
||||||
if (destroyServerObject)
|
if (destroyServerObject)
|
||||||
{
|
{
|
||||||
|
@ -105,6 +105,22 @@ class NetworkDestroyCalledNetworkBehaviour : NetworkBehaviour
|
|||||||
public override void OnStopClient() { ++called; }
|
public override void OnStopClient() { ++called; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class StopServerCalledNetworkBehaviour : NetworkBehaviour
|
||||||
|
{
|
||||||
|
public int called;
|
||||||
|
public override void OnStopServer() { ++called; }
|
||||||
|
}
|
||||||
|
|
||||||
|
class StopServerExceptionNetworkBehaviour : NetworkBehaviour
|
||||||
|
{
|
||||||
|
public int called;
|
||||||
|
public override void OnStopServer()
|
||||||
|
{
|
||||||
|
++called;
|
||||||
|
throw new Exception("some exception");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class SetHostVisibilityExceptionNetworkBehaviour : NetworkVisibility
|
class SetHostVisibilityExceptionNetworkBehaviour : NetworkVisibility
|
||||||
{
|
{
|
||||||
public int called;
|
public int called;
|
||||||
@ -1038,6 +1054,38 @@ public void OnNetworkDestroy()
|
|||||||
Assert.That(comp.called, Is.EqualTo(1));
|
Assert.That(comp.called, Is.EqualTo(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void OnStopServer()
|
||||||
|
{
|
||||||
|
// add components
|
||||||
|
StopServerCalledNetworkBehaviour comp = gameObject.AddComponent<StopServerCalledNetworkBehaviour>();
|
||||||
|
|
||||||
|
// make sure our test values are set to 0
|
||||||
|
Assert.That(comp.called, Is.EqualTo(0));
|
||||||
|
|
||||||
|
identity.OnStopServer();
|
||||||
|
Assert.That(comp.called, Is.EqualTo(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void OnStopServerEx()
|
||||||
|
{
|
||||||
|
// add components
|
||||||
|
StopServerExceptionNetworkBehaviour compEx = gameObject.AddComponent<StopServerExceptionNetworkBehaviour>();
|
||||||
|
|
||||||
|
// make sure our test values are set to 0
|
||||||
|
Assert.That(compEx.called, Is.EqualTo(0));
|
||||||
|
|
||||||
|
// call OnNetworkDestroy in identity
|
||||||
|
// one component will throw an exception, but that shouldn't stop
|
||||||
|
// OnNetworkDestroy from being called in the second one
|
||||||
|
// exception will log an error
|
||||||
|
LogAssert.ignoreFailingMessages = true;
|
||||||
|
identity.OnStopServer();
|
||||||
|
LogAssert.ignoreFailingMessages = false;
|
||||||
|
Assert.That(compEx.called, Is.EqualTo(1));
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void AddObserver()
|
public void AddObserver()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user