Просмотр исходного кода

Add console launching to config

Bepis 7 лет назад
Родитель
Сommit
374b398056
2 измененных файлов с 15 добавлено и 2 удалено
  1. 11 1
      BepInEx/Chainloader.cs
  2. 4 1
      BepInEx/Logger.cs

+ 11 - 1
BepInEx/Chainloader.cs

@@ -2,6 +2,7 @@
 using System;
 using System.Collections.Generic;
 using System.IO;
+using System.Linq;
 using System.Reflection;
 using UnityEngine;
 
@@ -33,8 +34,18 @@ namespace BepInEx
             if (loaded)
                 return;
 
+            if (bool.Parse(Config.GetEntry("console", "false")))
+            {
+                UnityInjector.ConsoleUtil.ConsoleWindow.Attach();
+
+                if (bool.Parse(Config.GetEntry("console-shiftjis", "false")))
+                    UnityInjector.ConsoleUtil.ConsoleEncoding.ConsoleCodePage = 932;
+            }
+
             try
             {
+                BepInLogger.Log($"Chainloader started");
+
                 UnityEngine.Object.DontDestroyOnLoad(ManagerObject);
 
                 if (Directory.Exists(Utility.PluginsDirectory))
@@ -61,7 +72,6 @@ namespace BepInEx
             catch (Exception ex)
             {
                 UnityInjector.ConsoleUtil.ConsoleWindow.Attach();
-                //UnityInjector.ConsoleUtil.ConsoleEncoding.ConsoleCodePage = 932;
 
                 Console.WriteLine("Error occurred starting the game");
                 Console.WriteLine(ex.ToString());

+ 4 - 1
BepInEx/Logger.cs

@@ -1,4 +1,5 @@
-using System.Runtime.CompilerServices;
+using System;
+using System.Runtime.CompilerServices;
 
 namespace BepInEx
 {
@@ -28,6 +29,8 @@ namespace BepInEx
         {
             UnityEngine.UnityLogWriter.WriteStringToUnityLog($"BEPIN - {entry}\r\n");
 
+            Console.WriteLine(entry);
+
             EntryLogged?.Invoke(entry, show);
         }
     }