diff --git a/src/Loader.cs b/src/Loader.cs index e2d9412..6d81c4a 100644 --- a/src/Loader.cs +++ b/src/Loader.cs @@ -6,6 +6,9 @@ namespace ModLoader { public static class Loader { + public static GameObject modObjects; + public static FileInfo[] modFiles; + public static void Log(string output) { Console.WriteLine("[BWML]" + output); @@ -35,11 +38,12 @@ namespace ModLoader DirectoryInfo d = new DirectoryInfo(modsPath); - GameObject modObjects = new GameObject(); + modObjects = new GameObject(); //For each DLL in "Blackwake/Blackwake_Data/Managed/Mods/" //Open them, Get the mod class, then add it in the game. - foreach (var file in d.GetFiles("*.dll")) + modFiles = d.GetFiles("*.dll"); + foreach (FileInfo file in modFiles) { try { diff --git a/src/ModGUI.cs b/src/ModGUI.cs index 3c3fd32..ed34e9a 100644 --- a/src/ModGUI.cs +++ b/src/ModGUI.cs @@ -1,14 +1,79 @@ using System; +using System.Collections.Generic; using System.IO; using UnityEngine; namespace ModGUI { public class ModGUI : MonoBehaviour { + static bool debugEnabled; + static int currentScreen; + static Vector2 scrollPosition; + //static Dictionary test; + static Vector2 size; + static Vector2 position; + + void Start() + { + currentScreen = 0; + scrollPosition = Vector2.zero; + debugEnabled = false; + size = new Vector2(1000, 1000); + position = new Vector2((Screen.width / 2) - (size.x / 2), + (Screen.height / 2) - (size.x / 2)); + } + + void Update() + { + if (Input.GetKeyUp("insert")) + { + debugEnabled = !debugEnabled; + } + } + void OnGUI() { - GUI.color = Color.red; - GUI.Label(new Rect(5f, 0f, 200f, 20f), "ModLoader v0.3"); + if (debugEnabled) + { + GUI.ModalWindow(0, new Rect(position, size), DebugWindow, "[BWML]Debug Menu"); + } + } + + void DebugWindow(int windowID) + { + GUI.DragWindow(new Rect(0, 0, 10000, 20)); + currentScreen = GUI.SelectionGrid(new Rect(25, 25, size.x-50, 75), currentScreen, + new string[] { "Mods", "Logs"}, 2); + if(currentScreen == 0) + { + ModWindow(); + } + else + { + LogWindow(); + } + } + public static void LogWindow() + { + GUI.Label(new Rect(0, 100, 100, 25), "LogWindow"); + } + public static void ModWindow() + { + GUI.Label(new Rect(0, 100, 100, 25), "ModWindow"); + } } + /* + static class DebugWindows + { + public static void LogWindow() + { + GUI.Label(new Rect(0, 100, 100, 25), "LogWindow"); + } + public static void ModWindow() + { + GUI.Label(new Rect(0, 100, 100, 25), "ModWindow"); + scrollPosition = GUI.BeginScrollView(new Rect(10, 300, 100, 100), scrollPosition, new Rect(0, 0, 220, 200)); + } + }*/ } \ No newline at end of file