From 7dc404f52b86f066aae6caf8ff5fb27dd6474ed3 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 21:53:32 +0200 Subject: [PATCH] Made InputObject class - Buttons now draw via GUILayout - Button inherits from abstract InputObject --- CrosshairMod/CrosshairMod.csproj | 3 +- CrosshairMod/Interface.cs | 2 +- CrosshairMod/{ => Interface}/Button.cs | 45 ++++++-------------------- CrosshairMod/Interface/InputObject.cs | 15 +++++++++ CrosshairMod/Main.cs | 1 + 5 files changed, 29 insertions(+), 37 deletions(-) rename CrosshairMod/{ => Interface}/Button.cs (51%) create mode 100644 CrosshairMod/Interface/InputObject.cs diff --git a/CrosshairMod/CrosshairMod.csproj b/CrosshairMod/CrosshairMod.csproj index 0906b96..4b3d26c 100644 --- a/CrosshairMod/CrosshairMod.csproj +++ b/CrosshairMod/CrosshairMod.csproj @@ -44,9 +44,10 @@ - + + diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index b8bbe47..89082b2 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -39,7 +39,7 @@ namespace CrosshairMod // Returns the index of the button private static int AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent) { - GUIButton buttonObj = new GUIButton(x, y, width, height, label, onClickEvent); + GUIButton buttonObj = new GUIButton(label, onClickEvent); m_buttons.Add(buttonObj); return m_buttons.Count - 1; } diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Interface/Button.cs similarity index 51% rename from CrosshairMod/Button.cs rename to CrosshairMod/Interface/Button.cs index 2b5a32a..a2fc4d9 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Interface/Button.cs @@ -14,34 +14,24 @@ namespace CrosshairMod * I made this class for easy handling. * */ - class GUIButton + class GUIButton : InputObject { // da_google thinks this Button Wrapper is stupid, so let's see what ths Button Wrapper thinks about him private const bool IS_DA_GOOGLE_STUPID = true; // Interesting. - // Position / Dimension of the Button. - 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; + // OnClick event + public event EventHandler OnClick; // Label of the Button public string label { get; set; } = ""; - // OnClick event - public event EventHandler OnClick; - // Initialize Button - public GUIButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] OnClickEvent) + public GUIButton(string label, params EventHandler[] OnClickEvent) { Logging.Debug.Log("Button Constructor"); // Assign position, dimension and label - this.position = new Vector2(x, y); - this.dimensions = new Vector2(width, height); this.label = label; // Push OnClickEvents @@ -54,29 +44,14 @@ 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. - public void Update() + public override float Update() { - 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); - } + // Get if the Button was pressed and invoke OnClick event accordingly + bool buttonPressed = GUILayout.Button(label); + OnClick?.Invoke(this, EventArgs.Empty); + + return (buttonPressed ? 1.0f : 0.0f); } } } diff --git a/CrosshairMod/Interface/InputObject.cs b/CrosshairMod/Interface/InputObject.cs new file mode 100644 index 0000000..f799d18 --- /dev/null +++ b/CrosshairMod/Interface/InputObject.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +using UnityEngine; + +namespace CrosshairMod +{ + abstract class InputObject + { + public abstract float Update(); + } +} diff --git a/CrosshairMod/Main.cs b/CrosshairMod/Main.cs index c3b1a78..69349cd 100644 --- a/CrosshairMod/Main.cs +++ b/CrosshairMod/Main.cs @@ -31,6 +31,7 @@ namespace CrosshairMod // This will be executed first void Start() { + // Update the settings Settings.LoadSettings(".\\Blackwake_Data\\Managed\\Mods\\chSettings.sett"); // Create Crosshair