Added Debug Menu

This commit is contained in:
Da_google 2019-08-01 20:10:03 -07:00
parent 452afce3b0
commit e7fab09265
2 changed files with 73 additions and 4 deletions

View file

@ -6,6 +6,9 @@ namespace ModLoader
{ {
public static class Loader public static class Loader
{ {
public static GameObject modObjects;
public static FileInfo[] modFiles;
public static void Log(string output) public static void Log(string output)
{ {
Console.WriteLine("[BWML]" + output); Console.WriteLine("[BWML]" + output);
@ -35,11 +38,12 @@ namespace ModLoader
DirectoryInfo d = new DirectoryInfo(modsPath); DirectoryInfo d = new DirectoryInfo(modsPath);
GameObject modObjects = new GameObject(); modObjects = new GameObject();
//For each DLL in "Blackwake/Blackwake_Data/Managed/Mods/" //For each DLL in "Blackwake/Blackwake_Data/Managed/Mods/"
//Open them, Get the mod class, then add it in the game. //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 try
{ {

View file

@ -1,14 +1,79 @@
using System; using System;
using System.Collections.Generic;
using System.IO; using System.IO;
using UnityEngine; using UnityEngine;
namespace ModGUI namespace ModGUI
{ {
public class ModGUI : MonoBehaviour public class ModGUI : MonoBehaviour
{ {
static bool debugEnabled;
static int currentScreen;
static Vector2 scrollPosition;
//static Dictionary<string, string> 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() void OnGUI()
{ {
GUI.color = Color.red; if (debugEnabled)
GUI.Label(new Rect(5f, 0f, 200f, 20f), "ModLoader v0.3"); {
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));
}
}*/
} }