Merge branch 'HotkeySetting' into development
This commit is contained in:
commit
1e0092d8d4
|
@ -12,9 +12,14 @@ namespace CrosshairMod
|
||||||
* A button wrapper class that is used right now as I don't have access to
|
* 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,
|
* the games buttons. Since UnityEngine.GUI only has a function to draw Buttons,
|
||||||
* I made this class for easy handling.
|
* I made this class for easy handling.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
class GUIButton
|
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.
|
// Position / Dimension of the Button.
|
||||||
public Vector2 position = new Vector2(0, 0);
|
public Vector2 position = new Vector2(0, 0);
|
||||||
public Vector2 dimensions = new Vector2(0, 0);
|
public Vector2 dimensions = new Vector2(0, 0);
|
||||||
|
|
|
@ -52,8 +52,5 @@
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Settings.cs" />
|
<Compile Include="Settings.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<None Include="chSettings.sett" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
</Project>
|
</Project>
|
|
@ -13,6 +13,8 @@ namespace CrosshairMod
|
||||||
*
|
*
|
||||||
* Contains all Buttons, Sliders etc. that are able to modify the crosshair.
|
* 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
|
static class Interface
|
||||||
{
|
{
|
||||||
// Saves wether the interface is visible or not
|
// Saves wether the interface is visible or not
|
||||||
|
@ -66,7 +68,6 @@ namespace CrosshairMod
|
||||||
AddButton(3, 3, 3, 3, "", (object sender, EventArgs e) => { });
|
AddButton(3, 3, 3, 3, "", (object sender, EventArgs e) => { });
|
||||||
|
|
||||||
// Create Crosshair Visibilty Button
|
// 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,
|
int index = AddButton((uint)m_position.x + 20, (uint)m_position.y + 20, 200, 30,
|
||||||
"Hide Crosshair", (object sender, EventArgs e) => { Crosshair.Toggle(); });
|
"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"; };
|
m_buttons[index].OnClick += (object sender, EventArgs args) => { m_buttons[index].label = (Crosshair.Enabled()) ? "Show Crosshair" : "Hide Crosshair"; };
|
||||||
|
|
|
@ -31,14 +31,14 @@ namespace CrosshairMod
|
||||||
public static void LogWarning(string message)
|
public static void LogWarning(string message)
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
Logging.LogError(message);
|
Logging.LogWarning(message);
|
||||||
#endif // DEBUG
|
#endif // DEBUG
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void LogError(string message)
|
public static void LogError(string message)
|
||||||
{
|
{
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
Debug.Log(PREFIX + "Error: " + message);
|
Logging.LogError(PREFIX + "Error: " + message);
|
||||||
#endif // DEBUG
|
#endif // DEBUG
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ namespace CrosshairMod
|
||||||
// Logs errors
|
// Logs errors
|
||||||
public static void LogError(string message)
|
public static void LogError(string message)
|
||||||
{
|
{
|
||||||
Debug.Log(PREFIX + "Error: " + message);
|
UnityEngine.Debug.Log(PREFIX + "Error: " + message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,9 +25,8 @@ namespace CrosshairMod
|
||||||
public class Main : MonoBehaviour
|
public class Main : MonoBehaviour
|
||||||
{
|
{
|
||||||
// Define Hotkeys for Menu and Crosshair Toggle
|
// Define Hotkeys for Menu and Crosshair Toggle
|
||||||
// TODO: Make Hotkeys editable for the User
|
private char MENU_OPEN_KEY = 'H';
|
||||||
private const string MENU_OPEN_KEY = "H";
|
private char CH_TOGGLE_KEY = 'J';
|
||||||
private const string CH_TOGGLE_KEY = "J";
|
|
||||||
|
|
||||||
// This will be executed first
|
// This will be executed first
|
||||||
void Start()
|
void Start()
|
||||||
|
@ -38,19 +37,23 @@ namespace CrosshairMod
|
||||||
Crosshair.Create();
|
Crosshair.Create();
|
||||||
// Create Panel
|
// Create Panel
|
||||||
Interface.Init();
|
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)
|
// This gets called on every GUI Update (Can be multiple tiems per Frame)
|
||||||
void OnGUI()
|
void OnGUI()
|
||||||
{
|
{
|
||||||
// Check for Key presses
|
// 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
|
// Toggle Crosshair GUI
|
||||||
Interface.Toggle();
|
Interface.Toggle();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Event.current.Equals(Event.KeyboardEvent(CH_TOGGLE_KEY)))
|
if (Event.current.Equals(Event.KeyboardEvent(CH_TOGGLE_KEY.ToString())))
|
||||||
{
|
{
|
||||||
// Toggle Crosshair
|
// Toggle Crosshair
|
||||||
Crosshair.Toggle();
|
Crosshair.Toggle();
|
||||||
|
|
|
@ -21,15 +21,39 @@ namespace CrosshairMod
|
||||||
Logging.Debug.Log("Accessing Settings at " + filepath);
|
Logging.Debug.Log("Accessing Settings at " + filepath);
|
||||||
|
|
||||||
// Try to read file contents into string
|
// Try to read file contents into string
|
||||||
|
// If no file exists, create one
|
||||||
string settings = "";
|
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
|
try
|
||||||
{
|
{
|
||||||
settings = System.IO.File.ReadAllText(filepath);
|
settings = System.IO.File.ReadAllText(filepath);
|
||||||
}
|
}
|
||||||
|
// Something incredibly weird just happened
|
||||||
catch (Exception e)
|
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.Message);
|
||||||
|
Logging.LogError(e.StackTrace);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +72,7 @@ namespace CrosshairMod
|
||||||
m_settings.Add(vals[0], Int32.Parse(vals[1])); // Store key and value in settings dictionary
|
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
|
// Converts the dictionary to a sett file
|
||||||
|
@ -80,7 +104,7 @@ namespace CrosshairMod
|
||||||
{
|
{
|
||||||
if (!addIfDoesntExist)
|
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;
|
return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -105,7 +129,7 @@ namespace CrosshairMod
|
||||||
{
|
{
|
||||||
if (!addIfDoesntExist)
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
crosshairLength=15
|
|
||||||
crosshairThickness=3
|
|
||||||
crosshairColorRed=255
|
|
||||||
crosshairColorGreen=94
|
|
||||||
crosshairColorBlue=244
|
|
||||||
crosshairColorAlpha=100
|
|
Loading…
Reference in a new issue