Added Button functionality and comment typo

This commit is contained in:
Robert 2019-08-02 17:56:27 +02:00
parent 12d5e8996d
commit 855456766a
2 changed files with 26 additions and 7 deletions

View file

@ -19,8 +19,12 @@ namespace CrosshairMod
public Vector2 position = new Vector2(0, 0); public Vector2 position = new Vector2(0, 0);
public Vector2 dimensions = 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 // Label of the Button
public string label = ""; public string label { get; set; } = "";
// OnClick event // OnClick event
public event EventHandler OnClick; public event EventHandler OnClick;
@ -41,14 +45,29 @@ namespace CrosshairMod
// Empty // 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. // Updates and Draws the Button.
// TODO: Seperate PressChecking and Rendering in order to have Disabled Buttons
public void Update() public void Update()
{
if (m_visible)
{ {
// Get if the Button was pressed and invoke OnClick event accordingly // Get if the Button was pressed and invoke OnClick event accordingly
bool buttonPressed = GUI.Button(new Rect(position, dimensions), label); bool buttonPressed = GUI.Button(new Rect(position, dimensions), label);
if (buttonPressed) if (buttonPressed && m_active)
OnClick?.Invoke(this, EventArgs.Empty); OnClick?.Invoke(this, EventArgs.Empty);
} }
} }
} }
}

View file

@ -8,7 +8,7 @@ namespace CrosshairMod
{ {
/* /*
* The class that is responsible for loading and storing all the * 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 static class Settings
{ {