您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
124 行
4.2 KiB
124 行
4.2 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Experimental.Rendering;
|
|
using UnityEngine.Profiling;
|
|
|
|
public class MiniProfiler : MonoBehaviour {
|
|
|
|
public bool m_Enable = false;
|
|
|
|
private int frameCount = 0;
|
|
private const int kAverageFrameCount = 64;
|
|
private float m_AccDeltaTime;
|
|
private float m_AvgDeltaTime;
|
|
// private bool m_UseNewBatcher = false;
|
|
|
|
internal class RecorderEntry
|
|
{
|
|
public string name;
|
|
public float time;
|
|
public int count;
|
|
public float avgTime;
|
|
public float avgCount;
|
|
public float accTime;
|
|
public int accCount;
|
|
public Recorder recorder;
|
|
};
|
|
|
|
RecorderEntry[] recordersList =
|
|
{
|
|
new RecorderEntry() { name="NormalObjects.Count" },
|
|
new RecorderEntry() { name="ShadowObjects.Count" },
|
|
|
|
new RecorderEntry() { name="RenderLoop.Draw" },
|
|
new RecorderEntry() { name="ShadowLoop.Draw" },
|
|
new RecorderEntry() { name="RenderLoopNewBatcher.Draw" },
|
|
new RecorderEntry() { name="ShadowLoopNewBatcher.Draw" },
|
|
|
|
new RecorderEntry() { name="BatchRendererFlush.Count" },
|
|
new RecorderEntry() { name="NewBatchRendererFlush.Count" },
|
|
|
|
new RecorderEntry() { name="StaticBatch.Count" },
|
|
new RecorderEntry() { name="CustomMarker0" },
|
|
new RecorderEntry() { name="CustomMarker1" },
|
|
new RecorderEntry() { name="CustomMarker2" },
|
|
new RecorderEntry() { name="CustomMarker3" },
|
|
|
|
};
|
|
|
|
void Awake()
|
|
{
|
|
|
|
DebugMenuManager.instance.AddDebugItem<bool>("Arnaud", "Mini-Profiler", () => m_Enable, (value) => m_Enable = (bool)value);
|
|
DebugMenuManager.instance.AddDebugItem<bool>("Arnaud", "New Batcher", () => UnityEngine.Experimental.Rendering.ScriptableRenderContext.useNewBatcher, (value) => UnityEngine.Experimental.Rendering.ScriptableRenderContext.useNewBatcher = (bool)value);
|
|
|
|
for (int i=0;i<recordersList.Length;i++)
|
|
{
|
|
var sampler = Sampler.Get(recordersList[i].name);
|
|
if ( sampler != null )
|
|
{
|
|
recordersList[i].recorder = sampler.GetRecorder();
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void Update()
|
|
{
|
|
|
|
if (m_Enable)
|
|
{
|
|
|
|
// get timing & update average accumulators
|
|
for (int i = 0; i < recordersList.Length; i++)
|
|
{
|
|
recordersList[i].time = recordersList[i].recorder.elapsedNanoseconds / 1000000.0f;
|
|
recordersList[i].count = recordersList[i].recorder.sampleBlockCount;
|
|
recordersList[i].accTime += recordersList[i].time;
|
|
recordersList[i].accCount += recordersList[i].count;
|
|
}
|
|
|
|
m_AccDeltaTime += Time.deltaTime;
|
|
|
|
frameCount++;
|
|
// time to time, update average values & reset accumulators
|
|
if (frameCount >= kAverageFrameCount)
|
|
{
|
|
for (int i = 0; i < recordersList.Length; i++)
|
|
{
|
|
recordersList[i].avgTime = recordersList[i].accTime * (1.0f / kAverageFrameCount);
|
|
recordersList[i].avgCount = recordersList[i].accCount * (1.0f / kAverageFrameCount);
|
|
recordersList[i].accTime = 0.0f;
|
|
recordersList[i].accCount = 0;
|
|
|
|
}
|
|
|
|
m_AvgDeltaTime = m_AccDeltaTime / kAverageFrameCount;
|
|
m_AccDeltaTime = 0.0f;
|
|
frameCount = 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
void OnGUI()
|
|
{
|
|
|
|
if (m_Enable)
|
|
{
|
|
GUI.color = new Color(1, 1, 1, .75f);
|
|
float w = 500, h = 24 + (recordersList.Length+1) * 16 + 8;
|
|
|
|
GUILayout.BeginArea(new Rect(Screen.width - w - 10, 10, w, h), "Mini Profiler", GUI.skin.window);
|
|
string sLabel = System.String.Format("<b>{0:F2} FPS ({1:F2}ms)</b>\n", 1.0f / m_AvgDeltaTime, Time.deltaTime * 1000.0f);
|
|
for (int i = 0; i < recordersList.Length; i++)
|
|
{
|
|
sLabel += string.Format("{0:F2}ms (*{1:F2})\t({2:F2}ms *{3:F2})\t<b>{4}</b>\n", recordersList[i].avgTime, recordersList[i].avgCount, recordersList[i].time, recordersList[i].count, recordersList[i].name);
|
|
}
|
|
GUILayout.Label(sLabel);
|
|
GUILayout.EndArea();
|
|
}
|
|
}
|
|
|
|
}
|