90 lines
2.9 KiB
C#
90 lines
2.9 KiB
C#
#if UNITY_EDITOR || !UNITY_SERVER
|
|
using System;
|
|
using FishNet.Component.Utility;
|
|
using FishNet.Connection;
|
|
using FishNet.Managing.Statistic;
|
|
using FishNet.Object;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace FishNet.Demo.Benchmarks.NetworkTransforms
|
|
{
|
|
public class PrefabSpawner : NetworkBehaviour
|
|
{
|
|
[Header("General")]
|
|
[SerializeField]
|
|
private NetworkObject _prefab;
|
|
[Header("Spawning")]
|
|
[SerializeField]
|
|
private int _count = 500;
|
|
[Header("Display")]
|
|
[SerializeField]
|
|
private Text _displayText;
|
|
|
|
// [SerializeField]
|
|
// private float _xyRange = 15f;
|
|
// [SerializeField]
|
|
// private float _zRange = 100f;
|
|
private float _resetBandwidthTime = float.NegativeInfinity;
|
|
|
|
public override void OnStartServer()
|
|
{
|
|
if (_prefab == null)
|
|
{
|
|
Debug.LogError($"Prefab is null.");
|
|
return;
|
|
}
|
|
|
|
NetworkObject prefab = _prefab;
|
|
Vector3 currentPosition = transform.position;
|
|
|
|
for (int i = 0; i < _count; i++)
|
|
{
|
|
NetworkObject nob = Instantiate(prefab, currentPosition, Quaternion.identity);
|
|
Spawn(nob);
|
|
}
|
|
}
|
|
|
|
public override void OnSpawnServer(NetworkConnection connection)
|
|
{
|
|
// Reset bandwidth half a second after spawning in objects for a client.
|
|
_resetBandwidthTime = Time.time + 1f;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (_displayText == null)
|
|
return;
|
|
if (!IsServerInitialized)
|
|
return;
|
|
|
|
if (_resetBandwidthTime != float.NegativeInfinity && Time.time >= _resetBandwidthTime)
|
|
{
|
|
_resetBandwidthTime = float.NegativeInfinity;
|
|
BandwidthDisplay bd = FindObjectOfType<BandwidthDisplay>();
|
|
if (bd != null)
|
|
{
|
|
bd.ResetAverages();
|
|
Debug.Log($"Resetting bandwidth averages.");
|
|
}
|
|
}
|
|
|
|
uint updateFrequency = (uint)Mathf.FloorToInt((float)TimeManager.TickRate / 4f);
|
|
if (updateFrequency < 1)
|
|
updateFrequency = 1;
|
|
|
|
if (TimeManager.LocalTick % updateFrequency == 0)
|
|
{
|
|
_displayText.text = "Spawned: " + _count;
|
|
_displayText.text += Environment.NewLine + "Tick Rate: " + TimeManager.TickRate;
|
|
|
|
BandwidthDisplay bd = NetworkManager.gameObject.GetComponent<BandwidthDisplay>();
|
|
float serverOutAverage = bd.ServerAverages.GetAverage(inBuffer: false);
|
|
|
|
float perTransformAverage = serverOutAverage / _count;
|
|
_displayText.text += Environment.NewLine + "Average Per Transform: " + $"{NetworkTrafficStatistics.FormatBytesToLargest(perTransformAverage)}/send";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif |