Debug Menu
This commit is contained in:
parent
e7fab09265
commit
887d54783d
|
@ -1,4 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
@ -7,13 +8,58 @@ namespace ModLoader
|
||||||
public static class Loader
|
public static class Loader
|
||||||
{
|
{
|
||||||
public static GameObject modObjects;
|
public static GameObject modObjects;
|
||||||
public static FileInfo[] modFiles;
|
public static Dictionary<Component, FileInfo> loadedMods = new Dictionary<Component, FileInfo>();
|
||||||
|
|
||||||
public static void Log(string output)
|
public static void Log(string output)
|
||||||
{
|
{
|
||||||
Console.WriteLine("[BWML]" + output);
|
Console.WriteLine("[BWML]" + output);
|
||||||
//UnityEngine.Debug.Log("[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()
|
public static void Load()
|
||||||
{
|
{
|
||||||
Log("Starting mod loader...");
|
Log("Starting mod loader...");
|
||||||
|
@ -36,35 +82,16 @@ namespace ModLoader
|
||||||
Directory.CreateDirectory(assetsPath);
|
Directory.CreateDirectory(assetsPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
DirectoryInfo d = new DirectoryInfo(modsPath);
|
|
||||||
|
|
||||||
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.
|
||||||
modFiles = d.GetFiles("*.dll");
|
DirectoryInfo d = new DirectoryInfo(modsPath);
|
||||||
foreach (FileInfo file in modFiles)
|
FindMods(d);
|
||||||
|
foreach(Component mod in loadedMods.Keys)
|
||||||
{
|
{
|
||||||
try
|
Log(mod.name);
|
||||||
{
|
Log("Location: "+ loadedMods[mod].Name);
|
||||||
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("All Mods have been Loaded!");
|
Log("All Mods have been Loaded!");
|
||||||
modObjects.AddComponent<ModGUI.ModGUI>();
|
modObjects.AddComponent<ModGUI.ModGUI>();
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
using System;
|
using UnityEngine;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using UnityEngine;
|
|
||||||
namespace ModGUI
|
namespace ModGUI
|
||||||
{
|
{
|
||||||
public class ModGUI : MonoBehaviour
|
public class ModGUI : MonoBehaviour
|
||||||
|
@ -29,6 +26,7 @@ namespace ModGUI
|
||||||
{
|
{
|
||||||
debugEnabled = !debugEnabled;
|
debugEnabled = !debugEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnGUI()
|
void OnGUI()
|
||||||
|
@ -53,14 +51,22 @@ namespace ModGUI
|
||||||
LogWindow();
|
LogWindow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static void LogWindow()
|
|
||||||
|
void LogWindow()
|
||||||
{
|
{
|
||||||
GUI.Label(new Rect(0, 100, 100, 25), "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");
|
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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue