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. --- GameState.cs | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'GameState.cs') diff --git a/GameState.cs b/GameState.cs index bdf5760..9280eb3 100644 --- a/GameState.cs +++ b/GameState.cs @@ -33,6 +33,21 @@ namespace ManifoldGardenArchipelago throw new Exception("Shouldn't happen"); } + public static SceneItemReference GetGameplayComponentSceneReference(Component component) + { + LevelSystems levelSystem = GetLevelSystems(component); + + for (int i = 0; i < levelSystem.gameplayComponentsInLevel.Count(); i++) + { + if (levelSystem.gameplayComponentsInLevel[i] == component) + { + return new(component.gameObject.scene.name, i); + } + } + + throw new Exception("Shouldn't happen"); + } + public static SceneItemReference GetButtonSceneReference(ButtonLineActivator arg) { LevelSystems levelSystem = GetLevelSystems(arg); @@ -191,6 +206,37 @@ namespace ManifoldGardenArchipelago } } } + + foreach (var laser in listeners.lasers) + { + Requirement.Decision decision = laser.Value.Check(); + if (decision == Requirement.Decision.Maybe) + { + continue; + } + + bool shouldOpen = (decision == Requirement.Decision.Yes); + + if (SceneManager.GetSceneByName(laser.Key.scene) is Scene laserScene && laserScene.isLoaded) + { + LevelSystems levelSystems = GetLevelSystems(laserScene); + if (levelSystems.isActiveAndEnabled) + { + DarkModeCageController ldc = levelSystems.gameplayComponentsInLevel[laser.Key.index].GetComponent(); + + if (shouldOpen) + { + MethodInfo methodInfo = typeof(DarkModeCageController).GetMethod("OpenLaserSource", BindingFlags.Instance | BindingFlags.NonPublic); + methodInfo.Invoke(ldc, [false]); + } + else + { + MethodInfo methodInfo = typeof(DarkModeCageController).GetMethod("CloseLaserSource", BindingFlags.Instance | BindingFlags.NonPublic); + methodInfo.Invoke(ldc, [false]); + } + } + } + } } } } -- cgit 1.4.1