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
|
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using System.Linq;
using System.Reflection;
namespace ManifoldGardenArchipelago
{
[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)]
public class Plugin : BaseUnityPlugin
{
internal static new ManualLogSource Logger;
public static ArchipelagoManager archipelagoManager = new();
private void Awake()
{
// Plugin startup logic
Logger = base.Logger;
Logger.LogInfo($"Plugin {MyPluginInfo.PLUGIN_GUID} is loaded!");
Harmony.CreateAndPatchAll(Assembly.GetExecutingAssembly());
archipelagoManager.Connect("localhost:38281", "Manifold", "").RunSynchronously();
}
}
[HarmonyPatch(typeof(GameManager), "Update")]
static class GameManagerUpdatePatch
{
static void Postfix()
{
Plugin.archipelagoManager.Update();
}
}
[HarmonyPatch(typeof(LineDoorController), "SetDoorOpenCloseStateAnimated")]
static class LineDoorControllerSetDoorOpenCloseStateAnimatedPatch
{
static bool Prefix(LineDoorController __instance, bool open)
{
if (Plugin.archipelagoManager.chainListenersByScene.TryGetValue(__instance.gameObject.scene.name, out var activatedChainListeners))
{
LevelSystems levelSystem = __instance.gameObject.scene.GetRootGameObjects().Single((obj) => obj.name == "Level Systems").GetComponent<LevelSystems>();
foreach (var listener in activatedChainListeners)
{
if (levelSystem.chainListeners[listener.Key] == __instance)
{
if (open != listener.Value)
{
return false;
}
}
}
}
return true;
}
}
[HarmonyPatch(typeof(LineDoorController), nameof(LineDoorController.OnLevelEnable))]
static class LineDoorControllerOnLevelEnablePatch
{
static void Prefix(LineDoorController __instance)
{
if (Plugin.archipelagoManager.chainListenersByScene.TryGetValue(__instance.gameObject.scene.name, out var activatedChainListeners))
{
LevelSystems levelSystem = __instance.gameObject.scene.GetRootGameObjects().Single((obj) => obj.name == "Level Systems").GetComponent<LevelSystems>();
foreach (var listener in activatedChainListeners)
{
if (levelSystem.chainListeners[listener.Key] == __instance)
{
FieldInfo fieldInfo = typeof(LineDoorController).GetField("doorShouldOpenImmediatelyOnEnable", BindingFlags.Instance | BindingFlags.NonPublic);
fieldInfo.SetValue(__instance, listener.Value);
}
}
}
}
}
[HarmonyPatch(typeof(ButtonLineActivator), nameof(ButtonLineActivator.OnInteract))]
static class ButtonLineActivatorOnInteractPatch
{
public static void Postfix(ButtonLineActivator __instance)
{
Plugin.Logger.LogInfo($"Interacted with {__instance.name} in {__instance.gameObject.scene.name}: {__instance.isButtonPressed}");
}
}
}
|