From 42bc500a77f4b29d952058aede6abfaf91bd74c8 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 23 Feb 2025 16:42:22 -0500 Subject: Add support for lasers The three lasers in Blue are item locked, and the laser in Akshardham requires you to have planted all other god cubes in order to activate. --- GameplayPatches.cs | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) (limited to 'GameplayPatches.cs') diff --git a/GameplayPatches.cs b/GameplayPatches.cs index bdcbcae..37a671d 100644 --- a/GameplayPatches.cs +++ b/GameplayPatches.cs @@ -389,4 +389,52 @@ namespace ManifoldGardenArchipelago return false; } } + + [HarmonyPatch(typeof(DarkModeCageController), "StartFilling")] + static class DarkModeCageControllerStartFillingPatch + { + static bool Prefix(DarkModeCageController __instance) + { + SceneItemReference sir = GameState.GetGameplayComponentSceneReference(__instance); + + if (GameData.scenes.TryGetValue(sir.scene, out var sceneDescription)) + { + if (sceneDescription.lasers.TryGetValue(sir.index, out var requirement)) + { + Requirement.Decision decision = requirement.Check(); + + if (decision == Requirement.Decision.No) + { + return false; + } + } + } + + return true; + } + } + + [HarmonyPatch(typeof(DarkModeCageController), "StartUnfilling")] + static class DarkModeCageControllerStartUnfillingPatch + { + static bool Prefix(DarkModeCageController __instance) + { + SceneItemReference sir = GameState.GetGameplayComponentSceneReference(__instance); + + if (GameData.scenes.TryGetValue(sir.scene, out var sceneDescription)) + { + if (sceneDescription.lasers.TryGetValue(sir.index, out var requirement)) + { + Requirement.Decision decision = requirement.Check(); + + if (decision == Requirement.Decision.Yes) + { + return false; + } + } + } + + return true; + } + } } -- cgit 1.4.1