diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-02-23 14:00:17 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-02-23 14:00:17 -0500 |
commit | c0ad40a3d43e83f35432d12e8b55d90c1865c264 (patch) | |
tree | b1a91e9d697cb548ba048e8badbaccaf2800b065 /GameState.cs | |
parent | 22fd4098d048b6833f1993604f17144eadf3dea3 (diff) | |
download | manifold-garden-archipelago-c0ad40a3d43e83f35432d12e8b55d90c1865c264.tar.gz manifold-garden-archipelago-c0ad40a3d43e83f35432d12e8b55d90c1865c264.tar.bz2 manifold-garden-archipelago-c0ad40a3d43e83f35432d12e8b55d90c1865c264.zip |
A bunch of things
- Requirement decisions now have three states: yes, no, and maybe. Maybe means that the state of the game object in question hasn't been detected yet, so acting on the event that checked the requirement should be deferred. This was intended to fix the inverted pad checks in Pyramid, but it does not seem to have worked. Questioning reverting this part. - Fixed the doors in W018. - Smoke walls now work, sort of. If the cube is still on the pad, loading the game in that room will cause the wall to close (leaving and re-entering the room dismisses it thought). Putting the cube back on the pad will also close it again. Need to fix later. - More patches that record gameplay state without interaction from the player and call listeners for those objects. e.g. buttons getting pressed by the game when loaded in, as opposed to when pressed by the player. Pads have been tweaked like this too. - When opening a door, the mod now also invokes the animator. This fixes the problem where doors would appear to be closed when re-entering a room, even though you could still walk through them.
Diffstat (limited to 'GameState.cs')
-rw-r--r-- | GameState.cs | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/GameState.cs b/GameState.cs index d3bea06..bdf5760 100644 --- a/GameState.cs +++ b/GameState.cs | |||
@@ -112,7 +112,7 @@ namespace ManifoldGardenArchipelago | |||
112 | { | 112 | { |
113 | foreach (var location in listeners.locations) | 113 | foreach (var location in listeners.locations) |
114 | { | 114 | { |
115 | if (location.Value.Check()) | 115 | if (location.Value.Check() == Requirement.Decision.Yes) |
116 | { | 116 | { |
117 | Plugin.archipelagoManager.CheckLocation(location.Key); | 117 | Plugin.archipelagoManager.CheckLocation(location.Key); |
118 | } | 118 | } |
@@ -120,8 +120,14 @@ namespace ManifoldGardenArchipelago | |||
120 | 120 | ||
121 | foreach (var door in listeners.doors) | 121 | foreach (var door in listeners.doors) |
122 | { | 122 | { |
123 | bool shouldOpen = door.Value.Check(); | 123 | Requirement.Decision decision = door.Value.Check(); |
124 | Plugin.Logger.LogInfo($"{door.Key}: {door.Value} -> {shouldOpen}"); | 124 | if (decision == Requirement.Decision.Maybe) |
125 | { | ||
126 | continue; | ||
127 | } | ||
128 | |||
129 | bool shouldOpen = (decision == Requirement.Decision.Yes); | ||
130 | //Plugin.Logger.LogInfo($"{door.Key}: {door.Value} -> {shouldOpen}"); | ||
125 | 131 | ||
126 | if (SceneManager.GetSceneByName(door.Key.scene) is Scene doorScene && doorScene.isLoaded) | 132 | if (SceneManager.GetSceneByName(door.Key.scene) is Scene doorScene && doorScene.isLoaded) |
127 | { | 133 | { |
@@ -142,11 +148,34 @@ namespace ManifoldGardenArchipelago | |||
142 | } | 148 | } |
143 | } | 149 | } |
144 | 150 | ||
151 | foreach (var smokeWall in listeners.smokeWalls) | ||
152 | { | ||
153 | Requirement.Decision decision = smokeWall.Value.Check(); | ||
154 | if (decision == Requirement.Decision.Maybe) | ||
155 | { | ||
156 | continue; | ||
157 | } | ||
158 | |||
159 | bool shouldOpen = (decision == Requirement.Decision.Yes); | ||
160 | //Plugin.Logger.LogInfo($"{smokeWall.Key}: {smokeWall.Value} -> {shouldOpen}"); | ||
145 | 161 | ||
162 | if (SceneManager.GetSceneByName(smokeWall.Key.scene) is Scene smokeScene && smokeScene.isLoaded) | ||
163 | { | ||
164 | LevelSystems levelSystems = GetLevelSystems(smokeScene); | ||
165 | if (levelSystems.isActiveAndEnabled) | ||
166 | { | ||
167 | SolidStateController ldc = levelSystems.chainListeners[smokeWall.Key.index].GetComponent<SolidStateController>(); | ||
168 | ldc.chains.Clear(); | ||
169 | |||
170 | FieldInfo fieldInfo = typeof(SolidStateController).GetField("m_isSolid", BindingFlags.Instance | BindingFlags.NonPublic); | ||
171 | fieldInfo.SetValue(ldc, !shouldOpen); | ||
172 | } | ||
173 | } | ||
174 | } | ||
146 | 175 | ||
147 | foreach (var worldGrow in listeners.worldGrows) | 176 | foreach (var worldGrow in listeners.worldGrows) |
148 | { | 177 | { |
149 | if (worldGrow.Value.Check()) | 178 | if (worldGrow.Value.Check() == Requirement.Decision.Yes) |
150 | { | 179 | { |
151 | if (SceneManager.GetSceneByName(worldGrow.Key.scene) is Scene gardenScene && gardenScene.isLoaded) | 180 | if (SceneManager.GetSceneByName(worldGrow.Key.scene) is Scene gardenScene && gardenScene.isLoaded) |
152 | { | 181 | { |