mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-15 16:48:00 +00:00
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using SanAndreasUnity.Utilities;
|
|
using System.Linq;
|
|
|
|
namespace SanAndreasUnity.UI
|
|
{
|
|
|
|
public class StatsWindow : PauseMenuWindow
|
|
{
|
|
int m_tabIndex = 0;
|
|
Vector2 m_scrollViewPos = Vector2.zero;
|
|
|
|
|
|
StatsWindow()
|
|
{
|
|
// set default parameters
|
|
|
|
this.windowName = "Stats";
|
|
this.useScrollView = false;
|
|
|
|
}
|
|
|
|
void Start ()
|
|
{
|
|
this.RegisterButtonInPauseMenu ();
|
|
|
|
// adjust rect
|
|
this.windowRect = Utilities.GUIUtils.GetCenteredRectPerc(new Vector2(0.8f, 0.8f));
|
|
}
|
|
|
|
|
|
protected override void OnWindowGUI ()
|
|
{
|
|
Utilities.Stats.DisplayRect = this.windowRect;
|
|
var categories = Utilities.Stats.Categories.ToArray();
|
|
m_tabIndex = GUIUtils.TabsControl(m_tabIndex, categories);
|
|
if (m_tabIndex >= 0)
|
|
{
|
|
m_scrollViewPos = GUILayout.BeginScrollView(m_scrollViewPos);
|
|
var stats = Utilities.Stats.Entries.ElementAt(m_tabIndex).Value;
|
|
foreach (var stat in stats)
|
|
{
|
|
if (!string.IsNullOrEmpty(stat.text))
|
|
GUILayout.Label(stat.text);
|
|
if (stat.onGUI != null)
|
|
stat.onGUI();
|
|
}
|
|
GUILayout.EndScrollView();
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|