Debug Menu

This commit is contained in:
Da_google 2019-08-02 05:05:26 -07:00
parent e7fab09265
commit 887d54783d
2 changed files with 65 additions and 32 deletions

View file

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using UnityEngine;
@ -7,13 +8,58 @@ namespace ModLoader
public static class Loader
{
public static GameObject modObjects;
public static FileInfo[] modFiles;
public static Dictionary<Component, FileInfo> loadedMods = new Dictionary<Component, FileInfo>();
public static void Log(string output)
{
Console.WriteLine("[BWML]" + output);
//UnityEngine.Debug.Log("[BWML]" + output);
}
static void FindMods(DirectoryInfo path)
{
FileInfo[] files = path.GetFiles("*.dll");
foreach (FileInfo file in files)
{
try
{
Assembly modDll = Assembly.LoadFrom(path.FullName + "/" + file.Name);
Type[] modType = modDll.GetTypes();
foreach (Type t in modType)
{
Log("Found type in " + file.Name + ": " + t.Name);
if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour)))
{
loadedMods.Add(modObjects.AddComponent(t), file);
Log("Loaded " + t.Name + " from file: " + file.Name);
//CleanMods();
}
}
}
catch (Exception e)
{
Log("Exception raised while loading mod " + file.Name);
Log(e.Message);
Log("Skipped loading this mod");
}
}
}
public static void RemoveMod(Component mod)
{
UnityEngine.Object.Destroy(mod);
loadedMods.Remove(mod);
}
static void CleanMods()
{
foreach(KeyValuePair<Component, FileInfo> mod in loadedMods)
{
if (modObjects.GetComponent(mod.Key.GetType()) == null)
{
loadedMods.Remove(mod.Key);
}
}
}
public static void Load()
{
Log("Starting mod loader...");
@ -36,35 +82,16 @@ namespace ModLoader
Directory.CreateDirectory(assetsPath);
}
DirectoryInfo d = new DirectoryInfo(modsPath);
modObjects = new GameObject();
//For each DLL in "Blackwake/Blackwake_Data/Managed/Mods/"
//Open them, Get the mod class, then add it in the game.
modFiles = d.GetFiles("*.dll");
foreach (FileInfo file in modFiles)
DirectoryInfo d = new DirectoryInfo(modsPath);
FindMods(d);
foreach(Component mod in loadedMods.Keys)
{
try
{
Assembly modDll = Assembly.LoadFrom(modsPath + "/" + file.Name);
Type[] modType = modDll.GetTypes();
foreach (Type t in modType)
{
Log("Found type in " + file.Name + ": " + t.Name);
if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour)))
{
modObjects.AddComponent(t);
Log("Loaded '" + t.Name + "' in " + file.Name);
}
}
}
catch (Exception e)
{
Log("Exception raised while loading mod " + file.Name);
Log(e.Message);
Log("Skipped loading this mod");
}
Log(mod.name);
Log("Location: "+ loadedMods[mod].Name);
}
Log("All Mods have been Loaded!");
modObjects.AddComponent<ModGUI.ModGUI>();

View file

@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.IO;
using UnityEngine;
using UnityEngine;
namespace ModGUI
{
public class ModGUI : MonoBehaviour
@ -29,6 +26,7 @@ namespace ModGUI
{
debugEnabled = !debugEnabled;
}
}
void OnGUI()
@ -53,14 +51,22 @@ namespace ModGUI
LogWindow();
}
}
public static void LogWindow()
void LogWindow()
{
GUI.Label(new Rect(0, 100, 100, 25), "LogWindow");
}
public static void ModWindow()
void ModWindow()
{
GUI.Label(new Rect(0, 100, 100, 25), "ModWindow");
scrollPosition = GUI.BeginScrollView(new Rect(0, 100, size.x, size.y-100), scrollPosition, new Rect(0, 0, size.x, 50));
int modNum = 0;
foreach (Component mod in ModLoader.Loader.modObjects.GetComponents(typeof(Component)))
{
GUI.Label(new Rect(0, modNum * 25, 100, 25), mod.name);
modNum++;
}
GUI.EndScrollView();
}
}
/*