Added GUISlider
This commit is contained in:
parent
8fabec8be7
commit
831f54c611
|
@ -2,7 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,10 @@
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>CrosshairMod</RootNamespace>
|
<RootNamespace>CrosshairMod</RootNamespace>
|
||||||
<AssemblyName>CrosshairMod</AssemblyName>
|
<AssemblyName>CrosshairMod</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<Deterministic>true</Deterministic>
|
<Deterministic>true</Deterministic>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
@ -48,6 +49,7 @@
|
||||||
<Compile Include="Crosshair.cs" />
|
<Compile Include="Crosshair.cs" />
|
||||||
<Compile Include="Interface.cs" />
|
<Compile Include="Interface.cs" />
|
||||||
<Compile Include="Interface\InputObject.cs" />
|
<Compile Include="Interface\InputObject.cs" />
|
||||||
|
<Compile Include="Interface\Slider.cs" />
|
||||||
<Compile Include="Logging.cs" />
|
<Compile Include="Logging.cs" />
|
||||||
<Compile Include="Main.cs" />
|
<Compile Include="Main.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ namespace CrosshairMod
|
||||||
private static bool m_visible = false;
|
private static bool m_visible = false;
|
||||||
|
|
||||||
// Stores all Buttons used in the interface.
|
// Stores all Buttons used in the interface.
|
||||||
private static List<GUIButton> m_buttons = new List<GUIButton>();
|
private static List<InputObject> m_inputs = new List<InputObject>();
|
||||||
|
|
||||||
// Values of the RGBA Sliders
|
// Values of the RGBA Sliders
|
||||||
private static int rSliderValue, gSliderValue, bSliderValue, aSliderValue;
|
private static int rSliderValue, gSliderValue, bSliderValue, aSliderValue;
|
||||||
|
@ -35,13 +35,19 @@ namespace CrosshairMod
|
||||||
private static Vector2 m_dimension;
|
private static Vector2 m_dimension;
|
||||||
|
|
||||||
|
|
||||||
// Creates a new button object and adds it to the ButtonList
|
// Creates a new button object and adds it to the List
|
||||||
// Returns the index of the button
|
private static void AddButton(float x, float y, float width, float height, string label, string ID, params EventHandler[] onClickEvent)
|
||||||
private static int AddButton(uint x, uint y, uint width, uint height, string label, params EventHandler[] onClickEvent)
|
|
||||||
{
|
{
|
||||||
GUIButton buttonObj = new GUIButton(label, onClickEvent);
|
GUIButton buttonObj = new GUIButton(x, y, width, height, label, ID, onClickEvent);
|
||||||
m_buttons.Add(buttonObj);
|
m_inputs.Add(buttonObj);
|
||||||
return m_buttons.Count - 1;
|
}
|
||||||
|
|
||||||
|
// 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
|
// Initializes all Buttons, gives them their function etc
|
||||||
|
@ -60,30 +66,33 @@ namespace CrosshairMod
|
||||||
// Apply Texture to Style
|
// Apply Texture to Style
|
||||||
m_style.normal.background = m_background;
|
m_style.normal.background = m_background;
|
||||||
|
|
||||||
AddButton(3, 3, 3, 3, "", (object sender, EventArgs e) => { });
|
|
||||||
|
|
||||||
// Create Crosshair Visibilty Button
|
// Create Crosshair Visibilty Button
|
||||||
int index = AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30,
|
AddButton(m_position.x + 20, m_position.y + 20, 200, 30,
|
||||||
"Hide Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); });
|
(Crosshair.Enabled() ? "Hide Crosshair" : "Show Crosshair"), "Toggle", (object sender, EventArgs e) => { Crosshair.Toggle(); },
|
||||||
m_buttons[index].OnClick += (object sender, EventArgs args) => { m_buttons[index].label = (Crosshair.Enabled()) ? "Show Crosshair" : "Hide Crosshair"; };
|
(object sender, EventArgs e) => { GUIButton btn = (GUIButton)sender; btn.label = (Crosshair.Enabled() ? "Hide Crosshair" : "Show Crosshair"); });
|
||||||
|
|
||||||
// Create Crosshair Size +/- Buttons
|
// Create Crosshair Size +/- Buttons
|
||||||
AddButton((uint)m_position.x + 20, (uint)m_position.y + 60, 30, 30,
|
AddButton(m_position.x + 20, m_position.y + 60, 30, 30,
|
||||||
"-", (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); });
|
"-", "sizedown", (object sender, EventArgs e) => { Crosshair.ChangeSize(-1); });
|
||||||
AddButton((uint)m_position.x + 190, (uint)m_position.y + 60, 30, 30,
|
AddButton(m_position.x + 190, m_position.y + 60, 30, 30,
|
||||||
"+", (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); });
|
"+", "sizeup", (object sender, EventArgs e) => { Crosshair.ChangeSize(+1); });
|
||||||
|
|
||||||
// Create Crosshair Thickness +/- Buttons
|
// Create Crosshair Thickness +/- Buttons
|
||||||
AddButton((uint)m_position.x + 20, (uint)m_position.y + 100, 30, 30,
|
AddButton(m_position.x + 20, m_position.y + 100, 30, 30,
|
||||||
"-", (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); });
|
"-", "thickdown", (object sender, EventArgs e) => { Crosshair.ChangeThickness(-1); });
|
||||||
AddButton((uint)m_position.x + 190, (uint)m_position.y + 100, 30, 30,
|
AddButton(m_position.x + 190, m_position.y + 100, 30, 30,
|
||||||
"+", (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); });
|
"+", "thickup", (object sender, EventArgs e) => { Crosshair.ChangeThickness(+1); });
|
||||||
|
|
||||||
// Assign setting values to sliders
|
|
||||||
rSliderValue = Settings.GetValue("crosshairColorRed");
|
rSliderValue = Settings.GetValue("crosshairColorRed");
|
||||||
gSliderValue = Settings.GetValue("crosshairColorGreen");
|
gSliderValue = Settings.GetValue("crosshairColorGreen");
|
||||||
bSliderValue = Settings.GetValue("crosshairColorBlue");
|
bSliderValue = Settings.GetValue("crosshairColorBlue");
|
||||||
aSliderValue = Settings.GetValue("crosshairColorAlpha");
|
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
|
// Displays / Hides the menu
|
||||||
|
@ -107,18 +116,17 @@ namespace CrosshairMod
|
||||||
// Draw the RGBA Labels and Sliders
|
// Draw the RGBA Labels and Sliders
|
||||||
// TODO: Find better way to handle Sliders. Maybe make some InputInterface class that handles Buttons/Sliders etc
|
// 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 + 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);
|
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);
|
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);
|
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
|
// Set crosshair Colour after getting slider values
|
||||||
|
IEnumerable<GUISlider> it = m_inputs.OfType<GUISlider>();
|
||||||
|
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
|
// 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
|
// Calls the Update function on all Buttons to check if they were pressed, and execute their Action
|
||||||
private static void HandleButtons()
|
private static void HandleButtons()
|
||||||
{
|
{
|
||||||
foreach(GUIButton button in m_buttons)
|
foreach(InputObject obj in m_inputs)
|
||||||
{
|
{
|
||||||
button.Update();
|
obj.Update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
@ -27,7 +27,8 @@ namespace CrosshairMod
|
||||||
public string label { get; set; } = "";
|
public string label { get; set; } = "";
|
||||||
|
|
||||||
// Initialize Button
|
// 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");
|
Logging.Debug.Log("Button Constructor");
|
||||||
|
|
||||||
|
@ -39,7 +40,8 @@ namespace CrosshairMod
|
||||||
OnClick += e;
|
OnClick += e;
|
||||||
}
|
}
|
||||||
|
|
||||||
public GUIButton()
|
public GUIButton(string ID)
|
||||||
|
: base(0, 0, 0, 0, ID)
|
||||||
{
|
{
|
||||||
// Empty
|
// Empty
|
||||||
}
|
}
|
||||||
|
@ -48,7 +50,8 @@ namespace CrosshairMod
|
||||||
public override float Update()
|
public override float Update()
|
||||||
{
|
{
|
||||||
// Get if the Button was pressed and invoke OnClick event accordingly
|
// 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);
|
OnClick?.Invoke(this, EventArgs.Empty);
|
||||||
|
|
||||||
return (buttonPressed ? 1.0f : 0.0f);
|
return (buttonPressed ? 1.0f : 0.0f);
|
||||||
|
|
|
@ -2,14 +2,35 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace CrosshairMod
|
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
|
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();
|
public abstract float Update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
40
CrosshairMod/Interface/Slider.cs
Normal file
40
CrosshairMod/Interface/Slider.cs
Normal file
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace CrosshairMod
|
namespace CrosshairMod
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace CrosshairMod
|
namespace CrosshairMod
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue