BWModLoader/src/Loader.cs

43 lines
1.2 KiB
C#
Raw Normal View History

2019-08-01 20:55:48 +00:00
using System;
2019-08-02 12:05:26 +00:00
using System.Collections.Generic;
2019-08-01 20:55:48 +00:00
using System.IO;
using System.Reflection;
using UnityEngine;
namespace ModLoader
{
public static class Loader
{
public static void Load()
{
Utils.Log("Starting mod loader...");
Utils.DebugLog("Mods dir: "+Utils.modsPath);
2019-08-01 20:55:48 +00:00
if (!Directory.Exists(Utils.modsPath))
2019-08-01 20:55:48 +00:00
{
Directory.CreateDirectory(Utils.modsPath);
2019-08-01 20:55:48 +00:00
}
if (!Directory.Exists(Utils.assetsPath))
2019-08-01 20:55:48 +00:00
{
Directory.CreateDirectory(Utils.assetsPath);
2019-08-01 20:55:48 +00:00
}
Utils.modObjects = new GameObject();
2019-08-01 20:55:48 +00:00
//For each DLL in "Blackwake/Blackwake_Data/Managed/Mods/"
//Open them, Get the mod class, then add it in the game.
Utils.RefreshModFiles();
foreach(FileInfo file in Utils.allMods.Keys)
2019-08-01 20:55:48 +00:00
{
Utils.Load(file);
2019-08-01 20:55:48 +00:00
}
Utils.Log("All Mods have been Loaded!");
Utils.modObjects.AddComponent<ModGUI.ModGUI>();
Utils.Log("GUI has been loaded");
2019-08-01 20:55:48 +00:00
//Keep mods active
UnityEngine.Object.DontDestroyOnLoad(Utils.modObjects);
2019-08-01 20:55:48 +00:00
}
}
}