diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 1acb1c8..1d77afe 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -19,8 +19,7 @@ namespace CrosshairMod /// A list of all Objects (That includes buttons, sliders etc) inside the GUI Window /// This makes it easy to add more components if it is needed. /// - private static List m_inputs = new List(); - // TODO: Replace with dictionary, the whole concept of having IDs inside the objects is stupid and unnecessary + private static Dictionary m_inputs = new Dictionary(); /// /// RGBA Slider values @@ -43,8 +42,8 @@ namespace CrosshairMod /// Action to be executed when the button is pressed private static void AddButton(float x, float y, float width, float height, string label, string ID, params EventHandler[] onClickEvent) { - Input.Button buttonObj = new Input.Button(x, y, width, height, label, ID, onClickEvent); - m_inputs.Add(buttonObj); + Input.Button buttonObj = new Input.Button(x, y, width, height, label, onClickEvent); + m_inputs.Add(ID, buttonObj); } /// @@ -60,8 +59,8 @@ namespace CrosshairMod /// Key of the slider private static void AddSlider(float x, float y, float width, float height, float min, float max, float init, string ID) { - Input.Slider sliderObj = new Input.Slider(x, y, width, height, min, max, init, ID); - m_inputs.Add(sliderObj); + Input.Slider sliderObj = new Input.Slider(x, y, width, height, min, max, init); + m_inputs.Add(ID, sliderObj); } /// @@ -111,7 +110,6 @@ namespace CrosshairMod public static void Render() { - // TODO: Think about making this a GUILayout.ModalWindow if (m_visible) GUI.Window(420, new Rect(m_position, m_dimension), RenderFunc, "Crosshair Settings"); } @@ -136,10 +134,10 @@ namespace CrosshairMod // Set crosshair Colour after getting slider values IEnumerable it = m_inputs.OfType(); - rSliderValue = (int)it.First(slider => slider.ID == "red").Value; - gSliderValue = (int)it.First(slider => slider.ID == "green").Value; - bSliderValue = (int)it.First(slider => slider.ID == "blue").Value; - aSliderValue = (int)it.First(slider => slider.ID == "alpha").Value; + rSliderValue = (int)((Input.Slider)m_inputs["red"]).Value; + gSliderValue = (int)((Input.Slider)m_inputs["green"]).Value; + bSliderValue = (int)((Input.Slider)m_inputs["blue"]).Value; + aSliderValue = (int)((Input.Slider)m_inputs["alpha"]).Value; Crosshair.SetColor(rSliderValue, gSliderValue, bSliderValue, aSliderValue); @@ -153,9 +151,9 @@ namespace CrosshairMod /// private static void HandleInputObjects() { - foreach(InputObject obj in m_inputs) + foreach(KeyValuePair obj in m_inputs) { - obj.Update(); + obj.Value.Update(); } } } diff --git a/CrosshairMod/Interface/Button.cs b/CrosshairMod/Interface/Button.cs index 6e4f259..17e42db 100644 --- a/CrosshairMod/Interface/Button.cs +++ b/CrosshairMod/Interface/Button.cs @@ -29,10 +29,9 @@ namespace CrosshairMod.Input /// Width /// Height /// Text inside the button - /// Button ID /// Action to execute when button is pressed - public Button(float x, float y, float width, float height, string label, string ID, params EventHandler[] OnClickEvent) - : base(x, y, width, height, ID) + public Button(float x, float y, float width, float height, string label, params EventHandler[] OnClickEvent) + : base(x, y, width, height) { Logging.Debug.Log("Button Constructor: " + label); @@ -47,9 +46,8 @@ namespace CrosshairMod.Input /// /// Sad, pathetic default constructor /// - /// - public Button(string ID) - : base(0, 0, 0, 0, ID) + public Button() + : base(0, 0, 0, 0) { // Empty } diff --git a/CrosshairMod/Interface/InputObject.cs b/CrosshairMod/Interface/InputObject.cs index 11743bf..cd039f0 100644 --- a/CrosshairMod/Interface/InputObject.cs +++ b/CrosshairMod/Interface/InputObject.cs @@ -6,7 +6,7 @@ using System.Text; using UnityEngine; -namespace CrosshairMod +namespace CrosshairMod.Input { /// /// Base class for all InputObjects. Defines basic attributes that @@ -15,9 +15,6 @@ namespace CrosshairMod abstract class InputObject { public Vector2 position, dimensions; - - // TODO: Remove once dictionary was implemented - public readonly string ID; /// /// Create new InputObject @@ -26,12 +23,10 @@ namespace CrosshairMod /// Y-Position /// Width /// Height - /// ID - public InputObject(float x, float y, float width, float height, string ID) + public InputObject(float x, float y, float width, float height) { this.position = new Vector2(x, y); this.dimensions = new Vector2(width, height); - this.ID = ID; } /// diff --git a/CrosshairMod/Interface/Slider.cs b/CrosshairMod/Interface/Slider.cs index df6a28d..bab072e 100644 --- a/CrosshairMod/Interface/Slider.cs +++ b/CrosshairMod/Interface/Slider.cs @@ -31,9 +31,8 @@ namespace CrosshairMod.Input /// Minimum Slider value /// Maximum Slider value /// Initial Slider value - /// ID - public Slider(float x, float y, float width, float height, float min, float max, float init, string ID) - : base(x, y, width, height, ID) + public Slider(float x, float y, float width, float height, float min, float max, float init) + : base(x, y, width, height) { Min = min; Max = max; @@ -43,9 +42,8 @@ namespace CrosshairMod.Input /// /// Sad, pathetic default constructor /// - /// - public Slider(string ID) - :base (0, 0, 0, 0, ID) + public Slider() + :base (0, 0, 0, 0) { }