mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-06 07:41:01 +00:00
38 lines
1.6 KiB
C#
38 lines
1.6 KiB
C#
|
using System.Drawing;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Controls
|
|||
|
{
|
|||
|
public partial class StatisticsControl : UserControl
|
|||
|
{
|
|||
|
public StatisticsControl()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
this.Visible = false;
|
|||
|
}
|
|||
|
|
|||
|
public void UpdateStatistics()
|
|||
|
{
|
|||
|
// Update statistics
|
|||
|
verticescount.Text = General.Map.Map.Vertices.Count.ToString();
|
|||
|
linedefscount.Text = General.Map.Map.Linedefs.Count.ToString();
|
|||
|
sidedefscount.Text = General.Map.Map.Sidedefs.Count.ToString();
|
|||
|
sectorscount.Text = General.Map.Map.Sectors.Count.ToString();
|
|||
|
thingscount.Text = General.Map.Map.Things.Count.ToString();
|
|||
|
|
|||
|
// Exceeding them limits?
|
|||
|
verticescount.ForeColor = (General.Map.Map.Vertices.Count > General.Map.FormatInterface.MaxVertices ? Color.Red : SystemColors.GrayText);
|
|||
|
linedefscount.ForeColor = (General.Map.Map.Linedefs.Count > General.Map.FormatInterface.MaxLinedefs ? Color.Red : SystemColors.GrayText);
|
|||
|
sidedefscount.ForeColor = (General.Map.Map.Sidedefs.Count > General.Map.FormatInterface.MaxSidedefs ? Color.Red : SystemColors.GrayText);
|
|||
|
sectorscount.ForeColor = (General.Map.Map.Sectors.Count > General.Map.FormatInterface.MaxSectors ? Color.Red : SystemColors.GrayText);
|
|||
|
thingscount.ForeColor = (General.Map.Map.Things.Count > General.Map.FormatInterface.MaxThings ? Color.Red : SystemColors.GrayText);
|
|||
|
|
|||
|
verticeslabel.ForeColor = verticescount.ForeColor;
|
|||
|
linedefslabel.ForeColor = linedefscount.ForeColor;
|
|||
|
sidedefslabel.ForeColor = sidedefscount.ForeColor;
|
|||
|
sectorslabel.ForeColor = sectorscount.ForeColor;
|
|||
|
thingslabel.ForeColor = thingscount.ForeColor;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|