Newer
Older
HoloAnatomy / Assets / HoloToolkit / Utilities / Scripts / DebugPanelFPSCounter.cs
SURFACEBOOK2\jackwynne on 25 May 2018 1 KB v1
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using UnityEngine;

namespace HoloToolkit.Unity
{
    /// <summary>
    /// Adds an FPS counter to the debug panel.
    /// </summary>
    public class DebugPanelFPSCounter : MonoBehaviour
    {
        /// <summary>
        /// Variables for an FPS counter
        /// </summary>
        private int frameCount;
        private int framesPerSecond;
        private int lastWholeTime;

        private void Start()
        {
            if (DebugPanel.Instance != null)
            {
                DebugPanel.Instance.RegisterExternalLogCallback(GetFps);
            }
        }

        private string GetFps()
        {
            // calculate the fps first 
            // (Note that we might want to do this in our update loop)
            UpdateFps();
            return string.Format("FPS: {0}\n", framesPerSecond);
        }

        /// <summary>
        /// Keeps track of rough frames per second.
        /// </summary>
        private void UpdateFps()
        {
            frameCount++;
            int currentWholeTime = (int) Time.realtimeSinceStartup;
            if (currentWholeTime != lastWholeTime)
            {
                lastWholeTime = currentWholeTime;
                framesPerSecond = frameCount;
                frameCount = 0;
            }
        }
    }
}