Added Button, doesn't work with BWML
This commit is contained in:
parent
258164e888
commit
74d122a9a6
36
CrosshairMod/Button.cs
Normal file
36
CrosshairMod/Button.cs
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace CrosshairMod
|
||||||
|
{
|
||||||
|
// Button Wrapper class, utilizing GUI.Button()
|
||||||
|
public class Button
|
||||||
|
{
|
||||||
|
public Vector2 position = new Vector2(0, 0);
|
||||||
|
public Vector2 dimensions = new Vector2(0, 0);
|
||||||
|
public string label = "";
|
||||||
|
public Action OnClick = new Action(() => { });
|
||||||
|
|
||||||
|
public Button(uint x, uint y, uint width, uint height, string label, Action e)
|
||||||
|
{
|
||||||
|
this.position = new Vector2(x, y);
|
||||||
|
this.dimensions = new Vector2(width, height);
|
||||||
|
this.label = label;
|
||||||
|
this.OnClick = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Button() { /*Empty*/ }
|
||||||
|
|
||||||
|
public void Update()
|
||||||
|
{
|
||||||
|
bool buttonClicked = GUI.Button(new Rect(position, dimensions), label);
|
||||||
|
if (buttonClicked)
|
||||||
|
OnClick();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -44,6 +44,8 @@
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="Button.cs" />
|
||||||
|
<Compile Include="Logging.cs" />
|
||||||
<Compile Include="Main.cs" />
|
<Compile Include="Main.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
33
CrosshairMod/Logging.cs
Normal file
33
CrosshairMod/Logging.cs
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace CrosshairMod
|
||||||
|
{
|
||||||
|
// CrosshairMod's Logging class
|
||||||
|
// Simply writes messages to the Unity Debug output
|
||||||
|
// However, I prefer this over Debug.Log() since it doesn't include a stacktrace (Except for Errors)
|
||||||
|
public static class Logging
|
||||||
|
{
|
||||||
|
public const string PREFIX = "[CROSSHAIRMOD]";
|
||||||
|
|
||||||
|
public static void Log(string message)
|
||||||
|
{
|
||||||
|
Console.WriteLine(PREFIX + "Info: " + message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void LogWarning(string message)
|
||||||
|
{
|
||||||
|
Console.WriteLine(PREFIX + "Warning: " + message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void LogError(string message)
|
||||||
|
{
|
||||||
|
Debug.Log(PREFIX + "Error: " + message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -13,17 +13,10 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Mod
|
namespace CrosshairMod
|
||||||
{
|
{
|
||||||
public class Main : MonoBehaviour
|
public class Main : MonoBehaviour
|
||||||
{
|
{
|
||||||
// Logs a message made by this mod
|
|
||||||
// [CROSSHAIRMOD]Message
|
|
||||||
private void Log(string message)
|
|
||||||
{
|
|
||||||
System.Console.WriteLine("[CROSSHAIRMOD]" + message);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Initialize Settings dictionary
|
// Initialize Settings dictionary
|
||||||
private Dictionary<string, int> m_settings = new Dictionary<string, int>();
|
private Dictionary<string, int> m_settings = new Dictionary<string, int>();
|
||||||
|
|
||||||
|
@ -37,7 +30,7 @@ namespace Mod
|
||||||
// Reads settings file and sets all variables
|
// Reads settings file and sets all variables
|
||||||
private bool readSettings(string filepath, ref Dictionary<string, int> sett_dict)
|
private bool readSettings(string filepath, ref Dictionary<string, int> sett_dict)
|
||||||
{
|
{
|
||||||
Log("Accessing Settings at " + filepath);
|
Logging.Log("Accessing Settings at " + filepath);
|
||||||
|
|
||||||
// Try to read file contents into string
|
// Try to read file contents into string
|
||||||
string settings = "";
|
string settings = "";
|
||||||
|
@ -47,7 +40,7 @@ namespace Mod
|
||||||
} catch(Exception e)
|
} catch(Exception e)
|
||||||
{
|
{
|
||||||
// Log error and return invalid state
|
// Log error and return invalid state
|
||||||
Log(e.Message);
|
Logging.LogError(e.Message);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +59,7 @@ namespace Mod
|
||||||
sett_dict.Add(vals[0], Int32.Parse(vals[1])); // Store key and value in settings dictionary
|
sett_dict.Add(vals[0], Int32.Parse(vals[1])); // Store key and value in settings dictionary
|
||||||
}
|
}
|
||||||
|
|
||||||
Log("Successfully loaded settings!");
|
Logging.Log("Successfully loaded settings!");
|
||||||
|
|
||||||
return true; // Return valid state
|
return true; // Return valid state
|
||||||
}
|
}
|
||||||
|
@ -81,37 +74,37 @@ namespace Mod
|
||||||
// return an invalid state
|
// return an invalid state
|
||||||
if (!m_settings.TryGetValue("crosshairLength", out m_crosshairLength))
|
if (!m_settings.TryGetValue("crosshairLength", out m_crosshairLength))
|
||||||
{
|
{
|
||||||
Log("Missing Setting: crosshairLength");
|
Logging.LogError("Missing Setting: crosshairLength");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_settings.TryGetValue("crosshairThickness", out m_crosshairThickness))
|
if (!m_settings.TryGetValue("crosshairThickness", out m_crosshairThickness))
|
||||||
{
|
{
|
||||||
Log("Missing Setting: crosshairThickness");
|
Logging.LogError("Missing Setting: crosshairThickness");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_settings.TryGetValue("crosshairColorRed", out m_crosshairColorRed))
|
if (!m_settings.TryGetValue("crosshairColorRed", out m_crosshairColorRed))
|
||||||
{
|
{
|
||||||
Log("Missing Setting: crosshairColorRed");
|
Logging.LogError("Missing Setting: crosshairColorRed");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_settings.TryGetValue("crosshairColorGreen", out m_crosshairColorGreen))
|
if (!m_settings.TryGetValue("crosshairColorGreen", out m_crosshairColorGreen))
|
||||||
{
|
{
|
||||||
Log("Missing Setting: crosshairColorGreen");
|
Logging.LogError("Missing Setting: crosshairColorGreen");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_settings.TryGetValue("crosshairColorBlue", out m_crosshairColorBlue))
|
if (!m_settings.TryGetValue("crosshairColorBlue", out m_crosshairColorBlue))
|
||||||
{
|
{
|
||||||
Log("Missing Setting: crosshairColorBlue");
|
Logging.LogError("Missing Setting: crosshairColorBlue");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!m_settings.TryGetValue("crosshairColorAlpha", out m_crosshairColorAlpha))
|
if (!m_settings.TryGetValue("crosshairColorAlpha", out m_crosshairColorAlpha))
|
||||||
{
|
{
|
||||||
Log("Missing Setting: crosshairColorAlpha");
|
Logging.LogError("Missing Setting: crosshairColorAlpha");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -167,10 +160,15 @@ namespace Mod
|
||||||
// Read settings, if this fails, the state will be invalid
|
// Read settings, if this fails, the state will be invalid
|
||||||
m_validState = readSettings(".\\Blackwake_Data\\Managed\\Mods\\chSettings.sett", ref m_settings);
|
m_validState = readSettings(".\\Blackwake_Data\\Managed\\Mods\\chSettings.sett", ref m_settings);
|
||||||
foreach (KeyValuePair<string, int> setting in m_settings)
|
foreach (KeyValuePair<string, int> setting in m_settings)
|
||||||
Log(setting.Key + ": " + setting.Value);
|
Logging.Log(setting.Key + ": " + setting.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Button testBtn = new Button(500, 500, 300, 200, "Test Button", () => { Logging.Log("Test Button pressed"); });
|
||||||
|
|
||||||
void OnGUI()
|
void OnGUI()
|
||||||
{
|
{
|
||||||
|
testBtn.Update();
|
||||||
|
|
||||||
// If the mod is in an invalid state, the OnGUI function won't execute
|
// If the mod is in an invalid state, the OnGUI function won't execute
|
||||||
if (m_validState)
|
if (m_validState)
|
||||||
{
|
{
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue