-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathWorldBoxMod.cs
332 lines (295 loc) · 12.6 KB
/
WorldBoxMod.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
using System.Reflection;
using HarmonyLib;
using NeoModLoader.api;
using NeoModLoader.constants;
using NeoModLoader.General;
using NeoModLoader.General.Event;
using NeoModLoader.General.UI.Tab;
using NeoModLoader.ncms_compatible_layer;
using NeoModLoader.services;
using NeoModLoader.ui;
using NeoModLoader.utils;
using UnityEngine;
namespace NeoModLoader;
/// <summary>
/// Main class
/// </summary>
public class WorldBoxMod : MonoBehaviour
{
/// <summary>
/// All successfully loaded mods.
/// </summary>
public static List<IMod> LoadedMods = new();
internal static Dictionary<ModDeclare, ModState> AllRecognizedMods = new();
internal static Transform Transform;
internal static Transform InactiveTransform;
internal static Assembly NeoModLoaderAssembly = Assembly.GetExecutingAssembly();
private bool initialized = false;
private bool initialized_successfully = false;
private void Start()
{
Others.unity_player_enabled = true;
Transform = transform;
InactiveTransform = new GameObject("Inactive").transform;
InactiveTransform.SetParent(Transform);
InactiveTransform.gameObject.SetActive(false);
LogService.Init();
fileSystemInitialize();
LogService.LogInfo($"NeoModLoader Version: {InternalResourcesGetter.GetCommit()}");
}
private void Update()
{
if (!Config.game_loaded) return;
if (initialized_successfully)
{
TabManager._checkNewTabs();
}
if (initialized)
{
return;
}
initialized = true;
ModUploadAuthenticationService.AutoAuth();
HarmonyUtils._init();
Harmony.CreateAndPatchAll(typeof(LM), Others.harmony_id);
Harmony.CreateAndPatchAll(typeof(ResourcesPatch), Others.harmony_id);
Harmony.CreateAndPatchAll(typeof(CustomAudioManager), Others.harmony_id);
if (!SmoothLoader.isLoading()) SmoothLoader.prepare();
SmoothLoader.add(() =>
{
ResourcesPatch.Initialize();
LoadLocales();
LM.ApplyLocale();
TabManager._init();
WindowCreator.init();
ListenerManager._init();
WrappedPowersTab._init();
NCMSCompatibleLayer.PreInit();
ModInfoUtils.InitializeModCompileCache();
}, "Initialize NeoModLoader");
List<ModDependencyNode> mod_nodes = new();
SmoothLoader.add(() =>
{
ModCompileLoadService.loadInfoOfBepInExPlugins();
var mods = ModInfoUtils.findAndPrepareMods();
mod_nodes.AddRange(ModDepenSolveService.SolveModDependencies(mods));
ModCompileLoadService.prepareCompile(mod_nodes);
}, "Load Mods Info And Prepare Mods");
SmoothLoader.add(() =>
{
var mods_to_load = new List<ModDeclare>();
foreach (var mod in mod_nodes)
{
SmoothLoader.add(() =>
{
if (ModCompileLoadService.compileMod(mod))
{
mods_to_load.Add(mod.mod_decl);
}
else
{
LogService.LogError($"Failed to compile mod {mod.mod_decl.Name}");
}
}, "Compile Mod " + mod.mod_decl.Name);
}
foreach (var mod in mod_nodes)
{
SmoothLoader.add(() =>
{
if (mods_to_load.Contains(mod.mod_decl))
{
ResourcesPatch.LoadResourceFromFolder(Path.Combine(mod.mod_decl.FolderPath,
Paths.ModResourceFolderName));
ResourcesPatch.LoadResourceFromFolder(Path.Combine(mod.mod_decl.FolderPath,
Paths.NCMSAdditionModResourceFolderName));
ResourcesPatch.LoadAssetBundlesFromFolder(Path.Combine(mod.mod_decl.FolderPath,
Paths.ModAssetBundleFolderName));
}
}, "Load Resources From Mod " + mod.mod_decl.Name);
}
SmoothLoader.add(() =>
{
ModCompileLoadService.loadMods(mods_to_load);
ModInfoUtils.SaveModRecords();
NCMSCompatibleLayer.Init();
var successfulInit = new Dictionary<IMod, bool>();
foreach (IMod mod in LoadedMods.Where(mod => mod is IStagedLoad))
{
SmoothLoader.add(() =>
{
successfulInit.Add(mod, ModCompileLoadService.TryInitMod(mod));
}, "Init Mod " + mod.GetDeclaration().Name);
}
foreach (IMod mod in LoadedMods.Where(mod => mod is IStagedLoad))
{
SmoothLoader.add(() =>
{
if (successfulInit.ContainsKey(mod) && successfulInit[mod])
{
ModCompileLoadService.PostInitMod(mod);
}
}, "Post-Init Mod " + mod.GetDeclaration().Name);
}
}, "Load Mods");
SmoothLoader.add(ResourcesPatch.PatchSomeResources, "Patch part of Resources into game");
SmoothLoader.add(() =>
{
ModWorkshopService.Init();
UIManager.init();
ModInfoUtils.DealWithBepInExModLinkRequests();
LM.ApplyLocale();
initialized_successfully = true;
}, "NeoModLoader Post Initialize");
SmoothLoader.add(ExternalModInstallService.CheckExternalModInstall, "Check External Mods to Install");
}, "Compile Mods And Load resources");
}
private void LoadLocales()
{
string[] resources = NeoModLoaderAssembly.GetManifestResourceNames();
string locale_path = "NeoModLoader.resources.locales.";
foreach (string resource_path in resources)
{
if (!resource_path.StartsWith(locale_path)) continue;
LM.LoadLocale(resource_path.Replace(locale_path, "").Replace(".json", ""),
NeoModLoaderAssembly.GetManifestResourceStream(resource_path));
}
}
private void fileSystemInitialize()
{
if (!Directory.Exists(Paths.ModsPath))
{
Directory.CreateDirectory(Paths.ModsPath);
LogService.LogInfo($"Create Mods folder at {Paths.ModsPath}");
}
if (!Directory.Exists(Paths.CompiledModsPath))
{
Directory.CreateDirectory(Paths.CompiledModsPath);
LogService.LogInfo($"Create CompiledMods folder at {Paths.CompiledModsPath}");
}
if (!Directory.Exists(Paths.ModsConfigPath))
{
Directory.CreateDirectory(Paths.ModsConfigPath);
LogService.LogInfo($"Create mods_config folder at {Paths.ModsConfigPath}");
}
if (!File.Exists(Paths.ModCompileRecordPath))
{
File.Create(Paths.ModCompileRecordPath).Close();
LogService.LogInfo($"Create mod_compile_records.json at {Paths.ModCompileRecordPath}");
}
void extractAssemblies()
{
var resources = NeoModLoaderAssembly.GetManifestResourceNames();
foreach (var resource in resources)
{
if (resource.EndsWith(".dll"))
{
if (resource.Contains("Assembly-CSharp-Publicized")) continue;
if (resource.Contains("AutoUpdate")) continue;
var file_name = resource.Replace("NeoModLoader.resources.assemblies.", "");
var file_path = Path.Combine(Paths.NMLAssembliesPath, file_name).Replace("-renamed", "");
using var stream = NeoModLoaderAssembly.GetManifestResourceStream(resource);
using var file = new FileStream(file_path, FileMode.Create, FileAccess.Write);
stream.CopyTo(file);
// LogService.LogInfo($"Extract {file_name} to {file_path}");
}
}
}
if (!Directory.Exists(Paths.NMLAssembliesPath))
{
Directory.CreateDirectory(Paths.NMLAssembliesPath);
LogService.LogInfo($"Create NMLAssemblies folder at {Paths.NMLAssembliesPath}");
extractAssemblies();
}
else
{
var modupdate_time = new FileInfo(Paths.NMLModPath).LastWriteTime;
var assemblyupdate_time = new DirectoryInfo(Paths.NMLAssembliesPath).CreationTime;
if (modupdate_time > assemblyupdate_time)
{
LogService.LogInfo($"NeoModLoader.dll is newer than assemblies in NMLAssemblies folder, " +
$"re-extract assemblies from NeoModLoader.dll");
Debug.Log(Paths.NMLAssembliesPath);
Directory.Delete(Paths.NMLAssembliesPath, true);
Directory.CreateDirectory(Paths.NMLAssembliesPath);
LogService.LogInfo($"Create new NMLAssemblies folder at {Paths.NMLAssembliesPath}");
extractAssemblies();
}
}
try
{
using var stream =
NeoModLoaderAssembly.GetManifestResourceStream(
"NeoModLoader.resources.assemblies.Assembly-CSharp-Publicized.dll");
if (File.Exists(Paths.PublicizedAssemblyPath))
{
var modupdate_time = new FileInfo(Paths.NMLModPath).LastWriteTime;
var assemblyupdate_time = new FileInfo(Paths.PublicizedAssemblyPath).CreationTime;
if (modupdate_time > assemblyupdate_time)
{
LogService.LogInfo($"NeoModLoader.dll is newer than Assembly-CSharp-Publicized.dll, " +
$"re-extract Assembly-CSharp-Publicized.dll from NeoModLoader.dll");
File.Delete(Paths.PublicizedAssemblyPath);
using var file = new FileStream(Paths.PublicizedAssemblyPath, FileMode.Create, FileAccess.Write);
stream.CopyTo(file);
}
}
else
{
using var file = new FileStream(Paths.PublicizedAssemblyPath, FileMode.CreateNew, FileAccess.Write);
stream.CopyTo(file);
}
}
catch (UnauthorizedAccessException) // If the file is hidden, delete it and try again
{
File.Delete(Paths.PublicizedAssemblyPath);
using var stream =
NeoModLoaderAssembly.GetManifestResourceStream(
"NeoModLoader.resources.assemblies.Assembly-CSharp-Publicized.dll");
using var file = new FileStream(Paths.PublicizedAssemblyPath, FileMode.CreateNew, FileAccess.Write);
stream.CopyTo(file);
}
foreach (var file_full_path in Directory.GetFiles(Paths.NMLAssembliesPath, "*.dll"))
{
try
{
Assembly.LoadFrom(file_full_path);
}
catch (BadImageFormatException)
{
LogService.LogError($"" +
$"BadImageFormatException: " +
$"The file {file_full_path} is not a valid assembly.");
}
catch (Exception e)
{
LogService.LogError($"Exception: " +
$"Failed to load assembly {file_full_path}.");
LogService.LogError(e.Message);
LogService.LogError(e.StackTrace);
}
}
File.WriteAllText(Paths.NMLCommitPath, InternalResourcesGetter.GetCommit());
if (File.Exists(Paths.NMLAutoUpdateModulePath))
{
FileInfo file = new(Paths.NMLAutoUpdateModulePath);
if (file.LastWriteTimeUtc.Ticks < InternalResourcesGetter.GetLastWriteTime())
try
{
file.Delete();
LogService.LogInfo($"NeoModLoader.dll is newer than AutoUpdate.dll, " +
$"re-extract AutoUpdate.dll from NeoModLoader.dll");
}
catch (Exception e)
{
// ignored
}
}
if (!File.Exists(Paths.NMLAutoUpdateModulePath))
{
using Stream stream = NeoModLoaderAssembly.GetManifestResourceStream(
"NeoModLoader.resources.assemblies.NeoModLoader.AutoUpdate.dll");
using var file = new FileStream(Paths.NMLAutoUpdateModulePath, FileMode.CreateNew, FileAccess.Write);
stream.CopyTo(file);
}
}
}