From 855456766a960d69822219bbebfdf44b47288530 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 17:56:27 +0200 Subject: [PATCH] Added Button functionality and comment typo --- CrosshairMod/Button.cs | 31 +++++++++++++++++++++++++------ CrosshairMod/Settings.cs | 2 +- 2 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Button.cs index 2fb4dbb..50a85f7 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Button.cs @@ -19,8 +19,12 @@ namespace CrosshairMod public Vector2 position = new Vector2(0, 0); public Vector2 dimensions = new Vector2(0, 0); + // Visibilty variables + private bool m_visible = true; + private bool m_active = true; + // Label of the Button - public string label = ""; + public string label { get; set; } = ""; // OnClick event public event EventHandler OnClick; @@ -41,14 +45,29 @@ namespace CrosshairMod // Empty } + + // Changes visibilty of the Button + public void Toggle() + { + m_visible = !m_visible; + } + + // Changes Usabilty of the button + public void Activate() + { + m_active = !m_active; + } + // Updates and Draws the Button. - // TODO: Seperate PressChecking and Rendering in order to have Disabled Buttons public void Update() { - // Get if the Button was pressed and invoke OnClick event accordingly - bool buttonPressed = GUI.Button(new Rect(position, dimensions), label); - if (buttonPressed) - OnClick?.Invoke(this, EventArgs.Empty); + if (m_visible) + { + // Get if the Button was pressed and invoke OnClick event accordingly + bool buttonPressed = GUI.Button(new Rect(position, dimensions), label); + if (buttonPressed && m_active) + OnClick?.Invoke(this, EventArgs.Empty); + } } } } diff --git a/CrosshairMod/Settings.cs b/CrosshairMod/Settings.cs index 16fe35b..f274f7c 100644 --- a/CrosshairMod/Settings.cs +++ b/CrosshairMod/Settings.cs @@ -8,7 +8,7 @@ namespace CrosshairMod { /* * The class that is responsible for loading and storing all the - * necessary settings. There's much room for improvement. + * necessary settings. There is much room for improvement. */ static class Settings {