diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-02-23 16:42:22 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-02-23 16:42:22 -0500 |
commit | 42bc500a77f4b29d952058aede6abfaf91bd74c8 (patch) | |
tree | bfcdf83f9ec863f807fc9df48c0326ba56402a8e /GameState.cs | |
parent | f5b0daa0279ce4ed272b007ac4324e848ad4b03d (diff) | |
download | manifold-garden-archipelago-42bc500a77f4b29d952058aede6abfaf91bd74c8.tar.gz manifold-garden-archipelago-42bc500a77f4b29d952058aede6abfaf91bd74c8.tar.bz2 manifold-garden-archipelago-42bc500a77f4b29d952058aede6abfaf91bd74c8.zip |
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.
Diffstat (limited to 'GameState.cs')
-rw-r--r-- | GameState.cs | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/GameState.cs b/GameState.cs index bdf5760..9280eb3 100644 --- a/GameState.cs +++ b/GameState.cs | |||
@@ -33,6 +33,21 @@ namespace ManifoldGardenArchipelago | |||
33 | throw new Exception("Shouldn't happen"); | 33 | throw new Exception("Shouldn't happen"); |
34 | } | 34 | } |
35 | 35 | ||
36 | public static SceneItemReference GetGameplayComponentSceneReference(Component component) | ||
37 | { | ||
38 | LevelSystems levelSystem = GetLevelSystems(component); | ||
39 | |||
40 | for (int i = 0; i < levelSystem.gameplayComponentsInLevel.Count(); i++) | ||
41 | { | ||
42 | if (levelSystem.gameplayComponentsInLevel[i] == component) | ||
43 | { | ||
44 | return new(component.gameObject.scene.name, i); | ||
45 | } | ||
46 | } | ||
47 | |||
48 | throw new Exception("Shouldn't happen"); | ||
49 | } | ||
50 | |||
36 | public static SceneItemReference GetButtonSceneReference(ButtonLineActivator arg) | 51 | public static SceneItemReference GetButtonSceneReference(ButtonLineActivator arg) |
37 | { | 52 | { |
38 | LevelSystems levelSystem = GetLevelSystems(arg); | 53 | LevelSystems levelSystem = GetLevelSystems(arg); |
@@ -191,6 +206,37 @@ namespace ManifoldGardenArchipelago | |||
191 | } | 206 | } |
192 | } | 207 | } |
193 | } | 208 | } |
209 | |||
210 | foreach (var laser in listeners.lasers) | ||
211 | { | ||
212 | Requirement.Decision decision = laser.Value.Check(); | ||
213 | if (decision == Requirement.Decision.Maybe) | ||
214 | { | ||
215 | continue; | ||
216 | } | ||
217 | |||
218 | bool shouldOpen = (decision == Requirement.Decision.Yes); | ||
219 | |||
220 | if (SceneManager.GetSceneByName(laser.Key.scene) is Scene laserScene && laserScene.isLoaded) | ||
221 | { | ||
222 | LevelSystems levelSystems = GetLevelSystems(laserScene); | ||
223 | if (levelSystems.isActiveAndEnabled) | ||
224 | { | ||
225 | DarkModeCageController ldc = levelSystems.gameplayComponentsInLevel[laser.Key.index].GetComponent<DarkModeCageController>(); | ||
226 | |||
227 | if (shouldOpen) | ||
228 | { | ||
229 | MethodInfo methodInfo = typeof(DarkModeCageController).GetMethod("OpenLaserSource", BindingFlags.Instance | BindingFlags.NonPublic); | ||
230 | methodInfo.Invoke(ldc, [false]); | ||
231 | } | ||
232 | else | ||
233 | { | ||
234 | MethodInfo methodInfo = typeof(DarkModeCageController).GetMethod("CloseLaserSource", BindingFlags.Instance | BindingFlags.NonPublic); | ||
235 | methodInfo.Invoke(ldc, [false]); | ||
236 | } | ||
237 | } | ||
238 | } | ||
239 | } | ||
194 | } | 240 | } |
195 | } | 241 | } |
196 | } | 242 | } |