From 052378e3779ffde11fcfdb3e4ec6525b612cf5e1 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Thu, 1 Aug 2019 22:59:16 +0200 Subject: [PATCH 01/17] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..26abfe3 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Lauchmelder + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 10ebcbd8224dde744d651b8be79018e9833c49bc Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 16:04:19 +0200 Subject: [PATCH 02/17] Commented and Updated Logging --- CrosshairMod/Button.cs | 19 ++++++++++++++++--- CrosshairMod/Crosshair.cs | 13 ++++++++++++- CrosshairMod/Interface.cs | 28 +++++++++++++++++++++++++++- CrosshairMod/Logging.cs | 32 ++++++++++++++++++++++++++++++++ CrosshairMod/Main.cs | 19 ++++++++++++++++--- CrosshairMod/Settings.cs | 17 +++++++++++------ 6 files changed, 114 insertions(+), 14 deletions(-) diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Button.cs index 687f67e..2fb4dbb 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Button.cs @@ -8,19 +8,29 @@ using UnityEngine; namespace CrosshairMod { - // Button Wrapper class, utilizing GUI.Button() + /* + * A button wrapper class that is used right now as I don't have access to + * the games buttons. Since UnityEngine.GUI only has a function to draw Buttons, + * I made this class for easy handling. + */ class GUIButton { - + // Position / Dimension of the Button. public Vector2 position = new Vector2(0, 0); public Vector2 dimensions = new Vector2(0, 0); + + // Label of the Button public string label = ""; + + // OnClick event public event EventHandler OnClick; + // Initialize Button public GUIButton(uint x, uint y, uint width, uint height, string label) { - Logging.Log("Button Constructor"); + 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; @@ -31,8 +41,11 @@ namespace CrosshairMod // Empty } + // 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); diff --git a/CrosshairMod/Crosshair.cs b/CrosshairMod/Crosshair.cs index 1b6c7ee..a649372 100644 --- a/CrosshairMod/Crosshair.cs +++ b/CrosshairMod/Crosshair.cs @@ -8,10 +8,17 @@ using UnityEngine; namespace CrosshairMod { + /* The class responsible for drawing/creating/administrating the crosshair. + * + * This is where settings are applied to the crosshair. + */ static class Crosshair { + // Crosshair Texture / Style private static Texture2D m_texture = new Texture2D(0, 0); private static GUIStyle m_style; + + // If crosshair is visible or hidden private static bool m_enabled = true; private static bool m_validState = true; @@ -112,8 +119,11 @@ namespace CrosshairMod m_style.normal.background = m_texture; } + // Render the Crosshair public static void Render() { + // If the crosshair is faulty, then don't execute this code + // This is here to stop the Logger from spamming the console. if (m_validState) { if (InvalidCrosshair()) @@ -122,13 +132,14 @@ namespace CrosshairMod return; } + // Don't draw a hidden crosshair. Duh. if (m_enabled) GUI.Label(new Rect(Screen.width / 2 - m_texture.width / 2, Screen.height / 2 - m_texture.height / 2, m_texture.width, m_texture.height), m_texture, m_style); } } - + // Check Crosshair State private static bool InvalidCrosshair() { // Check if the texture is bigger than (0, 0) to see if it was initialized. diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index d8e4634..43fab20 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -8,45 +8,65 @@ using UnityEngine; namespace CrosshairMod { + + /* A class that handles the Crosshair GUI. + * + * Contains all Buttons, Sliders etc. that are able to modify the crosshair. + */ static class Interface { + // Saves wether the interface is visible or not private static bool m_visible = false; + // Stores all Buttons used in the interface. + // TODO: Create function to easily add Buttons private static Dictionary m_buttons = new Dictionary(); + + // Values of the RGBA Sliders private static int rSliderValue, gSliderValue, bSliderValue, aSliderValue; + // Texture and Styles for the GUI background private static Texture2D m_background = new Texture2D(1, 1); private static GUIStyle m_style = new GUIStyle(); - + // Position ind dimension of the GUI background private static Vector2 m_position; private static Vector2 m_dimension; // Initializes all Buttons, gives them their function etc public static void Init() { + // Set dimension to 0.25 of the screen width/height m_dimension = new Vector2(Screen.width / 4, Screen.height / 4); + // Center the interface m_position = new Vector2((Screen.width - m_dimension.x) / 2, (Screen.height - m_dimension.y) / 2); + // Create Texture that is dark gray and slightly see-through m_background.SetPixel(0, 0, new Color(0.4f, 0.4f, 0.4f, 0.4f)); m_background.wrapMode = TextureWrapMode.Repeat; m_background.Apply(); + // Apply Texture to Style m_style.normal.background = m_background; + // Create Crosshair Visibilty Button + // TODO: Make Button change label depending on Crosshait State (e.g. if it's hidden the label should be "Show", and vice versa) m_buttons.Add("visibility", new GUIButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, "Toggle Crosshair")); m_buttons["visibility"].OnClick += (object sender, EventArgs e) => { Crosshair.Toggle(); }; + // Create Crosshair Size +/- Buttons m_buttons.Add("size-", new GUIButton((uint)m_position.x + 20, (uint)m_position.y + 60, 30, 30, "-")); m_buttons.Add("size+", new GUIButton((uint)m_position.x + 190, (uint)m_position.y + 60, 30, 30, "+")); m_buttons["size-"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); }; m_buttons["size+"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); }; + // Create Crosshair Thickness +/- Buttons m_buttons.Add("thick-", new GUIButton((uint)m_position.x + 20, (uint)m_position.y + 100, 30, 30, "-")); m_buttons.Add("thick+", new GUIButton((uint)m_position.x + 190, (uint)m_position.y + 100, 30, 30, "+")); m_buttons["thick-"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); }; m_buttons["thick+"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); }; + // Assign setting values to sliders rSliderValue = Settings.GetValue("crosshairColorRed"); gSliderValue = Settings.GetValue("crosshairColorGreen"); bSliderValue = Settings.GetValue("crosshairColorBlue"); @@ -64,11 +84,15 @@ namespace CrosshairMod { if(m_visible) { + // Draw the background GUI.Label(new Rect(m_position, m_dimension), m_background, m_style); + // Draw the Length and Thickness Labels GUI.Label(new Rect(m_position.x + 60, m_position.y + 70, 120, 30), "Length: " + Settings.GetValue("crosshairLength")); GUI.Label(new Rect(m_position.x + 60, m_position.y + 110, 120, 30), "Thickness: " + Settings.GetValue("crosshairThickness")); + // Draw the RGBA Labels and Sliders + // TODO: Find better way to handle Sliders. Maybe make some InputInterface class that handles Buttons/Sliders etc GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 30, 200, 30), "R: " + rSliderValue); rSliderValue = (int)GUI.HorizontalSlider(new Rect(m_position.x + m_dimension.x / 2 + 60, m_position.y + 20, 200, 30), (int)rSliderValue, 0f, 255f); @@ -81,6 +105,7 @@ namespace CrosshairMod GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 150, 200, 30), "A: " + aSliderValue); aSliderValue = (int)GUI.HorizontalSlider(new Rect(m_position.x + m_dimension.x / 2 + 60, m_position.y + 140, 200, 30), (int)aSliderValue, 0f, 255f); + // Set crosshair Colour after getting slider values Crosshair.SetColor(rSliderValue, gSliderValue, bSliderValue, aSliderValue); // Update Buttons @@ -88,6 +113,7 @@ namespace CrosshairMod } } + // Calls the Update function on all Buttons to check if they were pressed, and execute their Action private static void HandleButtons() { foreach(KeyValuePair pair in m_buttons) diff --git a/CrosshairMod/Logging.cs b/CrosshairMod/Logging.cs index 2a7864a..eef8696 100644 --- a/CrosshairMod/Logging.cs +++ b/CrosshairMod/Logging.cs @@ -13,18 +13,50 @@ namespace CrosshairMod // However, I prefer this over Debug.Log() since it doesn't include a stacktrace (Except for Errors) public static class Logging { + // The Prefix that gets put in front of every Log public const string PREFIX = "[CROSSHAIRMOD]"; + // A kind of sub-class that is used to Log messages that will only appear + // when the User installs a Debug build of the Mod. Release versions will + // not log Debug messages this way. + public static class Debug + { + public static void Log(string message) + { +#if DEBUG + Logging.Log(message); +#endif // DEBUG + } + + public static void LogWarning(string message) + { +#if DEBUG + Logging.LogError(message); +#endif // DEBUG + } + + public static void LogError(string message) + { +#if DEBUG + Debug.Log(PREFIX + "Error: " + message); +#endif // DEBUG + } + } + + + // Logs information public static void Log(string message) { Console.WriteLine(PREFIX + "Info: " + message); } + // Logs warnings public static void LogWarning(string message) { Console.WriteLine(PREFIX + "Warning: " + message); } + // Logs errors public static void LogError(string message) { Debug.Log(PREFIX + "Error: " + message); diff --git a/CrosshairMod/Main.cs b/CrosshairMod/Main.cs index f6fb2ea..d3ff673 100644 --- a/CrosshairMod/Main.cs +++ b/CrosshairMod/Main.cs @@ -3,9 +3,10 @@ * the game Blackwake. * * @author Lauchmelder - * @version v0.2 + * @version v0.3 */ + using System; using System.Collections.Generic; using System.Linq; @@ -15,8 +16,16 @@ using UnityEngine; namespace CrosshairMod { + + /* + * This is the Main class that is responsible for + * handling initializing and updating the components + * of the crosshair mod. + */ public class Main : MonoBehaviour { + // Define Hotkeys for Menu and Crosshair Toggle + // TODO: Make Hotkeys editable for the User private const string MENU_OPEN_KEY = "H"; private const string CH_TOGGLE_KEY = "J"; @@ -31,16 +40,19 @@ namespace CrosshairMod Interface.Init(); } + // This gets called on every GUI Update (Can be multiple tiems per Frame) void OnGUI() { - // Check for Key press + // Check for Key presses if(Event.current.Equals(Event.KeyboardEvent(MENU_OPEN_KEY))) { + // Toggle Crosshair GUI Interface.Toggle(); } if (Event.current.Equals(Event.KeyboardEvent(CH_TOGGLE_KEY))) { + // Toggle Crosshair Crosshair.Toggle(); } @@ -50,11 +62,12 @@ namespace CrosshairMod Crosshair.Render(); } + // Will be called when the application is closed void OnApplicationQuit() { // Save settings Settings.SaveSettings(".\\Blackwake_Data\\Managed\\Mods\\chSettings.sett"); - Logging.Log("Saved Settings"); + Logging.Debug.Log("Saved Settings"); } } } diff --git a/CrosshairMod/Settings.cs b/CrosshairMod/Settings.cs index 7bf7b2e..f274f7c 100644 --- a/CrosshairMod/Settings.cs +++ b/CrosshairMod/Settings.cs @@ -6,14 +6,19 @@ using System.Threading.Tasks; namespace CrosshairMod { + /* + * The class that is responsible for loading and storing all the + * necessary settings. There is much room for improvement. + */ static class Settings { // Initialize Settings dictionary private static Dictionary m_settings = new Dictionary(); + // Load settings from file public static void LoadSettings(string filepath) { - Logging.Log("Accessing Settings at " + filepath); + Logging.Debug.Log("Accessing Settings at " + filepath); // Try to read file contents into string string settings = ""; @@ -43,7 +48,7 @@ namespace CrosshairMod m_settings.Add(vals[0], Int32.Parse(vals[1])); // Store key and value in settings dictionary } - Logging.Log("Successfully loaded settings!"); + Logging.Debug.Log("Successfully loaded settings!"); } // Converts the dictionary to a sett file @@ -67,10 +72,10 @@ namespace CrosshairMod m_settings.Add(key, value); } - // Changes a settings value + // Changes a settings value, and adds it if specified public static void SetSetting(string key, int newVal, bool addIfDoesntExist = false) { - + // If the setting doesn't exist, either add and set it, or print a Debug.Warning if(!m_settings.ContainsKey(key)) { if (!addIfDoesntExist) @@ -81,7 +86,7 @@ namespace CrosshairMod else { AddSetting(key, newVal); - Logging.LogWarning("Tried to change a setting with key \"" + key + "\" that doesn't exist. It has been added now."); + Logging.Debug.LogWarning("Tried to change a setting with key \"" + key + "\" that doesn't exist. It has been added now."); } } @@ -105,7 +110,7 @@ namespace CrosshairMod else { AddSetting(key, initialValue); - Logging.LogWarning("Tried to access unknown setting: \"" + key + "\". A new setting with this key was created."); + Logging.Debug.LogWarning("Tried to access unknown setting: \"" + key + "\". A new setting with this key was created."); return initialValue; } } From 12d5e8996d6a83dbdae0593e354b4033305e388b Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 17:50:05 +0200 Subject: [PATCH 03/17] Changed typo in comment --- CrosshairMod/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CrosshairMod/Settings.cs b/CrosshairMod/Settings.cs index f274f7c..16fe35b 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 is much room for improvement. + * necessary settings. There's much room for improvement. */ static class Settings { From 855456766a960d69822219bbebfdf44b47288530 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 17:56:27 +0200 Subject: [PATCH 04/17] 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 { From ff2ab0830721da031270ef7aa9f420754d82e990 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 18:43:40 +0200 Subject: [PATCH 05/17] Changed Button Adding in Interface --- CrosshairMod/Interface.cs | 42 ++++++++++++++++++++++++++------------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 43fab20..35206af 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -19,8 +19,7 @@ namespace CrosshairMod private static bool m_visible = false; // Stores all Buttons used in the interface. - // TODO: Create function to easily add Buttons - private static Dictionary m_buttons = new Dictionary(); + private static List m_buttons = new List(); // Values of the RGBA Sliders private static int rSliderValue, gSliderValue, bSliderValue, aSliderValue; @@ -33,6 +32,19 @@ namespace CrosshairMod private static Vector2 m_position; private static Vector2 m_dimension; + + // Creates a new button object and adds it to the ButtonList + private static void AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent) + { + GUIButton buttonObj = new GUIButton(x, y, width, height, label); + foreach(EventHandler e in onClickEvent) + { + buttonObj.OnClick += e; + } + + m_buttons.Add(buttonObj); + } + // Initializes all Buttons, gives them their function etc public static void Init() { @@ -49,22 +61,24 @@ namespace CrosshairMod // Apply Texture to Style m_style.normal.background = m_background; + AddButton(3, 3, 3, 3, "", (object sender, EventArgs e) => { }); + // Create Crosshair Visibilty Button // TODO: Make Button change label depending on Crosshait State (e.g. if it's hidden the label should be "Show", and vice versa) - m_buttons.Add("visibility", new GUIButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, "Toggle Crosshair")); - m_buttons["visibility"].OnClick += (object sender, EventArgs e) => { Crosshair.Toggle(); }; + AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, + "Toggle Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); }); // Create Crosshair Size +/- Buttons - m_buttons.Add("size-", new GUIButton((uint)m_position.x + 20, (uint)m_position.y + 60, 30, 30, "-")); - m_buttons.Add("size+", new GUIButton((uint)m_position.x + 190, (uint)m_position.y + 60, 30, 30, "+")); - m_buttons["size-"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); }; - m_buttons["size+"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); }; + AddButton((uint)m_position.x + 20, (uint)m_position.y + 60, 30, 30, + "-", (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); }); + AddButton((uint)m_position.x + 190, (uint)m_position.y + 60, 30, 30, + "+", (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); }); // Create Crosshair Thickness +/- Buttons - m_buttons.Add("thick-", new GUIButton((uint)m_position.x + 20, (uint)m_position.y + 100, 30, 30, "-")); - m_buttons.Add("thick+", new GUIButton((uint)m_position.x + 190, (uint)m_position.y + 100, 30, 30, "+")); - m_buttons["thick-"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); }; - m_buttons["thick+"].OnClick += (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); }; + AddButton((uint)m_position.x + 20, (uint)m_position.y + 100, 30, 30, + "-", (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); }); + AddButton((uint)m_position.x + 190, (uint)m_position.y + 100, 30, 30, + "+", (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); }); // Assign setting values to sliders rSliderValue = Settings.GetValue("crosshairColorRed"); @@ -116,9 +130,9 @@ namespace CrosshairMod // Calls the Update function on all Buttons to check if they were pressed, and execute their Action private static void HandleButtons() { - foreach(KeyValuePair pair in m_buttons) + foreach(GUIButton button in m_buttons) { - pair.Value.Update(); + button.Update(); } } } From 81d0cc6754872b0fd54d9a8ba3639b3a494f9cfa Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 20:01:49 +0200 Subject: [PATCH 06/17] Made the Toggle Button's label change on Click It now shows "Hide Crosshair" when the crosshair is enabled and vice versa --- CrosshairMod/Crosshair.cs | 6 ++++++ CrosshairMod/Interface.cs | 9 ++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CrosshairMod/Crosshair.cs b/CrosshairMod/Crosshair.cs index a649372..39906c6 100644 --- a/CrosshairMod/Crosshair.cs +++ b/CrosshairMod/Crosshair.cs @@ -29,6 +29,12 @@ namespace CrosshairMod Settings.SetSetting("crosshairVisible", 1, true); } + // Returns wether the crosshair is enabled + public static bool Enabled() + { + return m_enabled; + } + // Change Color public static void SetColor(int r, int g, int b, int a) { diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 35206af..d287ba5 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -34,7 +34,8 @@ namespace CrosshairMod // Creates a new button object and adds it to the ButtonList - private static void AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent) + // 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); foreach(EventHandler e in onClickEvent) @@ -43,6 +44,7 @@ namespace CrosshairMod } m_buttons.Add(buttonObj); + return m_buttons.Count - 1; } // Initializes all Buttons, gives them their function etc @@ -65,8 +67,9 @@ namespace CrosshairMod // Create Crosshair Visibilty Button // TODO: Make Button change label depending on Crosshait State (e.g. if it's hidden the label should be "Show", and vice versa) - AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, - "Toggle Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); }); + int index = AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, + "Hide Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); }); + m_buttons[index].OnClick += (object sender, EventArgs args) => { m_buttons[index].label = (Crosshair.Enabled()) ? "Show Crosshair" : "Hide Crosshair"; }; // Create Crosshair Size +/- Buttons AddButton((uint)m_position.x + 20, (uint)m_position.y + 60, 30, 30, From 3af4287ae383f5b20f682ad0c5f1624f190e4581 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 21:13:20 +0200 Subject: [PATCH 07/17] Changed Settings A settings file is now created if no file was found. Also changed Logging functions as they were producing formatting errors. --- CrosshairMod/CrosshairMod.csproj | 3 --- CrosshairMod/Interface.cs | 3 ++- CrosshairMod/Logging.cs | 6 +++--- CrosshairMod/Main.cs | 13 ++++++++----- CrosshairMod/Settings.cs | 32 ++++++++++++++++++++++++++++---- CrosshairMod/chSettings.sett | 6 ------ 6 files changed, 41 insertions(+), 22 deletions(-) delete mode 100644 CrosshairMod/chSettings.sett diff --git a/CrosshairMod/CrosshairMod.csproj b/CrosshairMod/CrosshairMod.csproj index 1f918ef..0906b96 100644 --- a/CrosshairMod/CrosshairMod.csproj +++ b/CrosshairMod/CrosshairMod.csproj @@ -52,8 +52,5 @@ - - - \ No newline at end of file diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index d287ba5..4423629 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -13,6 +13,8 @@ namespace CrosshairMod * * Contains all Buttons, Sliders etc. that are able to modify the crosshair. */ + + // TODO: Create GUILayout.Window to make a less crappy version of the settings window static class Interface { // Saves wether the interface is visible or not @@ -66,7 +68,6 @@ namespace CrosshairMod AddButton(3, 3, 3, 3, "", (object sender, EventArgs e) => { }); // Create Crosshair Visibilty Button - // TODO: Make Button change label depending on Crosshait State (e.g. if it's hidden the label should be "Show", and vice versa) int index = AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, "Hide Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); }); m_buttons[index].OnClick += (object sender, EventArgs args) => { m_buttons[index].label = (Crosshair.Enabled()) ? "Show Crosshair" : "Hide Crosshair"; }; diff --git a/CrosshairMod/Logging.cs b/CrosshairMod/Logging.cs index eef8696..c39db3f 100644 --- a/CrosshairMod/Logging.cs +++ b/CrosshairMod/Logging.cs @@ -31,14 +31,14 @@ namespace CrosshairMod public static void LogWarning(string message) { #if DEBUG - Logging.LogError(message); + Logging.LogWarning(message); #endif // DEBUG } public static void LogError(string message) { #if DEBUG - Debug.Log(PREFIX + "Error: " + message); + Logging.LogError(PREFIX + "Error: " + message); #endif // DEBUG } } @@ -59,7 +59,7 @@ namespace CrosshairMod // Logs errors public static void LogError(string message) { - Debug.Log(PREFIX + "Error: " + message); + UnityEngine.Debug.Log(PREFIX + "Error: " + message); } } } diff --git a/CrosshairMod/Main.cs b/CrosshairMod/Main.cs index d3ff673..c3b1a78 100644 --- a/CrosshairMod/Main.cs +++ b/CrosshairMod/Main.cs @@ -25,9 +25,8 @@ namespace CrosshairMod public class Main : MonoBehaviour { // Define Hotkeys for Menu and Crosshair Toggle - // TODO: Make Hotkeys editable for the User - private const string MENU_OPEN_KEY = "H"; - private const string CH_TOGGLE_KEY = "J"; + private char MENU_OPEN_KEY = 'H'; + private char CH_TOGGLE_KEY = 'J'; // This will be executed first void Start() @@ -38,19 +37,23 @@ namespace CrosshairMod Crosshair.Create(); // Create Panel Interface.Init(); + + // Load Hotkeys + MENU_OPEN_KEY = (char)Settings.GetValue("hotkeyCrosshairToggle", true, MENU_OPEN_KEY); + CH_TOGGLE_KEY = (char)Settings.GetValue("hotkeyGUIToggle", true, CH_TOGGLE_KEY); } // This gets called on every GUI Update (Can be multiple tiems per Frame) void OnGUI() { // Check for Key presses - if(Event.current.Equals(Event.KeyboardEvent(MENU_OPEN_KEY))) + if (Event.current.Equals(Event.KeyboardEvent(MENU_OPEN_KEY.ToString()))) { // Toggle Crosshair GUI Interface.Toggle(); } - if (Event.current.Equals(Event.KeyboardEvent(CH_TOGGLE_KEY))) + if (Event.current.Equals(Event.KeyboardEvent(CH_TOGGLE_KEY.ToString()))) { // Toggle Crosshair Crosshair.Toggle(); diff --git a/CrosshairMod/Settings.cs b/CrosshairMod/Settings.cs index f274f7c..36d16d7 100644 --- a/CrosshairMod/Settings.cs +++ b/CrosshairMod/Settings.cs @@ -21,15 +21,39 @@ namespace CrosshairMod Logging.Debug.Log("Accessing Settings at " + filepath); // Try to read file contents into string + // If no file exists, create one string settings = ""; + if(!System.IO.File.Exists(filepath)) + { + // No settings file found, create one + Logging.Debug.LogWarning("Settings file not found, creating one..."); + try + { + System.IO.File.Create(filepath); + } + // If that fails then shit just hit the fan. React accordingly + catch(Exception e) + { + Logging.LogError("Something went wrong while creating a settings file... :("); + Logging.LogError(e.Message); + Logging.LogError(e.StackTrace); + + return; + } + } + + // Read file to string try { settings = System.IO.File.ReadAllText(filepath); } + // Something incredibly weird just happened catch (Exception e) { - // Log error and return invalid state + Logging.LogError("Something went wrong while reading a settings file... :("); Logging.LogError(e.Message); + Logging.LogError(e.StackTrace); + return; } @@ -48,7 +72,7 @@ namespace CrosshairMod m_settings.Add(vals[0], Int32.Parse(vals[1])); // Store key and value in settings dictionary } - Logging.Debug.Log("Successfully loaded settings!"); + Logging.Log("Settings loaded."); } // Converts the dictionary to a sett file @@ -80,7 +104,7 @@ namespace CrosshairMod { if (!addIfDoesntExist) { - Logging.LogError("Tried to change a setting with key \"" + key + "\" that doesn't exist."); + Logging.Debug.LogError("Tried to change a setting with key \"" + key + "\" that doesn't exist."); return; } else @@ -105,7 +129,7 @@ namespace CrosshairMod { if (!addIfDoesntExist) { - Logging.LogError("Tried to access unknown setting: \"" + key + "\". Check your chSettings.sett for errors."); + Logging.Debug.LogError("Tried to access unknown setting: \"" + key + "\". Check your chSettings.sett for errors."); } else { diff --git a/CrosshairMod/chSettings.sett b/CrosshairMod/chSettings.sett deleted file mode 100644 index 55e84e0..0000000 --- a/CrosshairMod/chSettings.sett +++ /dev/null @@ -1,6 +0,0 @@ -crosshairLength=15 -crosshairThickness=3 -crosshairColorRed=255 -crosshairColorGreen=94 -crosshairColorBlue=244 -crosshairColorAlpha=100 \ No newline at end of file From dfbdf3f82d8ec60f0ba92fb6386d38ebe144f359 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 21:18:25 +0200 Subject: [PATCH 08/17] Secret --- CrosshairMod/Button.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Button.cs index 50a85f7..60560b3 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Button.cs @@ -12,9 +12,14 @@ namespace CrosshairMod * A button wrapper class that is used right now as I don't have access to * the games buttons. Since UnityEngine.GUI only has a function to draw Buttons, * I made this class for easy handling. + * */ class GUIButton { + // 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); From e1fd5ec87f7593ec15cb07f3fa442677429b0f9e Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 21:27:52 +0200 Subject: [PATCH 09/17] Added OnClick parameter list to Button constructor --- CrosshairMod/Button.cs | 6 +++++- CrosshairMod/Interface.cs | 7 +------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CrosshairMod/Button.cs b/CrosshairMod/Button.cs index 60560b3..2b5a32a 100644 --- a/CrosshairMod/Button.cs +++ b/CrosshairMod/Button.cs @@ -35,7 +35,7 @@ namespace CrosshairMod public event EventHandler OnClick; // Initialize Button - public GUIButton(uint x, uint y, uint width, uint height, string label) + public GUIButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] OnClickEvent) { Logging.Debug.Log("Button Constructor"); @@ -43,6 +43,10 @@ namespace CrosshairMod this.position = new Vector2(x, y); this.dimensions = new Vector2(width, height); this.label = label; + + // Push OnClickEvents + foreach(EventHandler e in OnClickEvent) + OnClick += e; } public GUIButton() diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 4423629..b8bbe47 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -39,12 +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); - foreach(EventHandler e in onClickEvent) - { - buttonObj.OnClick += e; - } - + GUIButton buttonObj = new GUIButton(x, y, width, height, label, onClickEvent); m_buttons.Add(buttonObj); return m_buttons.Count - 1; } From 7dc404f52b86f066aae6caf8ff5fb27dd6474ed3 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 2 Aug 2019 21:53:32 +0200 Subject: [PATCH 10/17] 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 From 831f54c6114d7283e5a4d34f86c6b355b6a5106a Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 3 Aug 2019 02:05:56 +0200 Subject: [PATCH 11/17] Added GUISlider --- CrosshairMod/Crosshair.cs | 2 +- CrosshairMod/CrosshairMod.csproj | 4 +- CrosshairMod/Interface.cs | 70 +++++++++++++++------------ CrosshairMod/Interface/Button.cs | 11 +++-- CrosshairMod/Interface/InputObject.cs | 23 ++++++++- CrosshairMod/Interface/Slider.cs | 40 +++++++++++++++ CrosshairMod/Logging.cs | 2 +- CrosshairMod/Main.cs | 2 +- CrosshairMod/Settings.cs | 2 +- 9 files changed, 115 insertions(+), 41 deletions(-) create mode 100644 CrosshairMod/Interface/Slider.cs diff --git a/CrosshairMod/Crosshair.cs b/CrosshairMod/Crosshair.cs index 39906c6..d8727c9 100644 --- a/CrosshairMod/Crosshair.cs +++ b/CrosshairMod/Crosshair.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + using UnityEngine; diff --git a/CrosshairMod/CrosshairMod.csproj b/CrosshairMod/CrosshairMod.csproj index 4b3d26c..b48e39e 100644 --- a/CrosshairMod/CrosshairMod.csproj +++ b/CrosshairMod/CrosshairMod.csproj @@ -9,9 +9,10 @@ Properties CrosshairMod CrosshairMod - v4.7.2 + v3.5 512 true + true @@ -48,6 +49,7 @@ + diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 89082b2..68465e8 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + using UnityEngine; @@ -21,7 +21,7 @@ namespace CrosshairMod private static bool m_visible = false; // Stores all Buttons used in the interface. - private static List m_buttons = new List(); + private static List m_inputs = new List(); // Values of the RGBA Sliders private static int rSliderValue, gSliderValue, bSliderValue, aSliderValue; @@ -35,13 +35,19 @@ namespace CrosshairMod private static Vector2 m_dimension; - // Creates a new button object and adds it to the ButtonList - // Returns the index of the button - private static int AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent) + // Creates a new button object and adds it to the List + private static void AddButton(float x, float y, float width, float height, string label, string ID, params EventHandler[] onClickEvent) { - GUIButton buttonObj = new GUIButton(label, onClickEvent); - m_buttons.Add(buttonObj); - return m_buttons.Count - 1; + GUIButton buttonObj = new GUIButton(x, y, width, height, label, ID, onClickEvent); + m_inputs.Add(buttonObj); + } + + // Creates a new slider object and adds it to the List + // Returns the index of the button + private static void AddSlider(float x, float y, float width, float height, float min, float max, float init, string ID) + { + GUISlider sliderObj = new GUISlider(x, y, width, height, min, max, init, ID); + m_inputs.Add(sliderObj); } // Initializes all Buttons, gives them their function etc @@ -60,30 +66,33 @@ namespace CrosshairMod // Apply Texture to Style m_style.normal.background = m_background; - AddButton(3, 3, 3, 3, "", (object sender, EventArgs e) => { }); - // Create Crosshair Visibilty Button - int index = AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30, - "Hide Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); }); - m_buttons[index].OnClick += (object sender, EventArgs args) => { m_buttons[index].label = (Crosshair.Enabled()) ? "Show Crosshair" : "Hide Crosshair"; }; + AddButton(m_position.x + 20, m_position.y + 20, 200, 30, + (Crosshair.Enabled() ? "Hide Crosshair" : "Show Crosshair"), "Toggle", (object sender, EventArgs e) => { Crosshair.Toggle(); }, + (object sender, EventArgs e) => { GUIButton btn = (GUIButton)sender; btn.label = (Crosshair.Enabled() ? "Hide Crosshair" : "Show Crosshair"); }); // Create Crosshair Size +/- Buttons - AddButton((uint)m_position.x + 20, (uint)m_position.y + 60, 30, 30, - "-", (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); }); - AddButton((uint)m_position.x + 190, (uint)m_position.y + 60, 30, 30, - "+", (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); }); + AddButton(m_position.x + 20, m_position.y + 60, 30, 30, + "-", "sizedown", (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); }); + AddButton(m_position.x + 190, m_position.y + 60, 30, 30, + "+", "sizeup", (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); }); // Create Crosshair Thickness +/- Buttons - AddButton((uint)m_position.x + 20, (uint)m_position.y + 100, 30, 30, - "-", (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); }); - AddButton((uint)m_position.x + 190, (uint)m_position.y + 100, 30, 30, - "+", (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); }); + AddButton(m_position.x + 20, m_position.y + 100, 30, 30, + "-", "thickdown", (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); }); + AddButton(m_position.x + 190, m_position.y + 100, 30, 30, + "+", "thickup", (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); }); - // Assign setting values to sliders rSliderValue = Settings.GetValue("crosshairColorRed"); gSliderValue = Settings.GetValue("crosshairColorGreen"); bSliderValue = Settings.GetValue("crosshairColorBlue"); aSliderValue = Settings.GetValue("crosshairColorAlpha"); + + // Create RGBA Sliders + AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 20, 200, 30, 0, 255, rSliderValue, "red"); + AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 60, 200, 30, 0, 255, gSliderValue, "green"); + AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 100, 200, 30, 0, 255, bSliderValue, "blue"); + AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 140, 200, 30, 0, 255, aSliderValue, "alpha"); } // Displays / Hides the menu @@ -107,18 +116,17 @@ namespace CrosshairMod // Draw the RGBA Labels and Sliders // TODO: Find better way to handle Sliders. Maybe make some InputInterface class that handles Buttons/Sliders etc GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 30, 200, 30), "R: " + rSliderValue); - rSliderValue = (int)GUI.HorizontalSlider(new Rect(m_position.x + m_dimension.x / 2 + 60, m_position.y + 20, 200, 30), (int)rSliderValue, 0f, 255f); - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 70, 200, 30), "G: " + gSliderValue); - gSliderValue = (int)GUI.HorizontalSlider(new Rect(m_position.x + m_dimension.x / 2 + 60, m_position.y + 60, 200, 30), (int)gSliderValue, 0f, 255f); - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 110, 200, 30), "B: " + bSliderValue); - bSliderValue = (int)GUI.HorizontalSlider(new Rect(m_position.x + m_dimension.x / 2 + 60, m_position.y + 100, 200, 30), (int)bSliderValue, 0f, 255f); - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 150, 200, 30), "A: " + aSliderValue); - aSliderValue = (int)GUI.HorizontalSlider(new Rect(m_position.x + m_dimension.x / 2 + 60, m_position.y + 140, 200, 30), (int)aSliderValue, 0f, 255f); // 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; + Crosshair.SetColor(rSliderValue, gSliderValue, bSliderValue, aSliderValue); // Update Buttons @@ -129,9 +137,9 @@ namespace CrosshairMod // Calls the Update function on all Buttons to check if they were pressed, and execute their Action private static void HandleButtons() { - foreach(GUIButton button in m_buttons) + foreach(InputObject obj in m_inputs) { - button.Update(); + obj.Update(); } } } diff --git a/CrosshairMod/Interface/Button.cs b/CrosshairMod/Interface/Button.cs index a2fc4d9..895da89 100644 --- a/CrosshairMod/Interface/Button.cs +++ b/CrosshairMod/Interface/Button.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + using UnityEngine; @@ -27,7 +27,8 @@ namespace CrosshairMod public string label { get; set; } = ""; // Initialize Button - public GUIButton(string label, params EventHandler[] OnClickEvent) + public GUIButton(float x, float y, float width, float height, string label, string ID, params EventHandler[] OnClickEvent) + : base(x, y, width, height, ID) { Logging.Debug.Log("Button Constructor"); @@ -39,7 +40,8 @@ namespace CrosshairMod OnClick += e; } - public GUIButton() + public GUIButton(string ID) + : base(0, 0, 0, 0, ID) { // Empty } @@ -48,7 +50,8 @@ namespace CrosshairMod public override float Update() { // Get if the Button was pressed and invoke OnClick event accordingly - bool buttonPressed = GUILayout.Button(label); + bool buttonPressed = GUI.Button(new Rect(position, dimensions), label); + if (buttonPressed) OnClick?.Invoke(this, EventArgs.Empty); return (buttonPressed ? 1.0f : 0.0f); diff --git a/CrosshairMod/Interface/InputObject.cs b/CrosshairMod/Interface/InputObject.cs index f799d18..7e14d2a 100644 --- a/CrosshairMod/Interface/InputObject.cs +++ b/CrosshairMod/Interface/InputObject.cs @@ -2,14 +2,35 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + using UnityEngine; namespace CrosshairMod { + /* + * Base of all Input Objects. + * + * Any Input Object that wants to be displayed in the Interface must + * inherit from this class. + */ abstract class InputObject { + // position and dimension of the object + public Vector2 position, dimensions; + + // ID of the Object + public readonly string ID; + + // constructor to set position and size + public InputObject(float x, float y, float width, float height, string ID) + { + this.position = new Vector2(x, y); + this.dimensions = new Vector2(width, height); + this.ID = ID; + } + + // the update method (that works as renderer) must be overriden by each object public abstract float Update(); } } diff --git a/CrosshairMod/Interface/Slider.cs b/CrosshairMod/Interface/Slider.cs new file mode 100644 index 0000000..47dbf80 --- /dev/null +++ b/CrosshairMod/Interface/Slider.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + + +using UnityEngine; + +namespace CrosshairMod +{ + class GUISlider : InputObject + { + // Min/Max values for the slider + public float Min { get; set; } = 0; + public float Max { get; set; } = 0; + + // Current slider value + public float Value { get; set; } = 0; + + public GUISlider(float x, float y, float width, float height, float min, float max, float init, string ID) + : base(x, y, width, height, ID) + { + Min = min; + Max = max; + Value = init; + } + + public GUISlider(string ID) + :base (0, 0, 0, 0, ID) + { + + } + + public override float Update() + { + Value = GUI.HorizontalSlider(new Rect(position, dimensions), Value, Min, Max); + return Value; + } + } +} diff --git a/CrosshairMod/Logging.cs b/CrosshairMod/Logging.cs index c39db3f..db9fd39 100644 --- a/CrosshairMod/Logging.cs +++ b/CrosshairMod/Logging.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + using UnityEngine; diff --git a/CrosshairMod/Main.cs b/CrosshairMod/Main.cs index 69349cd..d0a81da 100644 --- a/CrosshairMod/Main.cs +++ b/CrosshairMod/Main.cs @@ -11,7 +11,7 @@ using System; using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + using UnityEngine; namespace CrosshairMod diff --git a/CrosshairMod/Settings.cs b/CrosshairMod/Settings.cs index 36d16d7..795ad70 100644 --- a/CrosshairMod/Settings.cs +++ b/CrosshairMod/Settings.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using System.Threading.Tasks; + namespace CrosshairMod { From d4f70d1c27c1d767fe3af40b9fa9fc2683a43a4c Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 3 Aug 2019 02:21:11 +0200 Subject: [PATCH 12/17] Use GUI.Window() --- CrosshairMod/Interface.cs | 80 ++++++++++++++++++--------------------- 1 file changed, 36 insertions(+), 44 deletions(-) diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 68465e8..8110504 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -25,10 +25,6 @@ namespace CrosshairMod // Values of the RGBA Sliders private static int rSliderValue, gSliderValue, bSliderValue, aSliderValue; - - // Texture and Styles for the GUI background - private static Texture2D m_background = new Texture2D(1, 1); - private static GUIStyle m_style = new GUIStyle(); // Position ind dimension of the GUI background private static Vector2 m_position; @@ -58,29 +54,22 @@ namespace CrosshairMod // Center the interface m_position = new Vector2((Screen.width - m_dimension.x) / 2, (Screen.height - m_dimension.y) / 2); - // Create Texture that is dark gray and slightly see-through - m_background.SetPixel(0, 0, new Color(0.4f, 0.4f, 0.4f, 0.4f)); - m_background.wrapMode = TextureWrapMode.Repeat; - m_background.Apply(); - - // Apply Texture to Style - m_style.normal.background = m_background; // Create Crosshair Visibilty Button - AddButton(m_position.x + 20, m_position.y + 20, 200, 30, + AddButton(20, 20, 200, 30, (Crosshair.Enabled() ? "Hide Crosshair" : "Show Crosshair"), "Toggle", (object sender, EventArgs e) => { Crosshair.Toggle(); }, (object sender, EventArgs e) => { GUIButton btn = (GUIButton)sender; btn.label = (Crosshair.Enabled() ? "Hide Crosshair" : "Show Crosshair"); }); // Create Crosshair Size +/- Buttons - AddButton(m_position.x + 20, m_position.y + 60, 30, 30, + AddButton(20, 60, 30, 30, "-", "sizedown", (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); }); - AddButton(m_position.x + 190, m_position.y + 60, 30, 30, + AddButton(190, 60, 30, 30, "+", "sizeup", (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); }); // Create Crosshair Thickness +/- Buttons - AddButton(m_position.x + 20, m_position.y + 100, 30, 30, + AddButton(20, 100, 30, 30, "-", "thickdown", (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); }); - AddButton(m_position.x + 190, m_position.y + 100, 30, 30, + AddButton(190, 100, 30, 30, "+", "thickup", (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); }); rSliderValue = Settings.GetValue("crosshairColorRed"); @@ -89,10 +78,10 @@ namespace CrosshairMod aSliderValue = Settings.GetValue("crosshairColorAlpha"); // Create RGBA Sliders - AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 20, 200, 30, 0, 255, rSliderValue, "red"); - AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 60, 200, 30, 0, 255, gSliderValue, "green"); - AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 100, 200, 30, 0, 255, bSliderValue, "blue"); - AddSlider(m_position.x + m_dimension.x / 2 + 60, m_position.y + 140, 200, 30, 0, 255, aSliderValue, "alpha"); + AddSlider(m_dimension.x / 2 + 60, 30, 200, 10, 0, 255, rSliderValue, "red"); + AddSlider(m_dimension.x / 2 + 60, 70, 200, 30, 0, 255, gSliderValue, "green"); + AddSlider(m_dimension.x / 2 + 60, 110, 200, 30, 0, 255, bSliderValue, "blue"); + AddSlider(m_dimension.x / 2 + 60, 150, 200, 30, 0, 255, aSliderValue, "alpha"); } // Displays / Hides the menu @@ -101,37 +90,40 @@ namespace CrosshairMod m_visible = !m_visible; } - // Renders the Panel, but also handles Updating the buttons + // Renders the window public static void Render() { - if(m_visible) - { - // Draw the background - GUI.Label(new Rect(m_position, m_dimension), m_background, m_style); + if (m_visible) + GUI.Window(420, new Rect(m_position, m_dimension), RenderFunc, "Crosshair Settings"); + } - // Draw the Length and Thickness Labels - GUI.Label(new Rect(m_position.x + 60, m_position.y + 70, 120, 30), "Length: " + Settings.GetValue("crosshairLength")); - GUI.Label(new Rect(m_position.x + 60, m_position.y + 110, 120, 30), "Thickness: " + Settings.GetValue("crosshairThickness")); + // Renders the Panel, but also handles Updating the buttons + private static void RenderFunc(int windowID) + { + + // Draw the Length and Thickness Labels + GUI.Label(new Rect(60, 70, 120, 30), "Length: " + Settings.GetValue("crosshairLength")); + GUI.Label(new Rect(60, 110, 120, 30), "Thickness: " + Settings.GetValue("crosshairThickness")); - // Draw the RGBA Labels and Sliders - // TODO: Find better way to handle Sliders. Maybe make some InputInterface class that handles Buttons/Sliders etc - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 30, 200, 30), "R: " + rSliderValue); - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 70, 200, 30), "G: " + gSliderValue); - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 110, 200, 30), "B: " + bSliderValue); - GUI.Label(new Rect(m_position.x + m_dimension.x / 2 + 20, m_position.y + 150, 200, 30), "A: " + aSliderValue); + // Draw the RGBA Labels and Sliders + // TODO: Find better way to handle Sliders. Maybe make some InputInterface class that handles Buttons/Sliders etc + GUI.Label(new Rect(m_dimension.x / 2 + 20, 30, 200, 30), "R: " + rSliderValue); + GUI.Label(new Rect(m_dimension.x / 2 + 20, 70, 200, 30), "G: " + gSliderValue); + GUI.Label(new Rect(m_dimension.x / 2 + 20, 110, 200, 30), "B: " + bSliderValue); + GUI.Label(new Rect(m_dimension.x / 2 + 20, 150, 200, 30), "A: " + aSliderValue); - // 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; + // 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; - Crosshair.SetColor(rSliderValue, gSliderValue, bSliderValue, aSliderValue); + Crosshair.SetColor(rSliderValue, gSliderValue, bSliderValue, aSliderValue); - // Update Buttons - HandleButtons(); - } + // Update Buttons + HandleButtons(); + } // Calls the Update function on all Buttons to check if they were pressed, and execute their Action From 7762f0ba1b4020076c47835f10eb715d13f2cb53 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Sat, 3 Aug 2019 02:23:03 +0200 Subject: [PATCH 13/17] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 11a15c5..b0502b8 100644 --- a/README.md +++ b/README.md @@ -28,3 +28,8 @@ With Version v0.3 you can now toggle the crosshair with *J*, and you can open a * Colour * Added Hotkeys to open GUI (H) and to toggle the Crosshair (J) * Added auto-save, so any editing you do to the crosshair gets saved into the settings file. + +#### v0.3.1 + * Hotkeys can now be changed in the settings + * A missing settings file will no longer crash the mod + * Updated GUI Window. It looks nice now From 153485be21899548efc03e39b69784a1a099d101 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 3 Aug 2019 04:31:49 +0200 Subject: [PATCH 14/17] Built Release version of v0.3.1 --- CrosshairMod/Interface.cs | 1 - CrosshairMod/bin/Release/CrosshairMod.dll | Bin 13312 -> 15360 bytes 2 files changed, 1 deletion(-) diff --git a/CrosshairMod/Interface.cs b/CrosshairMod/Interface.cs index 8110504..53b71c7 100644 --- a/CrosshairMod/Interface.cs +++ b/CrosshairMod/Interface.cs @@ -106,7 +106,6 @@ namespace CrosshairMod GUI.Label(new Rect(60, 110, 120, 30), "Thickness: " + Settings.GetValue("crosshairThickness")); // Draw the RGBA Labels and Sliders - // TODO: Find better way to handle Sliders. Maybe make some InputInterface class that handles Buttons/Sliders etc GUI.Label(new Rect(m_dimension.x / 2 + 20, 30, 200, 30), "R: " + rSliderValue); GUI.Label(new Rect(m_dimension.x / 2 + 20, 70, 200, 30), "G: " + gSliderValue); GUI.Label(new Rect(m_dimension.x / 2 + 20, 110, 200, 30), "B: " + bSliderValue); diff --git a/CrosshairMod/bin/Release/CrosshairMod.dll b/CrosshairMod/bin/Release/CrosshairMod.dll index 1080c7e0adf46aa0f8645a74ac5c34d330599e94..717523228f2a627db52f70e263aa574f65f607a7 100644 GIT binary patch literal 15360 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 U+wo|Fv3v2KGJm=L|3%=x0dvWuGXMYp From b400e088e22f12853f9360d541c41fdac616e173 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Sat, 3 Aug 2019 05:04:09 +0200 Subject: [PATCH 15/17] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b0502b8..836c034 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # CrosshairMod v0.3 A Blackwake Mod that adds a crosshair -Simply copy and paste the *CrosshairMod.dll* and the *chSettings.sett* -files from the *bin/Release* directory into your Blackwake directory under */Blackwake_Data/Managed/Mods* +Simply copy and paste the *CrosshairMod.dll* files from the *bin/Release* directory into your Blackwake directory under */Blackwake_Data/Managed/Mods*. Requires BWModLoader v0.3 or newer to be installed. ## Customization With Version v0.3 you can now toggle the crosshair with *J*, and you can open a customization interface with *H*. This now lets you edit virtually every aspect of the current crosshair design, and even saves it to the settings so that your customization will still be there after restarting the game, From 5f2526f03b9a09d97e2061068dff29459b382a40 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Sat, 3 Aug 2019 15:27:18 +0200 Subject: [PATCH 16/17] Delete LICENSE --- LICENSE | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 LICENSE diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 26abfe3..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2019 Lauchmelder - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. From c71ba064cea2b76d71d046627350c21a9b7f74f7 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Sat, 3 Aug 2019 15:27:43 +0200 Subject: [PATCH 17/17] Update LICENSE --- LICENSE | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 674 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +.